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