mod_version: Handle access denied from uname()

Discovered while experimenting with a stricter SystemCallFilter setting
See man:systemd.exec(5)
This commit is contained in:
Kim Alvefur 2024-04-06 14:31:28 +02:00
parent 5550be6381
commit 0987a0113d

View file

@ -22,7 +22,12 @@ if not module:get_option_boolean("hide_os_type") then
local os_version_command = module:get_option_string("os_version_command"); local os_version_command = module:get_option_string("os_version_command");
local ok, pposix = pcall(require, "prosody.util.pposix"); local ok, pposix = pcall(require, "prosody.util.pposix");
if not os_version_command and (ok and pposix and pposix.uname) then if not os_version_command and (ok and pposix and pposix.uname) then
platform = pposix.uname().sysname; local ok, uname = pposix.uname();
if not ok then
module:log("debug", "Could not retrieve OS name: %s", uname);
else
platform = uname.sysname;
end
end end
if not platform then if not platform then
local uname = io.popen(os_version_command or "uname"); local uname = io.popen(os_version_command or "uname");