chiark / gitweb /
socket: introduce SELinuxLabelViaNet option
[elogind.git] / src / core / execute.h
1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3 #pragma once
4
5 /***
6   This file is part of systemd.
7
8   Copyright 2010 Lennart Poettering
9
10   systemd is free software; you can redistribute it and/or modify it
11   under the terms of the GNU Lesser General Public License as published by
12   the Free Software Foundation; either version 2.1 of the License, or
13   (at your option) any later version.
14
15   systemd is distributed in the hope that it will be useful, but
16   WITHOUT ANY WARRANTY; without even the implied warranty of
17   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18   Lesser General Public License for more details.
19
20   You should have received a copy of the GNU Lesser General Public License
21   along with systemd; If not, see <http://www.gnu.org/licenses/>.
22 ***/
23
24 typedef struct ExecStatus ExecStatus;
25 typedef struct ExecCommand ExecCommand;
26 typedef struct ExecContext ExecContext;
27 typedef struct ExecRuntime ExecRuntime;
28
29 #include <linux/types.h>
30 #include <sys/time.h>
31 #include <sys/resource.h>
32 #include <sys/capability.h>
33 #include <stdbool.h>
34 #include <stdio.h>
35 #include <sched.h>
36
37 #include "list.h"
38 #include "util.h"
39 #include "set.h"
40 #include "fdset.h"
41 #include "missing.h"
42 #include "namespace.h"
43
44 typedef enum ExecInput {
45         EXEC_INPUT_NULL,
46         EXEC_INPUT_TTY,
47         EXEC_INPUT_TTY_FORCE,
48         EXEC_INPUT_TTY_FAIL,
49         EXEC_INPUT_SOCKET,
50         _EXEC_INPUT_MAX,
51         _EXEC_INPUT_INVALID = -1
52 } ExecInput;
53
54 typedef enum ExecOutput {
55         EXEC_OUTPUT_INHERIT,
56         EXEC_OUTPUT_NULL,
57         EXEC_OUTPUT_TTY,
58         EXEC_OUTPUT_SYSLOG,
59         EXEC_OUTPUT_SYSLOG_AND_CONSOLE,
60         EXEC_OUTPUT_KMSG,
61         EXEC_OUTPUT_KMSG_AND_CONSOLE,
62         EXEC_OUTPUT_JOURNAL,
63         EXEC_OUTPUT_JOURNAL_AND_CONSOLE,
64         EXEC_OUTPUT_SOCKET,
65         _EXEC_OUTPUT_MAX,
66         _EXEC_OUTPUT_INVALID = -1
67 } ExecOutput;
68
69 struct ExecStatus {
70         dual_timestamp start_timestamp;
71         dual_timestamp exit_timestamp;
72         pid_t pid;
73         int code;     /* as in siginfo_t::si_code */
74         int status;   /* as in sigingo_t::si_status */
75 };
76
77 struct ExecCommand {
78         char *path;
79         char **argv;
80         ExecStatus exec_status;
81         LIST_FIELDS(ExecCommand, command); /* useful for chaining commands */
82         bool ignore;
83 };
84
85 struct ExecRuntime {
86         int n_ref;
87
88         char *tmp_dir;
89         char *var_tmp_dir;
90
91         int netns_storage_socket[2];
92 };
93
94 struct ExecContext {
95         char **environment;
96         char **environment_files;
97
98         struct rlimit *rlimit[_RLIMIT_MAX];
99         char *working_directory, *root_directory;
100
101         mode_t umask;
102         int oom_score_adjust;
103         int nice;
104         int ioprio;
105         int cpu_sched_policy;
106         int cpu_sched_priority;
107
108         cpu_set_t *cpuset;
109         unsigned cpuset_ncpus;
110
111         ExecInput std_input;
112         ExecOutput std_output;
113         ExecOutput std_error;
114
115         nsec_t timer_slack_nsec;
116
117         char *tty_path;
118
119         bool tty_reset;
120         bool tty_vhangup;
121         bool tty_vt_disallocate;
122
123         bool ignore_sigpipe;
124
125         /* Since resolving these names might might involve socket
126          * connections and we don't want to deadlock ourselves these
127          * names are resolved on execution only and in the child
128          * process. */
129         char *user;
130         char *group;
131         char **supplementary_groups;
132
133         char *pam_name;
134
135         char *utmp_id;
136
137         bool selinux_context_ignore;
138         char *selinux_context;
139         bool selinux_label_via_net;
140
141         bool apparmor_profile_ignore;
142         char *apparmor_profile;
143
144         char **read_write_dirs, **read_only_dirs, **inaccessible_dirs;
145         unsigned long mount_flags;
146
147         uint64_t capability_bounding_set_drop;
148
149         cap_t capabilities;
150         int secure_bits;
151
152         int syslog_priority;
153         char *syslog_identifier;
154         bool syslog_level_prefix;
155
156         bool cpu_sched_reset_on_fork;
157         bool non_blocking;
158         bool private_tmp;
159         bool private_network;
160         bool private_devices;
161         ProtectSystem protect_system;
162         ProtectHome protect_home;
163
164         bool no_new_privileges;
165
166         /* This is not exposed to the user but available
167          * internally. We need it to make sure that whenever we spawn
168          * /bin/mount it is run in the same process group as us so
169          * that the autofs logic detects that it belongs to us and we
170          * don't enter a trigger loop. */
171         bool same_pgrp;
172
173         unsigned long personality;
174
175         Set *syscall_filter;
176         Set *syscall_archs;
177         int syscall_errno;
178         bool syscall_whitelist:1;
179
180         Set *address_families;
181         bool address_families_whitelist:1;
182
183         char **runtime_directory;
184         mode_t runtime_directory_mode;
185
186         bool oom_score_adjust_set:1;
187         bool nice_set:1;
188         bool ioprio_set:1;
189         bool cpu_sched_set:1;
190         bool no_new_privileges_set:1;
191 };
192
193 #include "cgroup.h"
194
195 int exec_spawn(ExecCommand *command,
196                char **argv,
197                ExecContext *context,
198                int fds[], unsigned n_fds,
199                char **environment,
200                bool apply_permissions,
201                bool apply_chroot,
202                bool apply_tty_stdin,
203                bool confirm_spawn,
204                CGroupControllerMask cgroup_mask,
205                const char *cgroup_path,
206                const char *runtime_prefix,
207                const char *unit_id,
208                usec_t watchdog_usec,
209                int pipe_fd[2],
210                ExecRuntime *runtime,
211                pid_t *ret);
212
213 void exec_command_done(ExecCommand *c);
214 void exec_command_done_array(ExecCommand *c, unsigned n);
215
216 void exec_command_free_list(ExecCommand *c);
217 void exec_command_free_array(ExecCommand **c, unsigned n);
218
219 char *exec_command_line(char **argv);
220
221 void exec_command_dump(ExecCommand *c, FILE *f, const char *prefix);
222 void exec_command_dump_list(ExecCommand *c, FILE *f, const char *prefix);
223 void exec_command_append_list(ExecCommand **l, ExecCommand *e);
224 int exec_command_set(ExecCommand *c, const char *path, ...);
225
226 void exec_context_init(ExecContext *c);
227 void exec_context_done(ExecContext *c);
228 void exec_context_dump(ExecContext *c, FILE* f, const char *prefix);
229
230 int exec_context_destroy_runtime_directory(ExecContext *c, const char *runtime_root);
231
232 int exec_context_load_environment(const ExecContext *c, char ***l);
233
234 bool exec_context_may_touch_console(ExecContext *c);
235
236 void exec_status_start(ExecStatus *s, pid_t pid);
237 void exec_status_exit(ExecStatus *s, ExecContext *context, pid_t pid, int code, int status);
238 void exec_status_dump(ExecStatus *s, FILE *f, const char *prefix);
239
240 int exec_runtime_make(ExecRuntime **rt, ExecContext *c, const char *id);
241 ExecRuntime *exec_runtime_ref(ExecRuntime *r);
242 ExecRuntime *exec_runtime_unref(ExecRuntime *r);
243
244 int exec_runtime_serialize(ExecRuntime *rt, Unit *u, FILE *f, FDSet *fds);
245 int exec_runtime_deserialize_item(ExecRuntime **rt, Unit *u, const char *key, const char *value, FDSet *fds);
246
247 void exec_runtime_destroy(ExecRuntime *rt);
248
249 const char* exec_output_to_string(ExecOutput i) _const_;
250 ExecOutput exec_output_from_string(const char *s) _pure_;
251
252 const char* exec_input_to_string(ExecInput i) _const_;
253 ExecInput exec_input_from_string(const char *s) _pure_;