]> git.ipfire.org Git - people/ms/systemd.git/blob - execute.h
cgroup: add cgroupsification
[people/ms/systemd.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
97 ExecInput input;
98 ExecOutput output;
99 int syslog_priority;
100 char *syslog_identifier;
101
102 cap_t capabilities;
103 int secure_bits;
104 uint64_t capability_bounding_set_drop;
105
106 /* Since resolving these names might might involve socket
107 * connections and we don't want to deadlock ourselves these
108 * names are resolved on execution only and in the child
109 * process. */
110 char *user;
111 char *group;
112 char **supplementary_groups;
113 };
114
115 typedef enum ExitStatus {
116 /* EXIT_SUCCESS defined by libc */
117 /* EXIT_FAILURE defined by libc */
118 EXIT_INVALIDARGUMENT = 2,
119 EXIT_NOTIMPLEMENTED = 3,
120 EXIT_NOPERMISSION = 4,
121 EXIT_NOTINSTALLED = 5,
122 EXIT_NOTCONFIGURED = 6,
123 EXIT_NOTRUNNING = 7,
124
125 /* The LSB suggests that error codes >= 200 are "reserved". We
126 * use them here under the assumption that they hence are
127 * unused by init scripts.
128 *
129 * http://refspecs.freestandards.org/LSB_3.1.0/LSB-Core-generic/LSB-Core-generic/iniscrptact.html */
130
131 EXIT_CHDIR = 200,
132 EXIT_NICE,
133 EXIT_FDS,
134 EXIT_EXEC,
135 EXIT_MEMORY,
136 EXIT_LIMITS,
137 EXIT_OOM_ADJUST,
138 EXIT_SIGNAL_MASK,
139 EXIT_INPUT,
140 EXIT_OUTPUT,
141 EXIT_CHROOT, /* 210 */
142 EXIT_PGID,
143 EXIT_IOPRIO,
144 EXIT_TIMERSLACK,
145 EXIT_SECUREBITS,
146 EXIT_SETSCHEDULER,
147 EXIT_CPUAFFINITY,
148 EXIT_GROUP,
149 EXIT_USER,
150 EXIT_CAPABILITIES,
151 EXIT_CGROUP
152 } ExitStatus;
153
154 int exec_spawn(const ExecCommand *command,
155 const ExecContext *context,
156 int *fds, unsigned n_fds,
157 bool apply_permissions,
158 bool apply_chroot,
159 struct CGroupBonding *cgroup_bondings,
160 pid_t *ret);
161
162 void exec_command_free_list(ExecCommand *c);
163 void exec_command_free_array(ExecCommand **c, unsigned n);
164
165 char *exec_command_line(ExecCommand *c);
166 void exec_command_dump(ExecCommand *c, FILE *f, const char *prefix);
167 void exec_command_dump_list(ExecCommand *c, FILE *f, const char *prefix);
168 void exec_command_append_list(ExecCommand **l, ExecCommand *e);
169
170 void exec_context_init(ExecContext *c);
171 void exec_context_done(ExecContext *c);
172 void exec_context_dump(ExecContext *c, FILE* f, const char *prefix);
173
174 void exec_status_fill(ExecStatus *s, pid_t pid, int code, int status);
175
176 const char* exec_output_to_string(ExecOutput i);
177 int exec_output_from_string(const char *s);
178
179 const char* exec_input_to_string(ExecInput i);
180 int exec_input_from_string(const char *s);
181
182 #endif