X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Fcore%2Fexecute.h;h=5c4c0b4abe635393b1d1e8b23b337af5ff16c617;hb=37f78db2f4a33474fc349f406b0a0a48e9c573a2;hp=989373f4818f20a9c40c364dccd5fdb32cee312e;hpb=09812eb764b440651f3ff4cb5d37bd343f800560;p=elogind.git diff --git a/src/core/execute.h b/src/core/execute.h index 989373f48..5c4c0b4ab 100644 --- a/src/core/execute.h +++ b/src/core/execute.h @@ -33,6 +33,11 @@ typedef struct ExecRuntime ExecRuntime; #include #include #include +#ifdef HAVE_SECCOMP +#include + +#include "set.h" +#endif #include "list.h" #include "util.h" @@ -133,6 +138,9 @@ struct ExecContext { char *utmp_id; + bool selinux_context_ignore; + char *selinux_context; + char **read_write_dirs, **read_only_dirs, **inaccessible_dirs; unsigned long mount_flags; @@ -149,6 +157,7 @@ struct ExecContext { bool non_blocking; bool private_tmp; bool private_network; + bool private_devices; bool no_new_privileges; @@ -159,7 +168,12 @@ struct ExecContext { * don't enter a trigger loop. */ bool same_pgrp; - uint32_t *syscall_filter; + unsigned long personality; + + Set *syscall_filter; + Set *syscall_archs; + int syscall_errno; + bool syscall_whitelist:1; bool oom_score_adjust_set:1; bool nice_set:1;