Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
SUSE:SLE-15-SP2:GA
cryptsetup
cryptsetup-Try-to-avoid-OOM-killer-on-low-memor...
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File cryptsetup-Try-to-avoid-OOM-killer-on-low-memory-systems-withou.patch of Package cryptsetup
From 899bad8c06957a94a198d1eaa293ed8db205f1de Mon Sep 17 00:00:00 2001 From: Milan Broz <gmazyland@gmail.com> Date: Mon, 20 Feb 2023 16:45:36 +0100 Subject: [PATCH] Try to avoid OOM killer on low-memory systems without swap. Benchmark for memory-hard KDF is tricky, seems that relying on maximum half of physical memory is not enough. Let's allow only free physical available space if there is no swap. This should not cause changes on normal systems, at least. --- lib/internal.h | 2 ++ lib/utils.c | 47 +++++++++++++++++++++++++++++++++++++++++++++++ lib/utils_pbkdf.c | 11 ++++++++++- 3 files changed, 59 insertions(+), 1 deletion(-) --- a/lib/internal.h +++ b/lib/internal.h @@ -149,6 +149,8 @@ int lookup_by_sysfs_uuid_field(const cha size_t crypt_getpagesize(void); unsigned crypt_cpusonline(void); uint64_t crypt_getphysmemory_kb(void); +uint64_t crypt_getphysmemoryfree_kb(void); +bool crypt_swapavailable(void); int init_crypto(struct crypt_device *ctx); --- a/lib/utils.c +++ b/lib/utils.c @@ -60,6 +60,53 @@ uint64_t crypt_getphysmemory_kb(void) return phys_memory_kb; } +uint64_t crypt_getphysmemoryfree_kb(void) +{ + long pagesize, phys_pages; + uint64_t phys_memoryfree_kb; + + pagesize = sysconf(_SC_PAGESIZE); + phys_pages = sysconf(_SC_AVPHYS_PAGES); + + if (pagesize < 0 || phys_pages < 0) + return 0; + + phys_memoryfree_kb = pagesize / 1024; + phys_memoryfree_kb *= phys_pages; + + return phys_memoryfree_kb; +} + +bool crypt_swapavailable(void) +{ + int fd; + ssize_t size; + char buf[4096], *p; + uint64_t total; + + if ((fd = open("/proc/meminfo", O_RDONLY)) < 0) + return true; + + size = read(fd, buf, sizeof(buf)); + close(fd); + if (size < 1) + return true; + + if (size < (ssize_t)sizeof(buf)) + buf[size] = 0; + else + buf[sizeof(buf) - 1] = 0; + + p = strstr(buf, "SwapTotal:"); + if (!p) + return true; + + if (sscanf(p, "SwapTotal: %" PRIu64 " kB", &total) != 1) + return true; + + return total > 0; +} + /* MEMLOCK */ #define DEFAULT_PROCESS_PRIORITY -18 --- a/lib/utils_pbkdf.c +++ b/lib/utils_pbkdf.c @@ -40,7 +40,7 @@ const struct crypt_pbkdf_type default_lu uint32_t pbkdf_adjusted_phys_memory_kb(void) { - uint64_t memory_kb = crypt_getphysmemory_kb(); + uint64_t free_kb, memory_kb = crypt_getphysmemory_kb(); /* Ignore bogus value */ if (memory_kb < (128 * 1024) || memory_kb > UINT32_MAX) @@ -52,6 +52,15 @@ uint32_t pbkdf_adjusted_phys_memory_kb(v */ memory_kb /= 2; + /* + * Never use more that available free space on system without swap. + */ + if (!crypt_swapavailable()) { + free_kb = crypt_getphysmemoryfree_kb(); + if (free_kb > (64 * 1024) && free_kb < memory_kb) + return free_kb; + } + return memory_kb; }
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor