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