]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/core/unit.h
pam_systemd: Ignore vtnr when seat != seat0
[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
701cc384 206 /* Used during GC sweeps */
eced69b3 207 unsigned gc_marker;
701cc384 208
7fab9d01 209 /* When deserializing, temporarily store the job type for this
39a18c60
MS
210 * unit here, if there was a job scheduled.
211 * Only for deserializing from a legacy version. New style uses full
212 * serialized jobs. */
7fab9d01
LP
213 int deserialized_job; /* This is actually of type JobType */
214
8821a00f
LP
215 /* Error code when we didn't manage to load the unit (negative) */
216 int load_error;
217
a4375746
LP
218 /* Cached unit file state */
219 UnitFileState unit_file_state;
220
9d58f1db
LP
221 /* Garbage collect us we nobody wants or requires us anymore */
222 bool stop_when_unneeded;
223
35b8ca3a 224 /* Create default dependencies */
a40eb732
LP
225 bool default_dependencies;
226
b5e9dba8
LP
227 /* Refuse manual starting, allow starting only indirectly via dependency. */
228 bool refuse_manual_start;
229
230 /* Don't allow the user to stop this unit manually, allow stopping only indirectly via dependency. */
231 bool refuse_manual_stop;
232
2528a7a6
LP
233 /* Allow isolation requests */
234 bool allow_isolate;
235
d420282b
LP
236 /* How to start OnFailure units */
237 JobMode on_failure_job_mode;
222ae6a8 238
c8f4d764
LP
239 /* Ignore this unit when isolating */
240 bool ignore_on_isolate;
241
7a6000a6
LP
242 /* Ignore this unit when snapshotting */
243 bool ignore_on_snapshot;
244
49f43d5f 245 /* Did the last condition check succeed? */
90bbc946
LP
246 bool condition_result;
247
c2756a68
LP
248 /* Is this a transient unit? */
249 bool transient;
250
9d58f1db
LP
251 bool in_load_queue:1;
252 bool in_dbus_queue:1;
253 bool in_cleanup_queue:1;
701cc384 254 bool in_gc_queue:1;
4ad49000 255 bool in_cgroup_queue:1;
701cc384 256
9d58f1db 257 bool sent_dbus_new_signal:1;
6c073082
LP
258
259 bool no_gc:1;
cd6d0a45
LP
260
261 bool in_audit:1;
a57f7e2c
LP
262
263 bool cgroup_realized:1;
87f0e418
LP
264};
265
c6918296
MS
266struct UnitStatusMessageFormats {
267 const char *starting_stopping[2];
268 const char *finished_start_job[_JOB_RESULT_MAX];
269 const char *finished_stop_job[_JOB_RESULT_MAX];
270};
271
8e2af478
LP
272typedef enum UnitSetPropertiesMode {
273 UNIT_CHECK = 0,
274 UNIT_RUNTIME = 1,
275 UNIT_PERSISTENT = 2,
276} UnitSetPropertiesMode;
277
87f0e418 278#include "service.h"
87f0e418 279#include "socket.h"
e821075a 280#include "busname.h"
87f0e418 281#include "target.h"
e821075a 282#include "snapshot.h"
87f0e418
LP
283#include "device.h"
284#include "mount.h"
285#include "automount.h"
07b0b134 286#include "swap.h"
e821075a 287#include "timer.h"
01f78473 288#include "path.h"
a016b922 289#include "slice.h"
6c12b52e 290#include "scope.h"
87f0e418 291
87f0e418 292struct UnitVTable {
7d17cfbc
MS
293 /* How much memory does an object of this unit type need */
294 size_t object_size;
295
3ef63c31
LP
296 /* If greater than 0, the offset into the object where
297 * ExecContext is found, if the unit type has that */
298 size_t exec_context_offset;
299
4ad49000
LP
300 /* If greater than 0, the offset into the object where
301 * CGroupContext is found, if the unit type has that */
302 size_t cgroup_context_offset;
303
718db961
LP
304 /* If greater than 0, the offset into the object where
305 * KillContext is found, if the unit type has that */
306 size_t kill_context_offset;
307
613b411c
LP
308 /* If greater than 0, the offset into the object where the
309 * pointer to ExecRuntime is found, if the unit type has
310 * that */
311 size_t exec_runtime_offset;
312
4ad49000
LP
313 /* The name of the configuration file section with the private settings of this unit*/
314 const char *private_section;
71645aca 315
f975e971
LP
316 /* Config file sections this unit type understands, separated
317 * by NUL chars */
318 const char *sections;
319
e537352b 320 /* This should reset all type-specific variables. This should
a16e1123
LP
321 * not allocate memory, and is called with zero-initialized
322 * data. It should hence only initialize variables that need
323 * to be set != 0. */
e537352b
LP
324 void (*init)(Unit *u);
325
a16e1123
LP
326 /* This should free all type-specific variables. It should be
327 * idempotent. */
328 void (*done)(Unit *u);
329
e537352b
LP
330 /* Actually load data from disk. This may fail, and should set
331 * load_state to UNIT_LOADED, UNIT_MERGED or leave it at
332 * UNIT_STUB if no configuration could be found. */
333 int (*load)(Unit *u);
334
c5315881 335 /* If a lot of units got created via enumerate(), this is
e537352b 336 * where to actually set the state and call unit_notify(). */
f50e0a01 337 int (*coldplug)(Unit *u);
87f0e418
LP
338
339 void (*dump)(Unit *u, FILE *f, const char *prefix);
340
341 int (*start)(Unit *u);
342 int (*stop)(Unit *u);
343 int (*reload)(Unit *u);
344
718db961 345 int (*kill)(Unit *u, KillWho w, int signo, sd_bus_error *error);
8a0867d6 346
87f0e418
LP
347 bool (*can_reload)(Unit *u);
348
a16e1123
LP
349 /* Write all data that cannot be restored from other sources
350 * away using unit_serialize_item() */
351 int (*serialize)(Unit *u, FILE *f, FDSet *fds);
352
353 /* Restore one item from the serialization */
354 int (*deserialize_item)(Unit *u, const char *key, const char *data, FDSet *fds);
355
01e10de3
LP
356 /* Try to match up fds with what we need for this unit */
357 int (*distribute_fds)(Unit *u, FDSet *fds);
358
87f0e418
LP
359 /* Boils down the more complex internal state of this unit to
360 * a simpler one that the engine can understand */
361 UnitActiveState (*active_state)(Unit *u);
362
10a94420
LP
363 /* Returns the substate specific to this unit type as
364 * string. This is purely information so that we can give the
35b8ca3a 365 * user a more fine grained explanation in which actual state a
10a94420
LP
366 * unit is in. */
367 const char* (*sub_state_to_string)(Unit *u);
368
701cc384
LP
369 /* Return true when there is reason to keep this entry around
370 * even nothing references it and it isn't active in any
371 * way */
372 bool (*check_gc)(Unit *u);
373
374 /* Return true when this unit is suitable for snapshotting */
375 bool (*check_snapshot)(Unit *u);
376
718db961 377 /* Invoked on every child that died */
87f0e418 378 void (*sigchld_event)(Unit *u, pid_t pid, int code, int status);
7824bbeb 379
fdf20a31
MM
380 /* Reset failed state if we are in failed state */
381 void (*reset_failed)(Unit *u);
5632e374 382
05e343b7
LP
383 /* Called whenever any of the cgroups this unit watches for
384 * ran empty */
4ad49000 385 void (*notify_cgroup_empty)(Unit *u);
8e274523 386
8c47c732 387 /* Called whenever a process of this unit sends us a message */
c952c6ec 388 void (*notify_message)(Unit *u, pid_t pid, char **tags);
8c47c732 389
3ecaa09b 390 /* Called whenever a name this Unit registered for comes or
05e343b7
LP
391 * goes away. */
392 void (*bus_name_owner_change)(Unit *u, const char *name, const char *old_owner, const char *new_owner);
393
8e2af478 394 /* Called for each property that is being set */
718db961 395 int (*bus_set_property)(Unit *u, const char *name, sd_bus_message *message, UnitSetPropertiesMode mode, sd_bus_error *error);
8e2af478
LP
396
397 /* Called after at least one property got changed to apply the necessary change */
398 int (*bus_commit_properties)(Unit *u);
399
a7f241db
LP
400 /* Return the unit this unit is following */
401 Unit *(*following)(Unit *u);
402
6210e7fc
LP
403 /* Return the set of units that are following each other */
404 int (*following_set)(Unit *u, Set **s);
405
3ecaa09b
LP
406 /* Invoked each time a unit this unit is triggering changes
407 * state or gains/loses a job */
408 void (*trigger_notify)(Unit *u, Unit *trigger);
409
8742514c
LP
410 /* Called whenever CLOCK_REALTIME made a jump */
411 void (*time_change)(Unit *u);
412
f50e0a01
LP
413 /* This is called for each unit type and should be used to
414 * enumerate existing devices and load them. However,
415 * everything that is loaded here should still stay in
416 * inactive state. It is the job of the coldplug() call above
417 * to put the units into the initial state. */
7824bbeb 418 int (*enumerate)(Manager *m);
f50e0a01
LP
419
420 /* Type specific cleanups. */
7824bbeb 421 void (*shutdown)(Manager *m);
9d58f1db 422
c4e2ceae
LP
423 /* The interface name */
424 const char *bus_interface;
425
718db961
LP
426 /* The bus vtable */
427 const sd_bus_vtable *bus_vtable;
428
718db961 429 /* The strings to print in status messages */
c6918296
MS
430 UnitStatusMessageFormats status_message_formats;
431
9d58f1db
LP
432 /* Can units of this type have multiple names? */
433 bool no_alias:1;
434
9d58f1db
LP
435 /* Instances make no sense for this type */
436 bool no_instances:1;
437
701cc384
LP
438 /* Exclude from automatic gc */
439 bool no_gc:1;
c2756a68
LP
440
441 /* True if transient units of this type are OK */
442 bool can_transient:1;
87f0e418
LP
443};
444
445extern const UnitVTable * const unit_vtable[_UNIT_TYPE_MAX];
446
ac155bb8 447#define UNIT_VTABLE(u) unit_vtable[(u)->type]
87f0e418
LP
448
449/* For casting a unit into the various unit types */
450#define DEFINE_CAST(UPPERCASE, MixedCase) \
451 static inline MixedCase* UPPERCASE(Unit *u) { \
ac155bb8 452 if (_unlikely_(!u || u->type != UNIT_##UPPERCASE)) \
87f0e418
LP
453 return NULL; \
454 \
455 return (MixedCase*) u; \
456 }
457
458/* For casting the various unit types into a unit */
ac155bb8 459#define UNIT(u) (&(u)->meta)
87f0e418 460
3ecaa09b
LP
461#define UNIT_TRIGGER(u) ((Unit*) set_first((u)->dependencies[UNIT_TRIGGERS]))
462
87f0e418 463DEFINE_CAST(SERVICE, Service);
e821075a
LP
464DEFINE_CAST(SOCKET, Socket);
465DEFINE_CAST(BUSNAME, BusName);
87f0e418 466DEFINE_CAST(TARGET, Target);
e821075a 467DEFINE_CAST(SNAPSHOT, Snapshot);
87f0e418
LP
468DEFINE_CAST(DEVICE, Device);
469DEFINE_CAST(MOUNT, Mount);
470DEFINE_CAST(AUTOMOUNT, Automount);
07b0b134 471DEFINE_CAST(SWAP, Swap);
e821075a 472DEFINE_CAST(TIMER, Timer);
01f78473 473DEFINE_CAST(PATH, Path);
a016b922 474DEFINE_CAST(SLICE, Slice);
6c12b52e 475DEFINE_CAST(SCOPE, Scope);
87f0e418 476
7d17cfbc 477Unit *unit_new(Manager *m, size_t size);
87f0e418
LP
478void unit_free(Unit *u);
479
480int unit_add_name(Unit *u, const char *name);
9e2f7c11 481
701cc384 482int unit_add_dependency(Unit *u, UnitDependency d, Unit *other, bool add_reference);
2c966c03
LP
483int unit_add_two_dependencies(Unit *u, UnitDependency d, UnitDependency e, Unit *other, bool add_reference);
484
701cc384 485int unit_add_dependency_by_name(Unit *u, UnitDependency d, const char *name, const char *filename, bool add_reference);
2c966c03
LP
486int unit_add_two_dependencies_by_name(Unit *u, UnitDependency d, UnitDependency e, const char *name, const char *path, bool add_reference);
487
701cc384 488int unit_add_dependency_by_name_inverse(Unit *u, UnitDependency d, const char *name, const char *filename, bool add_reference);
2c966c03 489int unit_add_two_dependencies_by_name_inverse(Unit *u, UnitDependency d, UnitDependency e, const char *name, const char *path, bool add_reference);
0ae97ec1 490
23a177ef
LP
491int unit_add_exec_dependencies(Unit *u, ExecContext *c);
492
0ae97ec1 493int unit_choose_id(Unit *u, const char *name);
f50e0a01 494int unit_set_description(Unit *u, const char *description);
87f0e418 495
701cc384
LP
496bool unit_check_gc(Unit *u);
497
87f0e418 498void unit_add_to_load_queue(Unit *u);
c1e1601e 499void unit_add_to_dbus_queue(Unit *u);
23a177ef 500void unit_add_to_cleanup_queue(Unit *u);
701cc384 501void unit_add_to_gc_queue(Unit *u);
87f0e418
LP
502
503int unit_merge(Unit *u, Unit *other);
23a177ef
LP
504int unit_merge_by_name(Unit *u, const char *other);
505
44a6b1b6 506Unit *unit_follow_merge(Unit *u) _pure_;
87f0e418 507
e537352b
LP
508int unit_load_fragment_and_dropin(Unit *u);
509int unit_load_fragment_and_dropin_optional(Unit *u);
87f0e418
LP
510int unit_load(Unit *unit);
511
a016b922
LP
512int unit_add_default_slice(Unit *u);
513
44a6b1b6 514const char *unit_description(Unit *u) _pure_;
87f0e418 515
f278026d
LP
516bool unit_has_name(Unit *u, const char *name);
517
87f0e418
LP
518UnitActiveState unit_active_state(Unit *u);
519
10a94420
LP
520const char* unit_sub_state_to_string(Unit *u);
521
87f0e418
LP
522void unit_dump(Unit *u, FILE *f, const char *prefix);
523
44a6b1b6
ZJS
524bool unit_can_reload(Unit *u) _pure_;
525bool unit_can_start(Unit *u) _pure_;
526bool unit_can_isolate(Unit *u) _pure_;
87f0e418
LP
527
528int unit_start(Unit *u);
529int unit_stop(Unit *u);
530int unit_reload(Unit *u);
531
718db961
LP
532int unit_kill(Unit *u, KillWho w, int signo, sd_bus_error *error);
533int unit_kill_common(Unit *u, KillWho who, int signo, pid_t main_pid, pid_t control_pid, sd_bus_error *error);
8a0867d6 534
e2f3b44c 535void unit_notify(Unit *u, UnitActiveState os, UnitActiveState ns, bool reload_success);
87f0e418 536
87f0e418
LP
537int unit_watch_pid(Unit *u, pid_t pid);
538void unit_unwatch_pid(Unit *u, pid_t pid);
539
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_;
6b78f9b4 552int unit_serialize(Unit *u, FILE *f, FDSet *fds, bool serialize_jobs);
44b601bc 553void unit_serialize_item_format(Unit *u, FILE *f, const char *key, const char *value, ...) _printf_(4,5);
a16e1123
LP
554void unit_serialize_item(Unit *u, FILE *f, const char *key, const char *value);
555int unit_deserialize(Unit *u, FILE *f, FDSet *fds);
556
6e2ef85b
LP
557int unit_add_node_link(Unit *u, const char *what, bool wants);
558
cca098b0
LP
559int unit_coldplug(Unit *u);
560
44b601bc 561void unit_status_printf(Unit *u, const char *status, const char *unit_status_msg_format) _printf_(3, 0);
9e58ff9c 562
45fb0699
LP
563bool unit_need_daemon_reload(Unit *u);
564
fdf20a31 565void unit_reset_failed(Unit *u);
5632e374 566
a7f241db 567Unit *unit_following(Unit *u);
eeaedb7c 568int unit_following_set(Unit *u, Set **s);
a7f241db 569
9444b1f2
LP
570const char *unit_slice_name(Unit *u);
571
44a6b1b6
ZJS
572bool unit_stop_pending(Unit *u) _pure_;
573bool unit_inactive_or_pending(Unit *u) _pure_;
31afa0a4 574bool unit_active_or_pending(Unit *u);
18ffdfda 575
bba34eed
LP
576int unit_add_default_target_dependency(Unit *u, Unit *target);
577
41f9172f
LP
578char *unit_default_cgroup_path(Unit *u);
579
3ecaa09b
LP
580void unit_start_on_failure(Unit *u);
581void unit_trigger_notify(Unit *u);
c0daa706 582
a4375746
LP
583UnitFileState unit_get_unit_file_state(Unit *u);
584
57020a3a
LP
585Unit* unit_ref_set(UnitRef *ref, Unit *u);
586void unit_ref_unset(UnitRef *ref);
587
588#define UNIT_DEREF(ref) ((ref).unit)
9444b1f2 589#define UNIT_ISSET(ref) (!!(ref).unit)
57020a3a 590
cba6e062 591int unit_exec_context_defaults(Unit *u, ExecContext *c);
e06c73cc 592
44a6b1b6 593ExecContext *unit_get_exec_context(Unit *u) _pure_;
718db961 594KillContext *unit_get_kill_context(Unit *u) _pure_;
4ad49000 595CGroupContext *unit_get_cgroup_context(Unit *u) _pure_;
613b411c
LP
596ExecRuntime *unit_get_exec_runtime(Unit *u) _pure_;
597
598int unit_setup_exec_runtime(Unit *u);
3ef63c31 599
8e2af478 600int unit_write_drop_in(Unit *u, UnitSetPropertiesMode mode, const char *name, const char *data);
44b601bc 601int unit_write_drop_in_format(Unit *u, UnitSetPropertiesMode mode, const char *name, const char *format, ...) _printf_(4,5);
b9ec9359
LP
602
603int unit_write_drop_in_private(Unit *u, UnitSetPropertiesMode mode, const char *name, const char *data);
44b601bc 604int unit_write_drop_in_private_format(Unit *u, UnitSetPropertiesMode mode, const char *name, const char *format, ...) _printf_(4,5);
b9ec9359 605
8e2af478 606int unit_remove_drop_in(Unit *u, UnitSetPropertiesMode mode, const char *name);
71645aca 607
cd2086fe
LP
608int unit_kill_context(Unit *u, KillContext *c, bool sigkill, pid_t main_pid, pid_t control_pid, bool main_pid_alien);
609
c2756a68
LP
610int unit_make_transient(Unit *u);
611
a57f7e2c
LP
612int unit_require_mounts_for(Unit *u, const char *path);
613
44a6b1b6
ZJS
614const char *unit_active_state_to_string(UnitActiveState i) _const_;
615UnitActiveState unit_active_state_from_string(const char *s) _pure_;
94f04347 616
44a6b1b6
ZJS
617const char *unit_dependency_to_string(UnitDependency i) _const_;
618UnitDependency unit_dependency_from_string(const char *s) _pure_;
fdf9f9bb 619
e8e581bf
ZJS
620/* Macros which append UNIT= or USER_UNIT= to the message */
621
bbc9006e 622#define log_full_unit(level, unit, ...) log_meta_object(level, __FILE__, __LINE__, __func__, getpid() == 1 ? "UNIT=" : "USER_UNIT=", unit, __VA_ARGS__)
fdf9f9bb
ZJS
623#define log_debug_unit(unit, ...) log_full_unit(LOG_DEBUG, unit, __VA_ARGS__)
624#define log_info_unit(unit, ...) log_full_unit(LOG_INFO, unit, __VA_ARGS__)
625#define log_notice_unit(unit, ...) log_full_unit(LOG_NOTICE, unit, __VA_ARGS__)
626#define log_warning_unit(unit, ...) log_full_unit(LOG_WARNING, unit, __VA_ARGS__)
627#define log_error_unit(unit, ...) log_full_unit(LOG_ERR, unit, __VA_ARGS__)
bbc9006e
MT
628
629#define log_struct_unit(level, unit, ...) log_struct(level, getpid() == 1 ? "UNIT=%s" : "USER_UNIT=%s", unit, __VA_ARGS__)