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