CVE-2026-46253

Source
https://cve.org/CVERecord?id=CVE-2026-46253
Import Source
https://storage.googleapis.com/osv-test-cve-osv-conversion/osv-output/CVE-2026-46253.json
JSON Data
https://api.test.osv.dev/v1/vulns/CVE-2026-46253
Downstream
Published
2026-06-03T15:49:49.864Z
Modified
2026-06-18T03:55:19.811113773Z
Severity
  • 7.8 (High) CVSS_V3 - CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H CVSS Calculator
Summary
pstore/ram: fix buffer overflow in persistent_ram_save_old()
Details

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

pstore/ram: fix buffer overflow in persistentramsave_old()

persistentramsaveold() can be called multiple times for the same persistentramzone (e.g., via ramoopspstoreread -> ramoopsgetnextprz for PSTORETYPEDMESG records).

Currently, the function only allocates prz->oldlog when it is NULL, but it unconditionally updates prz->oldlogsize to the current buffer size and then performs memcpyfromio() using this new size. If the buffer size has grown since the first allocation (which can happen across different kernel boot cycles), this leads to:

  1. A heap buffer overflow (OOB write) in the memcpy_fromio() calls
  2. A subsequent OOB read when ramoopspstoreread() accesses the buffer using the incorrect (larger) oldlogsize

The KASAN splat would look similar to: BUG: KASAN: slab-out-of-bounds in ramoopspstoreread+0x... Read of size N at addr ... by task ...

The conditions are likely extremely hard to hit:

  1. Crash with a ramoops write of less-than-record-max-size bytes.
  2. Reboot: ramoops registers, pstoregetrecords(0) reads old crash, allocates old_log with size X
  3. Crash handler registered, timer started (if pstoreupdatems >= 0)
  4. Oops happens (non-fatal, system continues)
  5. pstoredump() writes oops via ramoopspstore_write() size Y (>X)
  6. pstorenewentry = 1, pstoretimerkick() called
  7. System continues running (not a panic oops)
  8. Timer fires after pstoreupdatems milliseconds
  9. pstoretimefunc() → schedulework() → pstoredowork() → pstoreget_records(1)
  10. ramoopsgetnextprz() → persistentramsaveold()

    1. buffersize() returns Y, but oldlog is X bytes
    2. Y > X: memcpy_fromio() overflows heap

      Requirements:

  • a prior crash record exists that did not fill the record size (almost impossible since the crash handler writes as much as it can possibly fit into the record, capped by max record size and the kmsg buffer almost always exceeds the max record size)
  • pstoreupdatems >= 0 (disabled by default)
  • Non-fatal oops (system survives)

Free and reallocate the buffer when the new size differs from the previously allocated size. This ensures old_log always has sufficient space for the data being copied.

Database specific
{
    "cna_assigner": "Linux",
    "osv_generated_from": "https://github.com/CVEProject/cvelistV5/tree/main/cves/2026/46xxx/CVE-2026-46253.json"
}
References

Affected packages

Git / git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git

Affected ranges

Type
GIT
Repo
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
Events
Introduced
201e4aca5aa179e6c69a4dcd36a3562e56b8d670
Fixed
58bda5a1d1ee98254383ef34f76b2c35140513ea
Fixed
06d2c8bd108cea503f6f6e13e47495ed1085275f
Fixed
2fa9a047c6a50ec80c3890dd623b85e237f0d1fd
Fixed
cff0ef043e16feb5a02307c8f9d0117a96c5587c
Fixed
9a6fc69a570c0780834246d52c856cc3dbc2605f
Fixed
4f73486ca822305c1cf5b8ebc0b53a6ab3801a81
Fixed
7cfe964e61c0ab667abd5f5b68e0acbf783efa4f
Fixed
5669645c052f235726a85f443769b6fc02f66762

Database specific

source
"https://storage.googleapis.com/osv-test-cve-osv-conversion/osv-output/CVE-2026-46253.json"

Linux / Kernel

Package

Name
Kernel

Affected ranges

Type
ECOSYSTEM
Events
Introduced
3.5.0
Fixed
5.10.252
Type
ECOSYSTEM
Events
Introduced
5.11.0
Fixed
5.15.202
Type
ECOSYSTEM
Events
Introduced
5.16.0
Fixed
6.1.165
Type
ECOSYSTEM
Events
Introduced
6.2.0
Fixed
6.6.128
Type
ECOSYSTEM
Events
Introduced
6.7.0
Fixed
6.12.75
Type
ECOSYSTEM
Events
Introduced
6.13.0
Fixed
6.18.14
Type
ECOSYSTEM
Events
Introduced
6.19.0
Fixed
6.19.4

Database specific

source
"https://storage.googleapis.com/osv-test-cve-osv-conversion/osv-output/CVE-2026-46253.json"