From: Lennart Poettering Date: Thu, 7 Nov 2024 13:54:21 +0000 (+0100) Subject: process-util: more gracefully handle oom adjust parsing/setting X-Git-Tag: v257-rc2~27^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7bf0149e9b46d614c3431e39ca59805aebf71bc4;p=thirdparty%2Fsystemd.git process-util: more gracefully handle oom adjust parsing/setting Who knows what kind of mount shenanigans people employ, let's gracefully handle parse failures of proc files, like we alway do otherwsie. --- diff --git a/src/basic/process-util.c b/src/basic/process-util.c index ee0edfaf94e..9c159b46055 100644 --- a/src/basic/process-util.c +++ b/src/basic/process-util.c @@ -1815,6 +1815,9 @@ int namespace_fork( int set_oom_score_adjust(int value) { char t[DECIMAL_STR_MAX(int)]; + if (!oom_score_adjust_is_valid(value)) + return -EINVAL; + xsprintf(t, "%i", value); return write_string_file("/proc/self/oom_score_adj", t, @@ -1831,11 +1834,16 @@ int get_oom_score_adjust(int *ret) { delete_trailing_chars(t, WHITESPACE); - assert_se(safe_atoi(t, &a) >= 0); - assert_se(oom_score_adjust_is_valid(a)); + r = safe_atoi(t, &a); + if (r < 0) + return r; + + if (!oom_score_adjust_is_valid(a)) + return -ENODATA; if (ret) *ret = a; + return 0; }