]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/core/service.c
cgroup: tiny log message tweak, say that we ignore one kind of failure
[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
2ad2e41a
LP
1083 unit_notify(UNIT(s), table[old_state], table[state],
1084 (s->reload_result == SERVICE_SUCCESS ? 0 : UNIT_NOTIFY_RELOAD_FAILURE) |
1085 (s->will_auto_restart ? UNIT_NOTIFY_WILL_AUTO_RESTART : 0));
034c6ed7
LP
1086}
1087
36c16a7c
LP
1088static usec_t service_coldplug_timeout(Service *s) {
1089 assert(s);
1090
1091 switch (s->deserialized_state) {
1092
1093 case SERVICE_START_PRE:
1094 case SERVICE_START:
1095 case SERVICE_START_POST:
1096 case SERVICE_RELOAD:
1097 return usec_add(UNIT(s)->state_change_timestamp.monotonic, s->timeout_start_usec);
1098
1099 case SERVICE_RUNNING:
1100 return usec_add(UNIT(s)->active_enter_timestamp.monotonic, s->runtime_max_usec);
1101
1102 case SERVICE_STOP:
1103 case SERVICE_STOP_SIGABRT:
1104 case SERVICE_STOP_SIGTERM:
1105 case SERVICE_STOP_SIGKILL:
1106 case SERVICE_STOP_POST:
1107 case SERVICE_FINAL_SIGTERM:
1108 case SERVICE_FINAL_SIGKILL:
1109 return usec_add(UNIT(s)->state_change_timestamp.monotonic, s->timeout_stop_usec);
1110
1111 case SERVICE_AUTO_RESTART:
1112 return usec_add(UNIT(s)->inactive_enter_timestamp.monotonic, s->restart_usec);
1113
1114 default:
1115 return USEC_INFINITY;
1116 }
1117}
1118
be847e82 1119static int service_coldplug(Unit *u) {
a16e1123
LP
1120 Service *s = SERVICE(u);
1121 int r;
1122
1123 assert(s);
1124 assert(s->state == SERVICE_DEAD);
1125
930d2838
LP
1126 if (s->deserialized_state == s->state)
1127 return 0;
6c12b52e 1128
36c16a7c
LP
1129 r = service_arm_timer(s, service_coldplug_timeout(s));
1130 if (r < 0)
1131 return r;
a911bb9a 1132
930d2838
LP
1133 if (s->main_pid > 0 &&
1134 pid_is_unwaited(s->main_pid) &&
9acac212 1135 (IN_SET(s->deserialized_state,
930d2838
LP
1136 SERVICE_START, SERVICE_START_POST,
1137 SERVICE_RUNNING, SERVICE_RELOAD,
1138 SERVICE_STOP, SERVICE_STOP_SIGABRT, SERVICE_STOP_SIGTERM, SERVICE_STOP_SIGKILL, SERVICE_STOP_POST,
1139 SERVICE_FINAL_SIGTERM, SERVICE_FINAL_SIGKILL))) {
1140 r = unit_watch_pid(UNIT(s), s->main_pid);
1141 if (r < 0)
1142 return r;
1143 }
bb242b7b 1144
930d2838
LP
1145 if (s->control_pid > 0 &&
1146 pid_is_unwaited(s->control_pid) &&
1147 IN_SET(s->deserialized_state,
1148 SERVICE_START_PRE, SERVICE_START, SERVICE_START_POST,
1149 SERVICE_RELOAD,
1150 SERVICE_STOP, SERVICE_STOP_SIGABRT, SERVICE_STOP_SIGTERM, SERVICE_STOP_SIGKILL, SERVICE_STOP_POST,
1151 SERVICE_FINAL_SIGTERM, SERVICE_FINAL_SIGKILL)) {
1152 r = unit_watch_pid(UNIT(s), s->control_pid);
1153 if (r < 0)
1154 return r;
a16e1123 1155 }
92c1622e 1156
930d2838
LP
1157 if (!IN_SET(s->deserialized_state, SERVICE_DEAD, SERVICE_FAILED, SERVICE_AUTO_RESTART))
1158 unit_watch_all_pids(UNIT(s));
1159
1160 if (IN_SET(s->deserialized_state, SERVICE_START_POST, SERVICE_RUNNING, SERVICE_RELOAD))
1161 service_start_watchdog(s);
1162
e8a565cb 1163 if (!IN_SET(s->deserialized_state, SERVICE_DEAD, SERVICE_FAILED, SERVICE_AUTO_RESTART)) {
29206d46 1164 (void) unit_setup_dynamic_creds(u);
e8a565cb
YW
1165 (void) unit_setup_exec_runtime(u);
1166 }
29206d46 1167
3ebcd323
ZJS
1168 if (UNIT_ISSET(s->accept_socket)) {
1169 Socket* socket = SOCKET(UNIT_DEREF(s->accept_socket));
1170
1171 if (socket->max_connections_per_source > 0) {
1172 SocketPeer *peer;
1173
1174 /* Make a best-effort attempt at bumping the connection count */
1175 if (socket_acquire_peer(socket, s->socket_fd, &peer) > 0) {
1176 socket_peer_unref(s->peer);
1177 s->peer = peer;
1178 }
1179 }
1180 }
1181
930d2838 1182 service_set_state(s, s->deserialized_state);
a16e1123
LP
1183 return 0;
1184}
1185
4c47affc
FB
1186static int service_collect_fds(Service *s,
1187 int **fds,
1188 char ***fd_names,
1189 unsigned *n_storage_fds,
1190 unsigned *n_socket_fds) {
1191
8dd4c05b 1192 _cleanup_strv_free_ char **rfd_names = NULL;
a354329f 1193 _cleanup_free_ int *rfds = NULL;
4c47affc
FB
1194 unsigned rn_socket_fds = 0, rn_storage_fds = 0;
1195 int r;
44d8db9e
LP
1196
1197 assert(s);
1198 assert(fds);
8dd4c05b 1199 assert(fd_names);
9b141911 1200 assert(n_socket_fds);
44d8db9e 1201
8dd4c05b 1202 if (s->socket_fd >= 0) {
6cf6bbc2 1203
8dd4c05b 1204 /* Pass the per-connection socket */
57020a3a 1205
8dd4c05b
LP
1206 rfds = new(int, 1);
1207 if (!rfds)
1208 return -ENOMEM;
1209 rfds[0] = s->socket_fd;
57020a3a 1210
8dd4c05b
LP
1211 rfd_names = strv_new("connection", NULL);
1212 if (!rfd_names)
1213 return -ENOMEM;
44d8db9e 1214
4c47affc 1215 rn_socket_fds = 1;
8dd4c05b
LP
1216 } else {
1217 Iterator i;
eef85c4a 1218 void *v;
8dd4c05b 1219 Unit *u;
44d8db9e 1220
8dd4c05b 1221 /* Pass all our configured sockets for singleton services */
44d8db9e 1222
eef85c4a 1223 HASHMAP_FOREACH_KEY(v, u, UNIT(s)->dependencies[UNIT_TRIGGERED_BY], i) {
8dd4c05b
LP
1224 _cleanup_free_ int *cfds = NULL;
1225 Socket *sock;
1226 int cn_fds;
44d8db9e 1227
8dd4c05b
LP
1228 if (u->type != UNIT_SOCKET)
1229 continue;
44d8db9e 1230
8dd4c05b 1231 sock = SOCKET(u);
a354329f 1232
8dd4c05b
LP
1233 cn_fds = socket_collect_fds(sock, &cfds);
1234 if (cn_fds < 0)
1235 return cn_fds;
44d8db9e 1236
8dd4c05b
LP
1237 if (cn_fds <= 0)
1238 continue;
79c7626d 1239
8dd4c05b 1240 if (!rfds) {
1cc6c93a 1241 rfds = TAKE_PTR(cfds);
4c47affc 1242 rn_socket_fds = cn_fds;
8dd4c05b
LP
1243 } else {
1244 int *t;
1245
62d74c78 1246 t = reallocarray(rfds, rn_socket_fds + cn_fds, sizeof(int));
8dd4c05b
LP
1247 if (!t)
1248 return -ENOMEM;
1249
4c47affc 1250 memcpy(t + rn_socket_fds, cfds, cn_fds * sizeof(int));
8dd4c05b
LP
1251
1252 rfds = t;
4c47affc 1253 rn_socket_fds += cn_fds;
8dd4c05b
LP
1254 }
1255
1256 r = strv_extend_n(&rfd_names, socket_fdname(sock), cn_fds);
1257 if (r < 0)
1258 return r;
44d8db9e
LP
1259 }
1260 }
1261
a354329f
LP
1262 if (s->n_fd_store > 0) {
1263 ServiceFDStore *fs;
4c47affc 1264 unsigned n_fds;
8dd4c05b 1265 char **nl;
a354329f
LP
1266 int *t;
1267
62d74c78 1268 t = reallocarray(rfds, rn_socket_fds + s->n_fd_store, sizeof(int));
a354329f
LP
1269 if (!t)
1270 return -ENOMEM;
1271
1272 rfds = t;
8dd4c05b 1273
62d74c78 1274 nl = reallocarray(rfd_names, rn_socket_fds + s->n_fd_store + 1, sizeof(char *));
8dd4c05b
LP
1275 if (!nl)
1276 return -ENOMEM;
1277
1278 rfd_names = nl;
4c47affc 1279 n_fds = rn_socket_fds;
8dd4c05b
LP
1280
1281 LIST_FOREACH(fd_store, fs, s->fd_store) {
4c47affc
FB
1282 rfds[n_fds] = fs->fd;
1283 rfd_names[n_fds] = strdup(strempty(fs->fdname));
1284 if (!rfd_names[n_fds])
8dd4c05b
LP
1285 return -ENOMEM;
1286
4c47affc
FB
1287 rn_storage_fds++;
1288 n_fds++;
8dd4c05b
LP
1289 }
1290
4c47affc 1291 rfd_names[n_fds] = NULL;
a354329f
LP
1292 }
1293
1cc6c93a
YW
1294 *fds = TAKE_PTR(rfds);
1295 *fd_names = TAKE_PTR(rfd_names);
9b141911 1296 *n_socket_fds = rn_socket_fds;
4c47affc 1297 *n_storage_fds = rn_storage_fds;
3e33402a 1298
4c47affc 1299 return 0;
44d8db9e
LP
1300}
1301
6375bd20
JW
1302static bool service_exec_needs_notify_socket(Service *s, ExecFlags flags) {
1303 assert(s);
1304
1305 /* Notifications are accepted depending on the process and
1306 * the access setting of the service:
1307 * process: \ access: NONE MAIN EXEC ALL
1308 * main no yes yes yes
1309 * control no no yes yes
1310 * other (forked) no no no yes */
1311
1312 if (flags & EXEC_IS_CONTROL)
1313 /* A control process */
1314 return IN_SET(s->notify_access, NOTIFY_EXEC, NOTIFY_ALL);
1315
1316 /* We only spawn main processes and control processes, so any
1317 * process that is not a control process is a main process */
1318 return s->notify_access != NOTIFY_NONE;
1319}
1320
81a2b7ce
LP
1321static int service_spawn(
1322 Service *s,
1323 ExecCommand *c,
21b2ce39 1324 usec_t timeout,
c39f1ce2 1325 ExecFlags flags,
81a2b7ce
LP
1326 pid_t *_pid) {
1327
9fa95f85 1328 ExecParameters exec_params = {
c39f1ce2
LP
1329 .flags = flags,
1330 .stdin_fd = -1,
1331 .stdout_fd = -1,
1332 .stderr_fd = -1,
9fa95f85 1333 };
3c7416b6
LP
1334 _cleanup_strv_free_ char **final_env = NULL, **our_env = NULL, **fd_names = NULL;
1335 unsigned n_storage_fds = 0, n_socket_fds = 0, n_env = 0;
1336 _cleanup_free_ int *fds = NULL;
1337 pid_t pid;
8dd4c05b
LP
1338 int r;
1339
034c6ed7
LP
1340 assert(s);
1341 assert(c);
1342 assert(_pid);
1343
3c7416b6
LP
1344 r = unit_prepare_exec(UNIT(s));
1345 if (r < 0)
1346 return r;
1347
9c1a61ad
LP
1348 if (flags & EXEC_IS_CONTROL) {
1349 /* If this is a control process, mask the permissions/chroot application if this is requested. */
1350 if (s->permissions_start_only)
1703fa41 1351 exec_params.flags &= ~EXEC_APPLY_SANDBOXING;
9c1a61ad
LP
1352 if (s->root_directory_start_only)
1353 exec_params.flags &= ~EXEC_APPLY_CHROOT;
1354 }
1355
c39f1ce2 1356 if ((flags & EXEC_PASS_FDS) ||
6cf6bbc2
LP
1357 s->exec_context.std_input == EXEC_INPUT_SOCKET ||
1358 s->exec_context.std_output == EXEC_OUTPUT_SOCKET ||
1359 s->exec_context.std_error == EXEC_OUTPUT_SOCKET) {
1360
4c47affc 1361 r = service_collect_fds(s, &fds, &fd_names, &n_storage_fds, &n_socket_fds);
8dd4c05b 1362 if (r < 0)
36c16a7c 1363 return r;
6cf6bbc2 1364
4c47affc 1365 log_unit_debug(UNIT(s), "Passing %i fds to service", n_storage_fds + n_socket_fds);
4f2d528d 1366 }
44d8db9e 1367
36c16a7c
LP
1368 r = service_arm_timer(s, usec_add(now(CLOCK_MONOTONIC), timeout));
1369 if (r < 0)
1370 return r;
034c6ed7 1371
136dc4c4 1372 our_env = new0(char*, 9);
36c16a7c
LP
1373 if (!our_env)
1374 return -ENOMEM;
c952c6ec 1375
6375bd20 1376 if (service_exec_needs_notify_socket(s, flags))
36c16a7c
LP
1377 if (asprintf(our_env + n_env++, "NOTIFY_SOCKET=%s", UNIT(s)->manager->notify_socket) < 0)
1378 return -ENOMEM;
c952c6ec 1379
2105e76a 1380 if (s->main_pid > 0)
36c16a7c
LP
1381 if (asprintf(our_env + n_env++, "MAINPID="PID_FMT, s->main_pid) < 0)
1382 return -ENOMEM;
2105e76a 1383
c39f1ce2 1384 if (MANAGER_IS_USER(UNIT(s)->manager))
df0ff127 1385 if (asprintf(our_env + n_env++, "MANAGERPID="PID_FMT, getpid_cached()) < 0)
36c16a7c 1386 return -ENOMEM;
97ae63e2 1387
8dd4c05b 1388 if (s->socket_fd >= 0) {
3b1c5241
SL
1389 union sockaddr_union sa;
1390 socklen_t salen = sizeof(sa);
1391
f56e7bfe
LP
1392 /* If this is a per-connection service instance, let's set $REMOTE_ADDR and $REMOTE_PORT to something
1393 * useful. Note that we do this only when we are still connected at this point in time, which we might
1394 * very well not be. Hence we ignore all errors when retrieving peer information (as that might result
1395 * in ENOTCONN), and just use whate we can use. */
f2dbd059 1396
f56e7bfe
LP
1397 if (getpeername(s->socket_fd, &sa.sa, &salen) >= 0 &&
1398 IN_SET(sa.sa.sa_family, AF_INET, AF_INET6, AF_VSOCK)) {
3b1c5241 1399
3b1c5241
SL
1400 _cleanup_free_ char *addr = NULL;
1401 char *t;
882ac6e7 1402 unsigned port;
3b1c5241
SL
1403
1404 r = sockaddr_pretty(&sa.sa, salen, true, false, &addr);
1405 if (r < 0)
36c16a7c 1406 return r;
3b1c5241
SL
1407
1408 t = strappend("REMOTE_ADDR=", addr);
36c16a7c
LP
1409 if (!t)
1410 return -ENOMEM;
3b1c5241
SL
1411 our_env[n_env++] = t;
1412
882ac6e7
SH
1413 r = sockaddr_port(&sa.sa, &port);
1414 if (r < 0)
1415 return r;
3b1c5241 1416
36c16a7c
LP
1417 if (asprintf(&t, "REMOTE_PORT=%u", port) < 0)
1418 return -ENOMEM;
3b1c5241
SL
1419 our_env[n_env++] = t;
1420 }
1421 }
1422
136dc4c4
LP
1423 if (flags & EXEC_SETENV_RESULT) {
1424 if (asprintf(our_env + n_env++, "SERVICE_RESULT=%s", service_result_to_string(s->result)) < 0)
1425 return -ENOMEM;
1426
1427 if (s->main_exec_status.pid > 0 &&
1428 dual_timestamp_is_set(&s->main_exec_status.exit_timestamp)) {
1429 if (asprintf(our_env + n_env++, "EXIT_CODE=%s", sigchld_code_to_string(s->main_exec_status.code)) < 0)
1430 return -ENOMEM;
1431
1432 if (s->main_exec_status.code == CLD_EXITED)
1433 r = asprintf(our_env + n_env++, "EXIT_STATUS=%i", s->main_exec_status.status);
1434 else
1435 r = asprintf(our_env + n_env++, "EXIT_STATUS=%s", signal_to_string(s->main_exec_status.status));
1436 if (r < 0)
1437 return -ENOMEM;
1438 }
1439 }
1440
f0d47797 1441 unit_set_exec_params(UNIT(s), &exec_params);
3536f49e
YW
1442
1443 final_env = strv_env_merge(2, exec_params.environment, our_env, NULL);
36c16a7c
LP
1444 if (!final_env)
1445 return -ENOMEM;
c952c6ec 1446
5bf7569c
LP
1447 /* System services should get a new keyring by default. */
1448 SET_FLAG(exec_params.flags, EXEC_NEW_KEYRING, MANAGER_IS_SYSTEM(UNIT(s)->manager));
ac647978
LP
1449
1450 /* System D-Bus needs nss-systemd disabled, so that we don't deadlock */
1451 SET_FLAG(exec_params.flags, EXEC_NSS_BYPASS_BUS,
1452 MANAGER_IS_SYSTEM(UNIT(s)->manager) && unit_has_name(UNIT(s), SPECIAL_DBUS_SERVICE));
4ad49000 1453
5125e762 1454 exec_params.argv = c->argv;
c39f1ce2 1455 exec_params.environment = final_env;
9fa95f85 1456 exec_params.fds = fds;
8dd4c05b 1457 exec_params.fd_names = fd_names;
4c47affc 1458 exec_params.n_storage_fds = n_storage_fds;
9b141911 1459 exec_params.n_socket_fds = n_socket_fds;
9fa95f85 1460 exec_params.watchdog_usec = s->watchdog_usec;
a34ceba6 1461 exec_params.selinux_context_net = s->socket_fd_selinux_context_net;
9fa95f85
DM
1462 if (s->type == SERVICE_IDLE)
1463 exec_params.idle_pipe = UNIT(s)->manager->idle_pipe;
a34ceba6
LP
1464 exec_params.stdin_fd = s->stdin_fd;
1465 exec_params.stdout_fd = s->stdout_fd;
1466 exec_params.stderr_fd = s->stderr_fd;
9fa95f85 1467
f2341e0a
LP
1468 r = exec_spawn(UNIT(s),
1469 c,
9e2f7c11 1470 &s->exec_context,
9fa95f85 1471 &exec_params,
613b411c 1472 s->exec_runtime,
29206d46 1473 &s->dynamic_creds,
9e2f7c11 1474 &pid);
9e2f7c11 1475 if (r < 0)
36c16a7c 1476 return r;
034c6ed7 1477
117dcc57 1478 r = unit_watch_pid(UNIT(s), pid);
e8b509d3 1479 if (r < 0) /* FIXME: we need to do something here */
36c16a7c 1480 return r;
034c6ed7
LP
1481
1482 *_pid = pid;
1483
5cb5a6ff 1484 return 0;
034c6ed7
LP
1485}
1486
80876c20
LP
1487static int main_pid_good(Service *s) {
1488 assert(s);
1489
51894d70 1490 /* Returns 0 if the pid is dead, > 0 if it is good, < 0 if we don't know */
80876c20 1491
fc08079e 1492 /* If we know the pid file, then let's just check if it is
80876c20 1493 * still valid */
6dfa5494
LP
1494 if (s->main_pid_known) {
1495
1496 /* If it's an alien child let's check if it is still
1497 * alive ... */
62220cf7 1498 if (s->main_pid_alien && s->main_pid > 0)
9f5650ae 1499 return pid_is_alive(s->main_pid);
6dfa5494
LP
1500
1501 /* .. otherwise assume we'll get a SIGCHLD for it,
1502 * which we really should wait for to collect exit
1503 * status and code */
80876c20 1504 return s->main_pid > 0;
6dfa5494 1505 }
80876c20
LP
1506
1507 /* We don't know the pid */
1508 return -EAGAIN;
1509}
1510
019be286 1511static int control_pid_good(Service *s) {
80876c20
LP
1512 assert(s);
1513
07697d7e
LP
1514 /* Returns 0 if the control PID is dead, > 0 if it is good. We never actually return < 0 here, but in order to
1515 * make this function as similar as possible to main_pid_good() and cgroup_good(), we pretend that < 0 also
1516 * means: we can't figure it out. */
1517
80876c20
LP
1518 return s->control_pid > 0;
1519}
1520
1521static int cgroup_good(Service *s) {
1522 int r;
1523
1524 assert(s);
1525
07697d7e
LP
1526 /* Returns 0 if the cgroup is empty or doesn't exist, > 0 if it is exists and is populated, < 0 if we can't
1527 * figure it out */
1528
4ad49000
LP
1529 if (!UNIT(s)->cgroup_path)
1530 return 0;
1531
6f883237 1532 r = cg_is_empty_recursive(SYSTEMD_CGROUP_CONTROLLER, UNIT(s)->cgroup_path);
117dcc57 1533 if (r < 0)
80876c20
LP
1534 return r;
1535
b13ddbbc 1536 return r == 0;
80876c20
LP
1537}
1538
a509f0e6
LP
1539static bool service_shall_restart(Service *s) {
1540 assert(s);
1541
1542 /* Don't restart after manual stops */
1543 if (s->forbid_restart)
1544 return false;
1545
1546 /* Never restart if this is configured as special exception */
1547 if (exit_status_set_test(&s->restart_prevent_status, s->main_exec_status.code, s->main_exec_status.status))
1548 return false;
1549
1550 /* Restart if the exit code/status are configured as restart triggers */
1551 if (exit_status_set_test(&s->restart_force_status, s->main_exec_status.code, s->main_exec_status.status))
1552 return true;
1553
1554 switch (s->restart) {
1555
1556 case SERVICE_RESTART_NO:
1557 return false;
1558
1559 case SERVICE_RESTART_ALWAYS:
1560 return true;
1561
1562 case SERVICE_RESTART_ON_SUCCESS:
1563 return s->result == SERVICE_SUCCESS;
1564
1565 case SERVICE_RESTART_ON_FAILURE:
1566 return s->result != SERVICE_SUCCESS;
1567
1568 case SERVICE_RESTART_ON_ABNORMAL:
1569 return !IN_SET(s->result, SERVICE_SUCCESS, SERVICE_FAILURE_EXIT_CODE);
1570
1571 case SERVICE_RESTART_ON_WATCHDOG:
1572 return s->result == SERVICE_FAILURE_WATCHDOG;
1573
1574 case SERVICE_RESTART_ON_ABORT:
1575 return IN_SET(s->result, SERVICE_FAILURE_SIGNAL, SERVICE_FAILURE_CORE_DUMP);
1576
1577 default:
1578 assert_not_reached("unknown restart setting");
1579 }
1580}
1581
deb4e708
MK
1582static bool service_will_restart(Unit *u) {
1583 Service *s = SERVICE(u);
1584
53f47dfc
YW
1585 assert(s);
1586
deb4e708
MK
1587 if (s->will_auto_restart)
1588 return true;
53f47dfc
YW
1589 if (s->state == SERVICE_AUTO_RESTART)
1590 return true;
1591 if (!UNIT(s)->job)
1592 return false;
1593 if (UNIT(s)->job->type == JOB_START)
1594 return true;
2ad2e41a 1595
53f47dfc
YW
1596 return false;
1597}
1598
f42806df 1599static void service_enter_dead(Service *s, ServiceResult f, bool allow_restart) {
034c6ed7 1600 int r;
0f52f8e5 1601
034c6ed7
LP
1602 assert(s);
1603
0f52f8e5
LP
1604 /* If there's a stop job queued before we enter the DEAD state, we shouldn't act on Restart=, in order to not
1605 * undo what has already been enqueued. */
1606 if (unit_stop_pending(UNIT(s)))
1607 allow_restart = false;
1608
a0fef983 1609 if (s->result == SERVICE_SUCCESS)
f42806df 1610 s->result = f;
034c6ed7 1611
ed77d407
LP
1612 if (s->result != SERVICE_SUCCESS)
1613 log_unit_warning(UNIT(s), "Failed with result '%s'.", service_result_to_string(s->result));
1614
deb4e708
MK
1615 if (allow_restart && service_shall_restart(s))
1616 s->will_auto_restart = true;
1617
7eb2a8a1
LP
1618 /* Make sure service_release_resources() doesn't destroy our FD store, while we are changing through
1619 * SERVICE_FAILED/SERVICE_DEAD before entering into SERVICE_AUTO_RESTART. */
1620 s->n_keep_fd_store ++;
1621
0c7f15b3
MS
1622 service_set_state(s, s->result != SERVICE_SUCCESS ? SERVICE_FAILED : SERVICE_DEAD);
1623
deb4e708
MK
1624 if (s->will_auto_restart) {
1625 s->will_auto_restart = false;
034c6ed7 1626
36c16a7c 1627 r = service_arm_timer(s, usec_add(now(CLOCK_MONOTONIC), s->restart_usec));
7eb2a8a1
LP
1628 if (r < 0) {
1629 s->n_keep_fd_store--;
034c6ed7 1630 goto fail;
7eb2a8a1 1631 }
034c6ed7
LP
1632
1633 service_set_state(s, SERVICE_AUTO_RESTART);
7a0019d3
LP
1634 } else
1635 /* If we shan't restart, then flush out the restart counter. But don't do that immediately, so that the
1636 * user can still introspect the counter. Do so on the next start. */
1637 s->flush_n_restarts = true;
034c6ed7 1638
7eb2a8a1
LP
1639 /* The new state is in effect, let's decrease the fd store ref counter again. Let's also readd us to the GC
1640 * queue, so that the fd store is possibly gc'ed again */
1641 s->n_keep_fd_store--;
1642 unit_add_to_gc_queue(UNIT(s));
1643
f2341e0a 1644 /* The next restart might not be a manual stop, hence reset the flag indicating manual stops */
47342320
LP
1645 s->forbid_restart = false;
1646
e66cf1a3 1647 /* We want fresh tmpdirs in case service is started again immediately */
e8a565cb 1648 s->exec_runtime = exec_runtime_unref(s->exec_runtime, true);
c17ec25e 1649
53f47dfc 1650 if (s->exec_context.runtime_directory_preserve_mode == EXEC_PRESERVE_NO ||
deb4e708 1651 (s->exec_context.runtime_directory_preserve_mode == EXEC_PRESERVE_RESTART && !service_will_restart(UNIT(s))))
53f47dfc 1652 /* Also, remove the runtime directory */
3536f49e 1653 exec_context_destroy_runtime_directory(&s->exec_context, UNIT(s)->manager->prefix[EXEC_DIRECTORY_RUNTIME]);
e66cf1a3 1654
00d9ef85
LP
1655 /* Get rid of the IPC bits of the user */
1656 unit_unref_uid_gid(UNIT(s), true);
1657
29206d46
LP
1658 /* Release the user, and destroy it if we are the only remaining owner */
1659 dynamic_creds_destroy(&s->dynamic_creds);
1660
9285c9ff
LN
1661 /* Try to delete the pid file. At this point it will be
1662 * out-of-date, and some software might be confused by it, so
1663 * let's remove it. */
1664 if (s->pid_file)
fabab190 1665 (void) unlink(s->pid_file);
9285c9ff 1666
034c6ed7
LP
1667 return;
1668
1669fail:
f2341e0a 1670 log_unit_warning_errno(UNIT(s), r, "Failed to run install restart timer: %m");
f42806df 1671 service_enter_dead(s, SERVICE_FAILURE_RESOURCES, false);
034c6ed7
LP
1672}
1673
f42806df 1674static void service_enter_stop_post(Service *s, ServiceResult f) {
034c6ed7
LP
1675 int r;
1676 assert(s);
1677
a0fef983 1678 if (s->result == SERVICE_SUCCESS)
f42806df 1679 s->result = f;
034c6ed7 1680
5e94833f 1681 service_unwatch_control_pid(s);
a911bb9a 1682 unit_watch_all_pids(UNIT(s));
5e94833f 1683
117dcc57
ZJS
1684 s->control_command = s->exec_command[SERVICE_EXEC_STOP_POST];
1685 if (s->control_command) {
867b3b7d
LP
1686 s->control_command_id = SERVICE_EXEC_STOP_POST;
1687
ecedd90f
LP
1688 r = service_spawn(s,
1689 s->control_command,
21b2ce39 1690 s->timeout_stop_usec,
1703fa41 1691 EXEC_APPLY_SANDBOXING|EXEC_APPLY_CHROOT|EXEC_APPLY_TTY_STDIN|EXEC_IS_CONTROL|EXEC_SETENV_RESULT,
ecedd90f
LP
1692 &s->control_pid);
1693 if (r < 0)
034c6ed7
LP
1694 goto fail;
1695
80876c20
LP
1696 service_set_state(s, SERVICE_STOP_POST);
1697 } else
ac84d1fb 1698 service_enter_signal(s, SERVICE_FINAL_SIGTERM, SERVICE_SUCCESS);
034c6ed7
LP
1699
1700 return;
1701
1702fail:
f2341e0a 1703 log_unit_warning_errno(UNIT(s), r, "Failed to run 'stop-post' task: %m");
f42806df 1704 service_enter_signal(s, SERVICE_FINAL_SIGTERM, SERVICE_FAILURE_RESOURCES);
034c6ed7
LP
1705}
1706
4940c0b0
LP
1707static int state_to_kill_operation(ServiceState state) {
1708 switch (state) {
1709
1710 case SERVICE_STOP_SIGABRT:
1711 return KILL_ABORT;
1712
1713 case SERVICE_STOP_SIGTERM:
1714 case SERVICE_FINAL_SIGTERM:
1715 return KILL_TERMINATE;
1716
1717 case SERVICE_STOP_SIGKILL:
1718 case SERVICE_FINAL_SIGKILL:
1719 return KILL_KILL;
1720
1721 default:
1722 return _KILL_OPERATION_INVALID;
1723 }
1724}
1725
f42806df 1726static void service_enter_signal(Service *s, ServiceState state, ServiceResult f) {
034c6ed7 1727 int r;
034c6ed7
LP
1728
1729 assert(s);
1730
a0fef983 1731 if (s->result == SERVICE_SUCCESS)
f42806df 1732 s->result = f;
034c6ed7 1733
a911bb9a
LP
1734 unit_watch_all_pids(UNIT(s));
1735
cd2086fe
LP
1736 r = unit_kill_context(
1737 UNIT(s),
1738 &s->kill_context,
4940c0b0 1739 state_to_kill_operation(state),
cd2086fe
LP
1740 s->main_pid,
1741 s->control_pid,
1742 s->main_pid_alien);
1743 if (r < 0)
1744 goto fail;
034c6ed7 1745
cd2086fe 1746 if (r > 0) {
36c16a7c
LP
1747 r = service_arm_timer(s, usec_add(now(CLOCK_MONOTONIC), s->timeout_stop_usec));
1748 if (r < 0)
1749 goto fail;
d6ea93e3 1750
80876c20 1751 service_set_state(s, state);
1db0db4b 1752 } else if (IN_SET(state, SERVICE_STOP_SIGABRT, SERVICE_STOP_SIGTERM) && s->kill_context.send_sigkill)
ac84d1fb 1753 service_enter_signal(s, SERVICE_STOP_SIGKILL, SERVICE_SUCCESS);
1db0db4b 1754 else if (IN_SET(state, SERVICE_STOP_SIGABRT, SERVICE_STOP_SIGTERM, SERVICE_STOP_SIGKILL))
f42806df 1755 service_enter_stop_post(s, SERVICE_SUCCESS);
1db0db4b 1756 else if (state == SERVICE_FINAL_SIGTERM && s->kill_context.send_sigkill)
ac84d1fb 1757 service_enter_signal(s, SERVICE_FINAL_SIGKILL, SERVICE_SUCCESS);
80876c20 1758 else
f42806df 1759 service_enter_dead(s, SERVICE_SUCCESS, true);
034c6ed7
LP
1760
1761 return;
1762
1763fail:
f2341e0a 1764 log_unit_warning_errno(UNIT(s), r, "Failed to kill processes: %m");
034c6ed7 1765
a00973af 1766 if (IN_SET(state, SERVICE_STOP_SIGABRT, SERVICE_STOP_SIGTERM, SERVICE_STOP_SIGKILL))
f42806df 1767 service_enter_stop_post(s, SERVICE_FAILURE_RESOURCES);
034c6ed7 1768 else
f42806df 1769 service_enter_dead(s, SERVICE_FAILURE_RESOURCES, true);
034c6ed7
LP
1770}
1771
308d72dc
LP
1772static void service_enter_stop_by_notify(Service *s) {
1773 assert(s);
1774
1775 unit_watch_all_pids(UNIT(s));
1776
36c16a7c 1777 service_arm_timer(s, usec_add(now(CLOCK_MONOTONIC), s->timeout_stop_usec));
308d72dc 1778
6041a7ee
MS
1779 /* The service told us it's stopping, so it's as if we SIGTERM'd it. */
1780 service_set_state(s, SERVICE_STOP_SIGTERM);
308d72dc
LP
1781}
1782
f42806df 1783static void service_enter_stop(Service *s, ServiceResult f) {
034c6ed7 1784 int r;
5925dd3c 1785
034c6ed7
LP
1786 assert(s);
1787
a0fef983 1788 if (s->result == SERVICE_SUCCESS)
f42806df 1789 s->result = f;
034c6ed7 1790
5e94833f 1791 service_unwatch_control_pid(s);
a911bb9a 1792 unit_watch_all_pids(UNIT(s));
5e94833f 1793
117dcc57
ZJS
1794 s->control_command = s->exec_command[SERVICE_EXEC_STOP];
1795 if (s->control_command) {
867b3b7d
LP
1796 s->control_command_id = SERVICE_EXEC_STOP;
1797
ecedd90f
LP
1798 r = service_spawn(s,
1799 s->control_command,
21b2ce39 1800 s->timeout_stop_usec,
1703fa41 1801 EXEC_APPLY_SANDBOXING|EXEC_APPLY_CHROOT|EXEC_IS_CONTROL|EXEC_SETENV_RESULT,
ecedd90f
LP
1802 &s->control_pid);
1803 if (r < 0)
034c6ed7
LP
1804 goto fail;
1805
80876c20
LP
1806 service_set_state(s, SERVICE_STOP);
1807 } else
f42806df 1808 service_enter_signal(s, SERVICE_STOP_SIGTERM, SERVICE_SUCCESS);
034c6ed7
LP
1809
1810 return;
1811
1812fail:
f2341e0a 1813 log_unit_warning_errno(UNIT(s), r, "Failed to run 'stop' task: %m");
f42806df 1814 service_enter_signal(s, SERVICE_STOP_SIGTERM, SERVICE_FAILURE_RESOURCES);
034c6ed7
LP
1815}
1816
957c3cf9
LP
1817static bool service_good(Service *s) {
1818 int main_pid_ok;
1819 assert(s);
1820
1821 if (s->type == SERVICE_DBUS && !s->bus_name_good)
1822 return false;
1823
1824 main_pid_ok = main_pid_good(s);
1825 if (main_pid_ok > 0) /* It's alive */
1826 return true;
1827 if (main_pid_ok == 0) /* It's dead */
1828 return false;
1829
1830 /* OK, we don't know anything about the main PID, maybe
1831 * because there is none. Let's check the control group
1832 * instead. */
1833
1834 return cgroup_good(s) != 0;
1835}
1836
f42806df 1837static void service_enter_running(Service *s, ServiceResult f) {
80876c20
LP
1838 assert(s);
1839
a0fef983 1840 if (s->result == SERVICE_SUCCESS)
f42806df 1841 s->result = f;
80876c20 1842
089b64d5
LP
1843 service_unwatch_control_pid(s);
1844
ec5b1452
LP
1845 if (s->result != SERVICE_SUCCESS)
1846 service_enter_signal(s, SERVICE_STOP_SIGTERM, f);
1847 else if (service_good(s)) {
308d72dc 1848
ec5b1452 1849 /* If there are any queued up sd_notify() notifications, process them now */
308d72dc
LP
1850 if (s->notify_state == NOTIFY_RELOADING)
1851 service_enter_reload_by_notify(s);
1852 else if (s->notify_state == NOTIFY_STOPPING)
1853 service_enter_stop_by_notify(s);
36c16a7c 1854 else {
308d72dc 1855 service_set_state(s, SERVICE_RUNNING);
36c16a7c
LP
1856 service_arm_timer(s, usec_add(UNIT(s)->active_enter_timestamp.monotonic, s->runtime_max_usec));
1857 }
308d72dc 1858
ec5b1452 1859 } else if (s->remain_after_exit)
80876c20
LP
1860 service_set_state(s, SERVICE_EXITED);
1861 else
f42806df 1862 service_enter_stop(s, SERVICE_SUCCESS);
80876c20
LP
1863}
1864
034c6ed7
LP
1865static void service_enter_start_post(Service *s) {
1866 int r;
1867 assert(s);
1868
5e94833f 1869 service_unwatch_control_pid(s);
842129f5 1870 service_reset_watchdog(s);
bb242b7b 1871
117dcc57
ZJS
1872 s->control_command = s->exec_command[SERVICE_EXEC_START_POST];
1873 if (s->control_command) {
867b3b7d
LP
1874 s->control_command_id = SERVICE_EXEC_START_POST;
1875
ecedd90f
LP
1876 r = service_spawn(s,
1877 s->control_command,
21b2ce39 1878 s->timeout_start_usec,
1703fa41 1879 EXEC_APPLY_SANDBOXING|EXEC_APPLY_CHROOT|EXEC_IS_CONTROL,
ecedd90f
LP
1880 &s->control_pid);
1881 if (r < 0)
034c6ed7
LP
1882 goto fail;
1883
80876c20
LP
1884 service_set_state(s, SERVICE_START_POST);
1885 } else
f42806df 1886 service_enter_running(s, SERVICE_SUCCESS);
034c6ed7
LP
1887
1888 return;
1889
1890fail:
f2341e0a 1891 log_unit_warning_errno(UNIT(s), r, "Failed to run 'start-post' task: %m");
f42806df 1892 service_enter_stop(s, SERVICE_FAILURE_RESOURCES);
034c6ed7
LP
1893}
1894
e9a4f676 1895static void service_kill_control_process(Service *s) {
a6951a50 1896 int r;
4ad49000 1897
a6951a50
LP
1898 assert(s);
1899
e9a4f676
LP
1900 if (s->control_pid <= 0)
1901 return;
4ad49000 1902
e9a4f676
LP
1903 r = kill_and_sigcont(s->control_pid, SIGKILL);
1904 if (r < 0) {
1905 _cleanup_free_ char *comm = NULL;
a6951a50 1906
e9a4f676 1907 (void) get_process_comm(s->control_pid, &comm);
a6951a50 1908
e9a4f676
LP
1909 log_unit_debug_errno(UNIT(s), r, "Failed to kill control process " PID_FMT " (%s), ignoring: %m",
1910 s->control_pid, strna(comm));
a6951a50 1911 }
4ad49000
LP
1912}
1913
034c6ed7 1914static void service_enter_start(Service *s) {
4ad49000 1915 ExecCommand *c;
36c16a7c 1916 usec_t timeout;
034c6ed7
LP
1917 pid_t pid;
1918 int r;
1919
1920 assert(s);
1921
41efeaec
LP
1922 service_unwatch_control_pid(s);
1923 service_unwatch_main_pid(s);
80876c20 1924
a4634b21
LP
1925 unit_warn_leftover_processes(UNIT(s));
1926
867b3b7d
LP
1927 if (s->type == SERVICE_FORKING) {
1928 s->control_command_id = SERVICE_EXEC_START;
1929 c = s->control_command = s->exec_command[SERVICE_EXEC_START];
1930
1931 s->main_command = NULL;
1932 } else {
1933 s->control_command_id = _SERVICE_EXEC_COMMAND_INVALID;
1934 s->control_command = NULL;
1935
1936 c = s->main_command = s->exec_command[SERVICE_EXEC_START];
1937 }
34e9ba66 1938
96fb8242 1939 if (!c) {
47fffb35
LP
1940 if (s->type != SERVICE_ONESHOT) {
1941 /* There's no command line configured for the main command? Hmm, that is strange. This can only
1942 * happen if the configuration changes at runtime. In this case, let's enter a failure
1943 * state. */
1944 log_unit_error(UNIT(s), "There's no 'start' task anymore we could start: %m");
1945 r = -ENXIO;
1946 goto fail;
1947 }
1948
96fb8242
LP
1949 service_enter_start_post(s);
1950 return;
1951 }
1952
36c16a7c
LP
1953 if (IN_SET(s->type, SERVICE_SIMPLE, SERVICE_IDLE))
1954 /* For simple + idle this is the main process. We don't apply any timeout here, but
1955 * service_enter_running() will later apply the .runtime_max_usec timeout. */
1956 timeout = USEC_INFINITY;
1957 else
1958 timeout = s->timeout_start_usec;
1959
ecedd90f
LP
1960 r = service_spawn(s,
1961 c,
36c16a7c 1962 timeout,
1703fa41 1963 EXEC_PASS_FDS|EXEC_APPLY_SANDBOXING|EXEC_APPLY_CHROOT|EXEC_APPLY_TTY_STDIN|EXEC_SET_WATCHDOG,
ecedd90f
LP
1964 &pid);
1965 if (r < 0)
034c6ed7
LP
1966 goto fail;
1967
36c16a7c 1968 if (IN_SET(s->type, SERVICE_SIMPLE, SERVICE_IDLE)) {
034c6ed7
LP
1969 /* For simple services we immediately start
1970 * the START_POST binaries. */
1971
5925dd3c 1972 service_set_main_pid(s, pid);
034c6ed7
LP
1973 service_enter_start_post(s);
1974
1975 } else if (s->type == SERVICE_FORKING) {
1976
1977 /* For forking services we wait until the start
1978 * process exited. */
1979
e55224ca 1980 s->control_pid = pid;
80876c20
LP
1981 service_set_state(s, SERVICE_START);
1982
36c16a7c 1983 } else if (IN_SET(s->type, SERVICE_ONESHOT, SERVICE_DBUS, SERVICE_NOTIFY)) {
7d55e835 1984
34e9ba66 1985 /* For oneshot services we wait until the start
7d55e835
LP
1986 * process exited, too, but it is our main process. */
1987
05e343b7 1988 /* For D-Bus services we know the main pid right away,
8c47c732
LP
1989 * but wait for the bus name to appear on the
1990 * bus. Notify services are similar. */
05e343b7 1991
5925dd3c 1992 service_set_main_pid(s, pid);
80876c20 1993 service_set_state(s, SERVICE_START);
034c6ed7
LP
1994 } else
1995 assert_not_reached("Unknown service type");
1996
1997 return;
1998
1999fail:
f2341e0a 2000 log_unit_warning_errno(UNIT(s), r, "Failed to run 'start' task: %m");
c3fda31d 2001 service_enter_signal(s, SERVICE_STOP_SIGTERM, SERVICE_FAILURE_RESOURCES);
034c6ed7
LP
2002}
2003
2004static void service_enter_start_pre(Service *s) {
2005 int r;
2006
2007 assert(s);
2008
5e94833f
LP
2009 service_unwatch_control_pid(s);
2010
117dcc57
ZJS
2011 s->control_command = s->exec_command[SERVICE_EXEC_START_PRE];
2012 if (s->control_command) {
8f53a7b8 2013
a4634b21
LP
2014 unit_warn_leftover_processes(UNIT(s));
2015
867b3b7d
LP
2016 s->control_command_id = SERVICE_EXEC_START_PRE;
2017
ecedd90f
LP
2018 r = service_spawn(s,
2019 s->control_command,
21b2ce39 2020 s->timeout_start_usec,
1703fa41 2021 EXEC_APPLY_SANDBOXING|EXEC_APPLY_CHROOT|EXEC_IS_CONTROL|EXEC_APPLY_TTY_STDIN,
ecedd90f
LP
2022 &s->control_pid);
2023 if (r < 0)
034c6ed7
LP
2024 goto fail;
2025
80876c20
LP
2026 service_set_state(s, SERVICE_START_PRE);
2027 } else
034c6ed7
LP
2028 service_enter_start(s);
2029
2030 return;
2031
2032fail:
f2341e0a 2033 log_unit_warning_errno(UNIT(s), r, "Failed to run 'start-pre' task: %m");
f42806df 2034 service_enter_dead(s, SERVICE_FAILURE_RESOURCES, true);
034c6ed7
LP
2035}
2036
2037static void service_enter_restart(Service *s) {
4afd3348 2038 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
034c6ed7 2039 int r;
398ef8ba 2040
034c6ed7
LP
2041 assert(s);
2042
a8bb2e65
LP
2043 if (UNIT(s)->job && UNIT(s)->job->type == JOB_STOP) {
2044 /* Don't restart things if we are going down anyway */
f2341e0a 2045 log_unit_info(UNIT(s), "Stop job pending for unit, delaying automatic restart.");
2edfa366 2046
36c16a7c 2047 r = service_arm_timer(s, usec_add(now(CLOCK_MONOTONIC), s->restart_usec));
a8bb2e65 2048 if (r < 0)
2edfa366 2049 goto fail;
feae8adb
DW
2050
2051 return;
2edfa366
LP
2052 }
2053
48bb5876
DW
2054 /* Any units that are bound to this service must also be
2055 * restarted. We use JOB_RESTART (instead of the more obvious
2056 * JOB_START) here so that those dependency jobs will be added
2057 * as well. */
4bd29fe5 2058 r = manager_add_job(UNIT(s)->manager, JOB_RESTART, UNIT(s), JOB_FAIL, &error, NULL);
48bb5876 2059 if (r < 0)
034c6ed7
LP
2060 goto fail;
2061
7a0019d3
LP
2062 /* Count the jobs we enqueue for restarting. This counter is maintained as long as the unit isn't fully
2063 * stopped, i.e. as long as it remains up or remains in auto-start states. The use can reset the counter
2064 * explicitly however via the usual "systemctl reset-failure" logic. */
2065 s->n_restarts ++;
2066 s->flush_n_restarts = false;
2067
2068 log_struct(LOG_INFO,
2069 "MESSAGE_ID=" SD_MESSAGE_UNIT_RESTART_SCHEDULED_STR,
2070 LOG_UNIT_ID(UNIT(s)),
f1c50bec 2071 LOG_UNIT_INVOCATION_ID(UNIT(s)),
7a0019d3 2072 LOG_UNIT_MESSAGE(UNIT(s), "Scheduled restart job, restart counter is at %u.", s->n_restarts),
a1230ff9 2073 "N_RESTARTS=%u", s->n_restarts);
7a0019d3
LP
2074
2075 /* Notify clients about changed restart counter */
2076 unit_add_to_dbus_queue(UNIT(s));
2077
a8bb2e65
LP
2078 /* Note that we stay in the SERVICE_AUTO_RESTART state here,
2079 * it will be canceled as part of the service_stop() call that
2080 * is executed as part of JOB_RESTART. */
2081
034c6ed7
LP
2082 return;
2083
2084fail:
f2341e0a 2085 log_unit_warning(UNIT(s), "Failed to schedule restart job: %s", bus_error_message(&error, -r));
f42806df 2086 service_enter_dead(s, SERVICE_FAILURE_RESOURCES, false);
034c6ed7
LP
2087}
2088
308d72dc 2089static void service_enter_reload_by_notify(Service *s) {
15d167f8
JW
2090 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
2091 int r;
2092
308d72dc
LP
2093 assert(s);
2094
36c16a7c 2095 service_arm_timer(s, usec_add(now(CLOCK_MONOTONIC), s->timeout_start_usec));
308d72dc 2096 service_set_state(s, SERVICE_RELOAD);
15d167f8
JW
2097
2098 /* service_enter_reload_by_notify is never called during a reload, thus no loops are possible. */
2099 r = manager_propagate_reload(UNIT(s)->manager, UNIT(s), JOB_FAIL, &error);
2100 if (r < 0)
2101 log_unit_warning(UNIT(s), "Failed to schedule propagation of reload: %s", bus_error_message(&error, -r));
308d72dc
LP
2102}
2103
034c6ed7
LP
2104static void service_enter_reload(Service *s) {
2105 int r;
2106
2107 assert(s);
2108
5e94833f 2109 service_unwatch_control_pid(s);
95c906ae 2110 s->reload_result = SERVICE_SUCCESS;
5e94833f 2111
117dcc57
ZJS
2112 s->control_command = s->exec_command[SERVICE_EXEC_RELOAD];
2113 if (s->control_command) {
867b3b7d
LP
2114 s->control_command_id = SERVICE_EXEC_RELOAD;
2115
ecedd90f
LP
2116 r = service_spawn(s,
2117 s->control_command,
21b2ce39 2118 s->timeout_start_usec,
1703fa41 2119 EXEC_APPLY_SANDBOXING|EXEC_APPLY_CHROOT|EXEC_IS_CONTROL,
ecedd90f
LP
2120 &s->control_pid);
2121 if (r < 0)
034c6ed7
LP
2122 goto fail;
2123
80876c20
LP
2124 service_set_state(s, SERVICE_RELOAD);
2125 } else
f42806df 2126 service_enter_running(s, SERVICE_SUCCESS);
034c6ed7
LP
2127
2128 return;
2129
2130fail:
f2341e0a 2131 log_unit_warning_errno(UNIT(s), r, "Failed to run 'reload' task: %m");
f42806df
LP
2132 s->reload_result = SERVICE_FAILURE_RESOURCES;
2133 service_enter_running(s, SERVICE_SUCCESS);
034c6ed7
LP
2134}
2135
f42806df 2136static void service_run_next_control(Service *s) {
36c16a7c 2137 usec_t timeout;
034c6ed7
LP
2138 int r;
2139
2140 assert(s);
2141 assert(s->control_command);
2142 assert(s->control_command->command_next);
2143
34e9ba66 2144 assert(s->control_command_id != SERVICE_EXEC_START);
034c6ed7 2145
34e9ba66 2146 s->control_command = s->control_command->command_next;
5e94833f
LP
2147 service_unwatch_control_pid(s);
2148
36c16a7c
LP
2149 if (IN_SET(s->state, SERVICE_START_PRE, SERVICE_START, SERVICE_START_POST, SERVICE_RUNNING, SERVICE_RELOAD))
2150 timeout = s->timeout_start_usec;
2151 else
2152 timeout = s->timeout_stop_usec;
2153
ecedd90f
LP
2154 r = service_spawn(s,
2155 s->control_command,
36c16a7c 2156 timeout,
1703fa41 2157 EXEC_APPLY_SANDBOXING|EXEC_APPLY_CHROOT|EXEC_IS_CONTROL|
136dc4c4
LP
2158 (IN_SET(s->control_command_id, SERVICE_EXEC_START_PRE, SERVICE_EXEC_STOP_POST) ? EXEC_APPLY_TTY_STDIN : 0)|
2159 (IN_SET(s->control_command_id, SERVICE_EXEC_STOP, SERVICE_EXEC_STOP_POST) ? EXEC_SETENV_RESULT : 0),
ecedd90f
LP
2160 &s->control_pid);
2161 if (r < 0)
034c6ed7
LP
2162 goto fail;
2163
2164 return;
2165
2166fail:
f2341e0a 2167 log_unit_warning_errno(UNIT(s), r, "Failed to run next control task: %m");
034c6ed7 2168
4cd9fa81 2169 if (IN_SET(s->state, SERVICE_START_PRE, SERVICE_START_POST, SERVICE_STOP))
f42806df 2170 service_enter_signal(s, SERVICE_STOP_SIGTERM, SERVICE_FAILURE_RESOURCES);
034c6ed7 2171 else if (s->state == SERVICE_STOP_POST)
f42806df 2172 service_enter_dead(s, SERVICE_FAILURE_RESOURCES, true);
e2f3b44c 2173 else if (s->state == SERVICE_RELOAD) {
f42806df
LP
2174 s->reload_result = SERVICE_FAILURE_RESOURCES;
2175 service_enter_running(s, SERVICE_SUCCESS);
e2f3b44c 2176 } else
f42806df 2177 service_enter_stop(s, SERVICE_FAILURE_RESOURCES);
5cb5a6ff
LP
2178}
2179
f42806df 2180static void service_run_next_main(Service *s) {
34e9ba66
LP
2181 pid_t pid;
2182 int r;
2183
2184 assert(s);
867b3b7d
LP
2185 assert(s->main_command);
2186 assert(s->main_command->command_next);
2187 assert(s->type == SERVICE_ONESHOT);
34e9ba66 2188
867b3b7d 2189 s->main_command = s->main_command->command_next;
34e9ba66
LP
2190 service_unwatch_main_pid(s);
2191
ecedd90f
LP
2192 r = service_spawn(s,
2193 s->main_command,
21b2ce39 2194 s->timeout_start_usec,
1703fa41 2195 EXEC_PASS_FDS|EXEC_APPLY_SANDBOXING|EXEC_APPLY_CHROOT|EXEC_APPLY_TTY_STDIN|EXEC_SET_WATCHDOG,
ecedd90f
LP
2196 &pid);
2197 if (r < 0)
34e9ba66
LP
2198 goto fail;
2199
2200 service_set_main_pid(s, pid);
2201
2202 return;
2203
2204fail:
f2341e0a 2205 log_unit_warning_errno(UNIT(s), r, "Failed to run next main task: %m");
f42806df 2206 service_enter_stop(s, SERVICE_FAILURE_RESOURCES);
34e9ba66
LP
2207}
2208
87f0e418
LP
2209static int service_start(Unit *u) {
2210 Service *s = SERVICE(u);
07299350 2211 int r;
5cb5a6ff
LP
2212
2213 assert(s);
2214
034c6ed7
LP
2215 /* We cannot fulfill this request right now, try again later
2216 * please! */
a00973af
LP
2217 if (IN_SET(s->state,
2218 SERVICE_STOP, SERVICE_STOP_SIGABRT, SERVICE_STOP_SIGTERM, SERVICE_STOP_SIGKILL, SERVICE_STOP_POST,
2219 SERVICE_FINAL_SIGTERM, SERVICE_FINAL_SIGKILL))
5cb5a6ff
LP
2220 return -EAGAIN;
2221
034c6ed7 2222 /* Already on it! */
a00973af 2223 if (IN_SET(s->state, SERVICE_START_PRE, SERVICE_START, SERVICE_START_POST))
034c6ed7
LP
2224 return 0;
2225
2e9d6c12 2226 /* A service that will be restarted must be stopped first to
7f2cddae 2227 * trigger BindsTo and/or OnFailure dependencies. If a user
2e9d6c12 2228 * does not want to wait for the holdoff time to elapse, the
d4943dc7
LP
2229 * service should be manually restarted, not started. We
2230 * simply return EAGAIN here, so that any start jobs stay
2231 * queued, and assume that the auto restart timer will
2232 * eventually trigger the restart. */
2233 if (s->state == SERVICE_AUTO_RESTART)
a8bb2e65 2234 return -EAGAIN;
2e9d6c12 2235
a00973af 2236 assert(IN_SET(s->state, SERVICE_DEAD, SERVICE_FAILED));
5cb5a6ff 2237
07299350
LP
2238 /* Make sure we don't enter a busy loop of some kind. */
2239 r = unit_start_limit_test(u);
2240 if (r < 0) {
2241 service_enter_dead(s, SERVICE_FAILURE_START_LIMIT_HIT, false);
2242 return r;
2243 }
2244
4b58153d
LP
2245 r = unit_acquire_invocation_id(u);
2246 if (r < 0)
2247 return r;
2248
f42806df
LP
2249 s->result = SERVICE_SUCCESS;
2250 s->reload_result = SERVICE_SUCCESS;
034c6ed7 2251 s->main_pid_known = false;
6dfa5494 2252 s->main_pid_alien = false;
47342320 2253 s->forbid_restart = false;
3c7416b6
LP
2254
2255 u->reset_accounting = true;
034c6ed7 2256
a1e58e8e 2257 s->status_text = mfree(s->status_text);
8cfdb077
LP
2258 s->status_errno = 0;
2259
308d72dc
LP
2260 s->notify_state = NOTIFY_UNKNOWN;
2261
2787d83c
M
2262 s->watchdog_override_enable = false;
2263 s->watchdog_override_usec = 0;
2264
7a0019d3
LP
2265 /* This is not an automatic restart? Flush the restart counter then */
2266 if (s->flush_n_restarts) {
2267 s->n_restarts = 0;
2268 s->flush_n_restarts = false;
2269 }
2270
034c6ed7 2271 service_enter_start_pre(s);
82a2b6bb 2272 return 1;
5cb5a6ff
LP
2273}
2274
87f0e418
LP
2275static int service_stop(Unit *u) {
2276 Service *s = SERVICE(u);
5cb5a6ff
LP
2277
2278 assert(s);
2279
a509f0e6 2280 /* Don't create restart jobs from manual stops. */
47342320 2281 s->forbid_restart = true;
034c6ed7 2282
e537352b 2283 /* Already on it */
a00973af
LP
2284 if (IN_SET(s->state,
2285 SERVICE_STOP, SERVICE_STOP_SIGABRT, SERVICE_STOP_SIGTERM, SERVICE_STOP_SIGKILL, SERVICE_STOP_POST,
2286 SERVICE_FINAL_SIGTERM, SERVICE_FINAL_SIGKILL))
e537352b
LP
2287 return 0;
2288
f0c7b229 2289 /* A restart will be scheduled or is in progress. */
034c6ed7 2290 if (s->state == SERVICE_AUTO_RESTART) {
0c7f15b3 2291 service_set_state(s, SERVICE_DEAD);
034c6ed7
LP
2292 return 0;
2293 }
2294
3f6c78dc
LP
2295 /* If there's already something running we go directly into
2296 * kill mode. */
a00973af 2297 if (IN_SET(s->state, SERVICE_START_PRE, SERVICE_START, SERVICE_START_POST, SERVICE_RELOAD)) {
f42806df 2298 service_enter_signal(s, SERVICE_STOP_SIGTERM, SERVICE_SUCCESS);
3f6c78dc
LP
2299 return 0;
2300 }
5cb5a6ff 2301
a00973af 2302 assert(IN_SET(s->state, SERVICE_RUNNING, SERVICE_EXITED));
3a762661 2303
f42806df 2304 service_enter_stop(s, SERVICE_SUCCESS);
82a2b6bb 2305 return 1;
5cb5a6ff
LP
2306}
2307
87f0e418
LP
2308static int service_reload(Unit *u) {
2309 Service *s = SERVICE(u);
034c6ed7
LP
2310
2311 assert(s);
2312
3742095b 2313 assert(IN_SET(s->state, SERVICE_RUNNING, SERVICE_EXITED));
034c6ed7
LP
2314
2315 service_enter_reload(s);
2d018ae2 2316 return 1;
5cb5a6ff
LP
2317}
2318
44a6b1b6 2319_pure_ static bool service_can_reload(Unit *u) {
87f0e418 2320 Service *s = SERVICE(u);
034c6ed7
LP
2321
2322 assert(s);
2323
2324 return !!s->exec_command[SERVICE_EXEC_RELOAD];
2325}
2326
e266c068
MS
2327static unsigned service_exec_command_index(Unit *u, ServiceExecCommand id, ExecCommand *current) {
2328 Service *s = SERVICE(u);
2329 unsigned idx = 0;
2330 ExecCommand *first, *c;
2331
2332 assert(s);
2333
2334 first = s->exec_command[id];
2335
2336 /* Figure out where we are in the list by walking back to the beginning */
2337 for (c = current; c != first; c = c->command_prev)
2338 idx++;
2339
2340 return idx;
2341}
2342
2343static int service_serialize_exec_command(Unit *u, FILE *f, ExecCommand *command) {
2344 Service *s = SERVICE(u);
2345 ServiceExecCommand id;
2346 unsigned idx;
2347 const char *type;
2348 char **arg;
e266c068
MS
2349 _cleanup_free_ char *args = NULL, *p = NULL;
2350 size_t allocated = 0, length = 0;
2351
2352 assert(s);
2353 assert(f);
2354
2355 if (!command)
2356 return 0;
2357
2358 if (command == s->control_command) {
2359 type = "control";
2360 id = s->control_command_id;
2361 } else {
2362 type = "main";
2363 id = SERVICE_EXEC_START;
2364 }
2365
2366 idx = service_exec_command_index(u, id, command);
2367
2368 STRV_FOREACH(arg, command->argv) {
2369 size_t n;
2370 _cleanup_free_ char *e = NULL;
2371
2372 e = xescape(*arg, WHITESPACE);
2373 if (!e)
2374 return -ENOMEM;
2375
2376 n = strlen(e);
2377 if (!GREEDY_REALLOC(args, allocated, length + 1 + n + 1))
2378 return -ENOMEM;
2379
2380 if (length > 0)
2381 args[length++] = ' ';
2382
2383 memcpy(args + length, e, n);
2384 length += n;
2385 }
2386
2387 if (!GREEDY_REALLOC(args, allocated, length + 1))
2388 return -ENOMEM;
2389 args[length++] = 0;
2390
2391 p = xescape(command->path, WHITESPACE);
2392 if (!p)
2393 return -ENOMEM;
2394
2395 fprintf(f, "%s-command=%s %u %s %s\n", type, service_exec_command_to_string(id), idx, p, args);
2396
2397 return 0;
2398}
2399
a16e1123
LP
2400static int service_serialize(Unit *u, FILE *f, FDSet *fds) {
2401 Service *s = SERVICE(u);
2339fc93 2402 ServiceFDStore *fs;
a34ceba6 2403 int r;
a16e1123
LP
2404
2405 assert(u);
2406 assert(f);
2407 assert(fds);
2408
2409 unit_serialize_item(u, f, "state", service_state_to_string(s->state));
f42806df
LP
2410 unit_serialize_item(u, f, "result", service_result_to_string(s->result));
2411 unit_serialize_item(u, f, "reload-result", service_result_to_string(s->reload_result));
a16e1123
LP
2412
2413 if (s->control_pid > 0)
f06db334 2414 unit_serialize_item_format(u, f, "control-pid", PID_FMT, s->control_pid);
a16e1123 2415
5925dd3c 2416 if (s->main_pid_known && s->main_pid > 0)
ccd06097 2417 unit_serialize_item_format(u, f, "main-pid", PID_FMT, s->main_pid);
a16e1123
LP
2418
2419 unit_serialize_item(u, f, "main-pid-known", yes_no(s->main_pid_known));
de1d4f9b 2420 unit_serialize_item(u, f, "bus-name-good", yes_no(s->bus_name_good));
d8ccf5fd 2421 unit_serialize_item(u, f, "bus-name-owner", s->bus_name_owner);
a16e1123 2422
7a0019d3 2423 unit_serialize_item_format(u, f, "n-restarts", "%u", s->n_restarts);
7f923884 2424 unit_serialize_item(u, f, "flush-n-restarts", yes_no(s->flush_n_restarts));
7a0019d3 2425
a34ceba6
LP
2426 r = unit_serialize_item_escaped(u, f, "status-text", s->status_text);
2427 if (r < 0)
2428 return r;
3a2776bc 2429
e266c068
MS
2430 service_serialize_exec_command(u, f, s->control_command);
2431 service_serialize_exec_command(u, f, s->main_command);
a16e1123 2432
a34ceba6
LP
2433 r = unit_serialize_item_fd(u, f, fds, "stdin-fd", s->stdin_fd);
2434 if (r < 0)
2435 return r;
2436 r = unit_serialize_item_fd(u, f, fds, "stdout-fd", s->stdout_fd);
2437 if (r < 0)
2438 return r;
2439 r = unit_serialize_item_fd(u, f, fds, "stderr-fd", s->stderr_fd);
2440 if (r < 0)
2441 return r;
e44da745 2442
9dfb64f8
ZJS
2443 if (UNIT_ISSET(s->accept_socket)) {
2444 r = unit_serialize_item(u, f, "accept-socket", UNIT_DEREF(s->accept_socket)->id);
2445 if (r < 0)
2446 return r;
2447 }
2448
a34ceba6 2449 r = unit_serialize_item_fd(u, f, fds, "socket-fd", s->socket_fd);
a34ceba6
LP
2450 if (r < 0)
2451 return r;
e44da745 2452
2339fc93 2453 LIST_FOREACH(fd_store, fs, s->fd_store) {
8dd4c05b 2454 _cleanup_free_ char *c = NULL;
2339fc93
LP
2455 int copy;
2456
2457 copy = fdset_put_dup(fds, fs->fd);
2458 if (copy < 0)
2459 return copy;
2460
8dd4c05b
LP
2461 c = cescape(fs->fdname);
2462
2463 unit_serialize_item_format(u, f, "fd-store-fd", "%i %s", copy, strempty(c));
2339fc93
LP
2464 }
2465
ecdbca40 2466 if (s->main_exec_status.pid > 0) {
f06db334
LP
2467 unit_serialize_item_format(u, f, "main-exec-status-pid", PID_FMT, s->main_exec_status.pid);
2468 dual_timestamp_serialize(f, "main-exec-status-start", &s->main_exec_status.start_timestamp);
2469 dual_timestamp_serialize(f, "main-exec-status-exit", &s->main_exec_status.exit_timestamp);
ecdbca40 2470
799fd0fd 2471 if (dual_timestamp_is_set(&s->main_exec_status.exit_timestamp)) {
f06db334
LP
2472 unit_serialize_item_format(u, f, "main-exec-status-code", "%i", s->main_exec_status.code);
2473 unit_serialize_item_format(u, f, "main-exec-status-status", "%i", s->main_exec_status.status);
ecdbca40
LP
2474 }
2475 }
f06db334 2476
36b693a6 2477 dual_timestamp_serialize(f, "watchdog-timestamp", &s->watchdog_timestamp);
ecdbca40 2478
a34ceba6 2479 unit_serialize_item(u, f, "forbid-restart", yes_no(s->forbid_restart));
6aca9a58 2480
2787d83c
M
2481 if (s->watchdog_override_enable)
2482 unit_serialize_item_format(u, f, "watchdog-override-usec", USEC_FMT, s->watchdog_override_usec);
2483
a16e1123
LP
2484 return 0;
2485}
2486
e266c068
MS
2487static int service_deserialize_exec_command(Unit *u, const char *key, const char *value) {
2488 Service *s = SERVICE(u);
2489 int r;
2490 unsigned idx = 0, i;
2491 bool control, found = false;
2492 ServiceExecCommand id = _SERVICE_EXEC_COMMAND_INVALID;
2493 ExecCommand *command = NULL;
6eeec374 2494 _cleanup_free_ char *path = NULL;
e266c068
MS
2495 _cleanup_strv_free_ char **argv = NULL;
2496
2497 enum ExecCommandState {
2498 STATE_EXEC_COMMAND_TYPE,
2499 STATE_EXEC_COMMAND_INDEX,
2500 STATE_EXEC_COMMAND_PATH,
2501 STATE_EXEC_COMMAND_ARGS,
2502 _STATE_EXEC_COMMAND_MAX,
2503 _STATE_EXEC_COMMAND_INVALID = -1,
2504 } state;
2505
2506 assert(s);
2507 assert(key);
2508 assert(value);
2509
2510 control = streq(key, "control-command");
2511
2512 state = STATE_EXEC_COMMAND_TYPE;
2513
2514 for (;;) {
2515 _cleanup_free_ char *arg = NULL;
2516
2517 r = extract_first_word(&value, &arg, NULL, EXTRACT_CUNESCAPE);
2518 if (r == 0)
2519 break;
2520 else if (r < 0)
2521 return r;
2522
2523 switch (state) {
2524 case STATE_EXEC_COMMAND_TYPE:
2525 id = service_exec_command_from_string(arg);
2526 if (id < 0)
2527 return -EINVAL;
2528
2529 state = STATE_EXEC_COMMAND_INDEX;
2530 break;
2531 case STATE_EXEC_COMMAND_INDEX:
2532 r = safe_atou(arg, &idx);
2533 if (r < 0)
2534 return -EINVAL;
2535
2536 state = STATE_EXEC_COMMAND_PATH;
2537 break;
2538 case STATE_EXEC_COMMAND_PATH:
ae2a15bc 2539 path = TAKE_PTR(arg);
e266c068
MS
2540 state = STATE_EXEC_COMMAND_ARGS;
2541
2542 if (!path_is_absolute(path))
2543 return -EINVAL;
2544 break;
2545 case STATE_EXEC_COMMAND_ARGS:
2546 r = strv_extend(&argv, arg);
2547 if (r < 0)
2548 return -ENOMEM;
2549 break;
2550 default:
2551 assert_not_reached("Unknown error at deserialization of exec command");
2552 break;
2553 }
2554 }
2555
2556 if (state != STATE_EXEC_COMMAND_ARGS)
2557 return -EINVAL;
2558
2559 /* Let's check whether exec command on given offset matches data that we just deserialized */
2560 for (command = s->exec_command[id], i = 0; command; command = command->command_next, i++) {
2561 if (i != idx)
2562 continue;
2563
2564 found = strv_equal(argv, command->argv) && streq(command->path, path);
2565 break;
2566 }
2567
2568 if (!found) {
2569 /* Command at the index we serialized is different, let's look for command that exactly
2570 * matches but is on different index. If there is no such command we will not resume execution. */
2571 for (command = s->exec_command[id]; command; command = command->command_next)
2572 if (strv_equal(command->argv, argv) && streq(command->path, path))
2573 break;
2574 }
2575
2576 if (command && control)
2577 s->control_command = command;
2578 else if (command)
2579 s->main_command = command;
2580 else
2581 log_unit_warning(u, "Current command vanished from the unit file, execution of the command list won't be resumed.");
2582
2583 return 0;
2584}
2585
a16e1123
LP
2586static int service_deserialize_item(Unit *u, const char *key, const char *value, FDSet *fds) {
2587 Service *s = SERVICE(u);
2339fc93 2588 int r;
a16e1123
LP
2589
2590 assert(u);
2591 assert(key);
2592 assert(value);
2593 assert(fds);
2594
2595 if (streq(key, "state")) {
2596 ServiceState state;
2597
117dcc57
ZJS
2598 state = service_state_from_string(value);
2599 if (state < 0)
f2341e0a 2600 log_unit_debug(u, "Failed to parse state value: %s", value);
a16e1123
LP
2601 else
2602 s->deserialized_state = state;
f42806df
LP
2603 } else if (streq(key, "result")) {
2604 ServiceResult f;
2605
2606 f = service_result_from_string(value);
2607 if (f < 0)
f2341e0a 2608 log_unit_debug(u, "Failed to parse result value: %s", value);
f42806df
LP
2609 else if (f != SERVICE_SUCCESS)
2610 s->result = f;
2611
2612 } else if (streq(key, "reload-result")) {
2613 ServiceResult f;
2614
2615 f = service_result_from_string(value);
2616 if (f < 0)
f2341e0a 2617 log_unit_debug(u, "Failed to parse reload result value: %s", value);
f42806df
LP
2618 else if (f != SERVICE_SUCCESS)
2619 s->reload_result = f;
a16e1123 2620
a16e1123 2621 } else if (streq(key, "control-pid")) {
5925dd3c 2622 pid_t pid;
a16e1123 2623
e364ad06 2624 if (parse_pid(value, &pid) < 0)
f2341e0a 2625 log_unit_debug(u, "Failed to parse control-pid value: %s", value);
a16e1123 2626 else
e55224ca 2627 s->control_pid = pid;
a16e1123 2628 } else if (streq(key, "main-pid")) {
5925dd3c 2629 pid_t pid;
a16e1123 2630
e364ad06 2631 if (parse_pid(value, &pid) < 0)
f2341e0a 2632 log_unit_debug(u, "Failed to parse main-pid value: %s", value);
eabd3e56
LP
2633 else
2634 (void) service_set_main_pid(s, pid);
a16e1123
LP
2635 } else if (streq(key, "main-pid-known")) {
2636 int b;
2637
117dcc57
ZJS
2638 b = parse_boolean(value);
2639 if (b < 0)
f2341e0a 2640 log_unit_debug(u, "Failed to parse main-pid-known value: %s", value);
a16e1123
LP
2641 else
2642 s->main_pid_known = b;
de1d4f9b
WF
2643 } else if (streq(key, "bus-name-good")) {
2644 int b;
2645
2646 b = parse_boolean(value);
2647 if (b < 0)
2648 log_unit_debug(u, "Failed to parse bus-name-good value: %s", value);
2649 else
2650 s->bus_name_good = b;
d8ccf5fd
DM
2651 } else if (streq(key, "bus-name-owner")) {
2652 r = free_and_strdup(&s->bus_name_owner, value);
2653 if (r < 0)
2654 log_unit_error_errno(u, r, "Unable to deserialize current bus owner %s: %m", value);
3a2776bc
LP
2655 } else if (streq(key, "status-text")) {
2656 char *t;
2657
f2341e0a
LP
2658 r = cunescape(value, 0, &t);
2659 if (r < 0)
2660 log_unit_debug_errno(u, r, "Failed to unescape status text: %s", value);
117dcc57 2661 else {
3a2776bc
LP
2662 free(s->status_text);
2663 s->status_text = t;
2664 }
2665
9dfb64f8
ZJS
2666 } else if (streq(key, "accept-socket")) {
2667 Unit *socket;
2668
2669 r = manager_load_unit(u->manager, value, NULL, NULL, &socket);
2670 if (r < 0)
2671 log_unit_debug_errno(u, r, "Failed to load accept-socket unit: %s", value);
2672 else {
7f7d01ed 2673 unit_ref_set(&s->accept_socket, u, socket);
9dfb64f8
ZJS
2674 SOCKET(socket)->n_connections++;
2675 }
2676
a16e1123
LP
2677 } else if (streq(key, "socket-fd")) {
2678 int fd;
2679
2680 if (safe_atoi(value, &fd) < 0 || fd < 0 || !fdset_contains(fds, fd))
f2341e0a 2681 log_unit_debug(u, "Failed to parse socket-fd value: %s", value);
a16e1123 2682 else {
574634bc 2683 asynchronous_close(s->socket_fd);
a16e1123
LP
2684 s->socket_fd = fdset_remove(fds, fd);
2685 }
2339fc93 2686 } else if (streq(key, "fd-store-fd")) {
8dd4c05b
LP
2687 const char *fdv;
2688 size_t pf;
2339fc93
LP
2689 int fd;
2690
8dd4c05b
LP
2691 pf = strcspn(value, WHITESPACE);
2692 fdv = strndupa(value, pf);
2693
2694 if (safe_atoi(fdv, &fd) < 0 || fd < 0 || !fdset_contains(fds, fd))
f2341e0a 2695 log_unit_debug(u, "Failed to parse fd-store-fd value: %s", value);
2339fc93 2696 else {
8dd4c05b
LP
2697 _cleanup_free_ char *t = NULL;
2698 const char *fdn;
2699
2700 fdn = value + pf;
2701 fdn += strspn(fdn, WHITESPACE);
2702 (void) cunescape(fdn, 0, &t);
2703
2704 r = service_add_fd_store(s, fd, t);
2339fc93 2705 if (r < 0)
f2341e0a 2706 log_unit_error_errno(u, r, "Failed to add fd to store: %m");
9021ff17 2707 else
2339fc93
LP
2708 fdset_remove(fds, fd);
2709 }
2710
ecdbca40
LP
2711 } else if (streq(key, "main-exec-status-pid")) {
2712 pid_t pid;
2713
e364ad06 2714 if (parse_pid(value, &pid) < 0)
f2341e0a 2715 log_unit_debug(u, "Failed to parse main-exec-status-pid value: %s", value);
ecdbca40
LP
2716 else
2717 s->main_exec_status.pid = pid;
2718 } else if (streq(key, "main-exec-status-code")) {
2719 int i;
2720
e364ad06 2721 if (safe_atoi(value, &i) < 0)
f2341e0a 2722 log_unit_debug(u, "Failed to parse main-exec-status-code value: %s", value);
ecdbca40
LP
2723 else
2724 s->main_exec_status.code = i;
2725 } else if (streq(key, "main-exec-status-status")) {
2726 int i;
2727
e364ad06 2728 if (safe_atoi(value, &i) < 0)
f2341e0a 2729 log_unit_debug(u, "Failed to parse main-exec-status-status value: %s", value);
ecdbca40
LP
2730 else
2731 s->main_exec_status.status = i;
799fd0fd
LP
2732 } else if (streq(key, "main-exec-status-start"))
2733 dual_timestamp_deserialize(value, &s->main_exec_status.start_timestamp);
2734 else if (streq(key, "main-exec-status-exit"))
2735 dual_timestamp_deserialize(value, &s->main_exec_status.exit_timestamp);
a6927d7f
MO
2736 else if (streq(key, "watchdog-timestamp"))
2737 dual_timestamp_deserialize(value, &s->watchdog_timestamp);
613b411c 2738 else if (streq(key, "forbid-restart")) {
6aca9a58
SE
2739 int b;
2740
2741 b = parse_boolean(value);
2742 if (b < 0)
f2341e0a 2743 log_unit_debug(u, "Failed to parse forbid-restart value: %s", value);
6aca9a58
SE
2744 else
2745 s->forbid_restart = b;
a34ceba6
LP
2746 } else if (streq(key, "stdin-fd")) {
2747 int fd;
2748
2749 if (safe_atoi(value, &fd) < 0 || fd < 0 || !fdset_contains(fds, fd))
2750 log_unit_debug(u, "Failed to parse stdin-fd value: %s", value);
2751 else {
2752 asynchronous_close(s->stdin_fd);
2753 s->stdin_fd = fdset_remove(fds, fd);
1e22b5cd 2754 s->exec_context.stdio_as_fds = true;
a34ceba6
LP
2755 }
2756 } else if (streq(key, "stdout-fd")) {
2757 int fd;
2758
2759 if (safe_atoi(value, &fd) < 0 || fd < 0 || !fdset_contains(fds, fd))
2760 log_unit_debug(u, "Failed to parse stdout-fd value: %s", value);
2761 else {
2762 asynchronous_close(s->stdout_fd);
2763 s->stdout_fd = fdset_remove(fds, fd);
1e22b5cd 2764 s->exec_context.stdio_as_fds = true;
a34ceba6
LP
2765 }
2766 } else if (streq(key, "stderr-fd")) {
2767 int fd;
2768
2769 if (safe_atoi(value, &fd) < 0 || fd < 0 || !fdset_contains(fds, fd))
2770 log_unit_debug(u, "Failed to parse stderr-fd value: %s", value);
2771 else {
2772 asynchronous_close(s->stderr_fd);
2773 s->stderr_fd = fdset_remove(fds, fd);
1e22b5cd 2774 s->exec_context.stdio_as_fds = true;
a34ceba6 2775 }
2787d83c
M
2776 } else if (streq(key, "watchdog-override-usec")) {
2777 usec_t watchdog_override_usec;
2778 if (timestamp_deserialize(value, &watchdog_override_usec) < 0)
2779 log_unit_debug(u, "Failed to parse watchdog_override_usec value: %s", value);
2780 else {
2781 s->watchdog_override_enable = true;
2782 s->watchdog_override_usec = watchdog_override_usec;
2783 }
e266c068
MS
2784 } else if (STR_IN_SET(key, "main-command", "control-command")) {
2785 r = service_deserialize_exec_command(u, key, value);
2786 if (r < 0)
2787 log_unit_debug_errno(u, r, "Failed to parse serialized command \"%s\": %m", value);
7a0019d3
LP
2788
2789 } else if (streq(key, "n-restarts")) {
2790 r = safe_atou(value, &s->n_restarts);
2791 if (r < 0)
2792 log_unit_debug_errno(u, r, "Failed to parse serialized restart counter '%s': %m", value);
2793
2794 } else if (streq(key, "flush-n-restarts")) {
2795 r = parse_boolean(value);
2796 if (r < 0)
2797 log_unit_debug_errno(u, r, "Failed to parse serialized flush restart counter setting '%s': %m", value);
2798 else
2799 s->flush_n_restarts = r;
c17ec25e 2800 } else
f2341e0a 2801 log_unit_debug(u, "Unknown serialization key: %s", key);
a16e1123
LP
2802
2803 return 0;
2804}
2805
44a6b1b6 2806_pure_ static UnitActiveState service_active_state(Unit *u) {
e056b01d
LP
2807 const UnitActiveState *table;
2808
87f0e418 2809 assert(u);
5cb5a6ff 2810
e056b01d
LP
2811 table = SERVICE(u)->type == SERVICE_IDLE ? state_translation_table_idle : state_translation_table;
2812
2813 return table[SERVICE(u)->state];
034c6ed7
LP
2814}
2815
10a94420
LP
2816static const char *service_sub_state_to_string(Unit *u) {
2817 assert(u);
2818
2819 return service_state_to_string(SERVICE(u)->state);
2820}
2821
f2f725e5 2822static bool service_may_gc(Unit *u) {
701cc384
LP
2823 Service *s = SERVICE(u);
2824
2825 assert(s);
2826
e98b2fbb 2827 /* Never clean up services that still have a process around, even if the service is formally dead. Note that
f2f725e5 2828 * unit_may_gc() already checked our cgroup for us, we just check our two additional PIDs, too, in case they
e98b2fbb
LP
2829 * have moved outside of the cgroup. */
2830
2831 if (main_pid_good(s) > 0 ||
6d55002a 2832 control_pid_good(s) > 0)
f2f725e5 2833 return false;
6d55002a 2834
f2f725e5 2835 return true;
6d55002a
LP
2836}
2837
3a111838
MS
2838static int service_retry_pid_file(Service *s) {
2839 int r;
2840
2841 assert(s->pid_file);
3742095b 2842 assert(IN_SET(s->state, SERVICE_START, SERVICE_START_POST));
3a111838
MS
2843
2844 r = service_load_pid_file(s, false);
2845 if (r < 0)
2846 return r;
2847
2848 service_unwatch_pid_file(s);
2849
f42806df 2850 service_enter_running(s, SERVICE_SUCCESS);
3a111838
MS
2851 return 0;
2852}
2853
2854static int service_watch_pid_file(Service *s) {
2855 int r;
2856
f2341e0a 2857 log_unit_debug(UNIT(s), "Setting watch for PID file %s", s->pid_file_pathspec->path);
8bb2d17d 2858
718db961 2859 r = path_spec_watch(s->pid_file_pathspec, service_dispatch_io);
3a111838
MS
2860 if (r < 0)
2861 goto fail;
2862
2863 /* the pidfile might have appeared just before we set the watch */
f2341e0a 2864 log_unit_debug(UNIT(s), "Trying to read PID file %s in case it changed", s->pid_file_pathspec->path);
3a111838
MS
2865 service_retry_pid_file(s);
2866
2867 return 0;
2868fail:
f2341e0a 2869 log_unit_error_errno(UNIT(s), r, "Failed to set a watch for PID file %s: %m", s->pid_file_pathspec->path);
3a111838
MS
2870 service_unwatch_pid_file(s);
2871 return r;
2872}
2873
2874static int service_demand_pid_file(Service *s) {
2875 PathSpec *ps;
2876
2877 assert(s->pid_file);
2878 assert(!s->pid_file_pathspec);
2879
2880 ps = new0(PathSpec, 1);
2881 if (!ps)
2882 return -ENOMEM;
2883
718db961 2884 ps->unit = UNIT(s);
3a111838
MS
2885 ps->path = strdup(s->pid_file);
2886 if (!ps->path) {
2887 free(ps);
2888 return -ENOMEM;
2889 }
2890
858d36c1 2891 path_simplify(ps->path, false);
3a111838
MS
2892
2893 /* PATH_CHANGED would not be enough. There are daemons (sendmail) that
2894 * keep their PID file open all the time. */
2895 ps->type = PATH_MODIFIED;
2896 ps->inotify_fd = -1;
2897
2898 s->pid_file_pathspec = ps;
2899
2900 return service_watch_pid_file(s);
2901}
2902
718db961 2903static int service_dispatch_io(sd_event_source *source, int fd, uint32_t events, void *userdata) {
e14c2802
LP
2904 PathSpec *p = userdata;
2905 Service *s;
2906
2907 assert(p);
2908
2909 s = SERVICE(p->unit);
3a111838
MS
2910
2911 assert(s);
2912 assert(fd >= 0);
3742095b 2913 assert(IN_SET(s->state, SERVICE_START, SERVICE_START_POST));
3a111838 2914 assert(s->pid_file_pathspec);
57020a3a 2915 assert(path_spec_owns_inotify_fd(s->pid_file_pathspec, fd));
3a111838 2916
f2341e0a 2917 log_unit_debug(UNIT(s), "inotify event");
3a111838 2918
e14c2802 2919 if (path_spec_fd_event(p, events) < 0)
3a111838
MS
2920 goto fail;
2921
2922 if (service_retry_pid_file(s) == 0)
718db961 2923 return 0;
3a111838
MS
2924
2925 if (service_watch_pid_file(s) < 0)
2926 goto fail;
2927
718db961
LP
2928 return 0;
2929
3a111838
MS
2930fail:
2931 service_unwatch_pid_file(s);
f42806df 2932 service_enter_signal(s, SERVICE_STOP_SIGTERM, SERVICE_FAILURE_RESOURCES);
718db961 2933 return 0;
3a111838
MS
2934}
2935
a911bb9a
LP
2936static void service_notify_cgroup_empty_event(Unit *u) {
2937 Service *s = SERVICE(u);
2938
2939 assert(u);
2940
f2341e0a 2941 log_unit_debug(u, "cgroup is empty");
a911bb9a
LP
2942
2943 switch (s->state) {
2944
2945 /* Waiting for SIGCHLD is usually more interesting,
2946 * because it includes return codes/signals. Which is
2947 * why we ignore the cgroup events for most cases,
2948 * except when we don't know pid which to expect the
2949 * SIGCHLD for. */
2950
2951 case SERVICE_START:
3c751b1b
LP
2952 if (s->type == SERVICE_NOTIFY &&
2953 main_pid_good(s) == 0 &&
2954 control_pid_good(s) == 0) {
3d474ef7 2955 /* No chance of getting a ready notification anymore */
c3fda31d 2956 service_enter_stop_post(s, SERVICE_FAILURE_PROTOCOL);
71e529fc
JW
2957 break;
2958 }
2959
4831981d 2960 _fallthrough_;
71e529fc 2961 case SERVICE_START_POST:
3c751b1b
LP
2962 if (s->pid_file_pathspec &&
2963 main_pid_good(s) == 0 &&
2964 control_pid_good(s) == 0) {
2965
3d474ef7 2966 /* Give up hoping for the daemon to write its PID file */
f2341e0a 2967 log_unit_warning(u, "Daemon never wrote its PID file. Failing.");
8bb2d17d 2968
a911bb9a
LP
2969 service_unwatch_pid_file(s);
2970 if (s->state == SERVICE_START)
c3fda31d 2971 service_enter_stop_post(s, SERVICE_FAILURE_PROTOCOL);
a911bb9a 2972 else
c35755fb 2973 service_enter_stop(s, SERVICE_FAILURE_PROTOCOL);
a911bb9a
LP
2974 }
2975 break;
2976
2977 case SERVICE_RUNNING:
2978 /* service_enter_running() will figure out what to do */
2979 service_enter_running(s, SERVICE_SUCCESS);
2980 break;
2981
db2cb23b 2982 case SERVICE_STOP_SIGABRT:
a911bb9a
LP
2983 case SERVICE_STOP_SIGTERM:
2984 case SERVICE_STOP_SIGKILL:
2985
b13ddbbc 2986 if (main_pid_good(s) <= 0 && control_pid_good(s) <= 0)
a911bb9a
LP
2987 service_enter_stop_post(s, SERVICE_SUCCESS);
2988
2989 break;
2990
2991 case SERVICE_STOP_POST:
2992 case SERVICE_FINAL_SIGTERM:
2993 case SERVICE_FINAL_SIGKILL:
b13ddbbc 2994 if (main_pid_good(s) <= 0 && control_pid_good(s) <= 0)
a911bb9a
LP
2995 service_enter_dead(s, SERVICE_SUCCESS, true);
2996
2997 break;
2998
2999 default:
3000 ;
3001 }
3002}
3003
87f0e418 3004static void service_sigchld_event(Unit *u, pid_t pid, int code, int status) {
5cdabc8d 3005 bool notify_dbus = true;
87f0e418 3006 Service *s = SERVICE(u);
f42806df 3007 ServiceResult f;
5cb5a6ff
LP
3008
3009 assert(s);
034c6ed7
LP
3010 assert(pid >= 0);
3011
1f0958f6 3012 if (is_clean_exit(code, status, s->type == SERVICE_ONESHOT ? EXIT_CLEAN_COMMAND : EXIT_CLEAN_DAEMON, &s->success_status))
f42806df
LP
3013 f = SERVICE_SUCCESS;
3014 else if (code == CLD_EXITED)
3015 f = SERVICE_FAILURE_EXIT_CODE;
3016 else if (code == CLD_KILLED)
3017 f = SERVICE_FAILURE_SIGNAL;
3018 else if (code == CLD_DUMPED)
3019 f = SERVICE_FAILURE_CORE_DUMP;
d06dacd0 3020 else
cfc4eb4c 3021 assert_not_reached("Unknown code");
034c6ed7
LP
3022
3023 if (s->main_pid == pid) {
db01f8b3
MS
3024 /* Forking services may occasionally move to a new PID.
3025 * As long as they update the PID file before exiting the old
3026 * PID, they're fine. */
db256aab 3027 if (service_load_pid_file(s, false) > 0)
db01f8b3 3028 return;
034c6ed7 3029
034c6ed7 3030 s->main_pid = 0;
6ea832a2 3031 exec_status_exit(&s->main_exec_status, &s->exec_context, pid, code, status);
034c6ed7 3032
867b3b7d 3033 if (s->main_command) {
fbeefb45
LP
3034 /* If this is not a forking service than the
3035 * main process got started and hence we copy
3036 * the exit status so that it is recorded both
3037 * as main and as control process exit
3038 * status */
3039
867b3b7d 3040 s->main_command->exec_status = s->main_exec_status;
b708e7ce 3041
3ed0cd26 3042 if (s->main_command->flags & EXEC_COMMAND_IGNORE_FAILURE)
f42806df 3043 f = SERVICE_SUCCESS;
fbeefb45
LP
3044 } else if (s->exec_command[SERVICE_EXEC_START]) {
3045
3046 /* If this is a forked process, then we should
3047 * ignore the return value if this was
3048 * configured for the starter process */
3049
3ed0cd26 3050 if (s->exec_command[SERVICE_EXEC_START]->flags & EXEC_COMMAND_IGNORE_FAILURE)
fbeefb45 3051 f = SERVICE_SUCCESS;
034c6ed7
LP
3052 }
3053
5368222d
LP
3054 /* When this is a successful exit, let's log about the exit code on DEBUG level. If this is a failure
3055 * and the process exited on its own via exit(), then let's make this a NOTICE, under the assumption
3056 * that the service already logged the reason at a higher log level on its own. However, if the service
3057 * died due to a signal, then it most likely didn't say anything about any reason, hence let's raise
3058 * our log level to WARNING then. */
3059
3060 log_struct(f == SERVICE_SUCCESS ? LOG_DEBUG :
3061 (code == CLD_EXITED ? LOG_NOTICE : LOG_WARNING),
f2341e0a
LP
3062 LOG_UNIT_MESSAGE(u, "Main process exited, code=%s, status=%i/%s",
3063 sigchld_code_to_string(code), status,
e2cc6eca
LP
3064 strna(code == CLD_EXITED
3065 ? exit_status_to_string(status, EXIT_STATUS_FULL)
3066 : signal_to_string(status))),
f2341e0a
LP
3067 "EXIT_CODE=%s", sigchld_code_to_string(code),
3068 "EXIT_STATUS=%i", status,
ba360bb0 3069 LOG_UNIT_ID(u),
a1230ff9 3070 LOG_UNIT_INVOCATION_ID(u));
f42806df 3071
a0fef983 3072 if (s->result == SERVICE_SUCCESS)
f42806df 3073 s->result = f;
034c6ed7 3074
867b3b7d
LP
3075 if (s->main_command &&
3076 s->main_command->command_next &&
b58aeb70 3077 s->type == SERVICE_ONESHOT &&
f42806df 3078 f == SERVICE_SUCCESS) {
034c6ed7 3079
34e9ba66
LP
3080 /* There is another command to *
3081 * execute, so let's do that. */
034c6ed7 3082
f2341e0a 3083 log_unit_debug(u, "Running next main command for state %s.", service_state_to_string(s->state));
f42806df 3084 service_run_next_main(s);
034c6ed7 3085
34e9ba66
LP
3086 } else {
3087
3088 /* The service exited, so the service is officially
3089 * gone. */
867b3b7d 3090 s->main_command = NULL;
34e9ba66
LP
3091
3092 switch (s->state) {
3093
3094 case SERVICE_START_POST:
3095 case SERVICE_RELOAD:
3096 case SERVICE_STOP:
3097 /* Need to wait until the operation is
3098 * done */
c4653a4d 3099 break;
7d55e835 3100
34e9ba66
LP
3101 case SERVICE_START:
3102 if (s->type == SERVICE_ONESHOT) {
3103 /* This was our main goal, so let's go on */
f42806df 3104 if (f == SERVICE_SUCCESS)
34e9ba66
LP
3105 service_enter_start_post(s);
3106 else
c3fda31d 3107 service_enter_signal(s, SERVICE_STOP_SIGTERM, f);
34e9ba66 3108 break;
3d474ef7
JW
3109 } else if (s->type == SERVICE_NOTIFY) {
3110 /* Only enter running through a notification, so that the
3111 * SERVICE_START state signifies that no ready notification
3112 * has been received */
3113 if (f != SERVICE_SUCCESS)
c3fda31d 3114 service_enter_signal(s, SERVICE_STOP_SIGTERM, f);
df66b93f
JW
3115 else if (!s->remain_after_exit || s->notify_access == NOTIFY_MAIN)
3116 /* The service has never been and will never be active */
c3fda31d 3117 service_enter_signal(s, SERVICE_STOP_SIGTERM, SERVICE_FAILURE_PROTOCOL);
3d474ef7 3118 break;
34e9ba66 3119 }
034c6ed7 3120
4831981d 3121 _fallthrough_;
34e9ba66 3122 case SERVICE_RUNNING:
f42806df 3123 service_enter_running(s, f);
34e9ba66 3124 break;
034c6ed7 3125
db2cb23b 3126 case SERVICE_STOP_SIGABRT:
34e9ba66
LP
3127 case SERVICE_STOP_SIGTERM:
3128 case SERVICE_STOP_SIGKILL:
5cb5a6ff 3129
b13ddbbc 3130 if (control_pid_good(s) <= 0)
f42806df 3131 service_enter_stop_post(s, f);
5cb5a6ff 3132
34e9ba66
LP
3133 /* If there is still a control process, wait for that first */
3134 break;
3135
bf108e55
LP
3136 case SERVICE_STOP_POST:
3137 case SERVICE_FINAL_SIGTERM:
3138 case SERVICE_FINAL_SIGKILL:
3139
b13ddbbc 3140 if (control_pid_good(s) <= 0)
bf108e55
LP
3141 service_enter_dead(s, f, true);
3142 break;
3143
34e9ba66
LP
3144 default:
3145 assert_not_reached("Uh, main process died at wrong time.");
3146 }
034c6ed7 3147 }
5cb5a6ff 3148
034c6ed7 3149 } else if (s->control_pid == pid) {
34e9ba66
LP
3150 s->control_pid = 0;
3151
b708e7ce 3152 if (s->control_command) {
8bb2d17d 3153 exec_status_exit(&s->control_command->exec_status, &s->exec_context, pid, code, status);
a16e1123 3154
3ed0cd26 3155 if (s->control_command->flags & EXEC_COMMAND_IGNORE_FAILURE)
f42806df 3156 f = SERVICE_SUCCESS;
b708e7ce
LP
3157 }
3158
f2341e0a
LP
3159 log_unit_full(u, f == SERVICE_SUCCESS ? LOG_DEBUG : LOG_NOTICE, 0,
3160 "Control process exited, code=%s status=%i",
3161 sigchld_code_to_string(code), status);
f42806df 3162
a0fef983 3163 if (s->result == SERVICE_SUCCESS)
f42806df 3164 s->result = f;
034c6ed7 3165
34e9ba66
LP
3166 if (s->control_command &&
3167 s->control_command->command_next &&
f42806df 3168 f == SERVICE_SUCCESS) {
034c6ed7
LP
3169
3170 /* There is another command to *
3171 * execute, so let's do that. */
3172
f2341e0a 3173 log_unit_debug(u, "Running next control command for state %s.", service_state_to_string(s->state));
f42806df 3174 service_run_next_control(s);
034c6ed7 3175
80876c20 3176 } else {
034c6ed7
LP
3177 /* No further commands for this step, so let's
3178 * figure out what to do next */
3179
a16e1123
LP
3180 s->control_command = NULL;
3181 s->control_command_id = _SERVICE_EXEC_COMMAND_INVALID;
3182
f2341e0a 3183 log_unit_debug(u, "Got final SIGCHLD for state %s.", service_state_to_string(s->state));
bd982a8b 3184
034c6ed7
LP
3185 switch (s->state) {
3186
3187 case SERVICE_START_PRE:
f42806df 3188 if (f == SERVICE_SUCCESS)
034c6ed7
LP
3189 service_enter_start(s);
3190 else
c3fda31d 3191 service_enter_signal(s, SERVICE_STOP_SIGTERM, f);
034c6ed7
LP
3192 break;
3193
3194 case SERVICE_START:
bfba3256
LP
3195 if (s->type != SERVICE_FORKING)
3196 /* Maybe spurious event due to a reload that changed the type? */
3197 break;
034c6ed7 3198
f42806df 3199 if (f != SERVICE_SUCCESS) {
c3fda31d 3200 service_enter_signal(s, SERVICE_STOP_SIGTERM, f);
3a111838
MS
3201 break;
3202 }
034c6ed7 3203
3a111838 3204 if (s->pid_file) {
f42806df
LP
3205 bool has_start_post;
3206 int r;
3207
3a111838
MS
3208 /* Let's try to load the pid file here if we can.
3209 * The PID file might actually be created by a START_POST
3210 * script. In that case don't worry if the loading fails. */
f42806df
LP
3211
3212 has_start_post = !!s->exec_command[SERVICE_EXEC_START_POST];
3213 r = service_load_pid_file(s, !has_start_post);
3a111838
MS
3214 if (!has_start_post && r < 0) {
3215 r = service_demand_pid_file(s);
b13ddbbc 3216 if (r < 0 || cgroup_good(s) == 0)
c3fda31d 3217 service_enter_signal(s, SERVICE_STOP_SIGTERM, SERVICE_FAILURE_PROTOCOL);
3a111838
MS
3218 break;
3219 }
034c6ed7 3220 } else
783e05d6 3221 service_search_main_pid(s);
034c6ed7 3222
3a111838 3223 service_enter_start_post(s);
034c6ed7
LP
3224 break;
3225
3226 case SERVICE_START_POST:
f42806df 3227 if (f != SERVICE_SUCCESS) {
ce359e98 3228 service_enter_signal(s, SERVICE_STOP_SIGTERM, f);
2096e009 3229 break;
034c6ed7
LP
3230 }
3231
2096e009 3232 if (s->pid_file) {
f42806df
LP
3233 int r;
3234
3235 r = service_load_pid_file(s, true);
2096e009
MS
3236 if (r < 0) {
3237 r = service_demand_pid_file(s);
b13ddbbc 3238 if (r < 0 || cgroup_good(s) == 0)
c35755fb 3239 service_enter_stop(s, SERVICE_FAILURE_PROTOCOL);
2096e009
MS
3240 break;
3241 }
3242 } else
783e05d6 3243 service_search_main_pid(s);
2096e009 3244
f42806df 3245 service_enter_running(s, SERVICE_SUCCESS);
3185a36b 3246 break;
034c6ed7
LP
3247
3248 case SERVICE_RELOAD:
7236ce6e
ZJS
3249 if (f == SERVICE_SUCCESS)
3250 if (service_load_pid_file(s, true) < 0)
3251 service_search_main_pid(s);
3185a36b 3252
f42806df
LP
3253 s->reload_result = f;
3254 service_enter_running(s, SERVICE_SUCCESS);
034c6ed7
LP
3255 break;
3256
3257 case SERVICE_STOP:
f42806df 3258 service_enter_signal(s, SERVICE_STOP_SIGTERM, f);
034c6ed7
LP
3259 break;
3260
db2cb23b 3261 case SERVICE_STOP_SIGABRT:
034c6ed7
LP
3262 case SERVICE_STOP_SIGTERM:
3263 case SERVICE_STOP_SIGKILL:
3264 if (main_pid_good(s) <= 0)
f42806df 3265 service_enter_stop_post(s, f);
034c6ed7
LP
3266
3267 /* If there is still a service
3268 * process around, wait until
3269 * that one quit, too */
3270 break;
3271
3272 case SERVICE_STOP_POST:
3273 case SERVICE_FINAL_SIGTERM:
3274 case SERVICE_FINAL_SIGKILL:
bf108e55
LP
3275 if (main_pid_good(s) <= 0)
3276 service_enter_dead(s, f, true);
034c6ed7
LP
3277 break;
3278
3279 default:
3280 assert_not_reached("Uh, control process died at wrong time.");
3281 }
3282 }
5cdabc8d
LP
3283 } else /* Neither control nor main PID? If so, don't notify about anything */
3284 notify_dbus = false;
c4e2ceae
LP
3285
3286 /* Notify clients about changed exit status */
5cdabc8d
LP
3287 if (notify_dbus)
3288 unit_add_to_dbus_queue(u);
a911bb9a 3289
11aef522
LP
3290 /* If we get a SIGCHLD event for one of the processes we were interested in, then we look for others to watch,
3291 * under the assumption that we'll sooner or later get a SIGCHLD for them, as the original process we watched
3292 * was probably the parent of them, and they are hence now our children. */
a911bb9a
LP
3293 unit_tidy_watch_pids(u, s->main_pid, s->control_pid);
3294 unit_watch_all_pids(u);
3295
11aef522
LP
3296 /* If the PID set is empty now, then let's check if the cgroup is empty too and finish off the unit. */
3297 unit_synthesize_cgroup_empty_event(u);
034c6ed7
LP
3298}
3299
718db961
LP
3300static int service_dispatch_timer(sd_event_source *source, usec_t usec, void *userdata) {
3301 Service *s = SERVICE(userdata);
034c6ed7
LP
3302
3303 assert(s);
718db961 3304 assert(source == s->timer_event_source);
034c6ed7
LP
3305
3306 switch (s->state) {
3307
3308 case SERVICE_START_PRE:
3309 case SERVICE_START:
f2341e0a 3310 log_unit_warning(UNIT(s), "%s operation timed out. Terminating.", s->state == SERVICE_START ? "Start" : "Start-pre");
c3fda31d 3311 service_enter_signal(s, SERVICE_STOP_SIGTERM, SERVICE_FAILURE_TIMEOUT);
80876c20
LP
3312 break;
3313
034c6ed7 3314 case SERVICE_START_POST:
f2341e0a 3315 log_unit_warning(UNIT(s), "Start-post operation timed out. Stopping.");
ce359e98 3316 service_enter_signal(s, SERVICE_STOP_SIGTERM, SERVICE_FAILURE_TIMEOUT);
034c6ed7
LP
3317 break;
3318
36c16a7c
LP
3319 case SERVICE_RUNNING:
3320 log_unit_warning(UNIT(s), "Service reached runtime time limit. Stopping.");
3321 service_enter_stop(s, SERVICE_FAILURE_TIMEOUT);
3322 break;
3323
e2f3b44c 3324 case SERVICE_RELOAD:
089b64d5 3325 log_unit_warning(UNIT(s), "Reload operation timed out. Killing reload process.");
e9a4f676 3326 service_kill_control_process(s);
f42806df
LP
3327 s->reload_result = SERVICE_FAILURE_TIMEOUT;
3328 service_enter_running(s, SERVICE_SUCCESS);
e2f3b44c
LP
3329 break;
3330
034c6ed7 3331 case SERVICE_STOP:
f2341e0a 3332 log_unit_warning(UNIT(s), "Stopping timed out. Terminating.");
f42806df 3333 service_enter_signal(s, SERVICE_STOP_SIGTERM, SERVICE_FAILURE_TIMEOUT);
034c6ed7
LP
3334 break;
3335
db2cb23b 3336 case SERVICE_STOP_SIGABRT:
f2341e0a 3337 log_unit_warning(UNIT(s), "State 'stop-sigabrt' timed out. Terminating.");
2ab2ab7b 3338 service_enter_signal(s, SERVICE_STOP_SIGTERM, SERVICE_FAILURE_TIMEOUT);
db2cb23b
UTL
3339 break;
3340
034c6ed7 3341 case SERVICE_STOP_SIGTERM:
4819ff03 3342 if (s->kill_context.send_sigkill) {
f2341e0a 3343 log_unit_warning(UNIT(s), "State 'stop-sigterm' timed out. Killing.");
f42806df 3344 service_enter_signal(s, SERVICE_STOP_SIGKILL, SERVICE_FAILURE_TIMEOUT);
ba035df2 3345 } else {
f2341e0a 3346 log_unit_warning(UNIT(s), "State 'stop-sigterm' timed out. Skipping SIGKILL.");
f42806df 3347 service_enter_stop_post(s, SERVICE_FAILURE_TIMEOUT);
ba035df2
LP
3348 }
3349
034c6ed7
LP
3350 break;
3351
3352 case SERVICE_STOP_SIGKILL:
35b8ca3a 3353 /* Uh, we sent a SIGKILL and it is still not gone?
034c6ed7
LP
3354 * Must be something we cannot kill, so let's just be
3355 * weirded out and continue */
3356
f2341e0a 3357 log_unit_warning(UNIT(s), "Processes still around after SIGKILL. Ignoring.");
f42806df 3358 service_enter_stop_post(s, SERVICE_FAILURE_TIMEOUT);
034c6ed7
LP
3359 break;
3360
3361 case SERVICE_STOP_POST:
f2341e0a 3362 log_unit_warning(UNIT(s), "State 'stop-post' timed out. Terminating.");
f42806df 3363 service_enter_signal(s, SERVICE_FINAL_SIGTERM, SERVICE_FAILURE_TIMEOUT);
034c6ed7
LP
3364 break;
3365
3366 case SERVICE_FINAL_SIGTERM:
4819ff03 3367 if (s->kill_context.send_sigkill) {
f2341e0a 3368 log_unit_warning(UNIT(s), "State 'stop-final-sigterm' timed out. Killing.");
f42806df 3369 service_enter_signal(s, SERVICE_FINAL_SIGKILL, SERVICE_FAILURE_TIMEOUT);
ba035df2 3370 } else {
f2341e0a 3371 log_unit_warning(UNIT(s), "State 'stop-final-sigterm' timed out. Skipping SIGKILL. Entering failed mode.");
f42806df 3372 service_enter_dead(s, SERVICE_FAILURE_TIMEOUT, false);
ba035df2
LP
3373 }
3374
034c6ed7
LP
3375 break;
3376
3377 case SERVICE_FINAL_SIGKILL:
f2341e0a 3378 log_unit_warning(UNIT(s), "Processes still around after final SIGKILL. Entering failed mode.");
f42806df 3379 service_enter_dead(s, SERVICE_FAILURE_TIMEOUT, true);
034c6ed7
LP
3380 break;
3381
3382 case SERVICE_AUTO_RESTART:
5ce6e7f5
ZJS
3383 if (s->restart_usec > 0) {
3384 char buf_restart[FORMAT_TIMESPAN_MAX];
3385 log_unit_info(UNIT(s),
3386 "Service RestartSec=%s expired, scheduling restart.",
3387 format_timespan(buf_restart, sizeof buf_restart, s->restart_usec, USEC_PER_SEC));
3388 } else
3389 log_unit_info(UNIT(s),
3390 "Service has no hold-off time (RestartSec=0), scheduling restart.");
3391
034c6ed7
LP
3392 service_enter_restart(s);
3393 break;
3394
3395 default:
3396 assert_not_reached("Timeout at wrong time.");
3397 }
718db961
LP
3398
3399 return 0;
3400}
3401
3402static int service_dispatch_watchdog(sd_event_source *source, usec_t usec, void *userdata) {
3403 Service *s = SERVICE(userdata);
a7850c7d 3404 char t[FORMAT_TIMESPAN_MAX];
2787d83c 3405 usec_t watchdog_usec;
718db961
LP
3406
3407 assert(s);
3408 assert(source == s->watchdog_event_source);
3409
2787d83c
M
3410 watchdog_usec = service_get_watchdog_usec(s);
3411
2a12e32e
JK
3412 if (UNIT(s)->manager->service_watchdogs) {
3413 log_unit_error(UNIT(s), "Watchdog timeout (limit %s)!",
3414 format_timespan(t, sizeof(t), watchdog_usec, 1));
8bb2d17d 3415
2a12e32e
JK
3416 service_enter_signal(s, SERVICE_STOP_SIGABRT, SERVICE_FAILURE_WATCHDOG);
3417 } else
3418 log_unit_warning(UNIT(s), "Watchdog disabled! Ignoring watchdog timeout (limit %s)!",
3419 format_timespan(t, sizeof(t), watchdog_usec, 1));
842129f5 3420
718db961 3421 return 0;
5cb5a6ff
LP
3422}
3423
e3285237
LP
3424static bool service_notify_message_authorized(Service *s, pid_t pid, char **tags, FDSet *fds) {
3425 assert(s);
8c47c732 3426
c952c6ec 3427 if (s->notify_access == NOTIFY_NONE) {
e3285237
LP
3428 log_unit_warning(UNIT(s), "Got notification message from PID "PID_FMT", but reception is disabled.", pid);
3429 return false;
3430 }
3431
3432 if (s->notify_access == NOTIFY_MAIN && pid != s->main_pid) {
336c6e46 3433 if (s->main_pid != 0)
e3285237 3434 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 3435 else
e3285237
LP
3436 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);
3437
3438 return false;
3439 }
3440
3441 if (s->notify_access == NOTIFY_EXEC && pid != s->main_pid && pid != s->control_pid) {
6375bd20 3442 if (s->main_pid != 0 && s->control_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" and control PID "PID_FMT,
6375bd20
JW
3444 pid, s->main_pid, s->control_pid);
3445 else if (s->main_pid != 0)
e3285237 3446 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 3447 else if (s->control_pid != 0)
e3285237 3448 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 3449 else
e3285237
LP
3450 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);
3451
3452 return false;
9711848f
LP
3453 }
3454
e3285237
LP
3455 return true;
3456}
3457
db256aab
LP
3458static void service_notify_message(
3459 Unit *u,
3460 const struct ucred *ucred,
3461 char **tags,
3462 FDSet *fds) {
3463
e3285237
LP
3464 Service *s = SERVICE(u);
3465 bool notify_dbus = false;
3466 const char *e;
cc2b7b11 3467 char **i;
db256aab 3468 int r;
e3285237
LP
3469
3470 assert(u);
db256aab 3471 assert(ucred);
e3285237 3472
db256aab 3473 if (!service_notify_message_authorized(SERVICE(u), ucred->pid, tags, fds))
e3285237
LP
3474 return;
3475
f1d34068 3476 if (DEBUG_LOGGING) {
9711848f
LP
3477 _cleanup_free_ char *cc = NULL;
3478
3479 cc = strv_join(tags, ", ");
db256aab 3480 log_unit_debug(u, "Got notification message from PID "PID_FMT" (%s)", ucred->pid, isempty(cc) ? "n/a" : cc);
9711848f 3481 }
c952c6ec 3482
8c47c732 3483 /* Interpret MAINPID= */
28849dba 3484 e = strv_find_startswith(tags, "MAINPID=");
5e56b378 3485 if (e && IN_SET(s->state, SERVICE_START, SERVICE_START_POST, SERVICE_RUNNING, SERVICE_RELOAD)) {
db256aab
LP
3486 pid_t new_main_pid;
3487
3488 if (parse_pid(e, &new_main_pid) < 0)
3489 log_unit_warning(u, "Failed to parse MAINPID= field in notification message, ignoring: %s", e);
3490 else if (!s->main_pid_known || new_main_pid != s->main_pid) {
3491
3492 r = service_is_suitable_main_pid(s, new_main_pid, LOG_WARNING);
3493 if (r == 0) {
3494 /* The new main PID is a bit suspicous, which is OK if the sender is privileged. */
3495
3496 if (ucred->uid == 0) {
3497 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);
3498 r = 1;
3499 } else
3500 log_unit_debug(u, "New main PID "PID_FMT" does not belong to service, refusing.", new_main_pid);
3501 }
3502 if (r > 0) {
3503 service_set_main_pid(s, new_main_pid);
3504 unit_watch_pid(UNIT(s), new_main_pid);
3505 notify_dbus = true;
3506 }
8c47c732
LP
3507 }
3508 }
3509
cc2b7b11
LP
3510 /* Interpret READY=/STOPPING=/RELOADING=. Last one wins. */
3511 STRV_FOREACH_BACKWARDS(i, tags) {
308d72dc 3512
cc2b7b11
LP
3513 if (streq(*i, "READY=1")) {
3514 s->notify_state = NOTIFY_READY;
308d72dc 3515
cc2b7b11
LP
3516 /* Type=notify services inform us about completed
3517 * initialization with READY=1 */
3518 if (s->type == SERVICE_NOTIFY && s->state == SERVICE_START)
3519 service_enter_start_post(s);
308d72dc 3520
cc2b7b11
LP
3521 /* Sending READY=1 while we are reloading informs us
3522 * that the reloading is complete */
3523 if (s->state == SERVICE_RELOAD && s->control_pid == 0)
3524 service_enter_running(s, SERVICE_SUCCESS);
308d72dc 3525
cc2b7b11
LP
3526 notify_dbus = true;
3527 break;
308d72dc 3528
cc2b7b11
LP
3529 } else if (streq(*i, "RELOADING=1")) {
3530 s->notify_state = NOTIFY_RELOADING;
308d72dc 3531
cc2b7b11
LP
3532 if (s->state == SERVICE_RUNNING)
3533 service_enter_reload_by_notify(s);
308d72dc 3534
cc2b7b11
LP
3535 notify_dbus = true;
3536 break;
308d72dc 3537
cc2b7b11
LP
3538 } else if (streq(*i, "STOPPING=1")) {
3539 s->notify_state = NOTIFY_STOPPING;
308d72dc 3540
cc2b7b11
LP
3541 if (s->state == SERVICE_RUNNING)
3542 service_enter_stop_by_notify(s);
308d72dc 3543
cc2b7b11
LP
3544 notify_dbus = true;
3545 break;
3546 }
8c47c732
LP
3547 }
3548
3549 /* Interpret STATUS= */
28849dba 3550 e = strv_find_startswith(tags, "STATUS=");
7f110ff9 3551 if (e) {
28849dba 3552 _cleanup_free_ char *t = NULL;
8c47c732 3553
28849dba
LP
3554 if (!isempty(e)) {
3555 if (!utf8_is_valid(e))
f2341e0a 3556 log_unit_warning(u, "Status message in notification message is not UTF-8 clean.");
28849dba 3557 else {
28849dba
LP
3558 t = strdup(e);
3559 if (!t)
3560 log_oom();
3a2776bc 3561 }
28849dba 3562 }
8c47c732 3563
30b5275a 3564 if (!streq_ptr(s->status_text, t)) {
3b319885 3565 free_and_replace(s->status_text, t);
30b5275a 3566 notify_dbus = true;
28849dba 3567 }
8c47c732 3568 }
842129f5 3569
4774e357 3570 /* Interpret ERRNO= */
28849dba 3571 e = strv_find_startswith(tags, "ERRNO=");
4774e357
MAA
3572 if (e) {
3573 int status_errno;
3574
2fa40742
LP
3575 status_errno = parse_errno(e);
3576 if (status_errno < 0)
3577 log_unit_warning_errno(u, status_errno,
3578 "Failed to parse ERRNO= field in notification message: %s", e);
3579 else if (s->status_errno != status_errno) {
3580 s->status_errno = status_errno;
3581 notify_dbus = true;
4774e357
MAA
3582 }
3583 }
3584
a327431b
DB
3585 /* Interpret EXTEND_TIMEOUT= */
3586 e = strv_find_startswith(tags, "EXTEND_TIMEOUT_USEC=");
3587 if (e) {
3588 usec_t extend_timeout_usec;
3589 if (safe_atou64(e, &extend_timeout_usec) < 0)
3590 log_unit_warning(u, "Failed to parse EXTEND_TIMEOUT_USEC=%s", e);
3591 else
3592 service_extend_timeout(s, extend_timeout_usec);
3593 }
3594
6f285378 3595 /* Interpret WATCHDOG= */
1f6b4113 3596 if (strv_find(tags, "WATCHDOG=1"))
842129f5 3597 service_reset_watchdog(s);
c4e2ceae 3598
c45d11cb
LP
3599 e = strv_find_startswith(tags, "WATCHDOG_USEC=");
3600 if (e) {
3601 usec_t watchdog_override_usec;
3602 if (safe_atou64(e, &watchdog_override_usec) < 0)
3603 log_unit_warning(u, "Failed to parse WATCHDOG_USEC=%s", e);
3604 else
3605 service_reset_watchdog_timeout(s, watchdog_override_usec);
3606 }
3607
e78ee06d
LP
3608 /* Process FD store messages. Either FDSTOREREMOVE=1 for removal, or FDSTORE=1 for addition. In both cases,
3609 * process FDNAME= for picking the file descriptor name to use. Note that FDNAME= is required when removing
3610 * fds, but optional when pushing in new fds, for compatibility reasons. */
3611 if (strv_find(tags, "FDSTOREREMOVE=1")) {
3612 const char *name;
3613
3614 name = strv_find_startswith(tags, "FDNAME=");
3615 if (!name || !fdname_is_valid(name))
3616 log_unit_warning(u, "FDSTOREREMOVE=1 requested, but no valid file descriptor name passed, ignoring.");
3617 else
3618 service_remove_fd_store(s, name);
3619
3620 } else if (strv_find(tags, "FDSTORE=1")) {
8dd4c05b
LP
3621 const char *name;
3622
3623 name = strv_find_startswith(tags, "FDNAME=");
3624 if (name && !fdname_is_valid(name)) {
3625 log_unit_warning(u, "Passed FDNAME= name is invalid, ignoring.");
3626 name = NULL;
3627 }
3628
e78ee06d 3629 (void) service_add_fd_store_set(s, fds, name);
8dd4c05b 3630 }
a354329f 3631
c4e2ceae 3632 /* Notify clients about changed status or main pid */
30b5275a
LP
3633 if (notify_dbus)
3634 unit_add_to_dbus_queue(u);
8c47c732
LP
3635}
3636
7a7821c8 3637static int service_get_timeout(Unit *u, usec_t *timeout) {
68db7a3b 3638 Service *s = SERVICE(u);
7a7821c8 3639 uint64_t t;
68db7a3b
ZJS
3640 int r;
3641
3642 if (!s->timer_event_source)
3643 return 0;
3644
7a7821c8 3645 r = sd_event_source_get_time(s->timer_event_source, &t);
68db7a3b
ZJS
3646 if (r < 0)
3647 return r;
7a7821c8
LP
3648 if (t == USEC_INFINITY)
3649 return 0;
68db7a3b 3650
7a7821c8 3651 *timeout = t;
68db7a3b
ZJS
3652 return 1;
3653}
3654
05e343b7
LP
3655static void service_bus_name_owner_change(
3656 Unit *u,
3657 const char *name,
3658 const char *old_owner,
3659 const char *new_owner) {
3660
3661 Service *s = SERVICE(u);
718db961 3662 int r;
05e343b7
LP
3663
3664 assert(s);
3665 assert(name);
3666
3667 assert(streq(s->bus_name, name));
3668 assert(old_owner || new_owner);
3669
3670 if (old_owner && new_owner)
f2341e0a 3671 log_unit_debug(u, "D-Bus name %s changed owner from %s to %s", name, old_owner, new_owner);
05e343b7 3672 else if (old_owner)
f2341e0a 3673 log_unit_debug(u, "D-Bus name %s no longer registered by %s", name, old_owner);
05e343b7 3674 else
f2341e0a 3675 log_unit_debug(u, "D-Bus name %s now registered by %s", name, new_owner);
05e343b7
LP
3676
3677 s->bus_name_good = !!new_owner;
3678
d8ccf5fd
DM
3679 /* Track the current owner, so we can reconstruct changes after a daemon reload */
3680 r = free_and_strdup(&s->bus_name_owner, new_owner);
3681 if (r < 0) {
3682 log_unit_error_errno(u, r, "Unable to set new bus name owner %s: %m", new_owner);
3683 return;
3684 }
3685
05e343b7
LP
3686 if (s->type == SERVICE_DBUS) {
3687
3688 /* service_enter_running() will figure out what to
3689 * do */
3690 if (s->state == SERVICE_RUNNING)
f42806df 3691 service_enter_running(s, SERVICE_SUCCESS);
05e343b7
LP
3692 else if (s->state == SERVICE_START && new_owner)
3693 service_enter_start_post(s);
3694
3695 } else if (new_owner &&
3696 s->main_pid <= 0 &&
a6951a50
LP
3697 IN_SET(s->state,
3698 SERVICE_START,
3699 SERVICE_START_POST,
3700 SERVICE_RUNNING,
3701 SERVICE_RELOAD)) {
05e343b7 3702
4afd3348 3703 _cleanup_(sd_bus_creds_unrefp) sd_bus_creds *creds = NULL;
718db961 3704 pid_t pid;
05e343b7 3705
718db961 3706 /* Try to acquire PID from bus service */
05e343b7 3707
056f95d0 3708 r = sd_bus_get_name_creds(u->manager->api_bus, name, SD_BUS_CREDS_PID, &creds);
5b12334d
LP
3709 if (r >= 0)
3710 r = sd_bus_creds_get_pid(creds, &pid);
718db961 3711 if (r >= 0) {
7c102d60 3712 log_unit_debug(u, "D-Bus name %s is now owned by process " PID_FMT, name, pid);
05e343b7 3713
718db961
LP
3714 service_set_main_pid(s, pid);
3715 unit_watch_pid(UNIT(s), pid);
3716 }
7400b9d2 3717 }
05e343b7
LP
3718}
3719
16115b0a 3720int service_set_socket_fd(Service *s, int fd, Socket *sock, bool selinux_context_net) {
79a98c60
LP
3721 _cleanup_free_ char *peer = NULL;
3722 int r;
57020a3a 3723
4f2d528d
LP
3724 assert(s);
3725 assert(fd >= 0);
3726
7f2fbbff
LP
3727 /* This is called by the socket code when instantiating a new service for a stream socket and the socket needs
3728 * to be configured. We take ownership of the passed fd on success. */
4f2d528d 3729
1124fe6f 3730 if (UNIT(s)->load_state != UNIT_LOADED)
4f2d528d
LP
3731 return -EINVAL;
3732
3733 if (s->socket_fd >= 0)
3734 return -EBUSY;
3735
3736 if (s->state != SERVICE_DEAD)
3737 return -EAGAIN;
3738
366b7db4 3739 if (getpeername_pretty(fd, true, &peer) >= 0) {
79a98c60
LP
3740
3741 if (UNIT(s)->description) {
3742 _cleanup_free_ char *a;
3743
605405c6 3744 a = strjoin(UNIT(s)->description, " (", peer, ")");
79a98c60
LP
3745 if (!a)
3746 return -ENOMEM;
3747
3748 r = unit_set_description(UNIT(s), a);
3749 } else
3750 r = unit_set_description(UNIT(s), peer);
3751
3752 if (r < 0)
3753 return r;
3754 }
3755
eef85c4a 3756 r = unit_add_two_dependencies(UNIT(sock), UNIT_BEFORE, UNIT_TRIGGERS, UNIT(s), false, UNIT_DEPENDENCY_IMPLICIT);
7f2fbbff
LP
3757 if (r < 0)
3758 return r;
3759
4f2d528d 3760 s->socket_fd = fd;
16115b0a 3761 s->socket_fd_selinux_context_net = selinux_context_net;
6cf6bbc2 3762
7f7d01ed 3763 unit_ref_set(&s->accept_socket, UNIT(s), UNIT(sock));
7f2fbbff 3764 return 0;
4f2d528d
LP
3765}
3766
fdf20a31 3767static void service_reset_failed(Unit *u) {
5632e374
LP
3768 Service *s = SERVICE(u);
3769
3770 assert(s);
3771
fdf20a31 3772 if (s->state == SERVICE_FAILED)
5632e374
LP
3773 service_set_state(s, SERVICE_DEAD);
3774
f42806df
LP
3775 s->result = SERVICE_SUCCESS;
3776 s->reload_result = SERVICE_SUCCESS;
7a0019d3
LP
3777 s->n_restarts = 0;
3778 s->flush_n_restarts = false;
5632e374
LP
3779}
3780
718db961 3781static int service_kill(Unit *u, KillWho who, int signo, sd_bus_error *error) {
8a0867d6 3782 Service *s = SERVICE(u);
41efeaec 3783
a6951a50
LP
3784 assert(s);
3785
814cc562 3786 return unit_kill_common(u, who, signo, s->main_pid, s->control_pid, error);
8a0867d6
LP
3787}
3788
291d565a
LP
3789static int service_main_pid(Unit *u) {
3790 Service *s = SERVICE(u);
3791
3792 assert(s);
3793
3794 return s->main_pid;
3795}
3796
3797static int service_control_pid(Unit *u) {
3798 Service *s = SERVICE(u);
3799
3800 assert(s);
3801
3802 return s->control_pid;
3803}
3804
bb2c7685
LP
3805static bool service_needs_console(Unit *u) {
3806 Service *s = SERVICE(u);
3807
3808 assert(s);
3809
3810 /* We provide our own implementation of this here, instead of relying of the generic implementation
3811 * unit_needs_console() provides, since we want to return false if we are in SERVICE_EXITED state. */
3812
3813 if (!exec_context_may_touch_console(&s->exec_context))
3814 return false;
3815
3816 return IN_SET(s->state,
3817 SERVICE_START_PRE,
3818 SERVICE_START,
3819 SERVICE_START_POST,
3820 SERVICE_RUNNING,
3821 SERVICE_RELOAD,
3822 SERVICE_STOP,
3823 SERVICE_STOP_SIGABRT,
3824 SERVICE_STOP_SIGTERM,
3825 SERVICE_STOP_SIGKILL,
3826 SERVICE_STOP_POST,
3827 SERVICE_FINAL_SIGTERM,
3828 SERVICE_FINAL_SIGKILL);
3829}
3830
94f04347 3831static const char* const service_restart_table[_SERVICE_RESTART_MAX] = {
525ee6f4
LP
3832 [SERVICE_RESTART_NO] = "no",
3833 [SERVICE_RESTART_ON_SUCCESS] = "on-success",
50caaedb 3834 [SERVICE_RESTART_ON_FAILURE] = "on-failure",
6cfe2fde 3835 [SERVICE_RESTART_ON_ABNORMAL] = "on-abnormal",
dc99a976 3836 [SERVICE_RESTART_ON_WATCHDOG] = "on-watchdog",
50caaedb 3837 [SERVICE_RESTART_ON_ABORT] = "on-abort",
6cfe2fde 3838 [SERVICE_RESTART_ALWAYS] = "always",
94f04347
LP
3839};
3840
3841DEFINE_STRING_TABLE_LOOKUP(service_restart, ServiceRestart);
3842
3843static const char* const service_type_table[_SERVICE_TYPE_MAX] = {
94f04347 3844 [SERVICE_SIMPLE] = "simple",
0d624a78 3845 [SERVICE_FORKING] = "forking",
34e9ba66 3846 [SERVICE_ONESHOT] = "oneshot",
8c47c732 3847 [SERVICE_DBUS] = "dbus",
f2b68789
LP
3848 [SERVICE_NOTIFY] = "notify",
3849 [SERVICE_IDLE] = "idle"
94f04347
LP
3850};
3851
3852DEFINE_STRING_TABLE_LOOKUP(service_type, ServiceType);
3853
e537352b 3854static const char* const service_exec_command_table[_SERVICE_EXEC_COMMAND_MAX] = {
94f04347
LP
3855 [SERVICE_EXEC_START_PRE] = "ExecStartPre",
3856 [SERVICE_EXEC_START] = "ExecStart",
3857 [SERVICE_EXEC_START_POST] = "ExecStartPost",
3858 [SERVICE_EXEC_RELOAD] = "ExecReload",
3859 [SERVICE_EXEC_STOP] = "ExecStop",
3860 [SERVICE_EXEC_STOP_POST] = "ExecStopPost",
3861};
3862
3863DEFINE_STRING_TABLE_LOOKUP(service_exec_command, ServiceExecCommand);
3864
308d72dc
LP
3865static const char* const notify_state_table[_NOTIFY_STATE_MAX] = {
3866 [NOTIFY_UNKNOWN] = "unknown",
3867 [NOTIFY_READY] = "ready",
3868 [NOTIFY_RELOADING] = "reloading",
3869 [NOTIFY_STOPPING] = "stopping",
3870};
3871
3872DEFINE_STRING_TABLE_LOOKUP(notify_state, NotifyState);
3873
f42806df
LP
3874static const char* const service_result_table[_SERVICE_RESULT_MAX] = {
3875 [SERVICE_SUCCESS] = "success",
3876 [SERVICE_FAILURE_RESOURCES] = "resources",
c35755fb 3877 [SERVICE_FAILURE_PROTOCOL] = "protocol",
f42806df
LP
3878 [SERVICE_FAILURE_TIMEOUT] = "timeout",
3879 [SERVICE_FAILURE_EXIT_CODE] = "exit-code",
3880 [SERVICE_FAILURE_SIGNAL] = "signal",
bb242b7b 3881 [SERVICE_FAILURE_CORE_DUMP] = "core-dump",
8d1b002a 3882 [SERVICE_FAILURE_WATCHDOG] = "watchdog",
07299350 3883 [SERVICE_FAILURE_START_LIMIT_HIT] = "start-limit-hit",
f42806df
LP
3884};
3885
3886DEFINE_STRING_TABLE_LOOKUP(service_result, ServiceResult);
3887
87f0e418 3888const UnitVTable service_vtable = {
7d17cfbc 3889 .object_size = sizeof(Service),
718db961
LP
3890 .exec_context_offset = offsetof(Service, exec_context),
3891 .cgroup_context_offset = offsetof(Service, cgroup_context),
3892 .kill_context_offset = offsetof(Service, kill_context),
613b411c 3893 .exec_runtime_offset = offsetof(Service, exec_runtime),
29206d46 3894 .dynamic_creds_offset = offsetof(Service, dynamic_creds),
3ef63c31 3895
f975e971
LP
3896 .sections =
3897 "Unit\0"
3898 "Service\0"
3899 "Install\0",
4ad49000 3900 .private_section = "Service",
71645aca 3901
1d9cc876
LP
3902 .can_transient = true,
3903 .can_delegate = true,
3904
034c6ed7
LP
3905 .init = service_init,
3906 .done = service_done,
a16e1123 3907 .load = service_load,
a354329f 3908 .release_resources = service_release_resources,
a16e1123
LP
3909
3910 .coldplug = service_coldplug,
034c6ed7 3911
5cb5a6ff
LP
3912 .dump = service_dump,
3913
3914 .start = service_start,
3915 .stop = service_stop,
3916 .reload = service_reload,
3917
034c6ed7
LP
3918 .can_reload = service_can_reload,
3919
8a0867d6
LP
3920 .kill = service_kill,
3921
a16e1123
LP
3922 .serialize = service_serialize,
3923 .deserialize_item = service_deserialize_item,
3924
5cb5a6ff 3925 .active_state = service_active_state,
10a94420 3926 .sub_state_to_string = service_sub_state_to_string,
5cb5a6ff 3927
deb4e708
MK
3928 .will_restart = service_will_restart,
3929
f2f725e5 3930 .may_gc = service_may_gc,
701cc384 3931
034c6ed7 3932 .sigchld_event = service_sigchld_event,
2c4104f0 3933
fdf20a31 3934 .reset_failed = service_reset_failed,
5632e374 3935
4ad49000 3936 .notify_cgroup_empty = service_notify_cgroup_empty_event,
8c47c732 3937 .notify_message = service_notify_message,
8e274523 3938
291d565a
LP
3939 .main_pid = service_main_pid,
3940 .control_pid = service_control_pid,
3941
05e343b7 3942 .bus_name_owner_change = service_bus_name_owner_change,
05e343b7 3943
718db961 3944 .bus_vtable = bus_service_vtable,
74c964d3
LP
3945 .bus_set_property = bus_service_set_property,
3946 .bus_commit_properties = bus_service_commit_properties,
4139c1b2 3947
68db7a3b 3948 .get_timeout = service_get_timeout,
bb2c7685 3949 .needs_console = service_needs_console,
718db961 3950
c6918296
MS
3951 .status_message_formats = {
3952 .starting_stopping = {
3953 [0] = "Starting %s...",
3954 [1] = "Stopping %s...",
3955 },
3956 .finished_start_job = {
3957 [JOB_DONE] = "Started %s.",
3958 [JOB_FAILED] = "Failed to start %s.",
c6918296
MS
3959 },
3960 .finished_stop_job = {
3961 [JOB_DONE] = "Stopped %s.",
3962 [JOB_FAILED] = "Stopped (with error) %s.",
c6918296
MS
3963 },
3964 },
5cb5a6ff 3965};