diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2022-04-05 22:39:17 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2022-04-05 22:39:17 -0700 |
commit | 9d81974a3116e52fcc84f919aacff766dee62162 (patch) | |
tree | a1899961e20da90821862fc42da51a52e1062d9a /src/teliva.c | |
parent | 6099fa7fb2a0a03bd0176ae546504eef21a095a0 (diff) | |
download | teliva-9d81974a3116e52fcc84f919aacff766dee62162.tar.gz |
new permission: any file specified at commandline
Diffstat (limited to 'src/teliva.c')
-rw-r--r-- | src/teliva.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/teliva.c b/src/teliva.c index b0b6f54..04c1ba6 100644 --- a/src/teliva.c +++ b/src/teliva.c @@ -27,6 +27,13 @@ int contains(const char* s, const char* sub) { return strstr(s, sub) != NULL; } +int any_equal(char* const* arr, const char* s) { + for (int i = 0; arr[i]; ++i) + if (strcmp(arr[i], s) == 0) + return 1; + return 0; +} + /*** Standard UI elements */ int menu_column = 0; @@ -1310,10 +1317,21 @@ static void clear_call_graph_depth(lua_State* L) { /* Perform privilege calculations in a whole other isolated context. */ lua_State* trustedL = NULL; +static int isarg(lua_State* trustedL) { + const char* arg = luaL_checkstring(trustedL, -1); + lua_pushboolean(trustedL, any_equal(Argv, arg)); + return 1; +} + +static const luaL_Reg trusted_base_funcs[] = { + {"isarg", isarg}, +}; + void initialize_trustedL() { trustedL = luaL_newstate(); lua_gc(trustedL, LUA_GCSTOP, 0); /* stop collector during initialization */ luaL_openlibs(trustedL); + luaL_register(trustedL, "_G", trusted_base_funcs); /* TODO: Should we include ncurses? How to debug policies? */ lua_gc(trustedL, LUA_GCRESTART, 0); } @@ -1607,6 +1625,7 @@ void print_file_permission_suggestions(int row) { mvaddstr(row++, 0, "-- * restrict to files with a fixed prefix: return string.find(filename, 'foo') == 1"); mvaddstr(row++, 0, "-- * restrict to files with a fixed extension: return filename:sub(-4) == '.txt'"); mvaddstr(row++, 0, "-- * restrict to files under some directory: return string.find(filename, 'foo/') == 1"); + mvaddstr(row++, 0, "-- * restrict access only to commandline args: return inargs(filename)"); mvaddstr(row++, 0, "--"); mvaddstr(row++, 0, "-- Each of these has benefits and drawbacks."); } |