]> git.ipfire.org Git - people/ms/systemd.git/blame - unit.h
reorder large structs a little, based on pahole info
[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
50159e6a
LP
46typedef enum KillMode {
47 KILL_CONTROL_GROUP = 0,
48 KILL_PROCESS_GROUP,
49 KILL_PROCESS,
80876c20 50 KILL_NONE,
50159e6a
LP
51 _KILL_MODE_MAX,
52 _KILL_MODE_INVALID = -1
53} KillMode;
54
87f0e418
LP
55enum UnitType {
56 UNIT_SERVICE = 0,
87f0e418
LP
57 UNIT_SOCKET,
58 UNIT_TARGET,
59 UNIT_DEVICE,
60 UNIT_MOUNT,
61 UNIT_AUTOMOUNT,
62 UNIT_SNAPSHOT,
41447faf 63 UNIT_TIMER,
87f0e418 64 _UNIT_TYPE_MAX,
50159e6a 65 _UNIT_TYPE_INVALID = -1
87f0e418
LP
66};
67
68enum UnitLoadState {
69 UNIT_STUB,
70 UNIT_LOADED,
71 UNIT_FAILED,
23a177ef 72 UNIT_MERGED,
94f04347
LP
73 _UNIT_LOAD_STATE_MAX,
74 _UNIT_LOAD_STATE_INVALID = -1
87f0e418
LP
75};
76
77enum UnitActiveState {
78 UNIT_ACTIVE,
79 UNIT_ACTIVE_RELOADING,
80 UNIT_INACTIVE,
81 UNIT_ACTIVATING,
82 UNIT_DEACTIVATING,
94f04347
LP
83 _UNIT_ACTIVE_STATE_MAX,
84 _UNIT_ACTIVE_STATE_INVALID = -1
87f0e418
LP
85};
86
87static inline bool UNIT_IS_ACTIVE_OR_RELOADING(UnitActiveState t) {
88 return t == UNIT_ACTIVE || t == UNIT_ACTIVE_RELOADING;
89}
90
91static inline bool UNIT_IS_ACTIVE_OR_ACTIVATING(UnitActiveState t) {
92 return t == UNIT_ACTIVE || t == UNIT_ACTIVATING || t == UNIT_ACTIVE_RELOADING;
93}
94
95static inline bool UNIT_IS_INACTIVE_OR_DEACTIVATING(UnitActiveState t) {
96 return t == UNIT_INACTIVE || t == UNIT_DEACTIVATING;
97}
98
99enum UnitDependency {
100 /* Positive dependencies */
101 UNIT_REQUIRES,
9e2f7c11 102 UNIT_REQUIRES_OVERRIDABLE,
87f0e418 103 UNIT_REQUISITE,
9e2f7c11
LP
104 UNIT_REQUISITE_OVERRIDABLE,
105 UNIT_WANTS,
87f0e418
LP
106
107 /* Inverse of the above */
9e2f7c11
LP
108 UNIT_REQUIRED_BY, /* inverse of 'requires' and 'requisite' is 'required_by' */
109 UNIT_REQUIRED_BY_OVERRIDABLE, /* inverse of 'soft_requires' and 'soft_requisite' is 'soft_required_by' */
110 UNIT_WANTED_BY, /* inverse of 'wants' */
87f0e418
LP
111
112 /* Negative dependencies */
9e2f7c11 113 UNIT_CONFLICTS, /* inverse of 'conflicts' is 'conflicts' */
87f0e418
LP
114
115 /* Order */
9e2f7c11 116 UNIT_BEFORE, /* inverse of before is after and vice versa */
87f0e418
LP
117 UNIT_AFTER,
118
119 _UNIT_DEPENDENCY_MAX,
120 _UNIT_DEPENDENCY_INVALID = -1
121};
122
ef734fd6
LP
123#include "manager.h"
124#include "job.h"
8e274523 125#include "cgroup.h"
ef734fd6 126
87f0e418
LP
127struct Meta {
128 Manager *manager;
23a177ef 129
87f0e418
LP
130 UnitType type;
131 UnitLoadState load_state;
23a177ef 132 Unit *merged_into;
87f0e418
LP
133
134 char *id; /* One name is special because we use it for identification. Points to an entry in the names set */
9e2f7c11 135 char *instance;
87f0e418
LP
136
137 Set *names;
138 Set *dependencies[_UNIT_DEPENDENCY_MAX];
139
140 char *description;
6be1e7d5 141 char *fragment_path; /* if loaded from a config file this is the primary path to it */
87f0e418
LP
142
143 /* If there is something to do with this unit, then this is
144 * the job for it */
145 Job *job;
146
87f0e418
LP
147 usec_t active_enter_timestamp;
148 usec_t active_exit_timestamp;
149
8e274523
LP
150 /* Counterparts in the cgroup filesystem */
151 CGroupBonding *cgroup_bondings;
152
87f0e418
LP
153 /* Load queue */
154 LIST_FIELDS(Meta, load_queue);
ef734fd6
LP
155
156 /* Per type list */
157 LIST_FIELDS(Meta, units_per_type);
c1e1601e
LP
158
159 /* D-Bus queue */
160 LIST_FIELDS(Meta, dbus_queue);
23a177ef
LP
161
162 /* Cleanup queue */
163 LIST_FIELDS(Meta, cleanup_queue);
9d58f1db
LP
164
165 /* If we go down, pull down everything that depends on us, too */
166 bool recursive_stop;
167
168 /* Garbage collect us we nobody wants or requires us anymore */
169 bool stop_when_unneeded;
170
171 bool in_load_queue:1;
172 bool in_dbus_queue:1;
173 bool in_cleanup_queue:1;
174 bool sent_dbus_new_signal:1;
87f0e418
LP
175};
176
177#include "service.h"
178#include "timer.h"
179#include "socket.h"
180#include "target.h"
181#include "device.h"
182#include "mount.h"
183#include "automount.h"
184#include "snapshot.h"
185
186union Unit {
187 Meta meta;
188 Service service;
189 Timer timer;
190 Socket socket;
191 Target target;
192 Device device;
193 Mount mount;
194 Automount automount;
195 Snapshot snapshot;
196};
197
198struct UnitVTable {
199 const char *suffix;
200
e537352b 201 /* This should reset all type-specific variables. This should
a16e1123
LP
202 * not allocate memory, and is called with zero-initialized
203 * data. It should hence only initialize variables that need
204 * to be set != 0. */
e537352b
LP
205 void (*init)(Unit *u);
206
a16e1123
LP
207 /* This should free all type-specific variables. It should be
208 * idempotent. */
209 void (*done)(Unit *u);
210
e537352b
LP
211 /* Actually load data from disk. This may fail, and should set
212 * load_state to UNIT_LOADED, UNIT_MERGED or leave it at
213 * UNIT_STUB if no configuration could be found. */
214 int (*load)(Unit *u);
215
e537352b
LP
216 /* If a a lot of units got created via enumerate(), this is
217 * where to actually set the state and call unit_notify(). */
f50e0a01 218 int (*coldplug)(Unit *u);
87f0e418
LP
219
220 void (*dump)(Unit *u, FILE *f, const char *prefix);
221
222 int (*start)(Unit *u);
223 int (*stop)(Unit *u);
224 int (*reload)(Unit *u);
225
226 bool (*can_reload)(Unit *u);
227
a16e1123
LP
228 /* Write all data that cannot be restored from other sources
229 * away using unit_serialize_item() */
230 int (*serialize)(Unit *u, FILE *f, FDSet *fds);
231
232 /* Restore one item from the serialization */
233 int (*deserialize_item)(Unit *u, const char *key, const char *data, FDSet *fds);
234
87f0e418
LP
235 /* Boils down the more complex internal state of this unit to
236 * a simpler one that the engine can understand */
237 UnitActiveState (*active_state)(Unit *u);
238
10a94420
LP
239 /* Returns the substate specific to this unit type as
240 * string. This is purely information so that we can give the
241 * user a more finegrained explanation in which actual state a
242 * unit is in. */
243 const char* (*sub_state_to_string)(Unit *u);
244
acbb0225 245 void (*fd_event)(Unit *u, int fd, uint32_t events, Watch *w);
87f0e418 246 void (*sigchld_event)(Unit *u, pid_t pid, int code, int status);
acbb0225 247 void (*timer_event)(Unit *u, uint64_t n_elapsed, Watch *w);
7824bbeb 248
05e343b7
LP
249 /* Called whenever any of the cgroups this unit watches for
250 * ran empty */
8e274523
LP
251 void (*cgroup_notify_empty)(Unit *u);
252
05e343b7
LP
253 /* Called whenever a name thus Unit registered for comes or
254 * goes away. */
255 void (*bus_name_owner_change)(Unit *u, const char *name, const char *old_owner, const char *new_owner);
256
257 /* Called whenever a bus PID lookup finishes */
258 void (*bus_query_pid_done)(Unit *u, const char *name, pid_t pid);
259
4139c1b2
LP
260 /* Called for each message received on the bus */
261 DBusHandlerResult (*bus_message_handler)(Unit *u, DBusMessage *message);
262
f50e0a01
LP
263 /* This is called for each unit type and should be used to
264 * enumerate existing devices and load them. However,
265 * everything that is loaded here should still stay in
266 * inactive state. It is the job of the coldplug() call above
267 * to put the units into the initial state. */
7824bbeb 268 int (*enumerate)(Manager *m);
f50e0a01
LP
269
270 /* Type specific cleanups. */
7824bbeb 271 void (*shutdown)(Manager *m);
9d58f1db
LP
272
273 /* Can units of this type have multiple names? */
274 bool no_alias:1;
275
276 /* If true units of this types can never have "Requires"
277 * dependencies, because state changes can only be observed,
278 * not triggered */
279 bool no_requires:1;
280
281 /* Instances make no sense for this type */
282 bool no_instances:1;
283
284 /* Exclude this type from snapshots */
285 bool no_snapshots:1;
87f0e418
LP
286};
287
288extern const UnitVTable * const unit_vtable[_UNIT_TYPE_MAX];
289
290#define UNIT_VTABLE(u) unit_vtable[(u)->meta.type]
291
292/* For casting a unit into the various unit types */
293#define DEFINE_CAST(UPPERCASE, MixedCase) \
294 static inline MixedCase* UPPERCASE(Unit *u) { \
295 if (!u || u->meta.type != UNIT_##UPPERCASE) \
296 return NULL; \
297 \
298 return (MixedCase*) u; \
299 }
300
301/* For casting the various unit types into a unit */
302#define UNIT(u) ((Unit*) (u))
303
304DEFINE_CAST(SOCKET, Socket);
305DEFINE_CAST(TIMER, Timer);
306DEFINE_CAST(SERVICE, Service);
307DEFINE_CAST(TARGET, Target);
308DEFINE_CAST(DEVICE, Device);
309DEFINE_CAST(MOUNT, Mount);
310DEFINE_CAST(AUTOMOUNT, Automount);
311DEFINE_CAST(SNAPSHOT, Snapshot);
312
87f0e418
LP
313Unit *unit_new(Manager *m);
314void unit_free(Unit *u);
315
316int unit_add_name(Unit *u, const char *name);
9e2f7c11 317
87f0e418 318int unit_add_dependency(Unit *u, UnitDependency d, Unit *other);
9e2f7c11
LP
319int unit_add_dependency_by_name(Unit *u, UnitDependency d, const char *name, const char *filename);
320int unit_add_dependency_by_name_inverse(Unit *u, UnitDependency d, const char *name, const char *filename);
0ae97ec1 321
23a177ef
LP
322int unit_add_exec_dependencies(Unit *u, ExecContext *c);
323
8e274523
LP
324int unit_add_cgroup(Unit *u, CGroupBonding *b);
325int unit_add_cgroup_from_text(Unit *u, const char *name);
326int unit_add_default_cgroup(Unit *u);
327CGroupBonding* unit_get_default_cgroup(Unit *u);
328
0ae97ec1 329int unit_choose_id(Unit *u, const char *name);
f50e0a01 330int unit_set_description(Unit *u, const char *description);
87f0e418
LP
331
332void unit_add_to_load_queue(Unit *u);
c1e1601e 333void unit_add_to_dbus_queue(Unit *u);
23a177ef 334void unit_add_to_cleanup_queue(Unit *u);
87f0e418
LP
335
336int unit_merge(Unit *u, Unit *other);
23a177ef
LP
337int unit_merge_by_name(Unit *u, const char *other);
338
339Unit *unit_follow_merge(Unit *u);
87f0e418 340
e537352b
LP
341int unit_load_fragment_and_dropin(Unit *u);
342int unit_load_fragment_and_dropin_optional(Unit *u);
a16e1123 343int unit_load_nop(Unit *u);
87f0e418
LP
344int unit_load(Unit *unit);
345
87f0e418
LP
346const char *unit_description(Unit *u);
347
f278026d
LP
348bool unit_has_name(Unit *u, const char *name);
349
87f0e418
LP
350UnitActiveState unit_active_state(Unit *u);
351
10a94420
LP
352const char* unit_sub_state_to_string(Unit *u);
353
87f0e418
LP
354void unit_dump(Unit *u, FILE *f, const char *prefix);
355
356bool unit_can_reload(Unit *u);
357bool unit_can_start(Unit *u);
358
359int unit_start(Unit *u);
360int unit_stop(Unit *u);
361int unit_reload(Unit *u);
362
363void unit_notify(Unit *u, UnitActiveState os, UnitActiveState ns);
364
acbb0225
LP
365int unit_watch_fd(Unit *u, int fd, uint32_t events, Watch *w);
366void unit_unwatch_fd(Unit *u, Watch *w);
87f0e418
LP
367
368int unit_watch_pid(Unit *u, pid_t pid);
369void unit_unwatch_pid(Unit *u, pid_t pid);
370
acbb0225
LP
371int unit_watch_timer(Unit *u, usec_t delay, Watch *w);
372void unit_unwatch_timer(Unit *u, Watch *w);
87f0e418 373
05e343b7
LP
374int unit_watch_bus_name(Unit *u, const char *name);
375void unit_unwatch_bus_name(Unit *u, const char *name);
376
87f0e418
LP
377bool unit_job_is_applicable(Unit *u, JobType j);
378
0301abf4
LP
379int set_unit_path(const char *p);
380
50159e6a
LP
381char *unit_dbus_path(Unit *u);
382
f6ff8c29 383int unit_load_related_unit(Unit *u, const char *type, Unit **_found);
a16e1123 384int unit_get_related_unit(Unit *u, const char *type, Unit **_found);
f6ff8c29 385
9e2f7c11
LP
386char *unit_name_printf(Unit *u, const char* text);
387char *unit_full_printf(Unit *u, const char *text);
388char **unit_full_printf_strv(Unit *u, char **l);
389
a16e1123
LP
390bool unit_can_serialize(Unit *u);
391int unit_serialize(Unit *u, FILE *f, FDSet *fds);
392void unit_serialize_item_format(Unit *u, FILE *f, const char *key, const char *value, ...) _printf_attr(4,5);
393void unit_serialize_item(Unit *u, FILE *f, const char *key, const char *value);
394int unit_deserialize(Unit *u, FILE *f, FDSet *fds);
395
94f04347
LP
396const char *unit_type_to_string(UnitType i);
397UnitType unit_type_from_string(const char *s);
398
399const char *unit_load_state_to_string(UnitLoadState i);
400UnitLoadState unit_load_state_from_string(const char *s);
401
402const char *unit_active_state_to_string(UnitActiveState i);
403UnitActiveState unit_active_state_from_string(const char *s);
404
405const char *unit_dependency_to_string(UnitDependency i);
406UnitDependency unit_dependency_from_string(const char *s);
407
50159e6a
LP
408const char *kill_mode_to_string(KillMode k);
409KillMode kill_mode_from_string(const char *s);
ea430986 410
87f0e418 411#endif