]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/core/execute.h
exec: SystemCallLog= directive
[thirdparty/systemd.git] / src / core / execute.h
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2 #pragma once
3
4 typedef struct ExecStatus ExecStatus;
5 typedef struct ExecCommand ExecCommand;
6 typedef struct ExecContext ExecContext;
7 typedef struct ExecRuntime ExecRuntime;
8 typedef struct ExecParameters ExecParameters;
9 typedef struct Manager Manager;
10
11 #include <sched.h>
12 #include <stdbool.h>
13 #include <stdio.h>
14 #include <sys/capability.h>
15
16 #include "cgroup-util.h"
17 #include "coredump-util.h"
18 #include "cpu-set-util.h"
19 #include "exec-util.h"
20 #include "fdset.h"
21 #include "list.h"
22 #include "missing_resource.h"
23 #include "namespace.h"
24 #include "nsflags.h"
25 #include "numa-util.h"
26 #include "time-util.h"
27
28 #define EXEC_STDIN_DATA_MAX (64U*1024U*1024U)
29
30 typedef enum ExecUtmpMode {
31 EXEC_UTMP_INIT,
32 EXEC_UTMP_LOGIN,
33 EXEC_UTMP_USER,
34 _EXEC_UTMP_MODE_MAX,
35 _EXEC_UTMP_MODE_INVALID = -1
36 } ExecUtmpMode;
37
38 typedef enum ExecInput {
39 EXEC_INPUT_NULL,
40 EXEC_INPUT_TTY,
41 EXEC_INPUT_TTY_FORCE,
42 EXEC_INPUT_TTY_FAIL,
43 EXEC_INPUT_SOCKET,
44 EXEC_INPUT_NAMED_FD,
45 EXEC_INPUT_DATA,
46 EXEC_INPUT_FILE,
47 _EXEC_INPUT_MAX,
48 _EXEC_INPUT_INVALID = -1
49 } ExecInput;
50
51 typedef enum ExecOutput {
52 EXEC_OUTPUT_INHERIT,
53 EXEC_OUTPUT_NULL,
54 EXEC_OUTPUT_TTY,
55 EXEC_OUTPUT_KMSG,
56 EXEC_OUTPUT_KMSG_AND_CONSOLE,
57 EXEC_OUTPUT_JOURNAL,
58 EXEC_OUTPUT_JOURNAL_AND_CONSOLE,
59 EXEC_OUTPUT_SOCKET,
60 EXEC_OUTPUT_NAMED_FD,
61 EXEC_OUTPUT_FILE,
62 EXEC_OUTPUT_FILE_APPEND,
63 _EXEC_OUTPUT_MAX,
64 _EXEC_OUTPUT_INVALID = -1
65 } ExecOutput;
66
67 typedef 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
75 typedef 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
83 /* Contains start and exit information about an executed command. */
84 struct ExecStatus {
85 dual_timestamp start_timestamp;
86 dual_timestamp exit_timestamp;
87 pid_t pid;
88 int code; /* as in siginfo_t::si_code */
89 int status; /* as in sigingo_t::si_status */
90 };
91
92 /* Stores information about commands we execute. Covers both configuration settings as well as runtime data. */
93 struct ExecCommand {
94 char *path;
95 char **argv;
96 ExecStatus exec_status;
97 ExecCommandFlags flags;
98 LIST_FIELDS(ExecCommand, command); /* useful for chaining commands */
99 };
100
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. */
105 struct ExecRuntime {
106 unsigned n_ref;
107
108 Manager *manager;
109
110 char *id; /* Unit id of the owner */
111
112 char *tmp_dir;
113 char *var_tmp_dir;
114
115 /* An AF_UNIX socket pair, that contains a datagram containing a file descriptor referring to the network
116 * namespace. */
117 int netns_storage_socket[2];
118 };
119
120 typedef enum ExecDirectoryType {
121 EXEC_DIRECTORY_RUNTIME = 0,
122 EXEC_DIRECTORY_STATE,
123 EXEC_DIRECTORY_CACHE,
124 EXEC_DIRECTORY_LOGS,
125 EXEC_DIRECTORY_CONFIGURATION,
126 _EXEC_DIRECTORY_TYPE_MAX,
127 _EXEC_DIRECTORY_TYPE_INVALID = -1,
128 } ExecDirectoryType;
129
130 typedef struct ExecDirectory {
131 char **paths;
132 mode_t mode;
133 } ExecDirectory;
134
135 typedef 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
148 /* A credential configured with SetCredential= */
149 typedef struct ExecSetCredential {
150 char *id;
151 void *data;
152 size_t size;
153 } ExecSetCredential;
154
155 /* Encodes configuration parameters applied to invoked commands. Does not carry runtime data, but only configuration
156 * changes sourced from unit files and suchlike. ExecContext objects are usually embedded into Unit objects, and do not
157 * change after being loaded. */
158 struct ExecContext {
159 char **environment;
160 char **environment_files;
161 char **pass_environment;
162 char **unset_environment;
163
164 struct rlimit *rlimit[_RLIMIT_MAX];
165 char *working_directory, *root_directory, *root_image, *root_verity, *root_hash_path, *root_hash_sig_path;
166 void *root_hash, *root_hash_sig;
167 size_t root_hash_size, root_hash_sig_size;
168 LIST_HEAD(MountOptions, root_image_options);
169 bool working_directory_missing_ok:1;
170 bool working_directory_home:1;
171
172 bool oom_score_adjust_set:1;
173 bool coredump_filter_set:1;
174 bool nice_set:1;
175 bool ioprio_set:1;
176 bool cpu_sched_set:1;
177
178 /* This is not exposed to the user but available internally. We need it to make sure that whenever we
179 * spawn /usr/bin/mount it is run in the same process group as us so that the autofs logic detects
180 * that it belongs to us and we don't enter a trigger loop. */
181 bool same_pgrp;
182
183 bool cpu_sched_reset_on_fork;
184 bool non_blocking;
185
186 mode_t umask;
187 int oom_score_adjust;
188 int nice;
189 int ioprio;
190 int cpu_sched_policy;
191 int cpu_sched_priority;
192 uint64_t coredump_filter;
193
194 CPUSet cpu_set;
195 NUMAPolicy numa_policy;
196 bool cpu_affinity_from_numa;
197
198 ExecInput std_input;
199 ExecOutput std_output;
200 ExecOutput std_error;
201 bool stdio_as_fds;
202 char *stdio_fdname[3];
203 char *stdio_file[3];
204
205 void *stdin_data;
206 size_t stdin_data_size;
207
208 nsec_t timer_slack_nsec;
209
210 char *tty_path;
211
212 bool tty_reset;
213 bool tty_vhangup;
214 bool tty_vt_disallocate;
215
216 bool ignore_sigpipe;
217
218 ExecKeyringMode keyring_mode;
219
220 /* Since resolving these names might involve socket
221 * connections and we don't want to deadlock ourselves these
222 * names are resolved on execution only and in the child
223 * process. */
224 char *user;
225 char *group;
226 char **supplementary_groups;
227
228 char *pam_name;
229
230 char *utmp_id;
231 ExecUtmpMode utmp_mode;
232
233 bool no_new_privileges;
234
235 bool selinux_context_ignore;
236 bool apparmor_profile_ignore;
237 bool smack_process_label_ignore;
238
239 char *selinux_context;
240 char *apparmor_profile;
241 char *smack_process_label;
242
243 char **read_write_paths, **read_only_paths, **inaccessible_paths;
244 unsigned long mount_flags;
245 BindMount *bind_mounts;
246 size_t n_bind_mounts;
247 TemporaryFileSystem *temporary_filesystems;
248 size_t n_temporary_filesystems;
249 MountImage *mount_images;
250 size_t n_mount_images;
251
252 uint64_t capability_bounding_set;
253 uint64_t capability_ambient_set;
254 int secure_bits;
255
256 int syslog_priority;
257 bool syslog_level_prefix;
258 char *syslog_identifier;
259
260 struct iovec* log_extra_fields;
261 size_t n_log_extra_fields;
262
263 usec_t log_ratelimit_interval_usec;
264 unsigned log_ratelimit_burst;
265
266 int log_level_max;
267
268 char *log_namespace;
269
270 ProtectProc protect_proc; /* hidepid= */
271 ProcSubset proc_subset; /* subset= */
272
273 bool private_tmp;
274 bool private_network;
275 bool private_devices;
276 bool private_users;
277 bool private_mounts;
278 bool protect_kernel_tunables;
279 bool protect_kernel_modules;
280 bool protect_kernel_logs;
281 bool protect_clock;
282 bool protect_control_groups;
283 ProtectSystem protect_system;
284 ProtectHome protect_home;
285 bool protect_hostname;
286 bool mount_apivfs;
287
288 bool dynamic_user;
289 bool remove_ipc;
290
291 bool memory_deny_write_execute;
292 bool restrict_realtime;
293 bool restrict_suid_sgid;
294
295 bool lock_personality;
296 unsigned long personality;
297
298 unsigned long restrict_namespaces; /* The CLONE_NEWxyz flags permitted to the unit's processes */
299
300 Hashmap *syscall_filter;
301 Set *syscall_archs;
302 int syscall_errno;
303 bool syscall_allow_list:1;
304
305 Hashmap *syscall_log;
306 bool syscall_log_allow_list:1; /* Log listed system calls */
307
308 bool address_families_allow_list:1;
309 Set *address_families;
310
311 char *network_namespace_path;
312
313 ExecDirectory directories[_EXEC_DIRECTORY_TYPE_MAX];
314 ExecPreserveMode runtime_directory_preserve_mode;
315 usec_t timeout_clean_usec;
316
317 Hashmap *set_credentials; /* output id → ExecSetCredential */
318 char **load_credentials; /* pairs of output id, path/input id */
319 };
320
321 static inline bool exec_context_restrict_namespaces_set(const ExecContext *c) {
322 assert(c);
323
324 return (c->restrict_namespaces & NAMESPACE_FLAGS_ALL) != NAMESPACE_FLAGS_ALL;
325 }
326
327 typedef enum ExecFlags {
328 EXEC_APPLY_SANDBOXING = 1 << 0,
329 EXEC_APPLY_CHROOT = 1 << 1,
330 EXEC_APPLY_TTY_STDIN = 1 << 2,
331 EXEC_PASS_LOG_UNIT = 1 << 3, /* Whether to pass the unit name to the service's journal stream connection */
332 EXEC_CHOWN_DIRECTORIES = 1 << 4, /* chown() the runtime/state/cache/log directories to the user we run as, under all conditions */
333 EXEC_NSS_BYPASS_BUS = 1 << 5, /* Set the SYSTEMD_NSS_BYPASS_BUS environment variable, to disable nss-systemd for dbus */
334 EXEC_CGROUP_DELEGATE = 1 << 6,
335 EXEC_IS_CONTROL = 1 << 7,
336 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 */
337 EXEC_WRITE_CREDENTIALS = 1 << 9, /* Set up the credential store logic */
338
339 /* The following are not used by execute.c, but by consumers internally */
340 EXEC_PASS_FDS = 1 << 10,
341 EXEC_SETENV_RESULT = 1 << 11,
342 EXEC_SET_WATCHDOG = 1 << 12,
343 } ExecFlags;
344
345 /* Parameters for a specific invocation of a command. This structure is put together right before a command is
346 * executed. */
347 struct ExecParameters {
348 char **environment;
349
350 int *fds;
351 char **fd_names;
352 size_t n_socket_fds;
353 size_t n_storage_fds;
354
355 ExecFlags flags;
356 bool selinux_context_net:1;
357
358 CGroupMask cgroup_supported;
359 const char *cgroup_path;
360
361 char **prefix;
362 const char *received_credentials;
363
364 const char *confirm_spawn;
365
366 usec_t watchdog_usec;
367
368 int *idle_pipe;
369
370 int stdin_fd;
371 int stdout_fd;
372 int stderr_fd;
373
374 /* An fd that is closed by the execve(), and thus will result in EOF when the execve() is done */
375 int exec_fd;
376 };
377
378 #include "unit.h"
379 #include "dynamic-user.h"
380
381 int exec_spawn(Unit *unit,
382 ExecCommand *command,
383 const ExecContext *context,
384 const ExecParameters *exec_params,
385 ExecRuntime *runtime,
386 DynamicCreds *dynamic_creds,
387 pid_t *ret);
388
389 void exec_command_done_array(ExecCommand *c, size_t n);
390 ExecCommand* exec_command_free_list(ExecCommand *c);
391 void exec_command_free_array(ExecCommand **c, size_t n);
392 void exec_command_reset_status_array(ExecCommand *c, size_t n);
393 void exec_command_reset_status_list_array(ExecCommand **c, size_t n);
394 void exec_command_dump_list(ExecCommand *c, FILE *f, const char *prefix);
395 void exec_command_append_list(ExecCommand **l, ExecCommand *e);
396 int exec_command_set(ExecCommand *c, const char *path, ...) _sentinel_;
397 int exec_command_append(ExecCommand *c, const char *path, ...) _sentinel_;
398
399 void exec_context_init(ExecContext *c);
400 void exec_context_done(ExecContext *c);
401 void exec_context_dump(const ExecContext *c, FILE* f, const char *prefix);
402
403 int exec_context_destroy_runtime_directory(const ExecContext *c, const char *runtime_root);
404 int exec_context_destroy_credentials(const ExecContext *c, const char *runtime_root, const char *unit);
405
406 const char* exec_context_fdname(const ExecContext *c, int fd_index);
407
408 bool exec_context_may_touch_console(const ExecContext *c);
409 bool exec_context_maintains_privileges(const ExecContext *c);
410
411 int exec_context_get_effective_ioprio(const ExecContext *c);
412
413 void exec_context_free_log_extra_fields(ExecContext *c);
414
415 void exec_context_revert_tty(ExecContext *c);
416
417 int exec_context_get_clean_directories(ExecContext *c, char **prefix, ExecCleanMask mask, char ***ret);
418 int exec_context_get_clean_mask(ExecContext *c, ExecCleanMask *ret);
419
420 void exec_status_start(ExecStatus *s, pid_t pid);
421 void exec_status_exit(ExecStatus *s, const ExecContext *context, pid_t pid, int code, int status);
422 void exec_status_dump(const ExecStatus *s, FILE *f, const char *prefix);
423 void exec_status_reset(ExecStatus *s);
424
425 int exec_runtime_acquire(Manager *m, const ExecContext *c, const char *name, bool create, ExecRuntime **ret);
426 ExecRuntime *exec_runtime_unref(ExecRuntime *r, bool destroy);
427
428 int exec_runtime_serialize(const Manager *m, FILE *f, FDSet *fds);
429 int exec_runtime_deserialize_compat(Unit *u, const char *key, const char *value, FDSet *fds);
430 int exec_runtime_deserialize_one(Manager *m, const char *value, FDSet *fds);
431 void exec_runtime_vacuum(Manager *m);
432
433 void exec_params_clear(ExecParameters *p);
434
435 bool exec_context_get_cpu_affinity_from_numa(const ExecContext *c);
436
437 ExecSetCredential *exec_set_credential_free(ExecSetCredential *sc);
438 DEFINE_TRIVIAL_CLEANUP_FUNC(ExecSetCredential*, exec_set_credential_free);
439
440 extern const struct hash_ops exec_set_credential_hash_ops;
441
442 const char* exec_output_to_string(ExecOutput i) _const_;
443 ExecOutput exec_output_from_string(const char *s) _pure_;
444
445 const char* exec_input_to_string(ExecInput i) _const_;
446 ExecInput exec_input_from_string(const char *s) _pure_;
447
448 const char* exec_utmp_mode_to_string(ExecUtmpMode i) _const_;
449 ExecUtmpMode exec_utmp_mode_from_string(const char *s) _pure_;
450
451 const char* exec_preserve_mode_to_string(ExecPreserveMode i) _const_;
452 ExecPreserveMode exec_preserve_mode_from_string(const char *s) _pure_;
453
454 const char* exec_keyring_mode_to_string(ExecKeyringMode i) _const_;
455 ExecKeyringMode exec_keyring_mode_from_string(const char *s) _pure_;
456
457 const char* exec_directory_type_to_string(ExecDirectoryType i) _const_;
458 ExecDirectoryType exec_directory_type_from_string(const char *s) _pure_;
459
460 const char* exec_resource_type_to_string(ExecDirectoryType i) _const_;
461 ExecDirectoryType exec_resource_type_from_string(const char *s) _pure_;