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