]> git.ipfire.org Git - people/ms/systemd.git/blame - unit.h
systemctl: show sub state along active state
[people/ms/systemd.git] / unit.h
CommitLineData
87f0e418
LP
1/*-*- Mode: C; c-basic-offset: 8 -*-*/
2
3#ifndef foounithfoo
4#define foounithfoo
5
a7334b09
LP
6/***
7 This file is part of systemd.
8
9 Copyright 2010 Lennart Poettering
10
11 systemd is free software; you can redistribute it and/or modify it
12 under the terms of the GNU General Public License as published by
13 the Free Software Foundation; either version 2 of the License, or
14 (at your option) any later version.
15
16 systemd is distributed in the hope that it will be useful, but
17 WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 General Public License for more details.
20
21 You should have received a copy of the GNU General Public License
22 along with systemd; If not, see <http://www.gnu.org/licenses/>.
23***/
24
87f0e418
LP
25#include <stdbool.h>
26#include <stdlib.h>
27
28typedef union Unit Unit;
29typedef struct Meta Meta;
30typedef struct UnitVTable UnitVTable;
31typedef enum UnitType UnitType;
32typedef enum UnitLoadState UnitLoadState;
33typedef enum UnitActiveState UnitActiveState;
34typedef enum UnitDependency UnitDependency;
35
87f0e418
LP
36#include "set.h"
37#include "util.h"
38#include "list.h"
39#include "socket-util.h"
40#include "execute.h"
87f0e418 41
b5ea5d95 42#define UNIT_NAME_MAX 128
87f0e418
LP
43#define DEFAULT_TIMEOUT_USEC (20*USEC_PER_SEC)
44#define DEFAULT_RESTART_USEC (100*USEC_PER_MSEC)
45
50159e6a
LP
46typedef enum KillMode {
47 KILL_CONTROL_GROUP = 0,
48 KILL_PROCESS_GROUP,
49 KILL_PROCESS,
80876c20 50 KILL_NONE,
50159e6a
LP
51 _KILL_MODE_MAX,
52 _KILL_MODE_INVALID = -1
53} KillMode;
54
87f0e418
LP
55enum UnitType {
56 UNIT_SERVICE = 0,
57 UNIT_TIMER,
58 UNIT_SOCKET,
59 UNIT_TARGET,
60 UNIT_DEVICE,
61 UNIT_MOUNT,
62 UNIT_AUTOMOUNT,
63 UNIT_SNAPSHOT,
64 _UNIT_TYPE_MAX,
50159e6a 65 _UNIT_TYPE_INVALID = -1
87f0e418
LP
66};
67
68enum UnitLoadState {
69 UNIT_STUB,
70 UNIT_LOADED,
71 UNIT_FAILED,
23a177ef 72 UNIT_MERGED,
94f04347
LP
73 _UNIT_LOAD_STATE_MAX,
74 _UNIT_LOAD_STATE_INVALID = -1
87f0e418
LP
75};
76
77enum UnitActiveState {
78 UNIT_ACTIVE,
79 UNIT_ACTIVE_RELOADING,
80 UNIT_INACTIVE,
81 UNIT_ACTIVATING,
82 UNIT_DEACTIVATING,
94f04347
LP
83 _UNIT_ACTIVE_STATE_MAX,
84 _UNIT_ACTIVE_STATE_INVALID = -1
87f0e418
LP
85};
86
87static inline bool UNIT_IS_ACTIVE_OR_RELOADING(UnitActiveState t) {
88 return t == UNIT_ACTIVE || t == UNIT_ACTIVE_RELOADING;
89}
90
91static inline bool UNIT_IS_ACTIVE_OR_ACTIVATING(UnitActiveState t) {
92 return t == UNIT_ACTIVE || t == UNIT_ACTIVATING || t == UNIT_ACTIVE_RELOADING;
93}
94
95static inline bool UNIT_IS_INACTIVE_OR_DEACTIVATING(UnitActiveState t) {
96 return t == UNIT_INACTIVE || t == UNIT_DEACTIVATING;
97}
98
99enum UnitDependency {
100 /* Positive dependencies */
101 UNIT_REQUIRES,
102 UNIT_SOFT_REQUIRES,
103 UNIT_WANTS,
104 UNIT_REQUISITE,
105 UNIT_SOFT_REQUISITE,
106
107 /* Inverse of the above */
108 UNIT_REQUIRED_BY, /* inverse of 'requires' and 'requisite' is 'required_by' */
109 UNIT_SOFT_REQUIRED_BY, /* inverse of 'soft_requires' and 'soft_requisite' is 'soft_required_by' */
110 UNIT_WANTED_BY, /* inverse of 'wants' */
111
112 /* Negative dependencies */
113 UNIT_CONFLICTS, /* inverse of 'conflicts' is 'conflicts' */
114
115 /* Order */
116 UNIT_BEFORE, /* inverse of before is after and vice versa */
117 UNIT_AFTER,
118
119 _UNIT_DEPENDENCY_MAX,
120 _UNIT_DEPENDENCY_INVALID = -1
121};
122
ef734fd6
LP
123#include "manager.h"
124#include "job.h"
8e274523 125#include "cgroup.h"
ef734fd6 126
87f0e418
LP
127struct Meta {
128 Manager *manager;
23a177ef 129
87f0e418
LP
130 UnitType type;
131 UnitLoadState load_state;
23a177ef 132 Unit *merged_into;
87f0e418
LP
133
134 char *id; /* One name is special because we use it for identification. Points to an entry in the names set */
135
136 Set *names;
137 Set *dependencies[_UNIT_DEPENDENCY_MAX];
138
139 char *description;
6be1e7d5 140 char *fragment_path; /* if loaded from a config file this is the primary path to it */
87f0e418
LP
141
142 /* If there is something to do with this unit, then this is
143 * the job for it */
144 Job *job;
145
146 bool in_load_queue:1;
c1e1601e 147 bool in_dbus_queue:1;
23a177ef 148 bool in_cleanup_queue:1;
c1e1601e 149 bool sent_dbus_new_signal:1;
87f0e418 150
f3bff0eb
LP
151 /* If we go down, pull down everything that depends on us, too */
152 bool recursive_stop;
153
154 /* Garbage collect us we nobody wants or requires us anymore */
155 bool stop_when_unneeded;
156
87f0e418
LP
157 usec_t active_enter_timestamp;
158 usec_t active_exit_timestamp;
159
8e274523
LP
160 /* Counterparts in the cgroup filesystem */
161 CGroupBonding *cgroup_bondings;
162
87f0e418
LP
163 /* Load queue */
164 LIST_FIELDS(Meta, load_queue);
ef734fd6
LP
165
166 /* Per type list */
167 LIST_FIELDS(Meta, units_per_type);
c1e1601e
LP
168
169 /* D-Bus queue */
170 LIST_FIELDS(Meta, dbus_queue);
23a177ef
LP
171
172 /* Cleanup queue */
173 LIST_FIELDS(Meta, cleanup_queue);
87f0e418
LP
174};
175
176#include "service.h"
177#include "timer.h"
178#include "socket.h"
179#include "target.h"
180#include "device.h"
181#include "mount.h"
182#include "automount.h"
183#include "snapshot.h"
184
185union Unit {
186 Meta meta;
187 Service service;
188 Timer timer;
189 Socket socket;
190 Target target;
191 Device device;
192 Mount mount;
193 Automount automount;
194 Snapshot snapshot;
195};
196
197struct UnitVTable {
198 const char *suffix;
199
e537352b
LP
200 /* Can units of this type have multiple names? */
201 bool no_alias:1;
202
203 /* If true units of this types can never have "Requires"
204 * dependencies, because state changes can only be observed,
205 * not triggered */
206 bool refuse_requires:1;
207
208 /* This should reset all type-specific variables. This should
209 * not allocate memory, and is either called with 0
210 * initialized data, or with data left from done() */
211 void (*init)(Unit *u);
212
213 /* Actually load data from disk. This may fail, and should set
214 * load_state to UNIT_LOADED, UNIT_MERGED or leave it at
215 * UNIT_STUB if no configuration could be found. */
216 int (*load)(Unit *u);
217
218 /* This should free all type-specific variables. It should be
219 * idempotent. There's no need to reset variables that deal
220 * with dynamic memory/resources. */
87f0e418 221 void (*done)(Unit *u);
e537352b
LP
222
223 /* If a a lot of units got created via enumerate(), this is
224 * where to actually set the state and call unit_notify(). */
f50e0a01 225 int (*coldplug)(Unit *u);
87f0e418
LP
226
227 void (*dump)(Unit *u, FILE *f, const char *prefix);
228
229 int (*start)(Unit *u);
230 int (*stop)(Unit *u);
231 int (*reload)(Unit *u);
232
233 bool (*can_reload)(Unit *u);
234
235 /* Boils down the more complex internal state of this unit to
236 * a simpler one that the engine can understand */
237 UnitActiveState (*active_state)(Unit *u);
238
10a94420
LP
239 /* Returns the substate specific to this unit type as
240 * string. This is purely information so that we can give the
241 * user a more finegrained explanation in which actual state a
242 * unit is in. */
243 const char* (*sub_state_to_string)(Unit *u);
244
acbb0225 245 void (*fd_event)(Unit *u, int fd, uint32_t events, Watch *w);
87f0e418 246 void (*sigchld_event)(Unit *u, pid_t pid, int code, int status);
acbb0225 247 void (*timer_event)(Unit *u, uint64_t n_elapsed, Watch *w);
7824bbeb 248
8e274523
LP
249 void (*cgroup_notify_empty)(Unit *u);
250
f50e0a01
LP
251 /* This is called for each unit type and should be used to
252 * enumerate existing devices and load them. However,
253 * everything that is loaded here should still stay in
254 * inactive state. It is the job of the coldplug() call above
255 * to put the units into the initial state. */
7824bbeb 256 int (*enumerate)(Manager *m);
f50e0a01
LP
257
258 /* Type specific cleanups. */
7824bbeb 259 void (*shutdown)(Manager *m);
87f0e418
LP
260};
261
262extern const UnitVTable * const unit_vtable[_UNIT_TYPE_MAX];
263
264#define UNIT_VTABLE(u) unit_vtable[(u)->meta.type]
265
266/* For casting a unit into the various unit types */
267#define DEFINE_CAST(UPPERCASE, MixedCase) \
268 static inline MixedCase* UPPERCASE(Unit *u) { \
269 if (!u || u->meta.type != UNIT_##UPPERCASE) \
270 return NULL; \
271 \
272 return (MixedCase*) u; \
273 }
274
275/* For casting the various unit types into a unit */
276#define UNIT(u) ((Unit*) (u))
277
278DEFINE_CAST(SOCKET, Socket);
279DEFINE_CAST(TIMER, Timer);
280DEFINE_CAST(SERVICE, Service);
281DEFINE_CAST(TARGET, Target);
282DEFINE_CAST(DEVICE, Device);
283DEFINE_CAST(MOUNT, Mount);
284DEFINE_CAST(AUTOMOUNT, Automount);
285DEFINE_CAST(SNAPSHOT, Snapshot);
286
287UnitType unit_name_to_type(const char *n);
288bool unit_name_is_valid(const char *n);
289char *unit_name_change_suffix(const char *n, const char *suffix);
290
291Unit *unit_new(Manager *m);
292void unit_free(Unit *u);
293
294int unit_add_name(Unit *u, const char *name);
295int unit_add_dependency(Unit *u, UnitDependency d, Unit *other);
09b6b09f 296int unit_add_dependency_by_name(Unit *u, UnitDependency d, const char *name);
bd77d0fc 297int unit_add_dependency_by_name_inverse(Unit *u, UnitDependency d, const char *name);
0ae97ec1 298
23a177ef
LP
299int unit_add_exec_dependencies(Unit *u, ExecContext *c);
300
8e274523
LP
301int unit_add_cgroup(Unit *u, CGroupBonding *b);
302int unit_add_cgroup_from_text(Unit *u, const char *name);
303int unit_add_default_cgroup(Unit *u);
304CGroupBonding* unit_get_default_cgroup(Unit *u);
305
0ae97ec1 306int unit_choose_id(Unit *u, const char *name);
f50e0a01 307int unit_set_description(Unit *u, const char *description);
87f0e418
LP
308
309void unit_add_to_load_queue(Unit *u);
c1e1601e 310void unit_add_to_dbus_queue(Unit *u);
23a177ef 311void unit_add_to_cleanup_queue(Unit *u);
87f0e418
LP
312
313int unit_merge(Unit *u, Unit *other);
23a177ef
LP
314int unit_merge_by_name(Unit *u, const char *other);
315
316Unit *unit_follow_merge(Unit *u);
87f0e418 317
e537352b
LP
318int unit_load_fragment_and_dropin(Unit *u);
319int unit_load_fragment_and_dropin_optional(Unit *u);
87f0e418
LP
320int unit_load(Unit *unit);
321
322const char* unit_id(Unit *u);
323const char *unit_description(Unit *u);
324
f278026d
LP
325bool unit_has_name(Unit *u, const char *name);
326
87f0e418
LP
327UnitActiveState unit_active_state(Unit *u);
328
10a94420
LP
329const char* unit_sub_state_to_string(Unit *u);
330
87f0e418
LP
331void unit_dump(Unit *u, FILE *f, const char *prefix);
332
333bool unit_can_reload(Unit *u);
334bool unit_can_start(Unit *u);
335
336int unit_start(Unit *u);
337int unit_stop(Unit *u);
338int unit_reload(Unit *u);
339
340void unit_notify(Unit *u, UnitActiveState os, UnitActiveState ns);
341
acbb0225
LP
342int unit_watch_fd(Unit *u, int fd, uint32_t events, Watch *w);
343void unit_unwatch_fd(Unit *u, Watch *w);
87f0e418
LP
344
345int unit_watch_pid(Unit *u, pid_t pid);
346void unit_unwatch_pid(Unit *u, pid_t pid);
347
acbb0225
LP
348int unit_watch_timer(Unit *u, usec_t delay, Watch *w);
349void unit_unwatch_timer(Unit *u, Watch *w);
87f0e418
LP
350
351bool unit_job_is_applicable(Unit *u, JobType j);
352
0301abf4
LP
353int set_unit_path(const char *p);
354
2e478a46 355char *unit_name_escape_path(const char *path, const char *suffix);
0301abf4 356
50159e6a
LP
357char *unit_dbus_path(Unit *u);
358
f6ff8c29
LP
359int unit_load_related_unit(Unit *u, const char *type, Unit **_found);
360
94f04347
LP
361const char *unit_type_to_string(UnitType i);
362UnitType unit_type_from_string(const char *s);
363
364const char *unit_load_state_to_string(UnitLoadState i);
365UnitLoadState unit_load_state_from_string(const char *s);
366
367const char *unit_active_state_to_string(UnitActiveState i);
368UnitActiveState unit_active_state_from_string(const char *s);
369
370const char *unit_dependency_to_string(UnitDependency i);
371UnitDependency unit_dependency_from_string(const char *s);
372
50159e6a
LP
373const char *kill_mode_to_string(KillMode k);
374KillMode kill_mode_from_string(const char *s);
ea430986 375
87f0e418 376#endif