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