X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=src%2Fcore%2Fexecute.h;h=c9e29ffc8a9a0c730d2f54ddc1cfb869f21a96b0;hp=bd3db0b633274eb1028292d20b41137b2b5cf90e;hb=4e595329a93ed190795c2e24bf132d5028ec6a72;hpb=a809021a9c330236d520eb329cfb4d52a401e8a0 diff --git a/src/core/execute.h b/src/core/execute.h index bd3db0b63..c9e29ffc8 100644 --- a/src/core/execute.h +++ b/src/core/execute.h @@ -36,7 +36,9 @@ typedef struct ExecRuntime ExecRuntime; #include "list.h" #include "util.h" +#include "set.h" #include "fdset.h" +#include "missing.h" typedef enum ExecInput { EXEC_INPUT_NULL, @@ -92,7 +94,7 @@ struct ExecContext { char **environment; char **environment_files; - struct rlimit *rlimit[RLIMIT_NLIMITS]; + struct rlimit *rlimit[_RLIMIT_MAX]; char *working_directory, *root_directory; mode_t umask; @@ -111,8 +113,6 @@ struct ExecContext { nsec_t timer_slack_nsec; - char *tcpwrap_name; - char *tty_path; bool tty_reset; @@ -133,6 +133,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; @@ -149,6 +155,7 @@ struct ExecContext { bool non_blocking; bool private_tmp; bool private_network; + bool private_devices; bool no_new_privileges; @@ -159,12 +166,24 @@ 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; + + Set *address_families; + bool address_families_whitelist:1; + + char **runtime_directory; + mode_t runtime_directory_mode; bool oom_score_adjust_set:1; bool nice_set:1; bool ioprio_set:1; bool cpu_sched_set:1; + bool no_new_privileges_set:1; }; #include "cgroup.h" @@ -180,7 +199,9 @@ int exec_spawn(ExecCommand *command, bool confirm_spawn, CGroupControllerMask cgroup_mask, const char *cgroup_path, + const char *runtime_prefix, const char *unit_id, + usec_t watchdog_usec, int pipe_fd[2], ExecRuntime *runtime, pid_t *ret); @@ -202,6 +223,8 @@ void exec_context_init(ExecContext *c); void exec_context_done(ExecContext *c); void exec_context_dump(ExecContext *c, FILE* f, const char *prefix); +int exec_context_destroy_runtime_directory(ExecContext *c, const char *runtime_root); + int exec_context_load_environment(const ExecContext *c, char ***l); bool exec_context_may_touch_console(ExecContext *c);