]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/unit.h
unit: simplify things a little by introducing API to add two dependencies in one...
[thirdparty/systemd.git] / src / 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
dfd8eeed 43#define DEFAULT_TIMEOUT_USEC (60*USEC_PER_SEC)
87f0e418
LP
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,
07b0b134 64 UNIT_SWAP,
01f78473 65 UNIT_PATH,
87f0e418 66 _UNIT_TYPE_MAX,
50159e6a 67 _UNIT_TYPE_INVALID = -1
87f0e418
LP
68};
69
70enum UnitLoadState {
71 UNIT_STUB,
72 UNIT_LOADED,
73 UNIT_FAILED,
23a177ef 74 UNIT_MERGED,
94f04347
LP
75 _UNIT_LOAD_STATE_MAX,
76 _UNIT_LOAD_STATE_INVALID = -1
87f0e418
LP
77};
78
79enum UnitActiveState {
80 UNIT_ACTIVE,
032ff4af 81 UNIT_RELOADING,
87f0e418 82 UNIT_INACTIVE,
032ff4af 83 UNIT_MAINTENANCE,
87f0e418
LP
84 UNIT_ACTIVATING,
85 UNIT_DEACTIVATING,
94f04347
LP
86 _UNIT_ACTIVE_STATE_MAX,
87 _UNIT_ACTIVE_STATE_INVALID = -1
87f0e418
LP
88};
89
90static inline bool UNIT_IS_ACTIVE_OR_RELOADING(UnitActiveState t) {
032ff4af 91 return t == UNIT_ACTIVE || t == UNIT_RELOADING;
87f0e418
LP
92}
93
94static inline bool UNIT_IS_ACTIVE_OR_ACTIVATING(UnitActiveState t) {
032ff4af 95 return t == UNIT_ACTIVE || t == UNIT_ACTIVATING || t == UNIT_RELOADING;
87f0e418
LP
96}
97
98static inline bool UNIT_IS_INACTIVE_OR_DEACTIVATING(UnitActiveState t) {
032ff4af 99 return t == UNIT_INACTIVE || t == UNIT_MAINTENANCE || t == UNIT_DEACTIVATING;
6124958c
LP
100}
101
102static inline bool UNIT_IS_INACTIVE_OR_MAINTENANCE(UnitActiveState t) {
032ff4af 103 return t == UNIT_INACTIVE || t == UNIT_MAINTENANCE;
87f0e418
LP
104}
105
106enum UnitDependency {
107 /* Positive dependencies */
108 UNIT_REQUIRES,
9e2f7c11 109 UNIT_REQUIRES_OVERRIDABLE,
87f0e418 110 UNIT_REQUISITE,
9e2f7c11
LP
111 UNIT_REQUISITE_OVERRIDABLE,
112 UNIT_WANTS,
87f0e418
LP
113
114 /* Inverse of the above */
9e2f7c11
LP
115 UNIT_REQUIRED_BY, /* inverse of 'requires' and 'requisite' is 'required_by' */
116 UNIT_REQUIRED_BY_OVERRIDABLE, /* inverse of 'soft_requires' and 'soft_requisite' is 'soft_required_by' */
117 UNIT_WANTED_BY, /* inverse of 'wants' */
87f0e418
LP
118
119 /* Negative dependencies */
9e2f7c11 120 UNIT_CONFLICTS, /* inverse of 'conflicts' is 'conflicts' */
87f0e418
LP
121
122 /* Order */
701cc384 123 UNIT_BEFORE, /* inverse of 'before' is 'after' and vice versa */
87f0e418
LP
124 UNIT_AFTER,
125
701cc384
LP
126 /* Reference information for GC logic */
127 UNIT_REFERENCES, /* Inverse of 'references' is 'referenced_by' */
128 UNIT_REFERENCED_BY,
129
87f0e418
LP
130 _UNIT_DEPENDENCY_MAX,
131 _UNIT_DEPENDENCY_INVALID = -1
132};
133
ef734fd6
LP
134#include "manager.h"
135#include "job.h"
8e274523 136#include "cgroup.h"
ef734fd6 137
87f0e418
LP
138struct Meta {
139 Manager *manager;
23a177ef 140
87f0e418
LP
141 UnitType type;
142 UnitLoadState load_state;
23a177ef 143 Unit *merged_into;
87f0e418 144
bc0f8771
LP
145 /* Refuse manual starting, allow starting only indirectly via dependency. */
146 bool only_by_dependency;
147
87f0e418 148 char *id; /* One name is special because we use it for identification. Points to an entry in the names set */
9e2f7c11 149 char *instance;
87f0e418
LP
150
151 Set *names;
152 Set *dependencies[_UNIT_DEPENDENCY_MAX];
153
154 char *description;
6be1e7d5 155 char *fragment_path; /* if loaded from a config file this is the primary path to it */
87f0e418
LP
156
157 /* If there is something to do with this unit, then this is
158 * the job for it */
159 Job *job;
160
63983207
LP
161 dual_timestamp inactive_exit_timestamp;
162 dual_timestamp active_enter_timestamp;
163 dual_timestamp active_exit_timestamp;
164 dual_timestamp inactive_enter_timestamp;
87f0e418 165
8e274523
LP
166 /* Counterparts in the cgroup filesystem */
167 CGroupBonding *cgroup_bondings;
168
ef734fd6
LP
169 /* Per type list */
170 LIST_FIELDS(Meta, units_per_type);
c1e1601e 171
701cc384
LP
172 /* Load queue */
173 LIST_FIELDS(Meta, load_queue);
174
c1e1601e
LP
175 /* D-Bus queue */
176 LIST_FIELDS(Meta, dbus_queue);
23a177ef
LP
177
178 /* Cleanup queue */
179 LIST_FIELDS(Meta, cleanup_queue);
9d58f1db 180
701cc384
LP
181 /* GC queue */
182 LIST_FIELDS(Meta, gc_queue);
183
184 /* Used during GC sweeps */
eced69b3 185 unsigned gc_marker;
701cc384 186
9d58f1db
LP
187 /* If we go down, pull down everything that depends on us, too */
188 bool recursive_stop;
189
190 /* Garbage collect us we nobody wants or requires us anymore */
191 bool stop_when_unneeded;
192
cca098b0
LP
193 /* When deserializing, temporarily store the job type for this
194 * unit here, if there was a job scheduled */
2f630e5f 195 int deserialized_job; /* This is actually of type JobType */
cca098b0 196
9d58f1db
LP
197 bool in_load_queue:1;
198 bool in_dbus_queue:1;
199 bool in_cleanup_queue:1;
701cc384
LP
200 bool in_gc_queue:1;
201
9d58f1db 202 bool sent_dbus_new_signal:1;
87f0e418
LP
203};
204
205#include "service.h"
206#include "timer.h"
207#include "socket.h"
208#include "target.h"
209#include "device.h"
210#include "mount.h"
211#include "automount.h"
212#include "snapshot.h"
07b0b134 213#include "swap.h"
01f78473 214#include "path.h"
87f0e418
LP
215
216union Unit {
217 Meta meta;
218 Service service;
219 Timer timer;
220 Socket socket;
221 Target target;
222 Device device;
223 Mount mount;
224 Automount automount;
225 Snapshot snapshot;
07b0b134 226 Swap swap;
01f78473 227 Path path;
87f0e418
LP
228};
229
230struct UnitVTable {
231 const char *suffix;
232
e537352b 233 /* This should reset all type-specific variables. This should
a16e1123
LP
234 * not allocate memory, and is called with zero-initialized
235 * data. It should hence only initialize variables that need
236 * to be set != 0. */
e537352b
LP
237 void (*init)(Unit *u);
238
a16e1123
LP
239 /* This should free all type-specific variables. It should be
240 * idempotent. */
241 void (*done)(Unit *u);
242
e537352b
LP
243 /* Actually load data from disk. This may fail, and should set
244 * load_state to UNIT_LOADED, UNIT_MERGED or leave it at
245 * UNIT_STUB if no configuration could be found. */
246 int (*load)(Unit *u);
247
e537352b
LP
248 /* If a a lot of units got created via enumerate(), this is
249 * where to actually set the state and call unit_notify(). */
f50e0a01 250 int (*coldplug)(Unit *u);
87f0e418
LP
251
252 void (*dump)(Unit *u, FILE *f, const char *prefix);
253
254 int (*start)(Unit *u);
255 int (*stop)(Unit *u);
256 int (*reload)(Unit *u);
257
258 bool (*can_reload)(Unit *u);
259
a16e1123
LP
260 /* Write all data that cannot be restored from other sources
261 * away using unit_serialize_item() */
262 int (*serialize)(Unit *u, FILE *f, FDSet *fds);
263
264 /* Restore one item from the serialization */
265 int (*deserialize_item)(Unit *u, const char *key, const char *data, FDSet *fds);
266
87f0e418
LP
267 /* Boils down the more complex internal state of this unit to
268 * a simpler one that the engine can understand */
269 UnitActiveState (*active_state)(Unit *u);
270
10a94420
LP
271 /* Returns the substate specific to this unit type as
272 * string. This is purely information so that we can give the
273 * user a more finegrained explanation in which actual state a
274 * unit is in. */
275 const char* (*sub_state_to_string)(Unit *u);
276
701cc384
LP
277 /* Return true when there is reason to keep this entry around
278 * even nothing references it and it isn't active in any
279 * way */
280 bool (*check_gc)(Unit *u);
281
282 /* Return true when this unit is suitable for snapshotting */
283 bool (*check_snapshot)(Unit *u);
284
acbb0225 285 void (*fd_event)(Unit *u, int fd, uint32_t events, Watch *w);
87f0e418 286 void (*sigchld_event)(Unit *u, pid_t pid, int code, int status);
acbb0225 287 void (*timer_event)(Unit *u, uint64_t n_elapsed, Watch *w);
7824bbeb 288
05e343b7
LP
289 /* Called whenever any of the cgroups this unit watches for
290 * ran empty */
8e274523
LP
291 void (*cgroup_notify_empty)(Unit *u);
292
8c47c732 293 /* Called whenever a process of this unit sends us a message */
c952c6ec 294 void (*notify_message)(Unit *u, pid_t pid, char **tags);
8c47c732 295
05e343b7
LP
296 /* Called whenever a name thus Unit registered for comes or
297 * goes away. */
298 void (*bus_name_owner_change)(Unit *u, const char *name, const char *old_owner, const char *new_owner);
299
300 /* Called whenever a bus PID lookup finishes */
301 void (*bus_query_pid_done)(Unit *u, const char *name, pid_t pid);
302
4139c1b2 303 /* Called for each message received on the bus */
5e8d1c9a 304 DBusHandlerResult (*bus_message_handler)(Unit *u, DBusConnection *c, DBusMessage *message);
4139c1b2 305
f50e0a01
LP
306 /* This is called for each unit type and should be used to
307 * enumerate existing devices and load them. However,
308 * everything that is loaded here should still stay in
309 * inactive state. It is the job of the coldplug() call above
310 * to put the units into the initial state. */
7824bbeb 311 int (*enumerate)(Manager *m);
f50e0a01
LP
312
313 /* Type specific cleanups. */
7824bbeb 314 void (*shutdown)(Manager *m);
9d58f1db
LP
315
316 /* Can units of this type have multiple names? */
317 bool no_alias:1;
318
319 /* If true units of this types can never have "Requires"
320 * dependencies, because state changes can only be observed,
321 * not triggered */
322 bool no_requires:1;
323
324 /* Instances make no sense for this type */
325 bool no_instances:1;
326
327 /* Exclude this type from snapshots */
328 bool no_snapshots:1;
701cc384
LP
329
330 /* Exclude from automatic gc */
331 bool no_gc:1;
c497c7a9
LP
332
333 /* Exclude from isolation requests */
334 bool no_isolate:1;
87f0e418
LP
335};
336
337extern const UnitVTable * const unit_vtable[_UNIT_TYPE_MAX];
338
339#define UNIT_VTABLE(u) unit_vtable[(u)->meta.type]
340
341/* For casting a unit into the various unit types */
342#define DEFINE_CAST(UPPERCASE, MixedCase) \
343 static inline MixedCase* UPPERCASE(Unit *u) { \
399ab2b1 344 if (_unlikely_(!u || u->meta.type != UNIT_##UPPERCASE)) \
87f0e418
LP
345 return NULL; \
346 \
347 return (MixedCase*) u; \
348 }
349
350/* For casting the various unit types into a unit */
399ab2b1 351#define UNIT(u) ((Unit*) (&(u)->meta))
87f0e418
LP
352
353DEFINE_CAST(SOCKET, Socket);
354DEFINE_CAST(TIMER, Timer);
355DEFINE_CAST(SERVICE, Service);
356DEFINE_CAST(TARGET, Target);
357DEFINE_CAST(DEVICE, Device);
358DEFINE_CAST(MOUNT, Mount);
359DEFINE_CAST(AUTOMOUNT, Automount);
360DEFINE_CAST(SNAPSHOT, Snapshot);
07b0b134 361DEFINE_CAST(SWAP, Swap);
01f78473 362DEFINE_CAST(PATH, Path);
87f0e418 363
87f0e418
LP
364Unit *unit_new(Manager *m);
365void unit_free(Unit *u);
366
367int unit_add_name(Unit *u, const char *name);
9e2f7c11 368
701cc384 369int unit_add_dependency(Unit *u, UnitDependency d, Unit *other, bool add_reference);
2c966c03
LP
370int unit_add_two_dependencies(Unit *u, UnitDependency d, UnitDependency e, Unit *other, bool add_reference);
371
701cc384 372int unit_add_dependency_by_name(Unit *u, UnitDependency d, const char *name, const char *filename, bool add_reference);
2c966c03
LP
373int unit_add_two_dependencies_by_name(Unit *u, UnitDependency d, UnitDependency e, const char *name, const char *path, bool add_reference);
374
701cc384 375int unit_add_dependency_by_name_inverse(Unit *u, UnitDependency d, const char *name, const char *filename, bool add_reference);
2c966c03 376int unit_add_two_dependencies_by_name_inverse(Unit *u, UnitDependency d, UnitDependency e, const char *name, const char *path, bool add_reference);
0ae97ec1 377
23a177ef
LP
378int unit_add_exec_dependencies(Unit *u, ExecContext *c);
379
8e274523
LP
380int unit_add_cgroup(Unit *u, CGroupBonding *b);
381int unit_add_cgroup_from_text(Unit *u, const char *name);
382int unit_add_default_cgroup(Unit *u);
383CGroupBonding* unit_get_default_cgroup(Unit *u);
384
0ae97ec1 385int unit_choose_id(Unit *u, const char *name);
f50e0a01 386int unit_set_description(Unit *u, const char *description);
87f0e418 387
701cc384
LP
388bool unit_check_gc(Unit *u);
389
87f0e418 390void unit_add_to_load_queue(Unit *u);
c1e1601e 391void unit_add_to_dbus_queue(Unit *u);
23a177ef 392void unit_add_to_cleanup_queue(Unit *u);
701cc384 393void unit_add_to_gc_queue(Unit *u);
87f0e418
LP
394
395int unit_merge(Unit *u, Unit *other);
23a177ef
LP
396int unit_merge_by_name(Unit *u, const char *other);
397
398Unit *unit_follow_merge(Unit *u);
87f0e418 399
e537352b
LP
400int unit_load_fragment_and_dropin(Unit *u);
401int unit_load_fragment_and_dropin_optional(Unit *u);
a16e1123 402int unit_load_nop(Unit *u);
87f0e418
LP
403int unit_load(Unit *unit);
404
87f0e418
LP
405const char *unit_description(Unit *u);
406
f278026d
LP
407bool unit_has_name(Unit *u, const char *name);
408
87f0e418
LP
409UnitActiveState unit_active_state(Unit *u);
410
10a94420
LP
411const char* unit_sub_state_to_string(Unit *u);
412
87f0e418
LP
413void unit_dump(Unit *u, FILE *f, const char *prefix);
414
415bool unit_can_reload(Unit *u);
416bool unit_can_start(Unit *u);
417
418int unit_start(Unit *u);
419int unit_stop(Unit *u);
420int unit_reload(Unit *u);
421
422void unit_notify(Unit *u, UnitActiveState os, UnitActiveState ns);
423
acbb0225
LP
424int unit_watch_fd(Unit *u, int fd, uint32_t events, Watch *w);
425void unit_unwatch_fd(Unit *u, Watch *w);
87f0e418
LP
426
427int unit_watch_pid(Unit *u, pid_t pid);
428void unit_unwatch_pid(Unit *u, pid_t pid);
429
acbb0225
LP
430int unit_watch_timer(Unit *u, usec_t delay, Watch *w);
431void unit_unwatch_timer(Unit *u, Watch *w);
87f0e418 432
05e343b7
LP
433int unit_watch_bus_name(Unit *u, const char *name);
434void unit_unwatch_bus_name(Unit *u, const char *name);
435
87f0e418
LP
436bool unit_job_is_applicable(Unit *u, JobType j);
437
0301abf4
LP
438int set_unit_path(const char *p);
439
50159e6a
LP
440char *unit_dbus_path(Unit *u);
441
f6ff8c29 442int unit_load_related_unit(Unit *u, const char *type, Unit **_found);
a16e1123 443int unit_get_related_unit(Unit *u, const char *type, Unit **_found);
f6ff8c29 444
9e2f7c11
LP
445char *unit_name_printf(Unit *u, const char* text);
446char *unit_full_printf(Unit *u, const char *text);
447char **unit_full_printf_strv(Unit *u, char **l);
448
a16e1123
LP
449bool unit_can_serialize(Unit *u);
450int unit_serialize(Unit *u, FILE *f, FDSet *fds);
93a46b0b 451void unit_serialize_item_format(Unit *u, FILE *f, const char *key, const char *value, ...) _printf_attr_(4,5);
a16e1123
LP
452void unit_serialize_item(Unit *u, FILE *f, const char *key, const char *value);
453int unit_deserialize(Unit *u, FILE *f, FDSet *fds);
454
6e2ef85b
LP
455int unit_add_node_link(Unit *u, const char *what, bool wants);
456
cca098b0
LP
457int unit_coldplug(Unit *u);
458
94f04347
LP
459const char *unit_type_to_string(UnitType i);
460UnitType unit_type_from_string(const char *s);
461
462const char *unit_load_state_to_string(UnitLoadState i);
463UnitLoadState unit_load_state_from_string(const char *s);
464
465const char *unit_active_state_to_string(UnitActiveState i);
466UnitActiveState unit_active_state_from_string(const char *s);
467
468const char *unit_dependency_to_string(UnitDependency i);
469UnitDependency unit_dependency_from_string(const char *s);
470
50159e6a
LP
471const char *kill_mode_to_string(KillMode k);
472KillMode kill_mode_from_string(const char *s);
ea430986 473
87f0e418 474#endif