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