]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/core/service.c
Merge pull request #12366 from lkundrak/lr/olpc-xo-175-keyboard
[thirdparty/systemd.git] / src / core / service.c
CommitLineData
53e1b683 1/* SPDX-License-Identifier: LGPL-2.1+ */
a7334b09 2
5cb5a6ff 3#include <errno.h>
034c6ed7 4#include <signal.h>
ca78ad1d
ZJS
5#include <sys/stat.h>
6#include <sys/types.h>
2c4104f0 7#include <unistd.h>
5cb5a6ff 8
7a0019d3
LP
9#include "sd-messages.h"
10
b5efdb8a 11#include "alloc-util.h"
574634bc 12#include "async.h"
4f5dd394
LP
13#include "bus-error.h"
14#include "bus-kernel.h"
15#include "bus-util.h"
4139c1b2 16#include "dbus-service.h"
6fcbec6f 17#include "dbus-unit.h"
f6a6225e 18#include "def.h"
4d1a6904 19#include "env-util.h"
4f5dd394
LP
20#include "escape.h"
21#include "exit-status.h"
3ffd4af2 22#include "fd-util.h"
a5c32cff 23#include "fileio.h"
f97b34a6 24#include "format-util.h"
f4f15635 25#include "fs-util.h"
4f5dd394
LP
26#include "load-dropin.h"
27#include "load-fragment.h"
28#include "log.h"
29#include "manager.h"
6bedfcbb 30#include "parse-util.h"
4f5dd394 31#include "path-util.h"
0b452006 32#include "process-util.h"
d68c645b 33#include "serialize.h"
3ffd4af2 34#include "service.h"
24882e06 35#include "signal-util.h"
4f5dd394 36#include "special.h"
e266c068 37#include "stdio-util.h"
8b43440b 38#include "string-table.h"
07630cea 39#include "string-util.h"
4f5dd394
LP
40#include "strv.h"
41#include "unit-name.h"
4f5dd394
LP
42#include "unit.h"
43#include "utf8.h"
44#include "util.h"
034c6ed7 45
acbb0225 46static const UnitActiveState state_translation_table[_SERVICE_STATE_MAX] = {
87f0e418
LP
47 [SERVICE_DEAD] = UNIT_INACTIVE,
48 [SERVICE_START_PRE] = UNIT_ACTIVATING,
49 [SERVICE_START] = UNIT_ACTIVATING,
50 [SERVICE_START_POST] = UNIT_ACTIVATING,
51 [SERVICE_RUNNING] = UNIT_ACTIVE,
80876c20 52 [SERVICE_EXITED] = UNIT_ACTIVE,
032ff4af 53 [SERVICE_RELOAD] = UNIT_RELOADING,
87f0e418 54 [SERVICE_STOP] = UNIT_DEACTIVATING,
c87700a1 55 [SERVICE_STOP_WATCHDOG] = UNIT_DEACTIVATING,
87f0e418
LP
56 [SERVICE_STOP_SIGTERM] = UNIT_DEACTIVATING,
57 [SERVICE_STOP_SIGKILL] = UNIT_DEACTIVATING,
58 [SERVICE_STOP_POST] = UNIT_DEACTIVATING,
59 [SERVICE_FINAL_SIGTERM] = UNIT_DEACTIVATING,
60 [SERVICE_FINAL_SIGKILL] = UNIT_DEACTIVATING,
fdf20a31 61 [SERVICE_FAILED] = UNIT_FAILED,
6124958c 62 [SERVICE_AUTO_RESTART] = UNIT_ACTIVATING
034c6ed7 63};
5cb5a6ff 64
e056b01d
LP
65/* For Type=idle we never want to delay any other jobs, hence we
66 * consider idle jobs active as soon as we start working on them */
67static const UnitActiveState state_translation_table_idle[_SERVICE_STATE_MAX] = {
68 [SERVICE_DEAD] = UNIT_INACTIVE,
69 [SERVICE_START_PRE] = UNIT_ACTIVE,
70 [SERVICE_START] = UNIT_ACTIVE,
71 [SERVICE_START_POST] = UNIT_ACTIVE,
72 [SERVICE_RUNNING] = UNIT_ACTIVE,
73 [SERVICE_EXITED] = UNIT_ACTIVE,
74 [SERVICE_RELOAD] = UNIT_RELOADING,
75 [SERVICE_STOP] = UNIT_DEACTIVATING,
c87700a1 76 [SERVICE_STOP_WATCHDOG] = UNIT_DEACTIVATING,
e056b01d
LP
77 [SERVICE_STOP_SIGTERM] = UNIT_DEACTIVATING,
78 [SERVICE_STOP_SIGKILL] = UNIT_DEACTIVATING,
79 [SERVICE_STOP_POST] = UNIT_DEACTIVATING,
80 [SERVICE_FINAL_SIGTERM] = UNIT_DEACTIVATING,
81 [SERVICE_FINAL_SIGKILL] = UNIT_DEACTIVATING,
82 [SERVICE_FAILED] = UNIT_FAILED,
83 [SERVICE_AUTO_RESTART] = UNIT_ACTIVATING
84};
85
5686391b 86static int service_dispatch_inotify_io(sd_event_source *source, int fd, uint32_t events, void *userdata);
718db961
LP
87static int service_dispatch_timer(sd_event_source *source, usec_t usec, void *userdata);
88static int service_dispatch_watchdog(sd_event_source *source, usec_t usec, void *userdata);
5686391b 89static int service_dispatch_exec_io(sd_event_source *source, int fd, uint32_t events, void *userdata);
718db961 90
842129f5 91static void service_enter_signal(Service *s, ServiceState state, ServiceResult f);
308d72dc 92static void service_enter_reload_by_notify(Service *s);
842129f5 93
a16e1123
LP
94static void service_init(Unit *u) {
95 Service *s = SERVICE(u);
96
97 assert(u);
ac155bb8 98 assert(u->load_state == UNIT_STUB);
a16e1123 99
1f19a534
OS
100 s->timeout_start_usec = u->manager->default_timeout_start_usec;
101 s->timeout_stop_usec = u->manager->default_timeout_stop_usec;
dc653bf4
JK
102 s->timeout_abort_usec = u->manager->default_timeout_abort_usec;
103 s->timeout_abort_set = u->manager->default_timeout_abort_set;
1f19a534 104 s->restart_usec = u->manager->default_restart_usec;
36c16a7c 105 s->runtime_max_usec = USEC_INFINITY;
0b86feac 106 s->type = _SERVICE_TYPE_INVALID;
a16e1123 107 s->socket_fd = -1;
a34ceba6 108 s->stdin_fd = s->stdout_fd = s->stderr_fd = -1;
3185a36b 109 s->guess_main_pid = true;
a16e1123 110
a16e1123 111 s->control_command_id = _SERVICE_EXEC_COMMAND_INVALID;
00f5ad93
LP
112
113 s->exec_context.keyring_mode = MANAGER_IS_SYSTEM(u->manager) ?
114 EXEC_KEYRING_PRIVATE : EXEC_KEYRING_INHERIT;
aa8c4bbf
LP
115
116 s->watchdog_original_usec = USEC_INFINITY;
afcfaa69
LP
117
118 s->oom_policy = _OOM_POLICY_INVALID;
a16e1123
LP
119}
120
5e94833f
LP
121static void service_unwatch_control_pid(Service *s) {
122 assert(s);
123
124 if (s->control_pid <= 0)
125 return;
126
127 unit_unwatch_pid(UNIT(s), s->control_pid);
128 s->control_pid = 0;
129}
130
131static void service_unwatch_main_pid(Service *s) {
132 assert(s);
133
134 if (s->main_pid <= 0)
135 return;
136
137 unit_unwatch_pid(UNIT(s), s->main_pid);
138 s->main_pid = 0;
139}
140
3e52541e
MS
141static void service_unwatch_pid_file(Service *s) {
142 if (!s->pid_file_pathspec)
143 return;
144
f2341e0a 145 log_unit_debug(UNIT(s), "Stopping watch for PID file %s", s->pid_file_pathspec->path);
718db961 146 path_spec_unwatch(s->pid_file_pathspec);
3e52541e 147 path_spec_done(s->pid_file_pathspec);
a1e58e8e 148 s->pid_file_pathspec = mfree(s->pid_file_pathspec);
3e52541e
MS
149}
150
5925dd3c
LP
151static int service_set_main_pid(Service *s, pid_t pid) {
152 assert(s);
153
154 if (pid <= 1)
155 return -EINVAL;
156
df0ff127 157 if (pid == getpid_cached())
5925dd3c
LP
158 return -EINVAL;
159
7400b9d2
LP
160 if (s->main_pid == pid && s->main_pid_known)
161 return 0;
162
163 if (s->main_pid != pid) {
164 service_unwatch_main_pid(s);
165 exec_status_start(&s->main_exec_status, pid);
166 }
41efeaec 167
6dfa5494
LP
168 s->main_pid = pid;
169 s->main_pid_known = true;
4d051546 170 s->main_pid_alien = pid_is_my_child(pid) == 0;
6dfa5494 171
4d051546 172 if (s->main_pid_alien)
f2341e0a 173 log_unit_warning(UNIT(s), "Supervising process "PID_FMT" which is not our child. We'll most likely not notice when it exits.", pid);
5925dd3c
LP
174
175 return 0;
176}
177
3e7a1f50 178void service_close_socket_fd(Service *s) {
4f2d528d
LP
179 assert(s);
180
5cc3985e 181 /* Undo the effect of service_set_socket_fd(). */
4f2d528d 182
5cc3985e 183 s->socket_fd = asynchronous_close(s->socket_fd);
6cf6bbc2 184
5cc3985e
LP
185 if (UNIT_ISSET(s->accept_socket)) {
186 socket_connection_unref(SOCKET(UNIT_DEREF(s->accept_socket)));
187 unit_ref_unset(&s->accept_socket);
188 }
6cf6bbc2
LP
189}
190
a6927d7f
MO
191static void service_stop_watchdog(Service *s) {
192 assert(s);
193
718db961 194 s->watchdog_event_source = sd_event_source_unref(s->watchdog_event_source);
842129f5 195 s->watchdog_timestamp = DUAL_TIMESTAMP_NULL;
a6927d7f
MO
196}
197
2787d83c
M
198static usec_t service_get_watchdog_usec(Service *s) {
199 assert(s);
200
201 if (s->watchdog_override_enable)
202 return s->watchdog_override_usec;
9fb1cdb4
LP
203
204 return s->watchdog_original_usec;
2787d83c
M
205}
206
842129f5 207static void service_start_watchdog(Service *s) {
2787d83c 208 usec_t watchdog_usec;
9fb1cdb4 209 int r;
bb242b7b
MO
210
211 assert(s);
212
2787d83c 213 watchdog_usec = service_get_watchdog_usec(s);
9fb1cdb4
LP
214 if (IN_SET(watchdog_usec, 0, USEC_INFINITY)) {
215 service_stop_watchdog(s);
bb242b7b 216 return;
9fb1cdb4 217 }
bb242b7b 218
718db961 219 if (s->watchdog_event_source) {
2787d83c 220 r = sd_event_source_set_time(s->watchdog_event_source, usec_add(s->watchdog_timestamp.monotonic, watchdog_usec));
718db961 221 if (r < 0) {
f2341e0a 222 log_unit_warning_errno(UNIT(s), r, "Failed to reset watchdog timer: %m");
718db961
LP
223 return;
224 }
225
842129f5 226 r = sd_event_source_set_enabled(s->watchdog_event_source, SD_EVENT_ONESHOT);
c4ef3317 227 } else {
6a0f1f6d
LP
228 r = sd_event_add_time(
229 UNIT(s)->manager->event,
230 &s->watchdog_event_source,
231 CLOCK_MONOTONIC,
2787d83c 232 usec_add(s->watchdog_timestamp.monotonic, watchdog_usec), 0,
6a0f1f6d 233 service_dispatch_watchdog, s);
c4ef3317 234 if (r < 0) {
f2341e0a 235 log_unit_warning_errno(UNIT(s), r, "Failed to add watchdog timer: %m");
c4ef3317
LP
236 return;
237 }
238
7dfbe2e3
TG
239 (void) sd_event_source_set_description(s->watchdog_event_source, "service-watchdog");
240
c4ef3317
LP
241 /* Let's process everything else which might be a sign
242 * of living before we consider a service died. */
243 r = sd_event_source_set_priority(s->watchdog_event_source, SD_EVENT_PRIORITY_IDLE);
244 }
bb242b7b 245 if (r < 0)
f2341e0a 246 log_unit_warning_errno(UNIT(s), r, "Failed to install watchdog timer: %m");
bb242b7b
MO
247}
248
ec35a7f6
LP
249static void service_extend_event_source_timeout(Service *s, sd_event_source *source, usec_t extended) {
250 usec_t current;
251 int r;
252
a327431b
DB
253 assert(s);
254
ec35a7f6
LP
255 /* Extends the specified event source timer to at least the specified time, unless it is already later
256 * anyway. */
a327431b 257
ec35a7f6
LP
258 if (!source)
259 return;
a327431b 260
ec35a7f6
LP
261 r = sd_event_source_get_time(source, &current);
262 if (r < 0) {
263 const char *desc;
264 (void) sd_event_source_get_description(s->timer_event_source, &desc);
265 log_unit_warning_errno(UNIT(s), r, "Failed to retrieve timeout time for event source '%s', ignoring: %m", strna(desc));
266 return;
267 }
a327431b 268
ec35a7f6
LP
269 if (current >= extended) /* Current timeout is already longer, ignore this. */
270 return;
a327431b 271
ec35a7f6
LP
272 r = sd_event_source_set_time(source, extended);
273 if (r < 0) {
274 const char *desc;
275 (void) sd_event_source_get_description(s->timer_event_source, &desc);
276 log_unit_warning_errno(UNIT(s), r, "Failed to set timeout time for even source '%s', ignoring %m", strna(desc));
a327431b
DB
277 }
278}
279
ec35a7f6
LP
280static void service_extend_timeout(Service *s, usec_t extend_timeout_usec) {
281 usec_t extended;
282
283 assert(s);
284
285 if (IN_SET(extend_timeout_usec, 0, USEC_INFINITY))
286 return;
287
288 extended = usec_add(now(CLOCK_MONOTONIC), extend_timeout_usec);
289
290 service_extend_event_source_timeout(s, s->timer_event_source, extended);
291 service_extend_event_source_timeout(s, s->watchdog_event_source, extended);
292}
293
a6927d7f
MO
294static void service_reset_watchdog(Service *s) {
295 assert(s);
296
297 dual_timestamp_get(&s->watchdog_timestamp);
842129f5 298 service_start_watchdog(s);
a6927d7f
MO
299}
300
95d0d8ed 301static void service_override_watchdog_timeout(Service *s, usec_t watchdog_override_usec) {
2787d83c
M
302 assert(s);
303
304 s->watchdog_override_enable = true;
305 s->watchdog_override_usec = watchdog_override_usec;
306 service_reset_watchdog(s);
307
308 log_unit_debug(UNIT(s), "watchdog_usec="USEC_FMT, s->watchdog_usec);
309 log_unit_debug(UNIT(s), "watchdog_override_usec="USEC_FMT, s->watchdog_override_usec);
310}
311
a354329f
LP
312static void service_fd_store_unlink(ServiceFDStore *fs) {
313
314 if (!fs)
315 return;
316
317 if (fs->service) {
318 assert(fs->service->n_fd_store > 0);
319 LIST_REMOVE(fd_store, fs->service->fd_store, fs);
320 fs->service->n_fd_store--;
321 }
322
323 if (fs->event_source) {
324 sd_event_source_set_enabled(fs->event_source, SD_EVENT_OFF);
325 sd_event_source_unref(fs->event_source);
326 }
327
8dd4c05b 328 free(fs->fdname);
a354329f
LP
329 safe_close(fs->fd);
330 free(fs);
331}
332
f0bfbfac
ZJS
333static void service_release_fd_store(Service *s) {
334 assert(s);
335
7eb2a8a1
LP
336 if (s->n_keep_fd_store > 0)
337 return;
338
f0bfbfac
ZJS
339 log_unit_debug(UNIT(s), "Releasing all stored fds");
340 while (s->fd_store)
341 service_fd_store_unlink(s->fd_store);
342
343 assert(s->n_fd_store == 0);
344}
345
7eb2a8a1 346static void service_release_resources(Unit *u) {
a354329f
LP
347 Service *s = SERVICE(u);
348
349 assert(s);
350
a34ceba6 351 if (!s->fd_store && s->stdin_fd < 0 && s->stdout_fd < 0 && s->stderr_fd < 0)
a354329f
LP
352 return;
353
f0bfbfac 354 log_unit_debug(u, "Releasing resources.");
a354329f 355
a34ceba6
LP
356 s->stdin_fd = safe_close(s->stdin_fd);
357 s->stdout_fd = safe_close(s->stdout_fd);
358 s->stderr_fd = safe_close(s->stderr_fd);
359
7eb2a8a1 360 service_release_fd_store(s);
a354329f
LP
361}
362
87f0e418
LP
363static void service_done(Unit *u) {
364 Service *s = SERVICE(u);
44d8db9e
LP
365
366 assert(s);
367
a1e58e8e
LP
368 s->pid_file = mfree(s->pid_file);
369 s->status_text = mfree(s->status_text);
efe6e7d3 370
e8a565cb 371 s->exec_runtime = exec_runtime_unref(s->exec_runtime, false);
e537352b 372 exec_command_free_array(s->exec_command, _SERVICE_EXEC_COMMAND_MAX);
44d8db9e 373 s->control_command = NULL;
867b3b7d 374 s->main_command = NULL;
44d8db9e 375
29206d46
LP
376 dynamic_creds_unref(&s->dynamic_creds);
377
37520c1b
LP
378 exit_status_set_free(&s->restart_prevent_status);
379 exit_status_set_free(&s->restart_force_status);
380 exit_status_set_free(&s->success_status);
96342de6 381
44d8db9e
LP
382 /* This will leak a process, but at least no memory or any of
383 * our resources */
5e94833f
LP
384 service_unwatch_main_pid(s);
385 service_unwatch_control_pid(s);
3e52541e 386 service_unwatch_pid_file(s);
44d8db9e 387
05e343b7 388 if (s->bus_name) {
ac155bb8 389 unit_unwatch_bus_name(u, s->bus_name);
a1e58e8e 390 s->bus_name = mfree(s->bus_name);
05e343b7
LP
391 }
392
d8ccf5fd
DM
393 s->bus_name_owner = mfree(s->bus_name_owner);
394
064c5938
ZJS
395 s->usb_function_descriptors = mfree(s->usb_function_descriptors);
396 s->usb_function_strings = mfree(s->usb_function_strings);
397
4f2d528d 398 service_close_socket_fd(s);
9d565427 399 s->peer = socket_peer_unref(s->peer);
4f2d528d 400
57020a3a 401 unit_ref_unset(&s->accept_socket);
f976f3f6 402
bb242b7b
MO
403 service_stop_watchdog(s);
404
718db961 405 s->timer_event_source = sd_event_source_unref(s->timer_event_source);
5686391b 406 s->exec_fd_event_source = sd_event_source_unref(s->exec_fd_event_source);
a354329f 407
7eb2a8a1 408 service_release_resources(u);
718db961
LP
409}
410
2339fc93
LP
411static int on_fd_store_io(sd_event_source *e, int fd, uint32_t revents, void *userdata) {
412 ServiceFDStore *fs = userdata;
413
414 assert(e);
415 assert(fs);
416
417 /* If we get either EPOLLHUP or EPOLLERR, it's time to remove this entry from the fd store */
16f70d63
ZJS
418 log_unit_debug(UNIT(fs->service),
419 "Received %s on stored fd %d (%s), closing.",
420 revents & EPOLLERR ? "EPOLLERR" : "EPOLLHUP",
421 fs->fd, strna(fs->fdname));
2339fc93
LP
422 service_fd_store_unlink(fs);
423 return 0;
424}
425
8dd4c05b 426static int service_add_fd_store(Service *s, int fd, const char *name) {
2339fc93
LP
427 ServiceFDStore *fs;
428 int r;
429
9021ff17
ZJS
430 /* fd is always consumed if we return >= 0 */
431
2339fc93
LP
432 assert(s);
433 assert(fd >= 0);
434
435 if (s->n_fd_store >= s->n_fd_store_max)
b0924635
ZJS
436 return -EXFULL; /* Our store is full.
437 * Use this errno rather than E[NM]FILE to distinguish from
438 * the case where systemd itself hits the file limit. */
2339fc93
LP
439
440 LIST_FOREACH(fd_store, fs, s->fd_store) {
441 r = same_fd(fs->fd, fd);
442 if (r < 0)
443 return r;
444 if (r > 0) {
2339fc93 445 safe_close(fd);
9021ff17 446 return 0; /* fd already included */
2339fc93
LP
447 }
448 }
449
450 fs = new0(ServiceFDStore, 1);
451 if (!fs)
452 return -ENOMEM;
453
454 fs->fd = fd;
455 fs->service = s;
8dd4c05b 456 fs->fdname = strdup(name ?: "stored");
17dec0f7 457 if (!fs->fdname) {
458 free(fs);
8dd4c05b 459 return -ENOMEM;
17dec0f7 460 }
2339fc93
LP
461
462 r = sd_event_add_io(UNIT(s)->manager->event, &fs->event_source, fd, 0, on_fd_store_io, fs);
3ceb72e5 463 if (r < 0 && r != -EPERM) { /* EPERM indicates fds that aren't pollable, which is OK */
8dd4c05b 464 free(fs->fdname);
2339fc93
LP
465 free(fs);
466 return r;
3ceb72e5
LP
467 } else if (r >= 0)
468 (void) sd_event_source_set_description(fs->event_source, "service-fd-store");
7dfbe2e3 469
2339fc93
LP
470 LIST_PREPEND(fd_store, s->fd_store, fs);
471 s->n_fd_store++;
472
9021ff17 473 return 1; /* fd newly stored */
2339fc93
LP
474}
475
8dd4c05b 476static int service_add_fd_store_set(Service *s, FDSet *fds, const char *name) {
2339fc93
LP
477 int r;
478
479 assert(s);
480
b0924635 481 while (fdset_size(fds) > 0) {
2339fc93
LP
482 _cleanup_close_ int fd = -1;
483
484 fd = fdset_steal_first(fds);
485 if (fd < 0)
486 break;
487
8dd4c05b 488 r = service_add_fd_store(s, fd, name);
b0924635
ZJS
489 if (r == -EXFULL)
490 return log_unit_warning_errno(UNIT(s), r,
491 "Cannot store more fds than FileDescriptorStoreMax=%u, closing remaining.",
492 s->n_fd_store_max);
2339fc93 493 if (r < 0)
b0924635 494 return log_unit_error_errno(UNIT(s), r, "Failed to add fd to store: %m");
9021ff17 495 if (r > 0)
16f70d63 496 log_unit_debug(UNIT(s), "Added fd %u (%s) to fd store.", fd, strna(name));
9021ff17 497 fd = -1;
2339fc93
LP
498 }
499
2339fc93
LP
500 return 0;
501}
502
e78ee06d
LP
503static void service_remove_fd_store(Service *s, const char *name) {
504 ServiceFDStore *fs, *n;
505
506 assert(s);
507 assert(name);
508
509 LIST_FOREACH_SAFE(fd_store, fs, n, s->fd_store) {
510 if (!streq(fs->fdname, name))
511 continue;
512
513 log_unit_debug(UNIT(s), "Got explicit request to remove fd %i (%s), closing.", fs->fd, name);
514 service_fd_store_unlink(fs);
515 }
516}
517
718db961
LP
518static int service_arm_timer(Service *s, usec_t usec) {
519 int r;
520
521 assert(s);
522
718db961 523 if (s->timer_event_source) {
36c16a7c 524 r = sd_event_source_set_time(s->timer_event_source, usec);
718db961
LP
525 if (r < 0)
526 return r;
527
528 return sd_event_source_set_enabled(s->timer_event_source, SD_EVENT_ONESHOT);
529 }
530
36c16a7c
LP
531 if (usec == USEC_INFINITY)
532 return 0;
533
7dfbe2e3 534 r = sd_event_add_time(
6a0f1f6d
LP
535 UNIT(s)->manager->event,
536 &s->timer_event_source,
537 CLOCK_MONOTONIC,
36c16a7c 538 usec, 0,
6a0f1f6d 539 service_dispatch_timer, s);
7dfbe2e3
TG
540 if (r < 0)
541 return r;
542
543 (void) sd_event_source_set_description(s->timer_event_source, "service-timer");
544
545 return 0;
44d8db9e
LP
546}
547
243b1432
LP
548static int service_verify(Service *s) {
549 assert(s);
550
1124fe6f 551 if (UNIT(s)->load_state != UNIT_LOADED)
243b1432
LP
552 return 0;
553
3f00d379
ZJS
554 if (!s->exec_command[SERVICE_EXEC_START] && !s->exec_command[SERVICE_EXEC_STOP]
555 && UNIT(s)->success_action == EMERGENCY_ACTION_NONE) {
556 /* FailureAction= only makes sense if one of the start or stop commands is specified.
557 * SuccessAction= will be executed unconditionally if no commands are specified. Hence,
558 * either a command or SuccessAction= are required. */
559
560 log_unit_error(UNIT(s), "Service has no ExecStart=, ExecStop=, or SuccessAction=. Refusing.");
6f40aa45 561 return -ENOEXEC;
243b1432
LP
562 }
563
96fb8242 564 if (s->type != SERVICE_ONESHOT && !s->exec_command[SERVICE_EXEC_START]) {
f2341e0a 565 log_unit_error(UNIT(s), "Service has no ExecStart= setting, which is only allowed for Type=oneshot services. Refusing.");
6f40aa45 566 return -ENOEXEC;
96fb8242
LP
567 }
568
3f00d379
ZJS
569 if (!s->remain_after_exit && !s->exec_command[SERVICE_EXEC_START] && UNIT(s)->success_action == EMERGENCY_ACTION_NONE) {
570 log_unit_error(UNIT(s), "Service has no ExecStart= and no SuccessAction= settings and does not have RemainAfterExit=yes set. Refusing.");
6f40aa45 571 return -ENOEXEC;
96fb8242
LP
572 }
573
574 if (s->type != SERVICE_ONESHOT && s->exec_command[SERVICE_EXEC_START]->command_next) {
f2341e0a 575 log_unit_error(UNIT(s), "Service has more than one ExecStart= setting, which is only allowed for Type=oneshot services. Refusing.");
6f40aa45 576 return -ENOEXEC;
6cf6bbc2
LP
577 }
578
b0693d30 579 if (s->type == SERVICE_ONESHOT && s->restart != SERVICE_RESTART_NO) {
f2341e0a 580 log_unit_error(UNIT(s), "Service has Restart= setting other than no, which isn't allowed for Type=oneshot services. Refusing.");
6f40aa45 581 return -ENOEXEC;
37520c1b
LP
582 }
583
55ebf98c 584 if (s->type == SERVICE_ONESHOT && !exit_status_set_is_empty(&s->restart_force_status)) {
f2341e0a 585 log_unit_error(UNIT(s), "Service has RestartForceStatus= set, which isn't allowed for Type=oneshot services. Refusing.");
6f40aa45 586 return -ENOEXEC;
b0693d30
MW
587 }
588
05e343b7 589 if (s->type == SERVICE_DBUS && !s->bus_name) {
f2341e0a 590 log_unit_error(UNIT(s), "Service is of type D-Bus but no D-Bus service name has been specified. Refusing.");
6f40aa45 591 return -ENOEXEC;
4d0e5dbd
LP
592 }
593
7e2668c6 594 if (s->bus_name && s->type != SERVICE_DBUS)
f2341e0a 595 log_unit_warning(UNIT(s), "Service has a D-Bus service name specified, but is not of type dbus. Ignoring.");
7e2668c6 596
3742095b 597 if (s->exec_context.pam_name && !IN_SET(s->kill_context.kill_mode, KILL_CONTROL_GROUP, KILL_MIXED)) {
f2341e0a 598 log_unit_error(UNIT(s), "Service has PAM enabled. Kill mode must be set to 'control-group' or 'mixed'. Refusing.");
6f40aa45 599 return -ENOEXEC;
05e343b7
LP
600 }
601
6b7e5923
PS
602 if (s->usb_function_descriptors && !s->usb_function_strings)
603 log_unit_warning(UNIT(s), "Service has USBFunctionDescriptors= setting, but no USBFunctionStrings=. Ignoring.");
604
605 if (!s->usb_function_descriptors && s->usb_function_strings)
606 log_unit_warning(UNIT(s), "Service has USBFunctionStrings= setting, but no USBFunctionDescriptors=. Ignoring.");
607
36c16a7c
LP
608 if (s->runtime_max_usec != USEC_INFINITY && s->type == SERVICE_ONESHOT)
609 log_unit_warning(UNIT(s), "MaxRuntimeSec= has no effect in combination with Type=oneshot. Ignoring.");
610
243b1432
LP
611 return 0;
612}
613
a40eb732
LP
614static int service_add_default_dependencies(Service *s) {
615 int r;
616
617 assert(s);
618
45f06b34
LP
619 if (!UNIT(s)->default_dependencies)
620 return 0;
621
a40eb732
LP
622 /* Add a number of automatic dependencies useful for the
623 * majority of services. */
624
463d0d15 625 if (MANAGER_IS_SYSTEM(UNIT(s)->manager)) {
cb4c247d
LP
626 /* First, pull in the really early boot stuff, and
627 * require it, so that we fail if we can't acquire
628 * it. */
629
5a724170 630 r = unit_add_two_dependencies_by_name(UNIT(s), UNIT_AFTER, UNIT_REQUIRES, SPECIAL_SYSINIT_TARGET, true, UNIT_DEPENDENCY_DEFAULT);
cb4c247d
LP
631 if (r < 0)
632 return r;
633 } else {
634
635 /* In the --user instance there's no sysinit.target,
636 * in that case require basic.target instead. */
637
35d8c19a 638 r = unit_add_dependency_by_name(UNIT(s), UNIT_REQUIRES, SPECIAL_BASIC_TARGET, true, UNIT_DEPENDENCY_DEFAULT);
cb4c247d
LP
639 if (r < 0)
640 return r;
641 }
642
643 /* Second, if the rest of the base system is in the same
644 * transaction, order us after it, but do not pull it in or
645 * even require it. */
35d8c19a 646 r = unit_add_dependency_by_name(UNIT(s), UNIT_AFTER, SPECIAL_BASIC_TARGET, true, UNIT_DEPENDENCY_DEFAULT);
fccd44ec
KS
647 if (r < 0)
648 return r;
a40eb732 649
cb4c247d 650 /* Third, add us in for normal shutdown. */
5a724170 651 return unit_add_two_dependencies_by_name(UNIT(s), UNIT_BEFORE, UNIT_CONFLICTS, SPECIAL_SHUTDOWN_TARGET, true, UNIT_DEPENDENCY_DEFAULT);
a40eb732
LP
652}
653
4dfc092a
LP
654static void service_fix_output(Service *s) {
655 assert(s);
656
08f3be7a
LP
657 /* If nothing has been explicitly configured, patch default output in. If input is socket/tty we avoid this
658 * however, since in that case we want output to default to the same place as we read input from. */
4dfc092a
LP
659
660 if (s->exec_context.std_error == EXEC_OUTPUT_INHERIT &&
661 s->exec_context.std_output == EXEC_OUTPUT_INHERIT &&
662 s->exec_context.std_input == EXEC_INPUT_NULL)
1124fe6f 663 s->exec_context.std_error = UNIT(s)->manager->default_std_error;
4dfc092a
LP
664
665 if (s->exec_context.std_output == EXEC_OUTPUT_INHERIT &&
666 s->exec_context.std_input == EXEC_INPUT_NULL)
1124fe6f 667 s->exec_context.std_output = UNIT(s)->manager->default_std_output;
08f3be7a
LP
668
669 if (s->exec_context.std_input == EXEC_INPUT_NULL &&
670 s->exec_context.stdin_data_size > 0)
671 s->exec_context.std_input = EXEC_INPUT_DATA;
4dfc092a
LP
672}
673
45f06b34
LP
674static int service_setup_bus_name(Service *s) {
675 int r;
676
677 assert(s);
678
679 if (!s->bus_name)
680 return 0;
681
35d8c19a 682 r = unit_add_dependency_by_name(UNIT(s), UNIT_REQUIRES, SPECIAL_DBUS_SOCKET, true, UNIT_DEPENDENCY_FILE);
222953e8
DR
683 if (r < 0)
684 return log_unit_error_errno(UNIT(s), r, "Failed to add dependency on " SPECIAL_DBUS_SOCKET ": %m");
45f06b34 685
a132bef0 686 /* We always want to be ordered against dbus.socket if both are in the transaction. */
35d8c19a 687 r = unit_add_dependency_by_name(UNIT(s), UNIT_AFTER, SPECIAL_DBUS_SOCKET, true, UNIT_DEPENDENCY_FILE);
45f06b34 688 if (r < 0)
92bed462 689 return log_unit_error_errno(UNIT(s), r, "Failed to add dependency on " SPECIAL_DBUS_SOCKET ": %m");
45f06b34
LP
690
691 r = unit_watch_bus_name(UNIT(s), s->bus_name);
692 if (r == -EEXIST)
693 return log_unit_error_errno(UNIT(s), r, "Two services allocated for the same bus name %s, refusing operation.", s->bus_name);
694 if (r < 0)
695 return log_unit_error_errno(UNIT(s), r, "Cannot watch bus name %s: %m", s->bus_name);
696
697 return 0;
698}
699
8545f7ce
LP
700static int service_add_extras(Service *s) {
701 int r;
702
703 assert(s);
704
705 if (s->type == _SERVICE_TYPE_INVALID) {
706 /* Figure out a type automatically */
707 if (s->bus_name)
708 s->type = SERVICE_DBUS;
709 else if (s->exec_command[SERVICE_EXEC_START])
710 s->type = SERVICE_SIMPLE;
711 else
712 s->type = SERVICE_ONESHOT;
713 }
714
715 /* Oneshot services have disabled start timeout by default */
716 if (s->type == SERVICE_ONESHOT && !s->start_timeout_defined)
36c16a7c 717 s->timeout_start_usec = USEC_INFINITY;
8545f7ce
LP
718
719 service_fix_output(s);
720
721 r = unit_patch_contexts(UNIT(s));
722 if (r < 0)
723 return r;
724
725 r = unit_add_exec_dependencies(UNIT(s), &s->exec_context);
726 if (r < 0)
727 return r;
728
d79200e2 729 r = unit_set_default_slice(UNIT(s));
8545f7ce
LP
730 if (r < 0)
731 return r;
732
4330dc03
AJ
733 /* If the service needs the notify socket, let's enable it automatically. */
734 if (s->notify_access == NOTIFY_NONE &&
735 (s->type == SERVICE_NOTIFY || s->watchdog_usec > 0 || s->n_fd_store_max > 0))
8545f7ce
LP
736 s->notify_access = NOTIFY_MAIN;
737
afcfaa69
LP
738 /* If no OOM policy was explicitly set, then default to the configure default OOM policy. Except when
739 * delegation is on, in that case it we assume the payload knows better what to do and can process
740 * things in a more focussed way. */
741 if (s->oom_policy < 0)
742 s->oom_policy = s->cgroup_context.delegate ? OOM_CONTINUE : UNIT(s)->manager->default_oom_policy;
743
744 /* Let the kernel do the killing if that's requested. */
745 s->cgroup_context.memory_oom_group = s->oom_policy == OOM_KILL;
746
45f06b34
LP
747 r = service_add_default_dependencies(s);
748 if (r < 0)
749 return r;
8545f7ce 750
45f06b34
LP
751 r = service_setup_bus_name(s);
752 if (r < 0)
753 return r;
8545f7ce
LP
754
755 return 0;
756}
757
e537352b 758static int service_load(Unit *u) {
e537352b 759 Service *s = SERVICE(u);
8bb2d17d 760 int r;
e537352b
LP
761
762 assert(s);
1e2e8133 763
5cb5a6ff 764 /* Load a .service file */
c2756a68
LP
765 r = unit_load_fragment(u);
766 if (r < 0)
5cb5a6ff
LP
767 return r;
768
23a177ef 769 /* Still nothing found? Then let's give up */
ac155bb8 770 if (u->load_state == UNIT_STUB)
23a177ef 771 return -ENOENT;
034c6ed7 772
23a177ef 773 /* This is a new unit? Then let's add in some extras */
ac155bb8 774 if (u->load_state == UNIT_LOADED) {
c2756a68
LP
775
776 /* We were able to load something, then let's add in
777 * the dropin directories. */
778 r = unit_load_dropin(u);
779 if (r < 0)
780 return r;
781
8545f7ce
LP
782 /* This is a new unit? Then let's add in some
783 * extras */
784 r = service_add_extras(s);
598459ce
LP
785 if (r < 0)
786 return r;
8e274523
LP
787 }
788
243b1432 789 return service_verify(s);
034c6ed7
LP
790}
791
87f0e418 792static void service_dump(Unit *u, FILE *f, const char *prefix) {
f2e18ef1 793 char buf_restart[FORMAT_TIMESPAN_MAX], buf_start[FORMAT_TIMESPAN_MAX], buf_stop[FORMAT_TIMESPAN_MAX];
dc653bf4 794 char buf_runtime[FORMAT_TIMESPAN_MAX], buf_watchdog[FORMAT_TIMESPAN_MAX], buf_abort[FORMAT_TIMESPAN_MAX];
5cb5a6ff 795 ServiceExecCommand c;
87f0e418 796 Service *s = SERVICE(u);
47be870b 797 const char *prefix2;
5cb5a6ff
LP
798
799 assert(s);
800
4c940960 801 prefix = strempty(prefix);
63c372cb 802 prefix2 = strjoina(prefix, "\t");
44d8db9e 803
5cb5a6ff 804 fprintf(f,
81a2b7ce 805 "%sService State: %s\n"
f42806df
LP
806 "%sResult: %s\n"
807 "%sReload Result: %s\n"
81a2b7ce 808 "%sPermissionsStartOnly: %s\n"
8e274523 809 "%sRootDirectoryStartOnly: %s\n"
02ee865a 810 "%sRemainAfterExit: %s\n"
3185a36b 811 "%sGuessMainPID: %s\n"
c952c6ec 812 "%sType: %s\n"
2cf3143a 813 "%sRestart: %s\n"
308d72dc 814 "%sNotifyAccess: %s\n"
afcfaa69
LP
815 "%sNotifyState: %s\n"
816 "%sOOMPolicy: %s\n",
81a2b7ce 817 prefix, service_state_to_string(s->state),
f42806df
LP
818 prefix, service_result_to_string(s->result),
819 prefix, service_result_to_string(s->reload_result),
81a2b7ce 820 prefix, yes_no(s->permissions_start_only),
8e274523 821 prefix, yes_no(s->root_directory_start_only),
02ee865a 822 prefix, yes_no(s->remain_after_exit),
3185a36b 823 prefix, yes_no(s->guess_main_pid),
c952c6ec 824 prefix, service_type_to_string(s->type),
2cf3143a 825 prefix, service_restart_to_string(s->restart),
308d72dc 826 prefix, notify_access_to_string(s->notify_access),
afcfaa69
LP
827 prefix, notify_state_to_string(s->notify_state),
828 prefix, oom_policy_to_string(s->oom_policy));
5cb5a6ff 829
70123e68
LP
830 if (s->control_pid > 0)
831 fprintf(f,
ccd06097
ZJS
832 "%sControl PID: "PID_FMT"\n",
833 prefix, s->control_pid);
70123e68
LP
834
835 if (s->main_pid > 0)
836 fprintf(f,
ccd06097 837 "%sMain PID: "PID_FMT"\n"
6dfa5494
LP
838 "%sMain PID Known: %s\n"
839 "%sMain PID Alien: %s\n",
ccd06097 840 prefix, s->main_pid,
6dfa5494
LP
841 prefix, yes_no(s->main_pid_known),
842 prefix, yes_no(s->main_pid_alien));
70123e68 843
034c6ed7
LP
844 if (s->pid_file)
845 fprintf(f,
846 "%sPIDFile: %s\n",
847 prefix, s->pid_file);
848
05e343b7
LP
849 if (s->bus_name)
850 fprintf(f,
851 "%sBusName: %s\n"
852 "%sBus Name Good: %s\n",
853 prefix, s->bus_name,
854 prefix, yes_no(s->bus_name_good));
855
9dfb64f8
ZJS
856 if (UNIT_ISSET(s->accept_socket))
857 fprintf(f,
858 "%sAccept Socket: %s\n",
859 prefix, UNIT_DEREF(s->accept_socket)->id);
860
c9d41699
YW
861 fprintf(f,
862 "%sRestartSec: %s\n"
863 "%sTimeoutStartSec: %s\n"
dcab85be 864 "%sTimeoutStopSec: %s\n",
c9d41699
YW
865 prefix, format_timespan(buf_restart, sizeof(buf_restart), s->restart_usec, USEC_PER_SEC),
866 prefix, format_timespan(buf_start, sizeof(buf_start), s->timeout_start_usec, USEC_PER_SEC),
dcab85be
YW
867 prefix, format_timespan(buf_stop, sizeof(buf_stop), s->timeout_stop_usec, USEC_PER_SEC));
868
869 if (s->timeout_abort_set)
870 fprintf(f,
871 "%sTimeoutAbortSec: %s\n",
872 prefix, format_timespan(buf_abort, sizeof(buf_abort), s->timeout_abort_usec, USEC_PER_SEC));
873
874 fprintf(f,
875 "%sRuntimeMaxSec: %s\n"
876 "%sWatchdogSec: %s\n",
c9d41699
YW
877 prefix, format_timespan(buf_runtime, sizeof(buf_runtime), s->runtime_max_usec, USEC_PER_SEC),
878 prefix, format_timespan(buf_watchdog, sizeof(buf_watchdog), s->watchdog_usec, USEC_PER_SEC));
879
4819ff03 880 kill_context_dump(&s->kill_context, f, prefix);
5cb5a6ff
LP
881 exec_context_dump(&s->exec_context, f, prefix);
882
e537352b 883 for (c = 0; c < _SERVICE_EXEC_COMMAND_MAX; c++) {
5cb5a6ff 884
44d8db9e
LP
885 if (!s->exec_command[c])
886 continue;
887
40d50879 888 fprintf(f, "%s-> %s:\n",
94f04347 889 prefix, service_exec_command_to_string(c));
44d8db9e
LP
890
891 exec_command_dump_list(s->exec_command[c], f, prefix2);
5cb5a6ff 892 }
44d8db9e 893
8c47c732
LP
894 if (s->status_text)
895 fprintf(f, "%sStatus Text: %s\n",
896 prefix, s->status_text);
a354329f 897
ece174c5 898 if (s->n_fd_store_max > 0)
a354329f
LP
899 fprintf(f,
900 "%sFile Descriptor Store Max: %u\n"
da6053d0 901 "%sFile Descriptor Store Current: %zu\n",
a354329f
LP
902 prefix, s->n_fd_store_max,
903 prefix, s->n_fd_store);
18f573aa
LP
904
905 cgroup_context_dump(&s->cgroup_context, f, prefix);
5cb5a6ff
LP
906}
907
db256aab
LP
908static int service_is_suitable_main_pid(Service *s, pid_t pid, int prio) {
909 Unit *owner;
910
911 assert(s);
912 assert(pid_is_valid(pid));
913
914 /* Checks whether the specified PID is suitable as main PID for this service. returns negative if not, 0 if the
915 * PID is questionnable but should be accepted if the source of configuration is trusted. > 0 if the PID is
916 * good */
917
918 if (pid == getpid_cached() || pid == 1) {
919 log_unit_full(UNIT(s), prio, 0, "New main PID "PID_FMT" is the manager, refusing.", pid);
920 return -EPERM;
921 }
922
923 if (pid == s->control_pid) {
924 log_unit_full(UNIT(s), prio, 0, "New main PID "PID_FMT" is the control process, refusing.", pid);
925 return -EPERM;
926 }
927
928 if (!pid_is_alive(pid)) {
929 log_unit_full(UNIT(s), prio, 0, "New main PID "PID_FMT" does not exist or is a zombie.", pid);
930 return -ESRCH;
931 }
932
933 owner = manager_get_unit_by_pid(UNIT(s)->manager, pid);
934 if (owner == UNIT(s)) {
935 log_unit_debug(UNIT(s), "New main PID "PID_FMT" belongs to service, we are happy.", pid);
936 return 1; /* Yay, it's definitely a good PID */
937 }
938
939 return 0; /* Hmm it's a suspicious PID, let's accept it if configuration source is trusted */
940}
941
c5419d42 942static int service_load_pid_file(Service *s, bool may_warn) {
db256aab 943 char procfs[STRLEN("/proc/self/fd/") + DECIMAL_STR_MAX(int)];
73969ab6 944 bool questionable_pid_file = false;
7fd1b19b 945 _cleanup_free_ char *k = NULL;
db256aab
LP
946 _cleanup_close_ int fd = -1;
947 int r, prio;
5925dd3c 948 pid_t pid;
034c6ed7
LP
949
950 assert(s);
951
034c6ed7 952 if (!s->pid_file)
13230d5d 953 return -ENOENT;
034c6ed7 954
db256aab
LP
955 prio = may_warn ? LOG_INFO : LOG_DEBUG;
956
957 fd = chase_symlinks(s->pid_file, NULL, CHASE_OPEN|CHASE_SAFE, NULL);
36c97dec
FB
958 if (fd == -ENOLINK) {
959 log_unit_full(UNIT(s), LOG_DEBUG, fd, "Potentially unsafe symlink chain, will now retry with relaxed checks: %s", s->pid_file);
73969ab6
LP
960
961 questionable_pid_file = true;
962
963 fd = chase_symlinks(s->pid_file, NULL, CHASE_OPEN, NULL);
964 }
db256aab
LP
965 if (fd < 0)
966 return log_unit_full(UNIT(s), prio, fd, "Can't open PID file %s (yet?) after %s: %m", s->pid_file, service_state_to_string(s->state));
967
968 /* Let's read the PID file now that we chased it down. But we need to convert the O_PATH fd chase_symlinks() returned us into a proper fd first. */
969 xsprintf(procfs, "/proc/self/fd/%i", fd);
970 r = read_one_line_file(procfs, &k);
971 if (r < 0)
972 return log_unit_error_errno(UNIT(s), r, "Can't convert PID files %s O_PATH file descriptor to proper file descriptor: %m", s->pid_file);
034c6ed7 973
5925dd3c 974 r = parse_pid(k, &pid);
db256aab
LP
975 if (r < 0)
976 return log_unit_full(UNIT(s), prio, r, "Failed to parse PID from file %s: %m", s->pid_file);
977
978 if (s->main_pid_known && pid == s->main_pid)
979 return 0;
980
981 r = service_is_suitable_main_pid(s, pid, prio);
982 if (r < 0)
5925dd3c 983 return r;
db256aab
LP
984 if (r == 0) {
985 struct stat st;
406eaf93 986
73969ab6
LP
987 if (questionable_pid_file) {
988 log_unit_error(UNIT(s), "Refusing to accept PID outside of service control group, acquired through unsafe symlink chain: %s", s->pid_file);
989 return -EPERM;
990 }
991
db256aab
LP
992 /* Hmm, it's not clear if the new main PID is safe. Let's allow this if the PID file is owned by root */
993
994 if (fstat(fd, &st) < 0)
995 return log_unit_error_errno(UNIT(s), errno, "Failed to fstat() PID file O_PATH fd: %m");
996
997 if (st.st_uid != 0) {
998 log_unit_error(UNIT(s), "New main PID "PID_FMT" does not belong to service, and PID file is not owned by root. Refusing.", pid);
999 return -EPERM;
1000 }
1001
1002 log_unit_debug(UNIT(s), "New main PID "PID_FMT" does not belong to service, but we'll accept it since PID file is owned by root.", pid);
e10c9985
YS
1003 }
1004
db01f8b3 1005 if (s->main_pid_known) {
f2341e0a 1006 log_unit_debug(UNIT(s), "Main PID changing: "PID_FMT" -> "PID_FMT, s->main_pid, pid);
8bb2d17d 1007
db01f8b3
MS
1008 service_unwatch_main_pid(s);
1009 s->main_pid_known = false;
3a111838 1010 } else
f2341e0a 1011 log_unit_debug(UNIT(s), "Main PID loaded: "PID_FMT, pid);
db01f8b3 1012
117dcc57
ZJS
1013 r = service_set_main_pid(s, pid);
1014 if (r < 0)
16f6025e
LP
1015 return r;
1016
f75f613d 1017 r = unit_watch_pid(UNIT(s), pid, false);
e8b509d3
LP
1018 if (r < 0) /* FIXME: we need to do something here */
1019 return log_unit_warning_errno(UNIT(s), r, "Failed to watch PID "PID_FMT" for service: %m", pid);
034c6ed7 1020
db256aab 1021 return 1;
034c6ed7
LP
1022}
1023
783e05d6 1024static void service_search_main_pid(Service *s) {
efdb0237 1025 pid_t pid = 0;
4fbf50b3
LP
1026 int r;
1027
1028 assert(s);
1029
3185a36b
LP
1030 /* If we know it anyway, don't ever fallback to unreliable
1031 * heuristics */
4fbf50b3 1032 if (s->main_pid_known)
783e05d6 1033 return;
4fbf50b3 1034
3185a36b 1035 if (!s->guess_main_pid)
783e05d6 1036 return;
3185a36b 1037
4fbf50b3
LP
1038 assert(s->main_pid <= 0);
1039
783e05d6
ZJS
1040 if (unit_search_main_pid(UNIT(s), &pid) < 0)
1041 return;
4fbf50b3 1042
f2341e0a 1043 log_unit_debug(UNIT(s), "Main PID guessed: "PID_FMT, pid);
783e05d6
ZJS
1044 if (service_set_main_pid(s, pid) < 0)
1045 return;
4fbf50b3 1046
f75f613d 1047 r = unit_watch_pid(UNIT(s), pid, false);
783e05d6 1048 if (r < 0)
4fbf50b3 1049 /* FIXME: we need to do something here */
f2341e0a 1050 log_unit_warning_errno(UNIT(s), r, "Failed to watch PID "PID_FMT" from: %m", pid);
4fbf50b3
LP
1051}
1052
034c6ed7
LP
1053static void service_set_state(Service *s, ServiceState state) {
1054 ServiceState old_state;
e056b01d 1055 const UnitActiveState *table;
842129f5 1056
5cb5a6ff
LP
1057 assert(s);
1058
6fcbec6f
LP
1059 if (s->state != state)
1060 bus_unit_send_pending_change_signal(UNIT(s), false);
1061
e056b01d
LP
1062 table = s->type == SERVICE_IDLE ? state_translation_table_idle : state_translation_table;
1063
034c6ed7 1064 old_state = s->state;
5cb5a6ff 1065 s->state = state;
034c6ed7 1066
3a111838
MS
1067 service_unwatch_pid_file(s);
1068
842129f5
LP
1069 if (!IN_SET(state,
1070 SERVICE_START_PRE, SERVICE_START, SERVICE_START_POST,
36c16a7c 1071 SERVICE_RUNNING,
842129f5 1072 SERVICE_RELOAD,
c87700a1 1073 SERVICE_STOP, SERVICE_STOP_WATCHDOG, SERVICE_STOP_SIGTERM, SERVICE_STOP_SIGKILL, SERVICE_STOP_POST,
842129f5
LP
1074 SERVICE_FINAL_SIGTERM, SERVICE_FINAL_SIGKILL,
1075 SERVICE_AUTO_RESTART))
718db961 1076 s->timer_event_source = sd_event_source_unref(s->timer_event_source);
034c6ed7 1077
842129f5
LP
1078 if (!IN_SET(state,
1079 SERVICE_START, SERVICE_START_POST,
1080 SERVICE_RUNNING, SERVICE_RELOAD,
c87700a1 1081 SERVICE_STOP, SERVICE_STOP_WATCHDOG, SERVICE_STOP_SIGTERM, SERVICE_STOP_SIGKILL, SERVICE_STOP_POST,
bf108e55 1082 SERVICE_FINAL_SIGTERM, SERVICE_FINAL_SIGKILL)) {
5e94833f 1083 service_unwatch_main_pid(s);
867b3b7d
LP
1084 s->main_command = NULL;
1085 }
034c6ed7 1086
842129f5
LP
1087 if (!IN_SET(state,
1088 SERVICE_START_PRE, SERVICE_START, SERVICE_START_POST,
1089 SERVICE_RELOAD,
c87700a1 1090 SERVICE_STOP, SERVICE_STOP_WATCHDOG, SERVICE_STOP_SIGTERM, SERVICE_STOP_SIGKILL, SERVICE_STOP_POST,
842129f5 1091 SERVICE_FINAL_SIGTERM, SERVICE_FINAL_SIGKILL)) {
5e94833f 1092 service_unwatch_control_pid(s);
034c6ed7 1093 s->control_command = NULL;
a16e1123 1094 s->control_command_id = _SERVICE_EXEC_COMMAND_INVALID;
e537352b 1095 }
034c6ed7 1096
50be4f4a 1097 if (IN_SET(state, SERVICE_DEAD, SERVICE_FAILED, SERVICE_AUTO_RESTART)) {
a911bb9a 1098 unit_unwatch_all_pids(UNIT(s));
50be4f4a
LP
1099 unit_dequeue_rewatch_pids(UNIT(s));
1100 }
a911bb9a 1101
842129f5
LP
1102 if (!IN_SET(state,
1103 SERVICE_START_PRE, SERVICE_START, SERVICE_START_POST,
1104 SERVICE_RUNNING, SERVICE_RELOAD,
c87700a1 1105 SERVICE_STOP, SERVICE_STOP_WATCHDOG, SERVICE_STOP_SIGTERM, SERVICE_STOP_SIGKILL, SERVICE_STOP_POST,
57614eb1 1106 SERVICE_FINAL_SIGTERM, SERVICE_FINAL_SIGKILL) &&
5cc3985e 1107 !(state == SERVICE_DEAD && UNIT(s)->job))
4f2d528d
LP
1108 service_close_socket_fd(s);
1109
5686391b
LP
1110 if (state != SERVICE_START)
1111 s->exec_fd_event_source = sd_event_source_unref(s->exec_fd_event_source);
1112
7596e9e1 1113 if (!IN_SET(state, SERVICE_START_POST, SERVICE_RUNNING, SERVICE_RELOAD))
a6927d7f
MO
1114 service_stop_watchdog(s);
1115
f6023656
LP
1116 /* For the inactive states unit_notify() will trim the cgroup,
1117 * but for exit we have to do that ourselves... */
2c289ea8 1118 if (state == SERVICE_EXITED && !MANAGER_IS_RELOADING(UNIT(s)->manager))
efdb0237 1119 unit_prune_cgroup(UNIT(s));
f6023656 1120
e537352b 1121 if (old_state != state)
f2341e0a 1122 log_unit_debug(UNIT(s), "Changed %s -> %s", service_state_to_string(old_state), service_state_to_string(state));
acbb0225 1123
2ad2e41a
LP
1124 unit_notify(UNIT(s), table[old_state], table[state],
1125 (s->reload_result == SERVICE_SUCCESS ? 0 : UNIT_NOTIFY_RELOAD_FAILURE) |
1126 (s->will_auto_restart ? UNIT_NOTIFY_WILL_AUTO_RESTART : 0));
034c6ed7
LP
1127}
1128
36c16a7c
LP
1129static usec_t service_coldplug_timeout(Service *s) {
1130 assert(s);
1131
1132 switch (s->deserialized_state) {
1133
1134 case SERVICE_START_PRE:
1135 case SERVICE_START:
1136 case SERVICE_START_POST:
1137 case SERVICE_RELOAD:
1138 return usec_add(UNIT(s)->state_change_timestamp.monotonic, s->timeout_start_usec);
1139
1140 case SERVICE_RUNNING:
1141 return usec_add(UNIT(s)->active_enter_timestamp.monotonic, s->runtime_max_usec);
1142
1143 case SERVICE_STOP:
36c16a7c
LP
1144 case SERVICE_STOP_SIGTERM:
1145 case SERVICE_STOP_SIGKILL:
1146 case SERVICE_STOP_POST:
1147 case SERVICE_FINAL_SIGTERM:
1148 case SERVICE_FINAL_SIGKILL:
1149 return usec_add(UNIT(s)->state_change_timestamp.monotonic, s->timeout_stop_usec);
1150
dc653bf4
JK
1151 case SERVICE_STOP_WATCHDOG:
1152 return usec_add(UNIT(s)->state_change_timestamp.monotonic, service_timeout_abort_usec(s));
1153
36c16a7c
LP
1154 case SERVICE_AUTO_RESTART:
1155 return usec_add(UNIT(s)->inactive_enter_timestamp.monotonic, s->restart_usec);
1156
1157 default:
1158 return USEC_INFINITY;
1159 }
1160}
1161
be847e82 1162static int service_coldplug(Unit *u) {
a16e1123
LP
1163 Service *s = SERVICE(u);
1164 int r;
1165
1166 assert(s);
1167 assert(s->state == SERVICE_DEAD);
1168
930d2838
LP
1169 if (s->deserialized_state == s->state)
1170 return 0;
6c12b52e 1171
36c16a7c
LP
1172 r = service_arm_timer(s, service_coldplug_timeout(s));
1173 if (r < 0)
1174 return r;
a911bb9a 1175
930d2838
LP
1176 if (s->main_pid > 0 &&
1177 pid_is_unwaited(s->main_pid) &&
9acac212 1178 (IN_SET(s->deserialized_state,
930d2838
LP
1179 SERVICE_START, SERVICE_START_POST,
1180 SERVICE_RUNNING, SERVICE_RELOAD,
c87700a1 1181 SERVICE_STOP, SERVICE_STOP_WATCHDOG, SERVICE_STOP_SIGTERM, SERVICE_STOP_SIGKILL, SERVICE_STOP_POST,
930d2838 1182 SERVICE_FINAL_SIGTERM, SERVICE_FINAL_SIGKILL))) {
f75f613d 1183 r = unit_watch_pid(UNIT(s), s->main_pid, false);
930d2838
LP
1184 if (r < 0)
1185 return r;
1186 }
bb242b7b 1187
930d2838
LP
1188 if (s->control_pid > 0 &&
1189 pid_is_unwaited(s->control_pid) &&
1190 IN_SET(s->deserialized_state,
1191 SERVICE_START_PRE, SERVICE_START, SERVICE_START_POST,
1192 SERVICE_RELOAD,
c87700a1 1193 SERVICE_STOP, SERVICE_STOP_WATCHDOG, SERVICE_STOP_SIGTERM, SERVICE_STOP_SIGKILL, SERVICE_STOP_POST,
930d2838 1194 SERVICE_FINAL_SIGTERM, SERVICE_FINAL_SIGKILL)) {
f75f613d 1195 r = unit_watch_pid(UNIT(s), s->control_pid, false);
930d2838
LP
1196 if (r < 0)
1197 return r;
a16e1123 1198 }
92c1622e 1199
e8a565cb 1200 if (!IN_SET(s->deserialized_state, SERVICE_DEAD, SERVICE_FAILED, SERVICE_AUTO_RESTART)) {
50be4f4a 1201 (void) unit_enqueue_rewatch_pids(u);
29206d46 1202 (void) unit_setup_dynamic_creds(u);
e8a565cb
YW
1203 (void) unit_setup_exec_runtime(u);
1204 }
29206d46 1205
50be4f4a
LP
1206 if (IN_SET(s->deserialized_state, SERVICE_START_POST, SERVICE_RUNNING, SERVICE_RELOAD))
1207 service_start_watchdog(s);
1208
3ebcd323
ZJS
1209 if (UNIT_ISSET(s->accept_socket)) {
1210 Socket* socket = SOCKET(UNIT_DEREF(s->accept_socket));
1211
1212 if (socket->max_connections_per_source > 0) {
1213 SocketPeer *peer;
1214
1215 /* Make a best-effort attempt at bumping the connection count */
1216 if (socket_acquire_peer(socket, s->socket_fd, &peer) > 0) {
1217 socket_peer_unref(s->peer);
1218 s->peer = peer;
1219 }
1220 }
1221 }
1222
930d2838 1223 service_set_state(s, s->deserialized_state);
a16e1123
LP
1224 return 0;
1225}
1226
25b583d7
LP
1227static int service_collect_fds(
1228 Service *s,
1229 int **fds,
1230 char ***fd_names,
1231 size_t *n_socket_fds,
1232 size_t *n_storage_fds) {
4c47affc 1233
8dd4c05b 1234 _cleanup_strv_free_ char **rfd_names = NULL;
a354329f 1235 _cleanup_free_ int *rfds = NULL;
25b583d7 1236 size_t rn_socket_fds = 0, rn_storage_fds = 0;
4c47affc 1237 int r;
44d8db9e
LP
1238
1239 assert(s);
1240 assert(fds);
8dd4c05b 1241 assert(fd_names);
9b141911 1242 assert(n_socket_fds);
25b583d7 1243 assert(n_storage_fds);
44d8db9e 1244
8dd4c05b 1245 if (s->socket_fd >= 0) {
6cf6bbc2 1246
8dd4c05b 1247 /* Pass the per-connection socket */
57020a3a 1248
8dd4c05b
LP
1249 rfds = new(int, 1);
1250 if (!rfds)
1251 return -ENOMEM;
1252 rfds[0] = s->socket_fd;
57020a3a 1253
bea1a013 1254 rfd_names = strv_new("connection");
8dd4c05b
LP
1255 if (!rfd_names)
1256 return -ENOMEM;
44d8db9e 1257
4c47affc 1258 rn_socket_fds = 1;
8dd4c05b
LP
1259 } else {
1260 Iterator i;
eef85c4a 1261 void *v;
8dd4c05b 1262 Unit *u;
44d8db9e 1263
8dd4c05b 1264 /* Pass all our configured sockets for singleton services */
44d8db9e 1265
eef85c4a 1266 HASHMAP_FOREACH_KEY(v, u, UNIT(s)->dependencies[UNIT_TRIGGERED_BY], i) {
8dd4c05b
LP
1267 _cleanup_free_ int *cfds = NULL;
1268 Socket *sock;
1269 int cn_fds;
44d8db9e 1270
8dd4c05b
LP
1271 if (u->type != UNIT_SOCKET)
1272 continue;
44d8db9e 1273
8dd4c05b 1274 sock = SOCKET(u);
a354329f 1275
8dd4c05b
LP
1276 cn_fds = socket_collect_fds(sock, &cfds);
1277 if (cn_fds < 0)
1278 return cn_fds;
44d8db9e 1279
8dd4c05b
LP
1280 if (cn_fds <= 0)
1281 continue;
79c7626d 1282
8dd4c05b 1283 if (!rfds) {
1cc6c93a 1284 rfds = TAKE_PTR(cfds);
4c47affc 1285 rn_socket_fds = cn_fds;
8dd4c05b
LP
1286 } else {
1287 int *t;
1288
62d74c78 1289 t = reallocarray(rfds, rn_socket_fds + cn_fds, sizeof(int));
8dd4c05b
LP
1290 if (!t)
1291 return -ENOMEM;
1292
4c47affc 1293 memcpy(t + rn_socket_fds, cfds, cn_fds * sizeof(int));
8dd4c05b
LP
1294
1295 rfds = t;
4c47affc 1296 rn_socket_fds += cn_fds;
8dd4c05b
LP
1297 }
1298
1299 r = strv_extend_n(&rfd_names, socket_fdname(sock), cn_fds);
1300 if (r < 0)
1301 return r;
44d8db9e
LP
1302 }
1303 }
1304
a354329f
LP
1305 if (s->n_fd_store > 0) {
1306 ServiceFDStore *fs;
25b583d7 1307 size_t n_fds;
8dd4c05b 1308 char **nl;
a354329f
LP
1309 int *t;
1310
62d74c78 1311 t = reallocarray(rfds, rn_socket_fds + s->n_fd_store, sizeof(int));
a354329f
LP
1312 if (!t)
1313 return -ENOMEM;
1314
1315 rfds = t;
8dd4c05b 1316
62d74c78 1317 nl = reallocarray(rfd_names, rn_socket_fds + s->n_fd_store + 1, sizeof(char *));
8dd4c05b
LP
1318 if (!nl)
1319 return -ENOMEM;
1320
1321 rfd_names = nl;
4c47affc 1322 n_fds = rn_socket_fds;
8dd4c05b
LP
1323
1324 LIST_FOREACH(fd_store, fs, s->fd_store) {
4c47affc
FB
1325 rfds[n_fds] = fs->fd;
1326 rfd_names[n_fds] = strdup(strempty(fs->fdname));
1327 if (!rfd_names[n_fds])
8dd4c05b
LP
1328 return -ENOMEM;
1329
4c47affc
FB
1330 rn_storage_fds++;
1331 n_fds++;
8dd4c05b
LP
1332 }
1333
4c47affc 1334 rfd_names[n_fds] = NULL;
a354329f
LP
1335 }
1336
1cc6c93a
YW
1337 *fds = TAKE_PTR(rfds);
1338 *fd_names = TAKE_PTR(rfd_names);
9b141911 1339 *n_socket_fds = rn_socket_fds;
4c47affc 1340 *n_storage_fds = rn_storage_fds;
3e33402a 1341
4c47affc 1342 return 0;
44d8db9e
LP
1343}
1344
5686391b
LP
1345static int service_allocate_exec_fd_event_source(
1346 Service *s,
1347 int fd,
1348 sd_event_source **ret_event_source) {
1349
1350 _cleanup_(sd_event_source_unrefp) sd_event_source *source = NULL;
1351 int r;
1352
1353 assert(s);
1354 assert(fd >= 0);
1355 assert(ret_event_source);
1356
1357 r = sd_event_add_io(UNIT(s)->manager->event, &source, fd, 0, service_dispatch_exec_io, s);
1358 if (r < 0)
1359 return log_unit_error_errno(UNIT(s), r, "Failed to allocate exec_fd event source: %m");
1360
1361 /* This is a bit lower priority than SIGCHLD, as that carries a lot more interesting failure information */
1362
1363 r = sd_event_source_set_priority(source, SD_EVENT_PRIORITY_NORMAL-3);
1364 if (r < 0)
1365 return log_unit_error_errno(UNIT(s), r, "Failed to adjust priority of exec_fd event source: %m");
1366
1367 (void) sd_event_source_set_description(source, "service event_fd");
1368
1369 r = sd_event_source_set_io_fd_own(source, true);
1370 if (r < 0)
1371 return log_unit_error_errno(UNIT(s), r, "Failed to pass ownership of fd to event source: %m");
1372
1373 *ret_event_source = TAKE_PTR(source);
1374 return 0;
1375}
1376
1377static int service_allocate_exec_fd(
1378 Service *s,
1379 sd_event_source **ret_event_source,
1380 int* ret_exec_fd) {
1381
1382 _cleanup_close_pair_ int p[2] = { -1, -1 };
1383 int r;
1384
1385 assert(s);
1386 assert(ret_event_source);
1387 assert(ret_exec_fd);
1388
1389 if (pipe2(p, O_CLOEXEC|O_NONBLOCK) < 0)
1390 return log_unit_error_errno(UNIT(s), errno, "Failed to allocate exec_fd pipe: %m");
1391
1392 r = service_allocate_exec_fd_event_source(s, p[0], ret_event_source);
1393 if (r < 0)
1394 return r;
1395
1396 p[0] = -1;
1397 *ret_exec_fd = TAKE_FD(p[1]);
1398
1399 return 0;
1400}
1401
6375bd20
JW
1402static bool service_exec_needs_notify_socket(Service *s, ExecFlags flags) {
1403 assert(s);
1404
1405 /* Notifications are accepted depending on the process and
1406 * the access setting of the service:
1407 * process: \ access: NONE MAIN EXEC ALL
1408 * main no yes yes yes
1409 * control no no yes yes
1410 * other (forked) no no no yes */
1411
1412 if (flags & EXEC_IS_CONTROL)
1413 /* A control process */
1414 return IN_SET(s->notify_access, NOTIFY_EXEC, NOTIFY_ALL);
1415
1416 /* We only spawn main processes and control processes, so any
1417 * process that is not a control process is a main process */
1418 return s->notify_access != NOTIFY_NONE;
1419}
1420
81a2b7ce
LP
1421static int service_spawn(
1422 Service *s,
1423 ExecCommand *c,
21b2ce39 1424 usec_t timeout,
c39f1ce2 1425 ExecFlags flags,
81a2b7ce
LP
1426 pid_t *_pid) {
1427
b9c04eaf 1428 _cleanup_(exec_params_clear) ExecParameters exec_params = {
c39f1ce2
LP
1429 .flags = flags,
1430 .stdin_fd = -1,
1431 .stdout_fd = -1,
1432 .stderr_fd = -1,
25b583d7 1433 .exec_fd = -1,
9fa95f85 1434 };
3c7416b6 1435 _cleanup_strv_free_ char **final_env = NULL, **our_env = NULL, **fd_names = NULL;
5686391b 1436 _cleanup_(sd_event_source_unrefp) sd_event_source *exec_fd_source = NULL;
25b583d7 1437 size_t n_socket_fds = 0, n_storage_fds = 0, n_env = 0;
5686391b 1438 _cleanup_close_ int exec_fd = -1;
3c7416b6
LP
1439 _cleanup_free_ int *fds = NULL;
1440 pid_t pid;
8dd4c05b
LP
1441 int r;
1442
034c6ed7
LP
1443 assert(s);
1444 assert(c);
1445 assert(_pid);
1446
78f93209 1447 r = unit_prepare_exec(UNIT(s)); /* This realizes the cgroup, among other things */
3c7416b6
LP
1448 if (r < 0)
1449 return r;
1450
9c1a61ad
LP
1451 if (flags & EXEC_IS_CONTROL) {
1452 /* If this is a control process, mask the permissions/chroot application if this is requested. */
1453 if (s->permissions_start_only)
1703fa41 1454 exec_params.flags &= ~EXEC_APPLY_SANDBOXING;
9c1a61ad
LP
1455 if (s->root_directory_start_only)
1456 exec_params.flags &= ~EXEC_APPLY_CHROOT;
1457 }
1458
c39f1ce2 1459 if ((flags & EXEC_PASS_FDS) ||
6cf6bbc2
LP
1460 s->exec_context.std_input == EXEC_INPUT_SOCKET ||
1461 s->exec_context.std_output == EXEC_OUTPUT_SOCKET ||
1462 s->exec_context.std_error == EXEC_OUTPUT_SOCKET) {
1463
25b583d7 1464 r = service_collect_fds(s, &fds, &fd_names, &n_socket_fds, &n_storage_fds);
8dd4c05b 1465 if (r < 0)
36c16a7c 1466 return r;
6cf6bbc2 1467
25b583d7 1468 log_unit_debug(UNIT(s), "Passing %zu fds to service", n_socket_fds + n_storage_fds);
4f2d528d 1469 }
44d8db9e 1470
5686391b
LP
1471 if (!FLAGS_SET(flags, EXEC_IS_CONTROL) && s->type == SERVICE_EXEC) {
1472 assert(!s->exec_fd_event_source);
1473
1474 r = service_allocate_exec_fd(s, &exec_fd_source, &exec_fd);
1475 if (r < 0)
1476 return r;
1477 }
1478
36c16a7c
LP
1479 r = service_arm_timer(s, usec_add(now(CLOCK_MONOTONIC), timeout));
1480 if (r < 0)
1481 return r;
034c6ed7 1482
dcf3c3c3 1483 our_env = new0(char*, 10);
36c16a7c
LP
1484 if (!our_env)
1485 return -ENOMEM;
c952c6ec 1486
6375bd20 1487 if (service_exec_needs_notify_socket(s, flags))
36c16a7c
LP
1488 if (asprintf(our_env + n_env++, "NOTIFY_SOCKET=%s", UNIT(s)->manager->notify_socket) < 0)
1489 return -ENOMEM;
c952c6ec 1490
2105e76a 1491 if (s->main_pid > 0)
36c16a7c
LP
1492 if (asprintf(our_env + n_env++, "MAINPID="PID_FMT, s->main_pid) < 0)
1493 return -ENOMEM;
2105e76a 1494
c39f1ce2 1495 if (MANAGER_IS_USER(UNIT(s)->manager))
df0ff127 1496 if (asprintf(our_env + n_env++, "MANAGERPID="PID_FMT, getpid_cached()) < 0)
36c16a7c 1497 return -ENOMEM;
97ae63e2 1498
dcf3c3c3
LP
1499 if (s->pid_file)
1500 if (asprintf(our_env + n_env++, "PIDFILE=%s", s->pid_file) < 0)
1501 return -ENOMEM;
1502
8dd4c05b 1503 if (s->socket_fd >= 0) {
3b1c5241
SL
1504 union sockaddr_union sa;
1505 socklen_t salen = sizeof(sa);
1506
f56e7bfe
LP
1507 /* If this is a per-connection service instance, let's set $REMOTE_ADDR and $REMOTE_PORT to something
1508 * useful. Note that we do this only when we are still connected at this point in time, which we might
1509 * very well not be. Hence we ignore all errors when retrieving peer information (as that might result
1510 * in ENOTCONN), and just use whate we can use. */
f2dbd059 1511
f56e7bfe
LP
1512 if (getpeername(s->socket_fd, &sa.sa, &salen) >= 0 &&
1513 IN_SET(sa.sa.sa_family, AF_INET, AF_INET6, AF_VSOCK)) {
3b1c5241 1514
3b1c5241
SL
1515 _cleanup_free_ char *addr = NULL;
1516 char *t;
882ac6e7 1517 unsigned port;
3b1c5241
SL
1518
1519 r = sockaddr_pretty(&sa.sa, salen, true, false, &addr);
1520 if (r < 0)
36c16a7c 1521 return r;
3b1c5241
SL
1522
1523 t = strappend("REMOTE_ADDR=", addr);
36c16a7c
LP
1524 if (!t)
1525 return -ENOMEM;
3b1c5241
SL
1526 our_env[n_env++] = t;
1527
882ac6e7
SH
1528 r = sockaddr_port(&sa.sa, &port);
1529 if (r < 0)
1530 return r;
3b1c5241 1531
36c16a7c
LP
1532 if (asprintf(&t, "REMOTE_PORT=%u", port) < 0)
1533 return -ENOMEM;
3b1c5241
SL
1534 our_env[n_env++] = t;
1535 }
1536 }
1537
136dc4c4
LP
1538 if (flags & EXEC_SETENV_RESULT) {
1539 if (asprintf(our_env + n_env++, "SERVICE_RESULT=%s", service_result_to_string(s->result)) < 0)
1540 return -ENOMEM;
1541
1542 if (s->main_exec_status.pid > 0 &&
1543 dual_timestamp_is_set(&s->main_exec_status.exit_timestamp)) {
1544 if (asprintf(our_env + n_env++, "EXIT_CODE=%s", sigchld_code_to_string(s->main_exec_status.code)) < 0)
1545 return -ENOMEM;
1546
1547 if (s->main_exec_status.code == CLD_EXITED)
1548 r = asprintf(our_env + n_env++, "EXIT_STATUS=%i", s->main_exec_status.status);
1549 else
1550 r = asprintf(our_env + n_env++, "EXIT_STATUS=%s", signal_to_string(s->main_exec_status.status));
1551 if (r < 0)
1552 return -ENOMEM;
1553 }
1554 }
1555
1ad6e8b3
LP
1556 r = unit_set_exec_params(UNIT(s), &exec_params);
1557 if (r < 0)
1558 return r;
3536f49e
YW
1559
1560 final_env = strv_env_merge(2, exec_params.environment, our_env, NULL);
36c16a7c
LP
1561 if (!final_env)
1562 return -ENOMEM;
c952c6ec 1563
ac647978
LP
1564 /* System D-Bus needs nss-systemd disabled, so that we don't deadlock */
1565 SET_FLAG(exec_params.flags, EXEC_NSS_BYPASS_BUS,
1566 MANAGER_IS_SYSTEM(UNIT(s)->manager) && unit_has_name(UNIT(s), SPECIAL_DBUS_SERVICE));
4ad49000 1567
b9c04eaf 1568 strv_free_and_replace(exec_params.environment, final_env);
9fa95f85 1569 exec_params.fds = fds;
8dd4c05b 1570 exec_params.fd_names = fd_names;
9b141911 1571 exec_params.n_socket_fds = n_socket_fds;
25b583d7 1572 exec_params.n_storage_fds = n_storage_fds;
34b3f625 1573 exec_params.watchdog_usec = service_get_watchdog_usec(s);
a34ceba6 1574 exec_params.selinux_context_net = s->socket_fd_selinux_context_net;
9fa95f85
DM
1575 if (s->type == SERVICE_IDLE)
1576 exec_params.idle_pipe = UNIT(s)->manager->idle_pipe;
a34ceba6
LP
1577 exec_params.stdin_fd = s->stdin_fd;
1578 exec_params.stdout_fd = s->stdout_fd;
1579 exec_params.stderr_fd = s->stderr_fd;
5686391b 1580 exec_params.exec_fd = exec_fd;
9fa95f85 1581
f2341e0a
LP
1582 r = exec_spawn(UNIT(s),
1583 c,
9e2f7c11 1584 &s->exec_context,
9fa95f85 1585 &exec_params,
613b411c 1586 s->exec_runtime,
29206d46 1587 &s->dynamic_creds,
9e2f7c11 1588 &pid);
9e2f7c11 1589 if (r < 0)
36c16a7c 1590 return r;
034c6ed7 1591
5686391b
LP
1592 s->exec_fd_event_source = TAKE_PTR(exec_fd_source);
1593 s->exec_fd_hot = false;
1594
f75f613d
FB
1595 r = unit_watch_pid(UNIT(s), pid, true);
1596 if (r < 0)
36c16a7c 1597 return r;
034c6ed7
LP
1598
1599 *_pid = pid;
1600
5cb5a6ff 1601 return 0;
034c6ed7
LP
1602}
1603
80876c20
LP
1604static int main_pid_good(Service *s) {
1605 assert(s);
1606
51894d70 1607 /* Returns 0 if the pid is dead, > 0 if it is good, < 0 if we don't know */
80876c20 1608
fc08079e 1609 /* If we know the pid file, then let's just check if it is
80876c20 1610 * still valid */
6dfa5494
LP
1611 if (s->main_pid_known) {
1612
1613 /* If it's an alien child let's check if it is still
1614 * alive ... */
62220cf7 1615 if (s->main_pid_alien && s->main_pid > 0)
9f5650ae 1616 return pid_is_alive(s->main_pid);
6dfa5494
LP
1617
1618 /* .. otherwise assume we'll get a SIGCHLD for it,
1619 * which we really should wait for to collect exit
1620 * status and code */
80876c20 1621 return s->main_pid > 0;
6dfa5494 1622 }
80876c20
LP
1623
1624 /* We don't know the pid */
1625 return -EAGAIN;
1626}
1627
019be286 1628static int control_pid_good(Service *s) {
80876c20
LP
1629 assert(s);
1630
07697d7e
LP
1631 /* Returns 0 if the control PID is dead, > 0 if it is good. We never actually return < 0 here, but in order to
1632 * make this function as similar as possible to main_pid_good() and cgroup_good(), we pretend that < 0 also
1633 * means: we can't figure it out. */
1634
80876c20
LP
1635 return s->control_pid > 0;
1636}
1637
1638static int cgroup_good(Service *s) {
1639 int r;
1640
1641 assert(s);
1642
07697d7e
LP
1643 /* Returns 0 if the cgroup is empty or doesn't exist, > 0 if it is exists and is populated, < 0 if we can't
1644 * figure it out */
1645
4ad49000
LP
1646 if (!UNIT(s)->cgroup_path)
1647 return 0;
1648
6f883237 1649 r = cg_is_empty_recursive(SYSTEMD_CGROUP_CONTROLLER, UNIT(s)->cgroup_path);
117dcc57 1650 if (r < 0)
80876c20
LP
1651 return r;
1652
b13ddbbc 1653 return r == 0;
80876c20
LP
1654}
1655
a509f0e6
LP
1656static bool service_shall_restart(Service *s) {
1657 assert(s);
1658
1659 /* Don't restart after manual stops */
1660 if (s->forbid_restart)
1661 return false;
1662
1663 /* Never restart if this is configured as special exception */
1664 if (exit_status_set_test(&s->restart_prevent_status, s->main_exec_status.code, s->main_exec_status.status))
1665 return false;
1666
1667 /* Restart if the exit code/status are configured as restart triggers */
1668 if (exit_status_set_test(&s->restart_force_status, s->main_exec_status.code, s->main_exec_status.status))
1669 return true;
1670
1671 switch (s->restart) {
1672
1673 case SERVICE_RESTART_NO:
1674 return false;
1675
1676 case SERVICE_RESTART_ALWAYS:
1677 return true;
1678
1679 case SERVICE_RESTART_ON_SUCCESS:
1680 return s->result == SERVICE_SUCCESS;
1681
1682 case SERVICE_RESTART_ON_FAILURE:
1683 return s->result != SERVICE_SUCCESS;
1684
1685 case SERVICE_RESTART_ON_ABNORMAL:
1686 return !IN_SET(s->result, SERVICE_SUCCESS, SERVICE_FAILURE_EXIT_CODE);
1687
1688 case SERVICE_RESTART_ON_WATCHDOG:
1689 return s->result == SERVICE_FAILURE_WATCHDOG;
1690
1691 case SERVICE_RESTART_ON_ABORT:
1692 return IN_SET(s->result, SERVICE_FAILURE_SIGNAL, SERVICE_FAILURE_CORE_DUMP);
1693
1694 default:
1695 assert_not_reached("unknown restart setting");
1696 }
1697}
1698
deb4e708
MK
1699static bool service_will_restart(Unit *u) {
1700 Service *s = SERVICE(u);
1701
53f47dfc
YW
1702 assert(s);
1703
deb4e708
MK
1704 if (s->will_auto_restart)
1705 return true;
53f47dfc
YW
1706 if (s->state == SERVICE_AUTO_RESTART)
1707 return true;
1708 if (!UNIT(s)->job)
1709 return false;
1710 if (UNIT(s)->job->type == JOB_START)
1711 return true;
2ad2e41a 1712
53f47dfc
YW
1713 return false;
1714}
1715
f42806df 1716static void service_enter_dead(Service *s, ServiceResult f, bool allow_restart) {
034c6ed7 1717 int r;
0f52f8e5 1718
034c6ed7
LP
1719 assert(s);
1720
0f52f8e5
LP
1721 /* If there's a stop job queued before we enter the DEAD state, we shouldn't act on Restart=, in order to not
1722 * undo what has already been enqueued. */
1723 if (unit_stop_pending(UNIT(s)))
1724 allow_restart = false;
1725
a0fef983 1726 if (s->result == SERVICE_SUCCESS)
f42806df 1727 s->result = f;
034c6ed7 1728
aac99f30 1729 unit_log_result(UNIT(s), s->result == SERVICE_SUCCESS, service_result_to_string(s->result));
ed77d407 1730
deb4e708
MK
1731 if (allow_restart && service_shall_restart(s))
1732 s->will_auto_restart = true;
1733
7eb2a8a1
LP
1734 /* Make sure service_release_resources() doesn't destroy our FD store, while we are changing through
1735 * SERVICE_FAILED/SERVICE_DEAD before entering into SERVICE_AUTO_RESTART. */
1736 s->n_keep_fd_store ++;
1737
0c7f15b3
MS
1738 service_set_state(s, s->result != SERVICE_SUCCESS ? SERVICE_FAILED : SERVICE_DEAD);
1739
deb4e708
MK
1740 if (s->will_auto_restart) {
1741 s->will_auto_restart = false;
034c6ed7 1742
36c16a7c 1743 r = service_arm_timer(s, usec_add(now(CLOCK_MONOTONIC), s->restart_usec));
7eb2a8a1
LP
1744 if (r < 0) {
1745 s->n_keep_fd_store--;
034c6ed7 1746 goto fail;
7eb2a8a1 1747 }
034c6ed7
LP
1748
1749 service_set_state(s, SERVICE_AUTO_RESTART);
7a0019d3
LP
1750 } else
1751 /* If we shan't restart, then flush out the restart counter. But don't do that immediately, so that the
1752 * user can still introspect the counter. Do so on the next start. */
1753 s->flush_n_restarts = true;
034c6ed7 1754
7eb2a8a1
LP
1755 /* The new state is in effect, let's decrease the fd store ref counter again. Let's also readd us to the GC
1756 * queue, so that the fd store is possibly gc'ed again */
1757 s->n_keep_fd_store--;
1758 unit_add_to_gc_queue(UNIT(s));
1759
f2341e0a 1760 /* The next restart might not be a manual stop, hence reset the flag indicating manual stops */
47342320
LP
1761 s->forbid_restart = false;
1762
e66cf1a3 1763 /* We want fresh tmpdirs in case service is started again immediately */
e8a565cb 1764 s->exec_runtime = exec_runtime_unref(s->exec_runtime, true);
c17ec25e 1765
53f47dfc 1766 if (s->exec_context.runtime_directory_preserve_mode == EXEC_PRESERVE_NO ||
deb4e708 1767 (s->exec_context.runtime_directory_preserve_mode == EXEC_PRESERVE_RESTART && !service_will_restart(UNIT(s))))
53f47dfc 1768 /* Also, remove the runtime directory */
3536f49e 1769 exec_context_destroy_runtime_directory(&s->exec_context, UNIT(s)->manager->prefix[EXEC_DIRECTORY_RUNTIME]);
e66cf1a3 1770
00d9ef85
LP
1771 /* Get rid of the IPC bits of the user */
1772 unit_unref_uid_gid(UNIT(s), true);
1773
29206d46
LP
1774 /* Release the user, and destroy it if we are the only remaining owner */
1775 dynamic_creds_destroy(&s->dynamic_creds);
1776
9285c9ff
LN
1777 /* Try to delete the pid file. At this point it will be
1778 * out-of-date, and some software might be confused by it, so
1779 * let's remove it. */
1780 if (s->pid_file)
fabab190 1781 (void) unlink(s->pid_file);
9285c9ff 1782
6f765baf
LP
1783 /* Reset TTY ownership if necessary */
1784 exec_context_revert_tty(&s->exec_context);
1785
034c6ed7
LP
1786 return;
1787
1788fail:
f2341e0a 1789 log_unit_warning_errno(UNIT(s), r, "Failed to run install restart timer: %m");
f42806df 1790 service_enter_dead(s, SERVICE_FAILURE_RESOURCES, false);
034c6ed7
LP
1791}
1792
f42806df 1793static void service_enter_stop_post(Service *s, ServiceResult f) {
034c6ed7
LP
1794 int r;
1795 assert(s);
1796
a0fef983 1797 if (s->result == SERVICE_SUCCESS)
f42806df 1798 s->result = f;
034c6ed7 1799
5e94833f 1800 service_unwatch_control_pid(s);
50be4f4a 1801 (void) unit_enqueue_rewatch_pids(UNIT(s));
5e94833f 1802
117dcc57
ZJS
1803 s->control_command = s->exec_command[SERVICE_EXEC_STOP_POST];
1804 if (s->control_command) {
867b3b7d
LP
1805 s->control_command_id = SERVICE_EXEC_STOP_POST;
1806
ecedd90f
LP
1807 r = service_spawn(s,
1808 s->control_command,
21b2ce39 1809 s->timeout_stop_usec,
78f93209 1810 EXEC_APPLY_SANDBOXING|EXEC_APPLY_CHROOT|EXEC_APPLY_TTY_STDIN|EXEC_IS_CONTROL|EXEC_SETENV_RESULT|EXEC_CONTROL_CGROUP,
ecedd90f
LP
1811 &s->control_pid);
1812 if (r < 0)
034c6ed7
LP
1813 goto fail;
1814
80876c20
LP
1815 service_set_state(s, SERVICE_STOP_POST);
1816 } else
ac84d1fb 1817 service_enter_signal(s, SERVICE_FINAL_SIGTERM, SERVICE_SUCCESS);
034c6ed7
LP
1818
1819 return;
1820
1821fail:
f2341e0a 1822 log_unit_warning_errno(UNIT(s), r, "Failed to run 'stop-post' task: %m");
f42806df 1823 service_enter_signal(s, SERVICE_FINAL_SIGTERM, SERVICE_FAILURE_RESOURCES);
034c6ed7
LP
1824}
1825
4940c0b0
LP
1826static int state_to_kill_operation(ServiceState state) {
1827 switch (state) {
1828
c87700a1
AZ
1829 case SERVICE_STOP_WATCHDOG:
1830 return KILL_WATCHDOG;
4940c0b0
LP
1831
1832 case SERVICE_STOP_SIGTERM:
1833 case SERVICE_FINAL_SIGTERM:
1834 return KILL_TERMINATE;
1835
1836 case SERVICE_STOP_SIGKILL:
1837 case SERVICE_FINAL_SIGKILL:
1838 return KILL_KILL;
1839
1840 default:
1841 return _KILL_OPERATION_INVALID;
1842 }
1843}
1844
f42806df 1845static void service_enter_signal(Service *s, ServiceState state, ServiceResult f) {
034c6ed7 1846 int r;
034c6ed7
LP
1847
1848 assert(s);
1849
a0fef983 1850 if (s->result == SERVICE_SUCCESS)
f42806df 1851 s->result = f;
034c6ed7 1852
50be4f4a
LP
1853 /* Before sending any signal, make sure we track all members of this cgroup */
1854 (void) unit_watch_all_pids(UNIT(s));
1855
1856 /* Also, enqueue a job that we recheck all our PIDs a bit later, given that it's likely some processes have
1857 * died now */
1858 (void) unit_enqueue_rewatch_pids(UNIT(s));
a911bb9a 1859
cd2086fe
LP
1860 r = unit_kill_context(
1861 UNIT(s),
1862 &s->kill_context,
4940c0b0 1863 state_to_kill_operation(state),
cd2086fe
LP
1864 s->main_pid,
1865 s->control_pid,
1866 s->main_pid_alien);
1867 if (r < 0)
1868 goto fail;
034c6ed7 1869
cd2086fe 1870 if (r > 0) {
dc653bf4
JK
1871 r = service_arm_timer(s, usec_add(now(CLOCK_MONOTONIC),
1872 state == SERVICE_STOP_WATCHDOG ? service_timeout_abort_usec(s) : s->timeout_stop_usec));
36c16a7c
LP
1873 if (r < 0)
1874 goto fail;
d6ea93e3 1875
80876c20 1876 service_set_state(s, state);
c87700a1 1877 } else if (IN_SET(state, SERVICE_STOP_WATCHDOG, SERVICE_STOP_SIGTERM) && s->kill_context.send_sigkill)
ac84d1fb 1878 service_enter_signal(s, SERVICE_STOP_SIGKILL, SERVICE_SUCCESS);
c87700a1 1879 else if (IN_SET(state, SERVICE_STOP_WATCHDOG, SERVICE_STOP_SIGTERM, SERVICE_STOP_SIGKILL))
f42806df 1880 service_enter_stop_post(s, SERVICE_SUCCESS);
1db0db4b 1881 else if (state == SERVICE_FINAL_SIGTERM && s->kill_context.send_sigkill)
ac84d1fb 1882 service_enter_signal(s, SERVICE_FINAL_SIGKILL, SERVICE_SUCCESS);
80876c20 1883 else
f42806df 1884 service_enter_dead(s, SERVICE_SUCCESS, true);
034c6ed7
LP
1885
1886 return;
1887
1888fail:
f2341e0a 1889 log_unit_warning_errno(UNIT(s), r, "Failed to kill processes: %m");
034c6ed7 1890
c87700a1 1891 if (IN_SET(state, SERVICE_STOP_WATCHDOG, SERVICE_STOP_SIGTERM, SERVICE_STOP_SIGKILL))
f42806df 1892 service_enter_stop_post(s, SERVICE_FAILURE_RESOURCES);
034c6ed7 1893 else
f42806df 1894 service_enter_dead(s, SERVICE_FAILURE_RESOURCES, true);
034c6ed7
LP
1895}
1896
308d72dc
LP
1897static void service_enter_stop_by_notify(Service *s) {
1898 assert(s);
1899
50be4f4a 1900 (void) unit_enqueue_rewatch_pids(UNIT(s));
308d72dc 1901
36c16a7c 1902 service_arm_timer(s, usec_add(now(CLOCK_MONOTONIC), s->timeout_stop_usec));
308d72dc 1903
6041a7ee
MS
1904 /* The service told us it's stopping, so it's as if we SIGTERM'd it. */
1905 service_set_state(s, SERVICE_STOP_SIGTERM);
308d72dc
LP
1906}
1907
f42806df 1908static void service_enter_stop(Service *s, ServiceResult f) {
034c6ed7 1909 int r;
5925dd3c 1910
034c6ed7
LP
1911 assert(s);
1912
a0fef983 1913 if (s->result == SERVICE_SUCCESS)
f42806df 1914 s->result = f;
034c6ed7 1915
5e94833f 1916 service_unwatch_control_pid(s);
50be4f4a 1917 (void) unit_enqueue_rewatch_pids(UNIT(s));
5e94833f 1918
117dcc57
ZJS
1919 s->control_command = s->exec_command[SERVICE_EXEC_STOP];
1920 if (s->control_command) {
867b3b7d
LP
1921 s->control_command_id = SERVICE_EXEC_STOP;
1922
ecedd90f
LP
1923 r = service_spawn(s,
1924 s->control_command,
21b2ce39 1925 s->timeout_stop_usec,
78f93209 1926 EXEC_APPLY_SANDBOXING|EXEC_APPLY_CHROOT|EXEC_IS_CONTROL|EXEC_SETENV_RESULT|EXEC_CONTROL_CGROUP,
ecedd90f
LP
1927 &s->control_pid);
1928 if (r < 0)
034c6ed7
LP
1929 goto fail;
1930
80876c20
LP
1931 service_set_state(s, SERVICE_STOP);
1932 } else
f42806df 1933 service_enter_signal(s, SERVICE_STOP_SIGTERM, SERVICE_SUCCESS);
034c6ed7
LP
1934
1935 return;
1936
1937fail:
f2341e0a 1938 log_unit_warning_errno(UNIT(s), r, "Failed to run 'stop' task: %m");
f42806df 1939 service_enter_signal(s, SERVICE_STOP_SIGTERM, SERVICE_FAILURE_RESOURCES);
034c6ed7
LP
1940}
1941
957c3cf9
LP
1942static bool service_good(Service *s) {
1943 int main_pid_ok;
1944 assert(s);
1945
1946 if (s->type == SERVICE_DBUS && !s->bus_name_good)
1947 return false;
1948
1949 main_pid_ok = main_pid_good(s);
1950 if (main_pid_ok > 0) /* It's alive */
1951 return true;
1952 if (main_pid_ok == 0) /* It's dead */
1953 return false;
1954
1955 /* OK, we don't know anything about the main PID, maybe
1956 * because there is none. Let's check the control group
1957 * instead. */
1958
1959 return cgroup_good(s) != 0;
1960}
1961
f42806df 1962static void service_enter_running(Service *s, ServiceResult f) {
80876c20
LP
1963 assert(s);
1964
a0fef983 1965 if (s->result == SERVICE_SUCCESS)
f42806df 1966 s->result = f;
80876c20 1967
089b64d5
LP
1968 service_unwatch_control_pid(s);
1969
ec5b1452
LP
1970 if (s->result != SERVICE_SUCCESS)
1971 service_enter_signal(s, SERVICE_STOP_SIGTERM, f);
1972 else if (service_good(s)) {
308d72dc 1973
ec5b1452 1974 /* If there are any queued up sd_notify() notifications, process them now */
308d72dc
LP
1975 if (s->notify_state == NOTIFY_RELOADING)
1976 service_enter_reload_by_notify(s);
1977 else if (s->notify_state == NOTIFY_STOPPING)
1978 service_enter_stop_by_notify(s);
36c16a7c 1979 else {
308d72dc 1980 service_set_state(s, SERVICE_RUNNING);
36c16a7c
LP
1981 service_arm_timer(s, usec_add(UNIT(s)->active_enter_timestamp.monotonic, s->runtime_max_usec));
1982 }
308d72dc 1983
ec5b1452 1984 } else if (s->remain_after_exit)
80876c20
LP
1985 service_set_state(s, SERVICE_EXITED);
1986 else
f42806df 1987 service_enter_stop(s, SERVICE_SUCCESS);
80876c20
LP
1988}
1989
034c6ed7
LP
1990static void service_enter_start_post(Service *s) {
1991 int r;
1992 assert(s);
1993
5e94833f 1994 service_unwatch_control_pid(s);
842129f5 1995 service_reset_watchdog(s);
bb242b7b 1996
117dcc57
ZJS
1997 s->control_command = s->exec_command[SERVICE_EXEC_START_POST];
1998 if (s->control_command) {
867b3b7d
LP
1999 s->control_command_id = SERVICE_EXEC_START_POST;
2000
ecedd90f
LP
2001 r = service_spawn(s,
2002 s->control_command,
21b2ce39 2003 s->timeout_start_usec,
78f93209 2004 EXEC_APPLY_SANDBOXING|EXEC_APPLY_CHROOT|EXEC_IS_CONTROL|EXEC_CONTROL_CGROUP,
ecedd90f
LP
2005 &s->control_pid);
2006 if (r < 0)
034c6ed7
LP
2007 goto fail;
2008
80876c20
LP
2009 service_set_state(s, SERVICE_START_POST);
2010 } else
f42806df 2011 service_enter_running(s, SERVICE_SUCCESS);
034c6ed7
LP
2012
2013 return;
2014
2015fail:
f2341e0a 2016 log_unit_warning_errno(UNIT(s), r, "Failed to run 'start-post' task: %m");
f42806df 2017 service_enter_stop(s, SERVICE_FAILURE_RESOURCES);
034c6ed7
LP
2018}
2019
e9a4f676 2020static void service_kill_control_process(Service *s) {
a6951a50 2021 int r;
4ad49000 2022
a6951a50
LP
2023 assert(s);
2024
e9a4f676
LP
2025 if (s->control_pid <= 0)
2026 return;
4ad49000 2027
e9a4f676
LP
2028 r = kill_and_sigcont(s->control_pid, SIGKILL);
2029 if (r < 0) {
2030 _cleanup_free_ char *comm = NULL;
a6951a50 2031
e9a4f676 2032 (void) get_process_comm(s->control_pid, &comm);
a6951a50 2033
e9a4f676
LP
2034 log_unit_debug_errno(UNIT(s), r, "Failed to kill control process " PID_FMT " (%s), ignoring: %m",
2035 s->control_pid, strna(comm));
a6951a50 2036 }
4ad49000
LP
2037}
2038
c53d2d54
DB
2039static int service_adverse_to_leftover_processes(Service *s) {
2040 assert(s);
2041
2042 /* KillMode=mixed and control group are used to indicate that all process should be killed off.
2043 * SendSIGKILL is used for services that require a clean shutdown. These are typically database
2044 * service where a SigKilled process would result in a lengthy recovery and who's shutdown or
2045 * startup time is quite variable (so Timeout settings aren't of use).
2046 *
2047 * Here we take these two factors and refuse to start a service if there are existing processes
2048 * within a control group. Databases, while generally having some protection against multiple
2049 * instances running, lets not stress the rigor of these. Also ExecStartPre parts of the service
2050 * aren't as rigoriously written to protect aganst against multiple use. */
2051 if (unit_warn_leftover_processes(UNIT(s)) &&
2052 IN_SET(s->kill_context.kill_mode, KILL_MIXED, KILL_CONTROL_GROUP) &&
2053 !s->kill_context.send_sigkill) {
2054 return log_unit_error_errno(UNIT(s), SYNTHETIC_ERRNO(EBUSY), "Will not start SendSIGKILL=no service of type KillMode=control-group or mixed while processes exist");
2055 }
2056 return 0;
2057}
2058
034c6ed7 2059static void service_enter_start(Service *s) {
4ad49000 2060 ExecCommand *c;
36c16a7c 2061 usec_t timeout;
034c6ed7
LP
2062 pid_t pid;
2063 int r;
2064
2065 assert(s);
2066
41efeaec
LP
2067 service_unwatch_control_pid(s);
2068 service_unwatch_main_pid(s);
80876c20 2069
c53d2d54
DB
2070 r = service_adverse_to_leftover_processes(s);
2071 if (r < 0)
2072 goto fail;
a4634b21 2073
867b3b7d
LP
2074 if (s->type == SERVICE_FORKING) {
2075 s->control_command_id = SERVICE_EXEC_START;
2076 c = s->control_command = s->exec_command[SERVICE_EXEC_START];
2077
2078 s->main_command = NULL;
2079 } else {
2080 s->control_command_id = _SERVICE_EXEC_COMMAND_INVALID;
2081 s->control_command = NULL;
2082
2083 c = s->main_command = s->exec_command[SERVICE_EXEC_START];
2084 }
34e9ba66 2085
96fb8242 2086 if (!c) {
47fffb35
LP
2087 if (s->type != SERVICE_ONESHOT) {
2088 /* There's no command line configured for the main command? Hmm, that is strange. This can only
2089 * happen if the configuration changes at runtime. In this case, let's enter a failure
2090 * state. */
b8b846d7 2091 log_unit_error(UNIT(s), "There's no 'start' task anymore we could start.");
47fffb35
LP
2092 r = -ENXIO;
2093 goto fail;
2094 }
2095
ef5ae8e7
ZJS
2096 /* We force a fake state transition here. Otherwise, the unit would go directly from
2097 * SERVICE_DEAD to SERVICE_DEAD without SERVICE_ACTIVATING or SERVICE_ACTIVE
2098 * inbetween. This way we can later trigger actions that depend on the state
2099 * transition, including SuccessAction=. */
2100 service_set_state(s, SERVICE_START);
2101
96fb8242
LP
2102 service_enter_start_post(s);
2103 return;
2104 }
2105
36c16a7c
LP
2106 if (IN_SET(s->type, SERVICE_SIMPLE, SERVICE_IDLE))
2107 /* For simple + idle this is the main process. We don't apply any timeout here, but
2108 * service_enter_running() will later apply the .runtime_max_usec timeout. */
2109 timeout = USEC_INFINITY;
2110 else
2111 timeout = s->timeout_start_usec;
2112
ecedd90f
LP
2113 r = service_spawn(s,
2114 c,
36c16a7c 2115 timeout,
1703fa41 2116 EXEC_PASS_FDS|EXEC_APPLY_SANDBOXING|EXEC_APPLY_CHROOT|EXEC_APPLY_TTY_STDIN|EXEC_SET_WATCHDOG,
ecedd90f
LP
2117 &pid);
2118 if (r < 0)
034c6ed7
LP
2119 goto fail;
2120
36c16a7c 2121 if (IN_SET(s->type, SERVICE_SIMPLE, SERVICE_IDLE)) {
034c6ed7
LP
2122 /* For simple services we immediately start
2123 * the START_POST binaries. */
2124
5925dd3c 2125 service_set_main_pid(s, pid);
034c6ed7
LP
2126 service_enter_start_post(s);
2127
2128 } else if (s->type == SERVICE_FORKING) {
2129
2130 /* For forking services we wait until the start
2131 * process exited. */
2132
e55224ca 2133 s->control_pid = pid;
80876c20
LP
2134 service_set_state(s, SERVICE_START);
2135
5686391b 2136 } else if (IN_SET(s->type, SERVICE_ONESHOT, SERVICE_DBUS, SERVICE_NOTIFY, SERVICE_EXEC)) {
7d55e835 2137
5686391b 2138 /* For oneshot services we wait until the start process exited, too, but it is our main process. */
7d55e835 2139
5686391b
LP
2140 /* For D-Bus services we know the main pid right away, but wait for the bus name to appear on the
2141 * bus. 'notify' and 'exec' services are similar. */
05e343b7 2142
5925dd3c 2143 service_set_main_pid(s, pid);
80876c20 2144 service_set_state(s, SERVICE_START);
034c6ed7
LP
2145 } else
2146 assert_not_reached("Unknown service type");
2147
2148 return;
2149
2150fail:
f2341e0a 2151 log_unit_warning_errno(UNIT(s), r, "Failed to run 'start' task: %m");
c3fda31d 2152 service_enter_signal(s, SERVICE_STOP_SIGTERM, SERVICE_FAILURE_RESOURCES);
034c6ed7
LP
2153}
2154
2155static void service_enter_start_pre(Service *s) {
2156 int r;
2157
2158 assert(s);
2159
5e94833f
LP
2160 service_unwatch_control_pid(s);
2161
117dcc57
ZJS
2162 s->control_command = s->exec_command[SERVICE_EXEC_START_PRE];
2163 if (s->control_command) {
8f53a7b8 2164
c53d2d54
DB
2165 r = service_adverse_to_leftover_processes(s);
2166 if (r < 0)
2167 goto fail;
a4634b21 2168
867b3b7d
LP
2169 s->control_command_id = SERVICE_EXEC_START_PRE;
2170
ecedd90f
LP
2171 r = service_spawn(s,
2172 s->control_command,
21b2ce39 2173 s->timeout_start_usec,
1703fa41 2174 EXEC_APPLY_SANDBOXING|EXEC_APPLY_CHROOT|EXEC_IS_CONTROL|EXEC_APPLY_TTY_STDIN,
ecedd90f
LP
2175 &s->control_pid);
2176 if (r < 0)
034c6ed7
LP
2177 goto fail;
2178
80876c20
LP
2179 service_set_state(s, SERVICE_START_PRE);
2180 } else
034c6ed7
LP
2181 service_enter_start(s);
2182
2183 return;
2184
2185fail:
f2341e0a 2186 log_unit_warning_errno(UNIT(s), r, "Failed to run 'start-pre' task: %m");
f42806df 2187 service_enter_dead(s, SERVICE_FAILURE_RESOURCES, true);
034c6ed7
LP
2188}
2189
2190static void service_enter_restart(Service *s) {
4afd3348 2191 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
034c6ed7 2192 int r;
398ef8ba 2193
034c6ed7
LP
2194 assert(s);
2195
a8bb2e65
LP
2196 if (UNIT(s)->job && UNIT(s)->job->type == JOB_STOP) {
2197 /* Don't restart things if we are going down anyway */
f2341e0a 2198 log_unit_info(UNIT(s), "Stop job pending for unit, delaying automatic restart.");
2edfa366 2199
36c16a7c 2200 r = service_arm_timer(s, usec_add(now(CLOCK_MONOTONIC), s->restart_usec));
a8bb2e65 2201 if (r < 0)
2edfa366 2202 goto fail;
feae8adb
DW
2203
2204 return;
2edfa366
LP
2205 }
2206
48bb5876
DW
2207 /* Any units that are bound to this service must also be
2208 * restarted. We use JOB_RESTART (instead of the more obvious
2209 * JOB_START) here so that those dependency jobs will be added
2210 * as well. */
50cbaba4 2211 r = manager_add_job(UNIT(s)->manager, JOB_RESTART, UNIT(s), JOB_REPLACE, NULL, &error, NULL);
48bb5876 2212 if (r < 0)
034c6ed7
LP
2213 goto fail;
2214
7a0019d3
LP
2215 /* Count the jobs we enqueue for restarting. This counter is maintained as long as the unit isn't fully
2216 * stopped, i.e. as long as it remains up or remains in auto-start states. The use can reset the counter
2217 * explicitly however via the usual "systemctl reset-failure" logic. */
2218 s->n_restarts ++;
2219 s->flush_n_restarts = false;
2220
2221 log_struct(LOG_INFO,
2222 "MESSAGE_ID=" SD_MESSAGE_UNIT_RESTART_SCHEDULED_STR,
2223 LOG_UNIT_ID(UNIT(s)),
f1c50bec 2224 LOG_UNIT_INVOCATION_ID(UNIT(s)),
7a0019d3 2225 LOG_UNIT_MESSAGE(UNIT(s), "Scheduled restart job, restart counter is at %u.", s->n_restarts),
a1230ff9 2226 "N_RESTARTS=%u", s->n_restarts);
7a0019d3
LP
2227
2228 /* Notify clients about changed restart counter */
2229 unit_add_to_dbus_queue(UNIT(s));
2230
a8bb2e65
LP
2231 /* Note that we stay in the SERVICE_AUTO_RESTART state here,
2232 * it will be canceled as part of the service_stop() call that
2233 * is executed as part of JOB_RESTART. */
2234
034c6ed7
LP
2235 return;
2236
2237fail:
f2341e0a 2238 log_unit_warning(UNIT(s), "Failed to schedule restart job: %s", bus_error_message(&error, -r));
f42806df 2239 service_enter_dead(s, SERVICE_FAILURE_RESOURCES, false);
034c6ed7
LP
2240}
2241
308d72dc 2242static void service_enter_reload_by_notify(Service *s) {
15d167f8
JW
2243 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
2244 int r;
2245
308d72dc
LP
2246 assert(s);
2247
36c16a7c 2248 service_arm_timer(s, usec_add(now(CLOCK_MONOTONIC), s->timeout_start_usec));
308d72dc 2249 service_set_state(s, SERVICE_RELOAD);
15d167f8
JW
2250
2251 /* service_enter_reload_by_notify is never called during a reload, thus no loops are possible. */
2252 r = manager_propagate_reload(UNIT(s)->manager, UNIT(s), JOB_FAIL, &error);
2253 if (r < 0)
2254 log_unit_warning(UNIT(s), "Failed to schedule propagation of reload: %s", bus_error_message(&error, -r));
308d72dc
LP
2255}
2256
034c6ed7
LP
2257static void service_enter_reload(Service *s) {
2258 int r;
2259
2260 assert(s);
2261
5e94833f 2262 service_unwatch_control_pid(s);
95c906ae 2263 s->reload_result = SERVICE_SUCCESS;
5e94833f 2264
117dcc57
ZJS
2265 s->control_command = s->exec_command[SERVICE_EXEC_RELOAD];
2266 if (s->control_command) {
867b3b7d
LP
2267 s->control_command_id = SERVICE_EXEC_RELOAD;
2268
ecedd90f
LP
2269 r = service_spawn(s,
2270 s->control_command,
21b2ce39 2271 s->timeout_start_usec,
78f93209 2272 EXEC_APPLY_SANDBOXING|EXEC_APPLY_CHROOT|EXEC_IS_CONTROL|EXEC_CONTROL_CGROUP,
ecedd90f
LP
2273 &s->control_pid);
2274 if (r < 0)
034c6ed7
LP
2275 goto fail;
2276
80876c20
LP
2277 service_set_state(s, SERVICE_RELOAD);
2278 } else
f42806df 2279 service_enter_running(s, SERVICE_SUCCESS);
034c6ed7
LP
2280
2281 return;
2282
2283fail:
f2341e0a 2284 log_unit_warning_errno(UNIT(s), r, "Failed to run 'reload' task: %m");
f42806df
LP
2285 s->reload_result = SERVICE_FAILURE_RESOURCES;
2286 service_enter_running(s, SERVICE_SUCCESS);
034c6ed7
LP
2287}
2288
f42806df 2289static void service_run_next_control(Service *s) {
36c16a7c 2290 usec_t timeout;
034c6ed7
LP
2291 int r;
2292
2293 assert(s);
2294 assert(s->control_command);
2295 assert(s->control_command->command_next);
2296
34e9ba66 2297 assert(s->control_command_id != SERVICE_EXEC_START);
034c6ed7 2298
34e9ba66 2299 s->control_command = s->control_command->command_next;
5e94833f
LP
2300 service_unwatch_control_pid(s);
2301
36c16a7c
LP
2302 if (IN_SET(s->state, SERVICE_START_PRE, SERVICE_START, SERVICE_START_POST, SERVICE_RUNNING, SERVICE_RELOAD))
2303 timeout = s->timeout_start_usec;
2304 else
2305 timeout = s->timeout_stop_usec;
2306
ecedd90f
LP
2307 r = service_spawn(s,
2308 s->control_command,
36c16a7c 2309 timeout,
1703fa41 2310 EXEC_APPLY_SANDBOXING|EXEC_APPLY_CHROOT|EXEC_IS_CONTROL|
136dc4c4 2311 (IN_SET(s->control_command_id, SERVICE_EXEC_START_PRE, SERVICE_EXEC_STOP_POST) ? EXEC_APPLY_TTY_STDIN : 0)|
78f93209
LP
2312 (IN_SET(s->control_command_id, SERVICE_EXEC_STOP, SERVICE_EXEC_STOP_POST) ? EXEC_SETENV_RESULT : 0)|
2313 (IN_SET(s->control_command_id, SERVICE_EXEC_START_POST, SERVICE_EXEC_RELOAD, SERVICE_EXEC_STOP, SERVICE_EXEC_STOP_POST) ? EXEC_CONTROL_CGROUP : 0),
ecedd90f
LP
2314 &s->control_pid);
2315 if (r < 0)
034c6ed7
LP
2316 goto fail;
2317
2318 return;
2319
2320fail:
f2341e0a 2321 log_unit_warning_errno(UNIT(s), r, "Failed to run next control task: %m");
034c6ed7 2322
4cd9fa81 2323 if (IN_SET(s->state, SERVICE_START_PRE, SERVICE_START_POST, SERVICE_STOP))
f42806df 2324 service_enter_signal(s, SERVICE_STOP_SIGTERM, SERVICE_FAILURE_RESOURCES);
034c6ed7 2325 else if (s->state == SERVICE_STOP_POST)
f42806df 2326 service_enter_dead(s, SERVICE_FAILURE_RESOURCES, true);
e2f3b44c 2327 else if (s->state == SERVICE_RELOAD) {
f42806df
LP
2328 s->reload_result = SERVICE_FAILURE_RESOURCES;
2329 service_enter_running(s, SERVICE_SUCCESS);
e2f3b44c 2330 } else
f42806df 2331 service_enter_stop(s, SERVICE_FAILURE_RESOURCES);
5cb5a6ff
LP
2332}
2333
f42806df 2334static void service_run_next_main(Service *s) {
34e9ba66
LP
2335 pid_t pid;
2336 int r;
2337
2338 assert(s);
867b3b7d
LP
2339 assert(s->main_command);
2340 assert(s->main_command->command_next);
2341 assert(s->type == SERVICE_ONESHOT);
34e9ba66 2342
867b3b7d 2343 s->main_command = s->main_command->command_next;
34e9ba66
LP
2344 service_unwatch_main_pid(s);
2345
ecedd90f
LP
2346 r = service_spawn(s,
2347 s->main_command,
21b2ce39 2348 s->timeout_start_usec,
1703fa41 2349 EXEC_PASS_FDS|EXEC_APPLY_SANDBOXING|EXEC_APPLY_CHROOT|EXEC_APPLY_TTY_STDIN|EXEC_SET_WATCHDOG,
ecedd90f
LP
2350 &pid);
2351 if (r < 0)
34e9ba66
LP
2352 goto fail;
2353
2354 service_set_main_pid(s, pid);
2355
2356 return;
2357
2358fail:
f2341e0a 2359 log_unit_warning_errno(UNIT(s), r, "Failed to run next main task: %m");
f42806df 2360 service_enter_stop(s, SERVICE_FAILURE_RESOURCES);
34e9ba66
LP
2361}
2362
87f0e418
LP
2363static int service_start(Unit *u) {
2364 Service *s = SERVICE(u);
07299350 2365 int r;
5cb5a6ff
LP
2366
2367 assert(s);
2368
034c6ed7
LP
2369 /* We cannot fulfill this request right now, try again later
2370 * please! */
a00973af 2371 if (IN_SET(s->state,
c87700a1 2372 SERVICE_STOP, SERVICE_STOP_WATCHDOG, SERVICE_STOP_SIGTERM, SERVICE_STOP_SIGKILL, SERVICE_STOP_POST,
a00973af 2373 SERVICE_FINAL_SIGTERM, SERVICE_FINAL_SIGKILL))
5cb5a6ff
LP
2374 return -EAGAIN;
2375
034c6ed7 2376 /* Already on it! */
a00973af 2377 if (IN_SET(s->state, SERVICE_START_PRE, SERVICE_START, SERVICE_START_POST))
034c6ed7
LP
2378 return 0;
2379
2e9d6c12 2380 /* A service that will be restarted must be stopped first to
7f2cddae 2381 * trigger BindsTo and/or OnFailure dependencies. If a user
2e9d6c12 2382 * does not want to wait for the holdoff time to elapse, the
d4943dc7
LP
2383 * service should be manually restarted, not started. We
2384 * simply return EAGAIN here, so that any start jobs stay
2385 * queued, and assume that the auto restart timer will
2386 * eventually trigger the restart. */
2387 if (s->state == SERVICE_AUTO_RESTART)
a8bb2e65 2388 return -EAGAIN;
2e9d6c12 2389
a00973af 2390 assert(IN_SET(s->state, SERVICE_DEAD, SERVICE_FAILED));
5cb5a6ff 2391
07299350 2392 /* Make sure we don't enter a busy loop of some kind. */
97a3f4ee 2393 r = unit_test_start_limit(u);
07299350
LP
2394 if (r < 0) {
2395 service_enter_dead(s, SERVICE_FAILURE_START_LIMIT_HIT, false);
2396 return r;
2397 }
2398
4b58153d
LP
2399 r = unit_acquire_invocation_id(u);
2400 if (r < 0)
2401 return r;
2402
f42806df
LP
2403 s->result = SERVICE_SUCCESS;
2404 s->reload_result = SERVICE_SUCCESS;
034c6ed7 2405 s->main_pid_known = false;
6dfa5494 2406 s->main_pid_alien = false;
47342320 2407 s->forbid_restart = false;
3c7416b6 2408
a1e58e8e 2409 s->status_text = mfree(s->status_text);
8cfdb077
LP
2410 s->status_errno = 0;
2411
308d72dc
LP
2412 s->notify_state = NOTIFY_UNKNOWN;
2413
aa8c4bbf 2414 s->watchdog_original_usec = s->watchdog_usec;
2787d83c 2415 s->watchdog_override_enable = false;
aa8c4bbf 2416 s->watchdog_override_usec = USEC_INFINITY;
2787d83c 2417
6a1d4d9f
LP
2418 exec_command_reset_status_list_array(s->exec_command, _SERVICE_EXEC_COMMAND_MAX);
2419 exec_status_reset(&s->main_exec_status);
2420
7a0019d3
LP
2421 /* This is not an automatic restart? Flush the restart counter then */
2422 if (s->flush_n_restarts) {
2423 s->n_restarts = 0;
2424 s->flush_n_restarts = false;
2425 }
2426
6a1d4d9f
LP
2427 u->reset_accounting = true;
2428
034c6ed7 2429 service_enter_start_pre(s);
82a2b6bb 2430 return 1;
5cb5a6ff
LP
2431}
2432
87f0e418
LP
2433static int service_stop(Unit *u) {
2434 Service *s = SERVICE(u);
5cb5a6ff
LP
2435
2436 assert(s);
2437
a509f0e6 2438 /* Don't create restart jobs from manual stops. */
47342320 2439 s->forbid_restart = true;
034c6ed7 2440
e537352b 2441 /* Already on it */
a00973af 2442 if (IN_SET(s->state,
dc653bf4 2443 SERVICE_STOP, SERVICE_STOP_SIGTERM, SERVICE_STOP_SIGKILL, SERVICE_STOP_POST,
a00973af 2444 SERVICE_FINAL_SIGTERM, SERVICE_FINAL_SIGKILL))
e537352b
LP
2445 return 0;
2446
f0c7b229 2447 /* A restart will be scheduled or is in progress. */
034c6ed7 2448 if (s->state == SERVICE_AUTO_RESTART) {
0c7f15b3 2449 service_set_state(s, SERVICE_DEAD);
034c6ed7
LP
2450 return 0;
2451 }
2452
3f6c78dc
LP
2453 /* If there's already something running we go directly into
2454 * kill mode. */
dc653bf4 2455 if (IN_SET(s->state, SERVICE_START_PRE, SERVICE_START, SERVICE_START_POST, SERVICE_RELOAD, SERVICE_STOP_WATCHDOG)) {
f42806df 2456 service_enter_signal(s, SERVICE_STOP_SIGTERM, SERVICE_SUCCESS);
3f6c78dc
LP
2457 return 0;
2458 }
5cb5a6ff 2459
a00973af 2460 assert(IN_SET(s->state, SERVICE_RUNNING, SERVICE_EXITED));
3a762661 2461
f42806df 2462 service_enter_stop(s, SERVICE_SUCCESS);
82a2b6bb 2463 return 1;
5cb5a6ff
LP
2464}
2465
87f0e418
LP
2466static int service_reload(Unit *u) {
2467 Service *s = SERVICE(u);
034c6ed7
LP
2468
2469 assert(s);
2470
3742095b 2471 assert(IN_SET(s->state, SERVICE_RUNNING, SERVICE_EXITED));
034c6ed7
LP
2472
2473 service_enter_reload(s);
2d018ae2 2474 return 1;
5cb5a6ff
LP
2475}
2476
44a6b1b6 2477_pure_ static bool service_can_reload(Unit *u) {
87f0e418 2478 Service *s = SERVICE(u);
034c6ed7
LP
2479
2480 assert(s);
2481
2482 return !!s->exec_command[SERVICE_EXEC_RELOAD];
2483}
2484
e266c068
MS
2485static unsigned service_exec_command_index(Unit *u, ServiceExecCommand id, ExecCommand *current) {
2486 Service *s = SERVICE(u);
2487 unsigned idx = 0;
2488 ExecCommand *first, *c;
2489
2490 assert(s);
2491
2492 first = s->exec_command[id];
2493
2494 /* Figure out where we are in the list by walking back to the beginning */
2495 for (c = current; c != first; c = c->command_prev)
2496 idx++;
2497
2498 return idx;
2499}
2500
2501static int service_serialize_exec_command(Unit *u, FILE *f, ExecCommand *command) {
d68c645b
LP
2502 _cleanup_free_ char *args = NULL, *p = NULL;
2503 size_t allocated = 0, length = 0;
e266c068 2504 Service *s = SERVICE(u);
d68c645b 2505 const char *type, *key;
e266c068
MS
2506 ServiceExecCommand id;
2507 unsigned idx;
e266c068 2508 char **arg;
e266c068
MS
2509
2510 assert(s);
2511 assert(f);
2512
2513 if (!command)
2514 return 0;
2515
2516 if (command == s->control_command) {
2517 type = "control";
2518 id = s->control_command_id;
2519 } else {
2520 type = "main";
2521 id = SERVICE_EXEC_START;
2522 }
2523
2524 idx = service_exec_command_index(u, id, command);
2525
2526 STRV_FOREACH(arg, command->argv) {
e266c068 2527 _cleanup_free_ char *e = NULL;
d68c645b 2528 size_t n;
e266c068 2529
d68c645b 2530 e = cescape(*arg);
e266c068 2531 if (!e)
d68c645b 2532 return log_oom();
e266c068
MS
2533
2534 n = strlen(e);
2535 if (!GREEDY_REALLOC(args, allocated, length + 1 + n + 1))
d68c645b 2536 return log_oom();
e266c068
MS
2537
2538 if (length > 0)
2539 args[length++] = ' ';
2540
2541 memcpy(args + length, e, n);
2542 length += n;
2543 }
2544
2545 if (!GREEDY_REALLOC(args, allocated, length + 1))
d68c645b
LP
2546 return log_oom();
2547
e266c068
MS
2548 args[length++] = 0;
2549
d68c645b 2550 p = cescape(command->path);
e266c068
MS
2551 if (!p)
2552 return -ENOMEM;
2553
d68c645b
LP
2554 key = strjoina(type, "-command");
2555 return serialize_item_format(f, key, "%s %u %s %s", service_exec_command_to_string(id), idx, p, args);
e266c068
MS
2556}
2557
a16e1123
LP
2558static int service_serialize(Unit *u, FILE *f, FDSet *fds) {
2559 Service *s = SERVICE(u);
2339fc93 2560 ServiceFDStore *fs;
a34ceba6 2561 int r;
a16e1123
LP
2562
2563 assert(u);
2564 assert(f);
2565 assert(fds);
2566
d68c645b
LP
2567 (void) serialize_item(f, "state", service_state_to_string(s->state));
2568 (void) serialize_item(f, "result", service_result_to_string(s->result));
2569 (void) serialize_item(f, "reload-result", service_result_to_string(s->reload_result));
a16e1123
LP
2570
2571 if (s->control_pid > 0)
d68c645b 2572 (void) serialize_item_format(f, "control-pid", PID_FMT, s->control_pid);
a16e1123 2573
5925dd3c 2574 if (s->main_pid_known && s->main_pid > 0)
d68c645b 2575 (void) serialize_item_format(f, "main-pid", PID_FMT, s->main_pid);
a16e1123 2576
d68c645b
LP
2577 (void) serialize_bool(f, "main-pid-known", s->main_pid_known);
2578 (void) serialize_bool(f, "bus-name-good", s->bus_name_good);
2579 (void) serialize_bool(f, "bus-name-owner", s->bus_name_owner);
a16e1123 2580
d68c645b
LP
2581 (void) serialize_item_format(f, "n-restarts", "%u", s->n_restarts);
2582 (void) serialize_bool(f, "flush-n-restarts", s->flush_n_restarts);
7a0019d3 2583
d68c645b 2584 r = serialize_item_escaped(f, "status-text", s->status_text);
a34ceba6
LP
2585 if (r < 0)
2586 return r;
3a2776bc 2587
e266c068
MS
2588 service_serialize_exec_command(u, f, s->control_command);
2589 service_serialize_exec_command(u, f, s->main_command);
a16e1123 2590
d68c645b 2591 r = serialize_fd(f, fds, "stdin-fd", s->stdin_fd);
a34ceba6
LP
2592 if (r < 0)
2593 return r;
d68c645b 2594 r = serialize_fd(f, fds, "stdout-fd", s->stdout_fd);
a34ceba6
LP
2595 if (r < 0)
2596 return r;
d68c645b 2597 r = serialize_fd(f, fds, "stderr-fd", s->stderr_fd);
a34ceba6
LP
2598 if (r < 0)
2599 return r;
e44da745 2600
5686391b 2601 if (s->exec_fd_event_source) {
d68c645b 2602 r = serialize_fd(f, fds, "exec-fd", sd_event_source_get_io_fd(s->exec_fd_event_source));
5686391b
LP
2603 if (r < 0)
2604 return r;
d68c645b
LP
2605
2606 (void) serialize_bool(f, "exec-fd-hot", s->exec_fd_hot);
5686391b
LP
2607 }
2608
9dfb64f8 2609 if (UNIT_ISSET(s->accept_socket)) {
d68c645b 2610 r = serialize_item(f, "accept-socket", UNIT_DEREF(s->accept_socket)->id);
9dfb64f8
ZJS
2611 if (r < 0)
2612 return r;
2613 }
2614
d68c645b 2615 r = serialize_fd(f, fds, "socket-fd", s->socket_fd);
a34ceba6
LP
2616 if (r < 0)
2617 return r;
e44da745 2618
2339fc93 2619 LIST_FOREACH(fd_store, fs, s->fd_store) {
8dd4c05b 2620 _cleanup_free_ char *c = NULL;
2339fc93
LP
2621 int copy;
2622
2623 copy = fdset_put_dup(fds, fs->fd);
2624 if (copy < 0)
d68c645b 2625 return log_error_errno(copy, "Failed to copy file descriptor for serialization: %m");
2339fc93 2626
8dd4c05b 2627 c = cescape(fs->fdname);
d68c645b
LP
2628 if (!c)
2629 return log_oom();
8dd4c05b 2630
d68c645b 2631 (void) serialize_item_format(f, "fd-store-fd", "%i %s", copy, c);
2339fc93
LP
2632 }
2633
ecdbca40 2634 if (s->main_exec_status.pid > 0) {
d68c645b
LP
2635 (void) serialize_item_format(f, "main-exec-status-pid", PID_FMT, s->main_exec_status.pid);
2636 (void) serialize_dual_timestamp(f, "main-exec-status-start", &s->main_exec_status.start_timestamp);
2637 (void) serialize_dual_timestamp(f, "main-exec-status-exit", &s->main_exec_status.exit_timestamp);
ecdbca40 2638
799fd0fd 2639 if (dual_timestamp_is_set(&s->main_exec_status.exit_timestamp)) {
d68c645b
LP
2640 (void) serialize_item_format(f, "main-exec-status-code", "%i", s->main_exec_status.code);
2641 (void) serialize_item_format(f, "main-exec-status-status", "%i", s->main_exec_status.status);
ecdbca40
LP
2642 }
2643 }
f06db334 2644
d68c645b
LP
2645 (void) serialize_dual_timestamp(f, "watchdog-timestamp", &s->watchdog_timestamp);
2646 (void) serialize_bool(f, "forbid-restart", s->forbid_restart);
6aca9a58 2647
2787d83c 2648 if (s->watchdog_override_enable)
d68c645b 2649 (void) serialize_item_format(f, "watchdog-override-usec", USEC_FMT, s->watchdog_override_usec);
2787d83c 2650
aa8c4bbf
LP
2651 if (s->watchdog_original_usec != USEC_INFINITY)
2652 (void) serialize_item_format(f, "watchdog-original-usec", USEC_FMT, s->watchdog_original_usec);
2653
a16e1123
LP
2654 return 0;
2655}
2656
e266c068
MS
2657static int service_deserialize_exec_command(Unit *u, const char *key, const char *value) {
2658 Service *s = SERVICE(u);
2659 int r;
2660 unsigned idx = 0, i;
2661 bool control, found = false;
2662 ServiceExecCommand id = _SERVICE_EXEC_COMMAND_INVALID;
2663 ExecCommand *command = NULL;
6eeec374 2664 _cleanup_free_ char *path = NULL;
e266c068
MS
2665 _cleanup_strv_free_ char **argv = NULL;
2666
2667 enum ExecCommandState {
2668 STATE_EXEC_COMMAND_TYPE,
2669 STATE_EXEC_COMMAND_INDEX,
2670 STATE_EXEC_COMMAND_PATH,
2671 STATE_EXEC_COMMAND_ARGS,
2672 _STATE_EXEC_COMMAND_MAX,
2673 _STATE_EXEC_COMMAND_INVALID = -1,
2674 } state;
2675
2676 assert(s);
2677 assert(key);
2678 assert(value);
2679
2680 control = streq(key, "control-command");
2681
2682 state = STATE_EXEC_COMMAND_TYPE;
2683
2684 for (;;) {
2685 _cleanup_free_ char *arg = NULL;
2686
2687 r = extract_first_word(&value, &arg, NULL, EXTRACT_CUNESCAPE);
efa3f34e
LP
2688 if (r < 0)
2689 return r;
e266c068
MS
2690 if (r == 0)
2691 break;
e266c068
MS
2692
2693 switch (state) {
2694 case STATE_EXEC_COMMAND_TYPE:
2695 id = service_exec_command_from_string(arg);
2696 if (id < 0)
2697 return -EINVAL;
2698
2699 state = STATE_EXEC_COMMAND_INDEX;
2700 break;
2701 case STATE_EXEC_COMMAND_INDEX:
2702 r = safe_atou(arg, &idx);
2703 if (r < 0)
2704 return -EINVAL;
2705
2706 state = STATE_EXEC_COMMAND_PATH;
2707 break;
2708 case STATE_EXEC_COMMAND_PATH:
ae2a15bc 2709 path = TAKE_PTR(arg);
e266c068
MS
2710 state = STATE_EXEC_COMMAND_ARGS;
2711
2712 if (!path_is_absolute(path))
2713 return -EINVAL;
2714 break;
2715 case STATE_EXEC_COMMAND_ARGS:
2716 r = strv_extend(&argv, arg);
2717 if (r < 0)
2718 return -ENOMEM;
2719 break;
2720 default:
2721 assert_not_reached("Unknown error at deserialization of exec command");
2722 break;
2723 }
2724 }
2725
2726 if (state != STATE_EXEC_COMMAND_ARGS)
2727 return -EINVAL;
2728
2729 /* Let's check whether exec command on given offset matches data that we just deserialized */
2730 for (command = s->exec_command[id], i = 0; command; command = command->command_next, i++) {
2731 if (i != idx)
2732 continue;
2733
2734 found = strv_equal(argv, command->argv) && streq(command->path, path);
2735 break;
2736 }
2737
2738 if (!found) {
2739 /* Command at the index we serialized is different, let's look for command that exactly
2740 * matches but is on different index. If there is no such command we will not resume execution. */
2741 for (command = s->exec_command[id]; command; command = command->command_next)
2742 if (strv_equal(command->argv, argv) && streq(command->path, path))
2743 break;
2744 }
2745
2746 if (command && control)
2747 s->control_command = command;
2748 else if (command)
2749 s->main_command = command;
2750 else
2751 log_unit_warning(u, "Current command vanished from the unit file, execution of the command list won't be resumed.");
2752
2753 return 0;
2754}
2755
a16e1123
LP
2756static int service_deserialize_item(Unit *u, const char *key, const char *value, FDSet *fds) {
2757 Service *s = SERVICE(u);
2339fc93 2758 int r;
a16e1123
LP
2759
2760 assert(u);
2761 assert(key);
2762 assert(value);
2763 assert(fds);
2764
2765 if (streq(key, "state")) {
2766 ServiceState state;
2767
117dcc57
ZJS
2768 state = service_state_from_string(value);
2769 if (state < 0)
f2341e0a 2770 log_unit_debug(u, "Failed to parse state value: %s", value);
a16e1123
LP
2771 else
2772 s->deserialized_state = state;
f42806df
LP
2773 } else if (streq(key, "result")) {
2774 ServiceResult f;
2775
2776 f = service_result_from_string(value);
2777 if (f < 0)
f2341e0a 2778 log_unit_debug(u, "Failed to parse result value: %s", value);
f42806df
LP
2779 else if (f != SERVICE_SUCCESS)
2780 s->result = f;
2781
2782 } else if (streq(key, "reload-result")) {
2783 ServiceResult f;
2784
2785 f = service_result_from_string(value);
2786 if (f < 0)
f2341e0a 2787 log_unit_debug(u, "Failed to parse reload result value: %s", value);
f42806df
LP
2788 else if (f != SERVICE_SUCCESS)
2789 s->reload_result = f;
a16e1123 2790
a16e1123 2791 } else if (streq(key, "control-pid")) {
5925dd3c 2792 pid_t pid;
a16e1123 2793
e364ad06 2794 if (parse_pid(value, &pid) < 0)
f2341e0a 2795 log_unit_debug(u, "Failed to parse control-pid value: %s", value);
a16e1123 2796 else
e55224ca 2797 s->control_pid = pid;
a16e1123 2798 } else if (streq(key, "main-pid")) {
5925dd3c 2799 pid_t pid;
a16e1123 2800
e364ad06 2801 if (parse_pid(value, &pid) < 0)
f2341e0a 2802 log_unit_debug(u, "Failed to parse main-pid value: %s", value);
eabd3e56
LP
2803 else
2804 (void) service_set_main_pid(s, pid);
a16e1123
LP
2805 } else if (streq(key, "main-pid-known")) {
2806 int b;
2807
117dcc57
ZJS
2808 b = parse_boolean(value);
2809 if (b < 0)
f2341e0a 2810 log_unit_debug(u, "Failed to parse main-pid-known value: %s", value);
a16e1123
LP
2811 else
2812 s->main_pid_known = b;
de1d4f9b
WF
2813 } else if (streq(key, "bus-name-good")) {
2814 int b;
2815
2816 b = parse_boolean(value);
2817 if (b < 0)
2818 log_unit_debug(u, "Failed to parse bus-name-good value: %s", value);
2819 else
2820 s->bus_name_good = b;
d8ccf5fd
DM
2821 } else if (streq(key, "bus-name-owner")) {
2822 r = free_and_strdup(&s->bus_name_owner, value);
2823 if (r < 0)
2824 log_unit_error_errno(u, r, "Unable to deserialize current bus owner %s: %m", value);
3a2776bc
LP
2825 } else if (streq(key, "status-text")) {
2826 char *t;
2827
f2341e0a
LP
2828 r = cunescape(value, 0, &t);
2829 if (r < 0)
5e1ee764 2830 log_unit_debug_errno(u, r, "Failed to unescape status text '%s': %m", value);
efa3f34e
LP
2831 else
2832 free_and_replace(s->status_text, t);
3a2776bc 2833
9dfb64f8
ZJS
2834 } else if (streq(key, "accept-socket")) {
2835 Unit *socket;
2836
2837 r = manager_load_unit(u->manager, value, NULL, NULL, &socket);
2838 if (r < 0)
5e1ee764 2839 log_unit_debug_errno(u, r, "Failed to load accept-socket unit '%s': %m", value);
9dfb64f8 2840 else {
7f7d01ed 2841 unit_ref_set(&s->accept_socket, u, socket);
9dfb64f8
ZJS
2842 SOCKET(socket)->n_connections++;
2843 }
2844
a16e1123
LP
2845 } else if (streq(key, "socket-fd")) {
2846 int fd;
2847
2848 if (safe_atoi(value, &fd) < 0 || fd < 0 || !fdset_contains(fds, fd))
f2341e0a 2849 log_unit_debug(u, "Failed to parse socket-fd value: %s", value);
a16e1123 2850 else {
574634bc 2851 asynchronous_close(s->socket_fd);
a16e1123
LP
2852 s->socket_fd = fdset_remove(fds, fd);
2853 }
2339fc93 2854 } else if (streq(key, "fd-store-fd")) {
8dd4c05b
LP
2855 const char *fdv;
2856 size_t pf;
2339fc93
LP
2857 int fd;
2858
8dd4c05b
LP
2859 pf = strcspn(value, WHITESPACE);
2860 fdv = strndupa(value, pf);
2861
2862 if (safe_atoi(fdv, &fd) < 0 || fd < 0 || !fdset_contains(fds, fd))
f2341e0a 2863 log_unit_debug(u, "Failed to parse fd-store-fd value: %s", value);
2339fc93 2864 else {
8dd4c05b
LP
2865 _cleanup_free_ char *t = NULL;
2866 const char *fdn;
2867
2868 fdn = value + pf;
2869 fdn += strspn(fdn, WHITESPACE);
2870 (void) cunescape(fdn, 0, &t);
2871
2872 r = service_add_fd_store(s, fd, t);
2339fc93 2873 if (r < 0)
f2341e0a 2874 log_unit_error_errno(u, r, "Failed to add fd to store: %m");
9021ff17 2875 else
2339fc93
LP
2876 fdset_remove(fds, fd);
2877 }
2878
ecdbca40
LP
2879 } else if (streq(key, "main-exec-status-pid")) {
2880 pid_t pid;
2881
e364ad06 2882 if (parse_pid(value, &pid) < 0)
f2341e0a 2883 log_unit_debug(u, "Failed to parse main-exec-status-pid value: %s", value);
ecdbca40
LP
2884 else
2885 s->main_exec_status.pid = pid;
2886 } else if (streq(key, "main-exec-status-code")) {
2887 int i;
2888
e364ad06 2889 if (safe_atoi(value, &i) < 0)
f2341e0a 2890 log_unit_debug(u, "Failed to parse main-exec-status-code value: %s", value);
ecdbca40
LP
2891 else
2892 s->main_exec_status.code = i;
2893 } else if (streq(key, "main-exec-status-status")) {
2894 int i;
2895
e364ad06 2896 if (safe_atoi(value, &i) < 0)
f2341e0a 2897 log_unit_debug(u, "Failed to parse main-exec-status-status value: %s", value);
ecdbca40
LP
2898 else
2899 s->main_exec_status.status = i;
799fd0fd 2900 } else if (streq(key, "main-exec-status-start"))
d68c645b 2901 deserialize_dual_timestamp(value, &s->main_exec_status.start_timestamp);
799fd0fd 2902 else if (streq(key, "main-exec-status-exit"))
d68c645b 2903 deserialize_dual_timestamp(value, &s->main_exec_status.exit_timestamp);
a6927d7f 2904 else if (streq(key, "watchdog-timestamp"))
d68c645b 2905 deserialize_dual_timestamp(value, &s->watchdog_timestamp);
613b411c 2906 else if (streq(key, "forbid-restart")) {
6aca9a58
SE
2907 int b;
2908
2909 b = parse_boolean(value);
2910 if (b < 0)
f2341e0a 2911 log_unit_debug(u, "Failed to parse forbid-restart value: %s", value);
6aca9a58
SE
2912 else
2913 s->forbid_restart = b;
a34ceba6
LP
2914 } else if (streq(key, "stdin-fd")) {
2915 int fd;
2916
2917 if (safe_atoi(value, &fd) < 0 || fd < 0 || !fdset_contains(fds, fd))
2918 log_unit_debug(u, "Failed to parse stdin-fd value: %s", value);
2919 else {
2920 asynchronous_close(s->stdin_fd);
2921 s->stdin_fd = fdset_remove(fds, fd);
1e22b5cd 2922 s->exec_context.stdio_as_fds = true;
a34ceba6
LP
2923 }
2924 } else if (streq(key, "stdout-fd")) {
2925 int fd;
2926
2927 if (safe_atoi(value, &fd) < 0 || fd < 0 || !fdset_contains(fds, fd))
2928 log_unit_debug(u, "Failed to parse stdout-fd value: %s", value);
2929 else {
2930 asynchronous_close(s->stdout_fd);
2931 s->stdout_fd = fdset_remove(fds, fd);
1e22b5cd 2932 s->exec_context.stdio_as_fds = true;
a34ceba6
LP
2933 }
2934 } else if (streq(key, "stderr-fd")) {
2935 int fd;
2936
2937 if (safe_atoi(value, &fd) < 0 || fd < 0 || !fdset_contains(fds, fd))
2938 log_unit_debug(u, "Failed to parse stderr-fd value: %s", value);
2939 else {
2940 asynchronous_close(s->stderr_fd);
2941 s->stderr_fd = fdset_remove(fds, fd);
1e22b5cd 2942 s->exec_context.stdio_as_fds = true;
a34ceba6 2943 }
5686391b
LP
2944 } else if (streq(key, "exec-fd")) {
2945 int fd;
2946
2947 if (safe_atoi(value, &fd) < 0 || fd < 0 || !fdset_contains(fds, fd))
2948 log_unit_debug(u, "Failed to parse exec-fd value: %s", value);
2949 else {
2950 s->exec_fd_event_source = sd_event_source_unref(s->exec_fd_event_source);
2951
2952 fd = fdset_remove(fds, fd);
2953 if (service_allocate_exec_fd_event_source(s, fd, &s->exec_fd_event_source) < 0)
2954 safe_close(fd);
2955 }
2787d83c 2956 } else if (streq(key, "watchdog-override-usec")) {
d68c645b 2957 if (deserialize_usec(value, &s->watchdog_override_usec) < 0)
2787d83c 2958 log_unit_debug(u, "Failed to parse watchdog_override_usec value: %s", value);
d68c645b 2959 else
2787d83c 2960 s->watchdog_override_enable = true;
d68c645b 2961
aa8c4bbf
LP
2962 } else if (streq(key, "watchdog-original-usec")) {
2963 if (deserialize_usec(value, &s->watchdog_original_usec) < 0)
2964 log_unit_debug(u, "Failed to parse watchdog_original_usec value: %s", value);
2965
e266c068
MS
2966 } else if (STR_IN_SET(key, "main-command", "control-command")) {
2967 r = service_deserialize_exec_command(u, key, value);
2968 if (r < 0)
2969 log_unit_debug_errno(u, r, "Failed to parse serialized command \"%s\": %m", value);
7a0019d3
LP
2970
2971 } else if (streq(key, "n-restarts")) {
2972 r = safe_atou(value, &s->n_restarts);
2973 if (r < 0)
2974 log_unit_debug_errno(u, r, "Failed to parse serialized restart counter '%s': %m", value);
2975
2976 } else if (streq(key, "flush-n-restarts")) {
2977 r = parse_boolean(value);
2978 if (r < 0)
2979 log_unit_debug_errno(u, r, "Failed to parse serialized flush restart counter setting '%s': %m", value);
2980 else
2981 s->flush_n_restarts = r;
c17ec25e 2982 } else
f2341e0a 2983 log_unit_debug(u, "Unknown serialization key: %s", key);
a16e1123
LP
2984
2985 return 0;
2986}
2987
44a6b1b6 2988_pure_ static UnitActiveState service_active_state(Unit *u) {
e056b01d
LP
2989 const UnitActiveState *table;
2990
87f0e418 2991 assert(u);
5cb5a6ff 2992
e056b01d
LP
2993 table = SERVICE(u)->type == SERVICE_IDLE ? state_translation_table_idle : state_translation_table;
2994
2995 return table[SERVICE(u)->state];
034c6ed7
LP
2996}
2997
10a94420
LP
2998static const char *service_sub_state_to_string(Unit *u) {
2999 assert(u);
3000
3001 return service_state_to_string(SERVICE(u)->state);
3002}
3003
f2f725e5 3004static bool service_may_gc(Unit *u) {
701cc384
LP
3005 Service *s = SERVICE(u);
3006
3007 assert(s);
3008
e98b2fbb 3009 /* Never clean up services that still have a process around, even if the service is formally dead. Note that
f2f725e5 3010 * unit_may_gc() already checked our cgroup for us, we just check our two additional PIDs, too, in case they
e98b2fbb
LP
3011 * have moved outside of the cgroup. */
3012
3013 if (main_pid_good(s) > 0 ||
6d55002a 3014 control_pid_good(s) > 0)
f2f725e5 3015 return false;
6d55002a 3016
f2f725e5 3017 return true;
6d55002a
LP
3018}
3019
3a111838
MS
3020static int service_retry_pid_file(Service *s) {
3021 int r;
3022
3023 assert(s->pid_file);
3742095b 3024 assert(IN_SET(s->state, SERVICE_START, SERVICE_START_POST));
3a111838
MS
3025
3026 r = service_load_pid_file(s, false);
3027 if (r < 0)
3028 return r;
3029
3030 service_unwatch_pid_file(s);
3031
f42806df 3032 service_enter_running(s, SERVICE_SUCCESS);
3a111838
MS
3033 return 0;
3034}
3035
3036static int service_watch_pid_file(Service *s) {
3037 int r;
3038
f2341e0a 3039 log_unit_debug(UNIT(s), "Setting watch for PID file %s", s->pid_file_pathspec->path);
8bb2d17d 3040
5686391b 3041 r = path_spec_watch(s->pid_file_pathspec, service_dispatch_inotify_io);
3a111838
MS
3042 if (r < 0)
3043 goto fail;
3044
3045 /* the pidfile might have appeared just before we set the watch */
f2341e0a 3046 log_unit_debug(UNIT(s), "Trying to read PID file %s in case it changed", s->pid_file_pathspec->path);
3a111838
MS
3047 service_retry_pid_file(s);
3048
3049 return 0;
3050fail:
f2341e0a 3051 log_unit_error_errno(UNIT(s), r, "Failed to set a watch for PID file %s: %m", s->pid_file_pathspec->path);
3a111838
MS
3052 service_unwatch_pid_file(s);
3053 return r;
3054}
3055
3056static int service_demand_pid_file(Service *s) {
3057 PathSpec *ps;
3058
3059 assert(s->pid_file);
3060 assert(!s->pid_file_pathspec);
3061
3062 ps = new0(PathSpec, 1);
3063 if (!ps)
3064 return -ENOMEM;
3065
718db961 3066 ps->unit = UNIT(s);
3a111838
MS
3067 ps->path = strdup(s->pid_file);
3068 if (!ps->path) {
3069 free(ps);
3070 return -ENOMEM;
3071 }
3072
858d36c1 3073 path_simplify(ps->path, false);
3a111838
MS
3074
3075 /* PATH_CHANGED would not be enough. There are daemons (sendmail) that
3076 * keep their PID file open all the time. */
3077 ps->type = PATH_MODIFIED;
3078 ps->inotify_fd = -1;
3079
3080 s->pid_file_pathspec = ps;
3081
3082 return service_watch_pid_file(s);
3083}
3084
5686391b 3085static int service_dispatch_inotify_io(sd_event_source *source, int fd, uint32_t events, void *userdata) {
e14c2802
LP
3086 PathSpec *p = userdata;
3087 Service *s;
3088
3089 assert(p);
3090
3091 s = SERVICE(p->unit);
3a111838
MS
3092
3093 assert(s);
3094 assert(fd >= 0);
3742095b 3095 assert(IN_SET(s->state, SERVICE_START, SERVICE_START_POST));
3a111838 3096 assert(s->pid_file_pathspec);
57020a3a 3097 assert(path_spec_owns_inotify_fd(s->pid_file_pathspec, fd));
3a111838 3098
f2341e0a 3099 log_unit_debug(UNIT(s), "inotify event");
3a111838 3100
e14c2802 3101 if (path_spec_fd_event(p, events) < 0)
3a111838
MS
3102 goto fail;
3103
3104 if (service_retry_pid_file(s) == 0)
718db961 3105 return 0;
3a111838
MS
3106
3107 if (service_watch_pid_file(s) < 0)
3108 goto fail;
3109
718db961
LP
3110 return 0;
3111
3a111838
MS
3112fail:
3113 service_unwatch_pid_file(s);
f42806df 3114 service_enter_signal(s, SERVICE_STOP_SIGTERM, SERVICE_FAILURE_RESOURCES);
718db961 3115 return 0;
3a111838
MS
3116}
3117
5686391b
LP
3118static int service_dispatch_exec_io(sd_event_source *source, int fd, uint32_t events, void *userdata) {
3119 Service *s = SERVICE(userdata);
3120
3121 assert(s);
3122
3123 log_unit_debug(UNIT(s), "got exec-fd event");
3124
3125 /* If Type=exec is set, we'll consider a service started successfully the instant we invoked execve()
3126 * successfully for it. We implement this through a pipe() towards the child, which the kernel automatically
3127 * closes for us due to O_CLOEXEC on execve() in the child, which then triggers EOF on the pipe in the
3128 * parent. We need to be careful however, as there are other reasons that we might cause the child's side of
3129 * the pipe to be closed (for example, a simple exit()). To deal with that we'll ignore EOFs on the pipe unless
3130 * the child signalled us first that it is about to call the execve(). It does so by sending us a simple
3131 * non-zero byte via the pipe. We also provide the child with a way to inform us in case execve() failed: if it
3132 * sends a zero byte we'll ignore POLLHUP on the fd again. */
3133
3134 for (;;) {
3135 uint8_t x;
3136 ssize_t n;
3137
3138 n = read(fd, &x, sizeof(x));
3139 if (n < 0) {
3140 if (errno == EAGAIN) /* O_NONBLOCK in effect → everything queued has now been processed. */
3141 return 0;
3142
3143 return log_unit_error_errno(UNIT(s), errno, "Failed to read from exec_fd: %m");
3144 }
3145 if (n == 0) { /* EOF → the event we are waiting for */
3146
3147 s->exec_fd_event_source = sd_event_source_unref(s->exec_fd_event_source);
3148
3149 if (s->exec_fd_hot) { /* Did the child tell us to expect EOF now? */
3150 log_unit_debug(UNIT(s), "Got EOF on exec-fd");
3151
3152 s->exec_fd_hot = false;
3153
3154 /* Nice! This is what we have been waiting for. Transition to next state. */
3155 if (s->type == SERVICE_EXEC && s->state == SERVICE_START)
3156 service_enter_start_post(s);
3157 } else
3158 log_unit_debug(UNIT(s), "Got EOF on exec-fd while it was disabled, ignoring.");
3159
3160 return 0;
3161 }
3162
3163 /* A byte was read → this turns on/off the exec fd logic */
3164 assert(n == sizeof(x));
3165 s->exec_fd_hot = x;
3166 }
3167
3168 return 0;
3169}
3170
a911bb9a
LP
3171static void service_notify_cgroup_empty_event(Unit *u) {
3172 Service *s = SERVICE(u);
3173
3174 assert(u);
3175
a5b5aece 3176 log_unit_debug(u, "Control group is empty.");
a911bb9a
LP
3177
3178 switch (s->state) {
3179
3180 /* Waiting for SIGCHLD is usually more interesting,
3181 * because it includes return codes/signals. Which is
3182 * why we ignore the cgroup events for most cases,
3183 * except when we don't know pid which to expect the
3184 * SIGCHLD for. */
3185
3186 case SERVICE_START:
3c751b1b
LP
3187 if (s->type == SERVICE_NOTIFY &&
3188 main_pid_good(s) == 0 &&
3189 control_pid_good(s) == 0) {
3d474ef7 3190 /* No chance of getting a ready notification anymore */
c3fda31d 3191 service_enter_stop_post(s, SERVICE_FAILURE_PROTOCOL);
71e529fc
JW
3192 break;
3193 }
3194
4831981d 3195 _fallthrough_;
71e529fc 3196 case SERVICE_START_POST:
3c751b1b
LP
3197 if (s->pid_file_pathspec &&
3198 main_pid_good(s) == 0 &&
3199 control_pid_good(s) == 0) {
3200
3d474ef7 3201 /* Give up hoping for the daemon to write its PID file */
f2341e0a 3202 log_unit_warning(u, "Daemon never wrote its PID file. Failing.");
8bb2d17d 3203
a911bb9a
LP
3204 service_unwatch_pid_file(s);
3205 if (s->state == SERVICE_START)
c3fda31d 3206 service_enter_stop_post(s, SERVICE_FAILURE_PROTOCOL);
a911bb9a 3207 else
c35755fb 3208 service_enter_stop(s, SERVICE_FAILURE_PROTOCOL);
a911bb9a
LP
3209 }
3210 break;
3211
3212 case SERVICE_RUNNING:
3213 /* service_enter_running() will figure out what to do */
3214 service_enter_running(s, SERVICE_SUCCESS);
3215 break;
3216
c87700a1 3217 case SERVICE_STOP_WATCHDOG:
a911bb9a
LP
3218 case SERVICE_STOP_SIGTERM:
3219 case SERVICE_STOP_SIGKILL:
3220
b13ddbbc 3221 if (main_pid_good(s) <= 0 && control_pid_good(s) <= 0)
a911bb9a
LP
3222 service_enter_stop_post(s, SERVICE_SUCCESS);
3223
3224 break;
3225
3226 case SERVICE_STOP_POST:
3227 case SERVICE_FINAL_SIGTERM:
3228 case SERVICE_FINAL_SIGKILL:
b13ddbbc 3229 if (main_pid_good(s) <= 0 && control_pid_good(s) <= 0)
a911bb9a
LP
3230 service_enter_dead(s, SERVICE_SUCCESS, true);
3231
3232 break;
3233
3234 default:
3235 ;
3236 }
3237}
3238
afcfaa69
LP
3239static void service_notify_cgroup_oom_event(Unit *u) {
3240 Service *s = SERVICE(u);
3241
3242 log_unit_debug(u, "Process of control group was killed by the OOM killer.");
3243
3244 if (s->oom_policy == OOM_CONTINUE)
3245 return;
3246
3247 switch (s->state) {
3248
3249 case SERVICE_START_PRE:
3250 case SERVICE_START:
3251 case SERVICE_START_POST:
3252 case SERVICE_STOP:
3253 if (s->oom_policy == OOM_STOP)
3254 service_enter_signal(s, SERVICE_STOP_SIGTERM, SERVICE_FAILURE_OOM_KILL);
3255 else if (s->oom_policy == OOM_KILL)
3256 service_enter_signal(s, SERVICE_STOP_SIGKILL, SERVICE_FAILURE_OOM_KILL);
3257
3258 break;
3259
3260 case SERVICE_EXITED:
3261 case SERVICE_RUNNING:
3262 if (s->oom_policy == OOM_STOP)
3263 service_enter_stop(s, SERVICE_FAILURE_OOM_KILL);
3264 else if (s->oom_policy == OOM_KILL)
3265 service_enter_signal(s, SERVICE_STOP_SIGKILL, SERVICE_FAILURE_OOM_KILL);
3266
3267 break;
3268
3269 case SERVICE_STOP_WATCHDOG:
3270 case SERVICE_STOP_SIGTERM:
3271 service_enter_signal(s, SERVICE_STOP_SIGKILL, SERVICE_FAILURE_OOM_KILL);
3272 break;
3273
3274 case SERVICE_STOP_SIGKILL:
3275 case SERVICE_FINAL_SIGKILL:
3276 if (s->result == SERVICE_SUCCESS)
3277 s->result = SERVICE_FAILURE_OOM_KILL;
3278 break;
3279
3280 case SERVICE_STOP_POST:
3281 case SERVICE_FINAL_SIGTERM:
3282 service_enter_signal(s, SERVICE_FINAL_SIGKILL, SERVICE_FAILURE_OOM_KILL);
3283 break;
3284
3285 default:
3286 ;
3287 }
3288}
3289
87f0e418 3290static void service_sigchld_event(Unit *u, pid_t pid, int code, int status) {
5cdabc8d 3291 bool notify_dbus = true;
87f0e418 3292 Service *s = SERVICE(u);
f42806df 3293 ServiceResult f;
e5123725 3294 ExitClean clean_mode;
5cb5a6ff
LP
3295
3296 assert(s);
034c6ed7
LP
3297 assert(pid >= 0);
3298
e5123725
AZ
3299 /* Oneshot services and non-SERVICE_EXEC_START commands should not be
3300 * considered daemons as they are typically not long running. */
3301 if (s->type == SERVICE_ONESHOT || (s->control_pid == pid && s->control_command_id != SERVICE_EXEC_START))
3302 clean_mode = EXIT_CLEAN_COMMAND;
3303 else
3304 clean_mode = EXIT_CLEAN_DAEMON;
3305
3306 if (is_clean_exit(code, status, clean_mode, &s->success_status))
f42806df
LP
3307 f = SERVICE_SUCCESS;
3308 else if (code == CLD_EXITED)
3309 f = SERVICE_FAILURE_EXIT_CODE;
3310 else if (code == CLD_KILLED)
3311 f = SERVICE_FAILURE_SIGNAL;
3312 else if (code == CLD_DUMPED)
3313 f = SERVICE_FAILURE_CORE_DUMP;
d06dacd0 3314 else
cfc4eb4c 3315 assert_not_reached("Unknown code");
034c6ed7
LP
3316
3317 if (s->main_pid == pid) {
db01f8b3
MS
3318 /* Forking services may occasionally move to a new PID.
3319 * As long as they update the PID file before exiting the old
3320 * PID, they're fine. */
db256aab 3321 if (service_load_pid_file(s, false) > 0)
db01f8b3 3322 return;
034c6ed7 3323
034c6ed7 3324 s->main_pid = 0;
6ea832a2 3325 exec_status_exit(&s->main_exec_status, &s->exec_context, pid, code, status);
034c6ed7 3326
867b3b7d 3327 if (s->main_command) {
fbeefb45
LP
3328 /* If this is not a forking service than the
3329 * main process got started and hence we copy
3330 * the exit status so that it is recorded both
3331 * as main and as control process exit
3332 * status */
3333
867b3b7d 3334 s->main_command->exec_status = s->main_exec_status;
b708e7ce 3335
3ed0cd26 3336 if (s->main_command->flags & EXEC_COMMAND_IGNORE_FAILURE)
f42806df 3337 f = SERVICE_SUCCESS;
fbeefb45
LP
3338 } else if (s->exec_command[SERVICE_EXEC_START]) {
3339
3340 /* If this is a forked process, then we should
3341 * ignore the return value if this was
3342 * configured for the starter process */
3343
3ed0cd26 3344 if (s->exec_command[SERVICE_EXEC_START]->flags & EXEC_COMMAND_IGNORE_FAILURE)
fbeefb45 3345 f = SERVICE_SUCCESS;
034c6ed7
LP
3346 }
3347
5368222d
LP
3348 /* When this is a successful exit, let's log about the exit code on DEBUG level. If this is a failure
3349 * and the process exited on its own via exit(), then let's make this a NOTICE, under the assumption
91bbd9b7
LP
3350 * that the service already logged the reason at a higher log level on its own. (Internally,
3351 * unit_log_process_exit() will possibly bump this to WARNING if the service died due to a signal.) */
3352 unit_log_process_exit(
3353 u, f == SERVICE_SUCCESS ? LOG_DEBUG : LOG_NOTICE,
3354 "Main process",
3355 service_exec_command_to_string(SERVICE_EXEC_START),
3356 code, status);
f42806df 3357
a0fef983 3358 if (s->result == SERVICE_SUCCESS)
f42806df 3359 s->result = f;
034c6ed7 3360
867b3b7d
LP
3361 if (s->main_command &&
3362 s->main_command->command_next &&
b58aeb70 3363 s->type == SERVICE_ONESHOT &&
f42806df 3364 f == SERVICE_SUCCESS) {
034c6ed7 3365
34e9ba66
LP
3366 /* There is another command to *
3367 * execute, so let's do that. */
034c6ed7 3368
f2341e0a 3369 log_unit_debug(u, "Running next main command for state %s.", service_state_to_string(s->state));
f42806df 3370 service_run_next_main(s);
034c6ed7 3371
34e9ba66
LP
3372 } else {
3373
3374 /* The service exited, so the service is officially
3375 * gone. */
867b3b7d 3376 s->main_command = NULL;
34e9ba66
LP
3377
3378 switch (s->state) {
3379
3380 case SERVICE_START_POST:
3381 case SERVICE_RELOAD:
3382 case SERVICE_STOP:
3383 /* Need to wait until the operation is
3384 * done */
c4653a4d 3385 break;
7d55e835 3386
34e9ba66
LP
3387 case SERVICE_START:
3388 if (s->type == SERVICE_ONESHOT) {
3389 /* This was our main goal, so let's go on */
f42806df 3390 if (f == SERVICE_SUCCESS)
34e9ba66
LP
3391 service_enter_start_post(s);
3392 else
c3fda31d 3393 service_enter_signal(s, SERVICE_STOP_SIGTERM, f);
34e9ba66 3394 break;
3d474ef7
JW
3395 } else if (s->type == SERVICE_NOTIFY) {
3396 /* Only enter running through a notification, so that the
3397 * SERVICE_START state signifies that no ready notification
3398 * has been received */
3399 if (f != SERVICE_SUCCESS)
c3fda31d 3400 service_enter_signal(s, SERVICE_STOP_SIGTERM, f);
df66b93f
JW
3401 else if (!s->remain_after_exit || s->notify_access == NOTIFY_MAIN)
3402 /* The service has never been and will never be active */
c3fda31d 3403 service_enter_signal(s, SERVICE_STOP_SIGTERM, SERVICE_FAILURE_PROTOCOL);
3d474ef7 3404 break;
34e9ba66 3405 }
034c6ed7 3406
4831981d 3407 _fallthrough_;
34e9ba66 3408 case SERVICE_RUNNING:
f42806df 3409 service_enter_running(s, f);
34e9ba66 3410 break;
034c6ed7 3411
c87700a1 3412 case SERVICE_STOP_WATCHDOG:
34e9ba66
LP
3413 case SERVICE_STOP_SIGTERM:
3414 case SERVICE_STOP_SIGKILL:
5cb5a6ff 3415
b13ddbbc 3416 if (control_pid_good(s) <= 0)
f42806df 3417 service_enter_stop_post(s, f);
5cb5a6ff 3418
34e9ba66
LP
3419 /* If there is still a control process, wait for that first */
3420 break;
3421
bf108e55
LP
3422 case SERVICE_STOP_POST:
3423 case SERVICE_FINAL_SIGTERM:
3424 case SERVICE_FINAL_SIGKILL:
3425
b13ddbbc 3426 if (control_pid_good(s) <= 0)
bf108e55
LP
3427 service_enter_dead(s, f, true);
3428 break;
3429
34e9ba66
LP
3430 default:
3431 assert_not_reached("Uh, main process died at wrong time.");
3432 }
034c6ed7 3433 }
5cb5a6ff 3434
034c6ed7 3435 } else if (s->control_pid == pid) {
34e9ba66
LP
3436 s->control_pid = 0;
3437
b708e7ce 3438 if (s->control_command) {
8bb2d17d 3439 exec_status_exit(&s->control_command->exec_status, &s->exec_context, pid, code, status);
a16e1123 3440
3ed0cd26 3441 if (s->control_command->flags & EXEC_COMMAND_IGNORE_FAILURE)
f42806df 3442 f = SERVICE_SUCCESS;
b708e7ce
LP
3443 }
3444
91bbd9b7
LP
3445 unit_log_process_exit(
3446 u, f == SERVICE_SUCCESS ? LOG_DEBUG : LOG_NOTICE,
3447 "Control process",
3448 service_exec_command_to_string(s->control_command_id),
3449 code, status);
f42806df 3450
a0fef983 3451 if (s->result == SERVICE_SUCCESS)
f42806df 3452 s->result = f;
034c6ed7 3453
34e9ba66
LP
3454 if (s->control_command &&
3455 s->control_command->command_next &&
f42806df 3456 f == SERVICE_SUCCESS) {
034c6ed7
LP
3457
3458 /* There is another command to *
3459 * execute, so let's do that. */
3460
f2341e0a 3461 log_unit_debug(u, "Running next control command for state %s.", service_state_to_string(s->state));
f42806df 3462 service_run_next_control(s);
034c6ed7 3463
80876c20 3464 } else {
034c6ed7
LP
3465 /* No further commands for this step, so let's
3466 * figure out what to do next */
3467
a16e1123
LP
3468 s->control_command = NULL;
3469 s->control_command_id = _SERVICE_EXEC_COMMAND_INVALID;
3470
f2341e0a 3471 log_unit_debug(u, "Got final SIGCHLD for state %s.", service_state_to_string(s->state));
bd982a8b 3472
034c6ed7
LP
3473 switch (s->state) {
3474
3475 case SERVICE_START_PRE:
f42806df 3476 if (f == SERVICE_SUCCESS)
034c6ed7
LP
3477 service_enter_start(s);
3478 else
c3fda31d 3479 service_enter_signal(s, SERVICE_STOP_SIGTERM, f);
034c6ed7
LP
3480 break;
3481
3482 case SERVICE_START:
bfba3256
LP
3483 if (s->type != SERVICE_FORKING)
3484 /* Maybe spurious event due to a reload that changed the type? */
3485 break;
034c6ed7 3486
f42806df 3487 if (f != SERVICE_SUCCESS) {
c3fda31d 3488 service_enter_signal(s, SERVICE_STOP_SIGTERM, f);
3a111838
MS
3489 break;
3490 }
034c6ed7 3491
3a111838 3492 if (s->pid_file) {
f42806df
LP
3493 bool has_start_post;
3494 int r;
3495
3a111838
MS
3496 /* Let's try to load the pid file here if we can.
3497 * The PID file might actually be created by a START_POST
3498 * script. In that case don't worry if the loading fails. */
f42806df 3499
5d904a6a 3500 has_start_post = s->exec_command[SERVICE_EXEC_START_POST];
f42806df 3501 r = service_load_pid_file(s, !has_start_post);
3a111838
MS
3502 if (!has_start_post && r < 0) {
3503 r = service_demand_pid_file(s);
b13ddbbc 3504 if (r < 0 || cgroup_good(s) == 0)
c3fda31d 3505 service_enter_signal(s, SERVICE_STOP_SIGTERM, SERVICE_FAILURE_PROTOCOL);
3a111838
MS
3506 break;
3507 }
034c6ed7 3508 } else
783e05d6 3509 service_search_main_pid(s);
034c6ed7 3510
3a111838 3511 service_enter_start_post(s);
034c6ed7
LP
3512 break;
3513
3514 case SERVICE_START_POST:
f42806df 3515 if (f != SERVICE_SUCCESS) {
ce359e98 3516 service_enter_signal(s, SERVICE_STOP_SIGTERM, f);
2096e009 3517 break;
034c6ed7
LP
3518 }
3519
2096e009 3520 if (s->pid_file) {
f42806df
LP
3521 int r;
3522
3523 r = service_load_pid_file(s, true);
2096e009
MS
3524 if (r < 0) {
3525 r = service_demand_pid_file(s);
b13ddbbc 3526 if (r < 0 || cgroup_good(s) == 0)
c35755fb 3527 service_enter_stop(s, SERVICE_FAILURE_PROTOCOL);
2096e009
MS
3528 break;
3529 }
3530 } else
783e05d6 3531 service_search_main_pid(s);
2096e009 3532
f42806df 3533 service_enter_running(s, SERVICE_SUCCESS);
3185a36b 3534 break;
034c6ed7
LP
3535
3536 case SERVICE_RELOAD:
7236ce6e
ZJS
3537 if (f == SERVICE_SUCCESS)
3538 if (service_load_pid_file(s, true) < 0)
3539 service_search_main_pid(s);
3185a36b 3540
f42806df
LP
3541 s->reload_result = f;
3542 service_enter_running(s, SERVICE_SUCCESS);
034c6ed7
LP
3543 break;
3544
3545 case SERVICE_STOP:
f42806df 3546 service_enter_signal(s, SERVICE_STOP_SIGTERM, f);
034c6ed7
LP
3547 break;
3548
c87700a1 3549 case SERVICE_STOP_WATCHDOG:
034c6ed7
LP
3550 case SERVICE_STOP_SIGTERM:
3551 case SERVICE_STOP_SIGKILL:
3552 if (main_pid_good(s) <= 0)
f42806df 3553 service_enter_stop_post(s, f);
034c6ed7 3554
846a07b5 3555 /* If there is still a service process around, wait until
034c6ed7
LP
3556 * that one quit, too */
3557 break;
3558
3559 case SERVICE_STOP_POST:
3560 case SERVICE_FINAL_SIGTERM:
3561 case SERVICE_FINAL_SIGKILL:
bf108e55
LP
3562 if (main_pid_good(s) <= 0)
3563 service_enter_dead(s, f, true);
034c6ed7
LP
3564 break;
3565
3566 default:
3567 assert_not_reached("Uh, control process died at wrong time.");
3568 }
3569 }
5cdabc8d
LP
3570 } else /* Neither control nor main PID? If so, don't notify about anything */
3571 notify_dbus = false;
c4e2ceae
LP
3572
3573 /* Notify clients about changed exit status */
5cdabc8d
LP
3574 if (notify_dbus)
3575 unit_add_to_dbus_queue(u);
a911bb9a 3576
846a07b5
FB
3577 /* We watch the main/control process otherwise we can't retrieve the unit they
3578 * belong to with cgroupv1. But if they are not our direct child, we won't get a
3579 * SIGCHLD for them. Therefore we need to look for others to watch so we can
3580 * detect when the cgroup becomes empty. Note that the control process is always
3581 * our child so it's pointless to watch all other processes. */
3582 if (!control_pid_good(s))
3583 if (!s->main_pid_known || s->main_pid_alien)
3584 (void) unit_enqueue_rewatch_pids(u);
034c6ed7
LP
3585}
3586
718db961
LP
3587static int service_dispatch_timer(sd_event_source *source, usec_t usec, void *userdata) {
3588 Service *s = SERVICE(userdata);
034c6ed7
LP
3589
3590 assert(s);
718db961 3591 assert(source == s->timer_event_source);
034c6ed7
LP
3592
3593 switch (s->state) {
3594
3595 case SERVICE_START_PRE:
3596 case SERVICE_START:
f2341e0a 3597 log_unit_warning(UNIT(s), "%s operation timed out. Terminating.", s->state == SERVICE_START ? "Start" : "Start-pre");
c3fda31d 3598 service_enter_signal(s, SERVICE_STOP_SIGTERM, SERVICE_FAILURE_TIMEOUT);
80876c20
LP
3599 break;
3600
034c6ed7 3601 case SERVICE_START_POST:
f2341e0a 3602 log_unit_warning(UNIT(s), "Start-post operation timed out. Stopping.");
ce359e98 3603 service_enter_signal(s, SERVICE_STOP_SIGTERM, SERVICE_FAILURE_TIMEOUT);
034c6ed7
LP
3604 break;
3605
36c16a7c
LP
3606 case SERVICE_RUNNING:
3607 log_unit_warning(UNIT(s), "Service reached runtime time limit. Stopping.");
3608 service_enter_stop(s, SERVICE_FAILURE_TIMEOUT);
3609 break;
3610
e2f3b44c 3611 case SERVICE_RELOAD:
089b64d5 3612 log_unit_warning(UNIT(s), "Reload operation timed out. Killing reload process.");
e9a4f676 3613 service_kill_control_process(s);
f42806df
LP
3614 s->reload_result = SERVICE_FAILURE_TIMEOUT;
3615 service_enter_running(s, SERVICE_SUCCESS);
e2f3b44c
LP
3616 break;
3617
034c6ed7 3618 case SERVICE_STOP:
f2341e0a 3619 log_unit_warning(UNIT(s), "Stopping timed out. Terminating.");
f42806df 3620 service_enter_signal(s, SERVICE_STOP_SIGTERM, SERVICE_FAILURE_TIMEOUT);
034c6ed7
LP
3621 break;
3622
c87700a1
AZ
3623 case SERVICE_STOP_WATCHDOG:
3624 log_unit_warning(UNIT(s), "State 'stop-watchdog' timed out. Terminating.");
2ab2ab7b 3625 service_enter_signal(s, SERVICE_STOP_SIGTERM, SERVICE_FAILURE_TIMEOUT);
db2cb23b
UTL
3626 break;
3627
034c6ed7 3628 case SERVICE_STOP_SIGTERM:
4819ff03 3629 if (s->kill_context.send_sigkill) {
f2341e0a 3630 log_unit_warning(UNIT(s), "State 'stop-sigterm' timed out. Killing.");
f42806df 3631 service_enter_signal(s, SERVICE_STOP_SIGKILL, SERVICE_FAILURE_TIMEOUT);
ba035df2 3632 } else {
f2341e0a 3633 log_unit_warning(UNIT(s), "State 'stop-sigterm' timed out. Skipping SIGKILL.");
f42806df 3634 service_enter_stop_post(s, SERVICE_FAILURE_TIMEOUT);
ba035df2
LP
3635 }
3636
034c6ed7
LP
3637 break;
3638
3639 case SERVICE_STOP_SIGKILL:
35b8ca3a 3640 /* Uh, we sent a SIGKILL and it is still not gone?
034c6ed7
LP
3641 * Must be something we cannot kill, so let's just be
3642 * weirded out and continue */
3643
f2341e0a 3644 log_unit_warning(UNIT(s), "Processes still around after SIGKILL. Ignoring.");
f42806df 3645 service_enter_stop_post(s, SERVICE_FAILURE_TIMEOUT);
034c6ed7
LP
3646 break;
3647
3648 case SERVICE_STOP_POST:
f2341e0a 3649 log_unit_warning(UNIT(s), "State 'stop-post' timed out. Terminating.");
f42806df 3650 service_enter_signal(s, SERVICE_FINAL_SIGTERM, SERVICE_FAILURE_TIMEOUT);
034c6ed7
LP
3651 break;
3652
3653 case SERVICE_FINAL_SIGTERM:
4819ff03 3654 if (s->kill_context.send_sigkill) {
f2341e0a 3655 log_unit_warning(UNIT(s), "State 'stop-final-sigterm' timed out. Killing.");
f42806df 3656 service_enter_signal(s, SERVICE_FINAL_SIGKILL, SERVICE_FAILURE_TIMEOUT);
ba035df2 3657 } else {
f2341e0a 3658 log_unit_warning(UNIT(s), "State 'stop-final-sigterm' timed out. Skipping SIGKILL. Entering failed mode.");
f42806df 3659 service_enter_dead(s, SERVICE_FAILURE_TIMEOUT, false);
ba035df2
LP
3660 }
3661
034c6ed7
LP
3662 break;
3663
3664 case SERVICE_FINAL_SIGKILL:
f2341e0a 3665 log_unit_warning(UNIT(s), "Processes still around after final SIGKILL. Entering failed mode.");
f42806df 3666 service_enter_dead(s, SERVICE_FAILURE_TIMEOUT, true);
034c6ed7
LP
3667 break;
3668
3669 case SERVICE_AUTO_RESTART:
5ce6e7f5
ZJS
3670 if (s->restart_usec > 0) {
3671 char buf_restart[FORMAT_TIMESPAN_MAX];
3672 log_unit_info(UNIT(s),
3673 "Service RestartSec=%s expired, scheduling restart.",
3674 format_timespan(buf_restart, sizeof buf_restart, s->restart_usec, USEC_PER_SEC));
3675 } else
3676 log_unit_info(UNIT(s),
3677 "Service has no hold-off time (RestartSec=0), scheduling restart.");
3678
034c6ed7
LP
3679 service_enter_restart(s);
3680 break;
3681
3682 default:
3683 assert_not_reached("Timeout at wrong time.");
3684 }
718db961
LP
3685
3686 return 0;
3687}
3688
3689static int service_dispatch_watchdog(sd_event_source *source, usec_t usec, void *userdata) {
3690 Service *s = SERVICE(userdata);
a7850c7d 3691 char t[FORMAT_TIMESPAN_MAX];
2787d83c 3692 usec_t watchdog_usec;
718db961
LP
3693
3694 assert(s);
3695 assert(source == s->watchdog_event_source);
3696
2787d83c
M
3697 watchdog_usec = service_get_watchdog_usec(s);
3698
2a12e32e
JK
3699 if (UNIT(s)->manager->service_watchdogs) {
3700 log_unit_error(UNIT(s), "Watchdog timeout (limit %s)!",
3701 format_timespan(t, sizeof(t), watchdog_usec, 1));
8bb2d17d 3702
c87700a1 3703 service_enter_signal(s, SERVICE_STOP_WATCHDOG, SERVICE_FAILURE_WATCHDOG);
2a12e32e
JK
3704 } else
3705 log_unit_warning(UNIT(s), "Watchdog disabled! Ignoring watchdog timeout (limit %s)!",
3706 format_timespan(t, sizeof(t), watchdog_usec, 1));
842129f5 3707
718db961 3708 return 0;
5cb5a6ff
LP
3709}
3710
e3285237
LP
3711static bool service_notify_message_authorized(Service *s, pid_t pid, char **tags, FDSet *fds) {
3712 assert(s);
8c47c732 3713
c952c6ec 3714 if (s->notify_access == NOTIFY_NONE) {
e3285237
LP
3715 log_unit_warning(UNIT(s), "Got notification message from PID "PID_FMT", but reception is disabled.", pid);
3716 return false;
3717 }
3718
3719 if (s->notify_access == NOTIFY_MAIN && pid != s->main_pid) {
336c6e46 3720 if (s->main_pid != 0)
e3285237 3721 log_unit_warning(UNIT(s), "Got notification message from PID "PID_FMT", but reception only permitted for main PID "PID_FMT, pid, s->main_pid);
336c6e46 3722 else
e3285237
LP
3723 log_unit_warning(UNIT(s), "Got notification message from PID "PID_FMT", but reception only permitted for main PID which is currently not known", pid);
3724
3725 return false;
3726 }
3727
3728 if (s->notify_access == NOTIFY_EXEC && pid != s->main_pid && pid != s->control_pid) {
6375bd20 3729 if (s->main_pid != 0 && s->control_pid != 0)
e3285237 3730 log_unit_warning(UNIT(s), "Got notification message from PID "PID_FMT", but reception only permitted for main PID "PID_FMT" and control PID "PID_FMT,
6375bd20
JW
3731 pid, s->main_pid, s->control_pid);
3732 else if (s->main_pid != 0)
e3285237 3733 log_unit_warning(UNIT(s), "Got notification message from PID "PID_FMT", but reception only permitted for main PID "PID_FMT, pid, s->main_pid);
6375bd20 3734 else if (s->control_pid != 0)
e3285237 3735 log_unit_warning(UNIT(s), "Got notification message from PID "PID_FMT", but reception only permitted for control PID "PID_FMT, pid, s->control_pid);
6375bd20 3736 else
e3285237
LP
3737 log_unit_warning(UNIT(s), "Got notification message from PID "PID_FMT", but reception only permitted for main PID and control PID which are currently not known", pid);
3738
3739 return false;
9711848f
LP
3740 }
3741
e3285237
LP
3742 return true;
3743}
3744
db256aab
LP
3745static void service_notify_message(
3746 Unit *u,
3747 const struct ucred *ucred,
3748 char **tags,
3749 FDSet *fds) {
3750
e3285237
LP
3751 Service *s = SERVICE(u);
3752 bool notify_dbus = false;
3753 const char *e;
cc2b7b11 3754 char **i;
db256aab 3755 int r;
e3285237
LP
3756
3757 assert(u);
db256aab 3758 assert(ucred);
e3285237 3759
db256aab 3760 if (!service_notify_message_authorized(SERVICE(u), ucred->pid, tags, fds))
e3285237
LP
3761 return;
3762
f1d34068 3763 if (DEBUG_LOGGING) {
9711848f
LP
3764 _cleanup_free_ char *cc = NULL;
3765
3766 cc = strv_join(tags, ", ");
db256aab 3767 log_unit_debug(u, "Got notification message from PID "PID_FMT" (%s)", ucred->pid, isempty(cc) ? "n/a" : cc);
9711848f 3768 }
c952c6ec 3769
8c47c732 3770 /* Interpret MAINPID= */
28849dba 3771 e = strv_find_startswith(tags, "MAINPID=");
5e56b378 3772 if (e && IN_SET(s->state, SERVICE_START, SERVICE_START_POST, SERVICE_RUNNING, SERVICE_RELOAD)) {
db256aab
LP
3773 pid_t new_main_pid;
3774
3775 if (parse_pid(e, &new_main_pid) < 0)
3776 log_unit_warning(u, "Failed to parse MAINPID= field in notification message, ignoring: %s", e);
3777 else if (!s->main_pid_known || new_main_pid != s->main_pid) {
3778
3779 r = service_is_suitable_main_pid(s, new_main_pid, LOG_WARNING);
3780 if (r == 0) {
3781 /* The new main PID is a bit suspicous, which is OK if the sender is privileged. */
3782
3783 if (ucred->uid == 0) {
3784 log_unit_debug(u, "New main PID "PID_FMT" does not belong to service, but we'll accept it as the request to change it came from a privileged process.", new_main_pid);
3785 r = 1;
3786 } else
3787 log_unit_debug(u, "New main PID "PID_FMT" does not belong to service, refusing.", new_main_pid);
3788 }
3789 if (r > 0) {
3790 service_set_main_pid(s, new_main_pid);
cdc2af3e 3791
f75f613d 3792 r = unit_watch_pid(UNIT(s), new_main_pid, false);
cdc2af3e
LP
3793 if (r < 0)
3794 log_unit_warning_errno(UNIT(s), r, "Failed to watch new main PID "PID_FMT" for service: %m", new_main_pid);
3795
db256aab
LP
3796 notify_dbus = true;
3797 }
8c47c732
LP
3798 }
3799 }
3800
cc2b7b11
LP
3801 /* Interpret READY=/STOPPING=/RELOADING=. Last one wins. */
3802 STRV_FOREACH_BACKWARDS(i, tags) {
308d72dc 3803
cc2b7b11
LP
3804 if (streq(*i, "READY=1")) {
3805 s->notify_state = NOTIFY_READY;
308d72dc 3806
cc2b7b11
LP
3807 /* Type=notify services inform us about completed
3808 * initialization with READY=1 */
3809 if (s->type == SERVICE_NOTIFY && s->state == SERVICE_START)
3810 service_enter_start_post(s);
308d72dc 3811
cc2b7b11
LP
3812 /* Sending READY=1 while we are reloading informs us
3813 * that the reloading is complete */
3814 if (s->state == SERVICE_RELOAD && s->control_pid == 0)
3815 service_enter_running(s, SERVICE_SUCCESS);
308d72dc 3816
cc2b7b11
LP
3817 notify_dbus = true;
3818 break;
308d72dc 3819
cc2b7b11
LP
3820 } else if (streq(*i, "RELOADING=1")) {
3821 s->notify_state = NOTIFY_RELOADING;
308d72dc 3822
cc2b7b11
LP
3823 if (s->state == SERVICE_RUNNING)
3824 service_enter_reload_by_notify(s);
308d72dc 3825
cc2b7b11
LP
3826 notify_dbus = true;
3827 break;
308d72dc 3828
cc2b7b11
LP
3829 } else if (streq(*i, "STOPPING=1")) {
3830 s->notify_state = NOTIFY_STOPPING;
308d72dc 3831
cc2b7b11
LP
3832 if (s->state == SERVICE_RUNNING)
3833 service_enter_stop_by_notify(s);
308d72dc 3834
cc2b7b11
LP
3835 notify_dbus = true;
3836 break;
3837 }
8c47c732
LP
3838 }
3839
3840 /* Interpret STATUS= */
28849dba 3841 e = strv_find_startswith(tags, "STATUS=");
7f110ff9 3842 if (e) {
28849dba 3843 _cleanup_free_ char *t = NULL;
8c47c732 3844
28849dba 3845 if (!isempty(e)) {
3eac1bca
LP
3846 /* Note that this size limit check is mostly paranoia: since the datagram size we are willing
3847 * to process is already limited to NOTIFY_BUFFER_MAX, this limit here should never be hit. */
3848 if (strlen(e) > STATUS_TEXT_MAX)
3849 log_unit_warning(u, "Status message overly long (%zu > %u), ignoring.", strlen(e), STATUS_TEXT_MAX);
3850 else if (!utf8_is_valid(e))
3851 log_unit_warning(u, "Status message in notification message is not UTF-8 clean, ignoring.");
28849dba 3852 else {
28849dba
LP
3853 t = strdup(e);
3854 if (!t)
3855 log_oom();
3a2776bc 3856 }
28849dba 3857 }
8c47c732 3858
30b5275a 3859 if (!streq_ptr(s->status_text, t)) {
3b319885 3860 free_and_replace(s->status_text, t);
30b5275a 3861 notify_dbus = true;
28849dba 3862 }
8c47c732 3863 }
842129f5 3864
4774e357 3865 /* Interpret ERRNO= */
28849dba 3866 e = strv_find_startswith(tags, "ERRNO=");
4774e357
MAA
3867 if (e) {
3868 int status_errno;
3869
2fa40742
LP
3870 status_errno = parse_errno(e);
3871 if (status_errno < 0)
3872 log_unit_warning_errno(u, status_errno,
5e1ee764 3873 "Failed to parse ERRNO= field value '%s' in notification message: %m", e);
2fa40742
LP
3874 else if (s->status_errno != status_errno) {
3875 s->status_errno = status_errno;
3876 notify_dbus = true;
4774e357
MAA
3877 }
3878 }
3879
a327431b
DB
3880 /* Interpret EXTEND_TIMEOUT= */
3881 e = strv_find_startswith(tags, "EXTEND_TIMEOUT_USEC=");
3882 if (e) {
3883 usec_t extend_timeout_usec;
3884 if (safe_atou64(e, &extend_timeout_usec) < 0)
3885 log_unit_warning(u, "Failed to parse EXTEND_TIMEOUT_USEC=%s", e);
3886 else
3887 service_extend_timeout(s, extend_timeout_usec);
3888 }
3889
6f285378 3890 /* Interpret WATCHDOG= */
1f6b4113 3891 if (strv_find(tags, "WATCHDOG=1"))
842129f5 3892 service_reset_watchdog(s);
c4e2ceae 3893
c45d11cb
LP
3894 e = strv_find_startswith(tags, "WATCHDOG_USEC=");
3895 if (e) {
3896 usec_t watchdog_override_usec;
3897 if (safe_atou64(e, &watchdog_override_usec) < 0)
3898 log_unit_warning(u, "Failed to parse WATCHDOG_USEC=%s", e);
3899 else
95d0d8ed 3900 service_override_watchdog_timeout(s, watchdog_override_usec);
c45d11cb
LP
3901 }
3902
e78ee06d
LP
3903 /* Process FD store messages. Either FDSTOREREMOVE=1 for removal, or FDSTORE=1 for addition. In both cases,
3904 * process FDNAME= for picking the file descriptor name to use. Note that FDNAME= is required when removing
3905 * fds, but optional when pushing in new fds, for compatibility reasons. */
3906 if (strv_find(tags, "FDSTOREREMOVE=1")) {
3907 const char *name;
3908
3909 name = strv_find_startswith(tags, "FDNAME=");
3910 if (!name || !fdname_is_valid(name))
3911 log_unit_warning(u, "FDSTOREREMOVE=1 requested, but no valid file descriptor name passed, ignoring.");
3912 else
3913 service_remove_fd_store(s, name);
3914
3915 } else if (strv_find(tags, "FDSTORE=1")) {
8dd4c05b
LP
3916 const char *name;
3917
3918 name = strv_find_startswith(tags, "FDNAME=");
3919 if (name && !fdname_is_valid(name)) {
3920 log_unit_warning(u, "Passed FDNAME= name is invalid, ignoring.");
3921 name = NULL;
3922 }
3923
e78ee06d 3924 (void) service_add_fd_store_set(s, fds, name);
8dd4c05b 3925 }
a354329f 3926
c4e2ceae 3927 /* Notify clients about changed status or main pid */
30b5275a
LP
3928 if (notify_dbus)
3929 unit_add_to_dbus_queue(u);
8c47c732
LP
3930}
3931
7a7821c8 3932static int service_get_timeout(Unit *u, usec_t *timeout) {
68db7a3b 3933 Service *s = SERVICE(u);
7a7821c8 3934 uint64_t t;
68db7a3b
ZJS
3935 int r;
3936
3937 if (!s->timer_event_source)
3938 return 0;
3939
7a7821c8 3940 r = sd_event_source_get_time(s->timer_event_source, &t);
68db7a3b
ZJS
3941 if (r < 0)
3942 return r;
7a7821c8
LP
3943 if (t == USEC_INFINITY)
3944 return 0;
68db7a3b 3945
7a7821c8 3946 *timeout = t;
68db7a3b
ZJS
3947 return 1;
3948}
3949
05e343b7
LP
3950static void service_bus_name_owner_change(
3951 Unit *u,
3952 const char *name,
3953 const char *old_owner,
3954 const char *new_owner) {
3955
3956 Service *s = SERVICE(u);
718db961 3957 int r;
05e343b7
LP
3958
3959 assert(s);
3960 assert(name);
3961
3962 assert(streq(s->bus_name, name));
3963 assert(old_owner || new_owner);
3964
3965 if (old_owner && new_owner)
f2341e0a 3966 log_unit_debug(u, "D-Bus name %s changed owner from %s to %s", name, old_owner, new_owner);
05e343b7 3967 else if (old_owner)
f2341e0a 3968 log_unit_debug(u, "D-Bus name %s no longer registered by %s", name, old_owner);
05e343b7 3969 else
f2341e0a 3970 log_unit_debug(u, "D-Bus name %s now registered by %s", name, new_owner);
05e343b7
LP
3971
3972 s->bus_name_good = !!new_owner;
3973
d8ccf5fd
DM
3974 /* Track the current owner, so we can reconstruct changes after a daemon reload */
3975 r = free_and_strdup(&s->bus_name_owner, new_owner);
3976 if (r < 0) {
3977 log_unit_error_errno(u, r, "Unable to set new bus name owner %s: %m", new_owner);
3978 return;
3979 }
3980
05e343b7
LP
3981 if (s->type == SERVICE_DBUS) {
3982
3983 /* service_enter_running() will figure out what to
3984 * do */
3985 if (s->state == SERVICE_RUNNING)
f42806df 3986 service_enter_running(s, SERVICE_SUCCESS);
05e343b7
LP
3987 else if (s->state == SERVICE_START && new_owner)
3988 service_enter_start_post(s);
3989
3990 } else if (new_owner &&
3991 s->main_pid <= 0 &&
a6951a50
LP
3992 IN_SET(s->state,
3993 SERVICE_START,
3994 SERVICE_START_POST,
3995 SERVICE_RUNNING,
3996 SERVICE_RELOAD)) {
05e343b7 3997
4afd3348 3998 _cleanup_(sd_bus_creds_unrefp) sd_bus_creds *creds = NULL;
718db961 3999 pid_t pid;
05e343b7 4000
718db961 4001 /* Try to acquire PID from bus service */
05e343b7 4002
056f95d0 4003 r = sd_bus_get_name_creds(u->manager->api_bus, name, SD_BUS_CREDS_PID, &creds);
5b12334d
LP
4004 if (r >= 0)
4005 r = sd_bus_creds_get_pid(creds, &pid);
718db961 4006 if (r >= 0) {
7c102d60 4007 log_unit_debug(u, "D-Bus name %s is now owned by process " PID_FMT, name, pid);
05e343b7 4008
718db961 4009 service_set_main_pid(s, pid);
f75f613d 4010 unit_watch_pid(UNIT(s), pid, false);
718db961 4011 }
7400b9d2 4012 }
05e343b7
LP
4013}
4014
16115b0a 4015int service_set_socket_fd(Service *s, int fd, Socket *sock, bool selinux_context_net) {
79a98c60
LP
4016 _cleanup_free_ char *peer = NULL;
4017 int r;
57020a3a 4018
4f2d528d
LP
4019 assert(s);
4020 assert(fd >= 0);
4021
7f2fbbff
LP
4022 /* This is called by the socket code when instantiating a new service for a stream socket and the socket needs
4023 * to be configured. We take ownership of the passed fd on success. */
4f2d528d 4024
1124fe6f 4025 if (UNIT(s)->load_state != UNIT_LOADED)
4f2d528d
LP
4026 return -EINVAL;
4027
4028 if (s->socket_fd >= 0)
4029 return -EBUSY;
4030
4031 if (s->state != SERVICE_DEAD)
4032 return -EAGAIN;
4033
366b7db4 4034 if (getpeername_pretty(fd, true, &peer) >= 0) {
79a98c60
LP
4035
4036 if (UNIT(s)->description) {
4037 _cleanup_free_ char *a;
4038
605405c6 4039 a = strjoin(UNIT(s)->description, " (", peer, ")");
79a98c60
LP
4040 if (!a)
4041 return -ENOMEM;
4042
4043 r = unit_set_description(UNIT(s), a);
4044 } else
4045 r = unit_set_description(UNIT(s), peer);
4046
4047 if (r < 0)
4048 return r;
4049 }
4050
eef85c4a 4051 r = unit_add_two_dependencies(UNIT(sock), UNIT_BEFORE, UNIT_TRIGGERS, UNIT(s), false, UNIT_DEPENDENCY_IMPLICIT);
7f2fbbff
LP
4052 if (r < 0)
4053 return r;
4054
4f2d528d 4055 s->socket_fd = fd;
16115b0a 4056 s->socket_fd_selinux_context_net = selinux_context_net;
6cf6bbc2 4057
7f7d01ed 4058 unit_ref_set(&s->accept_socket, UNIT(s), UNIT(sock));
7f2fbbff 4059 return 0;
4f2d528d
LP
4060}
4061
fdf20a31 4062static void service_reset_failed(Unit *u) {
5632e374
LP
4063 Service *s = SERVICE(u);
4064
4065 assert(s);
4066
fdf20a31 4067 if (s->state == SERVICE_FAILED)
5632e374
LP
4068 service_set_state(s, SERVICE_DEAD);
4069
f42806df
LP
4070 s->result = SERVICE_SUCCESS;
4071 s->reload_result = SERVICE_SUCCESS;
7a0019d3
LP
4072 s->n_restarts = 0;
4073 s->flush_n_restarts = false;
5632e374
LP
4074}
4075
718db961 4076static int service_kill(Unit *u, KillWho who, int signo, sd_bus_error *error) {
8a0867d6 4077 Service *s = SERVICE(u);
41efeaec 4078
a6951a50
LP
4079 assert(s);
4080
814cc562 4081 return unit_kill_common(u, who, signo, s->main_pid, s->control_pid, error);
8a0867d6
LP
4082}
4083
291d565a
LP
4084static int service_main_pid(Unit *u) {
4085 Service *s = SERVICE(u);
4086
4087 assert(s);
4088
4089 return s->main_pid;
4090}
4091
4092static int service_control_pid(Unit *u) {
4093 Service *s = SERVICE(u);
4094
4095 assert(s);
4096
4097 return s->control_pid;
4098}
4099
bb2c7685
LP
4100static bool service_needs_console(Unit *u) {
4101 Service *s = SERVICE(u);
4102
4103 assert(s);
4104
4105 /* We provide our own implementation of this here, instead of relying of the generic implementation
4106 * unit_needs_console() provides, since we want to return false if we are in SERVICE_EXITED state. */
4107
4108 if (!exec_context_may_touch_console(&s->exec_context))
4109 return false;
4110
4111 return IN_SET(s->state,
4112 SERVICE_START_PRE,
4113 SERVICE_START,
4114 SERVICE_START_POST,
4115 SERVICE_RUNNING,
4116 SERVICE_RELOAD,
4117 SERVICE_STOP,
c87700a1 4118 SERVICE_STOP_WATCHDOG,
bb2c7685
LP
4119 SERVICE_STOP_SIGTERM,
4120 SERVICE_STOP_SIGKILL,
4121 SERVICE_STOP_POST,
4122 SERVICE_FINAL_SIGTERM,
4123 SERVICE_FINAL_SIGKILL);
4124}
4125
7af67e9a
LP
4126static int service_exit_status(Unit *u) {
4127 Service *s = SERVICE(u);
4128
4129 assert(u);
4130
4131 if (s->main_exec_status.pid <= 0 ||
4132 !dual_timestamp_is_set(&s->main_exec_status.exit_timestamp))
4133 return -ENODATA;
4134
4135 if (s->main_exec_status.code != CLD_EXITED)
4136 return -EBADE;
4137
4138 return s->main_exec_status.status;
4139}
4140
94f04347 4141static const char* const service_restart_table[_SERVICE_RESTART_MAX] = {
525ee6f4
LP
4142 [SERVICE_RESTART_NO] = "no",
4143 [SERVICE_RESTART_ON_SUCCESS] = "on-success",
50caaedb 4144 [SERVICE_RESTART_ON_FAILURE] = "on-failure",
6cfe2fde 4145 [SERVICE_RESTART_ON_ABNORMAL] = "on-abnormal",
dc99a976 4146 [SERVICE_RESTART_ON_WATCHDOG] = "on-watchdog",
50caaedb 4147 [SERVICE_RESTART_ON_ABORT] = "on-abort",
6cfe2fde 4148 [SERVICE_RESTART_ALWAYS] = "always",
94f04347
LP
4149};
4150
4151DEFINE_STRING_TABLE_LOOKUP(service_restart, ServiceRestart);
4152
4153static const char* const service_type_table[_SERVICE_TYPE_MAX] = {
94f04347 4154 [SERVICE_SIMPLE] = "simple",
0d624a78 4155 [SERVICE_FORKING] = "forking",
34e9ba66 4156 [SERVICE_ONESHOT] = "oneshot",
8c47c732 4157 [SERVICE_DBUS] = "dbus",
f2b68789 4158 [SERVICE_NOTIFY] = "notify",
5686391b
LP
4159 [SERVICE_IDLE] = "idle",
4160 [SERVICE_EXEC] = "exec",
94f04347
LP
4161};
4162
4163DEFINE_STRING_TABLE_LOOKUP(service_type, ServiceType);
4164
e537352b 4165static const char* const service_exec_command_table[_SERVICE_EXEC_COMMAND_MAX] = {
94f04347
LP
4166 [SERVICE_EXEC_START_PRE] = "ExecStartPre",
4167 [SERVICE_EXEC_START] = "ExecStart",
4168 [SERVICE_EXEC_START_POST] = "ExecStartPost",
4169 [SERVICE_EXEC_RELOAD] = "ExecReload",
4170 [SERVICE_EXEC_STOP] = "ExecStop",
4171 [SERVICE_EXEC_STOP_POST] = "ExecStopPost",
4172};
4173
4174DEFINE_STRING_TABLE_LOOKUP(service_exec_command, ServiceExecCommand);
4175
308d72dc
LP
4176static const char* const notify_state_table[_NOTIFY_STATE_MAX] = {
4177 [NOTIFY_UNKNOWN] = "unknown",
4178 [NOTIFY_READY] = "ready",
4179 [NOTIFY_RELOADING] = "reloading",
4180 [NOTIFY_STOPPING] = "stopping",
4181};
4182
4183DEFINE_STRING_TABLE_LOOKUP(notify_state, NotifyState);
4184
f42806df
LP
4185static const char* const service_result_table[_SERVICE_RESULT_MAX] = {
4186 [SERVICE_SUCCESS] = "success",
4187 [SERVICE_FAILURE_RESOURCES] = "resources",
c35755fb 4188 [SERVICE_FAILURE_PROTOCOL] = "protocol",
f42806df
LP
4189 [SERVICE_FAILURE_TIMEOUT] = "timeout",
4190 [SERVICE_FAILURE_EXIT_CODE] = "exit-code",
4191 [SERVICE_FAILURE_SIGNAL] = "signal",
bb242b7b 4192 [SERVICE_FAILURE_CORE_DUMP] = "core-dump",
8d1b002a 4193 [SERVICE_FAILURE_WATCHDOG] = "watchdog",
07299350 4194 [SERVICE_FAILURE_START_LIMIT_HIT] = "start-limit-hit",
afcfaa69 4195 [SERVICE_FAILURE_OOM_KILL] = "oom-kill",
f42806df
LP
4196};
4197
4198DEFINE_STRING_TABLE_LOOKUP(service_result, ServiceResult);
4199
87f0e418 4200const UnitVTable service_vtable = {
7d17cfbc 4201 .object_size = sizeof(Service),
718db961
LP
4202 .exec_context_offset = offsetof(Service, exec_context),
4203 .cgroup_context_offset = offsetof(Service, cgroup_context),
4204 .kill_context_offset = offsetof(Service, kill_context),
613b411c 4205 .exec_runtime_offset = offsetof(Service, exec_runtime),
29206d46 4206 .dynamic_creds_offset = offsetof(Service, dynamic_creds),
3ef63c31 4207
f975e971
LP
4208 .sections =
4209 "Unit\0"
4210 "Service\0"
4211 "Install\0",
4ad49000 4212 .private_section = "Service",
71645aca 4213
1d9cc876
LP
4214 .can_transient = true,
4215 .can_delegate = true,
4216
034c6ed7
LP
4217 .init = service_init,
4218 .done = service_done,
a16e1123 4219 .load = service_load,
a354329f 4220 .release_resources = service_release_resources,
a16e1123
LP
4221
4222 .coldplug = service_coldplug,
034c6ed7 4223
5cb5a6ff
LP
4224 .dump = service_dump,
4225
4226 .start = service_start,
4227 .stop = service_stop,
4228 .reload = service_reload,
4229
034c6ed7
LP
4230 .can_reload = service_can_reload,
4231
8a0867d6
LP
4232 .kill = service_kill,
4233
a16e1123
LP
4234 .serialize = service_serialize,
4235 .deserialize_item = service_deserialize_item,
4236
5cb5a6ff 4237 .active_state = service_active_state,
10a94420 4238 .sub_state_to_string = service_sub_state_to_string,
5cb5a6ff 4239
deb4e708
MK
4240 .will_restart = service_will_restart,
4241
f2f725e5 4242 .may_gc = service_may_gc,
701cc384 4243
034c6ed7 4244 .sigchld_event = service_sigchld_event,
2c4104f0 4245
fdf20a31 4246 .reset_failed = service_reset_failed,
5632e374 4247
4ad49000 4248 .notify_cgroup_empty = service_notify_cgroup_empty_event,
afcfaa69 4249 .notify_cgroup_oom = service_notify_cgroup_oom_event,
8c47c732 4250 .notify_message = service_notify_message,
8e274523 4251
291d565a
LP
4252 .main_pid = service_main_pid,
4253 .control_pid = service_control_pid,
4254
05e343b7 4255 .bus_name_owner_change = service_bus_name_owner_change,
05e343b7 4256
718db961 4257 .bus_vtable = bus_service_vtable,
74c964d3
LP
4258 .bus_set_property = bus_service_set_property,
4259 .bus_commit_properties = bus_service_commit_properties,
4139c1b2 4260
68db7a3b 4261 .get_timeout = service_get_timeout,
bb2c7685 4262 .needs_console = service_needs_console,
7af67e9a 4263 .exit_status = service_exit_status,
718db961 4264
c6918296
MS
4265 .status_message_formats = {
4266 .starting_stopping = {
4267 [0] = "Starting %s...",
4268 [1] = "Stopping %s...",
4269 },
4270 .finished_start_job = {
4271 [JOB_DONE] = "Started %s.",
4272 [JOB_FAILED] = "Failed to start %s.",
c6918296
MS
4273 },
4274 .finished_stop_job = {
4275 [JOB_DONE] = "Stopped %s.",
4276 [JOB_FAILED] = "Stopped (with error) %s.",
c6918296
MS
4277 },
4278 },
5cb5a6ff 4279};