]> git.ipfire.org Git - people/ms/systemd.git/blame - unit.h
cgroup: add cgroupsification
[people/ms/systemd.git] / unit.h
CommitLineData
87f0e418
LP
1/*-*- Mode: C; c-basic-offset: 8 -*-*/
2
3#ifndef foounithfoo
4#define foounithfoo
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
87f0e418
LP
25#include <stdbool.h>
26#include <stdlib.h>
27
28typedef union Unit Unit;
29typedef struct Meta Meta;
30typedef struct UnitVTable UnitVTable;
31typedef enum UnitType UnitType;
32typedef enum UnitLoadState UnitLoadState;
33typedef enum UnitActiveState UnitActiveState;
34typedef enum UnitDependency UnitDependency;
35
87f0e418
LP
36#include "set.h"
37#include "util.h"
38#include "list.h"
39#include "socket-util.h"
40#include "execute.h"
87f0e418 41
b5ea5d95 42#define UNIT_NAME_MAX 128
87f0e418
LP
43#define DEFAULT_TIMEOUT_USEC (20*USEC_PER_SEC)
44#define DEFAULT_RESTART_USEC (100*USEC_PER_MSEC)
45
46enum UnitType {
47 UNIT_SERVICE = 0,
48 UNIT_TIMER,
49 UNIT_SOCKET,
50 UNIT_TARGET,
51 UNIT_DEVICE,
52 UNIT_MOUNT,
53 UNIT_AUTOMOUNT,
54 UNIT_SNAPSHOT,
55 _UNIT_TYPE_MAX,
56 _UNIT_TYPE_INVALID = -1,
57};
58
59enum UnitLoadState {
60 UNIT_STUB,
61 UNIT_LOADED,
62 UNIT_FAILED,
94f04347
LP
63 _UNIT_LOAD_STATE_MAX,
64 _UNIT_LOAD_STATE_INVALID = -1
87f0e418
LP
65};
66
67enum UnitActiveState {
68 UNIT_ACTIVE,
69 UNIT_ACTIVE_RELOADING,
70 UNIT_INACTIVE,
71 UNIT_ACTIVATING,
72 UNIT_DEACTIVATING,
94f04347
LP
73 _UNIT_ACTIVE_STATE_MAX,
74 _UNIT_ACTIVE_STATE_INVALID = -1
87f0e418
LP
75};
76
77static inline bool UNIT_IS_ACTIVE_OR_RELOADING(UnitActiveState t) {
78 return t == UNIT_ACTIVE || t == UNIT_ACTIVE_RELOADING;
79}
80
81static inline bool UNIT_IS_ACTIVE_OR_ACTIVATING(UnitActiveState t) {
82 return t == UNIT_ACTIVE || t == UNIT_ACTIVATING || t == UNIT_ACTIVE_RELOADING;
83}
84
85static inline bool UNIT_IS_INACTIVE_OR_DEACTIVATING(UnitActiveState t) {
86 return t == UNIT_INACTIVE || t == UNIT_DEACTIVATING;
87}
88
89enum UnitDependency {
90 /* Positive dependencies */
91 UNIT_REQUIRES,
92 UNIT_SOFT_REQUIRES,
93 UNIT_WANTS,
94 UNIT_REQUISITE,
95 UNIT_SOFT_REQUISITE,
96
97 /* Inverse of the above */
98 UNIT_REQUIRED_BY, /* inverse of 'requires' and 'requisite' is 'required_by' */
99 UNIT_SOFT_REQUIRED_BY, /* inverse of 'soft_requires' and 'soft_requisite' is 'soft_required_by' */
100 UNIT_WANTED_BY, /* inverse of 'wants' */
101
102 /* Negative dependencies */
103 UNIT_CONFLICTS, /* inverse of 'conflicts' is 'conflicts' */
104
105 /* Order */
106 UNIT_BEFORE, /* inverse of before is after and vice versa */
107 UNIT_AFTER,
108
109 _UNIT_DEPENDENCY_MAX,
110 _UNIT_DEPENDENCY_INVALID = -1
111};
112
ef734fd6
LP
113#include "manager.h"
114#include "job.h"
8e274523 115#include "cgroup.h"
ef734fd6 116
87f0e418
LP
117struct Meta {
118 Manager *manager;
119 UnitType type;
120 UnitLoadState load_state;
121
122 char *id; /* One name is special because we use it for identification. Points to an entry in the names set */
123
124 Set *names;
125 Set *dependencies[_UNIT_DEPENDENCY_MAX];
126
127 char *description;
6be1e7d5 128 char *fragment_path; /* if loaded from a config file this is the primary path to it */
87f0e418
LP
129
130 /* If there is something to do with this unit, then this is
131 * the job for it */
132 Job *job;
133
134 bool in_load_queue:1;
c1e1601e
LP
135 bool in_dbus_queue:1;
136 bool sent_dbus_new_signal:1;
87f0e418 137
f3bff0eb
LP
138 /* If we go down, pull down everything that depends on us, too */
139 bool recursive_stop;
140
141 /* Garbage collect us we nobody wants or requires us anymore */
142 bool stop_when_unneeded;
143
87f0e418
LP
144 usec_t active_enter_timestamp;
145 usec_t active_exit_timestamp;
146
8e274523
LP
147 /* Counterparts in the cgroup filesystem */
148 CGroupBonding *cgroup_bondings;
149
87f0e418
LP
150 /* Load queue */
151 LIST_FIELDS(Meta, load_queue);
ef734fd6
LP
152
153 /* Per type list */
154 LIST_FIELDS(Meta, units_per_type);
c1e1601e
LP
155
156 /* D-Bus queue */
157 LIST_FIELDS(Meta, dbus_queue);
87f0e418
LP
158};
159
160#include "service.h"
161#include "timer.h"
162#include "socket.h"
163#include "target.h"
164#include "device.h"
165#include "mount.h"
166#include "automount.h"
167#include "snapshot.h"
168
169union Unit {
170 Meta meta;
171 Service service;
172 Timer timer;
173 Socket socket;
174 Target target;
175 Device device;
176 Mount mount;
177 Automount automount;
178 Snapshot snapshot;
179};
180
181struct UnitVTable {
182 const char *suffix;
183
184 int (*init)(Unit *u);
185 void (*done)(Unit *u);
f50e0a01 186 int (*coldplug)(Unit *u);
87f0e418
LP
187
188 void (*dump)(Unit *u, FILE *f, const char *prefix);
189
190 int (*start)(Unit *u);
191 int (*stop)(Unit *u);
192 int (*reload)(Unit *u);
193
194 bool (*can_reload)(Unit *u);
195
196 /* Boils down the more complex internal state of this unit to
197 * a simpler one that the engine can understand */
198 UnitActiveState (*active_state)(Unit *u);
199
acbb0225 200 void (*fd_event)(Unit *u, int fd, uint32_t events, Watch *w);
87f0e418 201 void (*sigchld_event)(Unit *u, pid_t pid, int code, int status);
acbb0225 202 void (*timer_event)(Unit *u, uint64_t n_elapsed, Watch *w);
7824bbeb 203
8e274523
LP
204 void (*cgroup_notify_empty)(Unit *u);
205
f50e0a01
LP
206 /* This is called for each unit type and should be used to
207 * enumerate existing devices and load them. However,
208 * everything that is loaded here should still stay in
209 * inactive state. It is the job of the coldplug() call above
210 * to put the units into the initial state. */
7824bbeb 211 int (*enumerate)(Manager *m);
f50e0a01
LP
212
213 /* Type specific cleanups. */
7824bbeb 214 void (*shutdown)(Manager *m);
87f0e418
LP
215};
216
217extern const UnitVTable * const unit_vtable[_UNIT_TYPE_MAX];
218
219#define UNIT_VTABLE(u) unit_vtable[(u)->meta.type]
220
221/* For casting a unit into the various unit types */
222#define DEFINE_CAST(UPPERCASE, MixedCase) \
223 static inline MixedCase* UPPERCASE(Unit *u) { \
224 if (!u || u->meta.type != UNIT_##UPPERCASE) \
225 return NULL; \
226 \
227 return (MixedCase*) u; \
228 }
229
230/* For casting the various unit types into a unit */
231#define UNIT(u) ((Unit*) (u))
232
233DEFINE_CAST(SOCKET, Socket);
234DEFINE_CAST(TIMER, Timer);
235DEFINE_CAST(SERVICE, Service);
236DEFINE_CAST(TARGET, Target);
237DEFINE_CAST(DEVICE, Device);
238DEFINE_CAST(MOUNT, Mount);
239DEFINE_CAST(AUTOMOUNT, Automount);
240DEFINE_CAST(SNAPSHOT, Snapshot);
241
242UnitType unit_name_to_type(const char *n);
243bool unit_name_is_valid(const char *n);
244char *unit_name_change_suffix(const char *n, const char *suffix);
245
246Unit *unit_new(Manager *m);
247void unit_free(Unit *u);
248
249int unit_add_name(Unit *u, const char *name);
250int unit_add_dependency(Unit *u, UnitDependency d, Unit *other);
09b6b09f 251int unit_add_dependency_by_name(Unit *u, UnitDependency d, const char *name);
0ae97ec1 252
8e274523
LP
253int unit_add_cgroup(Unit *u, CGroupBonding *b);
254int unit_add_cgroup_from_text(Unit *u, const char *name);
255int unit_add_default_cgroup(Unit *u);
256CGroupBonding* unit_get_default_cgroup(Unit *u);
257
0ae97ec1 258int unit_choose_id(Unit *u, const char *name);
f50e0a01 259int unit_set_description(Unit *u, const char *description);
87f0e418
LP
260
261void unit_add_to_load_queue(Unit *u);
c1e1601e 262void unit_add_to_dbus_queue(Unit *u);
87f0e418
LP
263
264int unit_merge(Unit *u, Unit *other);
265
266int unit_load_fragment_and_dropin(Unit *u);
267int unit_load(Unit *unit);
268
269const char* unit_id(Unit *u);
270const char *unit_description(Unit *u);
271
272UnitActiveState unit_active_state(Unit *u);
273
274void unit_dump(Unit *u, FILE *f, const char *prefix);
275
276bool unit_can_reload(Unit *u);
277bool unit_can_start(Unit *u);
278
279int unit_start(Unit *u);
280int unit_stop(Unit *u);
281int unit_reload(Unit *u);
282
283void unit_notify(Unit *u, UnitActiveState os, UnitActiveState ns);
284
acbb0225
LP
285int unit_watch_fd(Unit *u, int fd, uint32_t events, Watch *w);
286void unit_unwatch_fd(Unit *u, Watch *w);
87f0e418
LP
287
288int unit_watch_pid(Unit *u, pid_t pid);
289void unit_unwatch_pid(Unit *u, pid_t pid);
290
acbb0225
LP
291int unit_watch_timer(Unit *u, usec_t delay, Watch *w);
292void unit_unwatch_timer(Unit *u, Watch *w);
87f0e418
LP
293
294bool unit_job_is_applicable(Unit *u, JobType j);
295
0301abf4
LP
296int set_unit_path(const char *p);
297
2e478a46 298char *unit_name_escape_path(const char *path, const char *suffix);
0301abf4 299
94f04347
LP
300const char *unit_type_to_string(UnitType i);
301UnitType unit_type_from_string(const char *s);
302
303const char *unit_load_state_to_string(UnitLoadState i);
304UnitLoadState unit_load_state_from_string(const char *s);
305
306const char *unit_active_state_to_string(UnitActiveState i);
307UnitActiveState unit_active_state_from_string(const char *s);
308
309const char *unit_dependency_to_string(UnitDependency i);
310UnitDependency unit_dependency_from_string(const char *s);
311
ea430986
LP
312char *unit_dbus_path(Unit *u);
313
87f0e418 314#endif