X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=src%2Fcore%2Fexecute.h;h=3c905cefae9eacab0cdf27799c68e51c82962915;hp=b2d70d7d86bb9c0ab53e3e5de026f9bf2b8a70a3;hb=4298d0b5128326621c8f537107c4c8b459490721;hpb=c0467cf387548dc98c0254f63553d862b35a84e5 diff --git a/src/core/execute.h b/src/core/execute.h index b2d70d7d8..3c905cefa 100644 --- a/src/core/execute.h +++ b/src/core/execute.h @@ -138,8 +138,12 @@ struct ExecContext { char *utmp_id; + bool selinux_context_ignore; char *selinux_context; + bool apparmor_profile_ignore; + char *apparmor_profile; + char **read_write_dirs, **read_only_dirs, **inaccessible_dirs; unsigned long mount_flags; @@ -167,12 +171,15 @@ struct ExecContext { * don't enter a trigger loop. */ bool same_pgrp; -#ifdef HAVE_SECCOMP - scmp_filter_ctx syscall_filter; - Set *filtered_syscalls; - uint32_t syscall_filter_default_action; -#endif - char *syscall_filter_string; + unsigned long personality; + + Set *syscall_filter; + Set *syscall_archs; + int syscall_errno; + bool syscall_whitelist:1; + + Set *address_families; + bool address_families_whitelist:1; bool oom_score_adjust_set:1; bool nice_set:1;