VULNERABILITY

Alma Linux: CVE-2024-49888: Moderate: kernel security update (ALSA-2024-11486)

Try Surface Command Get a continuous 360° view of your attack surface
Back to Search

Alma Linux: CVE-2024-49888: Moderate: kernel security update (ALSA-2024-11486)

Severity
5
CVSS
(AV:L/AC:L/Au:S/C:N/I:N/A:C)
Published
10/21/2024
Created
01/15/2025
Added
01/14/2025
Modified
01/28/2025

Description

In the Linux kernel, the following vulnerability has been resolved: bpf: Fix a sdiv overflow issue Zac Ecob reported a problem where a bpf program may cause kernel crash due to the following error: Oops: divide error: 0000 [#1] PREEMPT SMP KASAN PTI The failure is due to the below signed divide: LLONG_MIN/-1 where LLONG_MIN equals to -9,223,372,036,854,775,808. LLONG_MIN/-1 is supposed to give a positive number 9,223,372,036,854,775,808, but it is impossible since for 64-bit system, the maximum positive number is 9,223,372,036,854,775,807. On x86_64, LLONG_MIN/-1 will cause a kernel exception. On arm64, the result for LLONG_MIN/-1 is LLONG_MIN. Further investigation found all the following sdiv/smod cases may trigger an exception when bpf program is running on x86_64 platform: - LLONG_MIN/-1 for 64bit operation - INT_MIN/-1 for 32bit operation - LLONG_MIN%-1 for 64bit operation - INT_MIN%-1 for 32bit operation where -1 can be an immediate or in a register. On arm64, there are no exceptions: - LLONG_MIN/-1 = LLONG_MIN - INT_MIN/-1 = INT_MIN - LLONG_MIN%-1 = 0 - INT_MIN%-1 = 0 where -1 can be an immediate or in a register. Insn patching is needed to handle the above cases and the patched codes produced results aligned with above arm64 result. The below are pseudo codes to handle sdiv/smod exceptions including both divisor -1 and divisor 0 and the divisor is stored in a register. sdiv: tmp = rX tmp += 1 /* [-1, 0] -> [0, 1] if tmp >(unsigned) 1 goto L2 if tmp == 0 goto L1 rY = 0 L1: rY = -rY; goto L3 L2: rY /= rX L3: smod: tmp = rX tmp += 1 /* [-1, 0] -> [0, 1] if tmp >(unsigned) 1 goto L1 if tmp == 1 (is64 ? goto L2 : goto L3) rY = 0; goto L2 L1: rY %= rX L2: goto L4 // only when !is64 L3: wY = wY // only when !is64 L4: [1] https://lore.kernel.org/bpf/tPJLTEh7S_DxFEqAI2Ji5MBSoZVg7_G-Py2iaZpAaWtM961fFTWtsnlzwvTbzBzaUzwQAoNATXKUlt0LZOFgnDcIyKCswAnAGdUF3LBrhGQ=@protonmail.com/

Solution(s)

  • alma-upgrade-bpftool
  • alma-upgrade-kernel
  • alma-upgrade-kernel-64k
  • alma-upgrade-kernel-64k-core
  • alma-upgrade-kernel-64k-debug
  • alma-upgrade-kernel-64k-debug-core
  • alma-upgrade-kernel-64k-debug-devel
  • alma-upgrade-kernel-64k-debug-devel-matched
  • alma-upgrade-kernel-64k-debug-modules
  • alma-upgrade-kernel-64k-debug-modules-core
  • alma-upgrade-kernel-64k-debug-modules-extra
  • alma-upgrade-kernel-64k-devel
  • alma-upgrade-kernel-64k-devel-matched
  • alma-upgrade-kernel-64k-modules
  • alma-upgrade-kernel-64k-modules-core
  • alma-upgrade-kernel-64k-modules-extra
  • alma-upgrade-kernel-abi-stablelists
  • alma-upgrade-kernel-core
  • alma-upgrade-kernel-cross-headers
  • alma-upgrade-kernel-debug
  • alma-upgrade-kernel-debug-core
  • alma-upgrade-kernel-debug-devel
  • alma-upgrade-kernel-debug-devel-matched
  • alma-upgrade-kernel-debug-modules
  • alma-upgrade-kernel-debug-modules-core
  • alma-upgrade-kernel-debug-modules-extra
  • alma-upgrade-kernel-debug-uki-virt
  • alma-upgrade-kernel-devel
  • alma-upgrade-kernel-devel-matched
  • alma-upgrade-kernel-doc
  • alma-upgrade-kernel-headers
  • alma-upgrade-kernel-modules
  • alma-upgrade-kernel-modules-core
  • alma-upgrade-kernel-modules-extra
  • alma-upgrade-kernel-rt
  • alma-upgrade-kernel-rt-core
  • alma-upgrade-kernel-rt-debug
  • alma-upgrade-kernel-rt-debug-core
  • alma-upgrade-kernel-rt-debug-devel
  • alma-upgrade-kernel-rt-debug-modules
  • alma-upgrade-kernel-rt-debug-modules-core
  • alma-upgrade-kernel-rt-debug-modules-extra
  • alma-upgrade-kernel-rt-devel
  • alma-upgrade-kernel-rt-modules
  • alma-upgrade-kernel-rt-modules-core
  • alma-upgrade-kernel-rt-modules-extra
  • alma-upgrade-kernel-tools
  • alma-upgrade-kernel-tools-libs
  • alma-upgrade-kernel-tools-libs-devel
  • alma-upgrade-kernel-uki-virt
  • alma-upgrade-kernel-uki-virt-addons
  • alma-upgrade-kernel-zfcpdump
  • alma-upgrade-kernel-zfcpdump-core
  • alma-upgrade-kernel-zfcpdump-devel
  • alma-upgrade-kernel-zfcpdump-devel-matched
  • alma-upgrade-kernel-zfcpdump-modules
  • alma-upgrade-kernel-zfcpdump-modules-core
  • alma-upgrade-kernel-zfcpdump-modules-extra
  • alma-upgrade-libperf
  • alma-upgrade-perf
  • alma-upgrade-python3-perf
  • alma-upgrade-rtla
  • alma-upgrade-rv

insightVM

Advanced vulnerability management analytics and reporting.
Key Features
  • Lightweight Endpoint Agent
  • Live Dashboards
  • Real Risk Prioritization
  • IT-Integrated Remediation Projects
  • Cloud, Virtual, and Container Assessment
  • Integrated Threat Feeds
  • Easy-to-Use RESTful API
  • Automation-Assisted Patching
  • Automated Containment
Free InsightVM Trial View All Features

With Rapid7 live dashboards, I have a clear view of all the assets on my network, which ones can be exploited, and what I need to do in order to reduce the risk in my environment in real-time. No other tool gives us that kind of value and insight.

– Scott Cheney, Manager of Information Security, Sierra View Medical Center

;