]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/execute.h
stdout-bridge: rename logger to stdout-syslog-bridge to make it more descriptive
[thirdparty/systemd.git] / src / execute.h
1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3 #ifndef fooexecutehfoo
4 #define fooexecutehfoo
5
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
25 typedef struct ExecStatus ExecStatus;
26 typedef struct ExecCommand ExecCommand;
27 typedef struct ExecContext ExecContext;
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 struct CGroupBonding;
38 struct CGroupAttribute;
39
40 #include "list.h"
41 #include "util.h"
42
43 #define STDOUT_SYSLOG_BRIDGE_SOCKET "/run/systemd/stdout-syslog-bridge"
44
45 typedef enum KillMode {
46 KILL_CONTROL_GROUP = 0,
47 KILL_PROCESS,
48 KILL_NONE,
49 _KILL_MODE_MAX,
50 _KILL_MODE_INVALID = -1
51 } KillMode;
52
53 typedef enum KillWho {
54 KILL_MAIN,
55 KILL_CONTROL,
56 KILL_ALL,
57 _KILL_WHO_MAX,
58 _KILL_WHO_INVALID = -1
59 } KillWho;
60
61 typedef enum ExecInput {
62 EXEC_INPUT_NULL,
63 EXEC_INPUT_TTY,
64 EXEC_INPUT_TTY_FORCE,
65 EXEC_INPUT_TTY_FAIL,
66 EXEC_INPUT_SOCKET,
67 _EXEC_INPUT_MAX,
68 _EXEC_INPUT_INVALID = -1
69 } ExecInput;
70
71 typedef enum ExecOutput {
72 EXEC_OUTPUT_INHERIT,
73 EXEC_OUTPUT_NULL,
74 EXEC_OUTPUT_TTY,
75 EXEC_OUTPUT_SYSLOG,
76 EXEC_OUTPUT_SYSLOG_AND_CONSOLE,
77 EXEC_OUTPUT_KMSG,
78 EXEC_OUTPUT_KMSG_AND_CONSOLE,
79 EXEC_OUTPUT_SOCKET,
80 _EXEC_OUTPUT_MAX,
81 _EXEC_OUTPUT_INVALID = -1
82 } ExecOutput;
83
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 struct ExecCommand {
93 char *path;
94 char **argv;
95 ExecStatus exec_status;
96 LIST_FIELDS(ExecCommand, command); /* useful for chaining commands */
97 bool ignore;
98 };
99
100 struct ExecContext {
101 char **environment;
102 char **environment_files;
103
104 struct rlimit *rlimit[RLIMIT_NLIMITS];
105 char *working_directory, *root_directory;
106
107 mode_t umask;
108 int oom_score_adjust;
109 int nice;
110 int ioprio;
111 int cpu_sched_policy;
112 int cpu_sched_priority;
113
114 cpu_set_t *cpuset;
115 unsigned cpuset_ncpus;
116
117 ExecInput std_input;
118 ExecOutput std_output;
119 ExecOutput std_error;
120
121 unsigned long timer_slack_nsec;
122
123 char *tcpwrap_name;
124
125 char *tty_path;
126
127 bool tty_reset;
128 bool tty_vhangup;
129 bool tty_vt_disallocate;
130
131 /* Since resolving these names might might involve socket
132 * connections and we don't want to deadlock ourselves these
133 * names are resolved on execution only and in the child
134 * process. */
135 char *user;
136 char *group;
137 char **supplementary_groups;
138
139 char *pam_name;
140
141 char *utmp_id;
142
143 char **read_write_dirs, **read_only_dirs, **inaccessible_dirs;
144 unsigned long mount_flags;
145
146 uint64_t capability_bounding_set_drop;
147
148 /* Not relevant for spawning processes, just for killing */
149 KillMode kill_mode;
150 int kill_signal;
151 bool send_sigkill;
152
153 cap_t capabilities;
154 int secure_bits;
155
156 int syslog_priority;
157 char *syslog_identifier;
158 bool syslog_level_prefix;
159
160 bool cpu_sched_reset_on_fork;
161 bool non_blocking;
162 bool private_tmp;
163 bool private_network;
164
165 bool control_group_modify;
166
167 /* This is not exposed to the user but available
168 * internally. We need it to make sure that whenever we spawn
169 * /bin/mount it is run in the same process group as us so
170 * that the autofs logic detects that it belongs to us and we
171 * don't enter a trigger loop. */
172 bool same_pgrp;
173
174 bool oom_score_adjust_set:1;
175 bool nice_set:1;
176 bool ioprio_set:1;
177 bool cpu_sched_set:1;
178 bool timer_slack_nsec_set:1;
179 };
180
181 int exec_spawn(ExecCommand *command,
182 char **argv,
183 const ExecContext *context,
184 int fds[], unsigned n_fds,
185 char **environment,
186 bool apply_permissions,
187 bool apply_chroot,
188 bool apply_tty_stdin,
189 bool confirm_spawn,
190 struct CGroupBonding *cgroup_bondings,
191 struct CGroupAttribute *cgroup_attributes,
192 pid_t *ret);
193
194 void exec_command_done(ExecCommand *c);
195 void exec_command_done_array(ExecCommand *c, unsigned n);
196
197 void exec_command_free_list(ExecCommand *c);
198 void exec_command_free_array(ExecCommand **c, unsigned n);
199
200 char *exec_command_line(char **argv);
201
202 void exec_command_dump(ExecCommand *c, FILE *f, const char *prefix);
203 void exec_command_dump_list(ExecCommand *c, FILE *f, const char *prefix);
204 void exec_command_append_list(ExecCommand **l, ExecCommand *e);
205 int exec_command_set(ExecCommand *c, const char *path, ...);
206
207 void exec_context_init(ExecContext *c);
208 void exec_context_done(ExecContext *c);
209 void exec_context_dump(ExecContext *c, FILE* f, const char *prefix);
210 void exec_context_tty_reset(const ExecContext *context);
211
212 int exec_context_load_environment(const ExecContext *c, char ***l);
213
214 void exec_status_start(ExecStatus *s, pid_t pid);
215 void exec_status_exit(ExecStatus *s, ExecContext *context, pid_t pid, int code, int status);
216 void exec_status_dump(ExecStatus *s, FILE *f, const char *prefix);
217
218 const char* exec_output_to_string(ExecOutput i);
219 ExecOutput exec_output_from_string(const char *s);
220
221 const char* exec_input_to_string(ExecInput i);
222 ExecInput exec_input_from_string(const char *s);
223
224 const char *kill_mode_to_string(KillMode k);
225 KillMode kill_mode_from_string(const char *s);
226
227 const char *kill_who_to_string(KillWho k);
228 KillWho kill_who_from_string(const char *s);
229
230 #endif