]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/unit.h
unit-name: Fix unescaping
[thirdparty/systemd.git] / src / unit.h
CommitLineData
03467c88 1/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
87f0e418
LP
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"
52661efd 41#include "condition.h"
87f0e418 42
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,
fdf20a31 64 UNIT_ERROR,
23a177ef 65 UNIT_MERGED,
6daf4f90 66 UNIT_MASKED,
94f04347
LP
67 _UNIT_LOAD_STATE_MAX,
68 _UNIT_LOAD_STATE_INVALID = -1
87f0e418
LP
69};
70
71enum UnitActiveState {
72 UNIT_ACTIVE,
032ff4af 73 UNIT_RELOADING,
87f0e418 74 UNIT_INACTIVE,
fdf20a31 75 UNIT_FAILED,
87f0e418
LP
76 UNIT_ACTIVATING,
77 UNIT_DEACTIVATING,
94f04347
LP
78 _UNIT_ACTIVE_STATE_MAX,
79 _UNIT_ACTIVE_STATE_INVALID = -1
87f0e418
LP
80};
81
82static inline bool UNIT_IS_ACTIVE_OR_RELOADING(UnitActiveState t) {
032ff4af 83 return t == UNIT_ACTIVE || t == UNIT_RELOADING;
87f0e418
LP
84}
85
86static inline bool UNIT_IS_ACTIVE_OR_ACTIVATING(UnitActiveState t) {
032ff4af 87 return t == UNIT_ACTIVE || t == UNIT_ACTIVATING || t == UNIT_RELOADING;
87f0e418
LP
88}
89
90static inline bool UNIT_IS_INACTIVE_OR_DEACTIVATING(UnitActiveState t) {
fdf20a31 91 return t == UNIT_INACTIVE || t == UNIT_FAILED || t == UNIT_DEACTIVATING;
6124958c
LP
92}
93
fdf20a31
MM
94static inline bool UNIT_IS_INACTIVE_OR_FAILED(UnitActiveState t) {
95 return t == UNIT_INACTIVE || t == UNIT_FAILED;
87f0e418
LP
96}
97
98enum UnitDependency {
99 /* Positive dependencies */
100 UNIT_REQUIRES,
9e2f7c11 101 UNIT_REQUIRES_OVERRIDABLE,
87f0e418 102 UNIT_REQUISITE,
9e2f7c11
LP
103 UNIT_REQUISITE_OVERRIDABLE,
104 UNIT_WANTS,
87f0e418
LP
105
106 /* Inverse of the above */
9e2f7c11
LP
107 UNIT_REQUIRED_BY, /* inverse of 'requires' and 'requisite' is 'required_by' */
108 UNIT_REQUIRED_BY_OVERRIDABLE, /* inverse of 'soft_requires' and 'soft_requisite' is 'soft_required_by' */
109 UNIT_WANTED_BY, /* inverse of 'wants' */
87f0e418
LP
110
111 /* Negative dependencies */
69dd2852
LP
112 UNIT_CONFLICTS, /* inverse of 'conflicts' is 'conflicted_by' */
113 UNIT_CONFLICTED_BY,
87f0e418
LP
114
115 /* Order */
701cc384 116 UNIT_BEFORE, /* inverse of 'before' is 'after' and vice versa */
87f0e418
LP
117 UNIT_AFTER,
118
5de9682c
LP
119 /* On Failure */
120 UNIT_ON_FAILURE,
121
701cc384
LP
122 /* Reference information for GC logic */
123 UNIT_REFERENCES, /* Inverse of 'references' is 'referenced_by' */
124 UNIT_REFERENCED_BY,
125
87f0e418
LP
126 _UNIT_DEPENDENCY_MAX,
127 _UNIT_DEPENDENCY_INVALID = -1
128};
129
ef734fd6
LP
130#include "manager.h"
131#include "job.h"
8e274523 132#include "cgroup.h"
ef734fd6 133
87f0e418
LP
134struct Meta {
135 Manager *manager;
23a177ef 136
87f0e418
LP
137 UnitType type;
138 UnitLoadState load_state;
23a177ef 139 Unit *merged_into;
87f0e418
LP
140
141 char *id; /* One name is special because we use it for identification. Points to an entry in the names set */
9e2f7c11 142 char *instance;
87f0e418
LP
143
144 Set *names;
145 Set *dependencies[_UNIT_DEPENDENCY_MAX];
146
147 char *description;
faf919f1 148
6be1e7d5 149 char *fragment_path; /* if loaded from a config file this is the primary path to it */
45fb0699 150 usec_t fragment_mtime;
87f0e418
LP
151
152 /* If there is something to do with this unit, then this is
153 * the job for it */
154 Job *job;
155
faf919f1
LP
156 usec_t job_timeout;
157
52661efd
LP
158 /* Conditions to check */
159 LIST_HEAD(Condition, conditions);
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
7fab9d01
LP
187 /* When deserializing, temporarily store the job type for this
188 * unit here, if there was a job scheduled */
189 int deserialized_job; /* This is actually of type JobType */
190
8821a00f
LP
191 /* Error code when we didn't manage to load the unit (negative) */
192 int load_error;
193
9d58f1db
LP
194 /* If we go down, pull down everything that depends on us, too */
195 bool recursive_stop;
196
197 /* Garbage collect us we nobody wants or requires us anymore */
198 bool stop_when_unneeded;
199
a40eb732
LP
200 /* Create default depedencies */
201 bool default_dependencies;
202
3b6fdb5b
LP
203 /* Bring up this unit even if a dependency fails to start */
204 bool ignore_dependency_failure;
205
b5e9dba8
LP
206 /* Refuse manual starting, allow starting only indirectly via dependency. */
207 bool refuse_manual_start;
208
209 /* Don't allow the user to stop this unit manually, allow stopping only indirectly via dependency. */
210 bool refuse_manual_stop;
211
2528a7a6
LP
212 /* Allow isolation requests */
213 bool allow_isolate;
214
9d58f1db
LP
215 bool in_load_queue:1;
216 bool in_dbus_queue:1;
217 bool in_cleanup_queue:1;
701cc384
LP
218 bool in_gc_queue:1;
219
9d58f1db 220 bool sent_dbus_new_signal:1;
6c073082
LP
221
222 bool no_gc:1;
cd6d0a45
LP
223
224 bool in_audit:1;
87f0e418
LP
225};
226
227#include "service.h"
228#include "timer.h"
229#include "socket.h"
230#include "target.h"
231#include "device.h"
232#include "mount.h"
233#include "automount.h"
234#include "snapshot.h"
07b0b134 235#include "swap.h"
01f78473 236#include "path.h"
87f0e418
LP
237
238union Unit {
239 Meta meta;
240 Service service;
241 Timer timer;
242 Socket socket;
243 Target target;
244 Device device;
245 Mount mount;
246 Automount automount;
247 Snapshot snapshot;
07b0b134 248 Swap swap;
01f78473 249 Path path;
87f0e418
LP
250};
251
252struct UnitVTable {
253 const char *suffix;
254
e537352b 255 /* This should reset all type-specific variables. This should
a16e1123
LP
256 * not allocate memory, and is called with zero-initialized
257 * data. It should hence only initialize variables that need
258 * to be set != 0. */
e537352b
LP
259 void (*init)(Unit *u);
260
a16e1123
LP
261 /* This should free all type-specific variables. It should be
262 * idempotent. */
263 void (*done)(Unit *u);
264
e537352b
LP
265 /* Actually load data from disk. This may fail, and should set
266 * load_state to UNIT_LOADED, UNIT_MERGED or leave it at
267 * UNIT_STUB if no configuration could be found. */
268 int (*load)(Unit *u);
269
e537352b
LP
270 /* If a a lot of units got created via enumerate(), this is
271 * where to actually set the state and call unit_notify(). */
f50e0a01 272 int (*coldplug)(Unit *u);
87f0e418
LP
273
274 void (*dump)(Unit *u, FILE *f, const char *prefix);
275
276 int (*start)(Unit *u);
277 int (*stop)(Unit *u);
278 int (*reload)(Unit *u);
279
280 bool (*can_reload)(Unit *u);
281
a16e1123
LP
282 /* Write all data that cannot be restored from other sources
283 * away using unit_serialize_item() */
284 int (*serialize)(Unit *u, FILE *f, FDSet *fds);
285
286 /* Restore one item from the serialization */
287 int (*deserialize_item)(Unit *u, const char *key, const char *data, FDSet *fds);
288
87f0e418
LP
289 /* Boils down the more complex internal state of this unit to
290 * a simpler one that the engine can understand */
291 UnitActiveState (*active_state)(Unit *u);
292
10a94420
LP
293 /* Returns the substate specific to this unit type as
294 * string. This is purely information so that we can give the
295 * user a more finegrained explanation in which actual state a
296 * unit is in. */
297 const char* (*sub_state_to_string)(Unit *u);
298
701cc384
LP
299 /* Return true when there is reason to keep this entry around
300 * even nothing references it and it isn't active in any
301 * way */
302 bool (*check_gc)(Unit *u);
303
304 /* Return true when this unit is suitable for snapshotting */
305 bool (*check_snapshot)(Unit *u);
306
acbb0225 307 void (*fd_event)(Unit *u, int fd, uint32_t events, Watch *w);
87f0e418 308 void (*sigchld_event)(Unit *u, pid_t pid, int code, int status);
acbb0225 309 void (*timer_event)(Unit *u, uint64_t n_elapsed, Watch *w);
7824bbeb 310
fdf20a31
MM
311 /* Reset failed state if we are in failed state */
312 void (*reset_failed)(Unit *u);
5632e374 313
05e343b7
LP
314 /* Called whenever any of the cgroups this unit watches for
315 * ran empty */
8e274523
LP
316 void (*cgroup_notify_empty)(Unit *u);
317
8c47c732 318 /* Called whenever a process of this unit sends us a message */
c952c6ec 319 void (*notify_message)(Unit *u, pid_t pid, char **tags);
8c47c732 320
05e343b7
LP
321 /* Called whenever a name thus Unit registered for comes or
322 * goes away. */
323 void (*bus_name_owner_change)(Unit *u, const char *name, const char *old_owner, const char *new_owner);
324
325 /* Called whenever a bus PID lookup finishes */
326 void (*bus_query_pid_done)(Unit *u, const char *name, pid_t pid);
327
4139c1b2 328 /* Called for each message received on the bus */
5e8d1c9a 329 DBusHandlerResult (*bus_message_handler)(Unit *u, DBusConnection *c, DBusMessage *message);
4139c1b2 330
a7f241db
LP
331 /* Return the unit this unit is following */
332 Unit *(*following)(Unit *u);
333
f50e0a01
LP
334 /* This is called for each unit type and should be used to
335 * enumerate existing devices and load them. However,
336 * everything that is loaded here should still stay in
337 * inactive state. It is the job of the coldplug() call above
338 * to put the units into the initial state. */
7824bbeb 339 int (*enumerate)(Manager *m);
f50e0a01
LP
340
341 /* Type specific cleanups. */
7824bbeb 342 void (*shutdown)(Manager *m);
9d58f1db 343
c4e2ceae 344 /* When sending out PropertiesChanged signal, which properties
96d4ce01 345 * shall be invalidated? This is a NUL separated list of
c4e2ceae
LP
346 * strings, to minimize relocations a little. */
347 const char *bus_invalidating_properties;
348
349 /* The interface name */
350 const char *bus_interface;
351
9d58f1db
LP
352 /* Can units of this type have multiple names? */
353 bool no_alias:1;
354
355 /* If true units of this types can never have "Requires"
356 * dependencies, because state changes can only be observed,
357 * not triggered */
358 bool no_requires:1;
359
360 /* Instances make no sense for this type */
361 bool no_instances:1;
362
363 /* Exclude this type from snapshots */
364 bool no_snapshots:1;
701cc384
LP
365
366 /* Exclude from automatic gc */
367 bool no_gc:1;
c497c7a9 368
2528a7a6 369 /* Exclude from stopping on isolation requests */
c497c7a9 370 bool no_isolate:1;
9e58ff9c
LP
371
372 /* Show status updates on the console */
373 bool show_status:1;
87f0e418
LP
374};
375
376extern const UnitVTable * const unit_vtable[_UNIT_TYPE_MAX];
377
378#define UNIT_VTABLE(u) unit_vtable[(u)->meta.type]
379
380/* For casting a unit into the various unit types */
381#define DEFINE_CAST(UPPERCASE, MixedCase) \
382 static inline MixedCase* UPPERCASE(Unit *u) { \
399ab2b1 383 if (_unlikely_(!u || u->meta.type != UNIT_##UPPERCASE)) \
87f0e418
LP
384 return NULL; \
385 \
386 return (MixedCase*) u; \
387 }
388
389/* For casting the various unit types into a unit */
399ab2b1 390#define UNIT(u) ((Unit*) (&(u)->meta))
87f0e418
LP
391
392DEFINE_CAST(SOCKET, Socket);
393DEFINE_CAST(TIMER, Timer);
394DEFINE_CAST(SERVICE, Service);
395DEFINE_CAST(TARGET, Target);
396DEFINE_CAST(DEVICE, Device);
397DEFINE_CAST(MOUNT, Mount);
398DEFINE_CAST(AUTOMOUNT, Automount);
399DEFINE_CAST(SNAPSHOT, Snapshot);
07b0b134 400DEFINE_CAST(SWAP, Swap);
01f78473 401DEFINE_CAST(PATH, Path);
87f0e418 402
87f0e418
LP
403Unit *unit_new(Manager *m);
404void unit_free(Unit *u);
405
406int unit_add_name(Unit *u, const char *name);
9e2f7c11 407
701cc384 408int unit_add_dependency(Unit *u, UnitDependency d, Unit *other, bool add_reference);
2c966c03
LP
409int unit_add_two_dependencies(Unit *u, UnitDependency d, UnitDependency e, Unit *other, bool add_reference);
410
701cc384 411int unit_add_dependency_by_name(Unit *u, UnitDependency d, const char *name, const char *filename, bool add_reference);
2c966c03
LP
412int unit_add_two_dependencies_by_name(Unit *u, UnitDependency d, UnitDependency e, const char *name, const char *path, bool add_reference);
413
701cc384 414int unit_add_dependency_by_name_inverse(Unit *u, UnitDependency d, const char *name, const char *filename, bool add_reference);
2c966c03 415int unit_add_two_dependencies_by_name_inverse(Unit *u, UnitDependency d, UnitDependency e, const char *name, const char *path, bool add_reference);
0ae97ec1 416
23a177ef
LP
417int unit_add_exec_dependencies(Unit *u, ExecContext *c);
418
8e274523
LP
419int unit_add_cgroup(Unit *u, CGroupBonding *b);
420int unit_add_cgroup_from_text(Unit *u, const char *name);
421int unit_add_default_cgroup(Unit *u);
422CGroupBonding* unit_get_default_cgroup(Unit *u);
423
0ae97ec1 424int unit_choose_id(Unit *u, const char *name);
f50e0a01 425int unit_set_description(Unit *u, const char *description);
87f0e418 426
701cc384
LP
427bool unit_check_gc(Unit *u);
428
87f0e418 429void unit_add_to_load_queue(Unit *u);
c1e1601e 430void unit_add_to_dbus_queue(Unit *u);
23a177ef 431void unit_add_to_cleanup_queue(Unit *u);
701cc384 432void unit_add_to_gc_queue(Unit *u);
87f0e418
LP
433
434int unit_merge(Unit *u, Unit *other);
23a177ef
LP
435int unit_merge_by_name(Unit *u, const char *other);
436
437Unit *unit_follow_merge(Unit *u);
87f0e418 438
e537352b
LP
439int unit_load_fragment_and_dropin(Unit *u);
440int unit_load_fragment_and_dropin_optional(Unit *u);
87f0e418
LP
441int unit_load(Unit *unit);
442
87f0e418
LP
443const char *unit_description(Unit *u);
444
f278026d
LP
445bool unit_has_name(Unit *u, const char *name);
446
87f0e418
LP
447UnitActiveState unit_active_state(Unit *u);
448
10a94420
LP
449const char* unit_sub_state_to_string(Unit *u);
450
87f0e418
LP
451void unit_dump(Unit *u, FILE *f, const char *prefix);
452
453bool unit_can_reload(Unit *u);
454bool unit_can_start(Unit *u);
2528a7a6 455bool unit_can_isolate(Unit *u);
87f0e418
LP
456
457int unit_start(Unit *u);
458int unit_stop(Unit *u);
459int unit_reload(Unit *u);
460
461void unit_notify(Unit *u, UnitActiveState os, UnitActiveState ns);
462
acbb0225
LP
463int unit_watch_fd(Unit *u, int fd, uint32_t events, Watch *w);
464void unit_unwatch_fd(Unit *u, Watch *w);
87f0e418
LP
465
466int unit_watch_pid(Unit *u, pid_t pid);
467void unit_unwatch_pid(Unit *u, pid_t pid);
468
acbb0225
LP
469int unit_watch_timer(Unit *u, usec_t delay, Watch *w);
470void unit_unwatch_timer(Unit *u, Watch *w);
87f0e418 471
05e343b7
LP
472int unit_watch_bus_name(Unit *u, const char *name);
473void unit_unwatch_bus_name(Unit *u, const char *name);
474
87f0e418
LP
475bool unit_job_is_applicable(Unit *u, JobType j);
476
0301abf4
LP
477int set_unit_path(const char *p);
478
50159e6a
LP
479char *unit_dbus_path(Unit *u);
480
f6ff8c29 481int unit_load_related_unit(Unit *u, const char *type, Unit **_found);
a16e1123 482int unit_get_related_unit(Unit *u, const char *type, Unit **_found);
f6ff8c29 483
9e2f7c11
LP
484char *unit_name_printf(Unit *u, const char* text);
485char *unit_full_printf(Unit *u, const char *text);
486char **unit_full_printf_strv(Unit *u, char **l);
487
a16e1123
LP
488bool unit_can_serialize(Unit *u);
489int unit_serialize(Unit *u, FILE *f, FDSet *fds);
93a46b0b 490void unit_serialize_item_format(Unit *u, FILE *f, const char *key, const char *value, ...) _printf_attr_(4,5);
a16e1123
LP
491void unit_serialize_item(Unit *u, FILE *f, const char *key, const char *value);
492int unit_deserialize(Unit *u, FILE *f, FDSet *fds);
493
6e2ef85b
LP
494int unit_add_node_link(Unit *u, const char *what, bool wants);
495
cca098b0
LP
496int unit_coldplug(Unit *u);
497
9e58ff9c
LP
498void unit_status_printf(Unit *u, const char *format, ...);
499
45fb0699
LP
500bool unit_need_daemon_reload(Unit *u);
501
fdf20a31 502void unit_reset_failed(Unit *u);
5632e374 503
a7f241db
LP
504Unit *unit_following(Unit *u);
505
18ffdfda 506bool unit_pending_inactive(Unit *u);
f976f3f6 507bool unit_pending_active(Unit *u);
18ffdfda 508
bba34eed
LP
509int unit_add_default_target_dependency(Unit *u, Unit *target);
510
71fad675 511UnitType unit_name_to_type(const char *n);
b9c0d441 512bool unit_name_is_valid(const char *n, bool template_ok);
71fad675 513
94f04347
LP
514const char *unit_load_state_to_string(UnitLoadState i);
515UnitLoadState unit_load_state_from_string(const char *s);
516
517const char *unit_active_state_to_string(UnitActiveState i);
518UnitActiveState unit_active_state_from_string(const char *s);
519
520const char *unit_dependency_to_string(UnitDependency i);
521UnitDependency unit_dependency_from_string(const char *s);
522
50159e6a
LP
523const char *kill_mode_to_string(KillMode k);
524KillMode kill_mode_from_string(const char *s);
ea430986 525
87f0e418 526#endif