]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/service.c
configure.ac: fix typo in distro help string
[thirdparty/systemd.git] / src / service.c
CommitLineData
d6c9574f 1/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
5cb5a6ff 2
a7334b09
LP
3/***
4 This file is part of systemd.
5
6 Copyright 2010 Lennart Poettering
7
8 systemd is free software; you can redistribute it and/or modify it
9 under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
12
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 General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with systemd; If not, see <http://www.gnu.org/licenses/>.
20***/
21
5cb5a6ff 22#include <errno.h>
034c6ed7 23#include <signal.h>
2c4104f0
LP
24#include <dirent.h>
25#include <unistd.h>
4b939747 26#include <sys/reboot.h>
5cb5a6ff 27
4b939747 28#include "manager.h"
87f0e418 29#include "unit.h"
5cb5a6ff
LP
30#include "service.h"
31#include "load-fragment.h"
32#include "load-dropin.h"
034c6ed7 33#include "log.h"
2c4104f0 34#include "strv.h"
9e2f7c11 35#include "unit-name.h"
4139c1b2 36#include "dbus-service.h"
514f4ef5 37#include "special.h"
398ef8ba 38#include "bus-errors.h"
9a57c629 39#include "exit-status.h"
f6a6225e
LP
40#include "def.h"
41#include "util.h"
034c6ed7 42
07459bb6 43#ifdef HAVE_SYSV_COMPAT
f34277d9 44
f6a6225e 45#define DEFAULT_SYSV_TIMEOUT_USEC (5*USEC_PER_MINUTE)
f34277d9 46
09cd1ab1
LP
47typedef enum RunlevelType {
48 RUNLEVEL_UP,
49 RUNLEVEL_DOWN,
fc5df99e 50 RUNLEVEL_SYSINIT
09cd1ab1
LP
51} RunlevelType;
52
53static const struct {
54 const char *path;
55 const char *target;
56 const RunlevelType type;
57} rcnd_table[] = {
9d25f5ed 58 /* Standard SysV runlevels for start-up */
514f4ef5 59 { "rc1.d", SPECIAL_RESCUE_TARGET, RUNLEVEL_UP },
fbe9f3a9
LP
60 { "rc2.d", SPECIAL_RUNLEVEL2_TARGET, RUNLEVEL_UP },
61 { "rc3.d", SPECIAL_RUNLEVEL3_TARGET, RUNLEVEL_UP },
62 { "rc4.d", SPECIAL_RUNLEVEL4_TARGET, RUNLEVEL_UP },
63 { "rc5.d", SPECIAL_RUNLEVEL5_TARGET, RUNLEVEL_UP },
fbe9f3a9 64
d4054675 65#ifdef TARGET_SUSE
cfe243e3 66 /* SUSE style boot.d */
fc5df99e 67 { "boot.d", SPECIAL_SYSINIT_TARGET, RUNLEVEL_SYSINIT },
d4054675 68#endif
fbe9f3a9 69
240fc26e 70#if defined(TARGET_DEBIAN) || defined(TARGET_UBUNTU) || defined(TARGET_ANGSTROM)
fbe9f3a9 71 /* Debian style rcS.d */
fc5df99e 72 { "rcS.d", SPECIAL_SYSINIT_TARGET, RUNLEVEL_SYSINIT },
d4054675 73#endif
9d25f5ed
LP
74
75 /* Standard SysV runlevels for shutdown */
76 { "rc0.d", SPECIAL_POWEROFF_TARGET, RUNLEVEL_DOWN },
77 { "rc6.d", SPECIAL_REBOOT_TARGET, RUNLEVEL_DOWN }
78
79 /* Note that the order here matters, as we read the
80 directories in this order, and we want to make sure that
81 sysv_start_priority is known when we first load the
82 unit. And that value we only know from S links. Hence
83 UP/SYSINIT must be read before DOWN */
23a177ef
LP
84};
85
09cd1ab1 86#define RUNLEVELS_UP "12345"
fbe9f3a9 87/* #define RUNLEVELS_DOWN "06" */
e51db373 88#define RUNLEVELS_BOOT "bBsS"
07459bb6 89#endif
09cd1ab1 90
acbb0225 91static const UnitActiveState state_translation_table[_SERVICE_STATE_MAX] = {
87f0e418
LP
92 [SERVICE_DEAD] = UNIT_INACTIVE,
93 [SERVICE_START_PRE] = UNIT_ACTIVATING,
94 [SERVICE_START] = UNIT_ACTIVATING,
95 [SERVICE_START_POST] = UNIT_ACTIVATING,
96 [SERVICE_RUNNING] = UNIT_ACTIVE,
80876c20 97 [SERVICE_EXITED] = UNIT_ACTIVE,
032ff4af 98 [SERVICE_RELOAD] = UNIT_RELOADING,
87f0e418
LP
99 [SERVICE_STOP] = UNIT_DEACTIVATING,
100 [SERVICE_STOP_SIGTERM] = UNIT_DEACTIVATING,
101 [SERVICE_STOP_SIGKILL] = UNIT_DEACTIVATING,
102 [SERVICE_STOP_POST] = UNIT_DEACTIVATING,
103 [SERVICE_FINAL_SIGTERM] = UNIT_DEACTIVATING,
104 [SERVICE_FINAL_SIGKILL] = UNIT_DEACTIVATING,
fdf20a31 105 [SERVICE_FAILED] = UNIT_FAILED,
6124958c 106 [SERVICE_AUTO_RESTART] = UNIT_ACTIVATING
034c6ed7 107};
5cb5a6ff 108
a16e1123
LP
109static void service_init(Unit *u) {
110 Service *s = SERVICE(u);
111
112 assert(u);
ac155bb8 113 assert(u->load_state == UNIT_STUB);
a16e1123
LP
114
115 s->timeout_usec = DEFAULT_TIMEOUT_USEC;
116 s->restart_usec = DEFAULT_RESTART_USEC;
bb242b7b
MO
117
118 s->watchdog_watch.type = WATCH_INVALID;
119
a16e1123 120 s->timer_watch.type = WATCH_INVALID;
07459bb6 121#ifdef HAVE_SYSV_COMPAT
a16e1123 122 s->sysv_start_priority = -1;
ea87ca5a 123 s->sysv_start_priority_from_rcnd = -1;
07459bb6 124#endif
a16e1123 125 s->socket_fd = -1;
3185a36b 126 s->guess_main_pid = true;
a16e1123
LP
127
128 exec_context_init(&s->exec_context);
129
4b939747 130 RATELIMIT_INIT(s->start_limit, 10*USEC_PER_SEC, 5);
a16e1123
LP
131
132 s->control_command_id = _SERVICE_EXEC_COMMAND_INVALID;
133}
134
5e94833f
LP
135static void service_unwatch_control_pid(Service *s) {
136 assert(s);
137
138 if (s->control_pid <= 0)
139 return;
140
141 unit_unwatch_pid(UNIT(s), s->control_pid);
142 s->control_pid = 0;
143}
144
145static void service_unwatch_main_pid(Service *s) {
146 assert(s);
147
148 if (s->main_pid <= 0)
149 return;
150
151 unit_unwatch_pid(UNIT(s), s->main_pid);
152 s->main_pid = 0;
153}
154
3e52541e
MS
155static void service_unwatch_pid_file(Service *s) {
156 if (!s->pid_file_pathspec)
157 return;
158
159 log_debug("Stopping watch for %s's PID file %s", UNIT(s)->id, s->pid_file_pathspec->path);
160 path_spec_unwatch(s->pid_file_pathspec, UNIT(s));
161 path_spec_done(s->pid_file_pathspec);
162 free(s->pid_file_pathspec);
163 s->pid_file_pathspec = NULL;
164}
165
5925dd3c 166static int service_set_main_pid(Service *s, pid_t pid) {
e55224ca
LP
167 pid_t ppid;
168
5925dd3c
LP
169 assert(s);
170
171 if (pid <= 1)
172 return -EINVAL;
173
174 if (pid == getpid())
175 return -EINVAL;
176
6dfa5494
LP
177 s->main_pid = pid;
178 s->main_pid_known = true;
179
180 if (get_parent_of_pid(pid, &ppid) >= 0 && ppid != getpid()) {
e55224ca 181 log_warning("%s: Supervising process %lu which is not our child. We'll most likely not notice when it exits.",
1124fe6f 182 UNIT(s)->id, (unsigned long) pid);
e55224ca 183
6dfa5494
LP
184 s->main_pid_alien = true;
185 } else
186 s->main_pid_alien = false;
5925dd3c 187
b58b4116
LP
188 exec_status_start(&s->main_exec_status, pid);
189
5925dd3c
LP
190 return 0;
191}
192
4f2d528d
LP
193static void service_close_socket_fd(Service *s) {
194 assert(s);
195
196 if (s->socket_fd < 0)
197 return;
198
199 close_nointr_nofail(s->socket_fd);
200 s->socket_fd = -1;
201}
202
6cf6bbc2
LP
203static void service_connection_unref(Service *s) {
204 assert(s);
205
57020a3a 206 if (!UNIT_DEREF(s->accept_socket))
6cf6bbc2
LP
207 return;
208
57020a3a
LP
209 socket_connection_unref(SOCKET(UNIT_DEREF(s->accept_socket)));
210 unit_ref_unset(&s->accept_socket);
6cf6bbc2
LP
211}
212
a6927d7f
MO
213static void service_stop_watchdog(Service *s) {
214 assert(s);
215
bb242b7b 216 unit_unwatch_timer(UNIT(s), &s->watchdog_watch);
a6927d7f
MO
217 s->watchdog_timestamp.realtime = 0;
218 s->watchdog_timestamp.monotonic = 0;
219}
220
bb242b7b
MO
221static void service_enter_dead(Service *s, ServiceResult f, bool allow_restart);
222
223static void service_handle_watchdog(Service *s) {
224 usec_t offset;
225 int r;
226
227 assert(s);
228
229 if (s->watchdog_usec == 0)
230 return;
231
232 offset = now(CLOCK_MONOTONIC) - s->watchdog_timestamp.monotonic;
233 if (offset >= s->watchdog_usec) {
234 log_error("%s watchdog timeout!", UNIT(s)->id);
235 service_enter_dead(s, SERVICE_FAILURE_WATCHDOG, true);
236 return;
237 }
238
239 r = unit_watch_timer(UNIT(s), s->watchdog_usec - offset, &s->watchdog_watch);
240 if (r < 0)
241 log_warning("%s failed to install watchdog timer: %s", UNIT(s)->id, strerror(-r));
242}
243
a6927d7f
MO
244static void service_reset_watchdog(Service *s) {
245 assert(s);
246
247 dual_timestamp_get(&s->watchdog_timestamp);
bb242b7b 248 service_handle_watchdog(s);
a6927d7f
MO
249}
250
87f0e418
LP
251static void service_done(Unit *u) {
252 Service *s = SERVICE(u);
44d8db9e
LP
253
254 assert(s);
255
256 free(s->pid_file);
257 s->pid_file = NULL;
258
07459bb6 259#ifdef HAVE_SYSV_COMPAT
2c4104f0
LP
260 free(s->sysv_path);
261 s->sysv_path = NULL;
262
8309400a
LP
263 free(s->sysv_runlevels);
264 s->sysv_runlevels = NULL;
07459bb6 265#endif
8309400a 266
8c47c732
LP
267 free(s->status_text);
268 s->status_text = NULL;
269
44d8db9e 270 exec_context_done(&s->exec_context);
e537352b 271 exec_command_free_array(s->exec_command, _SERVICE_EXEC_COMMAND_MAX);
44d8db9e 272 s->control_command = NULL;
867b3b7d 273 s->main_command = NULL;
44d8db9e
LP
274
275 /* This will leak a process, but at least no memory or any of
276 * our resources */
5e94833f
LP
277 service_unwatch_main_pid(s);
278 service_unwatch_control_pid(s);
3e52541e 279 service_unwatch_pid_file(s);
44d8db9e 280
05e343b7 281 if (s->bus_name) {
ac155bb8 282 unit_unwatch_bus_name(u, s->bus_name);
05e343b7
LP
283 free(s->bus_name);
284 s->bus_name = NULL;
285 }
286
4f2d528d 287 service_close_socket_fd(s);
6cf6bbc2 288 service_connection_unref(s);
4f2d528d 289
57020a3a 290 unit_ref_unset(&s->accept_socket);
f976f3f6 291
bb242b7b
MO
292 service_stop_watchdog(s);
293
acbb0225 294 unit_unwatch_timer(u, &s->timer_watch);
44d8db9e
LP
295}
296
07459bb6 297#ifdef HAVE_SYSV_COMPAT
b7ccee3c
LP
298static char *sysv_translate_name(const char *name) {
299 char *r;
300
301 if (!(r = new(char, strlen(name) + sizeof(".service"))))
302 return NULL;
303
1bd8b818 304#if defined(TARGET_DEBIAN) || defined(TARGET_UBUNTU) || defined(TARGET_ANGSTROM)
5b819198
MB
305 if (endswith(name, ".sh"))
306 /* Drop Debian-style .sh suffix */
307 strcpy(stpcpy(r, name) - 3, ".service");
308#endif
309#ifdef TARGET_SUSE
b7ccee3c
LP
310 if (startswith(name, "boot."))
311 /* Drop SuSE-style boot. prefix */
312 strcpy(stpcpy(r, name + 5), ".service");
5b819198 313#endif
65530632 314#ifdef TARGET_FRUGALWARE
5b819198 315 if (startswith(name, "rc."))
65530632
MV
316 /* Drop Frugalware-style rc. prefix */
317 strcpy(stpcpy(r, name + 3), ".service");
980900c1 318#endif
b7ccee3c
LP
319 else
320 /* Normal init scripts */
321 strcpy(stpcpy(r, name), ".service");
322
323 return r;
324}
325
ee95669f 326static int sysv_translate_facility(const char *name, const char *filename, char **_r) {
2c4104f0 327
a7d3cc26
LP
328 /* We silently ignore the $ prefix here. According to the LSB
329 * spec it simply indicates whether something is a
330 * standardized name or a distribution-specific one. Since we
331 * just follow what already exists and do not introduce new
332 * uses or names we don't care who introduced a new name. */
333
2c4104f0 334 static const char * const table[] = {
6464aa08 335 /* LSB defined facilities */
a7d3cc26 336 "local_fs", SPECIAL_LOCAL_FS_TARGET,
6fdae8a6
DM
337#if defined(TARGET_MANDRIVA) || defined(TARGET_MAGEIA)
338#else
8d0e38a2
LP
339 /* Due to unfortunate name selection in Mandriva,
340 * $network is provided by network-up which is ordered
341 * after network which actually starts interfaces.
342 * To break the loop, just ignore it */
a7d3cc26 343 "network", SPECIAL_NETWORK_TARGET,
1de4d79b 344#endif
a7d3cc26
LP
345 "named", SPECIAL_NSS_LOOKUP_TARGET,
346 "portmap", SPECIAL_RPCBIND_TARGET,
347 "remote_fs", SPECIAL_REMOTE_FS_TARGET,
348 "syslog", SPECIAL_SYSLOG_TARGET,
4466194c 349 "time", SPECIAL_TIME_SYNC_TARGET,
6464aa08 350
0b603b4e
KS
351 /* common extensions */
352 "mail-transfer-agent", SPECIAL_MAIL_TRANSFER_AGENT_TARGET,
353 "x-display-manager", SPECIAL_DISPLAY_MANAGER_SERVICE,
354 "null", NULL,
355
1bd8b818 356#if defined(TARGET_DEBIAN) || defined(TARGET_UBUNTU) || defined(TARGET_ANGSTROM)
a7d3cc26 357 "mail-transport-agent", SPECIAL_MAIL_TRANSFER_AGENT_TARGET,
3177a49c 358#endif
3177a49c
LP
359
360#ifdef TARGET_FEDORA
a7d3cc26
LP
361 "MTA", SPECIAL_MAIL_TRANSFER_AGENT_TARGET,
362 "smtpdaemon", SPECIAL_MAIL_TRANSFER_AGENT_TARGET,
363 "httpd", SPECIAL_HTTP_DAEMON_TARGET,
3177a49c 364#endif
a7d3cc26 365
0b603b4e
KS
366#ifdef TARGET_SUSE
367 "smtp", SPECIAL_MAIL_TRANSFER_AGENT_TARGET,
368#endif
2c4104f0
LP
369 };
370
371 unsigned i;
372 char *r;
ee95669f 373 const char *n;
2c4104f0 374
ee95669f
LP
375 assert(name);
376 assert(_r);
a7d3cc26 377
ee95669f 378 n = *name == '$' ? name + 1 : name;
a7d3cc26 379
ee95669f 380 for (i = 0; i < ELEMENTSOF(table); i += 2) {
a7d3cc26 381
ee95669f
LP
382 if (!streq(table[i], n))
383 continue;
2c4104f0 384
ee95669f
LP
385 if (!table[i+1])
386 return 0;
387
388 if (!(r = strdup(table[i+1])))
389 return -ENOMEM;
390
391 goto finish;
392 }
2c4104f0 393
a7d3cc26 394 /* If we don't know this name, fallback heuristics to figure
0003d1ab 395 * out whether something is a target or a service alias. */
a7d3cc26 396
e83c7c0b
LP
397 if (*name == '$') {
398 if (!unit_prefix_is_valid(n))
399 return -EINVAL;
400
ee95669f
LP
401 /* Facilities starting with $ are most likely targets */
402 r = unit_name_build(n, NULL, ".target");
e83c7c0b 403 } else if (filename && streq(name, filename))
35b8ca3a 404 /* Names equaling the file name of the services are redundant */
ee95669f 405 return 0;
32159d3a 406 else
ee95669f
LP
407 /* Everything else we assume to be normal service names */
408 r = sysv_translate_name(n);
2c4104f0 409
32159d3a 410 if (!r)
2c4104f0
LP
411 return -ENOMEM;
412
413finish:
b4353094 414 *_r = r;
2c4104f0
LP
415
416 return 1;
417}
418
56d748b4 419static int sysv_fix_order(Service *s) {
ac155bb8 420 Unit *other;
2c4104f0
LP
421 int r;
422
423 assert(s);
424
425 if (s->sysv_start_priority < 0)
426 return 0;
427
23a177ef
LP
428 /* For each pair of services where at least one lacks a LSB
429 * header, we use the start priority value to order things. */
2c4104f0 430
1124fe6f 431 LIST_FOREACH(units_by_type, other, UNIT(s)->manager->units_by_type[UNIT_SERVICE]) {
2c4104f0
LP
432 Service *t;
433 UnitDependency d;
eeaafddc 434 bool special_s, special_t;
2c4104f0 435
595ed347 436 t = SERVICE(other);
2c4104f0
LP
437
438 if (s == t)
439 continue;
9f151f29 440
1124fe6f 441 if (UNIT(t)->load_state != UNIT_LOADED)
9f151f29 442 continue;
2c4104f0
LP
443
444 if (t->sysv_start_priority < 0)
445 continue;
446
51a1a79d
LP
447 /* If both units have modern headers we don't care
448 * about the priorities */
1124fe6f
MS
449 if ((UNIT(s)->fragment_path || s->sysv_has_lsb) &&
450 (UNIT(t)->fragment_path || t->sysv_has_lsb))
23a177ef
LP
451 continue;
452
eeaafddc
LP
453 special_s = s->sysv_runlevels && !chars_intersect(RUNLEVELS_UP, s->sysv_runlevels);
454 special_t = t->sysv_runlevels && !chars_intersect(RUNLEVELS_UP, t->sysv_runlevels);
455
456 if (special_t && !special_s)
457 d = UNIT_AFTER;
458 else if (special_s && !special_t)
459 d = UNIT_BEFORE;
460 else if (t->sysv_start_priority < s->sysv_start_priority)
2c4104f0
LP
461 d = UNIT_AFTER;
462 else if (t->sysv_start_priority > s->sysv_start_priority)
463 d = UNIT_BEFORE;
464 else
465 continue;
466
467 /* FIXME: Maybe we should compare the name here lexicographically? */
468
da19d5c1 469 if ((r = unit_add_dependency(UNIT(s), d, UNIT(t), true)) < 0)
2c4104f0
LP
470 return r;
471 }
472
473 return 0;
474}
475
476static ExecCommand *exec_command_new(const char *path, const char *arg1) {
477 ExecCommand *c;
478
479 if (!(c = new0(ExecCommand, 1)))
480 return NULL;
481
482 if (!(c->path = strdup(path))) {
483 free(c);
484 return NULL;
485 }
486
487 if (!(c->argv = strv_new(path, arg1, NULL))) {
488 free(c->path);
489 free(c);
490 return NULL;
491 }
492
493 return c;
494}
495
496static int sysv_exec_commands(Service *s) {
497 ExecCommand *c;
498
499 assert(s);
500 assert(s->sysv_path);
501
502 if (!(c = exec_command_new(s->sysv_path, "start")))
503 return -ENOMEM;
504 exec_command_append_list(s->exec_command+SERVICE_EXEC_START, c);
505
506 if (!(c = exec_command_new(s->sysv_path, "stop")))
507 return -ENOMEM;
508 exec_command_append_list(s->exec_command+SERVICE_EXEC_STOP, c);
509
510 if (!(c = exec_command_new(s->sysv_path, "reload")))
511 return -ENOMEM;
512 exec_command_append_list(s->exec_command+SERVICE_EXEC_RELOAD, c);
513
514 return 0;
515}
516
e537352b 517static int service_load_sysv_path(Service *s, const char *path) {
2c4104f0
LP
518 FILE *f;
519 Unit *u;
520 unsigned line = 0;
521 int r;
522 enum {
523 NORMAL,
524 DESCRIPTION,
525 LSB,
526 LSB_DESCRIPTION
527 } state = NORMAL;
0b5d26f9 528 char *short_description = NULL, *long_description = NULL, *chkconfig_description = NULL, *description;
5f4b19f4 529 struct stat st;
23a177ef
LP
530
531 assert(s);
532 assert(path);
2c4104f0
LP
533
534 u = UNIT(s);
535
536 if (!(f = fopen(path, "re"))) {
537 r = errno == ENOENT ? 0 : -errno;
538 goto finish;
539 }
540
5f4b19f4
LP
541 zero(st);
542 if (fstat(fileno(f), &st) < 0) {
543 r = -errno;
544 goto finish;
545 }
546
2c4104f0
LP
547 free(s->sysv_path);
548 if (!(s->sysv_path = strdup(path))) {
549 r = -ENOMEM;
550 goto finish;
551 }
552
5f4b19f4
LP
553 s->sysv_mtime = timespec_load(&st.st_mtim);
554
555 if (null_or_empty(&st)) {
ac155bb8 556 u->load_state = UNIT_MASKED;
5f4b19f4
LP
557 r = 0;
558 goto finish;
559 }
560
2c4104f0
LP
561 while (!feof(f)) {
562 char l[LINE_MAX], *t;
563
564 if (!fgets(l, sizeof(l), f)) {
565 if (feof(f))
566 break;
567
568 r = -errno;
569 log_error("Failed to read configuration file '%s': %s", path, strerror(-r));
570 goto finish;
571 }
572
573 line++;
574
575 t = strstrip(l);
576 if (*t != '#')
577 continue;
578
579 if (state == NORMAL && streq(t, "### BEGIN INIT INFO")) {
580 state = LSB;
23a177ef 581 s->sysv_has_lsb = true;
2c4104f0
LP
582 continue;
583 }
584
585 if ((state == LSB_DESCRIPTION || state == LSB) && streq(t, "### END INIT INFO")) {
586 state = NORMAL;
587 continue;
588 }
589
590 t++;
591 t += strspn(t, WHITESPACE);
592
593 if (state == NORMAL) {
594
595 /* Try to parse Red Hat style chkconfig headers */
596
c2b35af6 597 if (startswith_no_case(t, "chkconfig:")) {
2c4104f0 598 int start_priority;
8309400a 599 char runlevels[16], *k;
2c4104f0
LP
600
601 state = NORMAL;
602
8309400a
LP
603 if (sscanf(t+10, "%15s %i %*i",
604 runlevels,
605 &start_priority) != 2) {
2c4104f0
LP
606
607 log_warning("[%s:%u] Failed to parse chkconfig line. Ignoring.", path, line);
608 continue;
609 }
610
fbe9f3a9
LP
611 /* A start priority gathered from the
612 * symlink farms is preferred over the
613 * data from the LSB header. */
8309400a 614 if (start_priority < 0 || start_priority > 99)
2c4104f0 615 log_warning("[%s:%u] Start priority out of range. Ignoring.", path, line);
ea87ca5a 616 else
8309400a
LP
617 s->sysv_start_priority = start_priority;
618
619 char_array_0(runlevels);
620 k = delete_chars(runlevels, WHITESPACE "-");
621
622 if (k[0]) {
623 char *d;
624
625 if (!(d = strdup(k))) {
626 r = -ENOMEM;
627 goto finish;
628 }
629
630 free(s->sysv_runlevels);
631 s->sysv_runlevels = d;
2c4104f0
LP
632 }
633
0b5d26f9 634 } else if (startswith_no_case(t, "description:")) {
2c4104f0
LP
635
636 size_t k = strlen(t);
637 char *d;
0b5d26f9 638 const char *j;
2c4104f0
LP
639
640 if (t[k-1] == '\\') {
641 state = DESCRIPTION;
642 t[k-1] = 0;
643 }
644
0b5d26f9
LP
645 if ((j = strstrip(t+12)) && *j) {
646 if (!(d = strdup(j))) {
647 r = -ENOMEM;
648 goto finish;
649 }
650 } else
651 d = NULL;
2c4104f0 652
0b5d26f9
LP
653 free(chkconfig_description);
654 chkconfig_description = d;
2c4104f0 655
c2b35af6 656 } else if (startswith_no_case(t, "pidfile:")) {
2c4104f0
LP
657
658 char *fn;
659
660 state = NORMAL;
661
662 fn = strstrip(t+8);
663 if (!path_is_absolute(fn)) {
664 log_warning("[%s:%u] PID file not absolute. Ignoring.", path, line);
665 continue;
666 }
667
668 if (!(fn = strdup(fn))) {
669 r = -ENOMEM;
670 goto finish;
671 }
672
673 free(s->pid_file);
674 s->pid_file = fn;
675 }
676
677 } else if (state == DESCRIPTION) {
678
679 /* Try to parse Red Hat style description
680 * continuation */
681
682 size_t k = strlen(t);
0b5d26f9 683 char *j;
2c4104f0
LP
684
685 if (t[k-1] == '\\')
686 t[k-1] = 0;
687 else
688 state = NORMAL;
689
0b5d26f9
LP
690 if ((j = strstrip(t)) && *j) {
691 char *d = NULL;
692
693 if (chkconfig_description)
44d91056 694 d = join(chkconfig_description, " ", j, NULL);
0b5d26f9
LP
695 else
696 d = strdup(j);
2c4104f0 697
0b5d26f9
LP
698 if (!d) {
699 r = -ENOMEM;
700 goto finish;
701 }
702
703 free(chkconfig_description);
704 chkconfig_description = d;
705 }
2c4104f0
LP
706
707 } else if (state == LSB || state == LSB_DESCRIPTION) {
708
c2b35af6 709 if (startswith_no_case(t, "Provides:")) {
2c4104f0
LP
710 char *i, *w;
711 size_t z;
712
713 state = LSB;
714
f60f22df 715 FOREACH_WORD_QUOTED(w, z, t+9, i) {
2c4104f0
LP
716 char *n, *m;
717
718 if (!(n = strndup(w, z))) {
719 r = -ENOMEM;
720 goto finish;
721 }
722
ee95669f 723 r = sysv_translate_facility(n, file_name_from_path(path), &m);
2c4104f0
LP
724 free(n);
725
726 if (r < 0)
727 goto finish;
728
729 if (r == 0)
730 continue;
731
bd77d0fc
LP
732 if (unit_name_to_type(m) == UNIT_SERVICE)
733 r = unit_add_name(u, m);
9700edb4
LP
734 else
735 /* NB: SysV targets
736 * which are provided
737 * by a service are
738 * pulled in by the
739 * services, as an
740 * indication that the
741 * generic service is
742 * now available. This
743 * is strictly
744 * one-way. The
745 * targets do NOT pull
746 * in the SysV
747 * services! */
748 r = unit_add_two_dependencies_by_name(u, UNIT_BEFORE, UNIT_WANTS, m, NULL, true);
bd77d0fc 749
2c4104f0 750 if (r < 0)
43a37549 751 log_error("[%s:%u] Failed to add LSB Provides name %s, ignoring: %s", path, line, m, strerror(-r));
42a097a2
LP
752
753 free(m);
2c4104f0
LP
754 }
755
c2b35af6
LP
756 } else if (startswith_no_case(t, "Required-Start:") ||
757 startswith_no_case(t, "Should-Start:") ||
758 startswith_no_case(t, "X-Start-Before:") ||
759 startswith_no_case(t, "X-Start-After:")) {
2c4104f0
LP
760 char *i, *w;
761 size_t z;
762
763 state = LSB;
764
f60f22df 765 FOREACH_WORD_QUOTED(w, z, strchr(t, ':')+1, i) {
2c4104f0
LP
766 char *n, *m;
767
768 if (!(n = strndup(w, z))) {
769 r = -ENOMEM;
770 goto finish;
771 }
772
ee95669f 773 r = sysv_translate_facility(n, file_name_from_path(path), &m);
2c4104f0 774
e83c7c0b
LP
775 if (r < 0) {
776 log_error("[%s:%u] Failed to translate LSB dependency %s, ignoring: %s", path, line, n, strerror(-r));
777 free(n);
778 continue;
779 }
780
781 free(n);
2c4104f0
LP
782
783 if (r == 0)
784 continue;
785
c2b35af6 786 r = unit_add_dependency_by_name(u, startswith_no_case(t, "X-Start-Before:") ? UNIT_BEFORE : UNIT_AFTER, m, NULL, true);
2c4104f0
LP
787
788 if (r < 0)
43a37549 789 log_error("[%s:%u] Failed to add dependency on %s, ignoring: %s", path, line, m, strerror(-r));
42a097a2
LP
790
791 free(m);
2c4104f0 792 }
c2b35af6 793 } else if (startswith_no_case(t, "Default-Start:")) {
8309400a
LP
794 char *k, *d;
795
796 state = LSB;
797
798 k = delete_chars(t+14, WHITESPACE "-");
799
800 if (k[0] != 0) {
801 if (!(d = strdup(k))) {
802 r = -ENOMEM;
803 goto finish;
804 }
805
806 free(s->sysv_runlevels);
807 s->sysv_runlevels = d;
808 }
2c4104f0 809
0b5d26f9
LP
810 } else if (startswith_no_case(t, "Description:")) {
811 char *d, *j;
ed4c1cc6 812
2c4104f0
LP
813 state = LSB_DESCRIPTION;
814
0b5d26f9
LP
815 if ((j = strstrip(t+12)) && *j) {
816 if (!(d = strdup(j))) {
817 r = -ENOMEM;
818 goto finish;
819 }
820 } else
821 d = NULL;
2c4104f0 822
0b5d26f9
LP
823 free(long_description);
824 long_description = d;
2c4104f0 825
ed4c1cc6 826 } else if (startswith_no_case(t, "Short-Description:")) {
0b5d26f9 827 char *d, *j;
2c4104f0 828
2c4104f0
LP
829 state = LSB;
830
0b5d26f9
LP
831 if ((j = strstrip(t+18)) && *j) {
832 if (!(d = strdup(j))) {
833 r = -ENOMEM;
834 goto finish;
835 }
836 } else
837 d = NULL;
2c4104f0 838
0b5d26f9
LP
839 free(short_description);
840 short_description = d;
2c4104f0
LP
841
842 } else if (state == LSB_DESCRIPTION) {
843
844 if (startswith(l, "#\t") || startswith(l, "# ")) {
0b5d26f9 845 char *j;
2c4104f0 846
0b5d26f9
LP
847 if ((j = strstrip(t)) && *j) {
848 char *d = NULL;
849
850 if (long_description)
44d91056 851 d = join(long_description, " ", t, NULL);
0b5d26f9
LP
852 else
853 d = strdup(j);
854
855 if (!d) {
856 r = -ENOMEM;
857 goto finish;
858 }
859
860 free(long_description);
861 long_description = d;
2c4104f0
LP
862 }
863
2c4104f0
LP
864 } else
865 state = LSB;
866 }
867 }
868 }
869
2c4104f0
LP
870 if ((r = sysv_exec_commands(s)) < 0)
871 goto finish;
e51db373
TFH
872 if (s->sysv_runlevels &&
873 chars_intersect(RUNLEVELS_BOOT, s->sysv_runlevels) &&
874 chars_intersect(RUNLEVELS_UP, s->sysv_runlevels)) {
875 /* Service has both boot and "up" runlevels
876 configured. Kill the "up" ones. */
877 delete_chars(s->sysv_runlevels, RUNLEVELS_UP);
878 }
2c4104f0 879
a40eb732 880 if (s->sysv_runlevels && !chars_intersect(RUNLEVELS_UP, s->sysv_runlevels)) {
0bc824be
LP
881 /* If there a runlevels configured for this service
882 * but none of the standard ones, then we assume this
883 * is some special kind of service (which might be
884 * needed for early boot) and don't create any links
885 * to it. */
886
1124fe6f 887 UNIT(s)->default_dependencies = false;
09cd1ab1 888
09cd1ab1
LP
889 /* Don't timeout special services during boot (like fsck) */
890 s->timeout_usec = 0;
f34277d9
LP
891 } else
892 s->timeout_usec = DEFAULT_SYSV_TIMEOUT_USEC;
0fd030be 893
80876c20 894 /* Special setting for all SysV services */
1f48cf56 895 s->type = SERVICE_FORKING;
f8788303 896 s->remain_after_exit = !s->pid_file;
1835f23c 897 s->guess_main_pid = false;
525ee6f4 898 s->restart = SERVICE_RESTART_NO;
353e12c2 899 s->exec_context.ignore_sigpipe = false;
4dfc092a 900
1124fe6f 901 if (UNIT(s)->manager->sysv_console)
706343f4 902 s->exec_context.std_output = EXEC_OUTPUT_JOURNAL_AND_CONSOLE;
4dfc092a 903
cd25cce9 904 s->exec_context.kill_mode = KILL_PROCESS;
80876c20 905
0b5d26f9
LP
906 /* We use the long description only if
907 * no short description is set. */
908
909 if (short_description)
910 description = short_description;
911 else if (chkconfig_description)
912 description = chkconfig_description;
913 else if (long_description)
914 description = long_description;
915 else
916 description = NULL;
917
918 if (description) {
919 char *d;
920
e527618d 921 if (!(d = strappend(s->sysv_has_lsb ? "LSB: " : "SYSV: ", description))) {
0b5d26f9
LP
922 r = -ENOMEM;
923 goto finish;
924 }
925
ac155bb8 926 u->description = d;
0b5d26f9
LP
927 }
928
ea87ca5a
LP
929 /* The priority that has been set in /etc/rcN.d/ hierarchies
930 * takes precedence over what is stored as default in the LSB
931 * header */
932 if (s->sysv_start_priority_from_rcnd >= 0)
933 s->sysv_start_priority = s->sysv_start_priority_from_rcnd;
934
ac155bb8 935 u->load_state = UNIT_LOADED;
23a177ef 936 r = 0;
2c4104f0
LP
937
938finish:
939
940 if (f)
941 fclose(f);
942
0b5d26f9
LP
943 free(short_description);
944 free(long_description);
945 free(chkconfig_description);
946
2c4104f0
LP
947 return r;
948}
949
e537352b 950static int service_load_sysv_name(Service *s, const char *name) {
2c4104f0
LP
951 char **p;
952
953 assert(s);
954 assert(name);
955
e1992852 956 /* For SysV services we strip the boot.*, rc.* and *.sh
d017c6ca 957 * prefixes/suffixes. */
1bd8b818 958#if defined(TARGET_DEBIAN) || defined(TARGET_UBUNTU) || defined(TARGET_ANGSTROM)
5b819198 959 if (endswith(name, ".sh.service"))
d017c6ca 960 return -ENOENT;
5b819198
MB
961#endif
962
963#ifdef TARGET_SUSE
964 if (startswith(name, "boot."))
965 return -ENOENT;
966#endif
967
968#ifdef TARGET_FRUGALWARE
969 if (startswith(name, "rc."))
970 return -ENOENT;
971#endif
d017c6ca 972
1124fe6f 973 STRV_FOREACH(p, UNIT(s)->manager->lookup_paths.sysvinit_path) {
2c4104f0
LP
974 char *path;
975 int r;
976
44d91056
LP
977 path = join(*p, "/", name, NULL);
978 if (!path)
2c4104f0
LP
979 return -ENOMEM;
980
981 assert(endswith(path, ".service"));
982 path[strlen(path)-8] = 0;
983
e537352b 984 r = service_load_sysv_path(s, path);
fbe9f3a9 985
1bd8b818 986#if defined(TARGET_DEBIAN) || defined(TARGET_UBUNTU) || defined(TARGET_ANGSTROM)
1124fe6f 987 if (r >= 0 && UNIT(s)->load_state == UNIT_STUB) {
e1992852 988 /* Try Debian style *.sh source'able init scripts */
fbe9f3a9
LP
989 strcat(path, ".sh");
990 r = service_load_sysv_path(s, path);
991 }
e1992852 992#endif
2c4104f0
LP
993 free(path);
994
e1992852 995#ifdef TARGET_SUSE
1124fe6f 996 if (r >= 0 && UNIT(s)->load_state == UNIT_STUB) {
e1992852 997 /* Try SUSE style boot.* init scripts */
fbe9f3a9 998
44d91056
LP
999 path = join(*p, "/boot.", name, NULL);
1000 if (!path)
fbe9f3a9
LP
1001 return -ENOMEM;
1002
e1992852 1003 /* Drop .service suffix */
fbe9f3a9
LP
1004 path[strlen(path)-8] = 0;
1005 r = service_load_sysv_path(s, path);
1006 free(path);
1007 }
e1992852 1008#endif
fbe9f3a9 1009
e1992852 1010#ifdef TARGET_FRUGALWARE
1124fe6f 1011 if (r >= 0 && UNIT(s)->load_state == UNIT_STUB) {
e1992852 1012 /* Try Frugalware style rc.* init scripts */
65530632 1013
44d91056
LP
1014 path = join(*p, "/rc.", name, NULL);
1015 if (!path)
65530632
MV
1016 return -ENOMEM;
1017
e1992852 1018 /* Drop .service suffix */
65530632
MV
1019 path[strlen(path)-8] = 0;
1020 r = service_load_sysv_path(s, path);
1021 free(path);
1022 }
e1992852 1023#endif
65530632 1024
23a177ef 1025 if (r < 0)
2c4104f0 1026 return r;
23a177ef 1027
1124fe6f 1028 if ((UNIT(s)->load_state != UNIT_STUB))
23a177ef 1029 break;
2c4104f0
LP
1030 }
1031
1032 return 0;
1033}
1034
e537352b 1035static int service_load_sysv(Service *s) {
2c4104f0
LP
1036 const char *t;
1037 Iterator i;
1038 int r;
1039
5cb5a6ff
LP
1040 assert(s);
1041
1042 /* Load service data from SysV init scripts, preferably with
1043 * LSB headers ... */
1044
1124fe6f 1045 if (strv_isempty(UNIT(s)->manager->lookup_paths.sysvinit_path))
2c4104f0
LP
1046 return 0;
1047
1124fe6f 1048 if ((t = UNIT(s)->id))
e537352b 1049 if ((r = service_load_sysv_name(s, t)) < 0)
2c4104f0
LP
1050 return r;
1051
1124fe6f
MS
1052 if (UNIT(s)->load_state == UNIT_STUB)
1053 SET_FOREACH(t, UNIT(s)->names, i) {
1054 if (t == UNIT(s)->id)
e537352b
LP
1055 continue;
1056
e364ad06 1057 if ((r = service_load_sysv_name(s, t)) < 0)
23a177ef
LP
1058 return r;
1059
1124fe6f 1060 if (UNIT(s)->load_state != UNIT_STUB)
23a177ef
LP
1061 break;
1062 }
2c4104f0
LP
1063
1064 return 0;
5cb5a6ff 1065}
07459bb6 1066#endif
5cb5a6ff 1067
9fff8a1f 1068static int fsck_fix_order(Service *s) {
ac155bb8 1069 Unit *other;
9fff8a1f
LP
1070 int r;
1071
1072 assert(s);
1073
1074 if (s->fsck_passno <= 0)
1075 return 0;
1076
1077 /* For each pair of services where both have an fsck priority
1078 * we order things based on it. */
1079
1124fe6f 1080 LIST_FOREACH(units_by_type, other, UNIT(s)->manager->units_by_type[UNIT_SERVICE]) {
9fff8a1f
LP
1081 Service *t;
1082 UnitDependency d;
1083
595ed347 1084 t = SERVICE(other);
9fff8a1f
LP
1085
1086 if (s == t)
1087 continue;
1088
1124fe6f 1089 if (UNIT(t)->load_state != UNIT_LOADED)
9fff8a1f
LP
1090 continue;
1091
1092 if (t->fsck_passno <= 0)
1093 continue;
1094
1095 if (t->fsck_passno < s->fsck_passno)
1096 d = UNIT_AFTER;
1097 else if (t->fsck_passno > s->fsck_passno)
1098 d = UNIT_BEFORE;
1099 else
1100 continue;
1101
da19d5c1 1102 if ((r = unit_add_dependency(UNIT(s), d, UNIT(t), true)) < 0)
9fff8a1f
LP
1103 return r;
1104 }
1105
1106 return 0;
1107}
1108
243b1432
LP
1109static int service_verify(Service *s) {
1110 assert(s);
1111
1124fe6f 1112 if (UNIT(s)->load_state != UNIT_LOADED)
243b1432
LP
1113 return 0;
1114
1115 if (!s->exec_command[SERVICE_EXEC_START]) {
1124fe6f 1116 log_error("%s lacks ExecStart setting. Refusing.", UNIT(s)->id);
243b1432
LP
1117 return -EINVAL;
1118 }
1119
34e9ba66
LP
1120 if (s->type != SERVICE_ONESHOT &&
1121 s->exec_command[SERVICE_EXEC_START]->command_next) {
1124fe6f 1122 log_error("%s has more than one ExecStart setting, which is only allowed for Type=oneshot services. Refusing.", UNIT(s)->id);
6cf6bbc2
LP
1123 return -EINVAL;
1124 }
1125
c06b7a15
LP
1126 if (s->type == SERVICE_ONESHOT &&
1127 s->exec_command[SERVICE_EXEC_RELOAD]) {
1124fe6f 1128 log_error("%s has an ExecReload setting, which is not allowed for Type=oneshot services. Refusing.", UNIT(s)->id);
c06b7a15
LP
1129 return -EINVAL;
1130 }
1131
05e343b7 1132 if (s->type == SERVICE_DBUS && !s->bus_name) {
1124fe6f 1133 log_error("%s is of type D-Bus but no D-Bus service name has been specified. Refusing.", UNIT(s)->id);
4d0e5dbd
LP
1134 return -EINVAL;
1135 }
1136
2e22afe9 1137 if (s->exec_context.pam_name && s->exec_context.kill_mode != KILL_CONTROL_GROUP) {
1124fe6f 1138 log_error("%s has PAM enabled. Kill mode must be set to 'control-group'. Refusing.", UNIT(s)->id);
05e343b7
LP
1139 return -EINVAL;
1140 }
1141
243b1432
LP
1142 return 0;
1143}
1144
a40eb732
LP
1145static int service_add_default_dependencies(Service *s) {
1146 int r;
1147
1148 assert(s);
1149
1150 /* Add a number of automatic dependencies useful for the
1151 * majority of services. */
1152
1153 /* First, pull in base system */
1124fe6f 1154 if (UNIT(s)->manager->running_as == MANAGER_SYSTEM) {
a40eb732
LP
1155
1156 if ((r = unit_add_two_dependencies_by_name(UNIT(s), UNIT_AFTER, UNIT_REQUIRES, SPECIAL_BASIC_TARGET, NULL, true)) < 0)
1157 return r;
1158
1124fe6f 1159 } else if (UNIT(s)->manager->running_as == MANAGER_USER) {
a40eb732
LP
1160
1161 if ((r = unit_add_two_dependencies_by_name(UNIT(s), UNIT_AFTER, UNIT_REQUIRES, SPECIAL_SOCKETS_TARGET, NULL, true)) < 0)
1162 return r;
1163 }
1164
1165 /* Second, activate normal shutdown */
ead8e478 1166 return unit_add_two_dependencies_by_name(UNIT(s), UNIT_BEFORE, UNIT_CONFLICTS, SPECIAL_SHUTDOWN_TARGET, NULL, true);
a40eb732
LP
1167}
1168
4dfc092a
LP
1169static void service_fix_output(Service *s) {
1170 assert(s);
1171
1172 /* If nothing has been explicitly configured, patch default
1173 * output in. If input is socket/tty we avoid this however,
1174 * since in that case we want output to default to the same
1175 * place as we read input from. */
1176
1177 if (s->exec_context.std_error == EXEC_OUTPUT_INHERIT &&
1178 s->exec_context.std_output == EXEC_OUTPUT_INHERIT &&
1179 s->exec_context.std_input == EXEC_INPUT_NULL)
1124fe6f 1180 s->exec_context.std_error = UNIT(s)->manager->default_std_error;
4dfc092a
LP
1181
1182 if (s->exec_context.std_output == EXEC_OUTPUT_INHERIT &&
1183 s->exec_context.std_input == EXEC_INPUT_NULL)
1124fe6f 1184 s->exec_context.std_output = UNIT(s)->manager->default_std_output;
4dfc092a
LP
1185}
1186
e537352b
LP
1187static int service_load(Unit *u) {
1188 int r;
1189 Service *s = SERVICE(u);
1190
1191 assert(s);
1e2e8133 1192
5cb5a6ff 1193 /* Load a .service file */
e537352b 1194 if ((r = unit_load_fragment(u)) < 0)
5cb5a6ff
LP
1195 return r;
1196
07459bb6 1197#ifdef HAVE_SYSV_COMPAT
bd77d0fc 1198 /* Load a classic init script as a fallback, if we couldn't find anything */
ac155bb8 1199 if (u->load_state == UNIT_STUB)
e537352b 1200 if ((r = service_load_sysv(s)) < 0)
23a177ef 1201 return r;
07459bb6 1202#endif
d46de8a1 1203
23a177ef 1204 /* Still nothing found? Then let's give up */
ac155bb8 1205 if (u->load_state == UNIT_STUB)
23a177ef 1206 return -ENOENT;
034c6ed7 1207
23a177ef
LP
1208 /* We were able to load something, then let's add in the
1209 * dropin directories. */
1210 if ((r = unit_load_dropin(unit_follow_merge(u))) < 0)
8e274523 1211 return r;
23a177ef
LP
1212
1213 /* This is a new unit? Then let's add in some extras */
ac155bb8 1214 if (u->load_state == UNIT_LOADED) {
4e2b0f9b
LP
1215 service_fix_output(s);
1216
23a177ef
LP
1217 if ((r = unit_add_exec_dependencies(u, &s->exec_context)) < 0)
1218 return r;
1219
d686d8a9 1220 if ((r = unit_add_default_cgroups(u)) < 0)
23a177ef
LP
1221 return r;
1222
07459bb6 1223#ifdef HAVE_SYSV_COMPAT
56d748b4 1224 if ((r = sysv_fix_order(s)) < 0)
23a177ef 1225 return r;
07459bb6 1226#endif
05e343b7 1227
9fff8a1f
LP
1228 if ((r = fsck_fix_order(s)) < 0)
1229 return r;
1230
ee0dd802 1231 if (s->bus_name)
05e343b7 1232 if ((r = unit_watch_bus_name(u, s->bus_name)) < 0)
a40eb732 1233 return r;
c952c6ec
LP
1234
1235 if (s->type == SERVICE_NOTIFY && s->notify_access == NOTIFY_NONE)
1236 s->notify_access = NOTIFY_MAIN;
a40eb732 1237
02c4ef9c
LP
1238 if (s->watchdog_usec > 0 && s->notify_access == NOTIFY_NONE)
1239 s->notify_access = NOTIFY_MAIN;
1240
a40eb732 1241 if (s->type == SERVICE_DBUS || s->bus_name)
177b3ffe 1242 if ((r = unit_add_two_dependencies_by_name(u, UNIT_AFTER, UNIT_REQUIRES, SPECIAL_DBUS_SOCKET, NULL, true)) < 0)
a40eb732
LP
1243 return r;
1244
1124fe6f 1245 if (UNIT(s)->default_dependencies)
a40eb732
LP
1246 if ((r = service_add_default_dependencies(s)) < 0)
1247 return r;
8e274523
LP
1248 }
1249
243b1432 1250 return service_verify(s);
034c6ed7
LP
1251}
1252
87f0e418 1253static void service_dump(Unit *u, FILE *f, const char *prefix) {
5cb5a6ff 1254
5cb5a6ff 1255 ServiceExecCommand c;
87f0e418 1256 Service *s = SERVICE(u);
47be870b
LP
1257 const char *prefix2;
1258 char *p2;
5cb5a6ff
LP
1259
1260 assert(s);
1261
47be870b
LP
1262 p2 = strappend(prefix, "\t");
1263 prefix2 = p2 ? p2 : prefix;
44d8db9e 1264
5cb5a6ff 1265 fprintf(f,
81a2b7ce 1266 "%sService State: %s\n"
f42806df
LP
1267 "%sResult: %s\n"
1268 "%sReload Result: %s\n"
81a2b7ce 1269 "%sPermissionsStartOnly: %s\n"
8e274523 1270 "%sRootDirectoryStartOnly: %s\n"
02ee865a 1271 "%sRemainAfterExit: %s\n"
3185a36b 1272 "%sGuessMainPID: %s\n"
c952c6ec 1273 "%sType: %s\n"
2cf3143a 1274 "%sRestart: %s\n"
c952c6ec 1275 "%sNotifyAccess: %s\n",
81a2b7ce 1276 prefix, service_state_to_string(s->state),
f42806df
LP
1277 prefix, service_result_to_string(s->result),
1278 prefix, service_result_to_string(s->reload_result),
81a2b7ce 1279 prefix, yes_no(s->permissions_start_only),
8e274523 1280 prefix, yes_no(s->root_directory_start_only),
02ee865a 1281 prefix, yes_no(s->remain_after_exit),
3185a36b 1282 prefix, yes_no(s->guess_main_pid),
c952c6ec 1283 prefix, service_type_to_string(s->type),
2cf3143a 1284 prefix, service_restart_to_string(s->restart),
c952c6ec 1285 prefix, notify_access_to_string(s->notify_access));
5cb5a6ff 1286
70123e68
LP
1287 if (s->control_pid > 0)
1288 fprintf(f,
bb00e604
LP
1289 "%sControl PID: %lu\n",
1290 prefix, (unsigned long) s->control_pid);
70123e68
LP
1291
1292 if (s->main_pid > 0)
1293 fprintf(f,
6dfa5494
LP
1294 "%sMain PID: %lu\n"
1295 "%sMain PID Known: %s\n"
1296 "%sMain PID Alien: %s\n",
1297 prefix, (unsigned long) s->main_pid,
1298 prefix, yes_no(s->main_pid_known),
1299 prefix, yes_no(s->main_pid_alien));
70123e68 1300
034c6ed7
LP
1301 if (s->pid_file)
1302 fprintf(f,
1303 "%sPIDFile: %s\n",
1304 prefix, s->pid_file);
1305
05e343b7
LP
1306 if (s->bus_name)
1307 fprintf(f,
1308 "%sBusName: %s\n"
1309 "%sBus Name Good: %s\n",
1310 prefix, s->bus_name,
1311 prefix, yes_no(s->bus_name_good));
1312
5cb5a6ff
LP
1313 exec_context_dump(&s->exec_context, f, prefix);
1314
e537352b 1315 for (c = 0; c < _SERVICE_EXEC_COMMAND_MAX; c++) {
5cb5a6ff 1316
44d8db9e
LP
1317 if (!s->exec_command[c])
1318 continue;
1319
40d50879 1320 fprintf(f, "%s-> %s:\n",
94f04347 1321 prefix, service_exec_command_to_string(c));
44d8db9e
LP
1322
1323 exec_command_dump_list(s->exec_command[c], f, prefix2);
5cb5a6ff 1324 }
44d8db9e 1325
07459bb6 1326#ifdef HAVE_SYSV_COMPAT
2c4104f0
LP
1327 if (s->sysv_path)
1328 fprintf(f,
23a177ef 1329 "%sSysV Init Script Path: %s\n"
9fff8a1f
LP
1330 "%sSysV Init Script has LSB Header: %s\n"
1331 "%sSysVEnabled: %s\n",
23a177ef 1332 prefix, s->sysv_path,
9fff8a1f
LP
1333 prefix, yes_no(s->sysv_has_lsb),
1334 prefix, yes_no(s->sysv_enabled));
2c4104f0
LP
1335
1336 if (s->sysv_start_priority >= 0)
1337 fprintf(f,
9fff8a1f
LP
1338 "%sSysVStartPriority: %i\n",
1339 prefix, s->sysv_start_priority);
2c4104f0 1340
8309400a
LP
1341 if (s->sysv_runlevels)
1342 fprintf(f, "%sSysVRunLevels: %s\n",
1343 prefix, s->sysv_runlevels);
07459bb6 1344#endif
23a177ef 1345
9fff8a1f
LP
1346 if (s->fsck_passno > 0)
1347 fprintf(f,
1348 "%sFsckPassNo: %i\n",
1349 prefix, s->fsck_passno);
1350
8c47c732
LP
1351 if (s->status_text)
1352 fprintf(f, "%sStatus Text: %s\n",
1353 prefix, s->status_text);
1354
47be870b 1355 free(p2);
5cb5a6ff
LP
1356}
1357
c5419d42 1358static int service_load_pid_file(Service *s, bool may_warn) {
034c6ed7 1359 char *k;
034c6ed7 1360 int r;
5925dd3c 1361 pid_t pid;
034c6ed7
LP
1362
1363 assert(s);
1364
034c6ed7 1365 if (!s->pid_file)
13230d5d 1366 return -ENOENT;
034c6ed7 1367
5375410b 1368 if ((r = read_one_line_file(s->pid_file, &k)) < 0) {
c5419d42 1369 if (may_warn)
3a111838
MS
1370 log_info("PID file %s not readable (yet?) after %s.",
1371 s->pid_file, service_state_to_string(s->state));
034c6ed7 1372 return r;
5375410b 1373 }
034c6ed7 1374
5925dd3c
LP
1375 r = parse_pid(k, &pid);
1376 free(k);
034c6ed7 1377
5925dd3c
LP
1378 if (r < 0)
1379 return r;
406eaf93 1380
5925dd3c 1381 if (kill(pid, 0) < 0 && errno != EPERM) {
c5419d42 1382 if (may_warn)
3a111838
MS
1383 log_info("PID %lu read from file %s does not exist.",
1384 (unsigned long) pid, s->pid_file);
b8c597d5
LP
1385 return -ESRCH;
1386 }
1387
db01f8b3
MS
1388 if (s->main_pid_known) {
1389 if (pid == s->main_pid)
1390 return 0;
1391
1392 log_debug("Main PID changing: %lu -> %lu",
1393 (unsigned long) s->main_pid, (unsigned long) pid);
1394 service_unwatch_main_pid(s);
1395 s->main_pid_known = false;
3a111838
MS
1396 } else
1397 log_debug("Main PID loaded: %lu", (unsigned long) pid);
db01f8b3 1398
5925dd3c 1399 if ((r = service_set_main_pid(s, pid)) < 0)
16f6025e
LP
1400 return r;
1401
5925dd3c
LP
1402 if ((r = unit_watch_pid(UNIT(s), pid)) < 0)
1403 /* FIXME: we need to do something here */
1404 return r;
034c6ed7
LP
1405
1406 return 0;
1407}
1408
4fbf50b3
LP
1409static int service_search_main_pid(Service *s) {
1410 pid_t pid;
1411 int r;
1412
1413 assert(s);
1414
3185a36b
LP
1415 /* If we know it anyway, don't ever fallback to unreliable
1416 * heuristics */
4fbf50b3
LP
1417 if (s->main_pid_known)
1418 return 0;
1419
3185a36b
LP
1420 if (!s->guess_main_pid)
1421 return 0;
1422
4fbf50b3
LP
1423 assert(s->main_pid <= 0);
1424
1124fe6f 1425 if ((pid = cgroup_bonding_search_main_pid_list(UNIT(s)->cgroup_bondings)) <= 0)
4fbf50b3
LP
1426 return -ENOENT;
1427
3a111838 1428 log_debug("Main PID guessed: %lu", (unsigned long) pid);
4fbf50b3
LP
1429 if ((r = service_set_main_pid(s, pid)) < 0)
1430 return r;
1431
1432 if ((r = unit_watch_pid(UNIT(s), pid)) < 0)
1433 /* FIXME: we need to do something here */
1434 return r;
1435
1436 return 0;
1437}
1438
57020a3a 1439static void service_notify_sockets_dead(Service *s) {
ceee3d82 1440 Iterator i;
57020a3a 1441 Unit *u;
3e33402a
LP
1442
1443 assert(s);
1444
f976f3f6
LP
1445 /* Notifies all our sockets when we die */
1446
6cf6bbc2 1447 if (s->socket_fd >= 0)
57020a3a 1448 return;
3e33402a 1449
1124fe6f 1450 SET_FOREACH(u, UNIT(s)->dependencies[UNIT_TRIGGERED_BY], i)
ac155bb8 1451 if (u->type == UNIT_SOCKET)
57020a3a 1452 socket_notify_service_dead(SOCKET(u));
3e33402a 1453
57020a3a 1454 return;
ceee3d82
LP
1455}
1456
034c6ed7
LP
1457static void service_set_state(Service *s, ServiceState state) {
1458 ServiceState old_state;
5cb5a6ff
LP
1459 assert(s);
1460
034c6ed7 1461 old_state = s->state;
5cb5a6ff 1462 s->state = state;
034c6ed7 1463
3a111838
MS
1464 service_unwatch_pid_file(s);
1465
034c6ed7
LP
1466 if (state != SERVICE_START_PRE &&
1467 state != SERVICE_START &&
1468 state != SERVICE_START_POST &&
1469 state != SERVICE_RELOAD &&
1470 state != SERVICE_STOP &&
1471 state != SERVICE_STOP_SIGTERM &&
1472 state != SERVICE_STOP_SIGKILL &&
1473 state != SERVICE_STOP_POST &&
1474 state != SERVICE_FINAL_SIGTERM &&
1475 state != SERVICE_FINAL_SIGKILL &&
1476 state != SERVICE_AUTO_RESTART)
acbb0225 1477 unit_unwatch_timer(UNIT(s), &s->timer_watch);
034c6ed7 1478
7d55e835
LP
1479 if (state != SERVICE_START &&
1480 state != SERVICE_START_POST &&
034c6ed7
LP
1481 state != SERVICE_RUNNING &&
1482 state != SERVICE_RELOAD &&
1483 state != SERVICE_STOP &&
1484 state != SERVICE_STOP_SIGTERM &&
867b3b7d 1485 state != SERVICE_STOP_SIGKILL) {
5e94833f 1486 service_unwatch_main_pid(s);
867b3b7d
LP
1487 s->main_command = NULL;
1488 }
034c6ed7
LP
1489
1490 if (state != SERVICE_START_PRE &&
1491 state != SERVICE_START &&
1492 state != SERVICE_START_POST &&
1493 state != SERVICE_RELOAD &&
1494 state != SERVICE_STOP &&
1495 state != SERVICE_STOP_SIGTERM &&
1496 state != SERVICE_STOP_SIGKILL &&
1497 state != SERVICE_STOP_POST &&
1498 state != SERVICE_FINAL_SIGTERM &&
e537352b 1499 state != SERVICE_FINAL_SIGKILL) {
5e94833f 1500 service_unwatch_control_pid(s);
034c6ed7 1501 s->control_command = NULL;
a16e1123 1502 s->control_command_id = _SERVICE_EXEC_COMMAND_INVALID;
e537352b 1503 }
034c6ed7 1504
ceee3d82
LP
1505 if (state == SERVICE_DEAD ||
1506 state == SERVICE_STOP ||
1507 state == SERVICE_STOP_SIGTERM ||
1508 state == SERVICE_STOP_SIGKILL ||
1509 state == SERVICE_STOP_POST ||
1510 state == SERVICE_FINAL_SIGTERM ||
1511 state == SERVICE_FINAL_SIGKILL ||
fdf20a31 1512 state == SERVICE_FAILED ||
ceee3d82 1513 state == SERVICE_AUTO_RESTART)
e537352b 1514 service_notify_sockets_dead(s);
ceee3d82 1515
4f2d528d
LP
1516 if (state != SERVICE_START_PRE &&
1517 state != SERVICE_START &&
6cf6bbc2
LP
1518 state != SERVICE_START_POST &&
1519 state != SERVICE_RUNNING &&
1520 state != SERVICE_RELOAD &&
1521 state != SERVICE_STOP &&
1522 state != SERVICE_STOP_SIGTERM &&
1523 state != SERVICE_STOP_SIGKILL &&
1524 state != SERVICE_STOP_POST &&
1525 state != SERVICE_FINAL_SIGTERM &&
1526 state != SERVICE_FINAL_SIGKILL &&
1124fe6f 1527 !(state == SERVICE_DEAD && UNIT(s)->job)) {
4f2d528d 1528 service_close_socket_fd(s);
6cf6bbc2
LP
1529 service_connection_unref(s);
1530 }
4f2d528d 1531
a6927d7f
MO
1532 if (state == SERVICE_STOP)
1533 service_stop_watchdog(s);
1534
f6023656
LP
1535 /* For the inactive states unit_notify() will trim the cgroup,
1536 * but for exit we have to do that ourselves... */
1124fe6f
MS
1537 if (state == SERVICE_EXITED && UNIT(s)->manager->n_reloading <= 0)
1538 cgroup_bonding_trim_list(UNIT(s)->cgroup_bondings, true);
f6023656 1539
e537352b 1540 if (old_state != state)
1124fe6f 1541 log_debug("%s changed %s -> %s", UNIT(s)->id, service_state_to_string(old_state), service_state_to_string(state));
acbb0225 1542
f42806df
LP
1543 unit_notify(UNIT(s), state_translation_table[old_state], state_translation_table[state], s->reload_result == SERVICE_SUCCESS);
1544 s->reload_result = SERVICE_SUCCESS;
034c6ed7
LP
1545}
1546
a16e1123
LP
1547static int service_coldplug(Unit *u) {
1548 Service *s = SERVICE(u);
1549 int r;
1550
1551 assert(s);
1552 assert(s->state == SERVICE_DEAD);
1553
1554 if (s->deserialized_state != s->state) {
1555
1556 if (s->deserialized_state == SERVICE_START_PRE ||
1557 s->deserialized_state == SERVICE_START ||
1558 s->deserialized_state == SERVICE_START_POST ||
1559 s->deserialized_state == SERVICE_RELOAD ||
1560 s->deserialized_state == SERVICE_STOP ||
1561 s->deserialized_state == SERVICE_STOP_SIGTERM ||
1562 s->deserialized_state == SERVICE_STOP_SIGKILL ||
1563 s->deserialized_state == SERVICE_STOP_POST ||
1564 s->deserialized_state == SERVICE_FINAL_SIGTERM ||
1565 s->deserialized_state == SERVICE_FINAL_SIGKILL ||
e558336f
LP
1566 s->deserialized_state == SERVICE_AUTO_RESTART) {
1567
1568 if (s->deserialized_state == SERVICE_AUTO_RESTART || s->timeout_usec > 0) {
1569 usec_t k;
1570
1571 k = s->deserialized_state == SERVICE_AUTO_RESTART ? s->restart_usec : s->timeout_usec;
1572
1573 if ((r = unit_watch_timer(UNIT(s), k, &s->timer_watch)) < 0)
1574 return r;
1575 }
1576 }
a16e1123
LP
1577
1578 if ((s->deserialized_state == SERVICE_START &&
1579 (s->type == SERVICE_FORKING ||
8c47c732 1580 s->type == SERVICE_DBUS ||
34e9ba66 1581 s->type == SERVICE_ONESHOT ||
8c47c732 1582 s->type == SERVICE_NOTIFY)) ||
a16e1123
LP
1583 s->deserialized_state == SERVICE_START_POST ||
1584 s->deserialized_state == SERVICE_RUNNING ||
1585 s->deserialized_state == SERVICE_RELOAD ||
1586 s->deserialized_state == SERVICE_STOP ||
1587 s->deserialized_state == SERVICE_STOP_SIGTERM ||
1588 s->deserialized_state == SERVICE_STOP_SIGKILL)
1589 if (s->main_pid > 0)
1590 if ((r = unit_watch_pid(UNIT(s), s->main_pid)) < 0)
1591 return r;
1592
1593 if (s->deserialized_state == SERVICE_START_PRE ||
1594 s->deserialized_state == SERVICE_START ||
1595 s->deserialized_state == SERVICE_START_POST ||
1596 s->deserialized_state == SERVICE_RELOAD ||
1597 s->deserialized_state == SERVICE_STOP ||
1598 s->deserialized_state == SERVICE_STOP_SIGTERM ||
1599 s->deserialized_state == SERVICE_STOP_SIGKILL ||
1600 s->deserialized_state == SERVICE_STOP_POST ||
1601 s->deserialized_state == SERVICE_FINAL_SIGTERM ||
1602 s->deserialized_state == SERVICE_FINAL_SIGKILL)
1603 if (s->control_pid > 0)
1604 if ((r = unit_watch_pid(UNIT(s), s->control_pid)) < 0)
1605 return r;
1606
bb242b7b
MO
1607 if (s->deserialized_state == SERVICE_START_POST ||
1608 s->deserialized_state == SERVICE_RUNNING)
1609 service_handle_watchdog(s);
1610
a16e1123
LP
1611 service_set_state(s, s->deserialized_state);
1612 }
a16e1123
LP
1613 return 0;
1614}
1615
44d8db9e
LP
1616static int service_collect_fds(Service *s, int **fds, unsigned *n_fds) {
1617 Iterator i;
1618 int r;
1619 int *rfds = NULL;
1620 unsigned rn_fds = 0;
57020a3a 1621 Unit *u;
44d8db9e
LP
1622
1623 assert(s);
1624 assert(fds);
1625 assert(n_fds);
1626
6cf6bbc2
LP
1627 if (s->socket_fd >= 0)
1628 return 0;
1629
1124fe6f 1630 SET_FOREACH(u, UNIT(s)->dependencies[UNIT_TRIGGERED_BY], i) {
44d8db9e
LP
1631 int *cfds;
1632 unsigned cn_fds;
57020a3a
LP
1633 Socket *sock;
1634
ac155bb8 1635 if (u->type != UNIT_SOCKET)
57020a3a
LP
1636 continue;
1637
1638 sock = SOCKET(u);
44d8db9e 1639
47be870b 1640 if ((r = socket_collect_fds(sock, &cfds, &cn_fds)) < 0)
44d8db9e
LP
1641 goto fail;
1642
1643 if (!cfds)
1644 continue;
1645
1646 if (!rfds) {
1647 rfds = cfds;
1648 rn_fds = cn_fds;
1649 } else {
1650 int *t;
1651
1652 if (!(t = new(int, rn_fds+cn_fds))) {
1653 free(cfds);
1654 r = -ENOMEM;
1655 goto fail;
1656 }
1657
9c1b183c
LP
1658 memcpy(t, rfds, rn_fds * sizeof(int));
1659 memcpy(t+rn_fds, cfds, cn_fds * sizeof(int));
44d8db9e
LP
1660 free(rfds);
1661 free(cfds);
1662
1663 rfds = t;
1664 rn_fds = rn_fds+cn_fds;
1665 }
1666 }
1667
1668 *fds = rfds;
1669 *n_fds = rn_fds;
3e33402a 1670
44d8db9e
LP
1671 return 0;
1672
1673fail:
1674 free(rfds);
3e33402a 1675
44d8db9e
LP
1676 return r;
1677}
1678
81a2b7ce
LP
1679static int service_spawn(
1680 Service *s,
1681 ExecCommand *c,
1682 bool timeout,
1683 bool pass_fds,
1684 bool apply_permissions,
1685 bool apply_chroot,
1e3ad081 1686 bool apply_tty_stdin,
c952c6ec 1687 bool set_notify_socket,
81a2b7ce
LP
1688 pid_t *_pid) {
1689
034c6ed7
LP
1690 pid_t pid;
1691 int r;
6cf6bbc2 1692 int *fds = NULL, *fdsbuf = NULL;
2105e76a
LP
1693 unsigned n_fds = 0, n_env = 0;
1694 char **argv = NULL, **final_env = NULL, **our_env = NULL;
034c6ed7
LP
1695
1696 assert(s);
1697 assert(c);
1698 assert(_pid);
1699
6cf6bbc2
LP
1700 if (pass_fds ||
1701 s->exec_context.std_input == EXEC_INPUT_SOCKET ||
1702 s->exec_context.std_output == EXEC_OUTPUT_SOCKET ||
1703 s->exec_context.std_error == EXEC_OUTPUT_SOCKET) {
1704
4f2d528d
LP
1705 if (s->socket_fd >= 0) {
1706 fds = &s->socket_fd;
1707 n_fds = 1;
6cf6bbc2
LP
1708 } else {
1709 if ((r = service_collect_fds(s, &fdsbuf, &n_fds)) < 0)
1710 goto fail;
1711
1712 fds = fdsbuf;
1713 }
4f2d528d 1714 }
44d8db9e 1715
e558336f 1716 if (timeout && s->timeout_usec) {
acbb0225 1717 if ((r = unit_watch_timer(UNIT(s), s->timeout_usec, &s->timer_watch)) < 0)
034c6ed7
LP
1718 goto fail;
1719 } else
acbb0225 1720 unit_unwatch_timer(UNIT(s), &s->timer_watch);
034c6ed7 1721
9e2f7c11
LP
1722 if (!(argv = unit_full_printf_strv(UNIT(s), c->argv))) {
1723 r = -ENOMEM;
1724 goto fail;
1725 }
1726
9865f3b4 1727 if (!(our_env = new0(char*, 4))) {
2105e76a
LP
1728 r = -ENOMEM;
1729 goto fail;
1730 }
c952c6ec 1731
2105e76a 1732 if (set_notify_socket)
1124fe6f 1733 if (asprintf(our_env + n_env++, "NOTIFY_SOCKET=%s", UNIT(s)->manager->notify_socket) < 0) {
c952c6ec
LP
1734 r = -ENOMEM;
1735 goto fail;
1736 }
1737
2105e76a
LP
1738 if (s->main_pid > 0)
1739 if (asprintf(our_env + n_env++, "MAINPID=%lu", (unsigned long) s->main_pid) < 0) {
c952c6ec
LP
1740 r = -ENOMEM;
1741 goto fail;
1742 }
2105e76a 1743
6e0bcc98
MO
1744 if (s->watchdog_usec > 0)
1745 if (asprintf(our_env + n_env++, "WATCHDOG_USEC=%llu", (unsigned long long) s->watchdog_usec) < 0) {
1746 r = -ENOMEM;
1747 goto fail;
1748 }
1749
2105e76a 1750 if (!(final_env = strv_env_merge(2,
1124fe6f 1751 UNIT(s)->manager->environment,
2105e76a
LP
1752 our_env,
1753 NULL))) {
1754 r = -ENOMEM;
1755 goto fail;
1756 }
c952c6ec 1757
9e2f7c11
LP
1758 r = exec_spawn(c,
1759 argv,
1760 &s->exec_context,
1761 fds, n_fds,
2105e76a 1762 final_env,
9e2f7c11
LP
1763 apply_permissions,
1764 apply_chroot,
1e3ad081 1765 apply_tty_stdin,
1124fe6f
MS
1766 UNIT(s)->manager->confirm_spawn,
1767 UNIT(s)->cgroup_bondings,
1768 UNIT(s)->cgroup_attributes,
9e2f7c11
LP
1769 &pid);
1770
9e2f7c11 1771 if (r < 0)
034c6ed7
LP
1772 goto fail;
1773
4f2d528d 1774
87f0e418 1775 if ((r = unit_watch_pid(UNIT(s), pid)) < 0)
034c6ed7
LP
1776 /* FIXME: we need to do something here */
1777 goto fail;
1778
2105e76a
LP
1779 free(fdsbuf);
1780 strv_free(argv);
1781 strv_free(our_env);
1782 strv_free(final_env);
1783
034c6ed7
LP
1784 *_pid = pid;
1785
5cb5a6ff 1786 return 0;
034c6ed7
LP
1787
1788fail:
2105e76a 1789 free(fdsbuf);
c952c6ec 1790 strv_free(argv);
2105e76a
LP
1791 strv_free(our_env);
1792 strv_free(final_env);
c952c6ec 1793
034c6ed7 1794 if (timeout)
acbb0225 1795 unit_unwatch_timer(UNIT(s), &s->timer_watch);
034c6ed7
LP
1796
1797 return r;
1798}
1799
80876c20
LP
1800static int main_pid_good(Service *s) {
1801 assert(s);
1802
1803 /* Returns 0 if the pid is dead, 1 if it is good, -1 if we
1804 * don't know */
1805
1806 /* If we know the pid file, then lets just check if it is
1807 * still valid */
6dfa5494
LP
1808 if (s->main_pid_known) {
1809
1810 /* If it's an alien child let's check if it is still
1811 * alive ... */
1812 if (s->main_pid_alien)
1813 return kill(s->main_pid, 0) >= 0 || errno != ESRCH;
1814
1815 /* .. otherwise assume we'll get a SIGCHLD for it,
1816 * which we really should wait for to collect exit
1817 * status and code */
80876c20 1818 return s->main_pid > 0;
6dfa5494 1819 }
80876c20
LP
1820
1821 /* We don't know the pid */
1822 return -EAGAIN;
1823}
1824
1825static int control_pid_good(Service *s) {
1826 assert(s);
1827
1828 return s->control_pid > 0;
1829}
1830
1831static int cgroup_good(Service *s) {
1832 int r;
1833
1834 assert(s);
1835
1124fe6f 1836 if ((r = cgroup_bonding_is_empty_list(UNIT(s)->cgroup_bondings)) < 0)
80876c20
LP
1837 return r;
1838
1839 return !r;
1840}
1841
f42806df 1842static void service_enter_dead(Service *s, ServiceResult f, bool allow_restart) {
034c6ed7
LP
1843 int r;
1844 assert(s);
1845
f42806df
LP
1846 if (f != SERVICE_SUCCESS)
1847 s->result = f;
034c6ed7
LP
1848
1849 if (allow_restart &&
47342320 1850 !s->forbid_restart &&
034c6ed7 1851 (s->restart == SERVICE_RESTART_ALWAYS ||
f42806df
LP
1852 (s->restart == SERVICE_RESTART_ON_SUCCESS && s->result == SERVICE_SUCCESS) ||
1853 (s->restart == SERVICE_RESTART_ON_FAILURE && s->result != SERVICE_SUCCESS) ||
1854 (s->restart == SERVICE_RESTART_ON_ABORT && (s->result == SERVICE_FAILURE_SIGNAL ||
1855 s->result == SERVICE_FAILURE_CORE_DUMP)))) {
034c6ed7 1856
f42806df
LP
1857 r = unit_watch_timer(UNIT(s), s->restart_usec, &s->timer_watch);
1858 if (r < 0)
034c6ed7
LP
1859 goto fail;
1860
1861 service_set_state(s, SERVICE_AUTO_RESTART);
1862 } else
f42806df 1863 service_set_state(s, s->result != SERVICE_SUCCESS ? SERVICE_FAILED : SERVICE_DEAD);
034c6ed7 1864
47342320
LP
1865 s->forbid_restart = false;
1866
034c6ed7
LP
1867 return;
1868
1869fail:
1124fe6f 1870 log_warning("%s failed to run install restart timer: %s", UNIT(s)->id, strerror(-r));
f42806df 1871 service_enter_dead(s, SERVICE_FAILURE_RESOURCES, false);
034c6ed7
LP
1872}
1873
f42806df 1874static void service_enter_signal(Service *s, ServiceState state, ServiceResult f);
034c6ed7 1875
f42806df 1876static void service_enter_stop_post(Service *s, ServiceResult f) {
034c6ed7
LP
1877 int r;
1878 assert(s);
1879
f42806df
LP
1880 if (f != SERVICE_SUCCESS)
1881 s->result = f;
034c6ed7 1882
5e94833f
LP
1883 service_unwatch_control_pid(s);
1884
80876c20 1885 if ((s->control_command = s->exec_command[SERVICE_EXEC_STOP_POST])) {
867b3b7d
LP
1886 s->control_command_id = SERVICE_EXEC_STOP_POST;
1887
81a2b7ce
LP
1888 if ((r = service_spawn(s,
1889 s->control_command,
1890 true,
1891 false,
1892 !s->permissions_start_only,
1893 !s->root_directory_start_only,
1e3ad081 1894 true,
c952c6ec 1895 false,
81a2b7ce 1896 &s->control_pid)) < 0)
034c6ed7
LP
1897 goto fail;
1898
d6ea93e3 1899
80876c20
LP
1900 service_set_state(s, SERVICE_STOP_POST);
1901 } else
f42806df 1902 service_enter_signal(s, SERVICE_FINAL_SIGTERM, SERVICE_SUCCESS);
034c6ed7
LP
1903
1904 return;
1905
1906fail:
1124fe6f 1907 log_warning("%s failed to run 'stop-post' task: %s", UNIT(s)->id, strerror(-r));
f42806df 1908 service_enter_signal(s, SERVICE_FINAL_SIGTERM, SERVICE_FAILURE_RESOURCES);
034c6ed7
LP
1909}
1910
f42806df 1911static void service_enter_signal(Service *s, ServiceState state, ServiceResult f) {
034c6ed7 1912 int r;
ca949c9d
LP
1913 Set *pid_set = NULL;
1914 bool wait_for_exit = false;
034c6ed7
LP
1915
1916 assert(s);
1917
f42806df
LP
1918 if (f != SERVICE_SUCCESS)
1919 s->result = f;
034c6ed7 1920
2e22afe9
LP
1921 if (s->exec_context.kill_mode != KILL_NONE) {
1922 int sig = (state == SERVICE_STOP_SIGTERM || state == SERVICE_FINAL_SIGTERM) ? s->exec_context.kill_signal : SIGKILL;
034c6ed7 1923
ca949c9d 1924 if (s->main_pid > 0) {
cd25cce9 1925 if (kill_and_sigcont(s->main_pid, sig) < 0 && errno != ESRCH)
ca949c9d
LP
1926 log_warning("Failed to kill main process %li: %m", (long) s->main_pid);
1927 else
6dfa5494 1928 wait_for_exit = !s->main_pid_alien;
034c6ed7
LP
1929 }
1930
ca949c9d 1931 if (s->control_pid > 0) {
cd25cce9 1932 if (kill_and_sigcont(s->control_pid, sig) < 0 && errno != ESRCH)
ca949c9d
LP
1933 log_warning("Failed to kill control process %li: %m", (long) s->control_pid);
1934 else
1935 wait_for_exit = true;
1936 }
50159e6a 1937
ca949c9d 1938 if (s->exec_context.kill_mode == KILL_CONTROL_GROUP) {
50159e6a 1939
ca949c9d
LP
1940 if (!(pid_set = set_new(trivial_hash_func, trivial_compare_func))) {
1941 r = -ENOMEM;
50159e6a 1942 goto fail;
ca949c9d
LP
1943 }
1944
1945 /* Exclude the main/control pids from being killed via the cgroup */
1946 if (s->main_pid > 0)
1947 if ((r = set_put(pid_set, LONG_TO_PTR(s->main_pid))) < 0)
1948 goto fail;
1949
1950 if (s->control_pid > 0)
1951 if ((r = set_put(pid_set, LONG_TO_PTR(s->control_pid))) < 0)
1952 goto fail;
1953
1124fe6f 1954 if ((r = cgroup_bonding_kill_list(UNIT(s)->cgroup_bondings, sig, true, pid_set)) < 0) {
ca949c9d
LP
1955 if (r != -EAGAIN && r != -ESRCH && r != -ENOENT)
1956 log_warning("Failed to kill control group: %s", strerror(-r));
f5a50114 1957 } else if (r > 0)
ca949c9d
LP
1958 wait_for_exit = true;
1959
1960 set_free(pid_set);
da19d5c1 1961 pid_set = NULL;
50159e6a 1962 }
d6ea93e3 1963 }
034c6ed7 1964
ca949c9d 1965 if (wait_for_exit) {
e558336f
LP
1966 if (s->timeout_usec > 0)
1967 if ((r = unit_watch_timer(UNIT(s), s->timeout_usec, &s->timer_watch)) < 0)
1968 goto fail;
d6ea93e3 1969
80876c20
LP
1970 service_set_state(s, state);
1971 } else if (state == SERVICE_STOP_SIGTERM || state == SERVICE_STOP_SIGKILL)
f42806df 1972 service_enter_stop_post(s, SERVICE_SUCCESS);
80876c20 1973 else
f42806df 1974 service_enter_dead(s, SERVICE_SUCCESS, true);
034c6ed7
LP
1975
1976 return;
1977
1978fail:
1124fe6f 1979 log_warning("%s failed to kill processes: %s", UNIT(s)->id, strerror(-r));
034c6ed7 1980
80876c20 1981 if (state == SERVICE_STOP_SIGTERM || state == SERVICE_STOP_SIGKILL)
f42806df 1982 service_enter_stop_post(s, SERVICE_FAILURE_RESOURCES);
034c6ed7 1983 else
f42806df 1984 service_enter_dead(s, SERVICE_FAILURE_RESOURCES, true);
ca949c9d
LP
1985
1986 if (pid_set)
1987 set_free(pid_set);
034c6ed7
LP
1988}
1989
f42806df 1990static void service_enter_stop(Service *s, ServiceResult f) {
034c6ed7 1991 int r;
5925dd3c 1992
034c6ed7
LP
1993 assert(s);
1994
f42806df
LP
1995 if (f != SERVICE_SUCCESS)
1996 s->result = f;
034c6ed7 1997
5e94833f
LP
1998 service_unwatch_control_pid(s);
1999
80876c20 2000 if ((s->control_command = s->exec_command[SERVICE_EXEC_STOP])) {
867b3b7d
LP
2001 s->control_command_id = SERVICE_EXEC_STOP;
2002
81a2b7ce
LP
2003 if ((r = service_spawn(s,
2004 s->control_command,
2005 true,
2006 false,
2007 !s->permissions_start_only,
2008 !s->root_directory_start_only,
c952c6ec 2009 false,
1e3ad081 2010 false,
e55224ca 2011 &s->control_pid)) < 0)
034c6ed7
LP
2012 goto fail;
2013
80876c20
LP
2014 service_set_state(s, SERVICE_STOP);
2015 } else
f42806df 2016 service_enter_signal(s, SERVICE_STOP_SIGTERM, SERVICE_SUCCESS);
034c6ed7
LP
2017
2018 return;
2019
2020fail:
1124fe6f 2021 log_warning("%s failed to run 'stop' task: %s", UNIT(s)->id, strerror(-r));
f42806df 2022 service_enter_signal(s, SERVICE_STOP_SIGTERM, SERVICE_FAILURE_RESOURCES);
034c6ed7
LP
2023}
2024
f42806df 2025static void service_enter_running(Service *s, ServiceResult f) {
4eab639f 2026 int main_pid_ok, cgroup_ok;
80876c20
LP
2027 assert(s);
2028
f42806df
LP
2029 if (f != SERVICE_SUCCESS)
2030 s->result = f;
80876c20 2031
4eab639f
LP
2032 main_pid_ok = main_pid_good(s);
2033 cgroup_ok = cgroup_good(s);
2034
2035 if ((main_pid_ok > 0 || (main_pid_ok < 0 && cgroup_ok != 0)) &&
05e343b7 2036 (s->bus_name_good || s->type != SERVICE_DBUS))
80876c20 2037 service_set_state(s, SERVICE_RUNNING);
02ee865a 2038 else if (s->remain_after_exit)
80876c20
LP
2039 service_set_state(s, SERVICE_EXITED);
2040 else
f42806df 2041 service_enter_stop(s, SERVICE_SUCCESS);
80876c20
LP
2042}
2043
034c6ed7
LP
2044static void service_enter_start_post(Service *s) {
2045 int r;
2046 assert(s);
2047
5e94833f
LP
2048 service_unwatch_control_pid(s);
2049
bb242b7b
MO
2050 if (s->watchdog_usec > 0)
2051 service_reset_watchdog(s);
2052
80876c20 2053 if ((s->control_command = s->exec_command[SERVICE_EXEC_START_POST])) {
867b3b7d
LP
2054 s->control_command_id = SERVICE_EXEC_START_POST;
2055
81a2b7ce
LP
2056 if ((r = service_spawn(s,
2057 s->control_command,
2058 true,
2059 false,
2060 !s->permissions_start_only,
2061 !s->root_directory_start_only,
c952c6ec 2062 false,
1e3ad081 2063 false,
e55224ca 2064 &s->control_pid)) < 0)
034c6ed7
LP
2065 goto fail;
2066
80876c20
LP
2067 service_set_state(s, SERVICE_START_POST);
2068 } else
f42806df 2069 service_enter_running(s, SERVICE_SUCCESS);
034c6ed7
LP
2070
2071 return;
2072
2073fail:
1124fe6f 2074 log_warning("%s failed to run 'start-post' task: %s", UNIT(s)->id, strerror(-r));
f42806df 2075 service_enter_stop(s, SERVICE_FAILURE_RESOURCES);
034c6ed7
LP
2076}
2077
2078static void service_enter_start(Service *s) {
2079 pid_t pid;
2080 int r;
867b3b7d 2081 ExecCommand *c;
034c6ed7
LP
2082
2083 assert(s);
2084
2085 assert(s->exec_command[SERVICE_EXEC_START]);
34e9ba66 2086 assert(!s->exec_command[SERVICE_EXEC_START]->command_next || s->type == SERVICE_ONESHOT);
034c6ed7 2087
80876c20
LP
2088 if (s->type == SERVICE_FORKING)
2089 service_unwatch_control_pid(s);
2090 else
2091 service_unwatch_main_pid(s);
2092
8f53a7b8
LP
2093 /* We want to ensure that nobody leaks processes from
2094 * START_PRE here, so let's go on a killing spree, People
2095 * should not spawn long running processes from START_PRE. */
1124fe6f 2096 cgroup_bonding_kill_list(UNIT(s)->cgroup_bondings, SIGKILL, true, NULL);
8f53a7b8 2097
867b3b7d
LP
2098 if (s->type == SERVICE_FORKING) {
2099 s->control_command_id = SERVICE_EXEC_START;
2100 c = s->control_command = s->exec_command[SERVICE_EXEC_START];
2101
2102 s->main_command = NULL;
2103 } else {
2104 s->control_command_id = _SERVICE_EXEC_COMMAND_INVALID;
2105 s->control_command = NULL;
2106
2107 c = s->main_command = s->exec_command[SERVICE_EXEC_START];
2108 }
34e9ba66 2109
81a2b7ce 2110 if ((r = service_spawn(s,
867b3b7d 2111 c,
8c47c732 2112 s->type == SERVICE_FORKING || s->type == SERVICE_DBUS || s->type == SERVICE_NOTIFY,
81a2b7ce
LP
2113 true,
2114 true,
2115 true,
1e3ad081 2116 true,
c952c6ec 2117 s->notify_access != NOTIFY_NONE,
81a2b7ce 2118 &pid)) < 0)
034c6ed7
LP
2119 goto fail;
2120
2121 if (s->type == SERVICE_SIMPLE) {
2122 /* For simple services we immediately start
2123 * the START_POST binaries. */
2124
5925dd3c 2125 service_set_main_pid(s, pid);
034c6ed7
LP
2126 service_enter_start_post(s);
2127
2128 } else if (s->type == SERVICE_FORKING) {
2129
2130 /* For forking services we wait until the start
2131 * process exited. */
2132
e55224ca 2133 s->control_pid = pid;
80876c20
LP
2134 service_set_state(s, SERVICE_START);
2135
34e9ba66 2136 } else if (s->type == SERVICE_ONESHOT ||
8c47c732
LP
2137 s->type == SERVICE_DBUS ||
2138 s->type == SERVICE_NOTIFY) {
7d55e835 2139
34e9ba66 2140 /* For oneshot services we wait until the start
7d55e835
LP
2141 * process exited, too, but it is our main process. */
2142
05e343b7 2143 /* For D-Bus services we know the main pid right away,
8c47c732
LP
2144 * but wait for the bus name to appear on the
2145 * bus. Notify services are similar. */
05e343b7 2146
5925dd3c 2147 service_set_main_pid(s, pid);
80876c20 2148 service_set_state(s, SERVICE_START);
034c6ed7
LP
2149 } else
2150 assert_not_reached("Unknown service type");
2151
2152 return;
2153
2154fail:
1124fe6f 2155 log_warning("%s failed to run 'start' task: %s", UNIT(s)->id, strerror(-r));
f42806df 2156 service_enter_signal(s, SERVICE_FINAL_SIGTERM, SERVICE_FAILURE_RESOURCES);
034c6ed7
LP
2157}
2158
2159static void service_enter_start_pre(Service *s) {
2160 int r;
2161
2162 assert(s);
2163
5e94833f
LP
2164 service_unwatch_control_pid(s);
2165
80876c20 2166 if ((s->control_command = s->exec_command[SERVICE_EXEC_START_PRE])) {
8f53a7b8
LP
2167
2168 /* Before we start anything, let's clear up what might
2169 * be left from previous runs. */
1124fe6f 2170 cgroup_bonding_kill_list(UNIT(s)->cgroup_bondings, SIGKILL, true, NULL);
8f53a7b8 2171
867b3b7d
LP
2172 s->control_command_id = SERVICE_EXEC_START_PRE;
2173
81a2b7ce
LP
2174 if ((r = service_spawn(s,
2175 s->control_command,
2176 true,
2177 false,
2178 !s->permissions_start_only,
2179 !s->root_directory_start_only,
1e3ad081 2180 true,
c952c6ec 2181 false,
e55224ca 2182 &s->control_pid)) < 0)
034c6ed7
LP
2183 goto fail;
2184
80876c20
LP
2185 service_set_state(s, SERVICE_START_PRE);
2186 } else
034c6ed7
LP
2187 service_enter_start(s);
2188
2189 return;
2190
2191fail:
1124fe6f 2192 log_warning("%s failed to run 'start-pre' task: %s", UNIT(s)->id, strerror(-r));
f42806df 2193 service_enter_dead(s, SERVICE_FAILURE_RESOURCES, true);
034c6ed7
LP
2194}
2195
2196static void service_enter_restart(Service *s) {
2197 int r;
398ef8ba
LP
2198 DBusError error;
2199
034c6ed7 2200 assert(s);
398ef8ba 2201 dbus_error_init(&error);
034c6ed7 2202
1124fe6f 2203 if (UNIT(s)->job) {
2edfa366
LP
2204 log_info("Job pending for unit, delaying automatic restart.");
2205
2206 if ((r = unit_watch_timer(UNIT(s), s->restart_usec, &s->timer_watch)) < 0)
2207 goto fail;
2208 }
2209
f42806df 2210 service_enter_dead(s, SERVICE_SUCCESS, false);
9ea9a0c8 2211
1124fe6f 2212 if ((r = manager_add_job(UNIT(s)->manager, JOB_START, UNIT(s), JOB_FAIL, false, &error, NULL)) < 0)
034c6ed7
LP
2213 goto fail;
2214
1124fe6f 2215 log_debug("%s scheduled restart job.", UNIT(s)->id);
034c6ed7
LP
2216 return;
2217
2218fail:
1124fe6f 2219 log_warning("%s failed to schedule restart job: %s", UNIT(s)->id, bus_error(&error, -r));
f42806df 2220 service_enter_dead(s, SERVICE_FAILURE_RESOURCES, false);
398ef8ba
LP
2221
2222 dbus_error_free(&error);
034c6ed7
LP
2223}
2224
2225static void service_enter_reload(Service *s) {
2226 int r;
2227
2228 assert(s);
2229
5e94833f
LP
2230 service_unwatch_control_pid(s);
2231
80876c20 2232 if ((s->control_command = s->exec_command[SERVICE_EXEC_RELOAD])) {
867b3b7d
LP
2233 s->control_command_id = SERVICE_EXEC_RELOAD;
2234
81a2b7ce
LP
2235 if ((r = service_spawn(s,
2236 s->control_command,
2237 true,
2238 false,
2239 !s->permissions_start_only,
2240 !s->root_directory_start_only,
c952c6ec 2241 false,
1e3ad081 2242 false,
e55224ca 2243 &s->control_pid)) < 0)
034c6ed7
LP
2244 goto fail;
2245
80876c20
LP
2246 service_set_state(s, SERVICE_RELOAD);
2247 } else
f42806df 2248 service_enter_running(s, SERVICE_SUCCESS);
034c6ed7
LP
2249
2250 return;
2251
2252fail:
1124fe6f 2253 log_warning("%s failed to run 'reload' task: %s", UNIT(s)->id, strerror(-r));
f42806df
LP
2254 s->reload_result = SERVICE_FAILURE_RESOURCES;
2255 service_enter_running(s, SERVICE_SUCCESS);
034c6ed7
LP
2256}
2257
f42806df 2258static void service_run_next_control(Service *s) {
034c6ed7
LP
2259 int r;
2260
2261 assert(s);
2262 assert(s->control_command);
2263 assert(s->control_command->command_next);
2264
34e9ba66 2265 assert(s->control_command_id != SERVICE_EXEC_START);
034c6ed7 2266
34e9ba66 2267 s->control_command = s->control_command->command_next;
5e94833f
LP
2268 service_unwatch_control_pid(s);
2269
81a2b7ce
LP
2270 if ((r = service_spawn(s,
2271 s->control_command,
2272 true,
2273 false,
2274 !s->permissions_start_only,
2275 !s->root_directory_start_only,
5830833f
LP
2276 s->control_command_id == SERVICE_EXEC_START_PRE ||
2277 s->control_command_id == SERVICE_EXEC_STOP_POST,
1e3ad081 2278 false,
e55224ca 2279 &s->control_pid)) < 0)
034c6ed7
LP
2280 goto fail;
2281
2282 return;
2283
2284fail:
1124fe6f 2285 log_warning("%s failed to run next control task: %s", UNIT(s)->id, strerror(-r));
034c6ed7 2286
80876c20 2287 if (s->state == SERVICE_START_PRE)
f42806df 2288 service_enter_signal(s, SERVICE_FINAL_SIGTERM, SERVICE_FAILURE_RESOURCES);
80876c20 2289 else if (s->state == SERVICE_STOP)
f42806df 2290 service_enter_signal(s, SERVICE_STOP_SIGTERM, SERVICE_FAILURE_RESOURCES);
034c6ed7 2291 else if (s->state == SERVICE_STOP_POST)
f42806df 2292 service_enter_dead(s, SERVICE_FAILURE_RESOURCES, true);
e2f3b44c 2293 else if (s->state == SERVICE_RELOAD) {
f42806df
LP
2294 s->reload_result = SERVICE_FAILURE_RESOURCES;
2295 service_enter_running(s, SERVICE_SUCCESS);
e2f3b44c 2296 } else
f42806df 2297 service_enter_stop(s, SERVICE_FAILURE_RESOURCES);
5cb5a6ff
LP
2298}
2299
f42806df 2300static void service_run_next_main(Service *s) {
34e9ba66
LP
2301 pid_t pid;
2302 int r;
2303
2304 assert(s);
867b3b7d
LP
2305 assert(s->main_command);
2306 assert(s->main_command->command_next);
2307 assert(s->type == SERVICE_ONESHOT);
34e9ba66 2308
867b3b7d 2309 s->main_command = s->main_command->command_next;
34e9ba66
LP
2310 service_unwatch_main_pid(s);
2311
2312 if ((r = service_spawn(s,
867b3b7d 2313 s->main_command,
34e9ba66
LP
2314 false,
2315 true,
2316 true,
2317 true,
2318 true,
2319 s->notify_access != NOTIFY_NONE,
2320 &pid)) < 0)
2321 goto fail;
2322
2323 service_set_main_pid(s, pid);
2324
2325 return;
2326
2327fail:
1124fe6f 2328 log_warning("%s failed to run next main task: %s", UNIT(s)->id, strerror(-r));
f42806df 2329 service_enter_stop(s, SERVICE_FAILURE_RESOURCES);
34e9ba66
LP
2330}
2331
4b939747
MO
2332static int service_start_limit_test(Service *s) {
2333 assert(s);
2334
2335 if (ratelimit_test(&s->start_limit))
2336 return 0;
2337
2338 switch (s->start_limit_action) {
2339
2340 case SERVICE_START_LIMIT_NONE:
2341 log_warning("%s start request repeated too quickly, refusing to start.", UNIT(s)->id);
2342 break;
2343
2344 case SERVICE_START_LIMIT_REBOOT: {
2345 DBusError error;
2346 int r;
2347
2348 dbus_error_init(&error);
2349
2350 log_warning("%s start request repeated too quickly, rebooting.", UNIT(s)->id);
2351
2352 r = manager_add_job_by_name(UNIT(s)->manager, JOB_START, SPECIAL_REBOOT_TARGET, JOB_REPLACE, true, &error, NULL);
2353 if (r < 0) {
2354 log_error("Failed to reboot: %s.", bus_error(&error, r));
2355 dbus_error_free(&error);
2356 }
2357
2358 break;
2359 }
2360
2361 case SERVICE_START_LIMIT_REBOOT_FORCE:
2362 log_warning("%s start request repeated too quickly, force rebooting.", UNIT(s)->id);
2363 UNIT(s)->manager->exit_code = MANAGER_REBOOT;
2364 break;
2365
2366 case SERVICE_START_LIMIT_REBOOT_IMMEDIATE:
2367 log_warning("%s start request repeated too quickly, rebooting immediately.", UNIT(s)->id);
2368 reboot(RB_AUTOBOOT);
2369 break;
2370
2371 default:
2372 log_error("start limit action=%i", s->start_limit_action);
2373 assert_not_reached("Unknown StartLimitAction.");
2374 }
2375
2376 return -ECANCELED;
2377}
2378
87f0e418
LP
2379static int service_start(Unit *u) {
2380 Service *s = SERVICE(u);
4b939747 2381 int r;
5cb5a6ff
LP
2382
2383 assert(s);
2384
034c6ed7
LP
2385 /* We cannot fulfill this request right now, try again later
2386 * please! */
2387 if (s->state == SERVICE_STOP ||
2388 s->state == SERVICE_STOP_SIGTERM ||
2389 s->state == SERVICE_STOP_SIGKILL ||
2390 s->state == SERVICE_STOP_POST ||
2391 s->state == SERVICE_FINAL_SIGTERM ||
2392 s->state == SERVICE_FINAL_SIGKILL)
5cb5a6ff
LP
2393 return -EAGAIN;
2394
034c6ed7
LP
2395 /* Already on it! */
2396 if (s->state == SERVICE_START_PRE ||
2397 s->state == SERVICE_START ||
2398 s->state == SERVICE_START_POST)
2399 return 0;
2400
fdf20a31 2401 assert(s->state == SERVICE_DEAD || s->state == SERVICE_FAILED || s->state == SERVICE_AUTO_RESTART);
5cb5a6ff 2402
1e2e8133 2403 /* Make sure we don't enter a busy loop of some kind. */
4b939747
MO
2404 r = service_start_limit_test(s);
2405 if (r < 0)
2406 return r;
1e2e8133 2407
f42806df
LP
2408 s->result = SERVICE_SUCCESS;
2409 s->reload_result = SERVICE_SUCCESS;
034c6ed7 2410 s->main_pid_known = false;
6dfa5494 2411 s->main_pid_alien = false;
47342320 2412 s->forbid_restart = false;
034c6ed7
LP
2413
2414 service_enter_start_pre(s);
2415 return 0;
5cb5a6ff
LP
2416}
2417
87f0e418
LP
2418static int service_stop(Unit *u) {
2419 Service *s = SERVICE(u);
5cb5a6ff
LP
2420
2421 assert(s);
2422
3f6c78dc
LP
2423 /* This is a user request, so don't do restarts on this
2424 * shutdown. */
47342320 2425 s->forbid_restart = true;
034c6ed7 2426
e537352b
LP
2427 /* Already on it */
2428 if (s->state == SERVICE_STOP ||
2429 s->state == SERVICE_STOP_SIGTERM ||
2430 s->state == SERVICE_STOP_SIGKILL ||
2431 s->state == SERVICE_STOP_POST ||
2432 s->state == SERVICE_FINAL_SIGTERM ||
2433 s->state == SERVICE_FINAL_SIGKILL)
2434 return 0;
2435
3f6c78dc 2436 /* Don't allow a restart */
034c6ed7
LP
2437 if (s->state == SERVICE_AUTO_RESTART) {
2438 service_set_state(s, SERVICE_DEAD);
2439 return 0;
2440 }
2441
3f6c78dc
LP
2442 /* If there's already something running we go directly into
2443 * kill mode. */
2444 if (s->state == SERVICE_START_PRE ||
2445 s->state == SERVICE_START ||
2446 s->state == SERVICE_START_POST ||
2447 s->state == SERVICE_RELOAD) {
f42806df 2448 service_enter_signal(s, SERVICE_STOP_SIGTERM, SERVICE_SUCCESS);
3f6c78dc
LP
2449 return 0;
2450 }
5cb5a6ff 2451
3f6c78dc
LP
2452 assert(s->state == SERVICE_RUNNING ||
2453 s->state == SERVICE_EXITED);
3a762661 2454
f42806df 2455 service_enter_stop(s, SERVICE_SUCCESS);
5cb5a6ff
LP
2456 return 0;
2457}
2458
87f0e418
LP
2459static int service_reload(Unit *u) {
2460 Service *s = SERVICE(u);
034c6ed7
LP
2461
2462 assert(s);
2463
80876c20 2464 assert(s->state == SERVICE_RUNNING || s->state == SERVICE_EXITED);
034c6ed7
LP
2465
2466 service_enter_reload(s);
5cb5a6ff
LP
2467 return 0;
2468}
2469
87f0e418
LP
2470static bool service_can_reload(Unit *u) {
2471 Service *s = SERVICE(u);
034c6ed7
LP
2472
2473 assert(s);
2474
2475 return !!s->exec_command[SERVICE_EXEC_RELOAD];
2476}
2477
a16e1123
LP
2478static int service_serialize(Unit *u, FILE *f, FDSet *fds) {
2479 Service *s = SERVICE(u);
2480
2481 assert(u);
2482 assert(f);
2483 assert(fds);
2484
2485 unit_serialize_item(u, f, "state", service_state_to_string(s->state));
f42806df
LP
2486 unit_serialize_item(u, f, "result", service_result_to_string(s->result));
2487 unit_serialize_item(u, f, "reload-result", service_result_to_string(s->reload_result));
a16e1123
LP
2488
2489 if (s->control_pid > 0)
5925dd3c 2490 unit_serialize_item_format(u, f, "control-pid", "%lu", (unsigned long) s->control_pid);
a16e1123 2491
5925dd3c
LP
2492 if (s->main_pid_known && s->main_pid > 0)
2493 unit_serialize_item_format(u, f, "main-pid", "%lu", (unsigned long) s->main_pid);
a16e1123
LP
2494
2495 unit_serialize_item(u, f, "main-pid-known", yes_no(s->main_pid_known));
2496
3a2776bc
LP
2497 if (s->status_text)
2498 unit_serialize_item(u, f, "status-text", s->status_text);
2499
cfc4eb4c
LP
2500 /* FIXME: There's a minor uncleanliness here: if there are
2501 * multiple commands attached here, we will start from the
2502 * first one again */
a16e1123 2503 if (s->control_command_id >= 0)
825636e5 2504 unit_serialize_item(u, f, "control-command", service_exec_command_to_string(s->control_command_id));
a16e1123
LP
2505
2506 if (s->socket_fd >= 0) {
2507 int copy;
2508
2509 if ((copy = fdset_put_dup(fds, s->socket_fd)) < 0)
2510 return copy;
2511
2512 unit_serialize_item_format(u, f, "socket-fd", "%i", copy);
2513 }
2514
ecdbca40
LP
2515 if (s->main_exec_status.pid > 0) {
2516 unit_serialize_item_format(u, f, "main-exec-status-pid", "%lu", (unsigned long) s->main_exec_status.pid);
799fd0fd
LP
2517 dual_timestamp_serialize(f, "main-exec-status-start", &s->main_exec_status.start_timestamp);
2518 dual_timestamp_serialize(f, "main-exec-status-exit", &s->main_exec_status.exit_timestamp);
ecdbca40 2519
799fd0fd 2520 if (dual_timestamp_is_set(&s->main_exec_status.exit_timestamp)) {
ecdbca40
LP
2521 unit_serialize_item_format(u, f, "main-exec-status-code", "%i", s->main_exec_status.code);
2522 unit_serialize_item_format(u, f, "main-exec-status-status", "%i", s->main_exec_status.status);
2523 }
2524 }
a6927d7f
MO
2525 if (dual_timestamp_is_set(&s->watchdog_timestamp))
2526 dual_timestamp_serialize(f, "watchdog-timestamp", &s->watchdog_timestamp);
ecdbca40 2527
a16e1123
LP
2528 return 0;
2529}
2530
2531static int service_deserialize_item(Unit *u, const char *key, const char *value, FDSet *fds) {
2532 Service *s = SERVICE(u);
a16e1123
LP
2533
2534 assert(u);
2535 assert(key);
2536 assert(value);
2537 assert(fds);
2538
2539 if (streq(key, "state")) {
2540 ServiceState state;
2541
2542 if ((state = service_state_from_string(value)) < 0)
2543 log_debug("Failed to parse state value %s", value);
2544 else
2545 s->deserialized_state = state;
f42806df
LP
2546 } else if (streq(key, "result")) {
2547 ServiceResult f;
2548
2549 f = service_result_from_string(value);
2550 if (f < 0)
2551 log_debug("Failed to parse result value %s", value);
2552 else if (f != SERVICE_SUCCESS)
2553 s->result = f;
2554
2555 } else if (streq(key, "reload-result")) {
2556 ServiceResult f;
2557
2558 f = service_result_from_string(value);
2559 if (f < 0)
2560 log_debug("Failed to parse reload result value %s", value);
2561 else if (f != SERVICE_SUCCESS)
2562 s->reload_result = f;
a16e1123 2563
a16e1123 2564 } else if (streq(key, "control-pid")) {
5925dd3c 2565 pid_t pid;
a16e1123 2566
e364ad06 2567 if (parse_pid(value, &pid) < 0)
a16e1123
LP
2568 log_debug("Failed to parse control-pid value %s", value);
2569 else
e55224ca 2570 s->control_pid = pid;
a16e1123 2571 } else if (streq(key, "main-pid")) {
5925dd3c 2572 pid_t pid;
a16e1123 2573
e364ad06 2574 if (parse_pid(value, &pid) < 0)
a16e1123
LP
2575 log_debug("Failed to parse main-pid value %s", value);
2576 else
5925dd3c 2577 service_set_main_pid(s, (pid_t) pid);
a16e1123
LP
2578 } else if (streq(key, "main-pid-known")) {
2579 int b;
2580
2581 if ((b = parse_boolean(value)) < 0)
2582 log_debug("Failed to parse main-pid-known value %s", value);
2583 else
2584 s->main_pid_known = b;
3a2776bc
LP
2585 } else if (streq(key, "status-text")) {
2586 char *t;
2587
2588 if ((t = strdup(value))) {
2589 free(s->status_text);
2590 s->status_text = t;
2591 }
2592
a16e1123
LP
2593 } else if (streq(key, "control-command")) {
2594 ServiceExecCommand id;
2595
2596 if ((id = service_exec_command_from_string(value)) < 0)
2597 log_debug("Failed to parse exec-command value %s", value);
2598 else {
2599 s->control_command_id = id;
2600 s->control_command = s->exec_command[id];
2601 }
2602 } else if (streq(key, "socket-fd")) {
2603 int fd;
2604
2605 if (safe_atoi(value, &fd) < 0 || fd < 0 || !fdset_contains(fds, fd))
2606 log_debug("Failed to parse socket-fd value %s", value);
2607 else {
2608
2609 if (s->socket_fd >= 0)
2610 close_nointr_nofail(s->socket_fd);
2611 s->socket_fd = fdset_remove(fds, fd);
2612 }
ecdbca40
LP
2613 } else if (streq(key, "main-exec-status-pid")) {
2614 pid_t pid;
2615
e364ad06 2616 if (parse_pid(value, &pid) < 0)
ecdbca40
LP
2617 log_debug("Failed to parse main-exec-status-pid value %s", value);
2618 else
2619 s->main_exec_status.pid = pid;
2620 } else if (streq(key, "main-exec-status-code")) {
2621 int i;
2622
e364ad06 2623 if (safe_atoi(value, &i) < 0)
ecdbca40
LP
2624 log_debug("Failed to parse main-exec-status-code value %s", value);
2625 else
2626 s->main_exec_status.code = i;
2627 } else if (streq(key, "main-exec-status-status")) {
2628 int i;
2629
e364ad06 2630 if (safe_atoi(value, &i) < 0)
ecdbca40
LP
2631 log_debug("Failed to parse main-exec-status-status value %s", value);
2632 else
2633 s->main_exec_status.status = i;
799fd0fd
LP
2634 } else if (streq(key, "main-exec-status-start"))
2635 dual_timestamp_deserialize(value, &s->main_exec_status.start_timestamp);
2636 else if (streq(key, "main-exec-status-exit"))
2637 dual_timestamp_deserialize(value, &s->main_exec_status.exit_timestamp);
a6927d7f
MO
2638 else if (streq(key, "watchdog-timestamp"))
2639 dual_timestamp_deserialize(value, &s->watchdog_timestamp);
799fd0fd 2640 else
a16e1123
LP
2641 log_debug("Unknown serialization key '%s'", key);
2642
2643 return 0;
2644}
2645
87f0e418
LP
2646static UnitActiveState service_active_state(Unit *u) {
2647 assert(u);
5cb5a6ff 2648
acbb0225 2649 return state_translation_table[SERVICE(u)->state];
034c6ed7
LP
2650}
2651
10a94420
LP
2652static const char *service_sub_state_to_string(Unit *u) {
2653 assert(u);
2654
2655 return service_state_to_string(SERVICE(u)->state);
2656}
2657
701cc384
LP
2658static bool service_check_gc(Unit *u) {
2659 Service *s = SERVICE(u);
2660
2661 assert(s);
2662
6d55002a
LP
2663 /* Never clean up services that still have a process around,
2664 * even if the service is formally dead. */
2665 if (cgroup_good(s) > 0 ||
2666 main_pid_good(s) > 0 ||
2667 control_pid_good(s) > 0)
2668 return true;
2669
2670#ifdef HAVE_SYSV_COMPAT
2671 if (s->sysv_path)
2672 return true;
07459bb6 2673#endif
701cc384 2674
6d55002a
LP
2675 return false;
2676}
2677
701cc384
LP
2678static bool service_check_snapshot(Unit *u) {
2679 Service *s = SERVICE(u);
2680
2681 assert(s);
2682
2683 return !s->got_socket_fd;
2684}
2685
3a111838
MS
2686static int service_retry_pid_file(Service *s) {
2687 int r;
2688
2689 assert(s->pid_file);
2690 assert(s->state == SERVICE_START || s->state == SERVICE_START_POST);
2691
2692 r = service_load_pid_file(s, false);
2693 if (r < 0)
2694 return r;
2695
2696 service_unwatch_pid_file(s);
2697
f42806df 2698 service_enter_running(s, SERVICE_SUCCESS);
3a111838
MS
2699 return 0;
2700}
2701
2702static int service_watch_pid_file(Service *s) {
2703 int r;
2704
1124fe6f 2705 log_debug("Setting watch for %s's PID file %s", UNIT(s)->id, s->pid_file_pathspec->path);
57020a3a 2706 r = path_spec_watch(s->pid_file_pathspec, UNIT(s));
3a111838
MS
2707 if (r < 0)
2708 goto fail;
2709
2710 /* the pidfile might have appeared just before we set the watch */
2711 service_retry_pid_file(s);
2712
2713 return 0;
2714fail:
2715 log_error("Failed to set a watch for %s's PID file %s: %s",
1124fe6f 2716 UNIT(s)->id, s->pid_file_pathspec->path, strerror(-r));
3a111838
MS
2717 service_unwatch_pid_file(s);
2718 return r;
2719}
2720
2721static int service_demand_pid_file(Service *s) {
2722 PathSpec *ps;
2723
2724 assert(s->pid_file);
2725 assert(!s->pid_file_pathspec);
2726
2727 ps = new0(PathSpec, 1);
2728 if (!ps)
2729 return -ENOMEM;
2730
2731 ps->path = strdup(s->pid_file);
2732 if (!ps->path) {
2733 free(ps);
2734 return -ENOMEM;
2735 }
2736
2737 path_kill_slashes(ps->path);
2738
2739 /* PATH_CHANGED would not be enough. There are daemons (sendmail) that
2740 * keep their PID file open all the time. */
2741 ps->type = PATH_MODIFIED;
2742 ps->inotify_fd = -1;
2743
2744 s->pid_file_pathspec = ps;
2745
2746 return service_watch_pid_file(s);
2747}
2748
2749static void service_fd_event(Unit *u, int fd, uint32_t events, Watch *w) {
2750 Service *s = SERVICE(u);
2751
2752 assert(s);
2753 assert(fd >= 0);
2754 assert(s->state == SERVICE_START || s->state == SERVICE_START_POST);
2755 assert(s->pid_file_pathspec);
57020a3a 2756 assert(path_spec_owns_inotify_fd(s->pid_file_pathspec, fd));
3a111838 2757
ac155bb8 2758 log_debug("inotify event for %s", u->id);
3a111838 2759
57020a3a 2760 if (path_spec_fd_event(s->pid_file_pathspec, events) < 0)
3a111838
MS
2761 goto fail;
2762
2763 if (service_retry_pid_file(s) == 0)
2764 return;
2765
2766 if (service_watch_pid_file(s) < 0)
2767 goto fail;
2768
2769 return;
2770fail:
2771 service_unwatch_pid_file(s);
f42806df 2772 service_enter_signal(s, SERVICE_STOP_SIGTERM, SERVICE_FAILURE_RESOURCES);
3a111838
MS
2773}
2774
87f0e418
LP
2775static void service_sigchld_event(Unit *u, pid_t pid, int code, int status) {
2776 Service *s = SERVICE(u);
f42806df 2777 ServiceResult f;
5cb5a6ff
LP
2778
2779 assert(s);
034c6ed7
LP
2780 assert(pid >= 0);
2781
f42806df
LP
2782 if (UNIT(s)->fragment_path ? is_clean_exit(code, status) : is_clean_exit_lsb(code, status))
2783 f = SERVICE_SUCCESS;
2784 else if (code == CLD_EXITED)
2785 f = SERVICE_FAILURE_EXIT_CODE;
2786 else if (code == CLD_KILLED)
2787 f = SERVICE_FAILURE_SIGNAL;
2788 else if (code == CLD_DUMPED)
2789 f = SERVICE_FAILURE_CORE_DUMP;
d06dacd0 2790 else
cfc4eb4c 2791 assert_not_reached("Unknown code");
034c6ed7
LP
2792
2793 if (s->main_pid == pid) {
db01f8b3
MS
2794 /* Forking services may occasionally move to a new PID.
2795 * As long as they update the PID file before exiting the old
2796 * PID, they're fine. */
5375410b 2797 if (service_load_pid_file(s, false) == 0)
db01f8b3 2798 return;
034c6ed7 2799
034c6ed7 2800 s->main_pid = 0;
6ea832a2 2801 exec_status_exit(&s->main_exec_status, &s->exec_context, pid, code, status);
034c6ed7 2802
867b3b7d
LP
2803 /* If this is not a forking service than the main
2804 * process got started and hence we copy the exit
2805 * status so that it is recorded both as main and as
2806 * control process exit status */
2807 if (s->main_command) {
2808 s->main_command->exec_status = s->main_exec_status;
b708e7ce 2809
867b3b7d 2810 if (s->main_command->ignore)
f42806df 2811 f = SERVICE_SUCCESS;
034c6ed7
LP
2812 }
2813
f42806df 2814 log_full(f == SERVICE_SUCCESS ? LOG_DEBUG : LOG_NOTICE,
ac155bb8 2815 "%s: main process exited, code=%s, status=%i", u->id, sigchld_code_to_string(code), status);
f42806df
LP
2816
2817 if (f != SERVICE_SUCCESS)
2818 s->result = f;
034c6ed7 2819
867b3b7d
LP
2820 if (s->main_command &&
2821 s->main_command->command_next &&
f42806df 2822 f == SERVICE_SUCCESS) {
034c6ed7 2823
34e9ba66
LP
2824 /* There is another command to *
2825 * execute, so let's do that. */
034c6ed7 2826
ac155bb8 2827 log_debug("%s running next main command for state %s", u->id, service_state_to_string(s->state));
f42806df 2828 service_run_next_main(s);
034c6ed7 2829
34e9ba66
LP
2830 } else {
2831
2832 /* The service exited, so the service is officially
2833 * gone. */
867b3b7d 2834 s->main_command = NULL;
34e9ba66
LP
2835
2836 switch (s->state) {
2837
2838 case SERVICE_START_POST:
2839 case SERVICE_RELOAD:
2840 case SERVICE_STOP:
2841 /* Need to wait until the operation is
2842 * done */
c4653a4d 2843 break;
7d55e835 2844
34e9ba66
LP
2845 case SERVICE_START:
2846 if (s->type == SERVICE_ONESHOT) {
2847 /* This was our main goal, so let's go on */
f42806df 2848 if (f == SERVICE_SUCCESS)
34e9ba66
LP
2849 service_enter_start_post(s);
2850 else
f42806df 2851 service_enter_signal(s, SERVICE_FINAL_SIGTERM, f);
34e9ba66
LP
2852 break;
2853 } else {
2854 assert(s->type == SERVICE_DBUS || s->type == SERVICE_NOTIFY);
7d55e835 2855
34e9ba66
LP
2856 /* Fall through */
2857 }
034c6ed7 2858
34e9ba66 2859 case SERVICE_RUNNING:
f42806df 2860 service_enter_running(s, f);
34e9ba66 2861 break;
034c6ed7 2862
34e9ba66
LP
2863 case SERVICE_STOP_SIGTERM:
2864 case SERVICE_STOP_SIGKILL:
5cb5a6ff 2865
34e9ba66 2866 if (!control_pid_good(s))
f42806df 2867 service_enter_stop_post(s, f);
5cb5a6ff 2868
34e9ba66
LP
2869 /* If there is still a control process, wait for that first */
2870 break;
2871
2872 default:
2873 assert_not_reached("Uh, main process died at wrong time.");
2874 }
034c6ed7 2875 }
5cb5a6ff 2876
034c6ed7 2877 } else if (s->control_pid == pid) {
034c6ed7 2878
34e9ba66
LP
2879 s->control_pid = 0;
2880
b708e7ce 2881 if (s->control_command) {
6ea832a2 2882 exec_status_exit(&s->control_command->exec_status, &s->exec_context, pid, code, status);
a16e1123 2883
b708e7ce 2884 if (s->control_command->ignore)
f42806df 2885 f = SERVICE_SUCCESS;
b708e7ce
LP
2886 }
2887
f42806df 2888 log_full(f == SERVICE_SUCCESS ? LOG_DEBUG : LOG_NOTICE,
ac155bb8 2889 "%s: control process exited, code=%s status=%i", u->id, sigchld_code_to_string(code), status);
f42806df
LP
2890
2891 if (f != SERVICE_SUCCESS)
2892 s->result = f;
034c6ed7 2893
34e9ba66
LP
2894 if (s->control_command &&
2895 s->control_command->command_next &&
f42806df 2896 f == SERVICE_SUCCESS) {
034c6ed7
LP
2897
2898 /* There is another command to *
2899 * execute, so let's do that. */
2900
ac155bb8 2901 log_debug("%s running next control command for state %s", u->id, service_state_to_string(s->state));
f42806df 2902 service_run_next_control(s);
034c6ed7 2903
80876c20 2904 } else {
034c6ed7
LP
2905 /* No further commands for this step, so let's
2906 * figure out what to do next */
2907
a16e1123
LP
2908 s->control_command = NULL;
2909 s->control_command_id = _SERVICE_EXEC_COMMAND_INVALID;
2910
ac155bb8 2911 log_debug("%s got final SIGCHLD for state %s", u->id, service_state_to_string(s->state));
bd982a8b 2912
034c6ed7
LP
2913 switch (s->state) {
2914
2915 case SERVICE_START_PRE:
f42806df 2916 if (f == SERVICE_SUCCESS)
034c6ed7
LP
2917 service_enter_start(s);
2918 else
f42806df 2919 service_enter_signal(s, SERVICE_FINAL_SIGTERM, f);
034c6ed7
LP
2920 break;
2921
2922 case SERVICE_START:
2923 assert(s->type == SERVICE_FORKING);
2924
f42806df
LP
2925 if (f != SERVICE_SUCCESS) {
2926 service_enter_signal(s, SERVICE_FINAL_SIGTERM, f);
3a111838
MS
2927 break;
2928 }
034c6ed7 2929
3a111838 2930 if (s->pid_file) {
f42806df
LP
2931 bool has_start_post;
2932 int r;
2933
3a111838
MS
2934 /* Let's try to load the pid file here if we can.
2935 * The PID file might actually be created by a START_POST
2936 * script. In that case don't worry if the loading fails. */
f42806df
LP
2937
2938 has_start_post = !!s->exec_command[SERVICE_EXEC_START_POST];
2939 r = service_load_pid_file(s, !has_start_post);
3a111838
MS
2940 if (!has_start_post && r < 0) {
2941 r = service_demand_pid_file(s);
2942 if (r < 0 || !cgroup_good(s))
f42806df 2943 service_enter_signal(s, SERVICE_FINAL_SIGTERM, SERVICE_FAILURE_RESOURCES);
3a111838
MS
2944 break;
2945 }
034c6ed7 2946 } else
3a111838 2947 service_search_main_pid(s);
034c6ed7 2948
3a111838 2949 service_enter_start_post(s);
034c6ed7
LP
2950 break;
2951
2952 case SERVICE_START_POST:
f42806df
LP
2953 if (f != SERVICE_SUCCESS) {
2954 service_enter_stop(s, f);
2096e009 2955 break;
034c6ed7
LP
2956 }
2957
2096e009 2958 if (s->pid_file) {
f42806df
LP
2959 int r;
2960
2961 r = service_load_pid_file(s, true);
2096e009
MS
2962 if (r < 0) {
2963 r = service_demand_pid_file(s);
2964 if (r < 0 || !cgroup_good(s))
f42806df 2965 service_enter_stop(s, SERVICE_FAILURE_RESOURCES);
2096e009
MS
2966 break;
2967 }
2968 } else
2969 service_search_main_pid(s);
2970
f42806df 2971 service_enter_running(s, SERVICE_SUCCESS);
3185a36b 2972 break;
034c6ed7
LP
2973
2974 case SERVICE_RELOAD:
f42806df 2975 if (f == SERVICE_SUCCESS) {
5375410b 2976 service_load_pid_file(s, true);
3185a36b
LP
2977 service_search_main_pid(s);
2978 }
2979
f42806df
LP
2980 s->reload_result = f;
2981 service_enter_running(s, SERVICE_SUCCESS);
034c6ed7
LP
2982 break;
2983
2984 case SERVICE_STOP:
f42806df 2985 service_enter_signal(s, SERVICE_STOP_SIGTERM, f);
034c6ed7
LP
2986 break;
2987
2988 case SERVICE_STOP_SIGTERM:
2989 case SERVICE_STOP_SIGKILL:
2990 if (main_pid_good(s) <= 0)
f42806df 2991 service_enter_stop_post(s, f);
034c6ed7
LP
2992
2993 /* If there is still a service
2994 * process around, wait until
2995 * that one quit, too */
2996 break;
2997
2998 case SERVICE_STOP_POST:
2999 case SERVICE_FINAL_SIGTERM:
3000 case SERVICE_FINAL_SIGKILL:
f42806df 3001 service_enter_dead(s, f, true);
034c6ed7
LP
3002 break;
3003
3004 default:
3005 assert_not_reached("Uh, control process died at wrong time.");
3006 }
3007 }
8c47c732 3008 }
c4e2ceae
LP
3009
3010 /* Notify clients about changed exit status */
3011 unit_add_to_dbus_queue(u);
034c6ed7
LP
3012}
3013
acbb0225 3014static void service_timer_event(Unit *u, uint64_t elapsed, Watch* w) {
87f0e418 3015 Service *s = SERVICE(u);
034c6ed7
LP
3016
3017 assert(s);
3018 assert(elapsed == 1);
3019
bb242b7b
MO
3020 if (w == &s->watchdog_watch) {
3021 service_handle_watchdog(s);
3022 return;
3023 }
3024
acbb0225 3025 assert(w == &s->timer_watch);
034c6ed7
LP
3026
3027 switch (s->state) {
3028
3029 case SERVICE_START_PRE:
3030 case SERVICE_START:
ac155bb8 3031 log_warning("%s operation timed out. Terminating.", u->id);
f42806df 3032 service_enter_signal(s, SERVICE_FINAL_SIGTERM, SERVICE_FAILURE_TIMEOUT);
80876c20
LP
3033 break;
3034
034c6ed7 3035 case SERVICE_START_POST:
ac155bb8 3036 log_warning("%s operation timed out. Stopping.", u->id);
f42806df 3037 service_enter_stop(s, SERVICE_FAILURE_TIMEOUT);
034c6ed7
LP
3038 break;
3039
e2f3b44c 3040 case SERVICE_RELOAD:
ac155bb8 3041 log_warning("%s operation timed out. Stopping.", u->id);
f42806df
LP
3042 s->reload_result = SERVICE_FAILURE_TIMEOUT;
3043 service_enter_running(s, SERVICE_SUCCESS);
e2f3b44c
LP
3044 break;
3045
034c6ed7 3046 case SERVICE_STOP:
ac155bb8 3047 log_warning("%s stopping timed out. Terminating.", u->id);
f42806df 3048 service_enter_signal(s, SERVICE_STOP_SIGTERM, SERVICE_FAILURE_TIMEOUT);
034c6ed7
LP
3049 break;
3050
3051 case SERVICE_STOP_SIGTERM:
ba035df2 3052 if (s->exec_context.send_sigkill) {
ac155bb8 3053 log_warning("%s stopping timed out. Killing.", u->id);
f42806df 3054 service_enter_signal(s, SERVICE_STOP_SIGKILL, SERVICE_FAILURE_TIMEOUT);
ba035df2 3055 } else {
ac155bb8 3056 log_warning("%s stopping timed out. Skipping SIGKILL.", u->id);
f42806df 3057 service_enter_stop_post(s, SERVICE_FAILURE_TIMEOUT);
ba035df2
LP
3058 }
3059
034c6ed7
LP
3060 break;
3061
3062 case SERVICE_STOP_SIGKILL:
35b8ca3a 3063 /* Uh, we sent a SIGKILL and it is still not gone?
034c6ed7
LP
3064 * Must be something we cannot kill, so let's just be
3065 * weirded out and continue */
3066
ac155bb8 3067 log_warning("%s still around after SIGKILL. Ignoring.", u->id);
f42806df 3068 service_enter_stop_post(s, SERVICE_FAILURE_TIMEOUT);
034c6ed7
LP
3069 break;
3070
3071 case SERVICE_STOP_POST:
ac155bb8 3072 log_warning("%s stopping timed out (2). Terminating.", u->id);
f42806df 3073 service_enter_signal(s, SERVICE_FINAL_SIGTERM, SERVICE_FAILURE_TIMEOUT);
034c6ed7
LP
3074 break;
3075
3076 case SERVICE_FINAL_SIGTERM:
ba035df2 3077 if (s->exec_context.send_sigkill) {
ac155bb8 3078 log_warning("%s stopping timed out (2). Killing.", u->id);
f42806df 3079 service_enter_signal(s, SERVICE_FINAL_SIGKILL, SERVICE_FAILURE_TIMEOUT);
ba035df2 3080 } else {
ac155bb8 3081 log_warning("%s stopping timed out (2). Skipping SIGKILL. Entering failed mode.", u->id);
f42806df 3082 service_enter_dead(s, SERVICE_FAILURE_TIMEOUT, false);
ba035df2
LP
3083 }
3084
034c6ed7
LP
3085 break;
3086
3087 case SERVICE_FINAL_SIGKILL:
ac155bb8 3088 log_warning("%s still around after SIGKILL (2). Entering failed mode.", u->id);
f42806df 3089 service_enter_dead(s, SERVICE_FAILURE_TIMEOUT, true);
034c6ed7
LP
3090 break;
3091
3092 case SERVICE_AUTO_RESTART:
ac155bb8 3093 log_info("%s holdoff time over, scheduling restart.", u->id);
034c6ed7
LP
3094 service_enter_restart(s);
3095 break;
3096
3097 default:
3098 assert_not_reached("Timeout at wrong time.");
3099 }
5cb5a6ff
LP
3100}
3101
8e274523
LP
3102static void service_cgroup_notify_event(Unit *u) {
3103 Service *s = SERVICE(u);
3104
3105 assert(u);
3106
ac155bb8 3107 log_debug("%s: cgroup is empty", u->id);
8e274523
LP
3108
3109 switch (s->state) {
3110
3111 /* Waiting for SIGCHLD is usually more interesting,
3112 * because it includes return codes/signals. Which is
3113 * why we ignore the cgroup events for most cases,
3114 * except when we don't know pid which to expect the
3115 * SIGCHLD for. */
3116
3a111838
MS
3117 case SERVICE_START:
3118 case SERVICE_START_POST:
3119 /* If we were hoping for the daemon to write its PID file,
3120 * we can give up now. */
3121 if (s->pid_file_pathspec) {
1124fe6f 3122 log_warning("%s never wrote its PID file. Failing.", UNIT(s)->id);
3a111838
MS
3123 service_unwatch_pid_file(s);
3124 if (s->state == SERVICE_START)
f42806df 3125 service_enter_signal(s, SERVICE_FINAL_SIGTERM, SERVICE_FAILURE_RESOURCES);
3a111838 3126 else
f42806df 3127 service_enter_stop(s, SERVICE_FAILURE_RESOURCES);
3a111838
MS
3128 }
3129 break;
3130
8e274523 3131 case SERVICE_RUNNING:
f42806df
LP
3132 /* service_enter_running() will figure out what to do */
3133 service_enter_running(s, SERVICE_SUCCESS);
8e274523
LP
3134 break;
3135
28708d8a
LP
3136 case SERVICE_STOP_SIGTERM:
3137 case SERVICE_STOP_SIGKILL:
6dfa5494 3138
28708d8a 3139 if (main_pid_good(s) <= 0 && !control_pid_good(s))
f42806df 3140 service_enter_stop_post(s, SERVICE_SUCCESS);
28708d8a
LP
3141
3142 break;
3143
7f97f0fe
LP
3144 case SERVICE_FINAL_SIGTERM:
3145 case SERVICE_FINAL_SIGKILL:
3146 if (main_pid_good(s) <= 0 && !control_pid_good(s))
f42806df 3147 service_enter_dead(s, SERVICE_SUCCESS, SERVICE_SUCCESS);
7f97f0fe
LP
3148
3149 break;
3150
8e274523
LP
3151 default:
3152 ;
3153 }
3154}
3155
c952c6ec 3156static void service_notify_message(Unit *u, pid_t pid, char **tags) {
8c47c732
LP
3157 Service *s = SERVICE(u);
3158 const char *e;
3159
3160 assert(u);
3161
c952c6ec
LP
3162 if (s->notify_access == NOTIFY_NONE) {
3163 log_warning("%s: Got notification message from PID %lu, but reception is disabled.",
ac155bb8 3164 u->id, (unsigned long) pid);
c952c6ec
LP
3165 return;
3166 }
3167
3168 if (s->notify_access == NOTIFY_MAIN && pid != s->main_pid) {
3169 log_warning("%s: Got notification message from PID %lu, but reception only permitted for PID %lu",
ac155bb8 3170 u->id, (unsigned long) pid, (unsigned long) s->main_pid);
c952c6ec
LP
3171 return;
3172 }
3173
ac155bb8 3174 log_debug("%s: Got message", u->id);
8c47c732
LP
3175
3176 /* Interpret MAINPID= */
3177 if ((e = strv_find_prefix(tags, "MAINPID=")) &&
3178 (s->state == SERVICE_START ||
3179 s->state == SERVICE_START_POST ||
3180 s->state == SERVICE_RUNNING ||
3181 s->state == SERVICE_RELOAD)) {
8c47c732 3182
5925dd3c 3183 if (parse_pid(e + 8, &pid) < 0)
92abbefb 3184 log_warning("Failed to parse notification message %s", e);
8c47c732 3185 else {
ac155bb8 3186 log_debug("%s: got %s", u->id, e);
5925dd3c 3187 service_set_main_pid(s, pid);
8c47c732
LP
3188 }
3189 }
3190
3191 /* Interpret READY= */
3192 if (s->type == SERVICE_NOTIFY &&
3193 s->state == SERVICE_START &&
3194 strv_find(tags, "READY=1")) {
ac155bb8 3195 log_debug("%s: got READY=1", u->id);
8c47c732
LP
3196
3197 service_enter_start_post(s);
3198 }
3199
3200 /* Interpret STATUS= */
3201 if ((e = strv_find_prefix(tags, "STATUS="))) {
3202 char *t;
3203
3a2776bc
LP
3204 if (e[7]) {
3205 if (!(t = strdup(e+7))) {
3206 log_error("Failed to allocate string.");
3207 return;
3208 }
3209
ac155bb8 3210 log_debug("%s: got %s", u->id, e);
8c47c732 3211
3a2776bc
LP
3212 free(s->status_text);
3213 s->status_text = t;
3214 } else {
3215 free(s->status_text);
3216 s->status_text = NULL;
3217 }
8c47c732 3218
8c47c732 3219 }
a6927d7f
MO
3220 if (strv_find(tags, "WATCHDOG=1")) {
3221 log_debug("%s: got WATCHDOG=1", u->id);
3222 service_reset_watchdog(s);
3223 }
c4e2ceae
LP
3224
3225 /* Notify clients about changed status or main pid */
3226 unit_add_to_dbus_queue(u);
8c47c732
LP
3227}
3228
07459bb6 3229#ifdef HAVE_SYSV_COMPAT
de3910a3
FC
3230
3231#ifdef TARGET_SUSE
3232static void sysv_facility_in_insserv_conf(Manager *mgr) {
3233 FILE *f=NULL;
3234 int r;
3235
3236 if (!(f = fopen("/etc/insserv.conf", "re"))) {
3237 r = errno == ENOENT ? 0 : -errno;
3238 goto finish;
3239 }
3240
3241 while (!feof(f)) {
3242 char l[LINE_MAX], *t;
3243 char **parsed = NULL;
3244
3245 if (!fgets(l, sizeof(l), f)) {
3246 if (feof(f))
3247 break;
3248
3249 r = -errno;
3250 log_error("Failed to read configuration file '/etc/insserv.conf': %s", strerror(-r));
3251 goto finish;
3252 }
3253
3254 t = strstrip(l);
3255 if (*t != '$' && *t != '<')
3256 continue;
3257
3258 parsed = strv_split(t,WHITESPACE);
3259 /* we ignore <interactive>, not used, equivalent to X-Interactive */
3260 if (parsed && !startswith_no_case (parsed[0], "<interactive>")) {
3261 char *facility;
3262 Unit *u;
3263 if (sysv_translate_facility(parsed[0], NULL, &facility) < 0)
3264 continue;
ac155bb8 3265 if ((u = manager_get_unit(mgr, facility)) && (u->type == UNIT_TARGET)) {
de3910a3
FC
3266 UnitDependency e;
3267 char *dep = NULL, *name, **j;
3268
3269 STRV_FOREACH (j, parsed+1) {
3270 if (*j[0]=='+') {
3271 e = UNIT_WANTS;
3272 name = *j+1;
3273 }
3274 else {
3275 e = UNIT_REQUIRES;
3276 name = *j;
3277 }
3278 if (sysv_translate_facility(name, NULL, &dep) < 0)
3279 continue;
3280
3281 r = unit_add_two_dependencies_by_name(u, UNIT_BEFORE, e, dep, NULL, true);
3282 free(dep);
3283 }
3284 }
3285 free(facility);
3286 }
3287 strv_free(parsed);
3288 }
3289finish:
3290 if (f)
3291 fclose(f);
3292
3293}
3294#endif
3295
2c4104f0 3296static int service_enumerate(Manager *m) {
2c4104f0
LP
3297 char **p;
3298 unsigned i;
3299 DIR *d = NULL;
3300 char *path = NULL, *fpath = NULL, *name = NULL;
c68364b7
LP
3301 Set *runlevel_services[ELEMENTSOF(rcnd_table)], *shutdown_services = NULL;
3302 Unit *service;
3303 Iterator j;
2c4104f0
LP
3304 int r;
3305
3306 assert(m);
3307
b1bc08e5
LP
3308 if (m->running_as != MANAGER_SYSTEM)
3309 return 0;
3310
c68364b7
LP
3311 zero(runlevel_services);
3312
84e3543e 3313 STRV_FOREACH(p, m->lookup_paths.sysvrcnd_path)
09cd1ab1 3314 for (i = 0; i < ELEMENTSOF(rcnd_table); i ++) {
2c4104f0
LP
3315 struct dirent *de;
3316
3317 free(path);
70132bd0
LP
3318 path = join(*p, "/", rcnd_table[i].path, NULL);
3319 if (!path) {
2c4104f0
LP
3320 r = -ENOMEM;
3321 goto finish;
3322 }
3323
3324 if (d)
3325 closedir(d);
3326
3327 if (!(d = opendir(path))) {
3328 if (errno != ENOENT)
3329 log_warning("opendir() failed on %s: %s", path, strerror(errno));
3330
3331 continue;
3332 }
3333
3334 while ((de = readdir(d))) {
db06e3b6 3335 int a, b;
2c4104f0
LP
3336
3337 if (ignore_file(de->d_name))
3338 continue;
3339
3340 if (de->d_name[0] != 'S' && de->d_name[0] != 'K')
3341 continue;
3342
3343 if (strlen(de->d_name) < 4)
3344 continue;
3345
db06e3b6
LP
3346 a = undecchar(de->d_name[1]);
3347 b = undecchar(de->d_name[2]);
3348
3349 if (a < 0 || b < 0)
3350 continue;
3351
2c4104f0 3352 free(fpath);
44d91056 3353 fpath = join(path, "/", de->d_name, NULL);
8ea913b2 3354 if (!fpath) {
2c4104f0
LP
3355 r = -ENOMEM;
3356 goto finish;
3357 }
3358
3359 if (access(fpath, X_OK) < 0) {
3360
3361 if (errno != ENOENT)
3362 log_warning("access() failed on %s: %s", fpath, strerror(errno));
3363
3364 continue;
3365 }
3366
3367 free(name);
b7ccee3c 3368 if (!(name = sysv_translate_name(de->d_name + 3))) {
2c4104f0
LP
3369 r = -ENOMEM;
3370 goto finish;
3371 }
3372
398ef8ba 3373 if ((r = manager_load_unit_prepare(m, name, NULL, NULL, &service)) < 0) {
fbe9f3a9
LP
3374 log_warning("Failed to prepare unit %s: %s", name, strerror(-r));
3375 continue;
3376 }
2c4104f0 3377
c68364b7
LP
3378 if (de->d_name[0] == 'S') {
3379
f73d93a4 3380 if (rcnd_table[i].type == RUNLEVEL_UP || rcnd_table[i].type == RUNLEVEL_SYSINIT) {
ea87ca5a
LP
3381 SERVICE(service)->sysv_start_priority_from_rcnd =
3382 MAX(a*10 + b, SERVICE(service)->sysv_start_priority_from_rcnd);
db06e3b6 3383
c68364b7 3384 SERVICE(service)->sysv_enabled = true;
f73d93a4 3385 }
db06e3b6 3386
c68364b7
LP
3387 if ((r = set_ensure_allocated(&runlevel_services[i], trivial_hash_func, trivial_compare_func)) < 0)
3388 goto finish;
2c4104f0 3389
c68364b7 3390 if ((r = set_put(runlevel_services[i], service)) < 0)
2c4104f0 3391 goto finish;
23a177ef 3392
fc5df99e
LP
3393 } else if (de->d_name[0] == 'K' &&
3394 (rcnd_table[i].type == RUNLEVEL_DOWN ||
3395 rcnd_table[i].type == RUNLEVEL_SYSINIT)) {
6542952f 3396
c68364b7
LP
3397 if ((r = set_ensure_allocated(&shutdown_services, trivial_hash_func, trivial_compare_func)) < 0)
3398 goto finish;
3399
3400 if ((r = set_put(shutdown_services, service)) < 0)
2c4104f0
LP
3401 goto finish;
3402 }
3403 }
3404 }
3405
c68364b7
LP
3406 /* Now we loaded all stubs and are aware of the lowest
3407 start-up priority for all services, not let's actually load
3408 the services, this will also tell us which services are
3409 actually native now */
3410 manager_dispatch_load_queue(m);
3411
3412 /* If this is a native service, rely on native ways to pull in
3413 * a service, don't pull it in via sysv rcN.d links. */
3414 for (i = 0; i < ELEMENTSOF(rcnd_table); i ++)
3415 SET_FOREACH(service, runlevel_services[i], j) {
3416 service = unit_follow_merge(service);
3417
ac155bb8 3418 if (service->fragment_path)
c68364b7
LP
3419 continue;
3420
3421 if ((r = unit_add_two_dependencies_by_name_inverse(service, UNIT_AFTER, UNIT_WANTS, rcnd_table[i].target, NULL, true)) < 0)
3422 goto finish;
3423 }
3424
3425 /* We honour K links only for halt/reboot. For the normal
3426 * runlevels we assume the stop jobs will be implicitly added
35b8ca3a 3427 * by the core logic. Also, we don't really distinguish here
c68364b7
LP
3428 * between the runlevels 0 and 6 and just add them to the
3429 * special shutdown target. On SUSE the boot.d/ runlevel is
3430 * also used for shutdown, so we add links for that too to the
3431 * shutdown target.*/
3432 SET_FOREACH(service, shutdown_services, j) {
3433 service = unit_follow_merge(service);
3434
ac155bb8 3435 if (service->fragment_path)
c68364b7
LP
3436 continue;
3437
ead8e478 3438 if ((r = unit_add_two_dependencies_by_name(service, UNIT_BEFORE, UNIT_CONFLICTS, SPECIAL_SHUTDOWN_TARGET, NULL, true)) < 0)
c68364b7
LP
3439 goto finish;
3440 }
3441
2c4104f0
LP
3442 r = 0;
3443
de3910a3 3444#ifdef TARGET_SUSE
3a111838 3445 sysv_facility_in_insserv_conf (m);
de3910a3
FC
3446#endif
3447
2c4104f0
LP
3448finish:
3449 free(path);
3450 free(fpath);
3451 free(name);
fbe9f3a9 3452
c68364b7
LP
3453 for (i = 0; i < ELEMENTSOF(rcnd_table); i++)
3454 set_free(runlevel_services[i]);
3455 set_free(shutdown_services);
3456
fbe9f3a9
LP
3457 if (d)
3458 closedir(d);
2c4104f0
LP
3459
3460 return r;
3461}
07459bb6 3462#endif
2c4104f0 3463
05e343b7
LP
3464static void service_bus_name_owner_change(
3465 Unit *u,
3466 const char *name,
3467 const char *old_owner,
3468 const char *new_owner) {
3469
3470 Service *s = SERVICE(u);
3471
3472 assert(s);
3473 assert(name);
3474
3475 assert(streq(s->bus_name, name));
3476 assert(old_owner || new_owner);
3477
3478 if (old_owner && new_owner)
ac155bb8 3479 log_debug("%s's D-Bus name %s changed owner from %s to %s", u->id, name, old_owner, new_owner);
05e343b7 3480 else if (old_owner)
ac155bb8 3481 log_debug("%s's D-Bus name %s no longer registered by %s", u->id, name, old_owner);
05e343b7 3482 else
ac155bb8 3483 log_debug("%s's D-Bus name %s now registered by %s", u->id, name, new_owner);
05e343b7
LP
3484
3485 s->bus_name_good = !!new_owner;
3486
3487 if (s->type == SERVICE_DBUS) {
3488
3489 /* service_enter_running() will figure out what to
3490 * do */
3491 if (s->state == SERVICE_RUNNING)
f42806df 3492 service_enter_running(s, SERVICE_SUCCESS);
05e343b7
LP
3493 else if (s->state == SERVICE_START && new_owner)
3494 service_enter_start_post(s);
3495
3496 } else if (new_owner &&
3497 s->main_pid <= 0 &&
3498 (s->state == SERVICE_START ||
3499 s->state == SERVICE_START_POST ||
3500 s->state == SERVICE_RUNNING ||
3501 s->state == SERVICE_RELOAD)) {
3502
3503 /* Try to acquire PID from bus service */
3504 log_debug("Trying to acquire PID from D-Bus name...");
3505
ac155bb8 3506 bus_query_pid(u->manager, name);
05e343b7
LP
3507 }
3508}
3509
3510static void service_bus_query_pid_done(
3511 Unit *u,
3512 const char *name,
3513 pid_t pid) {
3514
3515 Service *s = SERVICE(u);
3516
3517 assert(s);
3518 assert(name);
3519
ac155bb8 3520 log_debug("%s's D-Bus name %s is now owned by process %u", u->id, name, (unsigned) pid);
05e343b7
LP
3521
3522 if (s->main_pid <= 0 &&
3523 (s->state == SERVICE_START ||
3524 s->state == SERVICE_START_POST ||
3525 s->state == SERVICE_RUNNING ||
3526 s->state == SERVICE_RELOAD))
5925dd3c 3527 service_set_main_pid(s, pid);
05e343b7
LP
3528}
3529
6cf6bbc2 3530int service_set_socket_fd(Service *s, int fd, Socket *sock) {
57020a3a 3531
4f2d528d
LP
3532 assert(s);
3533 assert(fd >= 0);
3534
3535 /* This is called by the socket code when instantiating a new
3536 * service for a stream socket and the socket needs to be
3537 * configured. */
3538
1124fe6f 3539 if (UNIT(s)->load_state != UNIT_LOADED)
4f2d528d
LP
3540 return -EINVAL;
3541
3542 if (s->socket_fd >= 0)
3543 return -EBUSY;
3544
3545 if (s->state != SERVICE_DEAD)
3546 return -EAGAIN;
3547
3548 s->socket_fd = fd;
701cc384 3549 s->got_socket_fd = true;
6cf6bbc2 3550
57020a3a
LP
3551 unit_ref_set(&s->accept_socket, UNIT(sock));
3552
3553 return unit_add_two_dependencies(UNIT(sock), UNIT_BEFORE, UNIT_TRIGGERS, UNIT(s), false);
4f2d528d
LP
3554}
3555
fdf20a31 3556static void service_reset_failed(Unit *u) {
5632e374
LP
3557 Service *s = SERVICE(u);
3558
3559 assert(s);
3560
fdf20a31 3561 if (s->state == SERVICE_FAILED)
5632e374
LP
3562 service_set_state(s, SERVICE_DEAD);
3563
f42806df
LP
3564 s->result = SERVICE_SUCCESS;
3565 s->reload_result = SERVICE_SUCCESS;
5632e374
LP
3566}
3567
5f4b19f4
LP
3568static bool service_need_daemon_reload(Unit *u) {
3569 Service *s = SERVICE(u);
3570
3571 assert(s);
3572
3573#ifdef HAVE_SYSV_COMPAT
3574 if (s->sysv_path) {
3575 struct stat st;
3576
3577 zero(st);
3578 if (stat(s->sysv_path, &st) < 0)
3579 /* What, cannot access this anymore? */
3580 return true;
3581
3582 if (s->sysv_mtime > 0 &&
3583 timespec_load(&st.st_mtim) != s->sysv_mtime)
3584 return true;
3585 }
3586#endif
3587
3588 return false;
3589}
3590
8a0867d6
LP
3591static int service_kill(Unit *u, KillWho who, KillMode mode, int signo, DBusError *error) {
3592 Service *s = SERVICE(u);
3593 int r = 0;
3594 Set *pid_set = NULL;
3595
3596 assert(s);
3597
3598 if (s->main_pid <= 0 && who == KILL_MAIN) {
3599 dbus_set_error(error, BUS_ERROR_NO_SUCH_PROCESS, "No main process to kill");
a17204af 3600 return -ESRCH;
8a0867d6
LP
3601 }
3602
3603 if (s->control_pid <= 0 && who == KILL_CONTROL) {
3604 dbus_set_error(error, BUS_ERROR_NO_SUCH_PROCESS, "No control process to kill");
a17204af 3605 return -ESRCH;
8a0867d6
LP
3606 }
3607
3611581e
LP
3608 if (who == KILL_CONTROL || who == KILL_ALL)
3609 if (s->control_pid > 0)
3610 if (kill(s->control_pid, signo) < 0)
3611 r = -errno;
8a0867d6 3612
3611581e
LP
3613 if (who == KILL_MAIN || who == KILL_ALL)
3614 if (s->main_pid > 0)
3615 if (kill(s->main_pid, signo) < 0)
3616 r = -errno;
8a0867d6 3617
3611581e 3618 if (who == KILL_ALL && mode == KILL_CONTROL_GROUP) {
8a0867d6
LP
3619 int q;
3620
3621 if (!(pid_set = set_new(trivial_hash_func, trivial_compare_func)))
3622 return -ENOMEM;
3623
3624 /* Exclude the control/main pid from being killed via the cgroup */
3625 if (s->control_pid > 0)
3626 if ((q = set_put(pid_set, LONG_TO_PTR(s->control_pid))) < 0) {
3627 r = q;
3628 goto finish;
3629 }
3630
3631 if (s->main_pid > 0)
3632 if ((q = set_put(pid_set, LONG_TO_PTR(s->main_pid))) < 0) {
3633 r = q;
3634 goto finish;
3635 }
3636
1124fe6f 3637 if ((q = cgroup_bonding_kill_list(UNIT(s)->cgroup_bondings, signo, false, pid_set)) < 0)
3611581e 3638 if (q != -EAGAIN && q != -ESRCH && q != -ENOENT)
8a0867d6
LP
3639 r = q;
3640 }
3641
3642finish:
3643 if (pid_set)
3644 set_free(pid_set);
3645
3646 return r;
3647}
3648
94f04347
LP
3649static const char* const service_state_table[_SERVICE_STATE_MAX] = {
3650 [SERVICE_DEAD] = "dead",
3651 [SERVICE_START_PRE] = "start-pre",
3652 [SERVICE_START] = "start",
3653 [SERVICE_START_POST] = "start-post",
3654 [SERVICE_RUNNING] = "running",
80876c20 3655 [SERVICE_EXITED] = "exited",
94f04347
LP
3656 [SERVICE_RELOAD] = "reload",
3657 [SERVICE_STOP] = "stop",
3658 [SERVICE_STOP_SIGTERM] = "stop-sigterm",
3659 [SERVICE_STOP_SIGKILL] = "stop-sigkill",
3660 [SERVICE_STOP_POST] = "stop-post",
3661 [SERVICE_FINAL_SIGTERM] = "final-sigterm",
3662 [SERVICE_FINAL_SIGKILL] = "final-sigkill",
fdf20a31 3663 [SERVICE_FAILED] = "failed",
94f04347
LP
3664 [SERVICE_AUTO_RESTART] = "auto-restart",
3665};
3666
3667DEFINE_STRING_TABLE_LOOKUP(service_state, ServiceState);
3668
3669static const char* const service_restart_table[_SERVICE_RESTART_MAX] = {
525ee6f4
LP
3670 [SERVICE_RESTART_NO] = "no",
3671 [SERVICE_RESTART_ON_SUCCESS] = "on-success",
50caaedb
LP
3672 [SERVICE_RESTART_ON_FAILURE] = "on-failure",
3673 [SERVICE_RESTART_ON_ABORT] = "on-abort",
3674 [SERVICE_RESTART_ALWAYS] = "always"
94f04347
LP
3675};
3676
3677DEFINE_STRING_TABLE_LOOKUP(service_restart, ServiceRestart);
3678
3679static const char* const service_type_table[_SERVICE_TYPE_MAX] = {
94f04347 3680 [SERVICE_SIMPLE] = "simple",
0d624a78 3681 [SERVICE_FORKING] = "forking",
34e9ba66 3682 [SERVICE_ONESHOT] = "oneshot",
8c47c732
LP
3683 [SERVICE_DBUS] = "dbus",
3684 [SERVICE_NOTIFY] = "notify"
94f04347
LP
3685};
3686
3687DEFINE_STRING_TABLE_LOOKUP(service_type, ServiceType);
3688
e537352b 3689static const char* const service_exec_command_table[_SERVICE_EXEC_COMMAND_MAX] = {
94f04347
LP
3690 [SERVICE_EXEC_START_PRE] = "ExecStartPre",
3691 [SERVICE_EXEC_START] = "ExecStart",
3692 [SERVICE_EXEC_START_POST] = "ExecStartPost",
3693 [SERVICE_EXEC_RELOAD] = "ExecReload",
3694 [SERVICE_EXEC_STOP] = "ExecStop",
3695 [SERVICE_EXEC_STOP_POST] = "ExecStopPost",
3696};
3697
3698DEFINE_STRING_TABLE_LOOKUP(service_exec_command, ServiceExecCommand);
3699
c952c6ec
LP
3700static const char* const notify_access_table[_NOTIFY_ACCESS_MAX] = {
3701 [NOTIFY_NONE] = "none",
3702 [NOTIFY_MAIN] = "main",
3703 [NOTIFY_ALL] = "all"
3704};
3705
3706DEFINE_STRING_TABLE_LOOKUP(notify_access, NotifyAccess);
3707
f42806df
LP
3708static const char* const service_result_table[_SERVICE_RESULT_MAX] = {
3709 [SERVICE_SUCCESS] = "success",
3710 [SERVICE_FAILURE_RESOURCES] = "resources",
3711 [SERVICE_FAILURE_TIMEOUT] = "timeout",
3712 [SERVICE_FAILURE_EXIT_CODE] = "exit-code",
3713 [SERVICE_FAILURE_SIGNAL] = "signal",
bb242b7b
MO
3714 [SERVICE_FAILURE_CORE_DUMP] = "core-dump",
3715 [SERVICE_FAILURE_WATCHDOG] = "watchdog"
f42806df
LP
3716};
3717
3718DEFINE_STRING_TABLE_LOOKUP(service_result, ServiceResult);
3719
4b939747
MO
3720static const char* const start_limit_action_table[_SERVICE_START_LIMIT_MAX] = {
3721 [SERVICE_START_LIMIT_NONE] = "none",
3722 [SERVICE_START_LIMIT_REBOOT] = "reboot",
3723 [SERVICE_START_LIMIT_REBOOT_FORCE] = "reboot-force",
3724 [SERVICE_START_LIMIT_REBOOT_IMMEDIATE] = "reboot-immediate"
3725};
3726DEFINE_STRING_TABLE_LOOKUP(start_limit_action, StartLimitAction);
3727
87f0e418 3728const UnitVTable service_vtable = {
5cb5a6ff 3729 .suffix = ".service",
7d17cfbc 3730 .object_size = sizeof(Service),
f975e971
LP
3731 .sections =
3732 "Unit\0"
3733 "Service\0"
3734 "Install\0",
9e58ff9c 3735 .show_status = true,
5cb5a6ff 3736
034c6ed7
LP
3737 .init = service_init,
3738 .done = service_done,
a16e1123
LP
3739 .load = service_load,
3740
3741 .coldplug = service_coldplug,
034c6ed7 3742
5cb5a6ff
LP
3743 .dump = service_dump,
3744
3745 .start = service_start,
3746 .stop = service_stop,
3747 .reload = service_reload,
3748
034c6ed7
LP
3749 .can_reload = service_can_reload,
3750
8a0867d6
LP
3751 .kill = service_kill,
3752
a16e1123
LP
3753 .serialize = service_serialize,
3754 .deserialize_item = service_deserialize_item,
3755
5cb5a6ff 3756 .active_state = service_active_state,
10a94420 3757 .sub_state_to_string = service_sub_state_to_string,
5cb5a6ff 3758
701cc384
LP
3759 .check_gc = service_check_gc,
3760 .check_snapshot = service_check_snapshot,
3761
034c6ed7
LP
3762 .sigchld_event = service_sigchld_event,
3763 .timer_event = service_timer_event,
3a111838 3764 .fd_event = service_fd_event,
2c4104f0 3765
fdf20a31 3766 .reset_failed = service_reset_failed,
5632e374 3767
5f4b19f4
LP
3768 .need_daemon_reload = service_need_daemon_reload,
3769
8e274523 3770 .cgroup_notify_empty = service_cgroup_notify_event,
8c47c732 3771 .notify_message = service_notify_message,
8e274523 3772
05e343b7
LP
3773 .bus_name_owner_change = service_bus_name_owner_change,
3774 .bus_query_pid_done = service_bus_query_pid_done,
3775
c4e2ceae 3776 .bus_interface = "org.freedesktop.systemd1.Service",
4139c1b2 3777 .bus_message_handler = bus_service_message_handler,
c4e2ceae 3778 .bus_invalidating_properties = bus_service_invalidating_properties,
4139c1b2 3779
07459bb6 3780#ifdef HAVE_SYSV_COMPAT
2c4104f0 3781 .enumerate = service_enumerate
07459bb6 3782#endif
5cb5a6ff 3783};