chiark / gitweb /
service: add basic validation hooks
[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_MAX,
50         _EXEC_INPUT_INVALID = -1
51 } ExecInput;
52
53 typedef enum ExecOutput {
54         EXEC_OUTPUT_INHERIT,
55         EXEC_OUTPUT_NULL,
56         EXEC_OUTPUT_TTY,
57         EXEC_OUTPUT_SYSLOG,
58         EXEC_OUTPUT_KERNEL,
59         _EXEC_OUTPUT_MAX,
60         _EXEC_OUTPUT_INVALID = -1
61 } ExecOutput;
62
63 struct ExecStatus {
64         pid_t pid;
65         usec_t start_timestamp;
66         usec_t exit_timestamp;
67         int code;     /* as in siginfo_t::si_code */
68         int status;   /* as in sigingo_t::si_status */
69 };
70
71 struct ExecCommand {
72         char *path;
73         char **argv;
74         ExecStatus exec_status;
75         LIST_FIELDS(ExecCommand, command); /* useful for chaining commands */
76 };
77
78 struct ExecContext {
79         char **environment;
80         mode_t umask;
81         struct rlimit *rlimit[RLIMIT_NLIMITS];
82         char *working_directory, *root_directory;
83         int oom_adjust;
84         int nice;
85         int ioprio;
86         int cpu_sched_policy;
87         int cpu_sched_priority;
88         cpu_set_t cpu_affinity;
89         unsigned long timer_slack_ns;
90
91         bool oom_adjust_set:1;
92         bool nice_set:1;
93         bool ioprio_set:1;
94         bool cpu_sched_set:1;
95         bool cpu_affinity_set:1;
96         bool timer_slack_ns_set:1;
97
98         bool cpu_sched_reset_on_fork;
99         bool non_blocking;
100
101         ExecInput std_input;
102         ExecOutput std_output;
103         ExecOutput std_error;
104
105         char *tty_path;
106
107         int syslog_priority;
108         char *syslog_identifier;
109
110         cap_t capabilities;
111         int secure_bits;
112         uint64_t capability_bounding_set_drop;
113
114         /* Since resolving these names might might involve socket
115          * connections and we don't want to deadlock ourselves these
116          * names are resolved on execution only and in the child
117          * process. */
118         char *user;
119         char *group;
120         char **supplementary_groups;
121 };
122
123 typedef enum ExitStatus {
124         /* EXIT_SUCCESS defined by libc */
125         /* EXIT_FAILURE defined by libc */
126         EXIT_INVALIDARGUMENT = 2,
127         EXIT_NOTIMPLEMENTED = 3,
128         EXIT_NOPERMISSION = 4,
129         EXIT_NOTINSTALLED = 5,
130         EXIT_NOTCONFIGURED = 6,
131         EXIT_NOTRUNNING = 7,
132
133         /* The LSB suggests that error codes >= 200 are "reserved". We
134          * use them here under the assumption that they hence are
135          * unused by init scripts.
136          *
137          * http://refspecs.freestandards.org/LSB_3.1.0/LSB-Core-generic/LSB-Core-generic/iniscrptact.html */
138
139         EXIT_CHDIR = 200,
140         EXIT_NICE,
141         EXIT_FDS,
142         EXIT_EXEC,
143         EXIT_MEMORY,
144         EXIT_LIMITS,
145         EXIT_OOM_ADJUST,
146         EXIT_SIGNAL_MASK,
147         EXIT_STDIN,
148         EXIT_STDOUT,
149         EXIT_CHROOT,   /* 210 */
150         EXIT_IOPRIO,
151         EXIT_TIMERSLACK,
152         EXIT_SECUREBITS,
153         EXIT_SETSCHEDULER,
154         EXIT_CPUAFFINITY,
155         EXIT_GROUP,
156         EXIT_USER,
157         EXIT_CAPABILITIES,
158         EXIT_CGROUP,
159         EXIT_SETSID,   /* 220 */
160         EXIT_CONFIRM,
161         EXIT_STDERR
162
163 } ExitStatus;
164
165 int exec_spawn(ExecCommand *command,
166                const ExecContext *context,
167                int *fds, unsigned n_fds,
168                bool apply_permissions,
169                bool apply_chroot,
170                bool confirm_spawn,
171                struct CGroupBonding *cgroup_bondings,
172                pid_t *ret);
173
174 void exec_command_done(ExecCommand *c);
175 void exec_command_done_array(ExecCommand *c, unsigned n);
176
177 void exec_command_free_list(ExecCommand *c);
178 void exec_command_free_array(ExecCommand **c, unsigned n);
179
180 char *exec_command_line(ExecCommand *c);
181 void exec_command_dump(ExecCommand *c, FILE *f, const char *prefix);
182 void exec_command_dump_list(ExecCommand *c, FILE *f, const char *prefix);
183 void exec_command_append_list(ExecCommand **l, ExecCommand *e);
184 int exec_command_set(ExecCommand *c, const char *path, ...);
185
186 void exec_context_init(ExecContext *c);
187 void exec_context_done(ExecContext *c);
188 void exec_context_dump(ExecContext *c, FILE* f, const char *prefix);
189
190 void exec_status_fill(ExecStatus *s, pid_t pid, int code, int status);
191 void exec_status_dump(ExecStatus *s, FILE *f, const char *prefix);
192
193 const char* exec_output_to_string(ExecOutput i);
194 int exec_output_from_string(const char *s);
195
196 const char* exec_input_to_string(ExecInput i);
197 int exec_input_from_string(const char *s);
198
199 const char* exit_status_to_string(ExitStatus status);
200
201 #endif