]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/core/target.c
tree-wide: remove Lennart's copyright lines
[thirdparty/systemd.git] / src / core / target.c
CommitLineData
53e1b683 1/* SPDX-License-Identifier: LGPL-2.1+ */
a7334b09 2
4139c1b2 3#include "dbus-target.h"
07630cea 4#include "log.h"
514f4ef5 5#include "special.h"
07630cea 6#include "string-util.h"
b2bb3dbe 7#include "unit-name.h"
07630cea
LP
8#include "unit.h"
9#include "target.h"
c22cbe26 10
fa068367
LP
11static const UnitActiveState state_translation_table[_TARGET_STATE_MAX] = {
12 [TARGET_DEAD] = UNIT_INACTIVE,
13 [TARGET_ACTIVE] = UNIT_ACTIVE
14};
15
fa068367
LP
16static void target_set_state(Target *t, TargetState state) {
17 TargetState old_state;
18 assert(t);
19
20 old_state = t->state;
21 t->state = state;
22
e537352b 23 if (state != old_state)
40d50879 24 log_debug("%s changed %s -> %s",
1124fe6f 25 UNIT(t)->id,
a16e1123
LP
26 target_state_to_string(old_state),
27 target_state_to_string(state));
c22cbe26 28
2ad2e41a 29 unit_notify(UNIT(t), state_translation_table[old_state], state_translation_table[state], 0);
fa068367
LP
30}
31
a40eb732 32static int target_add_default_dependencies(Target *t) {
1850161f 33
21256a2b
LP
34 static const UnitDependency deps[] = {
35 UNIT_REQUIRES,
21256a2b 36 UNIT_REQUISITE,
21256a2b 37 UNIT_WANTS,
1850161f
LP
38 UNIT_BINDS_TO,
39 UNIT_PART_OF
21256a2b
LP
40 };
41
bba34eed 42 int r;
21256a2b 43 unsigned k;
bba34eed 44
98bc2000 45 assert(t);
a40eb732 46
41c237af
IP
47 if (!UNIT(t)->default_dependencies)
48 return 0;
49
eef85c4a
LP
50 /* Imply ordering for requirement dependencies on target units. Note that when the user created a contradicting
51 * ordering manually we won't add anything in here to make sure we don't create a loop. */
bba34eed 52
eef85c4a
LP
53 for (k = 0; k < ELEMENTSOF(deps); k++) {
54 Unit *other;
55 Iterator i;
56 void *v;
57
58 HASHMAP_FOREACH_KEY(v, other, UNIT(t)->dependencies[deps[k]], i) {
1850161f
LP
59 r = unit_add_default_target_dependency(other, UNIT(t));
60 if (r < 0)
21256a2b 61 return r;
1850161f 62 }
eef85c4a 63 }
bba34eed 64
33e28180
LP
65 if (unit_has_name(UNIT(t), SPECIAL_SHUTDOWN_TARGET))
66 return 0;
67
b401e1fb 68 /* Make sure targets are unloaded on shutdown */
eef85c4a 69 return unit_add_two_dependencies_by_name(UNIT(t), UNIT_BEFORE, UNIT_CONFLICTS, SPECIAL_SHUTDOWN_TARGET, NULL, true, UNIT_DEPENDENCY_DEFAULT);
a40eb732
LP
70}
71
72static int target_load(Unit *u) {
73 Target *t = TARGET(u);
74 int r;
75
76 assert(t);
77
1850161f
LP
78 r = unit_load_fragment_and_dropin(u);
79 if (r < 0)
a40eb732
LP
80 return r;
81
82 /* This is a new unit? Then let's add in some extras */
41c237af 83 if (u->load_state == UNIT_LOADED) {
1850161f
LP
84 r = target_add_default_dependencies(t);
85 if (r < 0)
86 return r;
a40eb732
LP
87 }
88
89 return 0;
90}
91
be847e82 92static int target_coldplug(Unit *u) {
a16e1123
LP
93 Target *t = TARGET(u);
94
95 assert(t);
96 assert(t->state == TARGET_DEAD);
97
98 if (t->deserialized_state != t->state)
99 target_set_state(t, t->deserialized_state);
100
101 return 0;
102}
103
104static void target_dump(Unit *u, FILE *f, const char *prefix) {
105 Target *t = TARGET(u);
106
107 assert(t);
108 assert(f);
109
110 fprintf(f,
111 "%sTarget State: %s\n",
112 prefix, target_state_to_string(t->state));
113}
114
fa068367
LP
115static int target_start(Unit *u) {
116 Target *t = TARGET(u);
4b58153d 117 int r;
fa068367
LP
118
119 assert(t);
120 assert(t->state == TARGET_DEAD);
121
4b58153d
LP
122 r = unit_acquire_invocation_id(u);
123 if (r < 0)
124 return r;
125
fa068367 126 target_set_state(t, TARGET_ACTIVE);
82a2b6bb 127 return 1;
fa068367 128}
c22cbe26 129
fa068367
LP
130static int target_stop(Unit *u) {
131 Target *t = TARGET(u);
132
133 assert(t);
134 assert(t->state == TARGET_ACTIVE);
135
136 target_set_state(t, TARGET_DEAD);
82a2b6bb 137 return 1;
c22cbe26
LP
138}
139
a16e1123
LP
140static int target_serialize(Unit *u, FILE *f, FDSet *fds) {
141 Target *s = TARGET(u);
142
143 assert(s);
144 assert(f);
145 assert(fds);
146
147 unit_serialize_item(u, f, "state", target_state_to_string(s->state));
148 return 0;
149}
150
151static int target_deserialize_item(Unit *u, const char *key, const char *value, FDSet *fds) {
152 Target *s = TARGET(u);
153
154 assert(u);
155 assert(key);
156 assert(value);
157 assert(fds);
158
159 if (streq(key, "state")) {
160 TargetState state;
161
1850161f
LP
162 state = target_state_from_string(value);
163 if (state < 0)
a16e1123
LP
164 log_debug("Failed to parse state value %s", value);
165 else
166 s->deserialized_state = state;
167
168 } else
169 log_debug("Unknown serialization key '%s'", key);
170
171 return 0;
172}
173
44a6b1b6 174_pure_ static UnitActiveState target_active_state(Unit *u) {
fa068367
LP
175 assert(u);
176
177 return state_translation_table[TARGET(u)->state];
c22cbe26
LP
178}
179
44a6b1b6 180_pure_ static const char *target_sub_state_to_string(Unit *u) {
10a94420
LP
181 assert(u);
182
a16e1123 183 return target_state_to_string(TARGET(u)->state);
10a94420
LP
184}
185
87f0e418 186const UnitVTable target_vtable = {
7d17cfbc 187 .object_size = sizeof(Target),
718db961 188
f975e971
LP
189 .sections =
190 "Unit\0"
191 "Target\0"
192 "Install\0",
c22cbe26 193
a40eb732 194 .load = target_load,
a16e1123 195 .coldplug = target_coldplug,
fa068367
LP
196
197 .dump = target_dump,
198
199 .start = target_start,
200 .stop = target_stop,
c22cbe26 201
a16e1123
LP
202 .serialize = target_serialize,
203 .deserialize_item = target_deserialize_item,
204
10a94420 205 .active_state = target_active_state,
4139c1b2
LP
206 .sub_state_to_string = target_sub_state_to_string,
207
718db961 208 .bus_vtable = bus_target_vtable,
c6918296
MS
209
210 .status_message_formats = {
211 .finished_start_job = {
212 [JOB_DONE] = "Reached target %s.",
c6918296
MS
213 },
214 .finished_stop_job = {
215 [JOB_DONE] = "Stopped target %s.",
216 },
217 },
c22cbe26 218};