X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;ds=sidebyside;f=src%2Fcore%2Fexecute.h;h=5c4c0b4abe635393b1d1e8b23b337af5ff16c617;hb=d9d93745cd2efcdfca8f82d798e61e0ee70cef5c;hp=bd3db0b633274eb1028292d20b41137b2b5cf90e;hpb=a809021a9c330236d520eb329cfb4d52a401e8a0;p=elogind.git diff --git a/src/core/execute.h b/src/core/execute.h index bd3db0b63..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; @@ -181,6 +195,7 @@ int exec_spawn(ExecCommand *command, CGroupControllerMask cgroup_mask, const char *cgroup_path, const char *unit_id, + usec_t watchdog_usec, int pipe_fd[2], ExecRuntime *runtime, pid_t *ret);