X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;ds=sidebyside;f=src%2Fcore%2Fexecute.h;h=06b6b3fb2da8895b1d2b31360f06b1bd876008b5;hb=57183d117a1d6a96d71ce99d648beb0d2b36228d;hp=4851152743ba7fd9e9e870fe6ebc6371410056b5;hpb=7f112f50fea585411ea2d493b3582bea77eb4d6e;p=elogind.git diff --git a/src/core/execute.h b/src/core/execute.h index 485115274..06b6b3fb2 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,8 @@ struct ExecContext { char *utmp_id; + char *selinux_context; + char **read_write_dirs, **read_only_dirs, **inaccessible_dirs; unsigned long mount_flags; @@ -160,7 +167,10 @@ struct ExecContext { * don't enter a trigger loop. */ bool same_pgrp; - uint32_t *syscall_filter; + Set *syscall_filter; + Set *syscall_archs; + int syscall_errno; + bool syscall_whitelist:1; bool oom_score_adjust_set:1; bool nice_set:1;