chiark / gitweb /
build-sys: fix make distcheck
[elogind.git] / execute.h
1 /*-*- Mode: C; c-basic-offset: 8 -*-*/
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 <sys/time.h>
30 #include <sys/resource.h>
31 #include <sys/capability.h>
32 #include <stdbool.h>
33 #include <stdio.h>
34 #include <sched.h>
35
36 struct CGroupBonding;
37
38 #include "list.h"
39 #include "util.h"
40
41 /* Abstract namespace! */
42 #define LOGGER_SOCKET "/org/freedesktop/systemd1/logger"
43
44 typedef enum ExecInput {
45         EXEC_INPUT_NULL,
46         EXEC_INPUT_TTY,
47         EXEC_INPUT_TTY_FORCE,
48         EXEC_INPUT_TTY_FAIL,
49         EXEC_INPUT_SOCKET,
50         _EXEC_INPUT_MAX,
51         _EXEC_INPUT_INVALID = -1
52 } ExecInput;
53
54 typedef enum ExecOutput {
55         EXEC_OUTPUT_INHERIT,
56         EXEC_OUTPUT_NULL,
57         EXEC_OUTPUT_TTY,
58         EXEC_OUTPUT_SYSLOG,
59         EXEC_OUTPUT_KERNEL,
60         EXEC_OUTPUT_SOCKET,
61         _EXEC_OUTPUT_MAX,
62         _EXEC_OUTPUT_INVALID = -1
63 } ExecOutput;
64
65 struct ExecStatus {
66         usec_t start_timestamp;
67         usec_t exit_timestamp;
68         pid_t pid;
69         int code;     /* as in siginfo_t::si_code */
70         int status;   /* as in sigingo_t::si_status */
71 };
72
73 struct ExecCommand {
74         char *path;
75         char **argv;
76         ExecStatus exec_status;
77         LIST_FIELDS(ExecCommand, command); /* useful for chaining commands */
78 };
79
80 struct ExecContext {
81         char **environment;
82         struct rlimit *rlimit[RLIMIT_NLIMITS];
83         char *working_directory, *root_directory;
84
85         mode_t umask;
86         int oom_adjust;
87         int nice;
88         int ioprio;
89         int cpu_sched_policy;
90         int cpu_sched_priority;
91
92         cpu_set_t cpu_affinity;
93         unsigned long timer_slack_ns;
94
95         ExecInput std_input;
96         ExecOutput std_output;
97         ExecOutput std_error;
98
99         int syslog_priority;
100         char *syslog_identifier;
101         bool syslog_no_prefix;
102
103         char *tty_path;
104
105         /* Since resolving these names might might involve socket
106          * connections and we don't want to deadlock ourselves these
107          * names are resolved on execution only and in the child
108          * process. */
109         char *user;
110         char *group;
111         char **supplementary_groups;
112
113         char **read_write_dirs, **read_only_dirs, **inaccessible_dirs;
114         unsigned long mount_flags;
115
116         uint64_t capability_bounding_set_drop;
117
118         cap_t capabilities;
119         int secure_bits;
120
121         bool cpu_sched_reset_on_fork;
122         bool non_blocking;
123         bool private_tmp;
124
125         bool oom_adjust_set:1;
126         bool nice_set:1;
127         bool ioprio_set:1;
128         bool cpu_sched_set:1;
129         bool cpu_affinity_set:1;
130         bool timer_slack_ns_set:1;
131
132         /* This is not exposed to the user but available
133          * internally. We need it to make sure that whenever we spawn
134          * /bin/mount it is run in the same process group as us so
135          * that the autofs logic detects that it belongs to us and we
136          * don't enter a trigger loop. */
137         bool no_setsid:1;
138 };
139
140 typedef enum ExitStatus {
141         /* EXIT_SUCCESS defined by libc */
142         /* EXIT_FAILURE defined by libc */
143         EXIT_INVALIDARGUMENT = 2,
144         EXIT_NOTIMPLEMENTED = 3,
145         EXIT_NOPERMISSION = 4,
146         EXIT_NOTINSTALLED = 5,
147         EXIT_NOTCONFIGURED = 6,
148         EXIT_NOTRUNNING = 7,
149
150         /* The LSB suggests that error codes >= 200 are "reserved". We
151          * use them here under the assumption that they hence are
152          * unused by init scripts.
153          *
154          * http://refspecs.freestandards.org/LSB_3.1.0/LSB-Core-generic/LSB-Core-generic/iniscrptact.html */
155
156         EXIT_CHDIR = 200,
157         EXIT_NICE,
158         EXIT_FDS,
159         EXIT_EXEC,
160         EXIT_MEMORY,
161         EXIT_LIMITS,
162         EXIT_OOM_ADJUST,
163         EXIT_SIGNAL_MASK,
164         EXIT_STDIN,
165         EXIT_STDOUT,
166         EXIT_CHROOT,   /* 210 */
167         EXIT_IOPRIO,
168         EXIT_TIMERSLACK,
169         EXIT_SECUREBITS,
170         EXIT_SETSCHEDULER,
171         EXIT_CPUAFFINITY,
172         EXIT_GROUP,
173         EXIT_USER,
174         EXIT_CAPABILITIES,
175         EXIT_CGROUP,
176         EXIT_SETSID,   /* 220 */
177         EXIT_CONFIRM,
178         EXIT_STDERR
179
180 } ExitStatus;
181
182 int exec_spawn(ExecCommand *command,
183                char **argv,
184                const ExecContext *context,
185                int fds[], unsigned n_fds,
186                char **environment,
187                bool apply_permissions,
188                bool apply_chroot,
189                bool confirm_spawn,
190                struct CGroupBonding *cgroup_bondings,
191                pid_t *ret);
192
193 void exec_command_done(ExecCommand *c);
194 void exec_command_done_array(ExecCommand *c, unsigned n);
195
196 void exec_command_free_list(ExecCommand *c);
197 void exec_command_free_array(ExecCommand **c, unsigned n);
198
199 char *exec_command_line(char **argv);
200
201 void exec_command_dump(ExecCommand *c, FILE *f, const char *prefix);
202 void exec_command_dump_list(ExecCommand *c, FILE *f, const char *prefix);
203 void exec_command_append_list(ExecCommand **l, ExecCommand *e);
204 int exec_command_set(ExecCommand *c, const char *path, ...);
205
206 void exec_context_init(ExecContext *c);
207 void exec_context_done(ExecContext *c);
208 void exec_context_dump(ExecContext *c, FILE* f, const char *prefix);
209
210 void exec_status_fill(ExecStatus *s, pid_t pid, int code, int status);
211 void exec_status_dump(ExecStatus *s, FILE *f, const char *prefix);
212
213 const char* exec_output_to_string(ExecOutput i);
214 int exec_output_from_string(const char *s);
215
216 const char* exec_input_to_string(ExecInput i);
217 int exec_input_from_string(const char *s);
218
219 const char* exit_status_to_string(ExitStatus status);
220
221 #endif