Answer in brief
CVE-2024-50182 records a Unknown severity vulnerability in secretmem: disable memfd_secret() if arch cannot set direct map. The current sources do not mark it as known exploited. The current feed maps Linux/Linux (generic), Linux/Linux (generic). Check affected ranges and fixed versions before updating.
Analysis pending evidence review
HOL Guard separates source facts from reviewed analysis. See the methodology.
A CVSS score is not reported in the current record. The current sources do not mark it as known exploited. Treat this as a source-backed prioritization signal, not a statement about your environment.
Analysis status
Analysis pending evidence review
Factual feed record only; HOL analysis is not approved for indexing. Read the methodology.
The current feed maps Linux/Linux (generic), Linux/Linux (generic). Check affected ranges and fixed versions before updating.
| Package | Affected range | Fixed version |
|---|---|---|
| Linux/Linuxgeneric | 5.14 | Not reported |
| Linux/Linuxgeneric | >=1507f51255c9ff07d75909a84e7c0d7f3c4b2f49 <d0ae6ffa1aeb297aef89f49cfb894a83c329ebad || >=1507f51255c9ff07d75909a84e7c0d7f3c4b2f49 <5ea0b7af38754d2b45ead9257bca47e84662e926 || >=1507f51255c9ff07d75909a84e7c0d7f3c4b2f49 <7caf966390e6e4ebf42775df54e7ee1f280ce677 || >=1507f51255c9ff07d75909a84e7c0d7f3c4b2f49 <757786abe4547eb3d9d0e8350a63bdb0f9824af2 || >=1507f51255c9ff07d75909a84e7c0d7f3c4b2f49 <532b53cebe58f34ce1c0f34d866f5c0e335c53c6 | d0ae6ffa1aeb297aef89f49cfb894a83c329ebad, 5ea0b7af38754d2b45ead9257bca47e84662e926, 7caf966390e6e4ebf42775df54e7ee1f280ce677, 757786abe4547eb3d9d0e8350a63bdb0f9824af2, 532b53cebe58f34ce1c0f34d866f5c0e335c53c6 |
Published upstream
Nov 8, 2024
Evidence: source:cvelist:source_dates:source-dates:recordSource modified
Aug 5, 2026
Evidence: source:cvelist:source_dates:source-dates:recordFirst seen by HOL
Aug 5, 2026
In the Linux kernel, the following vulnerability has been resolved: secretmem: disable memfd_secret() if arch cannot set direct map Return -ENOSYS from memfd_secret() syscall if !can_set_direct_map(). This is the case for example on some arm64 configurations, where marking 4k PTEs in the direct map not present can only be done if the direct map is set up at 4k granularity in the first place (as ARM's break-before-make semantics do not easily allow breaking apart large/gigantic pages). More precisely, on arm64 systems with !can_set_direct_map(), set_direct_map_invalid_noflush() is a no-op, however it returns success (0) instead of an error. This means that memfd_secret will seemingly "work" (e.g. syscall succeeds, you can mmap the fd and fault in pages), but it does not actually achieve its goal of removing its memory from the direct map. Note that with this patch, memfd_secret() will start erroring on systems where can_set_direct_map() returns false (arm64 with CONFIG_RODATA_FULL_DEFAULT_ENABLED=n, CONFIG_DEBUG_PAGEALLOC=n and CONFIG_KFENCE=n), but that still seems better than the current silent failure. Since CONFIG_RODATA_FULL_DEFAULT_ENABLED defaults to 'y', most arm64 systems actually have a working memfd_secret() and aren't be affected. From going through the iterations of the original memfd_secret patch series, it seems that disabling the syscall in these scenarios was the intended behavior [1] (preferred over having set_direct_map_invalid_noflush return an error as that would result in SIGBUSes at page-fault time), however the check for it got dropped between v16 [2] and v17 [3], when secretmem moved away from CMA allocations. [1]: https://lore.kernel.org/lkml/[email protected]/ [2]: https://lore.kernel.org/lkml/[email protected]/#t [3]: https://lore.kernel.org/lkml/[email protected]/
Quoted source text, attributed separately from HOL analysis.
Answer in brief
CVE-2024-50182 records a Unknown severity vulnerability in secretmem: disable memfd_secret() if arch cannot set direct map. The current sources do not mark it as known exploited. The current feed maps Linux/Linux (generic), Linux/Linux (generic). Check affected ranges and fixed versions before updating.
Analysis pending evidence review
HOL Guard separates source facts from reviewed analysis. See the methodology.
A CVSS score is not reported in the current record. The current sources do not mark it as known exploited. Treat this as a source-backed prioritization signal, not a statement about your environment.
Analysis status
Analysis pending evidence review
Factual feed record only; HOL analysis is not approved for indexing. Read the methodology.
The current feed maps Linux/Linux (generic), Linux/Linux (generic). Check affected ranges and fixed versions before updating.
| Package | Affected range | Fixed version |
|---|---|---|
| Linux/Linuxgeneric | 5.14 | Not reported |
| Linux/Linuxgeneric | >=1507f51255c9ff07d75909a84e7c0d7f3c4b2f49 <d0ae6ffa1aeb297aef89f49cfb894a83c329ebad || >=1507f51255c9ff07d75909a84e7c0d7f3c4b2f49 <5ea0b7af38754d2b45ead9257bca47e84662e926 || >=1507f51255c9ff07d75909a84e7c0d7f3c4b2f49 <7caf966390e6e4ebf42775df54e7ee1f280ce677 || >=1507f51255c9ff07d75909a84e7c0d7f3c4b2f49 <757786abe4547eb3d9d0e8350a63bdb0f9824af2 || >=1507f51255c9ff07d75909a84e7c0d7f3c4b2f49 <532b53cebe58f34ce1c0f34d866f5c0e335c53c6 | d0ae6ffa1aeb297aef89f49cfb894a83c329ebad, 5ea0b7af38754d2b45ead9257bca47e84662e926, 7caf966390e6e4ebf42775df54e7ee1f280ce677, 757786abe4547eb3d9d0e8350a63bdb0f9824af2, 532b53cebe58f34ce1c0f34d866f5c0e335c53c6 |
Published upstream
Nov 8, 2024
Evidence: source:cvelist:source_dates:source-dates:recordSource modified
Aug 5, 2026
Evidence: source:cvelist:source_dates:source-dates:recordFirst seen by HOL
Aug 5, 2026
In the Linux kernel, the following vulnerability has been resolved: secretmem: disable memfd_secret() if arch cannot set direct map Return -ENOSYS from memfd_secret() syscall if !can_set_direct_map(). This is the case for example on some arm64 configurations, where marking 4k PTEs in the direct map not present can only be done if the direct map is set up at 4k granularity in the first place (as ARM's break-before-make semantics do not easily allow breaking apart large/gigantic pages). More precisely, on arm64 systems with !can_set_direct_map(), set_direct_map_invalid_noflush() is a no-op, however it returns success (0) instead of an error. This means that memfd_secret will seemingly "work" (e.g. syscall succeeds, you can mmap the fd and fault in pages), but it does not actually achieve its goal of removing its memory from the direct map. Note that with this patch, memfd_secret() will start erroring on systems where can_set_direct_map() returns false (arm64 with CONFIG_RODATA_FULL_DEFAULT_ENABLED=n, CONFIG_DEBUG_PAGEALLOC=n and CONFIG_KFENCE=n), but that still seems better than the current silent failure. Since CONFIG_RODATA_FULL_DEFAULT_ENABLED defaults to 'y', most arm64 systems actually have a working memfd_secret() and aren't be affected. From going through the iterations of the original memfd_secret patch series, it seems that disabling the syscall in these scenarios was the intended behavior [1] (preferred over having set_direct_map_invalid_noflush return an error as that would result in SIGBUSes at page-fault time), however the check for it got dropped between v16 [2] and v17 [3], when secretmem moved away from CMA allocations. [1]: https://lore.kernel.org/lkml/[email protected]/ [2]: https://lore.kernel.org/lkml/[email protected]/#t [3]: https://lore.kernel.org/lkml/[email protected]/
Quoted source text, attributed separately from HOL analysis.