]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/unit.h
logind: downgrade login message to debug
[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;
57020a3a 35typedef struct UnitRef UnitRef;
87f0e418 36
87f0e418
LP
37#include "set.h"
38#include "util.h"
39#include "list.h"
40#include "socket-util.h"
41#include "execute.h"
52661efd 42#include "condition.h"
a4375746 43#include "install.h"
87f0e418 44
87f0e418
LP
45enum UnitType {
46 UNIT_SERVICE = 0,
87f0e418
LP
47 UNIT_SOCKET,
48 UNIT_TARGET,
49 UNIT_DEVICE,
50 UNIT_MOUNT,
51 UNIT_AUTOMOUNT,
52 UNIT_SNAPSHOT,
41447faf 53 UNIT_TIMER,
07b0b134 54 UNIT_SWAP,
01f78473 55 UNIT_PATH,
87f0e418 56 _UNIT_TYPE_MAX,
50159e6a 57 _UNIT_TYPE_INVALID = -1
87f0e418
LP
58};
59
60enum UnitLoadState {
61 UNIT_STUB,
62 UNIT_LOADED,
fdf20a31 63 UNIT_ERROR,
23a177ef 64 UNIT_MERGED,
6daf4f90 65 UNIT_MASKED,
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,
fdf20a31 74 UNIT_FAILED,
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) {
fdf20a31 90 return t == UNIT_INACTIVE || t == UNIT_FAILED || t == UNIT_DEACTIVATING;
6124958c
LP
91}
92
fdf20a31
MM
93static inline bool UNIT_IS_INACTIVE_OR_FAILED(UnitActiveState t) {
94 return t == UNIT_INACTIVE || t == UNIT_FAILED;
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,
b81884e7 104 UNIT_BIND_TO,
87f0e418
LP
105
106 /* Inverse of the above */
9e2f7c11 107 UNIT_REQUIRED_BY, /* inverse of 'requires' and 'requisite' is 'required_by' */
f14e15f8 108 UNIT_REQUIRED_BY_OVERRIDABLE, /* inverse of 'requires_overridable' and 'requisite_overridable' is 'soft_required_by' */
9e2f7c11 109 UNIT_WANTED_BY, /* inverse of 'wants' */
b81884e7 110 UNIT_BOUND_BY, /* inverse of 'bind_to' */
87f0e418
LP
111
112 /* Negative dependencies */
69dd2852
LP
113 UNIT_CONFLICTS, /* inverse of 'conflicts' is 'conflicted_by' */
114 UNIT_CONFLICTED_BY,
87f0e418
LP
115
116 /* Order */
701cc384 117 UNIT_BEFORE, /* inverse of 'before' is 'after' and vice versa */
87f0e418
LP
118 UNIT_AFTER,
119
5de9682c
LP
120 /* On Failure */
121 UNIT_ON_FAILURE,
122
57020a3a
LP
123 /* Triggers (i.e. a socket triggers a service) */
124 UNIT_TRIGGERS,
125 UNIT_TRIGGERED_BY,
126
4dcc1cb4
LP
127 /* Propagate reloads */
128 UNIT_PROPAGATE_RELOAD_TO,
129 UNIT_PROPAGATE_RELOAD_FROM,
130
701cc384
LP
131 /* Reference information for GC logic */
132 UNIT_REFERENCES, /* Inverse of 'references' is 'referenced_by' */
133 UNIT_REFERENCED_BY,
134
87f0e418
LP
135 _UNIT_DEPENDENCY_MAX,
136 _UNIT_DEPENDENCY_INVALID = -1
137};
138
ef734fd6
LP
139#include "manager.h"
140#include "job.h"
8e274523 141#include "cgroup.h"
ab1f0633 142#include "cgroup-attr.h"
ef734fd6 143
87f0e418
LP
144struct Meta {
145 Manager *manager;
23a177ef 146
87f0e418
LP
147 UnitType type;
148 UnitLoadState load_state;
23a177ef 149 Unit *merged_into;
87f0e418
LP
150
151 char *id; /* One name is special because we use it for identification. Points to an entry in the names set */
9e2f7c11 152 char *instance;
87f0e418
LP
153
154 Set *names;
155 Set *dependencies[_UNIT_DEPENDENCY_MAX];
156
157 char *description;
faf919f1 158
6be1e7d5 159 char *fragment_path; /* if loaded from a config file this is the primary path to it */
45fb0699 160 usec_t fragment_mtime;
87f0e418
LP
161
162 /* If there is something to do with this unit, then this is
163 * the job for it */
164 Job *job;
165
faf919f1
LP
166 usec_t job_timeout;
167
57020a3a
LP
168 /* References to this */
169 LIST_HEAD(UnitRef, refs);
170
52661efd
LP
171 /* Conditions to check */
172 LIST_HEAD(Condition, conditions);
173
90bbc946
LP
174 dual_timestamp condition_timestamp;
175
63983207
LP
176 dual_timestamp inactive_exit_timestamp;
177 dual_timestamp active_enter_timestamp;
178 dual_timestamp active_exit_timestamp;
179 dual_timestamp inactive_enter_timestamp;
87f0e418 180
8e274523
LP
181 /* Counterparts in the cgroup filesystem */
182 CGroupBonding *cgroup_bondings;
ab1f0633 183 CGroupAttribute *cgroup_attributes;
8e274523 184
ef734fd6 185 /* Per type list */
ab5c3e3f 186 LIST_FIELDS(Meta, units_by_type);
c1e1601e 187
701cc384
LP
188 /* Load queue */
189 LIST_FIELDS(Meta, load_queue);
190
c1e1601e
LP
191 /* D-Bus queue */
192 LIST_FIELDS(Meta, dbus_queue);
23a177ef
LP
193
194 /* Cleanup queue */
195 LIST_FIELDS(Meta, cleanup_queue);
9d58f1db 196
701cc384
LP
197 /* GC queue */
198 LIST_FIELDS(Meta, gc_queue);
199
200 /* Used during GC sweeps */
eced69b3 201 unsigned gc_marker;
701cc384 202
7fab9d01
LP
203 /* When deserializing, temporarily store the job type for this
204 * unit here, if there was a job scheduled */
205 int deserialized_job; /* This is actually of type JobType */
206
8821a00f
LP
207 /* Error code when we didn't manage to load the unit (negative) */
208 int load_error;
209
a4375746
LP
210 /* Cached unit file state */
211 UnitFileState unit_file_state;
212
9d58f1db
LP
213 /* Garbage collect us we nobody wants or requires us anymore */
214 bool stop_when_unneeded;
215
35b8ca3a 216 /* Create default dependencies */
a40eb732
LP
217 bool default_dependencies;
218
b5e9dba8
LP
219 /* Refuse manual starting, allow starting only indirectly via dependency. */
220 bool refuse_manual_start;
221
222 /* Don't allow the user to stop this unit manually, allow stopping only indirectly via dependency. */
223 bool refuse_manual_stop;
224
2528a7a6
LP
225 /* Allow isolation requests */
226 bool allow_isolate;
227
222ae6a8
LP
228 /* Isolate OnFailure unit */
229 bool on_failure_isolate;
230
c8f4d764
LP
231 /* Ignore this unit when isolating */
232 bool ignore_on_isolate;
233
7a6000a6
LP
234 /* Ignore this unit when snapshotting */
235 bool ignore_on_snapshot;
236
90bbc946
LP
237 /* Did the last condition check suceed? */
238 bool condition_result;
239
9d58f1db
LP
240 bool in_load_queue:1;
241 bool in_dbus_queue:1;
242 bool in_cleanup_queue:1;
701cc384
LP
243 bool in_gc_queue:1;
244
9d58f1db 245 bool sent_dbus_new_signal:1;
6c073082
LP
246
247 bool no_gc:1;
cd6d0a45
LP
248
249 bool in_audit:1;
87f0e418
LP
250};
251
57020a3a
LP
252struct UnitRef {
253 /* Keeps tracks of references to a unit. This is useful so
254 * that we can merge two units if necessary and correct all
255 * references to them */
256
257 Unit* unit;
258 LIST_FIELDS(UnitRef, refs);
259};
260
87f0e418
LP
261#include "service.h"
262#include "timer.h"
263#include "socket.h"
264#include "target.h"
265#include "device.h"
266#include "mount.h"
267#include "automount.h"
268#include "snapshot.h"
07b0b134 269#include "swap.h"
01f78473 270#include "path.h"
87f0e418
LP
271
272union Unit {
273 Meta meta;
274 Service service;
275 Timer timer;
276 Socket socket;
277 Target target;
278 Device device;
279 Mount mount;
280 Automount automount;
281 Snapshot snapshot;
07b0b134 282 Swap swap;
01f78473 283 Path path;
87f0e418
LP
284};
285
286struct UnitVTable {
287 const char *suffix;
288
f975e971
LP
289 /* Config file sections this unit type understands, separated
290 * by NUL chars */
291 const char *sections;
292
e537352b 293 /* This should reset all type-specific variables. This should
a16e1123
LP
294 * not allocate memory, and is called with zero-initialized
295 * data. It should hence only initialize variables that need
296 * to be set != 0. */
e537352b
LP
297 void (*init)(Unit *u);
298
a16e1123
LP
299 /* This should free all type-specific variables. It should be
300 * idempotent. */
301 void (*done)(Unit *u);
302
e537352b
LP
303 /* Actually load data from disk. This may fail, and should set
304 * load_state to UNIT_LOADED, UNIT_MERGED or leave it at
305 * UNIT_STUB if no configuration could be found. */
306 int (*load)(Unit *u);
307
e537352b
LP
308 /* If a a lot of units got created via enumerate(), this is
309 * where to actually set the state and call unit_notify(). */
f50e0a01 310 int (*coldplug)(Unit *u);
87f0e418
LP
311
312 void (*dump)(Unit *u, FILE *f, const char *prefix);
313
314 int (*start)(Unit *u);
315 int (*stop)(Unit *u);
316 int (*reload)(Unit *u);
317
8a0867d6
LP
318 int (*kill)(Unit *u, KillWho w, KillMode m, int signo, DBusError *error);
319
87f0e418
LP
320 bool (*can_reload)(Unit *u);
321
a16e1123
LP
322 /* Write all data that cannot be restored from other sources
323 * away using unit_serialize_item() */
324 int (*serialize)(Unit *u, FILE *f, FDSet *fds);
325
326 /* Restore one item from the serialization */
327 int (*deserialize_item)(Unit *u, const char *key, const char *data, FDSet *fds);
328
87f0e418
LP
329 /* Boils down the more complex internal state of this unit to
330 * a simpler one that the engine can understand */
331 UnitActiveState (*active_state)(Unit *u);
332
10a94420
LP
333 /* Returns the substate specific to this unit type as
334 * string. This is purely information so that we can give the
35b8ca3a 335 * user a more fine grained explanation in which actual state a
10a94420
LP
336 * unit is in. */
337 const char* (*sub_state_to_string)(Unit *u);
338
701cc384
LP
339 /* Return true when there is reason to keep this entry around
340 * even nothing references it and it isn't active in any
341 * way */
342 bool (*check_gc)(Unit *u);
343
344 /* Return true when this unit is suitable for snapshotting */
345 bool (*check_snapshot)(Unit *u);
346
acbb0225 347 void (*fd_event)(Unit *u, int fd, uint32_t events, Watch *w);
87f0e418 348 void (*sigchld_event)(Unit *u, pid_t pid, int code, int status);
acbb0225 349 void (*timer_event)(Unit *u, uint64_t n_elapsed, Watch *w);
7824bbeb 350
5f4b19f4
LP
351 /* Check whether unit needs a daemon reload */
352 bool (*need_daemon_reload)(Unit *u);
353
fdf20a31
MM
354 /* Reset failed state if we are in failed state */
355 void (*reset_failed)(Unit *u);
5632e374 356
05e343b7
LP
357 /* Called whenever any of the cgroups this unit watches for
358 * ran empty */
8e274523
LP
359 void (*cgroup_notify_empty)(Unit *u);
360
8c47c732 361 /* Called whenever a process of this unit sends us a message */
c952c6ec 362 void (*notify_message)(Unit *u, pid_t pid, char **tags);
8c47c732 363
05e343b7
LP
364 /* Called whenever a name thus Unit registered for comes or
365 * goes away. */
366 void (*bus_name_owner_change)(Unit *u, const char *name, const char *old_owner, const char *new_owner);
367
368 /* Called whenever a bus PID lookup finishes */
369 void (*bus_query_pid_done)(Unit *u, const char *name, pid_t pid);
370
4139c1b2 371 /* Called for each message received on the bus */
5e8d1c9a 372 DBusHandlerResult (*bus_message_handler)(Unit *u, DBusConnection *c, DBusMessage *message);
4139c1b2 373
a7f241db
LP
374 /* Return the unit this unit is following */
375 Unit *(*following)(Unit *u);
376
6210e7fc
LP
377 /* Return the set of units that are following each other */
378 int (*following_set)(Unit *u, Set **s);
379
f50e0a01
LP
380 /* This is called for each unit type and should be used to
381 * enumerate existing devices and load them. However,
382 * everything that is loaded here should still stay in
383 * inactive state. It is the job of the coldplug() call above
384 * to put the units into the initial state. */
7824bbeb 385 int (*enumerate)(Manager *m);
f50e0a01
LP
386
387 /* Type specific cleanups. */
7824bbeb 388 void (*shutdown)(Manager *m);
9d58f1db 389
c4e2ceae 390 /* When sending out PropertiesChanged signal, which properties
96d4ce01 391 * shall be invalidated? This is a NUL separated list of
c4e2ceae
LP
392 * strings, to minimize relocations a little. */
393 const char *bus_invalidating_properties;
394
395 /* The interface name */
396 const char *bus_interface;
397
9d58f1db
LP
398 /* Can units of this type have multiple names? */
399 bool no_alias:1;
400
9d58f1db
LP
401 /* Instances make no sense for this type */
402 bool no_instances:1;
403
701cc384
LP
404 /* Exclude from automatic gc */
405 bool no_gc:1;
c497c7a9 406
9e58ff9c
LP
407 /* Show status updates on the console */
408 bool show_status:1;
87f0e418
LP
409};
410
411extern const UnitVTable * const unit_vtable[_UNIT_TYPE_MAX];
412
413#define UNIT_VTABLE(u) unit_vtable[(u)->meta.type]
414
415/* For casting a unit into the various unit types */
416#define DEFINE_CAST(UPPERCASE, MixedCase) \
417 static inline MixedCase* UPPERCASE(Unit *u) { \
399ab2b1 418 if (_unlikely_(!u || u->meta.type != UNIT_##UPPERCASE)) \
87f0e418
LP
419 return NULL; \
420 \
421 return (MixedCase*) u; \
422 }
423
424/* For casting the various unit types into a unit */
399ab2b1 425#define UNIT(u) ((Unit*) (&(u)->meta))
87f0e418
LP
426
427DEFINE_CAST(SOCKET, Socket);
428DEFINE_CAST(TIMER, Timer);
429DEFINE_CAST(SERVICE, Service);
430DEFINE_CAST(TARGET, Target);
431DEFINE_CAST(DEVICE, Device);
432DEFINE_CAST(MOUNT, Mount);
433DEFINE_CAST(AUTOMOUNT, Automount);
434DEFINE_CAST(SNAPSHOT, Snapshot);
07b0b134 435DEFINE_CAST(SWAP, Swap);
01f78473 436DEFINE_CAST(PATH, Path);
87f0e418 437
87f0e418
LP
438Unit *unit_new(Manager *m);
439void unit_free(Unit *u);
440
441int unit_add_name(Unit *u, const char *name);
9e2f7c11 442
701cc384 443int unit_add_dependency(Unit *u, UnitDependency d, Unit *other, bool add_reference);
2c966c03
LP
444int unit_add_two_dependencies(Unit *u, UnitDependency d, UnitDependency e, Unit *other, bool add_reference);
445
701cc384 446int unit_add_dependency_by_name(Unit *u, UnitDependency d, const char *name, const char *filename, bool add_reference);
2c966c03
LP
447int unit_add_two_dependencies_by_name(Unit *u, UnitDependency d, UnitDependency e, const char *name, const char *path, bool add_reference);
448
701cc384 449int unit_add_dependency_by_name_inverse(Unit *u, UnitDependency d, const char *name, const char *filename, bool add_reference);
2c966c03 450int unit_add_two_dependencies_by_name_inverse(Unit *u, UnitDependency d, UnitDependency e, const char *name, const char *path, bool add_reference);
0ae97ec1 451
23a177ef
LP
452int unit_add_exec_dependencies(Unit *u, ExecContext *c);
453
8e274523
LP
454int unit_add_cgroup(Unit *u, CGroupBonding *b);
455int unit_add_cgroup_from_text(Unit *u, const char *name);
d686d8a9 456int unit_add_default_cgroups(Unit *u);
8e274523 457CGroupBonding* unit_get_default_cgroup(Unit *u);
ab1f0633 458int unit_add_cgroup_attribute(Unit *u, const char *controller, const char *name, const char *value, CGroupAttributeMapCallback map_callback);
8e274523 459
0ae97ec1 460int unit_choose_id(Unit *u, const char *name);
f50e0a01 461int unit_set_description(Unit *u, const char *description);
87f0e418 462
701cc384
LP
463bool unit_check_gc(Unit *u);
464
87f0e418 465void unit_add_to_load_queue(Unit *u);
c1e1601e 466void unit_add_to_dbus_queue(Unit *u);
23a177ef 467void unit_add_to_cleanup_queue(Unit *u);
701cc384 468void unit_add_to_gc_queue(Unit *u);
87f0e418
LP
469
470int unit_merge(Unit *u, Unit *other);
23a177ef
LP
471int unit_merge_by_name(Unit *u, const char *other);
472
473Unit *unit_follow_merge(Unit *u);
87f0e418 474
e537352b
LP
475int unit_load_fragment_and_dropin(Unit *u);
476int unit_load_fragment_and_dropin_optional(Unit *u);
87f0e418
LP
477int unit_load(Unit *unit);
478
87f0e418
LP
479const char *unit_description(Unit *u);
480
f278026d
LP
481bool unit_has_name(Unit *u, const char *name);
482
87f0e418
LP
483UnitActiveState unit_active_state(Unit *u);
484
10a94420
LP
485const char* unit_sub_state_to_string(Unit *u);
486
87f0e418
LP
487void unit_dump(Unit *u, FILE *f, const char *prefix);
488
489bool unit_can_reload(Unit *u);
490bool unit_can_start(Unit *u);
2528a7a6 491bool unit_can_isolate(Unit *u);
87f0e418
LP
492
493int unit_start(Unit *u);
494int unit_stop(Unit *u);
495int unit_reload(Unit *u);
496
8a0867d6
LP
497int unit_kill(Unit *u, KillWho w, KillMode m, int signo, DBusError *error);
498
e2f3b44c 499void unit_notify(Unit *u, UnitActiveState os, UnitActiveState ns, bool reload_success);
87f0e418 500
acbb0225
LP
501int unit_watch_fd(Unit *u, int fd, uint32_t events, Watch *w);
502void unit_unwatch_fd(Unit *u, Watch *w);
87f0e418
LP
503
504int unit_watch_pid(Unit *u, pid_t pid);
505void unit_unwatch_pid(Unit *u, pid_t pid);
506
acbb0225
LP
507int unit_watch_timer(Unit *u, usec_t delay, Watch *w);
508void unit_unwatch_timer(Unit *u, Watch *w);
87f0e418 509
05e343b7
LP
510int unit_watch_bus_name(Unit *u, const char *name);
511void unit_unwatch_bus_name(Unit *u, const char *name);
512
87f0e418
LP
513bool unit_job_is_applicable(Unit *u, JobType j);
514
0301abf4
LP
515int set_unit_path(const char *p);
516
50159e6a
LP
517char *unit_dbus_path(Unit *u);
518
f6ff8c29 519int unit_load_related_unit(Unit *u, const char *type, Unit **_found);
a16e1123 520int unit_get_related_unit(Unit *u, const char *type, Unit **_found);
f6ff8c29 521
9e2f7c11
LP
522char *unit_name_printf(Unit *u, const char* text);
523char *unit_full_printf(Unit *u, const char *text);
524char **unit_full_printf_strv(Unit *u, char **l);
525
a16e1123
LP
526bool unit_can_serialize(Unit *u);
527int unit_serialize(Unit *u, FILE *f, FDSet *fds);
93a46b0b 528void unit_serialize_item_format(Unit *u, FILE *f, const char *key, const char *value, ...) _printf_attr_(4,5);
a16e1123
LP
529void unit_serialize_item(Unit *u, FILE *f, const char *key, const char *value);
530int unit_deserialize(Unit *u, FILE *f, FDSet *fds);
531
6e2ef85b
LP
532int unit_add_node_link(Unit *u, const char *what, bool wants);
533
cca098b0
LP
534int unit_coldplug(Unit *u);
535
5831e9b7 536void unit_status_printf(Unit *u, const char *status, const char *format, ...);
9e58ff9c 537
45fb0699
LP
538bool unit_need_daemon_reload(Unit *u);
539
fdf20a31 540void unit_reset_failed(Unit *u);
5632e374 541
a7f241db
LP
542Unit *unit_following(Unit *u);
543
18ffdfda 544bool unit_pending_inactive(Unit *u);
f976f3f6 545bool unit_pending_active(Unit *u);
18ffdfda 546
bba34eed
LP
547int unit_add_default_target_dependency(Unit *u, Unit *target);
548
6210e7fc
LP
549int unit_following_set(Unit *u, Set **s);
550
71fad675 551UnitType unit_name_to_type(const char *n);
b9c0d441 552bool unit_name_is_valid(const char *n, bool template_ok);
71fad675 553
c0daa706
LP
554void unit_trigger_on_failure(Unit *u);
555
90bbc946
LP
556bool unit_condition_test(Unit *u);
557
a4375746
LP
558UnitFileState unit_get_unit_file_state(Unit *u);
559
57020a3a
LP
560Unit* unit_ref_set(UnitRef *ref, Unit *u);
561void unit_ref_unset(UnitRef *ref);
562
563#define UNIT_DEREF(ref) ((ref).unit)
564
94f04347
LP
565const char *unit_load_state_to_string(UnitLoadState i);
566UnitLoadState unit_load_state_from_string(const char *s);
567
568const char *unit_active_state_to_string(UnitActiveState i);
569UnitActiveState unit_active_state_from_string(const char *s);
570
571const char *unit_dependency_to_string(UnitDependency i);
572UnitDependency unit_dependency_from_string(const char *s);
573
87f0e418 574#endif