]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/unit.h
units: wire smartcard.target into Makefile
[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
0f138303 42#define UNIT_NAME_MAX 256
dfd8eeed 43#define DEFAULT_TIMEOUT_USEC (60*USEC_PER_SEC)
87f0e418
LP
44#define DEFAULT_RESTART_USEC (100*USEC_PER_MSEC)
45
46enum UnitType {
47 UNIT_SERVICE = 0,
87f0e418
LP
48 UNIT_SOCKET,
49 UNIT_TARGET,
50 UNIT_DEVICE,
51 UNIT_MOUNT,
52 UNIT_AUTOMOUNT,
53 UNIT_SNAPSHOT,
41447faf 54 UNIT_TIMER,
07b0b134 55 UNIT_SWAP,
01f78473 56 UNIT_PATH,
87f0e418 57 _UNIT_TYPE_MAX,
50159e6a 58 _UNIT_TYPE_INVALID = -1
87f0e418
LP
59};
60
61enum UnitLoadState {
62 UNIT_STUB,
63 UNIT_LOADED,
64 UNIT_FAILED,
23a177ef 65 UNIT_MERGED,
94f04347
LP
66 _UNIT_LOAD_STATE_MAX,
67 _UNIT_LOAD_STATE_INVALID = -1
87f0e418
LP
68};
69
70enum UnitActiveState {
71 UNIT_ACTIVE,
032ff4af 72 UNIT_RELOADING,
87f0e418 73 UNIT_INACTIVE,
032ff4af 74 UNIT_MAINTENANCE,
87f0e418
LP
75 UNIT_ACTIVATING,
76 UNIT_DEACTIVATING,
94f04347
LP
77 _UNIT_ACTIVE_STATE_MAX,
78 _UNIT_ACTIVE_STATE_INVALID = -1
87f0e418
LP
79};
80
81static inline bool UNIT_IS_ACTIVE_OR_RELOADING(UnitActiveState t) {
032ff4af 82 return t == UNIT_ACTIVE || t == UNIT_RELOADING;
87f0e418
LP
83}
84
85static inline bool UNIT_IS_ACTIVE_OR_ACTIVATING(UnitActiveState t) {
032ff4af 86 return t == UNIT_ACTIVE || t == UNIT_ACTIVATING || t == UNIT_RELOADING;
87f0e418
LP
87}
88
89static inline bool UNIT_IS_INACTIVE_OR_DEACTIVATING(UnitActiveState t) {
032ff4af 90 return t == UNIT_INACTIVE || t == UNIT_MAINTENANCE || t == UNIT_DEACTIVATING;
6124958c
LP
91}
92
93static inline bool UNIT_IS_INACTIVE_OR_MAINTENANCE(UnitActiveState t) {
032ff4af 94 return t == UNIT_INACTIVE || t == UNIT_MAINTENANCE;
87f0e418
LP
95}
96
97enum UnitDependency {
98 /* Positive dependencies */
99 UNIT_REQUIRES,
9e2f7c11 100 UNIT_REQUIRES_OVERRIDABLE,
87f0e418 101 UNIT_REQUISITE,
9e2f7c11
LP
102 UNIT_REQUISITE_OVERRIDABLE,
103 UNIT_WANTS,
87f0e418
LP
104
105 /* Inverse of the above */
9e2f7c11
LP
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' */
87f0e418
LP
109
110 /* Negative dependencies */
9e2f7c11 111 UNIT_CONFLICTS, /* inverse of 'conflicts' is 'conflicts' */
87f0e418
LP
112
113 /* Order */
701cc384 114 UNIT_BEFORE, /* inverse of 'before' is 'after' and vice versa */
87f0e418
LP
115 UNIT_AFTER,
116
701cc384
LP
117 /* Reference information for GC logic */
118 UNIT_REFERENCES, /* Inverse of 'references' is 'referenced_by' */
119 UNIT_REFERENCED_BY,
120
87f0e418
LP
121 _UNIT_DEPENDENCY_MAX,
122 _UNIT_DEPENDENCY_INVALID = -1
123};
124
ef734fd6
LP
125#include "manager.h"
126#include "job.h"
8e274523 127#include "cgroup.h"
ef734fd6 128
87f0e418
LP
129struct Meta {
130 Manager *manager;
23a177ef 131
87f0e418
LP
132 UnitType type;
133 UnitLoadState load_state;
23a177ef 134 Unit *merged_into;
87f0e418
LP
135
136 char *id; /* One name is special because we use it for identification. Points to an entry in the names set */
9e2f7c11 137 char *instance;
87f0e418
LP
138
139 Set *names;
140 Set *dependencies[_UNIT_DEPENDENCY_MAX];
141
142 char *description;
6be1e7d5 143 char *fragment_path; /* if loaded from a config file this is the primary path to it */
87f0e418
LP
144
145 /* If there is something to do with this unit, then this is
146 * the job for it */
147 Job *job;
148
63983207
LP
149 dual_timestamp inactive_exit_timestamp;
150 dual_timestamp active_enter_timestamp;
151 dual_timestamp active_exit_timestamp;
152 dual_timestamp inactive_enter_timestamp;
87f0e418 153
8e274523
LP
154 /* Counterparts in the cgroup filesystem */
155 CGroupBonding *cgroup_bondings;
156
ef734fd6
LP
157 /* Per type list */
158 LIST_FIELDS(Meta, units_per_type);
c1e1601e 159
701cc384
LP
160 /* Load queue */
161 LIST_FIELDS(Meta, load_queue);
162
c1e1601e
LP
163 /* D-Bus queue */
164 LIST_FIELDS(Meta, dbus_queue);
23a177ef
LP
165
166 /* Cleanup queue */
167 LIST_FIELDS(Meta, cleanup_queue);
9d58f1db 168
701cc384
LP
169 /* GC queue */
170 LIST_FIELDS(Meta, gc_queue);
171
172 /* Used during GC sweeps */
eced69b3 173 unsigned gc_marker;
701cc384 174
9d58f1db
LP
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
a40eb732
LP
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
3b6fdb5b
LP
187 /* Bring up this unit even if a dependency fails to start */
188 bool ignore_dependency_failure;
189
cca098b0
LP
190 /* When deserializing, temporarily store the job type for this
191 * unit here, if there was a job scheduled */
2f630e5f 192 int deserialized_job; /* This is actually of type JobType */
cca098b0 193
9d58f1db
LP
194 bool in_load_queue:1;
195 bool in_dbus_queue:1;
196 bool in_cleanup_queue:1;
701cc384
LP
197 bool in_gc_queue:1;
198
9d58f1db 199 bool sent_dbus_new_signal:1;
87f0e418
LP
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"
07b0b134 210#include "swap.h"
01f78473 211#include "path.h"
87f0e418
LP
212
213union 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;
07b0b134 223 Swap swap;
01f78473 224 Path path;
87f0e418
LP
225};
226
227struct UnitVTable {
228 const char *suffix;
229
e537352b 230 /* This should reset all type-specific variables. This should
a16e1123
LP
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. */
e537352b
LP
234 void (*init)(Unit *u);
235
a16e1123
LP
236 /* This should free all type-specific variables. It should be
237 * idempotent. */
238 void (*done)(Unit *u);
239
e537352b
LP
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
e537352b
LP
245 /* If a a lot of units got created via enumerate(), this is
246 * where to actually set the state and call unit_notify(). */
f50e0a01 247 int (*coldplug)(Unit *u);
87f0e418
LP
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
a16e1123
LP
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
87f0e418
LP
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
10a94420
LP
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
701cc384
LP
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
acbb0225 282 void (*fd_event)(Unit *u, int fd, uint32_t events, Watch *w);
87f0e418 283 void (*sigchld_event)(Unit *u, pid_t pid, int code, int status);
acbb0225 284 void (*timer_event)(Unit *u, uint64_t n_elapsed, Watch *w);
7824bbeb 285
05e343b7
LP
286 /* Called whenever any of the cgroups this unit watches for
287 * ran empty */
8e274523
LP
288 void (*cgroup_notify_empty)(Unit *u);
289
8c47c732 290 /* Called whenever a process of this unit sends us a message */
c952c6ec 291 void (*notify_message)(Unit *u, pid_t pid, char **tags);
8c47c732 292
05e343b7
LP
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
4139c1b2 300 /* Called for each message received on the bus */
5e8d1c9a 301 DBusHandlerResult (*bus_message_handler)(Unit *u, DBusConnection *c, DBusMessage *message);
4139c1b2 302
f50e0a01
LP
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. */
7824bbeb 308 int (*enumerate)(Manager *m);
f50e0a01
LP
309
310 /* Type specific cleanups. */
7824bbeb 311 void (*shutdown)(Manager *m);
9d58f1db
LP
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;
701cc384
LP
326
327 /* Exclude from automatic gc */
328 bool no_gc:1;
c497c7a9
LP
329
330 /* Exclude from isolation requests */
331 bool no_isolate:1;
9e58ff9c
LP
332
333 /* Show status updates on the console */
334 bool show_status: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
9e58ff9c
LP
459void unit_status_printf(Unit *u, const char *format, ...);
460
94f04347
LP
461const char *unit_type_to_string(UnitType i);
462UnitType unit_type_from_string(const char *s);
463
464const char *unit_load_state_to_string(UnitLoadState i);
465UnitLoadState unit_load_state_from_string(const char *s);
466
467const char *unit_active_state_to_string(UnitActiveState i);
468UnitActiveState unit_active_state_from_string(const char *s);
469
470const char *unit_dependency_to_string(UnitDependency i);
471UnitDependency unit_dependency_from_string(const char *s);
472
50159e6a
LP
473const char *kill_mode_to_string(KillMode k);
474KillMode kill_mode_from_string(const char *s);
ea430986 475
87f0e418 476#endif