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