]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/core/unit.h
unit: fix unit_check_unneeded() dependency iteration
[thirdparty/systemd.git] / src / core / unit.h
CommitLineData
03467c88 1/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
87f0e418 2
c2f1db8f 3#pragma once
87f0e418 4
a7334b09
LP
5/***
6 This file is part of systemd.
7
8 Copyright 2010 Lennart Poettering
9
10 systemd is free software; you can redistribute it and/or modify it
5430f7f2
LP
11 under the terms of the GNU Lesser General Public License as published by
12 the Free Software Foundation; either version 2.1 of the License, or
a7334b09
LP
13 (at your option) any later version.
14
15 systemd is distributed in the hope that it will be useful, but
16 WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
5430f7f2 18 Lesser General Public License for more details.
a7334b09 19
5430f7f2 20 You should have received a copy of the GNU Lesser General Public License
a7334b09
LP
21 along with systemd; If not, see <http://www.gnu.org/licenses/>.
22***/
23
87f0e418
LP
24#include <stdbool.h>
25#include <stdlib.h>
bbc9006e 26#include <unistd.h>
87f0e418 27
ac155bb8 28typedef struct Unit Unit;
87f0e418 29typedef struct UnitVTable UnitVTable;
87f0e418 30typedef enum UnitActiveState UnitActiveState;
57020a3a 31typedef struct UnitRef UnitRef;
c6918296 32typedef struct UnitStatusMessageFormats UnitStatusMessageFormats;
87f0e418 33
87f0e418 34#include "list.h"
134e56dc 35#include "condition.h"
a4375746 36#include "install.h"
0a9f8ed0 37#include "unit-name.h"
f189ab18 38#include "failure-action.h"
87f0e418 39
87f0e418
LP
40enum UnitActiveState {
41 UNIT_ACTIVE,
032ff4af 42 UNIT_RELOADING,
87f0e418 43 UNIT_INACTIVE,
fdf20a31 44 UNIT_FAILED,
87f0e418
LP
45 UNIT_ACTIVATING,
46 UNIT_DEACTIVATING,
94f04347
LP
47 _UNIT_ACTIVE_STATE_MAX,
48 _UNIT_ACTIVE_STATE_INVALID = -1
87f0e418
LP
49};
50
db2cb23b
UTL
51typedef enum KillOperation {
52 KILL_TERMINATE,
53 KILL_KILL,
54 KILL_ABORT,
4940c0b0
LP
55 _KILL_OPERATION_MAX,
56 _KILL_OPERATION_INVALID = -1
db2cb23b
UTL
57} KillOperation;
58
87f0e418 59static inline bool UNIT_IS_ACTIVE_OR_RELOADING(UnitActiveState t) {
032ff4af 60 return t == UNIT_ACTIVE || t == UNIT_RELOADING;
87f0e418
LP
61}
62
63static inline bool UNIT_IS_ACTIVE_OR_ACTIVATING(UnitActiveState t) {
032ff4af 64 return t == UNIT_ACTIVE || t == UNIT_ACTIVATING || t == UNIT_RELOADING;
87f0e418
LP
65}
66
67static inline bool UNIT_IS_INACTIVE_OR_DEACTIVATING(UnitActiveState t) {
fdf20a31 68 return t == UNIT_INACTIVE || t == UNIT_FAILED || t == UNIT_DEACTIVATING;
6124958c
LP
69}
70
fdf20a31
MM
71static inline bool UNIT_IS_INACTIVE_OR_FAILED(UnitActiveState t) {
72 return t == UNIT_INACTIVE || t == UNIT_FAILED;
87f0e418
LP
73}
74
ef734fd6
LP
75#include "job.h"
76
a016b922
LP
77struct UnitRef {
78 /* Keeps tracks of references to a unit. This is useful so
79 * that we can merge two units if necessary and correct all
80 * references to them */
81
82 Unit* unit;
83 LIST_FIELDS(UnitRef, refs);
84};
85
ac155bb8 86struct Unit {
87f0e418 87 Manager *manager;
23a177ef 88
87f0e418
LP
89 UnitType type;
90 UnitLoadState load_state;
23a177ef 91 Unit *merged_into;
87f0e418
LP
92
93 char *id; /* One name is special because we use it for identification. Points to an entry in the names set */
9e2f7c11 94 char *instance;
87f0e418
LP
95
96 Set *names;
97 Set *dependencies[_UNIT_DEPENDENCY_MAX];
98
7c8fa05c
LP
99 char **requires_mounts_for;
100
87f0e418 101 char *description;
49dbfa7b 102 char **documentation;
faf919f1 103
6be1e7d5 104 char *fragment_path; /* if loaded from a config file this is the primary path to it */
1b64d026 105 char *source_path; /* if converted, the source file */
ae7a7182 106 char **dropin_paths;
f78f265f 107
45fb0699 108 usec_t fragment_mtime;
1b64d026 109 usec_t source_mtime;
ae7a7182 110 usec_t dropin_mtime;
87f0e418 111
e0209d83 112 /* If there is something to do with this unit, then this is the installed job for it */
87f0e418
LP
113 Job *job;
114
e0209d83
MS
115 /* JOB_NOP jobs are special and can be installed without disturbing the real job. */
116 Job *nop_job;
117
f189ab18 118 /* Job timeout and action to take */
faf919f1 119 usec_t job_timeout;
f189ab18
LP
120 FailureAction job_timeout_action;
121 char *job_timeout_reboot_arg;
faf919f1 122
57020a3a
LP
123 /* References to this */
124 LIST_HEAD(UnitRef, refs);
125
52661efd
LP
126 /* Conditions to check */
127 LIST_HEAD(Condition, conditions);
59fccdc5 128 LIST_HEAD(Condition, asserts);
52661efd 129
90bbc946 130 dual_timestamp condition_timestamp;
59fccdc5 131 dual_timestamp assert_timestamp;
90bbc946 132
63983207
LP
133 dual_timestamp inactive_exit_timestamp;
134 dual_timestamp active_enter_timestamp;
135 dual_timestamp active_exit_timestamp;
136 dual_timestamp inactive_enter_timestamp;
87f0e418 137
a016b922
LP
138 UnitRef slice;
139
ef734fd6 140 /* Per type list */
ac155bb8 141 LIST_FIELDS(Unit, units_by_type);
c1e1601e 142
7c8fa05c
LP
143 /* All units which have requires_mounts_for set */
144 LIST_FIELDS(Unit, has_requires_mounts_for);
145
701cc384 146 /* Load queue */
ac155bb8 147 LIST_FIELDS(Unit, load_queue);
701cc384 148
c1e1601e 149 /* D-Bus queue */
ac155bb8 150 LIST_FIELDS(Unit, dbus_queue);
23a177ef
LP
151
152 /* Cleanup queue */
ac155bb8 153 LIST_FIELDS(Unit, cleanup_queue);
9d58f1db 154
701cc384 155 /* GC queue */
ac155bb8 156 LIST_FIELDS(Unit, gc_queue);
701cc384 157
4ad49000
LP
158 /* CGroup realize members queue */
159 LIST_FIELDS(Unit, cgroup_queue);
160
a911bb9a
LP
161 /* PIDs we keep an eye on. Note that a unit might have many
162 * more, but these are the ones we care enough about to
163 * process SIGCHLD for */
164 Set *pids;
165
701cc384 166 /* Used during GC sweeps */
eced69b3 167 unsigned gc_marker;
701cc384 168
7fab9d01 169 /* When deserializing, temporarily store the job type for this
39a18c60
MS
170 * unit here, if there was a job scheduled.
171 * Only for deserializing from a legacy version. New style uses full
172 * serialized jobs. */
7fab9d01
LP
173 int deserialized_job; /* This is actually of type JobType */
174
8821a00f
LP
175 /* Error code when we didn't manage to load the unit (negative) */
176 int load_error;
177
d2dc52db 178 /* Cached unit file state and preset */
a4375746 179 UnitFileState unit_file_state;
d2dc52db 180 int unit_file_preset;
a4375746 181
5ad096b3
LP
182 /* Where the cpuacct.usage cgroup counter was at the time the unit was started */
183 nsec_t cpuacct_usage_base;
184
7c52a17b
ZJS
185 /* Counterparts in the cgroup filesystem */
186 char *cgroup_path;
187 CGroupControllerMask cgroup_realized_mask;
188 CGroupControllerMask cgroup_subtree_mask;
189 CGroupControllerMask cgroup_members_mask;
190
191 /* How to start OnFailure units */
192 JobMode on_failure_job_mode;
193
9d58f1db
LP
194 /* Garbage collect us we nobody wants or requires us anymore */
195 bool stop_when_unneeded;
196
35b8ca3a 197 /* Create default dependencies */
a40eb732
LP
198 bool default_dependencies;
199
b5e9dba8
LP
200 /* Refuse manual starting, allow starting only indirectly via dependency. */
201 bool refuse_manual_start;
202
203 /* Don't allow the user to stop this unit manually, allow stopping only indirectly via dependency. */
204 bool refuse_manual_stop;
205
2528a7a6
LP
206 /* Allow isolation requests */
207 bool allow_isolate;
208
c8f4d764
LP
209 /* Ignore this unit when isolating */
210 bool ignore_on_isolate;
211
7a6000a6
LP
212 /* Ignore this unit when snapshotting */
213 bool ignore_on_snapshot;
214
49f43d5f 215 /* Did the last condition check succeed? */
90bbc946 216 bool condition_result;
59fccdc5 217 bool assert_result;
90bbc946 218
c2756a68
LP
219 /* Is this a transient unit? */
220 bool transient;
221
9d58f1db
LP
222 bool in_load_queue:1;
223 bool in_dbus_queue:1;
224 bool in_cleanup_queue:1;
701cc384 225 bool in_gc_queue:1;
4ad49000 226 bool in_cgroup_queue:1;
701cc384 227
9d58f1db 228 bool sent_dbus_new_signal:1;
6c073082
LP
229
230 bool no_gc:1;
cd6d0a45
LP
231
232 bool in_audit:1;
a57f7e2c
LP
233
234 bool cgroup_realized:1;
bc432dc7
LP
235 bool cgroup_members_mask_valid:1;
236 bool cgroup_subtree_mask_valid:1;
f78f265f
LP
237
238 /* Did we already invoke unit_coldplug() for this unit? */
239 bool coldplugged;
87f0e418
LP
240};
241
c6918296
MS
242struct UnitStatusMessageFormats {
243 const char *starting_stopping[2];
244 const char *finished_start_job[_JOB_RESULT_MAX];
245 const char *finished_stop_job[_JOB_RESULT_MAX];
246};
247
8e2af478
LP
248typedef enum UnitSetPropertiesMode {
249 UNIT_CHECK = 0,
250 UNIT_RUNTIME = 1,
251 UNIT_PERSISTENT = 2,
252} UnitSetPropertiesMode;
253
87f0e418 254#include "socket.h"
e821075a 255#include "busname.h"
87f0e418 256#include "target.h"
e821075a 257#include "snapshot.h"
87f0e418 258#include "device.h"
87f0e418 259#include "automount.h"
07b0b134 260#include "swap.h"
e821075a 261#include "timer.h"
a016b922 262#include "slice.h"
c1ff5570 263#include "path.h"
6c12b52e 264#include "scope.h"
87f0e418 265
87f0e418 266struct UnitVTable {
7d17cfbc
MS
267 /* How much memory does an object of this unit type need */
268 size_t object_size;
269
3ef63c31
LP
270 /* If greater than 0, the offset into the object where
271 * ExecContext is found, if the unit type has that */
272 size_t exec_context_offset;
273
4ad49000
LP
274 /* If greater than 0, the offset into the object where
275 * CGroupContext is found, if the unit type has that */
276 size_t cgroup_context_offset;
277
718db961
LP
278 /* If greater than 0, the offset into the object where
279 * KillContext is found, if the unit type has that */
280 size_t kill_context_offset;
281
613b411c
LP
282 /* If greater than 0, the offset into the object where the
283 * pointer to ExecRuntime is found, if the unit type has
284 * that */
285 size_t exec_runtime_offset;
286
ee33e53a 287 /* The name of the configuration file section with the private settings of this unit */
4ad49000 288 const char *private_section;
71645aca 289
f975e971
LP
290 /* Config file sections this unit type understands, separated
291 * by NUL chars */
292 const char *sections;
293
e537352b 294 /* This should reset all type-specific variables. This should
a16e1123
LP
295 * not allocate memory, and is called with zero-initialized
296 * data. It should hence only initialize variables that need
297 * to be set != 0. */
e537352b
LP
298 void (*init)(Unit *u);
299
a16e1123
LP
300 /* This should free all type-specific variables. It should be
301 * idempotent. */
302 void (*done)(Unit *u);
303
e537352b
LP
304 /* Actually load data from disk. This may fail, and should set
305 * load_state to UNIT_LOADED, UNIT_MERGED or leave it at
306 * UNIT_STUB if no configuration could be found. */
307 int (*load)(Unit *u);
308
c5315881 309 /* If a lot of units got created via enumerate(), this is
be847e82
LP
310 * where to actually set the state and call unit_notify(). */
311 int (*coldplug)(Unit *u);
87f0e418
LP
312
313 void (*dump)(Unit *u, FILE *f, const char *prefix);
314
315 int (*start)(Unit *u);
316 int (*stop)(Unit *u);
317 int (*reload)(Unit *u);
318
718db961 319 int (*kill)(Unit *u, KillWho w, int signo, sd_bus_error *error);
8a0867d6 320
87f0e418
LP
321 bool (*can_reload)(Unit *u);
322
a16e1123
LP
323 /* Write all data that cannot be restored from other sources
324 * away using unit_serialize_item() */
325 int (*serialize)(Unit *u, FILE *f, FDSet *fds);
326
327 /* Restore one item from the serialization */
328 int (*deserialize_item)(Unit *u, const char *key, const char *data, FDSet *fds);
329
01e10de3
LP
330 /* Try to match up fds with what we need for this unit */
331 int (*distribute_fds)(Unit *u, FDSet *fds);
332
87f0e418
LP
333 /* Boils down the more complex internal state of this unit to
334 * a simpler one that the engine can understand */
335 UnitActiveState (*active_state)(Unit *u);
336
10a94420
LP
337 /* Returns the substate specific to this unit type as
338 * string. This is purely information so that we can give the
35b8ca3a 339 * user a more fine grained explanation in which actual state a
10a94420
LP
340 * unit is in. */
341 const char* (*sub_state_to_string)(Unit *u);
342
701cc384
LP
343 /* Return true when there is reason to keep this entry around
344 * even nothing references it and it isn't active in any
345 * way */
346 bool (*check_gc)(Unit *u);
347
a354329f
LP
348 /* When the unit is not running and no job for it queued we
349 * shall release its runtime resources */
350 void (*release_resources)(Unit *u);
351
701cc384
LP
352 /* Return true when this unit is suitable for snapshotting */
353 bool (*check_snapshot)(Unit *u);
354
718db961 355 /* Invoked on every child that died */
87f0e418 356 void (*sigchld_event)(Unit *u, pid_t pid, int code, int status);
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 */
4ad49000 363 void (*notify_cgroup_empty)(Unit *u);
8e274523 364
8c47c732 365 /* Called whenever a process of this unit sends us a message */
a354329f 366 void (*notify_message)(Unit *u, pid_t pid, char **tags, FDSet *fds);
8c47c732 367
3ecaa09b 368 /* Called whenever a name this Unit registered for comes or
05e343b7
LP
369 * goes away. */
370 void (*bus_name_owner_change)(Unit *u, const char *name, const char *old_owner, const char *new_owner);
371
8e2af478 372 /* Called for each property that is being set */
718db961 373 int (*bus_set_property)(Unit *u, const char *name, sd_bus_message *message, UnitSetPropertiesMode mode, sd_bus_error *error);
8e2af478
LP
374
375 /* Called after at least one property got changed to apply the necessary change */
376 int (*bus_commit_properties)(Unit *u);
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
3ecaa09b
LP
384 /* Invoked each time a unit this unit is triggering changes
385 * state or gains/loses a job */
386 void (*trigger_notify)(Unit *u, Unit *trigger);
387
8742514c
LP
388 /* Called whenever CLOCK_REALTIME made a jump */
389 void (*time_change)(Unit *u);
390
68db7a3b
ZJS
391 int (*get_timeout)(Unit *u, uint64_t *timeout);
392
f50e0a01
LP
393 /* This is called for each unit type and should be used to
394 * enumerate existing devices and load them. However,
395 * everything that is loaded here should still stay in
396 * inactive state. It is the job of the coldplug() call above
397 * to put the units into the initial state. */
7824bbeb 398 int (*enumerate)(Manager *m);
f50e0a01
LP
399
400 /* Type specific cleanups. */
7824bbeb 401 void (*shutdown)(Manager *m);
9d58f1db 402
0faacd47
LP
403 /* If this function is set and return false all jobs for units
404 * of this type will immediately fail. */
1c2e9646 405 bool (*supported)(void);
0faacd47 406
c4e2ceae
LP
407 /* The interface name */
408 const char *bus_interface;
409
718db961
LP
410 /* The bus vtable */
411 const sd_bus_vtable *bus_vtable;
412
718db961 413 /* The strings to print in status messages */
c6918296
MS
414 UnitStatusMessageFormats status_message_formats;
415
9d58f1db
LP
416 /* Can units of this type have multiple names? */
417 bool no_alias:1;
418
9d58f1db
LP
419 /* Instances make no sense for this type */
420 bool no_instances:1;
421
701cc384
LP
422 /* Exclude from automatic gc */
423 bool no_gc:1;
c2756a68
LP
424
425 /* True if transient units of this type are OK */
426 bool can_transient:1;
87f0e418
LP
427};
428
429extern const UnitVTable * const unit_vtable[_UNIT_TYPE_MAX];
430
ac155bb8 431#define UNIT_VTABLE(u) unit_vtable[(u)->type]
87f0e418
LP
432
433/* For casting a unit into the various unit types */
434#define DEFINE_CAST(UPPERCASE, MixedCase) \
435 static inline MixedCase* UPPERCASE(Unit *u) { \
ac155bb8 436 if (_unlikely_(!u || u->type != UNIT_##UPPERCASE)) \
87f0e418
LP
437 return NULL; \
438 \
439 return (MixedCase*) u; \
440 }
441
442/* For casting the various unit types into a unit */
ac155bb8 443#define UNIT(u) (&(u)->meta)
87f0e418 444
3ecaa09b
LP
445#define UNIT_TRIGGER(u) ((Unit*) set_first((u)->dependencies[UNIT_TRIGGERS]))
446
87f0e418 447DEFINE_CAST(SERVICE, Service);
e821075a
LP
448DEFINE_CAST(SOCKET, Socket);
449DEFINE_CAST(BUSNAME, BusName);
87f0e418 450DEFINE_CAST(TARGET, Target);
e821075a 451DEFINE_CAST(SNAPSHOT, Snapshot);
87f0e418
LP
452DEFINE_CAST(DEVICE, Device);
453DEFINE_CAST(MOUNT, Mount);
454DEFINE_CAST(AUTOMOUNT, Automount);
07b0b134 455DEFINE_CAST(SWAP, Swap);
e821075a 456DEFINE_CAST(TIMER, Timer);
01f78473 457DEFINE_CAST(PATH, Path);
a016b922 458DEFINE_CAST(SLICE, Slice);
6c12b52e 459DEFINE_CAST(SCOPE, Scope);
87f0e418 460
7d17cfbc 461Unit *unit_new(Manager *m, size_t size);
87f0e418
LP
462void unit_free(Unit *u);
463
464int unit_add_name(Unit *u, const char *name);
9e2f7c11 465
701cc384 466int unit_add_dependency(Unit *u, UnitDependency d, Unit *other, bool add_reference);
2c966c03
LP
467int unit_add_two_dependencies(Unit *u, UnitDependency d, UnitDependency e, Unit *other, bool add_reference);
468
701cc384 469int unit_add_dependency_by_name(Unit *u, UnitDependency d, const char *name, const char *filename, bool add_reference);
2c966c03
LP
470int unit_add_two_dependencies_by_name(Unit *u, UnitDependency d, UnitDependency e, const char *name, const char *path, bool add_reference);
471
701cc384 472int unit_add_dependency_by_name_inverse(Unit *u, UnitDependency d, const char *name, const char *filename, bool add_reference);
2c966c03 473int unit_add_two_dependencies_by_name_inverse(Unit *u, UnitDependency d, UnitDependency e, const char *name, const char *path, bool add_reference);
0ae97ec1 474
23a177ef
LP
475int unit_add_exec_dependencies(Unit *u, ExecContext *c);
476
0ae97ec1 477int unit_choose_id(Unit *u, const char *name);
f50e0a01 478int unit_set_description(Unit *u, const char *description);
87f0e418 479
701cc384
LP
480bool unit_check_gc(Unit *u);
481
87f0e418 482void unit_add_to_load_queue(Unit *u);
c1e1601e 483void unit_add_to_dbus_queue(Unit *u);
23a177ef 484void unit_add_to_cleanup_queue(Unit *u);
701cc384 485void unit_add_to_gc_queue(Unit *u);
87f0e418
LP
486
487int unit_merge(Unit *u, Unit *other);
23a177ef
LP
488int unit_merge_by_name(Unit *u, const char *other);
489
44a6b1b6 490Unit *unit_follow_merge(Unit *u) _pure_;
87f0e418 491
e537352b
LP
492int unit_load_fragment_and_dropin(Unit *u);
493int unit_load_fragment_and_dropin_optional(Unit *u);
87f0e418
LP
494int unit_load(Unit *unit);
495
598459ce 496int unit_add_default_slice(Unit *u, CGroupContext *c);
a016b922 497
44a6b1b6 498const char *unit_description(Unit *u) _pure_;
87f0e418 499
f278026d
LP
500bool unit_has_name(Unit *u, const char *name);
501
87f0e418
LP
502UnitActiveState unit_active_state(Unit *u);
503
10a94420
LP
504const char* unit_sub_state_to_string(Unit *u);
505
87f0e418
LP
506void unit_dump(Unit *u, FILE *f, const char *prefix);
507
44a6b1b6
ZJS
508bool unit_can_reload(Unit *u) _pure_;
509bool unit_can_start(Unit *u) _pure_;
510bool unit_can_isolate(Unit *u) _pure_;
87f0e418
LP
511
512int unit_start(Unit *u);
513int unit_stop(Unit *u);
514int unit_reload(Unit *u);
515
718db961
LP
516int unit_kill(Unit *u, KillWho w, int signo, sd_bus_error *error);
517int unit_kill_common(Unit *u, KillWho who, int signo, pid_t main_pid, pid_t control_pid, sd_bus_error *error);
8a0867d6 518
e2f3b44c 519void unit_notify(Unit *u, UnitActiveState os, UnitActiveState ns, bool reload_success);
87f0e418 520
87f0e418
LP
521int unit_watch_pid(Unit *u, pid_t pid);
522void unit_unwatch_pid(Unit *u, pid_t pid);
a911bb9a
LP
523int unit_watch_all_pids(Unit *u);
524void unit_unwatch_all_pids(Unit *u);
525
526void unit_tidy_watch_pids(Unit *u, pid_t except1, pid_t except2);
87f0e418 527
05e343b7
LP
528int unit_watch_bus_name(Unit *u, const char *name);
529void unit_unwatch_bus_name(Unit *u, const char *name);
530
87f0e418
LP
531bool unit_job_is_applicable(Unit *u, JobType j);
532
0301abf4
LP
533int set_unit_path(const char *p);
534
50159e6a
LP
535char *unit_dbus_path(Unit *u);
536
f6ff8c29
LP
537int unit_load_related_unit(Unit *u, const char *type, Unit **_found);
538
44a6b1b6 539bool unit_can_serialize(Unit *u) _pure_;
6b78f9b4 540int unit_serialize(Unit *u, FILE *f, FDSet *fds, bool serialize_jobs);
44b601bc 541void unit_serialize_item_format(Unit *u, FILE *f, const char *key, const char *value, ...) _printf_(4,5);
a16e1123
LP
542void unit_serialize_item(Unit *u, FILE *f, const char *key, const char *value);
543int unit_deserialize(Unit *u, FILE *f, FDSet *fds);
544
6e2ef85b
LP
545int unit_add_node_link(Unit *u, const char *what, bool wants);
546
be847e82 547int unit_coldplug(Unit *u);
cca098b0 548
44b601bc 549void unit_status_printf(Unit *u, const char *status, const char *unit_status_msg_format) _printf_(3, 0);
9e58ff9c 550
45fb0699
LP
551bool unit_need_daemon_reload(Unit *u);
552
fdf20a31 553void unit_reset_failed(Unit *u);
5632e374 554
a7f241db 555Unit *unit_following(Unit *u);
eeaedb7c 556int unit_following_set(Unit *u, Set **s);
a7f241db 557
9444b1f2
LP
558const char *unit_slice_name(Unit *u);
559
44a6b1b6
ZJS
560bool unit_stop_pending(Unit *u) _pure_;
561bool unit_inactive_or_pending(Unit *u) _pure_;
31afa0a4 562bool unit_active_or_pending(Unit *u);
18ffdfda 563
bba34eed
LP
564int unit_add_default_target_dependency(Unit *u, Unit *target);
565
41f9172f
LP
566char *unit_default_cgroup_path(Unit *u);
567
3ecaa09b
LP
568void unit_start_on_failure(Unit *u);
569void unit_trigger_notify(Unit *u);
c0daa706 570
a4375746 571UnitFileState unit_get_unit_file_state(Unit *u);
d2dc52db 572int unit_get_unit_file_preset(Unit *u);
a4375746 573
57020a3a
LP
574Unit* unit_ref_set(UnitRef *ref, Unit *u);
575void unit_ref_unset(UnitRef *ref);
576
577#define UNIT_DEREF(ref) ((ref).unit)
9444b1f2 578#define UNIT_ISSET(ref) (!!(ref).unit)
57020a3a 579
598459ce 580int unit_patch_contexts(Unit *u);
e06c73cc 581
44a6b1b6 582ExecContext *unit_get_exec_context(Unit *u) _pure_;
718db961 583KillContext *unit_get_kill_context(Unit *u) _pure_;
4ad49000 584CGroupContext *unit_get_cgroup_context(Unit *u) _pure_;
598459ce 585
613b411c
LP
586ExecRuntime *unit_get_exec_runtime(Unit *u) _pure_;
587
588int unit_setup_exec_runtime(Unit *u);
3ef63c31 589
8e2af478 590int unit_write_drop_in(Unit *u, UnitSetPropertiesMode mode, const char *name, const char *data);
44b601bc 591int unit_write_drop_in_format(Unit *u, UnitSetPropertiesMode mode, const char *name, const char *format, ...) _printf_(4,5);
b9ec9359
LP
592
593int unit_write_drop_in_private(Unit *u, UnitSetPropertiesMode mode, const char *name, const char *data);
44b601bc 594int unit_write_drop_in_private_format(Unit *u, UnitSetPropertiesMode mode, const char *name, const char *format, ...) _printf_(4,5);
b9ec9359 595
8e2af478 596int unit_remove_drop_in(Unit *u, UnitSetPropertiesMode mode, const char *name);
71645aca 597
db2cb23b 598int unit_kill_context(Unit *u, KillContext *c, KillOperation k, pid_t main_pid, pid_t control_pid, bool main_pid_alien);
cd2086fe 599
c2756a68
LP
600int unit_make_transient(Unit *u);
601
a57f7e2c
LP
602int unit_require_mounts_for(Unit *u, const char *path);
603
1c2e9646
LP
604bool unit_type_supported(UnitType t);
605
606static inline bool unit_supported(Unit *u) {
607 return unit_type_supported(u->type);
608}
609
8b4305c7
LP
610void unit_warn_if_dir_nonempty(Unit *u, const char* where);
611int unit_fail_if_symlink(Unit *u, const char* where);
612
44a6b1b6
ZJS
613const char *unit_active_state_to_string(UnitActiveState i) _const_;
614UnitActiveState unit_active_state_from_string(const char *s) _pure_;
94f04347 615
e8e581bf
ZJS
616/* Macros which append UNIT= or USER_UNIT= to the message */
617
f2341e0a
LP
618#define log_unit_full(unit, level, error, ...) \
619 ({ \
620 Unit *_u = (unit); \
621 _u ? log_object_internal(level, error, __FILE__, __LINE__, __func__, _u->manager->unit_log_field, _u->id, ##__VA_ARGS__) : \
622 log_internal(level, error, __FILE__, __LINE__, __func__, ##__VA_ARGS__); \
623 })
624
625#define log_unit_debug(unit, ...) log_unit_full(unit, LOG_DEBUG, 0, ##__VA_ARGS__)
626#define log_unit_info(unit, ...) log_unit_full(unit, LOG_INFO, 0, ##__VA_ARGS__)
627#define log_unit_notice(unit, ...) log_unit_full(unit, LOG_NOTICE, 0, ##__VA_ARGS__)
628#define log_unit_warning(unit, ...) log_unit_full(unit, LOG_WARNING, 0, ##__VA_ARGS__)
629#define log_unit_error(unit, ...) log_unit_full(unit, LOG_ERR, 0, ##__VA_ARGS__)
630
631#define log_unit_debug_errno(unit, error, ...) log_unit_full(unit, LOG_DEBUG, error, ##__VA_ARGS__)
632#define log_unit_info_errno(unit, error, ...) log_unit_full(unit, LOG_INFO, error, ##__VA_ARGS__)
633#define log_unit_notice_errno(unit, error, ...) log_unit_full(unit, LOG_NOTICE, error, ##__VA_ARGS__)
634#define log_unit_warning_errno(unit, error, ...) log_unit_full(unit, LOG_WARNING, error, ##__VA_ARGS__)
635#define log_unit_error_errno(unit, error, ...) log_unit_full(unit, LOG_ERR, error, ##__VA_ARGS__)
636
637#define LOG_UNIT_MESSAGE(unit, fmt, ...) "MESSAGE=%s: " fmt, (unit)->id, ##__VA_ARGS__
638#define LOG_UNIT_ID(unit) (unit)->manager->unit_log_format_string, (unit)->id