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