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