]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/core/execute.h
core: new feature MountImages
[thirdparty/systemd.git] / src / core / execute.h
CommitLineData
53e1b683 1/* SPDX-License-Identifier: LGPL-2.1+ */
c2f1db8f 2#pragma once
5cb5a6ff
LP
3
4typedef struct ExecStatus ExecStatus;
5typedef struct ExecCommand ExecCommand;
6typedef struct ExecContext ExecContext;
613b411c 7typedef struct ExecRuntime ExecRuntime;
9fa95f85 8typedef struct ExecParameters ExecParameters;
e8a565cb 9typedef struct Manager Manager;
5cb5a6ff 10
71d35b6b 11#include <sched.h>
5cb5a6ff
LP
12#include <stdbool.h>
13#include <stdio.h>
71d35b6b 14#include <sys/capability.h>
5cb5a6ff 15
9ce93478 16#include "cgroup-util.h"
ad21e542 17#include "coredump-util.h"
0985c7c4 18#include "cpu-set-util.h"
b3d59367 19#include "exec-util.h"
613b411c 20#include "fdset.h"
71d35b6b 21#include "list.h"
e93672ee 22#include "missing_resource.h"
417116f2 23#include "namespace.h"
add00535 24#include "nsflags.h"
1808f768 25#include "numa-util.h"
ca78ad1d 26#include "time-util.h"
5cb5a6ff 27
08f3be7a
LP
28#define EXEC_STDIN_DATA_MAX (64U*1024U*1024U)
29
023a4f67
LP
30typedef enum ExecUtmpMode {
31 EXEC_UTMP_INIT,
32 EXEC_UTMP_LOGIN,
33 EXEC_UTMP_USER,
34 _EXEC_UTMP_MODE_MAX,
2307f37e 35 _EXEC_UTMP_MODE_INVALID = -1
023a4f67
LP
36} ExecUtmpMode;
37
80876c20
LP
38typedef enum ExecInput {
39 EXEC_INPUT_NULL,
40 EXEC_INPUT_TTY,
41 EXEC_INPUT_TTY_FORCE,
42 EXEC_INPUT_TTY_FAIL,
4f2d528d 43 EXEC_INPUT_SOCKET,
52c239d7 44 EXEC_INPUT_NAMED_FD,
08f3be7a 45 EXEC_INPUT_DATA,
2038c3f5 46 EXEC_INPUT_FILE,
80876c20
LP
47 _EXEC_INPUT_MAX,
48 _EXEC_INPUT_INVALID = -1
49} ExecInput;
50
071830ff 51typedef enum ExecOutput {
80876c20 52 EXEC_OUTPUT_INHERIT,
94f04347 53 EXEC_OUTPUT_NULL,
80876c20 54 EXEC_OUTPUT_TTY,
9a6bca7a 55 EXEC_OUTPUT_KMSG,
28dbc1e8 56 EXEC_OUTPUT_KMSG_AND_CONSOLE,
706343f4
LP
57 EXEC_OUTPUT_JOURNAL,
58 EXEC_OUTPUT_JOURNAL_AND_CONSOLE,
4f2d528d 59 EXEC_OUTPUT_SOCKET,
52c239d7 60 EXEC_OUTPUT_NAMED_FD,
2038c3f5 61 EXEC_OUTPUT_FILE,
566b7d23 62 EXEC_OUTPUT_FILE_APPEND,
94f04347
LP
63 _EXEC_OUTPUT_MAX,
64 _EXEC_OUTPUT_INVALID = -1
071830ff
LP
65} ExecOutput;
66
53f47dfc
YW
67typedef enum ExecPreserveMode {
68 EXEC_PRESERVE_NO,
69 EXEC_PRESERVE_YES,
70 EXEC_PRESERVE_RESTART,
71 _EXEC_PRESERVE_MODE_MAX,
72 _EXEC_PRESERVE_MODE_INVALID = -1
73} ExecPreserveMode;
74
b1edf445
LP
75typedef enum ExecKeyringMode {
76 EXEC_KEYRING_INHERIT,
77 EXEC_KEYRING_PRIVATE,
78 EXEC_KEYRING_SHARED,
79 _EXEC_KEYRING_MODE_MAX,
80 _EXEC_KEYRING_MODE_INVALID = -1,
81} ExecKeyringMode;
82
42cb05d5 83/* Contains start and exit information about an executed command. */
5cb5a6ff 84struct ExecStatus {
63983207
LP
85 dual_timestamp start_timestamp;
86 dual_timestamp exit_timestamp;
0a6991e0 87 pid_t pid;
9152c765
LP
88 int code; /* as in siginfo_t::si_code */
89 int status; /* as in sigingo_t::si_status */
5cb5a6ff
LP
90};
91
42cb05d5 92/* Stores information about commands we execute. Covers both configuration settings as well as runtime data. */
5cb5a6ff
LP
93struct ExecCommand {
94 char *path;
95 char **argv;
034c6ed7 96 ExecStatus exec_status;
3ed0cd26 97 ExecCommandFlags flags;
034c6ed7 98 LIST_FIELDS(ExecCommand, command); /* useful for chaining commands */
5cb5a6ff
LP
99};
100
42cb05d5
LP
101/* Encapsulates certain aspects of the runtime environment that is to be shared between multiple otherwise separate
102 * invocations of commands. Specifically, this allows sharing of /tmp and /var/tmp data as well as network namespaces
103 * between invocations of commands. This is a reference counted object, with one reference taken by each currently
104 * active command invocation that wants to share this runtime. */
613b411c 105struct ExecRuntime {
cf4b2f99 106 unsigned n_ref;
613b411c 107
e8a565cb
YW
108 Manager *manager;
109
42cb05d5 110 char *id; /* Unit id of the owner */
e8a565cb 111
613b411c
LP
112 char *tmp_dir;
113 char *var_tmp_dir;
114
29206d46
LP
115 /* An AF_UNIX socket pair, that contains a datagram containing a file descriptor referring to the network
116 * namespace. */
613b411c
LP
117 int netns_storage_socket[2];
118};
119
3536f49e
YW
120typedef enum ExecDirectoryType {
121 EXEC_DIRECTORY_RUNTIME = 0,
122 EXEC_DIRECTORY_STATE,
123 EXEC_DIRECTORY_CACHE,
124 EXEC_DIRECTORY_LOGS,
125 EXEC_DIRECTORY_CONFIGURATION,
72fd1768
LP
126 _EXEC_DIRECTORY_TYPE_MAX,
127 _EXEC_DIRECTORY_TYPE_INVALID = -1,
3536f49e
YW
128} ExecDirectoryType;
129
130typedef struct ExecDirectory {
131 char **paths;
132 mode_t mode;
133} ExecDirectory;
134
380dc8b0
LP
135typedef enum ExecCleanMask {
136 /* In case you wonder why the bitmask below doesn't use "directory" in its name: we want to keep this
137 * generic so that .timer timestamp files can nicely be covered by this too, and similar. */
138 EXEC_CLEAN_RUNTIME = 1U << EXEC_DIRECTORY_RUNTIME,
139 EXEC_CLEAN_STATE = 1U << EXEC_DIRECTORY_STATE,
140 EXEC_CLEAN_CACHE = 1U << EXEC_DIRECTORY_CACHE,
141 EXEC_CLEAN_LOGS = 1U << EXEC_DIRECTORY_LOGS,
142 EXEC_CLEAN_CONFIGURATION = 1U << EXEC_DIRECTORY_CONFIGURATION,
143 EXEC_CLEAN_NONE = 0,
144 EXEC_CLEAN_ALL = (1U << _EXEC_DIRECTORY_TYPE_MAX) - 1,
145 _EXEC_CLEAN_MASK_INVALID = -1,
146} ExecCleanMask;
147
42cb05d5
LP
148/* Encodes configuration parameters applied to invoked commands. Does not carry runtime data, but only configuration
149 * changes sourced from unit files and suchlike. ExecContext objects are usually embedded into Unit objects, and do not
150 * change after being loaded. */
5cb5a6ff
LP
151struct ExecContext {
152 char **environment;
8c7be95e 153 char **environment_files;
b4c14404 154 char **pass_environment;
00819cc1 155 char **unset_environment;
8c7be95e 156
517d56b1 157 struct rlimit *rlimit[_RLIMIT_MAX];
d4d55b0d
LB
158 char *working_directory, *root_directory, *root_image, *root_verity, *root_hash_path, *root_hash_sig_path;
159 void *root_hash, *root_hash_sig;
160 size_t root_hash_size, root_hash_sig_size;
18d73705 161 LIST_HEAD(MountOptions, root_image_options);
0a6991e0
LP
162 bool working_directory_missing_ok:1;
163 bool working_directory_home:1;
164
165 bool oom_score_adjust_set:1;
ad21e542 166 bool coredump_filter_set:1;
0a6991e0
LP
167 bool nice_set:1;
168 bool ioprio_set:1;
169 bool cpu_sched_set:1;
170
171 /* This is not exposed to the user but available internally. We need it to make sure that whenever we
172 * spawn /usr/bin/mount it is run in the same process group as us so that the autofs logic detects
173 * that it belongs to us and we don't enter a trigger loop. */
174 bool same_pgrp;
175
176 bool cpu_sched_reset_on_fork;
177 bool non_blocking;
9d58f1db
LP
178
179 mode_t umask;
dd6c17b1 180 int oom_score_adjust;
5cb5a6ff 181 int nice;
9eba9da4 182 int ioprio;
94f04347
LP
183 int cpu_sched_policy;
184 int cpu_sched_priority;
ad21e542 185 uint64_t coredump_filter;
9d58f1db 186
0985c7c4 187 CPUSet cpu_set;
b070c7c0 188 NUMAPolicy numa_policy;
e2b2fb7f 189 bool cpu_affinity_from_numa;
fb33a393 190
80876c20
LP
191 ExecInput std_input;
192 ExecOutput std_output;
193 ExecOutput std_error;
0a6991e0 194 bool stdio_as_fds;
52c239d7 195 char *stdio_fdname[3];
2038c3f5 196 char *stdio_file[3];
80876c20 197
08f3be7a
LP
198 void *stdin_data;
199 size_t stdin_data_size;
80876c20 200
d88a251b 201 nsec_t timer_slack_nsec;
071830ff 202
9d58f1db 203 char *tty_path;
5cb5a6ff 204
6ea832a2
LP
205 bool tty_reset;
206 bool tty_vhangup;
207 bool tty_vt_disallocate;
208
353e12c2
LP
209 bool ignore_sigpipe;
210
0a6991e0
LP
211 ExecKeyringMode keyring_mode;
212
61233823 213 /* Since resolving these names might involve socket
5cb5a6ff 214 * connections and we don't want to deadlock ourselves these
94f04347
LP
215 * names are resolved on execution only and in the child
216 * process. */
5cb5a6ff
LP
217 char *user;
218 char *group;
219 char **supplementary_groups;
9d58f1db 220
5b6319dc
LP
221 char *pam_name;
222
169c1bda 223 char *utmp_id;
023a4f67 224 ExecUtmpMode utmp_mode;
169c1bda 225
0a6991e0 226 bool no_new_privileges;
7b52a628 227
0a6991e0 228 bool selinux_context_ignore;
eef65bf3 229 bool apparmor_profile_ignore;
2ca620c4 230 bool smack_process_label_ignore;
2ca620c4 231
0a6991e0
LP
232 char *selinux_context;
233 char *apparmor_profile;
234 char *smack_process_label;
b1edf445 235
2a624c36 236 char **read_write_paths, **read_only_paths, **inaccessible_paths;
15ae422b 237 unsigned long mount_flags;
d2d6c096 238 BindMount *bind_mounts;
da6053d0 239 size_t n_bind_mounts;
2abd4e38 240 TemporaryFileSystem *temporary_filesystems;
da6053d0 241 size_t n_temporary_filesystems;
b3d13314
LB
242 MountImage *mount_images;
243 size_t n_mount_images;
15ae422b 244
a103496c 245 uint64_t capability_bounding_set;
755d4b67 246 uint64_t capability_ambient_set;
9d58f1db
LP
247 int secure_bits;
248
7fab9d01 249 int syslog_priority;
7fab9d01 250 bool syslog_level_prefix;
0a6991e0 251 char *syslog_identifier;
d3070fbd
LP
252
253 struct iovec* log_extra_fields;
254 size_t n_log_extra_fields;
255
5ac1530e
ZJS
256 usec_t log_ratelimit_interval_usec;
257 unsigned log_ratelimit_burst;
90fc172e 258
0a6991e0
LP
259 int log_level_max;
260
91dd5f7c
LP
261 char *log_namespace;
262
15ae422b 263 bool private_tmp;
ff01d048 264 bool private_network;
7f112f50 265 bool private_devices;
d251207d 266 bool private_users;
228af36f 267 bool private_mounts;
59eeb84b 268 bool protect_kernel_tunables;
502d704e 269 bool protect_kernel_modules;
84703040 270 bool protect_kernel_logs;
fc64760d 271 bool protect_clock;
59eeb84b 272 bool protect_control_groups;
0a6991e0
LP
273 ProtectSystem protect_system;
274 ProtectHome protect_home;
275 bool protect_hostname;
5d997827 276 bool mount_apivfs;
9d58f1db 277
29206d46 278 bool dynamic_user;
00d9ef85 279 bool remove_ipc;
29206d46 280
0a6991e0
LP
281 bool memory_deny_write_execute;
282 bool restrict_realtime;
f69567cb 283 bool restrict_suid_sgid;
2e22afe9 284
78e864e5 285 bool lock_personality;
0a6991e0 286 unsigned long personality;
ac45f971 287
add00535
LP
288 unsigned long restrict_namespaces; /* The CLONE_NEWxyz flags permitted to the unit's processes */
289
8cfa775f 290 Hashmap *syscall_filter;
57183d11 291 Set *syscall_archs;
17df7223 292 int syscall_errno;
6b000af4 293 bool syscall_allow_list:1;
8351ceae 294
6b000af4 295 bool address_families_allow_list:1;
0a6991e0 296 Set *address_families;
a8d08f39
LP
297
298 char *network_namespace_path;
0a6991e0
LP
299
300 ExecDirectory directories[_EXEC_DIRECTORY_TYPE_MAX];
301 ExecPreserveMode runtime_directory_preserve_mode;
12213aed 302 usec_t timeout_clean_usec;
5cb5a6ff
LP
303};
304
add00535
LP
305static inline bool exec_context_restrict_namespaces_set(const ExecContext *c) {
306 assert(c);
307
308 return (c->restrict_namespaces & NAMESPACE_FLAGS_ALL) != NAMESPACE_FLAGS_ALL;
309}
310
c39f1ce2 311typedef enum ExecFlags {
ef31828d
LP
312 EXEC_APPLY_SANDBOXING = 1 << 0,
313 EXEC_APPLY_CHROOT = 1 << 1,
314 EXEC_APPLY_TTY_STDIN = 1 << 2,
8f9f3cb7
AB
315 EXEC_PASS_LOG_UNIT = 1 << 3, /* Whether to pass the unit name to the service's journal stream connection */
316 EXEC_CHOWN_DIRECTORIES = 1 << 4, /* chown() the runtime/state/cache/log directories to the user we run as, under all conditions */
317 EXEC_NSS_BYPASS_BUS = 1 << 5, /* Set the SYSTEMD_NSS_BYPASS_BUS environment variable, to disable nss-systemd for dbus */
318 EXEC_CGROUP_DELEGATE = 1 << 6,
319 EXEC_IS_CONTROL = 1 << 7,
320 EXEC_CONTROL_CGROUP = 1 << 8, /* Place the process not in the indicated cgroup but in a subcgroup '/.control', but only EXEC_CGROUP_DELEGATE and EXEC_IS_CONTROL is set, too */
c39f1ce2 321
9c1a61ad 322 /* The following are not used by execute.c, but by consumers internally */
8f9f3cb7
AB
323 EXEC_PASS_FDS = 1 << 9,
324 EXEC_SETENV_RESULT = 1 << 10,
325 EXEC_SET_WATCHDOG = 1 << 11,
c39f1ce2
LP
326} ExecFlags;
327
42cb05d5
LP
328/* Parameters for a specific invocation of a command. This structure is put together right before a command is
329 * executed. */
9fa95f85 330struct ExecParameters {
a34ceba6 331 char **environment;
8dd4c05b
LP
332
333 int *fds;
334 char **fd_names;
da6053d0 335 size_t n_socket_fds;
25b583d7 336 size_t n_storage_fds;
8dd4c05b 337
c39f1ce2 338 ExecFlags flags;
a34ceba6 339 bool selinux_context_net:1;
8dd4c05b 340
efdb0237 341 CGroupMask cgroup_supported;
9fa95f85 342 const char *cgroup_path;
8dd4c05b 343
3536f49e 344 char **prefix;
8dd4c05b 345
7d5ceb64
FB
346 const char *confirm_spawn;
347
9fa95f85 348 usec_t watchdog_usec;
8dd4c05b 349
9fa95f85 350 int *idle_pipe;
8dd4c05b 351
a34ceba6
LP
352 int stdin_fd;
353 int stdout_fd;
354 int stderr_fd;
5686391b
LP
355
356 /* An fd that is closed by the execve(), and thus will result in EOF when the execve() is done */
357 int exec_fd;
9fa95f85
DM
358};
359
9ce93478 360#include "unit.h"
29206d46 361#include "dynamic-user.h"
9ce93478 362
f2341e0a
LP
363int exec_spawn(Unit *unit,
364 ExecCommand *command,
9fa95f85
DM
365 const ExecContext *context,
366 const ExecParameters *exec_params,
613b411c 367 ExecRuntime *runtime,
29206d46 368 DynamicCreds *dynamic_creds,
81a2b7ce 369 pid_t *ret);
5cb5a6ff 370
da6053d0 371void exec_command_done_array(ExecCommand *c, size_t n);
f1acf85a 372ExecCommand* exec_command_free_list(ExecCommand *c);
da6053d0 373void exec_command_free_array(ExecCommand **c, size_t n);
6a1d4d9f
LP
374void exec_command_reset_status_array(ExecCommand *c, size_t n);
375void exec_command_reset_status_list_array(ExecCommand **c, size_t n);
44d8db9e 376void exec_command_dump_list(ExecCommand *c, FILE *f, const char *prefix);
a6a80b4f 377void exec_command_append_list(ExecCommand **l, ExecCommand *e);
7593c3ec
LP
378int exec_command_set(ExecCommand *c, const char *path, ...) _sentinel_;
379int exec_command_append(ExecCommand *c, const char *path, ...) _sentinel_;
44d8db9e 380
034c6ed7 381void exec_context_init(ExecContext *c);
613b411c 382void exec_context_done(ExecContext *c);
34cf6c43 383void exec_context_dump(const ExecContext *c, FILE* f, const char *prefix);
5cb5a6ff 384
34cf6c43 385int exec_context_destroy_runtime_directory(const ExecContext *c, const char *runtime_root);
e66cf1a3 386
52c239d7 387const char* exec_context_fdname(const ExecContext *c, int fd_index);
8c7be95e 388
34cf6c43
YW
389bool exec_context_may_touch_console(const ExecContext *c);
390bool exec_context_maintains_privileges(const ExecContext *c);
6ac8fdc9 391
34cf6c43 392int exec_context_get_effective_ioprio(const ExecContext *c);
7f452159 393
d3070fbd
LP
394void exec_context_free_log_extra_fields(ExecContext *c);
395
6f765baf
LP
396void exec_context_revert_tty(ExecContext *c);
397
4c2f5842
LP
398int exec_context_get_clean_directories(ExecContext *c, char **prefix, ExecCleanMask mask, char ***ret);
399int exec_context_get_clean_mask(ExecContext *c, ExecCleanMask *ret);
400
b58b4116 401void exec_status_start(ExecStatus *s, pid_t pid);
34cf6c43
YW
402void exec_status_exit(ExecStatus *s, const ExecContext *context, pid_t pid, int code, int status);
403void exec_status_dump(const ExecStatus *s, FILE *f, const char *prefix);
6a1d4d9f 404void exec_status_reset(ExecStatus *s);
5cb5a6ff 405
e8a565cb
YW
406int exec_runtime_acquire(Manager *m, const ExecContext *c, const char *name, bool create, ExecRuntime **ret);
407ExecRuntime *exec_runtime_unref(ExecRuntime *r, bool destroy);
613b411c 408
e8a565cb
YW
409int exec_runtime_serialize(const Manager *m, FILE *f, FDSet *fds);
410int exec_runtime_deserialize_compat(Unit *u, const char *key, const char *value, FDSet *fds);
56a13a49 411int exec_runtime_deserialize_one(Manager *m, const char *value, FDSet *fds);
e8a565cb 412void exec_runtime_vacuum(Manager *m);
613b411c 413
b9c04eaf
YW
414void exec_params_clear(ExecParameters *p);
415
e2b2fb7f
MS
416bool exec_context_get_cpu_affinity_from_numa(const ExecContext *c);
417
44a6b1b6
ZJS
418const char* exec_output_to_string(ExecOutput i) _const_;
419ExecOutput exec_output_from_string(const char *s) _pure_;
94f04347 420
44a6b1b6
ZJS
421const char* exec_input_to_string(ExecInput i) _const_;
422ExecInput exec_input_from_string(const char *s) _pure_;
023a4f67
LP
423
424const char* exec_utmp_mode_to_string(ExecUtmpMode i) _const_;
425ExecUtmpMode exec_utmp_mode_from_string(const char *s) _pure_;
53f47dfc
YW
426
427const char* exec_preserve_mode_to_string(ExecPreserveMode i) _const_;
428ExecPreserveMode exec_preserve_mode_from_string(const char *s) _pure_;
3536f49e 429
b1edf445
LP
430const char* exec_keyring_mode_to_string(ExecKeyringMode i) _const_;
431ExecKeyringMode exec_keyring_mode_from_string(const char *s) _pure_;
432
3536f49e
YW
433const char* exec_directory_type_to_string(ExecDirectoryType i) _const_;
434ExecDirectoryType exec_directory_type_from_string(const char *s) _pure_;
6b7b2ed9
LP
435
436const char* exec_resource_type_to_string(ExecDirectoryType i) _const_;
437ExecDirectoryType exec_resource_type_from_string(const char *s) _pure_;