]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/execute.h
path: after installing inotify watches, recheck file again to fix race
[thirdparty/systemd.git] / src / execute.h
CommitLineData
03467c88 1/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
5cb5a6ff
LP
2
3#ifndef fooexecutehfoo
4#define fooexecutehfoo
5
a7334b09
LP
6/***
7 This file is part of systemd.
8
9 Copyright 2010 Lennart Poettering
10
11 systemd is free software; you can redistribute it and/or modify it
12 under the terms of the GNU General Public License as published by
13 the Free Software Foundation; either version 2 of the License, or
14 (at your option) any later version.
15
16 systemd is distributed in the hope that it will be useful, but
17 WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 General Public License for more details.
20
21 You should have received a copy of the GNU General Public License
22 along with systemd; If not, see <http://www.gnu.org/licenses/>.
23***/
24
5cb5a6ff
LP
25typedef struct ExecStatus ExecStatus;
26typedef struct ExecCommand ExecCommand;
27typedef struct ExecContext ExecContext;
28
dacdf153 29#include <linux/types.h>
5cb5a6ff
LP
30#include <sys/time.h>
31#include <sys/resource.h>
32#include <sys/capability.h>
33#include <stdbool.h>
34#include <stdio.h>
94f04347 35#include <sched.h>
5cb5a6ff 36
8e274523
LP
37struct CGroupBonding;
38
5cb5a6ff 39#include "list.h"
034c6ed7 40#include "util.h"
5cb5a6ff 41
071830ff 42/* Abstract namespace! */
ebfaa158 43#define LOGGER_SOCKET "/org/freedesktop/systemd1/logger"
071830ff 44
9a34ec5f 45/* This doesn't really belong here, but I couldn't find a better place to put this. */
1b91d3e8 46#define SIGNALS_CRASH_HANDLER SIGSEGV,SIGILL,SIGFPE,SIGBUS,SIGQUIT,SIGABRT
9a34ec5f
LP
47#define SIGNALS_IGNORE SIGKILL,SIGPIPE
48
2e22afe9
LP
49typedef enum KillMode {
50 KILL_CONTROL_GROUP = 0,
51 KILL_PROCESS_GROUP,
52 KILL_PROCESS,
53 KILL_NONE,
54 _KILL_MODE_MAX,
55 _KILL_MODE_INVALID = -1
56} KillMode;
57
8a0867d6
LP
58typedef enum KillWho {
59 KILL_MAIN,
60 KILL_CONTROL,
61 KILL_ALL,
62 _KILL_WHO_MAX,
63 _KILL_WHO_INVALID = -1
64} KillWho;
65
80876c20
LP
66typedef enum ExecInput {
67 EXEC_INPUT_NULL,
68 EXEC_INPUT_TTY,
69 EXEC_INPUT_TTY_FORCE,
70 EXEC_INPUT_TTY_FAIL,
4f2d528d 71 EXEC_INPUT_SOCKET,
80876c20
LP
72 _EXEC_INPUT_MAX,
73 _EXEC_INPUT_INVALID = -1
74} ExecInput;
75
071830ff 76typedef enum ExecOutput {
80876c20 77 EXEC_OUTPUT_INHERIT,
94f04347 78 EXEC_OUTPUT_NULL,
80876c20 79 EXEC_OUTPUT_TTY,
94f04347 80 EXEC_OUTPUT_SYSLOG,
28dbc1e8 81 EXEC_OUTPUT_SYSLOG_AND_CONSOLE,
9a6bca7a 82 EXEC_OUTPUT_KMSG,
28dbc1e8 83 EXEC_OUTPUT_KMSG_AND_CONSOLE,
4f2d528d 84 EXEC_OUTPUT_SOCKET,
94f04347
LP
85 _EXEC_OUTPUT_MAX,
86 _EXEC_OUTPUT_INVALID = -1
071830ff
LP
87} ExecOutput;
88
5cb5a6ff 89struct ExecStatus {
63983207
LP
90 dual_timestamp start_timestamp;
91 dual_timestamp exit_timestamp;
9d58f1db 92 pid_t pid;
9152c765
LP
93 int code; /* as in siginfo_t::si_code */
94 int status; /* as in sigingo_t::si_status */
5cb5a6ff
LP
95};
96
97struct ExecCommand {
98 char *path;
99 char **argv;
034c6ed7
LP
100 ExecStatus exec_status;
101 LIST_FIELDS(ExecCommand, command); /* useful for chaining commands */
7fab9d01 102 bool ignore;
5cb5a6ff
LP
103};
104
105struct ExecContext {
106 char **environment;
94f04347 107 struct rlimit *rlimit[RLIMIT_NLIMITS];
9eba9da4 108 char *working_directory, *root_directory;
9d58f1db
LP
109
110 mode_t umask;
dd6c17b1 111 int oom_score_adjust;
5cb5a6ff 112 int nice;
9eba9da4 113 int ioprio;
94f04347
LP
114 int cpu_sched_policy;
115 int cpu_sched_priority;
9d58f1db 116
82c121a4
LP
117 cpu_set_t *cpuset;
118 unsigned cpuset_ncpus;
fb33a393 119
80876c20
LP
120 ExecInput std_input;
121 ExecOutput std_output;
122 ExecOutput std_error;
123
7fab9d01 124 unsigned long timer_slack_nsec;
071830ff 125
df1f0afe
LP
126 char *tcpwrap_name;
127
9d58f1db 128 char *tty_path;
5cb5a6ff 129
94f04347 130 /* Since resolving these names might might involve socket
5cb5a6ff 131 * connections and we don't want to deadlock ourselves these
94f04347
LP
132 * names are resolved on execution only and in the child
133 * process. */
5cb5a6ff
LP
134 char *user;
135 char *group;
136 char **supplementary_groups;
9d58f1db 137
5b6319dc
LP
138 char *pam_name;
139
169c1bda
LP
140 char *utmp_id;
141
15ae422b
LP
142 char **read_write_dirs, **read_only_dirs, **inaccessible_dirs;
143 unsigned long mount_flags;
144
9d58f1db
LP
145 uint64_t capability_bounding_set_drop;
146
7fab9d01
LP
147 /* Not relevant for spawning processes, just for killing */
148 KillMode kill_mode;
149 int kill_signal;
ba035df2 150 bool send_sigkill;
7fab9d01 151
9d58f1db
LP
152 cap_t capabilities;
153 int secure_bits;
154
7fab9d01
LP
155 int syslog_priority;
156 char *syslog_identifier;
157 bool syslog_level_prefix;
158
9d58f1db
LP
159 bool cpu_sched_reset_on_fork;
160 bool non_blocking;
15ae422b 161 bool private_tmp;
9d58f1db 162
9d58f1db
LP
163 /* This is not exposed to the user but available
164 * internally. We need it to make sure that whenever we spawn
165 * /bin/mount it is run in the same process group as us so
166 * that the autofs logic detects that it belongs to us and we
167 * don't enter a trigger loop. */
74922904 168 bool same_pgrp;
2e22afe9 169
dd6c17b1 170 bool oom_score_adjust_set:1;
7fab9d01
LP
171 bool nice_set:1;
172 bool ioprio_set:1;
173 bool cpu_sched_set:1;
174 bool timer_slack_nsec_set:1;
5cb5a6ff
LP
175};
176
9fb86720 177int exec_spawn(ExecCommand *command,
9e2f7c11 178 char **argv,
81a2b7ce 179 const ExecContext *context,
c2748801 180 int fds[], unsigned n_fds,
1137a57c 181 char **environment,
81a2b7ce
LP
182 bool apply_permissions,
183 bool apply_chroot,
1e3ad081 184 bool apply_tty_stdin,
80876c20 185 bool confirm_spawn,
8e274523 186 struct CGroupBonding *cgroup_bondings,
81a2b7ce 187 pid_t *ret);
5cb5a6ff 188
43d0fcbd
LP
189void exec_command_done(ExecCommand *c);
190void exec_command_done_array(ExecCommand *c, unsigned n);
191
5cb5a6ff 192void exec_command_free_list(ExecCommand *c);
034c6ed7 193void exec_command_free_array(ExecCommand **c, unsigned n);
5cb5a6ff 194
9e2f7c11
LP
195char *exec_command_line(char **argv);
196
44d8db9e
LP
197void exec_command_dump(ExecCommand *c, FILE *f, const char *prefix);
198void exec_command_dump_list(ExecCommand *c, FILE *f, const char *prefix);
a6a80b4f 199void exec_command_append_list(ExecCommand **l, ExecCommand *e);
26fd040d 200int exec_command_set(ExecCommand *c, const char *path, ...);
44d8db9e 201
034c6ed7
LP
202void exec_context_init(ExecContext *c);
203void exec_context_done(ExecContext *c);
5cb5a6ff
LP
204void exec_context_dump(ExecContext *c, FILE* f, const char *prefix);
205
b58b4116 206void exec_status_start(ExecStatus *s, pid_t pid);
169c1bda 207void exec_status_exit(ExecStatus *s, pid_t pid, int code, int status, const char *utmp_id);
9fb86720 208void exec_status_dump(ExecStatus *s, FILE *f, const char *prefix);
5cb5a6ff 209
94f04347
LP
210const char* exec_output_to_string(ExecOutput i);
211int exec_output_from_string(const char *s);
212
213const char* exec_input_to_string(ExecInput i);
214int exec_input_from_string(const char *s);
215
8a0867d6
LP
216const char *kill_mode_to_string(KillMode k);
217KillMode kill_mode_from_string(const char *s);
218
219const char *kill_who_to_string(KillWho k);
220KillWho kill_who_from_string(const char *s);
221
5cb5a6ff 222#endif