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