MINOR: hlua: add tune.lua.openlibs to restrict loaded Lua standard libraries

HAProxy has always called luaL_openlibs() unconditionally, which opens all
10 standard Lua libraries including io, os, package and debug. This makes
it impossible to prevent Lua scripts from executing binaries (os.execute,
io.popen), loading native C modules (package/require), or bypassing any
Lua-level sandbox via the debug library.

Add a new global directive tune.lua.openlibs that accepts a comma-separated
list of library names to load:

  tune.lua.openlibs none                   # only base + coroutine
  tune.lua.openlibs string,math,table,utf8 # safe libs only
  tune.lua.openlibs all                    # default, same as before

The base and coroutine libraries are always loaded regardless: base provides
core Lua functions that HAProxy relies on, and coroutine is required because
HAProxy overrides coroutine.create() with its own safe implementation.

When all libraries are enabled (the default), the fast path still calls
luaL_openlibs() directly with no overhead. A parse error is returned if
the directive appears after lua-load or lua-load-per-thread (the Lua state
is already initialised at that point), or if 'none' is combined with other
library names. Note that fork() and new thread creation are already blocked
by default regardless of this setting (see "insecure-fork-wanted").
This commit is contained in:
William Lallemand 2026-04-07 17:01:35 +02:00
parent d6284470e4
commit e4c8de739c
2 changed files with 137 additions and 2 deletions

View file

@ -1924,6 +1924,7 @@ The following keywords are supported in the "global" section :
- tune.lua.log.loggers
- tune.lua.log.stderr
- tune.lua.maxmem
- tune.lua.openlibs
- tune.lua.service-timeout
- tune.lua.session-timeout
- tune.lua.task-timeout
@ -4835,6 +4836,37 @@ tune.lua.maxmem <number>
ensure that a bug in a script will not result in the system running out of
memory.
tune.lua.openlibs [all | none | <lib>[,<lib>...]]
Selects which Lua standard libraries are loaded when initialising the Lua
state. The argument is a comma-separated list of library names taken from
the following set: table, io, os, string, math, utf8, package, debug. The
special values "all" and "none" may be used instead of a list. "none"
cannot be combined with library names. The default value is "all".
The base and coroutine libraries are always loaded regardless of this
setting: base provides core Lua functions that HAProxy relies on, and
coroutine is required because HAProxy overrides coroutine.create() with
its own safe implementation.
Note that fork() and new thread creation are already blocked by default in
HAProxy regardless of this setting, and can only be re-enabled via the
"insecure-fork-wanted" global directive. Restricting the set of loaded
libraries further reduces the attack surface exposed to Lua scripts. In
particular:
- omitting "os" prevents os.execute() and os.exit()
- omitting "io" prevents io.open() and io.popen()
- omitting "package" prevents loading native C modules via require()
- omitting "debug" prevents introspection of HAProxy internals via
debug.getupvalue(), debug.getmetatable(), or debug.sethook()
Examples:
tune.lua.openlibs none # only base + coroutine
tune.lua.openlibs string,math,table,utf8 # safe subset, no I/O or OS
tune.lua.openlibs all # default, load everything
This setting must be set before any "lua-load" or "lua-load-per-thread"
directive, otherwise a parse error is returned.
tune.lua.service-timeout <timeout>
This is the execution timeout for the Lua services. This is useful for
preventing infinite loops or spending too much time in Lua. This timeout

View file

@ -514,6 +514,31 @@ static uint32_t hlua_timeout_session = 4000; /* session timeout. */
static uint32_t hlua_timeout_task = 0; /* task timeout. */
static uint32_t hlua_timeout_applet = 4000; /* applet timeout. */
/* tune.lua.openlibs: bitmask of optional Lua standard libraries to open.
* The base and coroutine libraries are always loaded regardless of this
* setting (base provides core functions required by HAProxy; coroutine is
* always overridden by HAProxy's safe wrapper).
*/
#define HLUA_OPENLIBS_ALL 0xFF
static const struct {
const char *name;
lua_CFunction open;
uint flag;
} hlua_openlibs_tbl[] = {
{ LUA_TABLIBNAME, luaopen_table, 0x01 },
{ LUA_IOLIBNAME, luaopen_io, 0x02 },
{ LUA_OSLIBNAME, luaopen_os, 0x04 },
{ LUA_STRLIBNAME, luaopen_string, 0x08 },
{ LUA_MATHLIBNAME, luaopen_math, 0x10 },
{ LUA_UTF8LIBNAME, luaopen_utf8, 0x20 },
{ LUA_LOADLIBNAME, luaopen_package, 0x40 },
{ LUA_DBLIBNAME, luaopen_debug, 0x80 },
{ NULL, NULL, 0 }
};
static uint hlua_openlibs_flags = HLUA_OPENLIBS_ALL;
/* hlua multipurpose timer:
* used to compute burst lua time (within a single hlua_ctx_resume())
* and cumulative lua time for a given coroutine, and to check
@ -13286,6 +13311,66 @@ static int hlua_cfg_parse_bool_sample_conversion(char **args, int section_type,
return 0;
}
static int hlua_cfg_parse_openlibs(char **args, int section_type, struct proxy *curpx,
const struct proxy *defpx, const char *file, int line,
char **err)
{
char *token, *save, *str;
uint flags = 0;
int has_none = 0;
if (too_many_args(1, args, err, NULL))
return -1;
if (!*args[1]) {
memprintf(err, "'%s' expects 'all', 'none', or a comma-separated list of "
"libraries: table,io,os,string,math,utf8,package,debug", args[0]);
return -1;
}
if (hlua_loaded) {
memprintf(err, "'%s' must be set before any \"lua-load\" or "
"\"lua-load-per-thread\" directive.", args[0]);
return -1;
}
str = args[1];
while ((token = strtok_r(str, ",", &save))) {
int i;
if (strcmp(token, "all") == 0) {
flags = HLUA_OPENLIBS_ALL;
}
else if (strcmp(token, "none") == 0) {
has_none = 1;
}
else {
for (i = 0; hlua_openlibs_tbl[i].name; i++) {
if (strcmp(token, hlua_openlibs_tbl[i].name) == 0) {
flags |= hlua_openlibs_tbl[i].flag;
break;
}
}
if (!hlua_openlibs_tbl[i].name) {
int j;
memprintf(err, "'%s': unknown library '%s', expected one of: all,none", args[0], token);
for (j = 0; hlua_openlibs_tbl[j].name; j++)
memprintf(err, "%s,%s", *err, hlua_openlibs_tbl[j].name);
return -1;
}
}
str = NULL;
}
if (has_none && flags) {
memprintf(err, "'%s': 'none' cannot be combined with other libraries.", args[0]);
return -1;
}
hlua_openlibs_flags = flags;
return 0;
}
/* This function is called by the main configuration key "lua-load". It loads and
* execute an lua file during the parsing of the HAProxy configuration file. It is
* the main lua entry point.
@ -13572,6 +13657,7 @@ static struct cfg_kw_list cfg_kws = {{ },{
{ CFG_GLOBAL, "tune.lua.log.loggers", hlua_cfg_parse_log_loggers },
{ CFG_GLOBAL, "tune.lua.log.stderr", hlua_cfg_parse_log_stderr },
{ CFG_GLOBAL, "tune.lua.bool-sample-conversion", hlua_cfg_parse_bool_sample_conversion },
{ CFG_GLOBAL, "tune.lua.openlibs", hlua_cfg_parse_openlibs },
{ 0, NULL, NULL },
}};
@ -14138,8 +14224,25 @@ lua_State *hlua_init_state(int thread_num)
lua_atpanic(L, hlua_panic_ljmp);
}
/* Initialise lua. */
luaL_openlibs(L);
/* Initialise lua: open standard libraries according to tune.lua.openlibs.
* The base and coroutine libraries are always loaded: base provides the
* core Lua functions HAProxy relies on; coroutine.create() is overridden
* by HAProxy's own safe wrapper right after.
*/
if (hlua_openlibs_flags == HLUA_OPENLIBS_ALL) {
luaL_openlibs(L);
} else {
int i;
luaL_requiref(L, LUA_GNAME, luaopen_base, 1); lua_pop(L, 1);
luaL_requiref(L, LUA_COLIBNAME, luaopen_coroutine, 1); lua_pop(L, 1);
for (i = 0; hlua_openlibs_tbl[i].name; i++) {
if (hlua_openlibs_flags & hlua_openlibs_tbl[i].flag) {
luaL_requiref(L, hlua_openlibs_tbl[i].name, hlua_openlibs_tbl[i].open, 1);
lua_pop(L, 1);
}
}
}
#define HLUA_PREPEND_PATH_TOSTRING1(x) #x
#define HLUA_PREPEND_PATH_TOSTRING(x) HLUA_PREPEND_PATH_TOSTRING1(x)
#ifdef HLUA_PREPEND_PATH