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