Description
In the Linux kernel, the following vulnerability has been resolved:

dm-log: fix a bitset_size overflow on 32bit machines

Commit c20e36b7631d ("dm log: fix out-of-bounds write due to
region_count overflow") made sure that region_count could fit in an
unsigned int. But the bitmap memory isn't allocated based on
region_count. It uses bitset_size (a size_t variable). The first step of
calculating bitset_size is to set it to region_count, rounded up to a
multiple of BITS_PER_LONG. If region_size is less than BITS_PER_LONG
smaller than UINT_MAX, it will get rounded up to 2^32. On a 32bit
architecture, this will make bitset_size wrap around to 0 and fail,
despite region_count being valid.

Since bitset_size gets divided by 8, it can hold any valid region_count.
It just needs a special case to handle the rollover. If it is 0, the
value rolled over, and bitset size should be set to the number of bytes
needed to hold 2^32 bits.
Published: 2026-08-15
Score: 7.8 High
EPSS: < 1% Very Low
KEV: No
Impact: n/a
Action: n/a
AI Analysis

Impact

A flaw in the Linux kernel's dm‑log subsystem causes an integer overflow when rounding a region count to the next multiple of BITS_PER_LONG. On 32‑bit architectures, if the region size is smaller than BITS_PER_LONG yet less than UINT_MAX, the rounding step sets the size to 2^32, which wraps the size_t variable back to zero before it is divided by eight. The resulting bitmap allocation is eight bytes smaller than required, and an out‑of‑bounds write occurs. The corruption is a buffer overflow that can overwrite kernel memory, potentially allowing an attacker to gain elevated privileges or crash the system.

Affected Systems

All 32‑bit Linux kernels that have not incorporated commit c20e36b7631d to fix the dm‑log bitmap allocation are affected. This includes every distribution running an unpatched 32‑bit kernel, regardless of architecture, as the vulnerable code is part of the core kernel and used whenever dm‑log is active.

Risk and Exploitability

The CVSS score of 7.8 indicates a high severity vulnerability, but the EPSS score of <1% shows that exploitation is unlikely in the wild, and it is not listed in the CISA KEV catalog. The attack vector is inferred to be local or privileged, requiring an attacker to interact with the dm‑log subsystem—typically by creating or manipulating a block device that triggers the buggy bitmap allocation. No public exploit is known, but kernel memory corruption of this nature could be leveraged for privilege escalation or denial of service if an exploit were developed.

Generated by OpenCVE AI on August 18, 2026 at 04:34 UTC.

Remediation

No vendor fix or workaround currently provided.

OpenCVE Recommended Actions

  • Install a kernel update that includes commit c20e36b7631d, which corrects the integer and buffer overflow in dm‑log allocation.
  • If no update is immediately available, disable the dm‑log kernel module or restrict its loading to processes running with minimal privileges, thereby reducing exposure to the overflow.
  • Monitor kernel logs for dm‑log–related allocation failures or abnormal behavior and reboot the system when suspicious events are detected.

Generated by OpenCVE AI on August 18, 2026 at 04:34 UTC.

Tracking

Sign in to view the affected projects.

Advisories

No advisories yet.

History

Tue, 18 Aug 2026 03:30:00 +0000

Type Values Removed Values Added
Weaknesses CWE-787

Tue, 18 Aug 2026 00:15:00 +0000

Type Values Removed Values Added
Weaknesses CWE-190
References
Metrics threat_severity

None

threat_severity

Moderate


Mon, 17 Aug 2026 21:15:00 +0000

Type Values Removed Values Added
Weaknesses CWE-787

Mon, 17 Aug 2026 19:00:00 +0000

Type Values Removed Values Added
Weaknesses CWE-119
CWE-190

Mon, 17 Aug 2026 06:00:00 +0000

Type Values Removed Values Added
Metrics cvssV3_1

{'score': 7.8, 'vector': 'CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H'}


Sat, 15 Aug 2026 21:15:00 +0000

Type Values Removed Values Added
Weaknesses CWE-119
CWE-190

Sat, 15 Aug 2026 06:00:00 +0000

Type Values Removed Values Added
Description In the Linux kernel, the following vulnerability has been resolved: dm-log: fix a bitset_size overflow on 32bit machines Commit c20e36b7631d ("dm log: fix out-of-bounds write due to region_count overflow") made sure that region_count could fit in an unsigned int. But the bitmap memory isn't allocated based on region_count. It uses bitset_size (a size_t variable). The first step of calculating bitset_size is to set it to region_count, rounded up to a multiple of BITS_PER_LONG. If region_size is less than BITS_PER_LONG smaller than UINT_MAX, it will get rounded up to 2^32. On a 32bit architecture, this will make bitset_size wrap around to 0 and fail, despite region_count being valid. Since bitset_size gets divided by 8, it can hold any valid region_count. It just needs a special case to handle the rollover. If it is 0, the value rolled over, and bitset size should be set to the number of bytes needed to hold 2^32 bits.
Title dm-log: fix a bitset_size overflow on 32bit machines
First Time appeared Linux
Linux linux Kernel
CPEs cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*
Vendors & Products Linux
Linux linux Kernel
References

Subscriptions

Linux Linux Kernel
cve-icon MITRE

Status: PUBLISHED

Assigner: Linux

Published:

Updated: 2026-08-17T05:40:19.004Z

Reserved: 2026-08-09T03:40:39.906Z

Link: CVE-2026-72105

cve-icon Vulnrichment

No data.

cve-icon NVD

Status : Received

Published: 2026-08-15T06:21:24.673

Modified: 2026-08-17T06:18:09.470

Link: CVE-2026-72105

cve-icon Redhat

Severity : Moderate

Publid Date: 2026-08-15T00:00:00Z

Links: CVE-2026-72105 - Bugzilla

cve-icon OpenCVE Enrichment

Updated: 2026-08-18T04:45:04Z

Weaknesses
  • CWE-190

    Integer Overflow or Wraparound