Merge branch 'develop' into 'develop'

unblocks required syscalls gettimeofday and clock_gettime

See merge request pwmt/zathura!69
This commit is contained in:
Sebastian Ramacher 2023-01-05 15:30:55 +01:00
commit 81e541e3f0

View File

@ -160,6 +160,7 @@ seccomp_enable_strict_filter(zathura_t* zathura)
ALLOW_RULE(brk);
/* ALLOW_RULE(clock_getres); unused? */
/* ALLOW_RULE(clone); specified below, clone3 see comment below */
ALLOW_RULE(clock_gettime);
ALLOW_RULE(close);
ALLOW_RULE(eventfd2);
ALLOW_RULE(exit);
@ -183,6 +184,7 @@ seccomp_enable_strict_filter(zathura_t* zathura)
ALLOW_RULE(getpid);
ALLOW_RULE(getppid); /* required inside containers */
ALLOW_RULE(gettid);
ALLOW_RULE(gettimeofday);
ALLOW_RULE(getrandom);
ALLOW_RULE(getresgid);
ALLOW_RULE(getresuid);