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