1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
4 This file is part of systemd.
6 Copyright 2010 Lennart Poettering
8 systemd is free software; you can redistribute it and/or modify it
9 under the terms of the GNU Lesser General Public License as published by
10 the Free Software Foundation; either version 2.1 of the License, or
11 (at your option) any later version.
13 systemd is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 Lesser General Public License for more details.
18 You should have received a copy of the GNU Lesser General Public License
19 along with systemd; If not, see <http://www.gnu.org/licenses/>.
26 #include <sys/reboot.h>
31 #include "load-fragment.h"
32 #include "load-dropin.h"
35 #include "unit-name.h"
36 #include "unit-printf.h"
37 #include "dbus-service.h"
39 #include "bus-errors.h"
40 #include "exit-status.h"
42 #include "path-util.h"
46 #ifdef HAVE_SYSV_COMPAT
48 #define DEFAULT_SYSV_TIMEOUT_USEC (5*USEC_PER_MINUTE)
50 typedef enum RunlevelType {
59 const RunlevelType type;
61 /* Standard SysV runlevels for start-up */
62 { "rc1.d", SPECIAL_RESCUE_TARGET, RUNLEVEL_UP },
63 { "rc2.d", SPECIAL_RUNLEVEL2_TARGET, RUNLEVEL_UP },
64 { "rc3.d", SPECIAL_RUNLEVEL3_TARGET, RUNLEVEL_UP },
65 { "rc4.d", SPECIAL_RUNLEVEL4_TARGET, RUNLEVEL_UP },
66 { "rc5.d", SPECIAL_RUNLEVEL5_TARGET, RUNLEVEL_UP },
69 /* SUSE style boot.d */
70 { "boot.d", SPECIAL_SYSINIT_TARGET, RUNLEVEL_SYSINIT },
73 #if defined(TARGET_DEBIAN) || defined(TARGET_UBUNTU) || defined(TARGET_ANGSTROM)
74 /* Debian style rcS.d */
75 { "rcS.d", SPECIAL_SYSINIT_TARGET, RUNLEVEL_SYSINIT },
78 /* Standard SysV runlevels for shutdown */
79 { "rc0.d", SPECIAL_POWEROFF_TARGET, RUNLEVEL_DOWN },
80 { "rc6.d", SPECIAL_REBOOT_TARGET, RUNLEVEL_DOWN }
82 /* Note that the order here matters, as we read the
83 directories in this order, and we want to make sure that
84 sysv_start_priority is known when we first load the
85 unit. And that value we only know from S links. Hence
86 UP/SYSINIT must be read before DOWN */
89 #define RUNLEVELS_UP "12345"
90 /* #define RUNLEVELS_DOWN "06" */
91 #define RUNLEVELS_BOOT "bBsS"
94 static const UnitActiveState state_translation_table[_SERVICE_STATE_MAX] = {
95 [SERVICE_DEAD] = UNIT_INACTIVE,
96 [SERVICE_START_PRE] = UNIT_ACTIVATING,
97 [SERVICE_START] = UNIT_ACTIVATING,
98 [SERVICE_START_POST] = UNIT_ACTIVATING,
99 [SERVICE_RUNNING] = UNIT_ACTIVE,
100 [SERVICE_EXITED] = UNIT_ACTIVE,
101 [SERVICE_RELOAD] = UNIT_RELOADING,
102 [SERVICE_STOP] = UNIT_DEACTIVATING,
103 [SERVICE_STOP_SIGTERM] = UNIT_DEACTIVATING,
104 [SERVICE_STOP_SIGKILL] = UNIT_DEACTIVATING,
105 [SERVICE_STOP_POST] = UNIT_DEACTIVATING,
106 [SERVICE_FINAL_SIGTERM] = UNIT_DEACTIVATING,
107 [SERVICE_FINAL_SIGKILL] = UNIT_DEACTIVATING,
108 [SERVICE_FAILED] = UNIT_FAILED,
109 [SERVICE_AUTO_RESTART] = UNIT_ACTIVATING
112 /* For Type=idle we never want to delay any other jobs, hence we
113 * consider idle jobs active as soon as we start working on them */
114 static const UnitActiveState state_translation_table_idle[_SERVICE_STATE_MAX] = {
115 [SERVICE_DEAD] = UNIT_INACTIVE,
116 [SERVICE_START_PRE] = UNIT_ACTIVE,
117 [SERVICE_START] = UNIT_ACTIVE,
118 [SERVICE_START_POST] = UNIT_ACTIVE,
119 [SERVICE_RUNNING] = UNIT_ACTIVE,
120 [SERVICE_EXITED] = UNIT_ACTIVE,
121 [SERVICE_RELOAD] = UNIT_RELOADING,
122 [SERVICE_STOP] = UNIT_DEACTIVATING,
123 [SERVICE_STOP_SIGTERM] = UNIT_DEACTIVATING,
124 [SERVICE_STOP_SIGKILL] = UNIT_DEACTIVATING,
125 [SERVICE_STOP_POST] = UNIT_DEACTIVATING,
126 [SERVICE_FINAL_SIGTERM] = UNIT_DEACTIVATING,
127 [SERVICE_FINAL_SIGKILL] = UNIT_DEACTIVATING,
128 [SERVICE_FAILED] = UNIT_FAILED,
129 [SERVICE_AUTO_RESTART] = UNIT_ACTIVATING
132 static void service_init(Unit *u) {
133 Service *s = SERVICE(u);
136 assert(u->load_state == UNIT_STUB);
138 s->timeout_start_usec = DEFAULT_TIMEOUT_USEC;
139 s->timeout_stop_usec = DEFAULT_TIMEOUT_USEC;
140 s->restart_usec = DEFAULT_RESTART_USEC;
141 s->type = _SERVICE_TYPE_INVALID;
143 s->watchdog_watch.type = WATCH_INVALID;
145 s->timer_watch.type = WATCH_INVALID;
146 #ifdef HAVE_SYSV_COMPAT
147 s->sysv_start_priority = -1;
148 s->sysv_start_priority_from_rcnd = -1;
151 s->guess_main_pid = true;
153 exec_context_init(&s->exec_context);
154 kill_context_init(&s->kill_context);
156 RATELIMIT_INIT(s->start_limit, 10*USEC_PER_SEC, 5);
158 s->control_command_id = _SERVICE_EXEC_COMMAND_INVALID;
161 static void service_unwatch_control_pid(Service *s) {
164 if (s->control_pid <= 0)
167 unit_unwatch_pid(UNIT(s), s->control_pid);
171 static void service_unwatch_main_pid(Service *s) {
174 if (s->main_pid <= 0)
177 unit_unwatch_pid(UNIT(s), s->main_pid);
181 static void service_unwatch_pid_file(Service *s) {
182 if (!s->pid_file_pathspec)
185 log_debug("Stopping watch for %s's PID file %s", UNIT(s)->id, s->pid_file_pathspec->path);
186 path_spec_unwatch(s->pid_file_pathspec, UNIT(s));
187 path_spec_done(s->pid_file_pathspec);
188 free(s->pid_file_pathspec);
189 s->pid_file_pathspec = NULL;
192 static int service_set_main_pid(Service *s, pid_t pid) {
204 s->main_pid_known = true;
206 if (get_parent_of_pid(pid, &ppid) >= 0 && ppid != getpid()) {
207 log_warning("%s: Supervising process %lu which is not our child. We'll most likely not notice when it exits.",
208 UNIT(s)->id, (unsigned long) pid);
210 s->main_pid_alien = true;
212 s->main_pid_alien = false;
214 exec_status_start(&s->main_exec_status, pid);
219 static void service_close_socket_fd(Service *s) {
222 if (s->socket_fd < 0)
225 close_nointr_nofail(s->socket_fd);
229 static void service_connection_unref(Service *s) {
232 if (!UNIT_DEREF(s->accept_socket))
235 socket_connection_unref(SOCKET(UNIT_DEREF(s->accept_socket)));
236 unit_ref_unset(&s->accept_socket);
239 static void service_stop_watchdog(Service *s) {
242 unit_unwatch_timer(UNIT(s), &s->watchdog_watch);
243 s->watchdog_timestamp.realtime = 0;
244 s->watchdog_timestamp.monotonic = 0;
247 static void service_enter_dead(Service *s, ServiceResult f, bool allow_restart);
249 static void service_handle_watchdog(Service *s) {
255 if (s->watchdog_usec == 0)
258 offset = now(CLOCK_MONOTONIC) - s->watchdog_timestamp.monotonic;
259 if (offset >= s->watchdog_usec) {
260 log_error("%s watchdog timeout!", UNIT(s)->id);
261 service_enter_dead(s, SERVICE_FAILURE_WATCHDOG, true);
265 r = unit_watch_timer(UNIT(s), s->watchdog_usec - offset, &s->watchdog_watch);
267 log_warning("%s failed to install watchdog timer: %s", UNIT(s)->id, strerror(-r));
270 static void service_reset_watchdog(Service *s) {
273 dual_timestamp_get(&s->watchdog_timestamp);
274 service_handle_watchdog(s);
277 static void service_done(Unit *u) {
278 Service *s = SERVICE(u);
285 #ifdef HAVE_SYSV_COMPAT
286 free(s->sysv_runlevels);
287 s->sysv_runlevels = NULL;
290 free(s->status_text);
291 s->status_text = NULL;
293 exec_context_done(&s->exec_context);
294 exec_command_free_array(s->exec_command, _SERVICE_EXEC_COMMAND_MAX);
295 s->control_command = NULL;
296 s->main_command = NULL;
298 set_free(s->restart_ignore_status.code);
299 s->restart_ignore_status.code = NULL;
300 set_free(s->restart_ignore_status.signal);
301 s->restart_ignore_status.signal = NULL;
303 set_free(s->success_status.code);
304 s->success_status.code = NULL;
305 set_free(s->success_status.signal);
306 s->success_status.signal = NULL;
308 /* This will leak a process, but at least no memory or any of
310 service_unwatch_main_pid(s);
311 service_unwatch_control_pid(s);
312 service_unwatch_pid_file(s);
315 unit_unwatch_bus_name(u, s->bus_name);
320 service_close_socket_fd(s);
321 service_connection_unref(s);
323 unit_ref_unset(&s->accept_socket);
325 service_stop_watchdog(s);
327 unit_unwatch_timer(u, &s->timer_watch);
330 #ifdef HAVE_SYSV_COMPAT
331 static char *sysv_translate_name(const char *name) {
334 if (!(r = new(char, strlen(name) + sizeof(".service"))))
337 #if defined(TARGET_DEBIAN) || defined(TARGET_UBUNTU) || defined(TARGET_ANGSTROM)
338 if (endswith(name, ".sh"))
339 /* Drop Debian-style .sh suffix */
340 strcpy(stpcpy(r, name) - 3, ".service");
343 if (startswith(name, "boot."))
344 /* Drop SuSE-style boot. prefix */
345 strcpy(stpcpy(r, name + 5), ".service");
347 #ifdef TARGET_FRUGALWARE
348 if (startswith(name, "rc."))
349 /* Drop Frugalware-style rc. prefix */
350 strcpy(stpcpy(r, name + 3), ".service");
353 /* Normal init scripts */
354 strcpy(stpcpy(r, name), ".service");
359 static int sysv_translate_facility(const char *name, const char *filename, char **_r) {
361 /* We silently ignore the $ prefix here. According to the LSB
362 * spec it simply indicates whether something is a
363 * standardized name or a distribution-specific one. Since we
364 * just follow what already exists and do not introduce new
365 * uses or names we don't care who introduced a new name. */
367 static const char * const table[] = {
368 /* LSB defined facilities */
369 "local_fs", SPECIAL_LOCAL_FS_TARGET,
370 #if defined(TARGET_MANDRIVA) || defined(TARGET_MAGEIA)
372 /* Due to unfortunate name selection in Mandriva,
373 * $network is provided by network-up which is ordered
374 * after network which actually starts interfaces.
375 * To break the loop, just ignore it */
376 "network", SPECIAL_NETWORK_TARGET,
378 "named", SPECIAL_NSS_LOOKUP_TARGET,
379 "portmap", SPECIAL_RPCBIND_TARGET,
380 "remote_fs", SPECIAL_REMOTE_FS_TARGET,
381 "syslog", SPECIAL_SYSLOG_TARGET,
382 "time", SPECIAL_TIME_SYNC_TARGET,
384 /* common extensions */
385 "mail-transfer-agent", SPECIAL_MAIL_TRANSFER_AGENT_TARGET,
386 "x-display-manager", SPECIAL_DISPLAY_MANAGER_SERVICE,
389 #if defined(TARGET_DEBIAN) || defined(TARGET_UBUNTU) || defined(TARGET_ANGSTROM)
390 "mail-transport-agent", SPECIAL_MAIL_TRANSFER_AGENT_TARGET,
394 "MTA", SPECIAL_MAIL_TRANSFER_AGENT_TARGET,
395 "smtpdaemon", SPECIAL_MAIL_TRANSFER_AGENT_TARGET,
396 "httpd", SPECIAL_HTTP_DAEMON_TARGET,
400 "smtp", SPECIAL_MAIL_TRANSFER_AGENT_TARGET,
411 n = *name == '$' ? name + 1 : name;
413 for (i = 0; i < ELEMENTSOF(table); i += 2) {
415 if (!streq(table[i], n))
421 if (!(r = strdup(table[i+1])))
427 /* If we don't know this name, fallback heuristics to figure
428 * out whether something is a target or a service alias. */
431 if (!unit_prefix_is_valid(n))
434 /* Facilities starting with $ are most likely targets */
435 r = unit_name_build(n, NULL, ".target");
436 } else if (filename && streq(name, filename))
437 /* Names equaling the file name of the services are redundant */
440 /* Everything else we assume to be normal service names */
441 r = sysv_translate_name(n);
452 static int sysv_fix_order(Service *s) {
458 if (s->sysv_start_priority < 0)
461 /* For each pair of services where at least one lacks a LSB
462 * header, we use the start priority value to order things. */
464 LIST_FOREACH(units_by_type, other, UNIT(s)->manager->units_by_type[UNIT_SERVICE]) {
467 bool special_s, special_t;
474 if (UNIT(t)->load_state != UNIT_LOADED)
477 if (t->sysv_start_priority < 0)
480 /* If both units have modern headers we don't care
481 * about the priorities */
482 if ((UNIT(s)->fragment_path || s->sysv_has_lsb) &&
483 (UNIT(t)->fragment_path || t->sysv_has_lsb))
486 special_s = s->sysv_runlevels && !chars_intersect(RUNLEVELS_UP, s->sysv_runlevels);
487 special_t = t->sysv_runlevels && !chars_intersect(RUNLEVELS_UP, t->sysv_runlevels);
489 if (special_t && !special_s)
491 else if (special_s && !special_t)
493 else if (t->sysv_start_priority < s->sysv_start_priority)
495 else if (t->sysv_start_priority > s->sysv_start_priority)
500 /* FIXME: Maybe we should compare the name here lexicographically? */
502 if ((r = unit_add_dependency(UNIT(s), d, UNIT(t), true)) < 0)
509 static ExecCommand *exec_command_new(const char *path, const char *arg1) {
512 if (!(c = new0(ExecCommand, 1)))
515 if (!(c->path = strdup(path))) {
520 if (!(c->argv = strv_new(path, arg1, NULL))) {
529 static int sysv_exec_commands(Service *s, const bool supports_reload) {
534 assert(UNIT(s)->source_path);
536 c = exec_command_new(UNIT(s)->source_path, "start");
539 exec_command_append_list(s->exec_command+SERVICE_EXEC_START, c);
541 c = exec_command_new(UNIT(s)->source_path, "stop");
544 exec_command_append_list(s->exec_command+SERVICE_EXEC_STOP, c);
546 if (supports_reload) {
547 c = exec_command_new(UNIT(s)->source_path, "reload");
550 exec_command_append_list(s->exec_command+SERVICE_EXEC_RELOAD, c);
556 static bool usage_contains_reload(const char *line) {
557 return (strcasestr(line, "{reload|") ||
558 strcasestr(line, "{reload}") ||
559 strcasestr(line, "{reload\"") ||
560 strcasestr(line, "|reload|") ||
561 strcasestr(line, "|reload}") ||
562 strcasestr(line, "|reload\""));
565 static int service_load_sysv_path(Service *s, const char *path) {
577 char *short_description = NULL, *long_description = NULL, *chkconfig_description = NULL, *description;
579 bool supports_reload = false;
586 f = fopen(path, "re");
588 r = errno == ENOENT ? 0 : -errno;
592 if (fstat(fileno(f), &st) < 0) {
597 free(u->source_path);
598 u->source_path = strdup(path);
599 if (!u->source_path) {
603 u->source_mtime = timespec_load(&st.st_mtim);
605 if (null_or_empty(&st)) {
606 u->load_state = UNIT_MASKED;
614 char l[LINE_MAX], *t;
616 if (!fgets(l, sizeof(l), f)) {
621 log_error("Failed to read configuration file '%s': %s", path, strerror(-r));
629 /* Try to figure out whether this init script supports
630 * the reload operation. This heuristic looks for
631 * "Usage" lines which include the reload option. */
632 if ( state == USAGE_CONTINUATION ||
633 (state == NORMAL && strcasestr(t, "usage"))) {
634 if (usage_contains_reload(t)) {
635 supports_reload = true;
637 } else if (t[strlen(t)-1] == '\\')
638 state = USAGE_CONTINUATION;
646 if (state == NORMAL && streq(t, "### BEGIN INIT INFO")) {
648 s->sysv_has_lsb = true;
652 if ((state == LSB_DESCRIPTION || state == LSB) && streq(t, "### END INIT INFO")) {
658 t += strspn(t, WHITESPACE);
660 if (state == NORMAL) {
662 /* Try to parse Red Hat style chkconfig headers */
664 if (startswith_no_case(t, "chkconfig:")) {
666 char runlevels[16], *k;
670 if (sscanf(t+10, "%15s %i %*i",
672 &start_priority) != 2) {
674 log_warning("[%s:%u] Failed to parse chkconfig line. Ignoring.", path, line);
678 /* A start priority gathered from the
679 * symlink farms is preferred over the
680 * data from the LSB header. */
681 if (start_priority < 0 || start_priority > 99)
682 log_warning("[%s:%u] Start priority out of range. Ignoring.", path, line);
684 s->sysv_start_priority = start_priority;
686 char_array_0(runlevels);
687 k = delete_chars(runlevels, WHITESPACE "-");
692 if (!(d = strdup(k))) {
697 free(s->sysv_runlevels);
698 s->sysv_runlevels = d;
701 } else if (startswith_no_case(t, "description:")) {
703 size_t k = strlen(t);
707 if (t[k-1] == '\\') {
712 if ((j = strstrip(t+12)) && *j) {
713 if (!(d = strdup(j))) {
720 free(chkconfig_description);
721 chkconfig_description = d;
723 } else if (startswith_no_case(t, "pidfile:")) {
730 if (!path_is_absolute(fn)) {
731 log_warning("[%s:%u] PID file not absolute. Ignoring.", path, line);
735 if (!(fn = strdup(fn))) {
744 } else if (state == DESCRIPTION) {
746 /* Try to parse Red Hat style description
749 size_t k = strlen(t);
757 if ((j = strstrip(t)) && *j) {
760 if (chkconfig_description)
761 d = strjoin(chkconfig_description, " ", j, NULL);
770 free(chkconfig_description);
771 chkconfig_description = d;
774 } else if (state == LSB || state == LSB_DESCRIPTION) {
776 if (startswith_no_case(t, "Provides:")) {
782 FOREACH_WORD_QUOTED(w, z, t+9, i) {
785 if (!(n = strndup(w, z))) {
790 r = sysv_translate_facility(n, path_get_file_name(path), &m);
799 if (unit_name_to_type(m) == UNIT_SERVICE)
800 r = unit_add_name(u, m);
807 * indication that the
809 * now available. This
812 * targets do NOT pull
815 r = unit_add_two_dependencies_by_name(u, UNIT_BEFORE, UNIT_WANTS, m, NULL, true);
818 log_error("[%s:%u] Failed to add LSB Provides name %s, ignoring: %s", path, line, m, strerror(-r));
823 } else if (startswith_no_case(t, "Required-Start:") ||
824 startswith_no_case(t, "Should-Start:") ||
825 startswith_no_case(t, "X-Start-Before:") ||
826 startswith_no_case(t, "X-Start-After:")) {
832 FOREACH_WORD_QUOTED(w, z, strchr(t, ':')+1, i) {
835 if (!(n = strndup(w, z))) {
840 r = sysv_translate_facility(n, path_get_file_name(path), &m);
843 log_error("[%s:%u] Failed to translate LSB dependency %s, ignoring: %s", path, line, n, strerror(-r));
853 r = unit_add_dependency_by_name(u, startswith_no_case(t, "X-Start-Before:") ? UNIT_BEFORE : UNIT_AFTER, m, NULL, true);
856 log_error("[%s:%u] Failed to add dependency on %s, ignoring: %s", path, line, m, strerror(-r));
860 } else if (startswith_no_case(t, "Default-Start:")) {
865 k = delete_chars(t+14, WHITESPACE "-");
868 if (!(d = strdup(k))) {
873 free(s->sysv_runlevels);
874 s->sysv_runlevels = d;
877 } else if (startswith_no_case(t, "Description:")) {
880 state = LSB_DESCRIPTION;
882 if ((j = strstrip(t+12)) && *j) {
883 if (!(d = strdup(j))) {
890 free(long_description);
891 long_description = d;
893 } else if (startswith_no_case(t, "Short-Description:")) {
898 if ((j = strstrip(t+18)) && *j) {
899 if (!(d = strdup(j))) {
906 free(short_description);
907 short_description = d;
909 } else if (state == LSB_DESCRIPTION) {
911 if (startswith(l, "#\t") || startswith(l, "# ")) {
914 if ((j = strstrip(t)) && *j) {
917 if (long_description)
918 d = strjoin(long_description, " ", t, NULL);
927 free(long_description);
928 long_description = d;
937 if ((r = sysv_exec_commands(s, supports_reload)) < 0)
939 if (s->sysv_runlevels &&
940 chars_intersect(RUNLEVELS_BOOT, s->sysv_runlevels) &&
941 chars_intersect(RUNLEVELS_UP, s->sysv_runlevels)) {
942 /* Service has both boot and "up" runlevels
943 configured. Kill the "up" ones. */
944 delete_chars(s->sysv_runlevels, RUNLEVELS_UP);
947 if (s->sysv_runlevels && !chars_intersect(RUNLEVELS_UP, s->sysv_runlevels)) {
948 /* If there a runlevels configured for this service
949 * but none of the standard ones, then we assume this
950 * is some special kind of service (which might be
951 * needed for early boot) and don't create any links
954 UNIT(s)->default_dependencies = false;
956 /* Don't timeout special services during boot (like fsck) */
957 s->timeout_start_usec = 0;
958 s->timeout_stop_usec = 0;
960 s->timeout_start_usec = DEFAULT_SYSV_TIMEOUT_USEC;
961 s->timeout_stop_usec = DEFAULT_SYSV_TIMEOUT_USEC;
964 /* Special setting for all SysV services */
965 s->type = SERVICE_FORKING;
966 s->remain_after_exit = !s->pid_file;
967 s->guess_main_pid = false;
968 s->restart = SERVICE_RESTART_NO;
969 s->exec_context.ignore_sigpipe = false;
970 s->kill_context.kill_mode = KILL_PROCESS;
972 /* We use the long description only if
973 * no short description is set. */
975 if (short_description)
976 description = short_description;
977 else if (chkconfig_description)
978 description = chkconfig_description;
979 else if (long_description)
980 description = long_description;
987 if (!(d = strappend(s->sysv_has_lsb ? "LSB: " : "SYSV: ", description))) {
995 /* The priority that has been set in /etc/rcN.d/ hierarchies
996 * takes precedence over what is stored as default in the LSB
998 if (s->sysv_start_priority_from_rcnd >= 0)
999 s->sysv_start_priority = s->sysv_start_priority_from_rcnd;
1001 u->load_state = UNIT_LOADED;
1009 free(short_description);
1010 free(long_description);
1011 free(chkconfig_description);
1016 static int service_load_sysv_name(Service *s, const char *name) {
1022 /* For SysV services we strip the boot.*, rc.* and *.sh
1023 * prefixes/suffixes. */
1024 #if defined(TARGET_DEBIAN) || defined(TARGET_UBUNTU) || defined(TARGET_ANGSTROM)
1025 if (endswith(name, ".sh.service"))
1030 if (startswith(name, "boot."))
1034 #ifdef TARGET_FRUGALWARE
1035 if (startswith(name, "rc."))
1039 STRV_FOREACH(p, UNIT(s)->manager->lookup_paths.sysvinit_path) {
1043 path = strjoin(*p, "/", name, NULL);
1047 assert(endswith(path, ".service"));
1048 path[strlen(path)-8] = 0;
1050 r = service_load_sysv_path(s, path);
1052 #if defined(TARGET_DEBIAN) || defined(TARGET_UBUNTU) || defined(TARGET_ANGSTROM)
1053 if (r >= 0 && UNIT(s)->load_state == UNIT_STUB) {
1054 /* Try Debian style *.sh source'able init scripts */
1055 strcat(path, ".sh");
1056 r = service_load_sysv_path(s, path);
1062 if (r >= 0 && UNIT(s)->load_state == UNIT_STUB) {
1063 /* Try SUSE style boot.* init scripts */
1065 path = strjoin(*p, "/boot.", name, NULL);
1069 /* Drop .service suffix */
1070 path[strlen(path)-8] = 0;
1071 r = service_load_sysv_path(s, path);
1076 #ifdef TARGET_FRUGALWARE
1077 if (r >= 0 && UNIT(s)->load_state == UNIT_STUB) {
1078 /* Try Frugalware style rc.* init scripts */
1080 path = strjoin(*p, "/rc.", name, NULL);
1084 /* Drop .service suffix */
1085 path[strlen(path)-8] = 0;
1086 r = service_load_sysv_path(s, path);
1094 if ((UNIT(s)->load_state != UNIT_STUB))
1101 static int service_load_sysv(Service *s) {
1108 /* Load service data from SysV init scripts, preferably with
1109 * LSB headers ... */
1111 if (strv_isempty(UNIT(s)->manager->lookup_paths.sysvinit_path))
1114 if ((t = UNIT(s)->id))
1115 if ((r = service_load_sysv_name(s, t)) < 0)
1118 if (UNIT(s)->load_state == UNIT_STUB)
1119 SET_FOREACH(t, UNIT(s)->names, i) {
1120 if (t == UNIT(s)->id)
1123 if ((r = service_load_sysv_name(s, t)) < 0)
1126 if (UNIT(s)->load_state != UNIT_STUB)
1134 static int fsck_fix_order(Service *s) {
1140 if (s->fsck_passno <= 0)
1143 /* For each pair of services where both have an fsck priority
1144 * we order things based on it. */
1146 LIST_FOREACH(units_by_type, other, UNIT(s)->manager->units_by_type[UNIT_SERVICE]) {
1155 if (UNIT(t)->load_state != UNIT_LOADED)
1158 if (t->fsck_passno <= 0)
1161 if (t->fsck_passno < s->fsck_passno)
1163 else if (t->fsck_passno > s->fsck_passno)
1168 if ((r = unit_add_dependency(UNIT(s), d, UNIT(t), true)) < 0)
1175 static int service_verify(Service *s) {
1178 if (UNIT(s)->load_state != UNIT_LOADED)
1181 if (!s->exec_command[SERVICE_EXEC_START]) {
1182 log_error("%s lacks ExecStart setting. Refusing.", UNIT(s)->id);
1186 if (s->type != SERVICE_ONESHOT &&
1187 s->exec_command[SERVICE_EXEC_START]->command_next) {
1188 log_error("%s has more than one ExecStart setting, which is only allowed for Type=oneshot services. Refusing.", UNIT(s)->id);
1192 if (s->type == SERVICE_DBUS && !s->bus_name) {
1193 log_error("%s is of type D-Bus but no D-Bus service name has been specified. Refusing.", UNIT(s)->id);
1197 if (s->bus_name && s->type != SERVICE_DBUS)
1198 log_warning("%s has a D-Bus service name specified, but is not of type dbus. Ignoring.", UNIT(s)->id);
1200 if (s->exec_context.pam_name && s->kill_context.kill_mode != KILL_CONTROL_GROUP) {
1201 log_error("%s has PAM enabled. Kill mode must be set to 'control-group'. Refusing.", UNIT(s)->id);
1208 static int service_add_default_dependencies(Service *s) {
1213 /* Add a number of automatic dependencies useful for the
1214 * majority of services. */
1216 /* First, pull in base system */
1217 if (UNIT(s)->manager->running_as == SYSTEMD_SYSTEM) {
1219 if ((r = unit_add_two_dependencies_by_name(UNIT(s), UNIT_AFTER, UNIT_REQUIRES, SPECIAL_BASIC_TARGET, NULL, true)) < 0)
1222 } else if (UNIT(s)->manager->running_as == SYSTEMD_USER) {
1224 if ((r = unit_add_two_dependencies_by_name(UNIT(s), UNIT_AFTER, UNIT_REQUIRES, SPECIAL_SOCKETS_TARGET, NULL, true)) < 0)
1228 /* Second, activate normal shutdown */
1229 return unit_add_two_dependencies_by_name(UNIT(s), UNIT_BEFORE, UNIT_CONFLICTS, SPECIAL_SHUTDOWN_TARGET, NULL, true);
1232 static void service_fix_output(Service *s) {
1235 /* If nothing has been explicitly configured, patch default
1236 * output in. If input is socket/tty we avoid this however,
1237 * since in that case we want output to default to the same
1238 * place as we read input from. */
1240 if (s->exec_context.std_error == EXEC_OUTPUT_INHERIT &&
1241 s->exec_context.std_output == EXEC_OUTPUT_INHERIT &&
1242 s->exec_context.std_input == EXEC_INPUT_NULL)
1243 s->exec_context.std_error = UNIT(s)->manager->default_std_error;
1245 if (s->exec_context.std_output == EXEC_OUTPUT_INHERIT &&
1246 s->exec_context.std_input == EXEC_INPUT_NULL)
1247 s->exec_context.std_output = UNIT(s)->manager->default_std_output;
1250 static int service_load(Unit *u) {
1252 Service *s = SERVICE(u);
1256 /* Load a .service file */
1257 if ((r = unit_load_fragment(u)) < 0)
1260 #ifdef HAVE_SYSV_COMPAT
1261 /* Load a classic init script as a fallback, if we couldn't find anything */
1262 if (u->load_state == UNIT_STUB)
1263 if ((r = service_load_sysv(s)) < 0)
1267 /* Still nothing found? Then let's give up */
1268 if (u->load_state == UNIT_STUB)
1271 /* We were able to load something, then let's add in the
1272 * dropin directories. */
1273 if ((r = unit_load_dropin(unit_follow_merge(u))) < 0)
1276 /* This is a new unit? Then let's add in some extras */
1277 if (u->load_state == UNIT_LOADED) {
1278 if (s->type == _SERVICE_TYPE_INVALID)
1279 s->type = s->bus_name ? SERVICE_DBUS : SERVICE_SIMPLE;
1281 /* Oneshot services have disabled start timeout by default */
1282 if (s->type == SERVICE_ONESHOT && !s->start_timeout_defined)
1283 s->timeout_start_usec = 0;
1285 service_fix_output(s);
1287 if ((r = unit_add_exec_dependencies(u, &s->exec_context)) < 0)
1290 if ((r = unit_add_default_cgroups(u)) < 0)
1293 #ifdef HAVE_SYSV_COMPAT
1294 if ((r = sysv_fix_order(s)) < 0)
1298 if ((r = fsck_fix_order(s)) < 0)
1302 if ((r = unit_watch_bus_name(u, s->bus_name)) < 0)
1305 if (s->type == SERVICE_NOTIFY && s->notify_access == NOTIFY_NONE)
1306 s->notify_access = NOTIFY_MAIN;
1308 if (s->watchdog_usec > 0 && s->notify_access == NOTIFY_NONE)
1309 s->notify_access = NOTIFY_MAIN;
1311 if (s->type == SERVICE_DBUS || s->bus_name)
1312 if ((r = unit_add_two_dependencies_by_name(u, UNIT_AFTER, UNIT_REQUIRES, SPECIAL_DBUS_SOCKET, NULL, true)) < 0)
1315 if (UNIT(s)->default_dependencies)
1316 if ((r = service_add_default_dependencies(s)) < 0)
1319 r = unit_exec_context_defaults(u, &s->exec_context);
1324 return service_verify(s);
1327 static void service_dump(Unit *u, FILE *f, const char *prefix) {
1329 ServiceExecCommand c;
1330 Service *s = SERVICE(u);
1331 const char *prefix2;
1336 p2 = strappend(prefix, "\t");
1337 prefix2 = p2 ? p2 : prefix;
1340 "%sService State: %s\n"
1342 "%sReload Result: %s\n"
1343 "%sPermissionsStartOnly: %s\n"
1344 "%sRootDirectoryStartOnly: %s\n"
1345 "%sRemainAfterExit: %s\n"
1346 "%sGuessMainPID: %s\n"
1349 "%sNotifyAccess: %s\n",
1350 prefix, service_state_to_string(s->state),
1351 prefix, service_result_to_string(s->result),
1352 prefix, service_result_to_string(s->reload_result),
1353 prefix, yes_no(s->permissions_start_only),
1354 prefix, yes_no(s->root_directory_start_only),
1355 prefix, yes_no(s->remain_after_exit),
1356 prefix, yes_no(s->guess_main_pid),
1357 prefix, service_type_to_string(s->type),
1358 prefix, service_restart_to_string(s->restart),
1359 prefix, notify_access_to_string(s->notify_access));
1361 if (s->control_pid > 0)
1363 "%sControl PID: %lu\n",
1364 prefix, (unsigned long) s->control_pid);
1366 if (s->main_pid > 0)
1369 "%sMain PID Known: %s\n"
1370 "%sMain PID Alien: %s\n",
1371 prefix, (unsigned long) s->main_pid,
1372 prefix, yes_no(s->main_pid_known),
1373 prefix, yes_no(s->main_pid_alien));
1378 prefix, s->pid_file);
1383 "%sBus Name Good: %s\n",
1384 prefix, s->bus_name,
1385 prefix, yes_no(s->bus_name_good));
1387 kill_context_dump(&s->kill_context, f, prefix);
1388 exec_context_dump(&s->exec_context, f, prefix);
1390 for (c = 0; c < _SERVICE_EXEC_COMMAND_MAX; c++) {
1392 if (!s->exec_command[c])
1395 fprintf(f, "%s-> %s:\n",
1396 prefix, service_exec_command_to_string(c));
1398 exec_command_dump_list(s->exec_command[c], f, prefix2);
1401 #ifdef HAVE_SYSV_COMPAT
1404 "%sSysV Init Script has LSB Header: %s\n"
1405 "%sSysVEnabled: %s\n",
1406 prefix, yes_no(s->sysv_has_lsb),
1407 prefix, yes_no(s->sysv_enabled));
1409 if (s->sysv_start_priority >= 0)
1411 "%sSysVStartPriority: %i\n",
1412 prefix, s->sysv_start_priority);
1414 if (s->sysv_runlevels)
1415 fprintf(f, "%sSysVRunLevels: %s\n",
1416 prefix, s->sysv_runlevels);
1419 if (s->fsck_passno > 0)
1421 "%sFsckPassNo: %i\n",
1422 prefix, s->fsck_passno);
1425 fprintf(f, "%sStatus Text: %s\n",
1426 prefix, s->status_text);
1431 static int service_load_pid_file(Service *s, bool may_warn) {
1441 if ((r = read_one_line_file(s->pid_file, &k)) < 0) {
1443 log_info("PID file %s not readable (yet?) after %s.",
1444 s->pid_file, service_state_to_string(s->state));
1448 r = parse_pid(k, &pid);
1454 if (kill(pid, 0) < 0 && errno != EPERM) {
1456 log_info("PID %lu read from file %s does not exist.",
1457 (unsigned long) pid, s->pid_file);
1461 if (s->main_pid_known) {
1462 if (pid == s->main_pid)
1465 log_debug("Main PID changing: %lu -> %lu",
1466 (unsigned long) s->main_pid, (unsigned long) pid);
1467 service_unwatch_main_pid(s);
1468 s->main_pid_known = false;
1470 log_debug("Main PID loaded: %lu", (unsigned long) pid);
1472 if ((r = service_set_main_pid(s, pid)) < 0)
1475 if ((r = unit_watch_pid(UNIT(s), pid)) < 0)
1476 /* FIXME: we need to do something here */
1482 static int service_search_main_pid(Service *s) {
1488 /* If we know it anyway, don't ever fallback to unreliable
1490 if (s->main_pid_known)
1493 if (!s->guess_main_pid)
1496 assert(s->main_pid <= 0);
1498 if ((pid = cgroup_bonding_search_main_pid_list(UNIT(s)->cgroup_bondings)) <= 0)
1501 log_debug("Main PID guessed: %lu", (unsigned long) pid);
1502 if ((r = service_set_main_pid(s, pid)) < 0)
1505 if ((r = unit_watch_pid(UNIT(s), pid)) < 0)
1506 /* FIXME: we need to do something here */
1512 static void service_notify_sockets_dead(Service *s, bool failed_permanent) {
1518 /* Notifies all our sockets when we die */
1520 if (s->socket_fd >= 0)
1523 SET_FOREACH(u, UNIT(s)->dependencies[UNIT_TRIGGERED_BY], i)
1524 if (u->type == UNIT_SOCKET)
1525 socket_notify_service_dead(SOCKET(u), failed_permanent);
1530 static void service_set_state(Service *s, ServiceState state) {
1531 ServiceState old_state;
1532 const UnitActiveState *table;
1535 table = s->type == SERVICE_IDLE ? state_translation_table_idle : state_translation_table;
1537 old_state = s->state;
1540 service_unwatch_pid_file(s);
1542 if (state != SERVICE_START_PRE &&
1543 state != SERVICE_START &&
1544 state != SERVICE_START_POST &&
1545 state != SERVICE_RELOAD &&
1546 state != SERVICE_STOP &&
1547 state != SERVICE_STOP_SIGTERM &&
1548 state != SERVICE_STOP_SIGKILL &&
1549 state != SERVICE_STOP_POST &&
1550 state != SERVICE_FINAL_SIGTERM &&
1551 state != SERVICE_FINAL_SIGKILL &&
1552 state != SERVICE_AUTO_RESTART)
1553 unit_unwatch_timer(UNIT(s), &s->timer_watch);
1555 if (state != SERVICE_START &&
1556 state != SERVICE_START_POST &&
1557 state != SERVICE_RUNNING &&
1558 state != SERVICE_RELOAD &&
1559 state != SERVICE_STOP &&
1560 state != SERVICE_STOP_SIGTERM &&
1561 state != SERVICE_STOP_SIGKILL) {
1562 service_unwatch_main_pid(s);
1563 s->main_command = NULL;
1566 if (state != SERVICE_START_PRE &&
1567 state != SERVICE_START &&
1568 state != SERVICE_START_POST &&
1569 state != SERVICE_RELOAD &&
1570 state != SERVICE_STOP &&
1571 state != SERVICE_STOP_SIGTERM &&
1572 state != SERVICE_STOP_SIGKILL &&
1573 state != SERVICE_STOP_POST &&
1574 state != SERVICE_FINAL_SIGTERM &&
1575 state != SERVICE_FINAL_SIGKILL) {
1576 service_unwatch_control_pid(s);
1577 s->control_command = NULL;
1578 s->control_command_id = _SERVICE_EXEC_COMMAND_INVALID;
1581 if (state == SERVICE_DEAD ||
1582 state == SERVICE_STOP ||
1583 state == SERVICE_STOP_SIGTERM ||
1584 state == SERVICE_STOP_SIGKILL ||
1585 state == SERVICE_STOP_POST ||
1586 state == SERVICE_FINAL_SIGTERM ||
1587 state == SERVICE_FINAL_SIGKILL ||
1588 state == SERVICE_FAILED ||
1589 state == SERVICE_AUTO_RESTART)
1590 service_notify_sockets_dead(s, false);
1592 if (state != SERVICE_START_PRE &&
1593 state != SERVICE_START &&
1594 state != SERVICE_START_POST &&
1595 state != SERVICE_RUNNING &&
1596 state != SERVICE_RELOAD &&
1597 state != SERVICE_STOP &&
1598 state != SERVICE_STOP_SIGTERM &&
1599 state != SERVICE_STOP_SIGKILL &&
1600 state != SERVICE_STOP_POST &&
1601 state != SERVICE_FINAL_SIGTERM &&
1602 state != SERVICE_FINAL_SIGKILL &&
1603 !(state == SERVICE_DEAD && UNIT(s)->job)) {
1604 service_close_socket_fd(s);
1605 service_connection_unref(s);
1608 if (state == SERVICE_STOP)
1609 service_stop_watchdog(s);
1611 /* For the inactive states unit_notify() will trim the cgroup,
1612 * but for exit we have to do that ourselves... */
1613 if (state == SERVICE_EXITED && UNIT(s)->manager->n_reloading <= 0)
1614 cgroup_bonding_trim_list(UNIT(s)->cgroup_bondings, true);
1616 if (old_state != state)
1617 log_struct(LOG_DEBUG,
1618 "UNIT=%s", UNIT(s)->id,
1619 "MESSAGE=%s changed %s -> %s", UNIT(s)->id,
1620 service_state_to_string(old_state),
1621 service_state_to_string(state),
1624 unit_notify(UNIT(s), table[old_state], table[state], s->reload_result == SERVICE_SUCCESS);
1625 s->reload_result = SERVICE_SUCCESS;
1628 static int service_coldplug(Unit *u) {
1629 Service *s = SERVICE(u);
1633 assert(s->state == SERVICE_DEAD);
1635 if (s->deserialized_state != s->state) {
1637 if (s->deserialized_state == SERVICE_START_PRE ||
1638 s->deserialized_state == SERVICE_START ||
1639 s->deserialized_state == SERVICE_START_POST ||
1640 s->deserialized_state == SERVICE_RELOAD ||
1641 s->deserialized_state == SERVICE_STOP ||
1642 s->deserialized_state == SERVICE_STOP_SIGTERM ||
1643 s->deserialized_state == SERVICE_STOP_SIGKILL ||
1644 s->deserialized_state == SERVICE_STOP_POST ||
1645 s->deserialized_state == SERVICE_FINAL_SIGTERM ||
1646 s->deserialized_state == SERVICE_FINAL_SIGKILL ||
1647 s->deserialized_state == SERVICE_AUTO_RESTART) {
1648 if (s->deserialized_state == SERVICE_AUTO_RESTART || s->timeout_start_usec > 0) {
1651 k = s->deserialized_state == SERVICE_AUTO_RESTART ? s->restart_usec : s->timeout_start_usec;
1653 if ((r = unit_watch_timer(UNIT(s), k, &s->timer_watch)) < 0)
1658 if ((s->deserialized_state == SERVICE_START &&
1659 (s->type == SERVICE_FORKING ||
1660 s->type == SERVICE_DBUS ||
1661 s->type == SERVICE_ONESHOT ||
1662 s->type == SERVICE_NOTIFY)) ||
1663 s->deserialized_state == SERVICE_START_POST ||
1664 s->deserialized_state == SERVICE_RUNNING ||
1665 s->deserialized_state == SERVICE_RELOAD ||
1666 s->deserialized_state == SERVICE_STOP ||
1667 s->deserialized_state == SERVICE_STOP_SIGTERM ||
1668 s->deserialized_state == SERVICE_STOP_SIGKILL)
1669 if (s->main_pid > 0)
1670 if ((r = unit_watch_pid(UNIT(s), s->main_pid)) < 0)
1673 if (s->deserialized_state == SERVICE_START_PRE ||
1674 s->deserialized_state == SERVICE_START ||
1675 s->deserialized_state == SERVICE_START_POST ||
1676 s->deserialized_state == SERVICE_RELOAD ||
1677 s->deserialized_state == SERVICE_STOP ||
1678 s->deserialized_state == SERVICE_STOP_SIGTERM ||
1679 s->deserialized_state == SERVICE_STOP_SIGKILL ||
1680 s->deserialized_state == SERVICE_STOP_POST ||
1681 s->deserialized_state == SERVICE_FINAL_SIGTERM ||
1682 s->deserialized_state == SERVICE_FINAL_SIGKILL)
1683 if (s->control_pid > 0)
1684 if ((r = unit_watch_pid(UNIT(s), s->control_pid)) < 0)
1687 if (s->deserialized_state == SERVICE_START_POST ||
1688 s->deserialized_state == SERVICE_RUNNING)
1689 service_handle_watchdog(s);
1691 service_set_state(s, s->deserialized_state);
1696 static int service_collect_fds(Service *s, int **fds, unsigned *n_fds) {
1700 unsigned rn_fds = 0;
1707 if (s->socket_fd >= 0)
1710 SET_FOREACH(u, UNIT(s)->dependencies[UNIT_TRIGGERED_BY], i) {
1715 if (u->type != UNIT_SOCKET)
1720 if ((r = socket_collect_fds(sock, &cfds, &cn_fds)) < 0)
1732 if (!(t = new(int, rn_fds+cn_fds))) {
1738 memcpy(t, rfds, rn_fds * sizeof(int));
1739 memcpy(t+rn_fds, cfds, cn_fds * sizeof(int));
1744 rn_fds = rn_fds+cn_fds;
1759 static int service_spawn(
1764 bool apply_permissions,
1766 bool apply_tty_stdin,
1767 bool set_notify_socket,
1773 int *fds = NULL, *fdsbuf = NULL;
1774 unsigned n_fds = 0, n_env = 0;
1775 char **argv = NULL, **final_env = NULL, **our_env = NULL;
1782 s->exec_context.std_input == EXEC_INPUT_SOCKET ||
1783 s->exec_context.std_output == EXEC_OUTPUT_SOCKET ||
1784 s->exec_context.std_error == EXEC_OUTPUT_SOCKET) {
1786 if (s->socket_fd >= 0) {
1787 fds = &s->socket_fd;
1790 if ((r = service_collect_fds(s, &fdsbuf, &n_fds)) < 0)
1797 if (timeout && s->timeout_start_usec) {
1798 r = unit_watch_timer(UNIT(s), s->timeout_start_usec, &s->timer_watch);
1802 unit_unwatch_timer(UNIT(s), &s->timer_watch);
1804 if (!(argv = unit_full_printf_strv(UNIT(s), c->argv))) {
1809 our_env = new0(char*, 5);
1815 if (set_notify_socket)
1816 if (asprintf(our_env + n_env++, "NOTIFY_SOCKET=%s", UNIT(s)->manager->notify_socket) < 0) {
1821 if (s->main_pid > 0)
1822 if (asprintf(our_env + n_env++, "MAINPID=%lu", (unsigned long) s->main_pid) < 0) {
1827 if (s->watchdog_usec > 0)
1828 if (asprintf(our_env + n_env++, "WATCHDOG_USEC=%llu", (unsigned long long) s->watchdog_usec) < 0) {
1833 if (s->meta.manager->running_as != SYSTEMD_SYSTEM)
1834 if (asprintf(our_env + n_env++, "MANAGERPID=%lu", (unsigned long) getpid()) < 0) {
1839 final_env = strv_env_merge(2, UNIT(s)->manager->environment, our_env, NULL);
1853 UNIT(s)->manager->confirm_spawn,
1854 UNIT(s)->cgroup_bondings,
1855 UNIT(s)->cgroup_attributes,
1856 is_control ? "control" : NULL,
1858 s->type == SERVICE_IDLE ? UNIT(s)->manager->idle_pipe : NULL,
1864 if ((r = unit_watch_pid(UNIT(s), pid)) < 0)
1865 /* FIXME: we need to do something here */
1871 strv_free(final_env);
1881 strv_free(final_env);
1884 unit_unwatch_timer(UNIT(s), &s->timer_watch);
1889 static int main_pid_good(Service *s) {
1892 /* Returns 0 if the pid is dead, 1 if it is good, -1 if we
1895 /* If we know the pid file, then lets just check if it is
1897 if (s->main_pid_known) {
1899 /* If it's an alien child let's check if it is still
1901 if (s->main_pid_alien)
1902 return kill(s->main_pid, 0) >= 0 || errno != ESRCH;
1904 /* .. otherwise assume we'll get a SIGCHLD for it,
1905 * which we really should wait for to collect exit
1906 * status and code */
1907 return s->main_pid > 0;
1910 /* We don't know the pid */
1914 static int control_pid_good(Service *s) {
1917 return s->control_pid > 0;
1920 static int cgroup_good(Service *s) {
1925 if ((r = cgroup_bonding_is_empty_list(UNIT(s)->cgroup_bondings)) < 0)
1931 static void service_enter_dead(Service *s, ServiceResult f, bool allow_restart) {
1935 if (f != SERVICE_SUCCESS)
1938 service_set_state(s, s->result != SERVICE_SUCCESS ? SERVICE_FAILED : SERVICE_DEAD);
1940 if (allow_restart &&
1941 !s->forbid_restart &&
1942 (s->restart == SERVICE_RESTART_ALWAYS ||
1943 (s->restart == SERVICE_RESTART_ON_SUCCESS && s->result == SERVICE_SUCCESS) ||
1944 (s->restart == SERVICE_RESTART_ON_FAILURE && s->result != SERVICE_SUCCESS) ||
1945 (s->restart == SERVICE_RESTART_ON_ABORT && (s->result == SERVICE_FAILURE_SIGNAL ||
1946 s->result == SERVICE_FAILURE_CORE_DUMP))) &&
1947 (s->result != SERVICE_FAILURE_EXIT_CODE ||
1948 !set_contains(s->restart_ignore_status.code, INT_TO_PTR(s->main_exec_status.status))) &&
1949 (s->result != SERVICE_FAILURE_SIGNAL ||
1950 !set_contains(s->restart_ignore_status.signal, INT_TO_PTR(s->main_exec_status.status)))
1953 r = unit_watch_timer(UNIT(s), s->restart_usec, &s->timer_watch);
1957 service_set_state(s, SERVICE_AUTO_RESTART);
1960 s->forbid_restart = false;
1965 log_warning("%s failed to run install restart timer: %s", UNIT(s)->id, strerror(-r));
1966 service_enter_dead(s, SERVICE_FAILURE_RESOURCES, false);
1969 static void service_enter_signal(Service *s, ServiceState state, ServiceResult f);
1971 static void service_enter_stop_post(Service *s, ServiceResult f) {
1975 if (f != SERVICE_SUCCESS)
1978 service_unwatch_control_pid(s);
1980 if ((s->control_command = s->exec_command[SERVICE_EXEC_STOP_POST])) {
1981 s->control_command_id = SERVICE_EXEC_STOP_POST;
1983 r = service_spawn(s,
1987 !s->permissions_start_only,
1988 !s->root_directory_start_only,
1997 service_set_state(s, SERVICE_STOP_POST);
1999 service_enter_signal(s, SERVICE_FINAL_SIGTERM, SERVICE_SUCCESS);
2004 log_warning("%s failed to run 'stop-post' task: %s", UNIT(s)->id, strerror(-r));
2005 service_enter_signal(s, SERVICE_FINAL_SIGTERM, SERVICE_FAILURE_RESOURCES);
2008 static void service_enter_signal(Service *s, ServiceState state, ServiceResult f) {
2010 Set *pid_set = NULL;
2011 bool wait_for_exit = false;
2015 if (f != SERVICE_SUCCESS)
2018 if (s->kill_context.kill_mode != KILL_NONE) {
2019 int sig = (state == SERVICE_STOP_SIGTERM || state == SERVICE_FINAL_SIGTERM) ? s->kill_context.kill_signal : SIGKILL;
2021 if (s->main_pid > 0) {
2022 if (kill_and_sigcont(s->main_pid, sig) < 0 && errno != ESRCH)
2023 log_warning("Failed to kill main process %li: %m", (long) s->main_pid);
2025 wait_for_exit = !s->main_pid_alien;
2028 if (s->control_pid > 0) {
2029 if (kill_and_sigcont(s->control_pid, sig) < 0 && errno != ESRCH)
2030 log_warning("Failed to kill control process %li: %m", (long) s->control_pid);
2032 wait_for_exit = true;
2035 if (s->kill_context.kill_mode == KILL_CONTROL_GROUP) {
2037 pid_set = set_new(trivial_hash_func, trivial_compare_func);
2043 /* Exclude the main/control pids from being killed via the cgroup */
2044 if (s->main_pid > 0)
2045 if ((r = set_put(pid_set, LONG_TO_PTR(s->main_pid))) < 0)
2048 if (s->control_pid > 0)
2049 if ((r = set_put(pid_set, LONG_TO_PTR(s->control_pid))) < 0)
2052 r = cgroup_bonding_kill_list(UNIT(s)->cgroup_bondings, sig, true, false, pid_set, NULL);
2054 if (r != -EAGAIN && r != -ESRCH && r != -ENOENT)
2055 log_warning("Failed to kill control group: %s", strerror(-r));
2057 wait_for_exit = true;
2064 if (wait_for_exit) {
2065 if (s->timeout_stop_usec > 0) {
2066 r = unit_watch_timer(UNIT(s), s->timeout_stop_usec, &s->timer_watch);
2071 service_set_state(s, state);
2072 } else if (state == SERVICE_STOP_SIGTERM || state == SERVICE_STOP_SIGKILL)
2073 service_enter_stop_post(s, SERVICE_SUCCESS);
2075 service_enter_dead(s, SERVICE_SUCCESS, true);
2080 log_warning("%s failed to kill processes: %s", UNIT(s)->id, strerror(-r));
2082 if (state == SERVICE_STOP_SIGTERM || state == SERVICE_STOP_SIGKILL)
2083 service_enter_stop_post(s, SERVICE_FAILURE_RESOURCES);
2085 service_enter_dead(s, SERVICE_FAILURE_RESOURCES, true);
2091 static void service_enter_stop(Service *s, ServiceResult f) {
2096 if (f != SERVICE_SUCCESS)
2099 service_unwatch_control_pid(s);
2101 if ((s->control_command = s->exec_command[SERVICE_EXEC_STOP])) {
2102 s->control_command_id = SERVICE_EXEC_STOP;
2104 r = service_spawn(s,
2108 !s->permissions_start_only,
2109 !s->root_directory_start_only,
2117 service_set_state(s, SERVICE_STOP);
2119 service_enter_signal(s, SERVICE_STOP_SIGTERM, SERVICE_SUCCESS);
2124 log_warning("%s failed to run 'stop' task: %s", UNIT(s)->id, strerror(-r));
2125 service_enter_signal(s, SERVICE_STOP_SIGTERM, SERVICE_FAILURE_RESOURCES);
2128 static void service_enter_running(Service *s, ServiceResult f) {
2129 int main_pid_ok, cgroup_ok;
2132 if (f != SERVICE_SUCCESS)
2135 main_pid_ok = main_pid_good(s);
2136 cgroup_ok = cgroup_good(s);
2138 if ((main_pid_ok > 0 || (main_pid_ok < 0 && cgroup_ok != 0)) &&
2139 (s->bus_name_good || s->type != SERVICE_DBUS))
2140 service_set_state(s, SERVICE_RUNNING);
2141 else if (s->remain_after_exit)
2142 service_set_state(s, SERVICE_EXITED);
2144 service_enter_stop(s, SERVICE_SUCCESS);
2147 static void service_enter_start_post(Service *s) {
2151 service_unwatch_control_pid(s);
2153 if (s->watchdog_usec > 0)
2154 service_reset_watchdog(s);
2156 if ((s->control_command = s->exec_command[SERVICE_EXEC_START_POST])) {
2157 s->control_command_id = SERVICE_EXEC_START_POST;
2159 r = service_spawn(s,
2163 !s->permissions_start_only,
2164 !s->root_directory_start_only,
2172 service_set_state(s, SERVICE_START_POST);
2174 service_enter_running(s, SERVICE_SUCCESS);
2179 log_warning("%s failed to run 'start-post' task: %s", UNIT(s)->id, strerror(-r));
2180 service_enter_stop(s, SERVICE_FAILURE_RESOURCES);
2183 static void service_enter_start(Service *s) {
2190 assert(s->exec_command[SERVICE_EXEC_START]);
2191 assert(!s->exec_command[SERVICE_EXEC_START]->command_next || s->type == SERVICE_ONESHOT);
2193 if (s->type == SERVICE_FORKING)
2194 service_unwatch_control_pid(s);
2196 service_unwatch_main_pid(s);
2198 /* We want to ensure that nobody leaks processes from
2199 * START_PRE here, so let's go on a killing spree, People
2200 * should not spawn long running processes from START_PRE. */
2201 cgroup_bonding_kill_list(UNIT(s)->cgroup_bondings, SIGKILL, true, true, NULL, "control");
2203 if (s->type == SERVICE_FORKING) {
2204 s->control_command_id = SERVICE_EXEC_START;
2205 c = s->control_command = s->exec_command[SERVICE_EXEC_START];
2207 s->main_command = NULL;
2209 s->control_command_id = _SERVICE_EXEC_COMMAND_INVALID;
2210 s->control_command = NULL;
2212 c = s->main_command = s->exec_command[SERVICE_EXEC_START];
2215 r = service_spawn(s,
2217 s->type == SERVICE_FORKING || s->type == SERVICE_DBUS || s->type == SERVICE_NOTIFY || s->type == SERVICE_ONESHOT,
2222 s->notify_access != NOTIFY_NONE,
2228 if (s->type == SERVICE_SIMPLE || s->type == SERVICE_IDLE) {
2229 /* For simple services we immediately start
2230 * the START_POST binaries. */
2232 service_set_main_pid(s, pid);
2233 service_enter_start_post(s);
2235 } else if (s->type == SERVICE_FORKING) {
2237 /* For forking services we wait until the start
2238 * process exited. */
2240 s->control_pid = pid;
2241 service_set_state(s, SERVICE_START);
2243 } else if (s->type == SERVICE_ONESHOT ||
2244 s->type == SERVICE_DBUS ||
2245 s->type == SERVICE_NOTIFY) {
2247 /* For oneshot services we wait until the start
2248 * process exited, too, but it is our main process. */
2250 /* For D-Bus services we know the main pid right away,
2251 * but wait for the bus name to appear on the
2252 * bus. Notify services are similar. */
2254 service_set_main_pid(s, pid);
2255 service_set_state(s, SERVICE_START);
2257 assert_not_reached("Unknown service type");
2262 log_warning("%s failed to run 'start' task: %s", UNIT(s)->id, strerror(-r));
2263 service_enter_signal(s, SERVICE_FINAL_SIGTERM, SERVICE_FAILURE_RESOURCES);
2266 static void service_enter_start_pre(Service *s) {
2271 service_unwatch_control_pid(s);
2273 if ((s->control_command = s->exec_command[SERVICE_EXEC_START_PRE])) {
2275 /* Before we start anything, let's clear up what might
2276 * be left from previous runs. */
2277 cgroup_bonding_kill_list(UNIT(s)->cgroup_bondings, SIGKILL, true, true, NULL, "control");
2279 s->control_command_id = SERVICE_EXEC_START_PRE;
2281 r = service_spawn(s,
2285 !s->permissions_start_only,
2286 !s->root_directory_start_only,
2294 service_set_state(s, SERVICE_START_PRE);
2296 service_enter_start(s);
2301 log_warning("%s failed to run 'start-pre' task: %s", UNIT(s)->id, strerror(-r));
2302 service_enter_dead(s, SERVICE_FAILURE_RESOURCES, true);
2305 static void service_enter_restart(Service *s) {
2310 dbus_error_init(&error);
2312 if (UNIT(s)->job && UNIT(s)->job->type == JOB_STOP) {
2313 /* Don't restart things if we are going down anyway */
2314 log_info("Stop job pending for unit, delaying automatic restart.");
2316 r = unit_watch_timer(UNIT(s), s->restart_usec, &s->timer_watch);
2323 /* Any units that are bound to this service must also be
2324 * restarted. We use JOB_RESTART (instead of the more obvious
2325 * JOB_START) here so that those dependency jobs will be added
2327 r = manager_add_job(UNIT(s)->manager, JOB_RESTART, UNIT(s), JOB_FAIL, false, &error, NULL);
2331 /* Note that we stay in the SERVICE_AUTO_RESTART state here,
2332 * it will be canceled as part of the service_stop() call that
2333 * is executed as part of JOB_RESTART. */
2335 log_debug("%s scheduled restart job.", UNIT(s)->id);
2339 log_warning("%s failed to schedule restart job: %s", UNIT(s)->id, bus_error(&error, -r));
2340 service_enter_dead(s, SERVICE_FAILURE_RESOURCES, false);
2342 dbus_error_free(&error);
2345 static void service_enter_reload(Service *s) {
2350 service_unwatch_control_pid(s);
2352 if ((s->control_command = s->exec_command[SERVICE_EXEC_RELOAD])) {
2353 s->control_command_id = SERVICE_EXEC_RELOAD;
2355 r = service_spawn(s,
2359 !s->permissions_start_only,
2360 !s->root_directory_start_only,
2368 service_set_state(s, SERVICE_RELOAD);
2370 service_enter_running(s, SERVICE_SUCCESS);
2375 log_warning("%s failed to run 'reload' task: %s", UNIT(s)->id, strerror(-r));
2376 s->reload_result = SERVICE_FAILURE_RESOURCES;
2377 service_enter_running(s, SERVICE_SUCCESS);
2380 static void service_run_next_control(Service *s) {
2384 assert(s->control_command);
2385 assert(s->control_command->command_next);
2387 assert(s->control_command_id != SERVICE_EXEC_START);
2389 s->control_command = s->control_command->command_next;
2390 service_unwatch_control_pid(s);
2392 r = service_spawn(s,
2396 !s->permissions_start_only,
2397 !s->root_directory_start_only,
2398 s->control_command_id == SERVICE_EXEC_START_PRE ||
2399 s->control_command_id == SERVICE_EXEC_STOP_POST,
2409 log_warning("%s failed to run next control task: %s", UNIT(s)->id, strerror(-r));
2411 if (s->state == SERVICE_START_PRE)
2412 service_enter_signal(s, SERVICE_FINAL_SIGTERM, SERVICE_FAILURE_RESOURCES);
2413 else if (s->state == SERVICE_STOP)
2414 service_enter_signal(s, SERVICE_STOP_SIGTERM, SERVICE_FAILURE_RESOURCES);
2415 else if (s->state == SERVICE_STOP_POST)
2416 service_enter_dead(s, SERVICE_FAILURE_RESOURCES, true);
2417 else if (s->state == SERVICE_RELOAD) {
2418 s->reload_result = SERVICE_FAILURE_RESOURCES;
2419 service_enter_running(s, SERVICE_SUCCESS);
2421 service_enter_stop(s, SERVICE_FAILURE_RESOURCES);
2424 static void service_run_next_main(Service *s) {
2429 assert(s->main_command);
2430 assert(s->main_command->command_next);
2431 assert(s->type == SERVICE_ONESHOT);
2433 s->main_command = s->main_command->command_next;
2434 service_unwatch_main_pid(s);
2436 r = service_spawn(s,
2443 s->notify_access != NOTIFY_NONE,
2449 service_set_main_pid(s, pid);
2454 log_warning("%s failed to run next main task: %s", UNIT(s)->id, strerror(-r));
2455 service_enter_stop(s, SERVICE_FAILURE_RESOURCES);
2458 static int service_start_limit_test(Service *s) {
2461 if (ratelimit_test(&s->start_limit))
2464 switch (s->start_limit_action) {
2466 case SERVICE_START_LIMIT_NONE:
2467 log_warning("%s start request repeated too quickly, refusing to start.", UNIT(s)->id);
2470 case SERVICE_START_LIMIT_REBOOT: {
2474 dbus_error_init(&error);
2476 log_warning("%s start request repeated too quickly, rebooting.", UNIT(s)->id);
2478 r = manager_add_job_by_name(UNIT(s)->manager, JOB_START, SPECIAL_REBOOT_TARGET, JOB_REPLACE, true, &error, NULL);
2480 log_error("Failed to reboot: %s.", bus_error(&error, r));
2481 dbus_error_free(&error);
2487 case SERVICE_START_LIMIT_REBOOT_FORCE:
2488 log_warning("%s start request repeated too quickly, forcibly rebooting.", UNIT(s)->id);
2489 UNIT(s)->manager->exit_code = MANAGER_REBOOT;
2492 case SERVICE_START_LIMIT_REBOOT_IMMEDIATE:
2493 log_warning("%s start request repeated too quickly, rebooting immediately.", UNIT(s)->id);
2494 reboot(RB_AUTOBOOT);
2498 log_error("start limit action=%i", s->start_limit_action);
2499 assert_not_reached("Unknown StartLimitAction.");
2505 static int service_start(Unit *u) {
2506 Service *s = SERVICE(u);
2511 /* We cannot fulfill this request right now, try again later
2513 if (s->state == SERVICE_STOP ||
2514 s->state == SERVICE_STOP_SIGTERM ||
2515 s->state == SERVICE_STOP_SIGKILL ||
2516 s->state == SERVICE_STOP_POST ||
2517 s->state == SERVICE_FINAL_SIGTERM ||
2518 s->state == SERVICE_FINAL_SIGKILL)
2521 /* Already on it! */
2522 if (s->state == SERVICE_START_PRE ||
2523 s->state == SERVICE_START ||
2524 s->state == SERVICE_START_POST)
2527 /* A service that will be restarted must be stopped first to
2528 * trigger BindsTo and/or OnFailure dependencies. If a user
2529 * does not want to wait for the holdoff time to elapse, the
2530 * service should be manually restarted, not started. We
2531 * simply return EAGAIN here, so that any start jobs stay
2532 * queued, and assume that the auto restart timer will
2533 * eventually trigger the restart. */
2534 if (s->state == SERVICE_AUTO_RESTART)
2537 assert(s->state == SERVICE_DEAD || s->state == SERVICE_FAILED);
2539 /* Make sure we don't enter a busy loop of some kind. */
2540 r = service_start_limit_test(s);
2542 service_enter_dead(s, SERVICE_FAILURE_START_LIMIT, false);
2546 s->result = SERVICE_SUCCESS;
2547 s->reload_result = SERVICE_SUCCESS;
2548 s->main_pid_known = false;
2549 s->main_pid_alien = false;
2550 s->forbid_restart = false;
2552 service_enter_start_pre(s);
2556 static int service_stop(Unit *u) {
2557 Service *s = SERVICE(u);
2561 /* Don't create restart jobs from here. */
2562 s->forbid_restart = true;
2565 if (s->state == SERVICE_STOP ||
2566 s->state == SERVICE_STOP_SIGTERM ||
2567 s->state == SERVICE_STOP_SIGKILL ||
2568 s->state == SERVICE_STOP_POST ||
2569 s->state == SERVICE_FINAL_SIGTERM ||
2570 s->state == SERVICE_FINAL_SIGKILL)
2573 /* A restart will be scheduled or is in progress. */
2574 if (s->state == SERVICE_AUTO_RESTART) {
2575 service_set_state(s, SERVICE_DEAD);
2579 /* If there's already something running we go directly into
2581 if (s->state == SERVICE_START_PRE ||
2582 s->state == SERVICE_START ||
2583 s->state == SERVICE_START_POST ||
2584 s->state == SERVICE_RELOAD) {
2585 service_enter_signal(s, SERVICE_STOP_SIGTERM, SERVICE_SUCCESS);
2589 assert(s->state == SERVICE_RUNNING ||
2590 s->state == SERVICE_EXITED);
2592 service_enter_stop(s, SERVICE_SUCCESS);
2596 static int service_reload(Unit *u) {
2597 Service *s = SERVICE(u);
2601 assert(s->state == SERVICE_RUNNING || s->state == SERVICE_EXITED);
2603 service_enter_reload(s);
2607 static bool service_can_reload(Unit *u) {
2608 Service *s = SERVICE(u);
2612 return !!s->exec_command[SERVICE_EXEC_RELOAD];
2615 static int service_serialize(Unit *u, FILE *f, FDSet *fds) {
2616 Service *s = SERVICE(u);
2622 unit_serialize_item(u, f, "state", service_state_to_string(s->state));
2623 unit_serialize_item(u, f, "result", service_result_to_string(s->result));
2624 unit_serialize_item(u, f, "reload-result", service_result_to_string(s->reload_result));
2626 if (s->control_pid > 0)
2627 unit_serialize_item_format(u, f, "control-pid", "%lu", (unsigned long) s->control_pid);
2629 if (s->main_pid_known && s->main_pid > 0)
2630 unit_serialize_item_format(u, f, "main-pid", "%lu", (unsigned long) s->main_pid);
2632 unit_serialize_item(u, f, "main-pid-known", yes_no(s->main_pid_known));
2635 unit_serialize_item(u, f, "status-text", s->status_text);
2637 /* FIXME: There's a minor uncleanliness here: if there are
2638 * multiple commands attached here, we will start from the
2639 * first one again */
2640 if (s->control_command_id >= 0)
2641 unit_serialize_item(u, f, "control-command", service_exec_command_to_string(s->control_command_id));
2643 if (s->socket_fd >= 0) {
2646 if ((copy = fdset_put_dup(fds, s->socket_fd)) < 0)
2649 unit_serialize_item_format(u, f, "socket-fd", "%i", copy);
2652 if (s->main_exec_status.pid > 0) {
2653 unit_serialize_item_format(u, f, "main-exec-status-pid", "%lu", (unsigned long) s->main_exec_status.pid);
2654 dual_timestamp_serialize(f, "main-exec-status-start", &s->main_exec_status.start_timestamp);
2655 dual_timestamp_serialize(f, "main-exec-status-exit", &s->main_exec_status.exit_timestamp);
2657 if (dual_timestamp_is_set(&s->main_exec_status.exit_timestamp)) {
2658 unit_serialize_item_format(u, f, "main-exec-status-code", "%i", s->main_exec_status.code);
2659 unit_serialize_item_format(u, f, "main-exec-status-status", "%i", s->main_exec_status.status);
2662 if (dual_timestamp_is_set(&s->watchdog_timestamp))
2663 dual_timestamp_serialize(f, "watchdog-timestamp", &s->watchdog_timestamp);
2668 static int service_deserialize_item(Unit *u, const char *key, const char *value, FDSet *fds) {
2669 Service *s = SERVICE(u);
2676 if (streq(key, "state")) {
2679 if ((state = service_state_from_string(value)) < 0)
2680 log_debug("Failed to parse state value %s", value);
2682 s->deserialized_state = state;
2683 } else if (streq(key, "result")) {
2686 f = service_result_from_string(value);
2688 log_debug("Failed to parse result value %s", value);
2689 else if (f != SERVICE_SUCCESS)
2692 } else if (streq(key, "reload-result")) {
2695 f = service_result_from_string(value);
2697 log_debug("Failed to parse reload result value %s", value);
2698 else if (f != SERVICE_SUCCESS)
2699 s->reload_result = f;
2701 } else if (streq(key, "control-pid")) {
2704 if (parse_pid(value, &pid) < 0)
2705 log_debug("Failed to parse control-pid value %s", value);
2707 s->control_pid = pid;
2708 } else if (streq(key, "main-pid")) {
2711 if (parse_pid(value, &pid) < 0)
2712 log_debug("Failed to parse main-pid value %s", value);
2714 service_set_main_pid(s, (pid_t) pid);
2715 } else if (streq(key, "main-pid-known")) {
2718 if ((b = parse_boolean(value)) < 0)
2719 log_debug("Failed to parse main-pid-known value %s", value);
2721 s->main_pid_known = b;
2722 } else if (streq(key, "status-text")) {
2725 if ((t = strdup(value))) {
2726 free(s->status_text);
2730 } else if (streq(key, "control-command")) {
2731 ServiceExecCommand id;
2733 if ((id = service_exec_command_from_string(value)) < 0)
2734 log_debug("Failed to parse exec-command value %s", value);
2736 s->control_command_id = id;
2737 s->control_command = s->exec_command[id];
2739 } else if (streq(key, "socket-fd")) {
2742 if (safe_atoi(value, &fd) < 0 || fd < 0 || !fdset_contains(fds, fd))
2743 log_debug("Failed to parse socket-fd value %s", value);
2746 if (s->socket_fd >= 0)
2747 close_nointr_nofail(s->socket_fd);
2748 s->socket_fd = fdset_remove(fds, fd);
2750 } else if (streq(key, "main-exec-status-pid")) {
2753 if (parse_pid(value, &pid) < 0)
2754 log_debug("Failed to parse main-exec-status-pid value %s", value);
2756 s->main_exec_status.pid = pid;
2757 } else if (streq(key, "main-exec-status-code")) {
2760 if (safe_atoi(value, &i) < 0)
2761 log_debug("Failed to parse main-exec-status-code value %s", value);
2763 s->main_exec_status.code = i;
2764 } else if (streq(key, "main-exec-status-status")) {
2767 if (safe_atoi(value, &i) < 0)
2768 log_debug("Failed to parse main-exec-status-status value %s", value);
2770 s->main_exec_status.status = i;
2771 } else if (streq(key, "main-exec-status-start"))
2772 dual_timestamp_deserialize(value, &s->main_exec_status.start_timestamp);
2773 else if (streq(key, "main-exec-status-exit"))
2774 dual_timestamp_deserialize(value, &s->main_exec_status.exit_timestamp);
2775 else if (streq(key, "watchdog-timestamp"))
2776 dual_timestamp_deserialize(value, &s->watchdog_timestamp);
2778 log_debug("Unknown serialization key '%s'", key);
2783 static UnitActiveState service_active_state(Unit *u) {
2784 const UnitActiveState *table;
2788 table = SERVICE(u)->type == SERVICE_IDLE ? state_translation_table_idle : state_translation_table;
2790 return table[SERVICE(u)->state];
2793 static const char *service_sub_state_to_string(Unit *u) {
2796 return service_state_to_string(SERVICE(u)->state);
2799 static bool service_check_gc(Unit *u) {
2800 Service *s = SERVICE(u);
2804 /* Never clean up services that still have a process around,
2805 * even if the service is formally dead. */
2806 if (cgroup_good(s) > 0 ||
2807 main_pid_good(s) > 0 ||
2808 control_pid_good(s) > 0)
2811 #ifdef HAVE_SYSV_COMPAT
2819 static bool service_check_snapshot(Unit *u) {
2820 Service *s = SERVICE(u);
2824 return !s->got_socket_fd;
2827 static int service_retry_pid_file(Service *s) {
2830 assert(s->pid_file);
2831 assert(s->state == SERVICE_START || s->state == SERVICE_START_POST);
2833 r = service_load_pid_file(s, false);
2837 service_unwatch_pid_file(s);
2839 service_enter_running(s, SERVICE_SUCCESS);
2843 static int service_watch_pid_file(Service *s) {
2846 log_debug("Setting watch for %s's PID file %s", UNIT(s)->id, s->pid_file_pathspec->path);
2847 r = path_spec_watch(s->pid_file_pathspec, UNIT(s));
2851 /* the pidfile might have appeared just before we set the watch */
2852 service_retry_pid_file(s);
2856 log_error("Failed to set a watch for %s's PID file %s: %s",
2857 UNIT(s)->id, s->pid_file_pathspec->path, strerror(-r));
2858 service_unwatch_pid_file(s);
2862 static int service_demand_pid_file(Service *s) {
2865 assert(s->pid_file);
2866 assert(!s->pid_file_pathspec);
2868 ps = new0(PathSpec, 1);
2872 ps->path = strdup(s->pid_file);
2878 path_kill_slashes(ps->path);
2880 /* PATH_CHANGED would not be enough. There are daemons (sendmail) that
2881 * keep their PID file open all the time. */
2882 ps->type = PATH_MODIFIED;
2883 ps->inotify_fd = -1;
2885 s->pid_file_pathspec = ps;
2887 return service_watch_pid_file(s);
2890 static void service_fd_event(Unit *u, int fd, uint32_t events, Watch *w) {
2891 Service *s = SERVICE(u);
2895 assert(s->state == SERVICE_START || s->state == SERVICE_START_POST);
2896 assert(s->pid_file_pathspec);
2897 assert(path_spec_owns_inotify_fd(s->pid_file_pathspec, fd));
2899 log_debug("inotify event for %s", u->id);
2901 if (path_spec_fd_event(s->pid_file_pathspec, events) < 0)
2904 if (service_retry_pid_file(s) == 0)
2907 if (service_watch_pid_file(s) < 0)
2912 service_unwatch_pid_file(s);
2913 service_enter_signal(s, SERVICE_STOP_SIGTERM, SERVICE_FAILURE_RESOURCES);
2916 static void service_sigchld_event(Unit *u, pid_t pid, int code, int status) {
2917 Service *s = SERVICE(u);
2923 if (UNIT(s)->fragment_path ? is_clean_exit(code, status, &s->success_status) :
2924 is_clean_exit_lsb(code, status, &s->success_status))
2925 f = SERVICE_SUCCESS;
2926 else if (code == CLD_EXITED)
2927 f = SERVICE_FAILURE_EXIT_CODE;
2928 else if (code == CLD_KILLED)
2929 f = SERVICE_FAILURE_SIGNAL;
2930 else if (code == CLD_DUMPED)
2931 f = SERVICE_FAILURE_CORE_DUMP;
2933 assert_not_reached("Unknown code");
2935 if (s->main_pid == pid) {
2936 /* Forking services may occasionally move to a new PID.
2937 * As long as they update the PID file before exiting the old
2938 * PID, they're fine. */
2939 if (service_load_pid_file(s, false) == 0)
2943 exec_status_exit(&s->main_exec_status, &s->exec_context, pid, code, status);
2945 /* If this is not a forking service than the main
2946 * process got started and hence we copy the exit
2947 * status so that it is recorded both as main and as
2948 * control process exit status */
2949 if (s->main_command) {
2950 s->main_command->exec_status = s->main_exec_status;
2952 if (s->main_command->ignore)
2953 f = SERVICE_SUCCESS;
2956 log_struct(f == SERVICE_SUCCESS ? LOG_DEBUG : LOG_NOTICE,
2957 "MESSAGE=%s: main process exited, code=%s, status=%i/%s",
2958 u->id, sigchld_code_to_string(code), status,
2959 strna(code == CLD_EXITED
2960 ? exit_status_to_string(status, EXIT_STATUS_FULL)
2961 : signal_to_string(status)),
2963 "EXIT_CODE=%s", sigchld_code_to_string(code),
2964 "EXIT_STATUS=%i", status,
2967 if (f != SERVICE_SUCCESS)
2970 if (s->main_command &&
2971 s->main_command->command_next &&
2972 f == SERVICE_SUCCESS) {
2974 /* There is another command to *
2975 * execute, so let's do that. */
2977 log_debug("%s running next main command for state %s", u->id, service_state_to_string(s->state));
2978 service_run_next_main(s);
2982 /* The service exited, so the service is officially
2984 s->main_command = NULL;
2988 case SERVICE_START_POST:
2989 case SERVICE_RELOAD:
2991 /* Need to wait until the operation is
2996 if (s->type == SERVICE_ONESHOT) {
2997 /* This was our main goal, so let's go on */
2998 if (f == SERVICE_SUCCESS)
2999 service_enter_start_post(s);
3001 service_enter_signal(s, SERVICE_FINAL_SIGTERM, f);
3007 case SERVICE_RUNNING:
3008 service_enter_running(s, f);
3011 case SERVICE_STOP_SIGTERM:
3012 case SERVICE_STOP_SIGKILL:
3014 if (!control_pid_good(s))
3015 service_enter_stop_post(s, f);
3017 /* If there is still a control process, wait for that first */
3021 assert_not_reached("Uh, main process died at wrong time.");
3025 } else if (s->control_pid == pid) {
3029 if (s->control_command) {
3030 exec_status_exit(&s->control_command->exec_status, &s->exec_context, pid, code, status);
3032 if (s->control_command->ignore)
3033 f = SERVICE_SUCCESS;
3036 log_full(f == SERVICE_SUCCESS ? LOG_DEBUG : LOG_NOTICE,
3037 "%s: control process exited, code=%s status=%i", u->id, sigchld_code_to_string(code), status);
3039 if (f != SERVICE_SUCCESS)
3042 /* Immediately get rid of the cgroup, so that the
3043 * kernel doesn't delay the cgroup empty messages for
3044 * the service cgroup any longer than necessary */
3045 cgroup_bonding_kill_list(UNIT(s)->cgroup_bondings, SIGKILL, true, true, NULL, "control");
3047 if (s->control_command &&
3048 s->control_command->command_next &&
3049 f == SERVICE_SUCCESS) {
3051 /* There is another command to *
3052 * execute, so let's do that. */
3054 log_debug("%s running next control command for state %s", u->id, service_state_to_string(s->state));
3055 service_run_next_control(s);
3058 /* No further commands for this step, so let's
3059 * figure out what to do next */
3061 s->control_command = NULL;
3062 s->control_command_id = _SERVICE_EXEC_COMMAND_INVALID;
3064 log_debug("%s got final SIGCHLD for state %s", u->id, service_state_to_string(s->state));
3068 case SERVICE_START_PRE:
3069 if (f == SERVICE_SUCCESS)
3070 service_enter_start(s);
3072 service_enter_signal(s, SERVICE_FINAL_SIGTERM, f);
3076 if (s->type != SERVICE_FORKING)
3077 /* Maybe spurious event due to a reload that changed the type? */
3080 if (f != SERVICE_SUCCESS) {
3081 service_enter_signal(s, SERVICE_FINAL_SIGTERM, f);
3086 bool has_start_post;
3089 /* Let's try to load the pid file here if we can.
3090 * The PID file might actually be created by a START_POST
3091 * script. In that case don't worry if the loading fails. */
3093 has_start_post = !!s->exec_command[SERVICE_EXEC_START_POST];
3094 r = service_load_pid_file(s, !has_start_post);
3095 if (!has_start_post && r < 0) {
3096 r = service_demand_pid_file(s);
3097 if (r < 0 || !cgroup_good(s))
3098 service_enter_signal(s, SERVICE_FINAL_SIGTERM, SERVICE_FAILURE_RESOURCES);
3102 service_search_main_pid(s);
3104 service_enter_start_post(s);
3107 case SERVICE_START_POST:
3108 if (f != SERVICE_SUCCESS) {
3109 service_enter_stop(s, f);
3116 r = service_load_pid_file(s, true);
3118 r = service_demand_pid_file(s);
3119 if (r < 0 || !cgroup_good(s))
3120 service_enter_stop(s, SERVICE_FAILURE_RESOURCES);
3124 service_search_main_pid(s);
3126 service_enter_running(s, SERVICE_SUCCESS);
3129 case SERVICE_RELOAD:
3130 if (f == SERVICE_SUCCESS) {
3131 service_load_pid_file(s, true);
3132 service_search_main_pid(s);
3135 s->reload_result = f;
3136 service_enter_running(s, SERVICE_SUCCESS);
3140 service_enter_signal(s, SERVICE_STOP_SIGTERM, f);
3143 case SERVICE_STOP_SIGTERM:
3144 case SERVICE_STOP_SIGKILL:
3145 if (main_pid_good(s) <= 0)
3146 service_enter_stop_post(s, f);
3148 /* If there is still a service
3149 * process around, wait until
3150 * that one quit, too */
3153 case SERVICE_STOP_POST:
3154 case SERVICE_FINAL_SIGTERM: