X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=src%2Fcore%2Fexecute.h;h=9d05d3a9dec95c7c0985408a07fc202dd264c3f8;hp=efda23f9d8a7f7d61c01252350363e53e31c8f32;hb=3210412576857e26c18bd0d154906bd7444f5529;hpb=b64a3d86bcc3b3698824019d0ebdc2117ad31bb5 diff --git a/src/core/execute.h b/src/core/execute.h index efda23f9d..9d05d3a9d 100644 --- a/src/core/execute.h +++ b/src/core/execute.h @@ -38,6 +38,8 @@ typedef struct ExecRuntime ExecRuntime; #include "util.h" #include "set.h" #include "fdset.h" +#include "missing.h" +#include "namespace.h" typedef enum ExecInput { EXEC_INPUT_NULL, @@ -93,7 +95,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; @@ -112,8 +114,6 @@ struct ExecContext { nsec_t timer_slack_nsec; - char *tcpwrap_name; - char *tty_path; bool tty_reset; @@ -157,6 +157,8 @@ struct ExecContext { bool private_tmp; bool private_network; bool private_devices; + ProtectSystem protect_system; + ProtectHome protect_home; bool no_new_privileges; @@ -177,10 +179,14 @@ struct ExecContext { 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" @@ -196,6 +202,7 @@ 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], @@ -219,6 +226,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);