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