]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/service.c
service: add minimal access control logic for notifcation socket
[thirdparty/systemd.git] / src / service.c
CommitLineData
5cb5a6ff
LP
1/*-*- Mode: C; c-basic-offset: 8 -*-*/
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>
5cb5a6ff 26
87f0e418 27#include "unit.h"
5cb5a6ff
LP
28#include "service.h"
29#include "load-fragment.h"
30#include "load-dropin.h"
034c6ed7 31#include "log.h"
2c4104f0 32#include "strv.h"
9e2f7c11 33#include "unit-name.h"
4139c1b2 34#include "dbus-service.h"
514f4ef5 35#include "special.h"
2c4104f0
LP
36
37#define COMMENTS "#;\n"
38#define NEWLINES "\n\r"
39#define LINE_MAX 4096
034c6ed7 40
09cd1ab1
LP
41typedef enum RunlevelType {
42 RUNLEVEL_UP,
43 RUNLEVEL_DOWN,
fc5df99e 44 RUNLEVEL_SYSINIT
09cd1ab1
LP
45} RunlevelType;
46
47static const struct {
48 const char *path;
49 const char *target;
50 const RunlevelType type;
51} rcnd_table[] = {
fbe9f3a9 52 /* Standard SysV runlevels */
514f4ef5
LP
53 { "rc0.d", SPECIAL_POWEROFF_TARGET, RUNLEVEL_DOWN },
54 { "rc1.d", SPECIAL_RESCUE_TARGET, RUNLEVEL_UP },
fbe9f3a9
LP
55 { "rc2.d", SPECIAL_RUNLEVEL2_TARGET, RUNLEVEL_UP },
56 { "rc3.d", SPECIAL_RUNLEVEL3_TARGET, RUNLEVEL_UP },
57 { "rc4.d", SPECIAL_RUNLEVEL4_TARGET, RUNLEVEL_UP },
58 { "rc5.d", SPECIAL_RUNLEVEL5_TARGET, RUNLEVEL_UP },
514f4ef5 59 { "rc6.d", SPECIAL_REBOOT_TARGET, RUNLEVEL_DOWN },
fbe9f3a9 60
cfe243e3 61 /* SUSE style boot.d */
fc5df99e 62 { "boot.d", SPECIAL_SYSINIT_TARGET, RUNLEVEL_SYSINIT },
fbe9f3a9
LP
63
64 /* Debian style rcS.d */
fc5df99e 65 { "rcS.d", SPECIAL_SYSINIT_TARGET, RUNLEVEL_SYSINIT },
23a177ef
LP
66};
67
09cd1ab1 68#define RUNLEVELS_UP "12345"
fbe9f3a9
LP
69/* #define RUNLEVELS_DOWN "06" */
70/* #define RUNLEVELS_BOOT "bBsS" */
09cd1ab1 71
acbb0225 72static const UnitActiveState state_translation_table[_SERVICE_STATE_MAX] = {
87f0e418
LP
73 [SERVICE_DEAD] = UNIT_INACTIVE,
74 [SERVICE_START_PRE] = UNIT_ACTIVATING,
75 [SERVICE_START] = UNIT_ACTIVATING,
76 [SERVICE_START_POST] = UNIT_ACTIVATING,
77 [SERVICE_RUNNING] = UNIT_ACTIVE,
80876c20 78 [SERVICE_EXITED] = UNIT_ACTIVE,
87f0e418
LP
79 [SERVICE_RELOAD] = UNIT_ACTIVE_RELOADING,
80 [SERVICE_STOP] = UNIT_DEACTIVATING,
81 [SERVICE_STOP_SIGTERM] = UNIT_DEACTIVATING,
82 [SERVICE_STOP_SIGKILL] = UNIT_DEACTIVATING,
83 [SERVICE_STOP_POST] = UNIT_DEACTIVATING,
84 [SERVICE_FINAL_SIGTERM] = UNIT_DEACTIVATING,
85 [SERVICE_FINAL_SIGKILL] = UNIT_DEACTIVATING,
18c78fb1 86 [SERVICE_MAINTENANCE] = UNIT_INACTIVE,
87f0e418 87 [SERVICE_AUTO_RESTART] = UNIT_ACTIVATING,
034c6ed7 88};
5cb5a6ff 89
a16e1123
LP
90static void service_init(Unit *u) {
91 Service *s = SERVICE(u);
92
93 assert(u);
94 assert(u->meta.load_state == UNIT_STUB);
95
96 s->timeout_usec = DEFAULT_TIMEOUT_USEC;
97 s->restart_usec = DEFAULT_RESTART_USEC;
98 s->timer_watch.type = WATCH_INVALID;
99 s->sysv_start_priority = -1;
100 s->socket_fd = -1;
101
102 exec_context_init(&s->exec_context);
103
104 RATELIMIT_INIT(s->ratelimit, 10*USEC_PER_SEC, 5);
105
106 s->control_command_id = _SERVICE_EXEC_COMMAND_INVALID;
107}
108
5e94833f
LP
109static void service_unwatch_control_pid(Service *s) {
110 assert(s);
111
112 if (s->control_pid <= 0)
113 return;
114
115 unit_unwatch_pid(UNIT(s), s->control_pid);
116 s->control_pid = 0;
117}
118
119static void service_unwatch_main_pid(Service *s) {
120 assert(s);
121
122 if (s->main_pid <= 0)
123 return;
124
125 unit_unwatch_pid(UNIT(s), s->main_pid);
126 s->main_pid = 0;
127}
128
5925dd3c 129static int service_set_main_pid(Service *s, pid_t pid) {
e55224ca
LP
130 pid_t ppid;
131
5925dd3c
LP
132 assert(s);
133
134 if (pid <= 1)
135 return -EINVAL;
136
137 if (pid == getpid())
138 return -EINVAL;
139
e55224ca
LP
140 if (get_parent_of_pid(pid, &ppid) >= 0 && ppid != getpid())
141 log_warning("%s: Supervising process %lu which is not our child. We'll most likely not notice when it exits.",
142 s->meta.id, (unsigned long) pid);
143
5925dd3c
LP
144 s->main_pid = pid;
145 s->main_pid_known = true;
146
147 return 0;
148}
149
4f2d528d
LP
150static void service_close_socket_fd(Service *s) {
151 assert(s);
152
153 if (s->socket_fd < 0)
154 return;
155
156 close_nointr_nofail(s->socket_fd);
157 s->socket_fd = -1;
158}
159
87f0e418
LP
160static void service_done(Unit *u) {
161 Service *s = SERVICE(u);
44d8db9e
LP
162
163 assert(s);
164
165 free(s->pid_file);
166 s->pid_file = NULL;
167
2c4104f0
LP
168 free(s->sysv_path);
169 s->sysv_path = NULL;
170
8309400a
LP
171 free(s->sysv_runlevels);
172 s->sysv_runlevels = NULL;
173
8c47c732
LP
174 free(s->status_text);
175 s->status_text = NULL;
176
44d8db9e 177 exec_context_done(&s->exec_context);
e537352b 178 exec_command_free_array(s->exec_command, _SERVICE_EXEC_COMMAND_MAX);
44d8db9e
LP
179 s->control_command = NULL;
180
181 /* This will leak a process, but at least no memory or any of
182 * our resources */
5e94833f
LP
183 service_unwatch_main_pid(s);
184 service_unwatch_control_pid(s);
44d8db9e 185
05e343b7
LP
186 if (s->bus_name) {
187 unit_unwatch_bus_name(UNIT(u), s->bus_name);
188 free(s->bus_name);
189 s->bus_name = NULL;
190 }
191
4f2d528d
LP
192 service_close_socket_fd(s);
193
acbb0225 194 unit_unwatch_timer(u, &s->timer_watch);
44d8db9e
LP
195}
196
b7ccee3c
LP
197static char *sysv_translate_name(const char *name) {
198 char *r;
199
200 if (!(r = new(char, strlen(name) + sizeof(".service"))))
201 return NULL;
202
203 if (startswith(name, "boot."))
204 /* Drop SuSE-style boot. prefix */
205 strcpy(stpcpy(r, name + 5), ".service");
206 else if (endswith(name, ".sh"))
207 /* Drop Debian-style .sh suffix */
208 strcpy(stpcpy(r, name) - 3, ".service");
209 else
210 /* Normal init scripts */
211 strcpy(stpcpy(r, name), ".service");
212
213 return r;
214}
215
216static int sysv_translate_facility(const char *name, char **_r) {
2c4104f0
LP
217
218 static const char * const table[] = {
6464aa08 219 /* LSB defined facilities */
2c4104f0
LP
220 "$local_fs", SPECIAL_LOCAL_FS_TARGET,
221 "$network", SPECIAL_NETWORK_TARGET,
222 "$named", SPECIAL_NSS_LOOKUP_TARGET,
223 "$portmap", SPECIAL_RPCBIND_TARGET,
224 "$remote_fs", SPECIAL_REMOTE_FS_TARGET,
225 "$syslog", SPECIAL_SYSLOG_TARGET,
6464aa08
LP
226 "$time", SPECIAL_RTC_SET_TARGET,
227
228 /* Debian extensions */
229 "$mail-transport-agent", SPECIAL_MAIL_TRANSFER_AGENT_TARGET,
230 "$mail-transfer-agent", SPECIAL_MAIL_TRANSFER_AGENT_TARGET,
1e287fe3 231 "$x-display-manager", SPECIAL_DISPLAY_MANAGER_SERVICE
2c4104f0
LP
232 };
233
234 unsigned i;
235 char *r;
236
237 for (i = 0; i < ELEMENTSOF(table); i += 2)
238 if (streq(table[i], name)) {
239 if (!(r = strdup(table[i+1])))
240 return -ENOMEM;
241
242 goto finish;
243 }
244
245 if (*name == '$')
246 return 0;
247
b7ccee3c 248 if (!(r = sysv_translate_name(name)))
2c4104f0
LP
249 return -ENOMEM;
250
251finish:
252
253 if (_r)
254 *_r = r;
255
256 return 1;
257}
258
56d748b4 259static int sysv_fix_order(Service *s) {
2c4104f0
LP
260 Meta *other;
261 int r;
262
263 assert(s);
264
265 if (s->sysv_start_priority < 0)
266 return 0;
267
23a177ef
LP
268 /* For each pair of services where at least one lacks a LSB
269 * header, we use the start priority value to order things. */
2c4104f0
LP
270
271 LIST_FOREACH(units_per_type, other, UNIT(s)->meta.manager->units_per_type[UNIT_SERVICE]) {
272 Service *t;
273 UnitDependency d;
274
275 t = (Service*) other;
276
277 if (s == t)
278 continue;
279
280 if (t->sysv_start_priority < 0)
281 continue;
282
51a1a79d
LP
283 /* If both units have modern headers we don't care
284 * about the priorities */
285 if ((!s->sysv_path || s->sysv_has_lsb) &&
286 (!t->sysv_path || t->sysv_has_lsb))
23a177ef
LP
287 continue;
288
2c4104f0
LP
289 if (t->sysv_start_priority < s->sysv_start_priority)
290 d = UNIT_AFTER;
291 else if (t->sysv_start_priority > s->sysv_start_priority)
292 d = UNIT_BEFORE;
293 else
294 continue;
295
296 /* FIXME: Maybe we should compare the name here lexicographically? */
297
701cc384 298 if (!(r = unit_add_dependency(UNIT(s), d, UNIT(t), true)) < 0)
2c4104f0
LP
299 return r;
300 }
301
302 return 0;
303}
304
305static ExecCommand *exec_command_new(const char *path, const char *arg1) {
306 ExecCommand *c;
307
308 if (!(c = new0(ExecCommand, 1)))
309 return NULL;
310
311 if (!(c->path = strdup(path))) {
312 free(c);
313 return NULL;
314 }
315
316 if (!(c->argv = strv_new(path, arg1, NULL))) {
317 free(c->path);
318 free(c);
319 return NULL;
320 }
321
322 return c;
323}
324
325static int sysv_exec_commands(Service *s) {
326 ExecCommand *c;
327
328 assert(s);
329 assert(s->sysv_path);
330
331 if (!(c = exec_command_new(s->sysv_path, "start")))
332 return -ENOMEM;
333 exec_command_append_list(s->exec_command+SERVICE_EXEC_START, c);
334
335 if (!(c = exec_command_new(s->sysv_path, "stop")))
336 return -ENOMEM;
337 exec_command_append_list(s->exec_command+SERVICE_EXEC_STOP, c);
338
339 if (!(c = exec_command_new(s->sysv_path, "reload")))
340 return -ENOMEM;
341 exec_command_append_list(s->exec_command+SERVICE_EXEC_RELOAD, c);
342
343 return 0;
344}
345
e537352b 346static int service_load_sysv_path(Service *s, const char *path) {
2c4104f0
LP
347 FILE *f;
348 Unit *u;
349 unsigned line = 0;
350 int r;
351 enum {
352 NORMAL,
353 DESCRIPTION,
354 LSB,
355 LSB_DESCRIPTION
356 } state = NORMAL;
23a177ef
LP
357
358 assert(s);
359 assert(path);
2c4104f0
LP
360
361 u = UNIT(s);
362
363 if (!(f = fopen(path, "re"))) {
364 r = errno == ENOENT ? 0 : -errno;
365 goto finish;
366 }
367
2c4104f0
LP
368 free(s->sysv_path);
369 if (!(s->sysv_path = strdup(path))) {
370 r = -ENOMEM;
371 goto finish;
372 }
373
374 while (!feof(f)) {
375 char l[LINE_MAX], *t;
376
377 if (!fgets(l, sizeof(l), f)) {
378 if (feof(f))
379 break;
380
381 r = -errno;
382 log_error("Failed to read configuration file '%s': %s", path, strerror(-r));
383 goto finish;
384 }
385
386 line++;
387
388 t = strstrip(l);
389 if (*t != '#')
390 continue;
391
392 if (state == NORMAL && streq(t, "### BEGIN INIT INFO")) {
393 state = LSB;
23a177ef 394 s->sysv_has_lsb = true;
2c4104f0
LP
395 continue;
396 }
397
398 if ((state == LSB_DESCRIPTION || state == LSB) && streq(t, "### END INIT INFO")) {
399 state = NORMAL;
400 continue;
401 }
402
403 t++;
404 t += strspn(t, WHITESPACE);
405
406 if (state == NORMAL) {
407
408 /* Try to parse Red Hat style chkconfig headers */
409
c2b35af6 410 if (startswith_no_case(t, "chkconfig:")) {
2c4104f0 411 int start_priority;
8309400a 412 char runlevels[16], *k;
2c4104f0
LP
413
414 state = NORMAL;
415
8309400a
LP
416 if (sscanf(t+10, "%15s %i %*i",
417 runlevels,
418 &start_priority) != 2) {
2c4104f0
LP
419
420 log_warning("[%s:%u] Failed to parse chkconfig line. Ignoring.", path, line);
421 continue;
422 }
423
fbe9f3a9
LP
424 /* A start priority gathered from the
425 * symlink farms is preferred over the
426 * data from the LSB header. */
8309400a 427 if (start_priority < 0 || start_priority > 99)
2c4104f0 428 log_warning("[%s:%u] Start priority out of range. Ignoring.", path, line);
db06e3b6 429 else if (s->sysv_start_priority < 0)
8309400a
LP
430 s->sysv_start_priority = start_priority;
431
432 char_array_0(runlevels);
433 k = delete_chars(runlevels, WHITESPACE "-");
434
435 if (k[0]) {
436 char *d;
437
438 if (!(d = strdup(k))) {
439 r = -ENOMEM;
440 goto finish;
441 }
442
443 free(s->sysv_runlevels);
444 s->sysv_runlevels = d;
2c4104f0
LP
445 }
446
c2b35af6 447 } else if (startswith_no_case(t, "description:")) {
2c4104f0
LP
448
449 size_t k = strlen(t);
450 char *d;
451
452 if (t[k-1] == '\\') {
453 state = DESCRIPTION;
454 t[k-1] = 0;
455 }
456
457 if (!(d = strdup(strstrip(t+12)))) {
458 r = -ENOMEM;
459 goto finish;
460 }
461
462 free(u->meta.description);
463 u->meta.description = d;
464
c2b35af6 465 } else if (startswith_no_case(t, "pidfile:")) {
2c4104f0
LP
466
467 char *fn;
468
469 state = NORMAL;
470
471 fn = strstrip(t+8);
472 if (!path_is_absolute(fn)) {
473 log_warning("[%s:%u] PID file not absolute. Ignoring.", path, line);
474 continue;
475 }
476
477 if (!(fn = strdup(fn))) {
478 r = -ENOMEM;
479 goto finish;
480 }
481
482 free(s->pid_file);
483 s->pid_file = fn;
484 }
485
486 } else if (state == DESCRIPTION) {
487
488 /* Try to parse Red Hat style description
489 * continuation */
490
491 size_t k = strlen(t);
492 char *d;
493
494 if (t[k-1] == '\\')
495 t[k-1] = 0;
496 else
497 state = NORMAL;
498
499 assert(u->meta.description);
500 if (asprintf(&d, "%s %s", u->meta.description, strstrip(t)) < 0) {
501 r = -ENOMEM;
502 goto finish;
503 }
504
505 free(u->meta.description);
506 u->meta.description = d;
507
508 } else if (state == LSB || state == LSB_DESCRIPTION) {
509
c2b35af6 510 if (startswith_no_case(t, "Provides:")) {
2c4104f0
LP
511 char *i, *w;
512 size_t z;
513
514 state = LSB;
515
516 FOREACH_WORD(w, z, t+9, i) {
517 char *n, *m;
518
519 if (!(n = strndup(w, z))) {
520 r = -ENOMEM;
521 goto finish;
522 }
523
b7ccee3c 524 r = sysv_translate_facility(n, &m);
2c4104f0
LP
525 free(n);
526
527 if (r < 0)
528 goto finish;
529
530 if (r == 0)
531 continue;
532
bd77d0fc
LP
533 if (unit_name_to_type(m) == UNIT_SERVICE)
534 r = unit_add_name(u, m);
535 else {
701cc384
LP
536 if ((r = unit_add_dependency_by_name_inverse(u, UNIT_REQUIRES, m, NULL, true)) >= 0)
537 r = unit_add_dependency_by_name(u, UNIT_BEFORE, m, NULL, true);
bd77d0fc
LP
538 }
539
2c4104f0
LP
540 free(m);
541
542 if (r < 0)
543 goto finish;
544 }
545
c2b35af6
LP
546 } else if (startswith_no_case(t, "Required-Start:") ||
547 startswith_no_case(t, "Should-Start:") ||
548 startswith_no_case(t, "X-Start-Before:") ||
549 startswith_no_case(t, "X-Start-After:")) {
2c4104f0
LP
550 char *i, *w;
551 size_t z;
552
553 state = LSB;
554
555 FOREACH_WORD(w, z, strchr(t, ':')+1, i) {
556 char *n, *m;
557
558 if (!(n = strndup(w, z))) {
559 r = -ENOMEM;
560 goto finish;
561 }
562
b7ccee3c 563 r = sysv_translate_facility(n, &m);
2c4104f0
LP
564 free(n);
565
566 if (r < 0)
567 goto finish;
568
569 if (r == 0)
570 continue;
571
c2b35af6 572 r = unit_add_dependency_by_name(u, startswith_no_case(t, "X-Start-Before:") ? UNIT_BEFORE : UNIT_AFTER, m, NULL, true);
2c4104f0
LP
573 free(m);
574
575 if (r < 0)
576 goto finish;
577 }
c2b35af6 578 } else if (startswith_no_case(t, "Default-Start:")) {
8309400a
LP
579 char *k, *d;
580
581 state = LSB;
582
583 k = delete_chars(t+14, WHITESPACE "-");
584
585 if (k[0] != 0) {
586 if (!(d = strdup(k))) {
587 r = -ENOMEM;
588 goto finish;
589 }
590
591 free(s->sysv_runlevels);
592 s->sysv_runlevels = d;
593 }
2c4104f0 594
c2b35af6 595 } else if (startswith_no_case(t, "Description:")) {
2c4104f0
LP
596 char *d;
597
598 state = LSB_DESCRIPTION;
599
600 if (!(d = strdup(strstrip(t+12)))) {
601 r = -ENOMEM;
602 goto finish;
603 }
604
605 free(u->meta.description);
606 u->meta.description = d;
607
c2b35af6 608 } else if (startswith_no_case(t, "Short-Description:") &&
8309400a 609 !u->meta.description) {
2c4104f0
LP
610 char *d;
611
612 /* We use the short description only
613 * if no long description is set. */
614
615 state = LSB;
616
617 if (!(d = strdup(strstrip(t+18)))) {
618 r = -ENOMEM;
619 goto finish;
620 }
621
2c4104f0
LP
622 u->meta.description = d;
623
723c83fd
LP
624 } else if (startswith_no_case(t, "X-Interactive:")) {
625 int b;
626
627 if ((b = parse_boolean(strstrip(t+14))) < 0) {
628 log_warning("[%s:%u] Couldn't parse interactive flag. Ignoring.", path, line);
629 continue;
630 }
631
632 if (b)
633 s->exec_context.std_input = EXEC_INPUT_TTY;
634 else
635 s->exec_context.std_input = EXEC_INPUT_NULL;
636
2c4104f0
LP
637 } else if (state == LSB_DESCRIPTION) {
638
639 if (startswith(l, "#\t") || startswith(l, "# ")) {
640 char *d;
641
642 assert(u->meta.description);
643 if (asprintf(&d, "%s %s", u->meta.description, t) < 0) {
644 r = -ENOMEM;
645 goto finish;
646 }
647
648 free(u->meta.description);
649 u->meta.description = d;
650 } else
651 state = LSB;
652 }
653 }
654 }
655
2c4104f0
LP
656 if ((r = sysv_exec_commands(s)) < 0)
657 goto finish;
658
09cd1ab1 659 if (!s->sysv_runlevels || chars_intersect(RUNLEVELS_UP, s->sysv_runlevels)) {
0bc824be
LP
660 /* If there a runlevels configured for this service
661 * but none of the standard ones, then we assume this
662 * is some special kind of service (which might be
663 * needed for early boot) and don't create any links
664 * to it. */
665
701cc384
LP
666 if ((r = unit_add_dependency_by_name(u, UNIT_REQUIRES, SPECIAL_BASIC_TARGET, NULL, true)) < 0 ||
667 (r = unit_add_dependency_by_name(u, UNIT_AFTER, SPECIAL_BASIC_TARGET, NULL, true)) < 0)
0bc824be 668 goto finish;
09cd1ab1
LP
669
670 } else
671 /* Don't timeout special services during boot (like fsck) */
672 s->timeout_usec = 0;
0fd030be 673
80876c20 674 /* Special setting for all SysV services */
1f48cf56 675 s->type = SERVICE_FORKING;
80876c20 676 s->valid_no_process = true;
b29a8e58 677 s->kill_mode = KILL_PROCESS_GROUP;
1f48cf56 678 s->restart = SERVICE_ONCE;
80876c20 679
e537352b 680 u->meta.load_state = UNIT_LOADED;
23a177ef 681 r = 0;
2c4104f0
LP
682
683finish:
684
685 if (f)
686 fclose(f);
687
688 return r;
689}
690
e537352b 691static int service_load_sysv_name(Service *s, const char *name) {
2c4104f0
LP
692 char **p;
693
694 assert(s);
695 assert(name);
696
d017c6ca
LP
697 /* For SysV services we strip the boot. or .sh
698 * prefixes/suffixes. */
699 if (startswith(name, "boot.") ||
700 endswith(name, ".sh.service"))
701 return -ENOENT;
702
84e3543e 703 STRV_FOREACH(p, UNIT(s)->meta.manager->lookup_paths.sysvinit_path) {
2c4104f0
LP
704 char *path;
705 int r;
706
707 if (asprintf(&path, "%s/%s", *p, name) < 0)
708 return -ENOMEM;
709
710 assert(endswith(path, ".service"));
711 path[strlen(path)-8] = 0;
712
e537352b 713 r = service_load_sysv_path(s, path);
fbe9f3a9
LP
714
715 if (r >= 0 && UNIT(s)->meta.load_state == UNIT_STUB) {
d017c6ca 716 /* Try Debian style xxx.sh source'able init scripts */
fbe9f3a9
LP
717 strcat(path, ".sh");
718 r = service_load_sysv_path(s, path);
719 }
720
2c4104f0
LP
721 free(path);
722
fbe9f3a9 723 if (r >= 0 && UNIT(s)->meta.load_state == UNIT_STUB) {
cfe243e3 724 /* Try SUSE style boot.xxx init scripts */
fbe9f3a9
LP
725
726 if (asprintf(&path, "%s/boot.%s", *p, name) < 0)
727 return -ENOMEM;
728
729 path[strlen(path)-8] = 0;
730 r = service_load_sysv_path(s, path);
731 free(path);
732 }
733
23a177ef 734 if (r < 0)
2c4104f0 735 return r;
23a177ef 736
e537352b 737 if ((UNIT(s)->meta.load_state != UNIT_STUB))
23a177ef 738 break;
2c4104f0
LP
739 }
740
741 return 0;
742}
743
e537352b 744static int service_load_sysv(Service *s) {
2c4104f0
LP
745 const char *t;
746 Iterator i;
747 int r;
748
5cb5a6ff
LP
749 assert(s);
750
751 /* Load service data from SysV init scripts, preferably with
752 * LSB headers ... */
753
84e3543e 754 if (strv_isempty(UNIT(s)->meta.manager->lookup_paths.sysvinit_path))
2c4104f0
LP
755 return 0;
756
9e2f7c11 757 if ((t = UNIT(s)->meta.id))
e537352b 758 if ((r = service_load_sysv_name(s, t)) < 0)
2c4104f0
LP
759 return r;
760
e537352b 761 if (UNIT(s)->meta.load_state == UNIT_STUB)
23a177ef 762 SET_FOREACH(t, UNIT(s)->meta.names, i) {
9e2f7c11 763 if (t == UNIT(s)->meta.id)
e537352b
LP
764 continue;
765
766 if ((r == service_load_sysv_name(s, t)) < 0)
23a177ef
LP
767 return r;
768
e537352b 769 if (UNIT(s)->meta.load_state != UNIT_STUB)
23a177ef
LP
770 break;
771 }
2c4104f0
LP
772
773 return 0;
5cb5a6ff
LP
774}
775
05e343b7
LP
776static int service_add_bus_name(Service *s) {
777 char *n;
778 int r;
779
780 assert(s);
781 assert(s->bus_name);
782
783 if (asprintf(&n, "dbus-%s.service", s->bus_name) < 0)
784 return 0;
785
786 r = unit_merge_by_name(UNIT(s), n);
787 free(n);
788
789 return r;
790}
791
243b1432
LP
792static int service_verify(Service *s) {
793 assert(s);
794
795 if (UNIT(s)->meta.load_state != UNIT_LOADED)
796 return 0;
797
798 if (!s->exec_command[SERVICE_EXEC_START]) {
9e2f7c11 799 log_error("%s lacks ExecStart setting. Refusing.", UNIT(s)->meta.id);
243b1432
LP
800 return -EINVAL;
801 }
802
05e343b7
LP
803 if (s->type == SERVICE_DBUS && !s->bus_name) {
804 log_error("%s is of type D-Bus but no D-Bus service name has been specified. Refusing.", UNIT(s)->meta.id);
805 return -EINVAL;
806 }
807
243b1432
LP
808 return 0;
809}
810
e537352b
LP
811static int service_load(Unit *u) {
812 int r;
813 Service *s = SERVICE(u);
814
815 assert(s);
1e2e8133 816
5cb5a6ff 817 /* Load a .service file */
e537352b 818 if ((r = unit_load_fragment(u)) < 0)
5cb5a6ff
LP
819 return r;
820
bd77d0fc 821 /* Load a classic init script as a fallback, if we couldn't find anything */
e537352b
LP
822 if (u->meta.load_state == UNIT_STUB)
823 if ((r = service_load_sysv(s)) < 0)
23a177ef 824 return r;
d46de8a1 825
23a177ef 826 /* Still nothing found? Then let's give up */
e537352b 827 if (u->meta.load_state == UNIT_STUB)
23a177ef 828 return -ENOENT;
034c6ed7 829
23a177ef
LP
830 /* We were able to load something, then let's add in the
831 * dropin directories. */
832 if ((r = unit_load_dropin(unit_follow_merge(u))) < 0)
8e274523 833 return r;
23a177ef
LP
834
835 /* This is a new unit? Then let's add in some extras */
e537352b 836 if (u->meta.load_state == UNIT_LOADED) {
23a177ef
LP
837 if ((r = unit_add_exec_dependencies(u, &s->exec_context)) < 0)
838 return r;
839
840 if ((r = unit_add_default_cgroup(u)) < 0)
841 return r;
842
56d748b4 843 if ((r = sysv_fix_order(s)) < 0)
23a177ef 844 return r;
05e343b7
LP
845
846 if (s->bus_name) {
847 if ((r = service_add_bus_name(s)) < 0)
848 return r;
849
850 if ((r = unit_watch_bus_name(u, s->bus_name)) < 0)
851 return r;
852 }
c952c6ec
LP
853
854 if (s->type == SERVICE_NOTIFY && s->notify_access == NOTIFY_NONE)
855 s->notify_access = NOTIFY_MAIN;
8e274523
LP
856 }
857
243b1432 858 return service_verify(s);
034c6ed7
LP
859}
860
87f0e418 861static void service_dump(Unit *u, FILE *f, const char *prefix) {
5cb5a6ff 862
5cb5a6ff 863 ServiceExecCommand c;
87f0e418 864 Service *s = SERVICE(u);
47be870b
LP
865 const char *prefix2;
866 char *p2;
5cb5a6ff
LP
867
868 assert(s);
869
47be870b
LP
870 p2 = strappend(prefix, "\t");
871 prefix2 = p2 ? p2 : prefix;
44d8db9e 872
5cb5a6ff 873 fprintf(f,
81a2b7ce
LP
874 "%sService State: %s\n"
875 "%sPermissionsStartOnly: %s\n"
8e274523 876 "%sRootDirectoryStartOnly: %s\n"
03d6ab85 877 "%sValidNoProcess: %s\n"
50159e6a 878 "%sKillMode: %s\n"
c952c6ec
LP
879 "%sType: %s\n"
880 "%sNotifyAccess: %s\n",
81a2b7ce
LP
881 prefix, service_state_to_string(s->state),
882 prefix, yes_no(s->permissions_start_only),
8e274523 883 prefix, yes_no(s->root_directory_start_only),
03d6ab85 884 prefix, yes_no(s->valid_no_process),
50159e6a 885 prefix, kill_mode_to_string(s->kill_mode),
c952c6ec
LP
886 prefix, service_type_to_string(s->type),
887 prefix, notify_access_to_string(s->notify_access));
5cb5a6ff 888
70123e68
LP
889 if (s->control_pid > 0)
890 fprintf(f,
891 "%sControl PID: %llu\n",
892 prefix, (unsigned long long) s->control_pid);
893
894 if (s->main_pid > 0)
895 fprintf(f,
896 "%sMain PID: %llu\n",
897 prefix, (unsigned long long) s->main_pid);
898
034c6ed7
LP
899 if (s->pid_file)
900 fprintf(f,
901 "%sPIDFile: %s\n",
902 prefix, s->pid_file);
903
05e343b7
LP
904 if (s->bus_name)
905 fprintf(f,
906 "%sBusName: %s\n"
907 "%sBus Name Good: %s\n",
908 prefix, s->bus_name,
909 prefix, yes_no(s->bus_name_good));
910
5cb5a6ff
LP
911 exec_context_dump(&s->exec_context, f, prefix);
912
e537352b 913 for (c = 0; c < _SERVICE_EXEC_COMMAND_MAX; c++) {
5cb5a6ff 914
44d8db9e
LP
915 if (!s->exec_command[c])
916 continue;
917
40d50879 918 fprintf(f, "%s-> %s:\n",
94f04347 919 prefix, service_exec_command_to_string(c));
44d8db9e
LP
920
921 exec_command_dump_list(s->exec_command[c], f, prefix2);
5cb5a6ff 922 }
44d8db9e 923
2c4104f0
LP
924 if (s->sysv_path)
925 fprintf(f,
23a177ef
LP
926 "%sSysV Init Script Path: %s\n"
927 "%sSysV Init Script has LSB Header: %s\n",
928 prefix, s->sysv_path,
929 prefix, yes_no(s->sysv_has_lsb));
2c4104f0
LP
930
931 if (s->sysv_start_priority >= 0)
932 fprintf(f,
23a177ef 933 "%sSysVStartPriority: %i\n",
2c4104f0
LP
934 prefix, s->sysv_start_priority);
935
8309400a
LP
936 if (s->sysv_runlevels)
937 fprintf(f, "%sSysVRunLevels: %s\n",
938 prefix, s->sysv_runlevels);
23a177ef 939
8c47c732
LP
940 if (s->status_text)
941 fprintf(f, "%sStatus Text: %s\n",
942 prefix, s->status_text);
943
47be870b 944 free(p2);
5cb5a6ff
LP
945}
946
034c6ed7
LP
947static int service_load_pid_file(Service *s) {
948 char *k;
034c6ed7 949 int r;
5925dd3c 950 pid_t pid;
034c6ed7
LP
951
952 assert(s);
953
954 if (s->main_pid_known)
955 return 0;
956
5e94833f
LP
957 assert(s->main_pid <= 0);
958
034c6ed7
LP
959 if (!s->pid_file)
960 return -ENOENT;
961
962 if ((r = read_one_line_file(s->pid_file, &k)) < 0)
963 return r;
964
5925dd3c
LP
965 r = parse_pid(k, &pid);
966 free(k);
034c6ed7 967
5925dd3c
LP
968 if (r < 0)
969 return r;
406eaf93 970
5925dd3c
LP
971 if (kill(pid, 0) < 0 && errno != EPERM) {
972 log_warning("PID %lu read from file %s does not exist. Your service or init script might be broken.",
973 (unsigned long) pid, s->pid_file);
b8c597d5
LP
974 return -ESRCH;
975 }
976
5925dd3c 977 if ((r = service_set_main_pid(s, pid)) < 0)
16f6025e
LP
978 return r;
979
5925dd3c
LP
980 if ((r = unit_watch_pid(UNIT(s), pid)) < 0)
981 /* FIXME: we need to do something here */
982 return r;
034c6ed7
LP
983
984 return 0;
985}
986
3e33402a
LP
987static int service_get_sockets(Service *s, Set **_set) {
988 Set *set;
ceee3d82
LP
989 Iterator i;
990 char *t;
3e33402a 991 int r;
ceee3d82
LP
992
993 assert(s);
3e33402a
LP
994 assert(_set);
995
996 /* Collects all Socket objects that belong to this
997 * service. Note that a service might have multiple sockets
998 * via multiple names. */
999
1000 if (!(set = set_new(NULL, NULL)))
1001 return -ENOMEM;
ceee3d82
LP
1002
1003 SET_FOREACH(t, UNIT(s)->meta.names, i) {
1004 char *k;
1005 Unit *p;
1006
1007 /* Look for all socket objects that go by any of our
1008 * units and collect their fds */
1009
3e33402a
LP
1010 if (!(k = unit_name_change_suffix(t, ".socket"))) {
1011 r = -ENOMEM;
1012 goto fail;
1013 }
ceee3d82
LP
1014
1015 p = manager_get_unit(UNIT(s)->meta.manager, k);
1016 free(k);
1017
8d567588
LP
1018 if (!p)
1019 continue;
ceee3d82 1020
3e33402a
LP
1021 if ((r = set_put(set, p)) < 0)
1022 goto fail;
ceee3d82
LP
1023 }
1024
3e33402a
LP
1025 *_set = set;
1026 return 0;
1027
1028fail:
1029 set_free(set);
1030 return r;
1031}
1032
e537352b 1033static int service_notify_sockets_dead(Service *s) {
3e33402a
LP
1034 Iterator i;
1035 Set *set;
47be870b 1036 Socket *sock;
3e33402a
LP
1037 int r;
1038
1039 assert(s);
1040
1041 /* Notifies all our sockets when we die */
3e33402a
LP
1042 if ((r = service_get_sockets(s, &set)) < 0)
1043 return r;
1044
47be870b
LP
1045 SET_FOREACH(sock, set, i)
1046 socket_notify_service_dead(sock);
3e33402a
LP
1047
1048 set_free(set);
1049
ceee3d82
LP
1050 return 0;
1051}
1052
034c6ed7
LP
1053static void service_set_state(Service *s, ServiceState state) {
1054 ServiceState old_state;
5cb5a6ff
LP
1055 assert(s);
1056
034c6ed7 1057 old_state = s->state;
5cb5a6ff 1058 s->state = state;
034c6ed7
LP
1059
1060 if (state != SERVICE_START_PRE &&
1061 state != SERVICE_START &&
1062 state != SERVICE_START_POST &&
1063 state != SERVICE_RELOAD &&
1064 state != SERVICE_STOP &&
1065 state != SERVICE_STOP_SIGTERM &&
1066 state != SERVICE_STOP_SIGKILL &&
1067 state != SERVICE_STOP_POST &&
1068 state != SERVICE_FINAL_SIGTERM &&
1069 state != SERVICE_FINAL_SIGKILL &&
1070 state != SERVICE_AUTO_RESTART)
acbb0225 1071 unit_unwatch_timer(UNIT(s), &s->timer_watch);
034c6ed7 1072
7d55e835
LP
1073 if (state != SERVICE_START &&
1074 state != SERVICE_START_POST &&
034c6ed7
LP
1075 state != SERVICE_RUNNING &&
1076 state != SERVICE_RELOAD &&
1077 state != SERVICE_STOP &&
1078 state != SERVICE_STOP_SIGTERM &&
1079 state != SERVICE_STOP_SIGKILL)
5e94833f 1080 service_unwatch_main_pid(s);
034c6ed7
LP
1081
1082 if (state != SERVICE_START_PRE &&
1083 state != SERVICE_START &&
1084 state != SERVICE_START_POST &&
1085 state != SERVICE_RELOAD &&
1086 state != SERVICE_STOP &&
1087 state != SERVICE_STOP_SIGTERM &&
1088 state != SERVICE_STOP_SIGKILL &&
1089 state != SERVICE_STOP_POST &&
1090 state != SERVICE_FINAL_SIGTERM &&
e537352b 1091 state != SERVICE_FINAL_SIGKILL) {
5e94833f 1092 service_unwatch_control_pid(s);
034c6ed7 1093 s->control_command = NULL;
a16e1123 1094 s->control_command_id = _SERVICE_EXEC_COMMAND_INVALID;
e537352b 1095 }
034c6ed7 1096
ceee3d82
LP
1097 if (state == SERVICE_DEAD ||
1098 state == SERVICE_STOP ||
1099 state == SERVICE_STOP_SIGTERM ||
1100 state == SERVICE_STOP_SIGKILL ||
1101 state == SERVICE_STOP_POST ||
1102 state == SERVICE_FINAL_SIGTERM ||
1103 state == SERVICE_FINAL_SIGKILL ||
18c78fb1 1104 state == SERVICE_MAINTENANCE ||
ceee3d82 1105 state == SERVICE_AUTO_RESTART)
e537352b 1106 service_notify_sockets_dead(s);
ceee3d82 1107
4f2d528d
LP
1108 if (state != SERVICE_START_PRE &&
1109 state != SERVICE_START &&
1110 !(state == SERVICE_DEAD && UNIT(s)->meta.job))
1111 service_close_socket_fd(s);
1112
e537352b 1113 if (old_state != state)
40d50879 1114 log_debug("%s changed %s -> %s", UNIT(s)->meta.id, service_state_to_string(old_state), service_state_to_string(state));
acbb0225
LP
1115
1116 unit_notify(UNIT(s), state_translation_table[old_state], state_translation_table[state]);
034c6ed7
LP
1117}
1118
a16e1123
LP
1119static int service_coldplug(Unit *u) {
1120 Service *s = SERVICE(u);
1121 int r;
1122
1123 assert(s);
1124 assert(s->state == SERVICE_DEAD);
1125
1126 if (s->deserialized_state != s->state) {
1127
1128 if (s->deserialized_state == SERVICE_START_PRE ||
1129 s->deserialized_state == SERVICE_START ||
1130 s->deserialized_state == SERVICE_START_POST ||
1131 s->deserialized_state == SERVICE_RELOAD ||
1132 s->deserialized_state == SERVICE_STOP ||
1133 s->deserialized_state == SERVICE_STOP_SIGTERM ||
1134 s->deserialized_state == SERVICE_STOP_SIGKILL ||
1135 s->deserialized_state == SERVICE_STOP_POST ||
1136 s->deserialized_state == SERVICE_FINAL_SIGTERM ||
1137 s->deserialized_state == SERVICE_FINAL_SIGKILL ||
e558336f
LP
1138 s->deserialized_state == SERVICE_AUTO_RESTART) {
1139
1140 if (s->deserialized_state == SERVICE_AUTO_RESTART || s->timeout_usec > 0) {
1141 usec_t k;
1142
1143 k = s->deserialized_state == SERVICE_AUTO_RESTART ? s->restart_usec : s->timeout_usec;
1144
1145 if ((r = unit_watch_timer(UNIT(s), k, &s->timer_watch)) < 0)
1146 return r;
1147 }
1148 }
a16e1123
LP
1149
1150 if ((s->deserialized_state == SERVICE_START &&
1151 (s->type == SERVICE_FORKING ||
8c47c732
LP
1152 s->type == SERVICE_DBUS ||
1153 s->type == SERVICE_FINISH ||
1154 s->type == SERVICE_NOTIFY)) ||
a16e1123
LP
1155 s->deserialized_state == SERVICE_START_POST ||
1156 s->deserialized_state == SERVICE_RUNNING ||
1157 s->deserialized_state == SERVICE_RELOAD ||
1158 s->deserialized_state == SERVICE_STOP ||
1159 s->deserialized_state == SERVICE_STOP_SIGTERM ||
1160 s->deserialized_state == SERVICE_STOP_SIGKILL)
1161 if (s->main_pid > 0)
1162 if ((r = unit_watch_pid(UNIT(s), s->main_pid)) < 0)
1163 return r;
1164
1165 if (s->deserialized_state == SERVICE_START_PRE ||
1166 s->deserialized_state == SERVICE_START ||
1167 s->deserialized_state == SERVICE_START_POST ||
1168 s->deserialized_state == SERVICE_RELOAD ||
1169 s->deserialized_state == SERVICE_STOP ||
1170 s->deserialized_state == SERVICE_STOP_SIGTERM ||
1171 s->deserialized_state == SERVICE_STOP_SIGKILL ||
1172 s->deserialized_state == SERVICE_STOP_POST ||
1173 s->deserialized_state == SERVICE_FINAL_SIGTERM ||
1174 s->deserialized_state == SERVICE_FINAL_SIGKILL)
1175 if (s->control_pid > 0)
1176 if ((r = unit_watch_pid(UNIT(s), s->control_pid)) < 0)
1177 return r;
1178
1179 service_set_state(s, s->deserialized_state);
1180 }
1181
1182 return 0;
1183}
1184
44d8db9e
LP
1185static int service_collect_fds(Service *s, int **fds, unsigned *n_fds) {
1186 Iterator i;
1187 int r;
1188 int *rfds = NULL;
1189 unsigned rn_fds = 0;
3e33402a 1190 Set *set;
47be870b 1191 Socket *sock;
44d8db9e
LP
1192
1193 assert(s);
1194 assert(fds);
1195 assert(n_fds);
1196
3e33402a
LP
1197 if ((r = service_get_sockets(s, &set)) < 0)
1198 return r;
1199
47be870b 1200 SET_FOREACH(sock, set, i) {
44d8db9e
LP
1201 int *cfds;
1202 unsigned cn_fds;
1203
47be870b 1204 if ((r = socket_collect_fds(sock, &cfds, &cn_fds)) < 0)
44d8db9e
LP
1205 goto fail;
1206
1207 if (!cfds)
1208 continue;
1209
1210 if (!rfds) {
1211 rfds = cfds;
1212 rn_fds = cn_fds;
1213 } else {
1214 int *t;
1215
1216 if (!(t = new(int, rn_fds+cn_fds))) {
1217 free(cfds);
1218 r = -ENOMEM;
1219 goto fail;
1220 }
1221
1222 memcpy(t, rfds, rn_fds);
1223 memcpy(t+rn_fds, cfds, cn_fds);
1224 free(rfds);
1225 free(cfds);
1226
1227 rfds = t;
1228 rn_fds = rn_fds+cn_fds;
1229 }
1230 }
1231
1232 *fds = rfds;
1233 *n_fds = rn_fds;
3e33402a
LP
1234
1235 set_free(set);
1236
44d8db9e
LP
1237 return 0;
1238
1239fail:
3e33402a 1240 set_free(set);
44d8db9e 1241 free(rfds);
3e33402a 1242
44d8db9e
LP
1243 return r;
1244}
1245
81a2b7ce
LP
1246static int service_spawn(
1247 Service *s,
1248 ExecCommand *c,
1249 bool timeout,
1250 bool pass_fds,
1251 bool apply_permissions,
1252 bool apply_chroot,
c952c6ec 1253 bool set_notify_socket,
81a2b7ce
LP
1254 pid_t *_pid) {
1255
034c6ed7
LP
1256 pid_t pid;
1257 int r;
44d8db9e
LP
1258 int *fds = NULL;
1259 unsigned n_fds = 0;
c952c6ec 1260 char **argv = NULL, **env = NULL;
034c6ed7
LP
1261
1262 assert(s);
1263 assert(c);
1264 assert(_pid);
1265
4f2d528d
LP
1266 if (pass_fds) {
1267 if (s->socket_fd >= 0) {
1268 fds = &s->socket_fd;
1269 n_fds = 1;
1270 } else if ((r = service_collect_fds(s, &fds, &n_fds)) < 0)
44d8db9e 1271 goto fail;
4f2d528d 1272 }
44d8db9e 1273
e558336f 1274 if (timeout && s->timeout_usec) {
acbb0225 1275 if ((r = unit_watch_timer(UNIT(s), s->timeout_usec, &s->timer_watch)) < 0)
034c6ed7
LP
1276 goto fail;
1277 } else
acbb0225 1278 unit_unwatch_timer(UNIT(s), &s->timer_watch);
034c6ed7 1279
9e2f7c11
LP
1280 if (!(argv = unit_full_printf_strv(UNIT(s), c->argv))) {
1281 r = -ENOMEM;
1282 goto fail;
1283 }
1284
c952c6ec
LP
1285 if (set_notify_socket) {
1286 char *t;
1287
1288 if (asprintf(&t, "NOTIFY_SOCKET=@%s", s->meta.manager->notify_socket) < 0) {
1289 r = -ENOMEM;
1290 goto fail;
1291 }
1292
1293 env = strv_env_set(s->meta.manager->environment, t);
1294 free(t);
1295
1296 if (!env) {
1297 r = -ENOMEM;
1298 goto fail;
1299 }
1300 } else
1301 env = s->meta.manager->environment;
1302
9e2f7c11
LP
1303 r = exec_spawn(c,
1304 argv,
1305 &s->exec_context,
1306 fds, n_fds,
c952c6ec 1307 env,
9e2f7c11
LP
1308 apply_permissions,
1309 apply_chroot,
1310 UNIT(s)->meta.manager->confirm_spawn,
1311 UNIT(s)->meta.cgroup_bondings,
1312 &pid);
1313
1314 strv_free(argv);
c952c6ec
LP
1315 argv = NULL;
1316
1317 if (set_notify_socket)
1318 strv_free(env);
1319 env = NULL;
1320
9e2f7c11 1321 if (r < 0)
034c6ed7
LP
1322 goto fail;
1323
4f2d528d
LP
1324 if (fds) {
1325 if (s->socket_fd >= 0)
1326 service_close_socket_fd(s);
1327 else
1328 free(fds);
1329 }
1330
87f0e418 1331 if ((r = unit_watch_pid(UNIT(s), pid)) < 0)
034c6ed7
LP
1332 /* FIXME: we need to do something here */
1333 goto fail;
1334
1335 *_pid = pid;
1336
5cb5a6ff 1337 return 0;
034c6ed7
LP
1338
1339fail:
44d8db9e
LP
1340 free(fds);
1341
c952c6ec
LP
1342 strv_free(argv);
1343
1344 if (set_notify_socket)
1345 strv_free(env);
1346
034c6ed7 1347 if (timeout)
acbb0225 1348 unit_unwatch_timer(UNIT(s), &s->timer_watch);
034c6ed7
LP
1349
1350 return r;
1351}
1352
80876c20
LP
1353static int main_pid_good(Service *s) {
1354 assert(s);
1355
1356 /* Returns 0 if the pid is dead, 1 if it is good, -1 if we
1357 * don't know */
1358
1359 /* If we know the pid file, then lets just check if it is
1360 * still valid */
1361 if (s->main_pid_known)
1362 return s->main_pid > 0;
1363
1364 /* We don't know the pid */
1365 return -EAGAIN;
1366}
1367
1368static int control_pid_good(Service *s) {
1369 assert(s);
1370
1371 return s->control_pid > 0;
1372}
1373
1374static int cgroup_good(Service *s) {
1375 int r;
1376
1377 assert(s);
1378
1379 if (s->valid_no_process)
1380 return -EAGAIN;
1381
1382 if ((r = cgroup_bonding_is_empty_list(UNIT(s)->meta.cgroup_bondings)) < 0)
1383 return r;
1384
1385 return !r;
1386}
1387
034c6ed7
LP
1388static void service_enter_dead(Service *s, bool success, bool allow_restart) {
1389 int r;
1390 assert(s);
1391
1392 if (!success)
1393 s->failure = true;
1394
1395 if (allow_restart &&
3a762661 1396 s->allow_restart &&
034c6ed7
LP
1397 (s->restart == SERVICE_RESTART_ALWAYS ||
1398 (s->restart == SERVICE_RESTART_ON_SUCCESS && !s->failure))) {
1399
acbb0225 1400 if ((r = unit_watch_timer(UNIT(s), s->restart_usec, &s->timer_watch)) < 0)
034c6ed7
LP
1401 goto fail;
1402
1403 service_set_state(s, SERVICE_AUTO_RESTART);
1404 } else
18c78fb1 1405 service_set_state(s, s->failure ? SERVICE_MAINTENANCE : SERVICE_DEAD);
034c6ed7
LP
1406
1407 return;
1408
1409fail:
9e2f7c11 1410 log_warning("%s failed to run install restart timer: %s", UNIT(s)->meta.id, strerror(-r));
034c6ed7
LP
1411 service_enter_dead(s, false, false);
1412}
1413
1414static void service_enter_signal(Service *s, ServiceState state, bool success);
1415
1416static void service_enter_stop_post(Service *s, bool success) {
1417 int r;
1418 assert(s);
1419
1420 if (!success)
1421 s->failure = true;
1422
5e94833f
LP
1423 service_unwatch_control_pid(s);
1424
a16e1123 1425 s->control_command_id = SERVICE_EXEC_STOP_POST;
80876c20 1426 if ((s->control_command = s->exec_command[SERVICE_EXEC_STOP_POST])) {
81a2b7ce
LP
1427 if ((r = service_spawn(s,
1428 s->control_command,
1429 true,
1430 false,
1431 !s->permissions_start_only,
1432 !s->root_directory_start_only,
c952c6ec 1433 false,
81a2b7ce 1434 &s->control_pid)) < 0)
034c6ed7
LP
1435 goto fail;
1436
d6ea93e3 1437
80876c20
LP
1438 service_set_state(s, SERVICE_STOP_POST);
1439 } else
1440 service_enter_signal(s, SERVICE_FINAL_SIGTERM, true);
034c6ed7
LP
1441
1442 return;
1443
1444fail:
7020e8be 1445 log_warning("%s failed to run 'stop-post' task: %s", UNIT(s)->meta.id, strerror(-r));
034c6ed7
LP
1446 service_enter_signal(s, SERVICE_FINAL_SIGTERM, false);
1447}
1448
1449static void service_enter_signal(Service *s, ServiceState state, bool success) {
1450 int r;
1451 bool sent = false;
1452
1453 assert(s);
1454
1455 if (!success)
1456 s->failure = true;
1457
80876c20
LP
1458 if (s->kill_mode != KILL_NONE) {
1459 int sig = (state == SERVICE_STOP_SIGTERM || state == SERVICE_FINAL_SIGTERM) ? SIGTERM : SIGKILL;
034c6ed7 1460
50159e6a 1461 if (s->kill_mode == KILL_CONTROL_GROUP) {
034c6ed7 1462
50159e6a
LP
1463 if ((r = cgroup_bonding_kill_list(UNIT(s)->meta.cgroup_bondings, sig)) < 0) {
1464 if (r != -EAGAIN && r != -ESRCH)
1465 goto fail;
1466 } else
034c6ed7
LP
1467 sent = true;
1468 }
1469
50159e6a
LP
1470 if (!sent) {
1471 r = 0;
80876c20 1472
50159e6a
LP
1473 if (s->main_pid > 0) {
1474 if (kill(s->kill_mode == KILL_PROCESS ? s->main_pid : -s->main_pid, sig) < 0 && errno != ESRCH)
1475 r = -errno;
1476 else
1477 sent = true;
1478 }
1479
1480 if (s->control_pid > 0) {
1481 if (kill(s->kill_mode == KILL_PROCESS ? s->control_pid : -s->control_pid, sig) < 0 && errno != ESRCH)
1482 r = -errno;
1483 else
1484 sent = true;
1485 }
1486
1487 if (r < 0)
1488 goto fail;
1489 }
d6ea93e3 1490 }
034c6ed7 1491
e93bc5a6 1492 if (sent && (s->main_pid > 0 || s->control_pid > 0)) {
e558336f
LP
1493 if (s->timeout_usec > 0)
1494 if ((r = unit_watch_timer(UNIT(s), s->timeout_usec, &s->timer_watch)) < 0)
1495 goto fail;
d6ea93e3 1496
80876c20
LP
1497 service_set_state(s, state);
1498 } else if (state == SERVICE_STOP_SIGTERM || state == SERVICE_STOP_SIGKILL)
1499 service_enter_stop_post(s, true);
1500 else
034c6ed7
LP
1501 service_enter_dead(s, true, true);
1502
1503 return;
1504
1505fail:
9e2f7c11 1506 log_warning("%s failed to kill processes: %s", UNIT(s)->meta.id, strerror(-r));
034c6ed7 1507
80876c20 1508 if (state == SERVICE_STOP_SIGTERM || state == SERVICE_STOP_SIGKILL)
034c6ed7
LP
1509 service_enter_stop_post(s, false);
1510 else
1511 service_enter_dead(s, false, true);
1512}
1513
1514static void service_enter_stop(Service *s, bool success) {
1515 int r;
5925dd3c 1516
034c6ed7
LP
1517 assert(s);
1518
1519 if (!success)
1520 s->failure = true;
1521
5e94833f
LP
1522 service_unwatch_control_pid(s);
1523
a16e1123 1524 s->control_command_id = SERVICE_EXEC_STOP;
80876c20 1525 if ((s->control_command = s->exec_command[SERVICE_EXEC_STOP])) {
81a2b7ce
LP
1526 if ((r = service_spawn(s,
1527 s->control_command,
1528 true,
1529 false,
1530 !s->permissions_start_only,
1531 !s->root_directory_start_only,
c952c6ec 1532 false,
e55224ca 1533 &s->control_pid)) < 0)
034c6ed7
LP
1534 goto fail;
1535
80876c20
LP
1536 service_set_state(s, SERVICE_STOP);
1537 } else
034c6ed7
LP
1538 service_enter_signal(s, SERVICE_STOP_SIGTERM, true);
1539
1540 return;
1541
1542fail:
7020e8be 1543 log_warning("%s failed to run 'stop' task: %s", UNIT(s)->meta.id, strerror(-r));
034c6ed7
LP
1544 service_enter_signal(s, SERVICE_STOP_SIGTERM, false);
1545}
1546
80876c20
LP
1547static void service_enter_running(Service *s, bool success) {
1548 assert(s);
1549
1550 if (!success)
1551 s->failure = true;
1552
05e343b7
LP
1553 if (main_pid_good(s) != 0 &&
1554 cgroup_good(s) != 0 &&
1555 (s->bus_name_good || s->type != SERVICE_DBUS))
80876c20
LP
1556 service_set_state(s, SERVICE_RUNNING);
1557 else if (s->valid_no_process)
1558 service_set_state(s, SERVICE_EXITED);
1559 else
1560 service_enter_stop(s, true);
1561}
1562
034c6ed7
LP
1563static void service_enter_start_post(Service *s) {
1564 int r;
1565 assert(s);
1566
5e94833f
LP
1567 service_unwatch_control_pid(s);
1568
a16e1123 1569 s->control_command_id = SERVICE_EXEC_START_POST;
80876c20 1570 if ((s->control_command = s->exec_command[SERVICE_EXEC_START_POST])) {
81a2b7ce
LP
1571 if ((r = service_spawn(s,
1572 s->control_command,
1573 true,
1574 false,
1575 !s->permissions_start_only,
1576 !s->root_directory_start_only,
c952c6ec 1577 false,
e55224ca 1578 &s->control_pid)) < 0)
034c6ed7
LP
1579 goto fail;
1580
80876c20
LP
1581 service_set_state(s, SERVICE_START_POST);
1582 } else
1583 service_enter_running(s, true);
034c6ed7
LP
1584
1585 return;
1586
1587fail:
7020e8be 1588 log_warning("%s failed to run 'start-post' task: %s", UNIT(s)->meta.id, strerror(-r));
034c6ed7
LP
1589 service_enter_stop(s, false);
1590}
1591
1592static void service_enter_start(Service *s) {
1593 pid_t pid;
1594 int r;
1595
1596 assert(s);
1597
1598 assert(s->exec_command[SERVICE_EXEC_START]);
1599 assert(!s->exec_command[SERVICE_EXEC_START]->command_next);
1600
80876c20
LP
1601 if (s->type == SERVICE_FORKING)
1602 service_unwatch_control_pid(s);
1603 else
1604 service_unwatch_main_pid(s);
1605
81a2b7ce
LP
1606 if ((r = service_spawn(s,
1607 s->exec_command[SERVICE_EXEC_START],
8c47c732 1608 s->type == SERVICE_FORKING || s->type == SERVICE_DBUS || s->type == SERVICE_NOTIFY,
81a2b7ce
LP
1609 true,
1610 true,
1611 true,
c952c6ec 1612 s->notify_access != NOTIFY_NONE,
81a2b7ce 1613 &pid)) < 0)
034c6ed7
LP
1614 goto fail;
1615
1616 if (s->type == SERVICE_SIMPLE) {
1617 /* For simple services we immediately start
1618 * the START_POST binaries. */
1619
5925dd3c 1620 service_set_main_pid(s, pid);
034c6ed7
LP
1621 service_enter_start_post(s);
1622
1623 } else if (s->type == SERVICE_FORKING) {
1624
1625 /* For forking services we wait until the start
1626 * process exited. */
1627
a16e1123 1628 s->control_command_id = SERVICE_EXEC_START;
034c6ed7 1629 s->control_command = s->exec_command[SERVICE_EXEC_START];
5925dd3c 1630
e55224ca 1631 s->control_pid = pid;
80876c20
LP
1632 service_set_state(s, SERVICE_START);
1633
05e343b7 1634 } else if (s->type == SERVICE_FINISH ||
8c47c732
LP
1635 s->type == SERVICE_DBUS ||
1636 s->type == SERVICE_NOTIFY) {
7d55e835
LP
1637
1638 /* For finishing services we wait until the start
1639 * process exited, too, but it is our main process. */
1640
05e343b7 1641 /* For D-Bus services we know the main pid right away,
8c47c732
LP
1642 * but wait for the bus name to appear on the
1643 * bus. Notify services are similar. */
05e343b7 1644
5925dd3c 1645 service_set_main_pid(s, pid);
80876c20 1646 service_set_state(s, SERVICE_START);
034c6ed7
LP
1647 } else
1648 assert_not_reached("Unknown service type");
1649
1650 return;
1651
1652fail:
7020e8be 1653 log_warning("%s failed to run 'start' task: %s", UNIT(s)->meta.id, strerror(-r));
80876c20 1654 service_enter_signal(s, SERVICE_FINAL_SIGTERM, false);
034c6ed7
LP
1655}
1656
1657static void service_enter_start_pre(Service *s) {
1658 int r;
1659
1660 assert(s);
1661
5e94833f
LP
1662 service_unwatch_control_pid(s);
1663
a16e1123 1664 s->control_command_id = SERVICE_EXEC_START_PRE;
80876c20 1665 if ((s->control_command = s->exec_command[SERVICE_EXEC_START_PRE])) {
81a2b7ce
LP
1666 if ((r = service_spawn(s,
1667 s->control_command,
1668 true,
1669 false,
1670 !s->permissions_start_only,
1671 !s->root_directory_start_only,
c952c6ec 1672 false,
e55224ca 1673 &s->control_pid)) < 0)
034c6ed7
LP
1674 goto fail;
1675
80876c20
LP
1676 service_set_state(s, SERVICE_START_PRE);
1677 } else
034c6ed7
LP
1678 service_enter_start(s);
1679
1680 return;
1681
1682fail:
7020e8be 1683 log_warning("%s failed to run 'start-pre' task: %s", UNIT(s)->meta.id, strerror(-r));
034c6ed7
LP
1684 service_enter_dead(s, false, true);
1685}
1686
1687static void service_enter_restart(Service *s) {
1688 int r;
1689 assert(s);
1690
9ea9a0c8
LP
1691 service_enter_dead(s, true, false);
1692
87f0e418 1693 if ((r = manager_add_job(UNIT(s)->meta.manager, JOB_START, UNIT(s), JOB_FAIL, false, NULL)) < 0)
034c6ed7
LP
1694 goto fail;
1695
9e2f7c11 1696 log_debug("%s scheduled restart job.", UNIT(s)->meta.id);
034c6ed7
LP
1697 return;
1698
1699fail:
1700
9e2f7c11 1701 log_warning("%s failed to schedule restart job: %s", UNIT(s)->meta.id, strerror(-r));
034c6ed7
LP
1702 service_enter_dead(s, false, false);
1703}
1704
1705static void service_enter_reload(Service *s) {
1706 int r;
1707
1708 assert(s);
1709
5e94833f
LP
1710 service_unwatch_control_pid(s);
1711
a16e1123 1712 s->control_command_id = SERVICE_EXEC_RELOAD;
80876c20 1713 if ((s->control_command = s->exec_command[SERVICE_EXEC_RELOAD])) {
81a2b7ce
LP
1714 if ((r = service_spawn(s,
1715 s->control_command,
1716 true,
1717 false,
1718 !s->permissions_start_only,
1719 !s->root_directory_start_only,
c952c6ec 1720 false,
e55224ca 1721 &s->control_pid)) < 0)
034c6ed7
LP
1722 goto fail;
1723
80876c20
LP
1724 service_set_state(s, SERVICE_RELOAD);
1725 } else
1726 service_enter_running(s, true);
034c6ed7
LP
1727
1728 return;
1729
1730fail:
7020e8be 1731 log_warning("%s failed to run 'reload' task: %s", UNIT(s)->meta.id, strerror(-r));
034c6ed7
LP
1732 service_enter_stop(s, false);
1733}
1734
1735static void service_run_next(Service *s, bool success) {
1736 int r;
1737
1738 assert(s);
1739 assert(s->control_command);
1740 assert(s->control_command->command_next);
1741
1742 if (!success)
1743 s->failure = true;
1744
1745 s->control_command = s->control_command->command_next;
1746
5e94833f
LP
1747 service_unwatch_control_pid(s);
1748
81a2b7ce
LP
1749 if ((r = service_spawn(s,
1750 s->control_command,
1751 true,
1752 false,
1753 !s->permissions_start_only,
1754 !s->root_directory_start_only,
c952c6ec 1755 false,
e55224ca 1756 &s->control_pid)) < 0)
034c6ed7
LP
1757 goto fail;
1758
1759 return;
1760
1761fail:
7020e8be 1762 log_warning("%s failed to run spawn next task: %s", UNIT(s)->meta.id, strerror(-r));
034c6ed7 1763
80876c20
LP
1764 if (s->state == SERVICE_START_PRE)
1765 service_enter_signal(s, SERVICE_FINAL_SIGTERM, false);
1766 else if (s->state == SERVICE_STOP)
1767 service_enter_signal(s, SERVICE_STOP_SIGTERM, false);
034c6ed7
LP
1768 else if (s->state == SERVICE_STOP_POST)
1769 service_enter_dead(s, false, true);
1770 else
1771 service_enter_stop(s, false);
5cb5a6ff
LP
1772}
1773
87f0e418
LP
1774static int service_start(Unit *u) {
1775 Service *s = SERVICE(u);
5cb5a6ff
LP
1776
1777 assert(s);
1778
034c6ed7
LP
1779 /* We cannot fulfill this request right now, try again later
1780 * please! */
1781 if (s->state == SERVICE_STOP ||
1782 s->state == SERVICE_STOP_SIGTERM ||
1783 s->state == SERVICE_STOP_SIGKILL ||
1784 s->state == SERVICE_STOP_POST ||
1785 s->state == SERVICE_FINAL_SIGTERM ||
1786 s->state == SERVICE_FINAL_SIGKILL)
5cb5a6ff
LP
1787 return -EAGAIN;
1788
034c6ed7
LP
1789 /* Already on it! */
1790 if (s->state == SERVICE_START_PRE ||
1791 s->state == SERVICE_START ||
1792 s->state == SERVICE_START_POST)
1793 return 0;
1794
18c78fb1 1795 assert(s->state == SERVICE_DEAD || s->state == SERVICE_MAINTENANCE || s->state == SERVICE_AUTO_RESTART);
5cb5a6ff 1796
1e2e8133
LP
1797 /* Make sure we don't enter a busy loop of some kind. */
1798 if (!ratelimit_test(&s->ratelimit)) {
9e2f7c11 1799 log_warning("%s start request repeated too quickly, refusing to start.", u->meta.id);
d5159713 1800 return -ECANCELED;
1e2e8133
LP
1801 }
1802
034c6ed7
LP
1803 s->failure = false;
1804 s->main_pid_known = false;
3a762661 1805 s->allow_restart = true;
034c6ed7
LP
1806
1807 service_enter_start_pre(s);
1808 return 0;
5cb5a6ff
LP
1809}
1810
87f0e418
LP
1811static int service_stop(Unit *u) {
1812 Service *s = SERVICE(u);
5cb5a6ff
LP
1813
1814 assert(s);
1815
e537352b 1816 /* Cannot do this now */
034c6ed7
LP
1817 if (s->state == SERVICE_START_PRE ||
1818 s->state == SERVICE_START ||
1819 s->state == SERVICE_START_POST ||
1820 s->state == SERVICE_RELOAD)
1821 return -EAGAIN;
1822
e537352b
LP
1823 /* Already on it */
1824 if (s->state == SERVICE_STOP ||
1825 s->state == SERVICE_STOP_SIGTERM ||
1826 s->state == SERVICE_STOP_SIGKILL ||
1827 s->state == SERVICE_STOP_POST ||
1828 s->state == SERVICE_FINAL_SIGTERM ||
1829 s->state == SERVICE_FINAL_SIGKILL)
1830 return 0;
1831
034c6ed7
LP
1832 if (s->state == SERVICE_AUTO_RESTART) {
1833 service_set_state(s, SERVICE_DEAD);
1834 return 0;
1835 }
1836
80876c20 1837 assert(s->state == SERVICE_RUNNING || s->state == SERVICE_EXITED);
5cb5a6ff 1838
3a762661
LP
1839 /* This is a user request, so don't do restarts on this
1840 * shutdown. */
1841 s->allow_restart = false;
1842
034c6ed7 1843 service_enter_stop(s, true);
5cb5a6ff
LP
1844 return 0;
1845}
1846
87f0e418
LP
1847static int service_reload(Unit *u) {
1848 Service *s = SERVICE(u);
034c6ed7
LP
1849
1850 assert(s);
1851
80876c20 1852 assert(s->state == SERVICE_RUNNING || s->state == SERVICE_EXITED);
034c6ed7
LP
1853
1854 service_enter_reload(s);
5cb5a6ff
LP
1855 return 0;
1856}
1857
87f0e418
LP
1858static bool service_can_reload(Unit *u) {
1859 Service *s = SERVICE(u);
034c6ed7
LP
1860
1861 assert(s);
1862
1863 return !!s->exec_command[SERVICE_EXEC_RELOAD];
1864}
1865
a16e1123
LP
1866static int service_serialize(Unit *u, FILE *f, FDSet *fds) {
1867 Service *s = SERVICE(u);
1868
1869 assert(u);
1870 assert(f);
1871 assert(fds);
1872
1873 unit_serialize_item(u, f, "state", service_state_to_string(s->state));
1874 unit_serialize_item(u, f, "failure", yes_no(s->failure));
1875
1876 if (s->control_pid > 0)
5925dd3c 1877 unit_serialize_item_format(u, f, "control-pid", "%lu", (unsigned long) s->control_pid);
a16e1123 1878
5925dd3c
LP
1879 if (s->main_pid_known && s->main_pid > 0)
1880 unit_serialize_item_format(u, f, "main-pid", "%lu", (unsigned long) s->main_pid);
a16e1123
LP
1881
1882 unit_serialize_item(u, f, "main-pid-known", yes_no(s->main_pid_known));
1883
1884 /* There's a minor uncleanliness here: if there are multiple
1885 * commands attached here, we will start from the first one
1886 * again */
1887 if (s->control_command_id >= 0)
825636e5 1888 unit_serialize_item(u, f, "control-command", service_exec_command_to_string(s->control_command_id));
a16e1123
LP
1889
1890 if (s->socket_fd >= 0) {
1891 int copy;
1892
1893 if ((copy = fdset_put_dup(fds, s->socket_fd)) < 0)
1894 return copy;
1895
1896 unit_serialize_item_format(u, f, "socket-fd", "%i", copy);
1897 }
1898
1899 return 0;
1900}
1901
1902static int service_deserialize_item(Unit *u, const char *key, const char *value, FDSet *fds) {
1903 Service *s = SERVICE(u);
1904 int r;
1905
1906 assert(u);
1907 assert(key);
1908 assert(value);
1909 assert(fds);
1910
1911 if (streq(key, "state")) {
1912 ServiceState state;
1913
1914 if ((state = service_state_from_string(value)) < 0)
1915 log_debug("Failed to parse state value %s", value);
1916 else
1917 s->deserialized_state = state;
1918 } else if (streq(key, "failure")) {
1919 int b;
1920
1921 if ((b = parse_boolean(value)) < 0)
1922 log_debug("Failed to parse failure value %s", value);
1923 else
1924 s->failure = b || s->failure;
1925 } else if (streq(key, "control-pid")) {
5925dd3c 1926 pid_t pid;
a16e1123 1927
5925dd3c 1928 if ((r = parse_pid(value, &pid)) < 0)
a16e1123
LP
1929 log_debug("Failed to parse control-pid value %s", value);
1930 else
e55224ca 1931 s->control_pid = pid;
a16e1123 1932 } else if (streq(key, "main-pid")) {
5925dd3c 1933 pid_t pid;
a16e1123 1934
5925dd3c 1935 if ((r = parse_pid(value, &pid)) < 0)
a16e1123
LP
1936 log_debug("Failed to parse main-pid value %s", value);
1937 else
5925dd3c 1938 service_set_main_pid(s, (pid_t) pid);
a16e1123
LP
1939 } else if (streq(key, "main-pid-known")) {
1940 int b;
1941
1942 if ((b = parse_boolean(value)) < 0)
1943 log_debug("Failed to parse main-pid-known value %s", value);
1944 else
1945 s->main_pid_known = b;
1946 } else if (streq(key, "control-command")) {
1947 ServiceExecCommand id;
1948
1949 if ((id = service_exec_command_from_string(value)) < 0)
1950 log_debug("Failed to parse exec-command value %s", value);
1951 else {
1952 s->control_command_id = id;
1953 s->control_command = s->exec_command[id];
1954 }
1955 } else if (streq(key, "socket-fd")) {
1956 int fd;
1957
1958 if (safe_atoi(value, &fd) < 0 || fd < 0 || !fdset_contains(fds, fd))
1959 log_debug("Failed to parse socket-fd value %s", value);
1960 else {
1961
1962 if (s->socket_fd >= 0)
1963 close_nointr_nofail(s->socket_fd);
1964 s->socket_fd = fdset_remove(fds, fd);
1965 }
1966 } else
1967 log_debug("Unknown serialization key '%s'", key);
1968
1969 return 0;
1970}
1971
87f0e418
LP
1972static UnitActiveState service_active_state(Unit *u) {
1973 assert(u);
5cb5a6ff 1974
acbb0225 1975 return state_translation_table[SERVICE(u)->state];
034c6ed7
LP
1976}
1977
10a94420
LP
1978static const char *service_sub_state_to_string(Unit *u) {
1979 assert(u);
1980
1981 return service_state_to_string(SERVICE(u)->state);
1982}
1983
701cc384
LP
1984static bool service_check_gc(Unit *u) {
1985 Service *s = SERVICE(u);
1986
1987 assert(s);
1988
1989 return !!s->sysv_path;
1990}
1991
1992static bool service_check_snapshot(Unit *u) {
1993 Service *s = SERVICE(u);
1994
1995 assert(s);
1996
1997 return !s->got_socket_fd;
1998}
1999
87f0e418
LP
2000static void service_sigchld_event(Unit *u, pid_t pid, int code, int status) {
2001 Service *s = SERVICE(u);
034c6ed7 2002 bool success;
5cb5a6ff
LP
2003
2004 assert(s);
034c6ed7
LP
2005 assert(pid >= 0);
2006
cb8a8f78 2007 success = is_clean_exit(code, status);
034c6ed7
LP
2008 s->failure = s->failure || !success;
2009
2010 if (s->main_pid == pid) {
2011
2012 exec_status_fill(&s->main_exec_status, pid, code, status);
2013 s->main_pid = 0;
2014
8c47c732 2015 if (s->type != SERVICE_FORKING) {
034c6ed7
LP
2016 assert(s->exec_command[SERVICE_EXEC_START]);
2017 s->exec_command[SERVICE_EXEC_START]->exec_status = s->main_exec_status;
2018 }
2019
9e2f7c11 2020 log_debug("%s: main process exited, code=%s, status=%i", u->meta.id, sigchld_code_to_string(code), status);
034c6ed7
LP
2021
2022 /* The service exited, so the service is officially
2023 * gone. */
2024
2025 switch (s->state) {
2026
2027 case SERVICE_START_POST:
2028 case SERVICE_RELOAD:
2029 case SERVICE_STOP:
2030 /* Need to wait until the operation is
2031 * done */
2032 break;
2033
7d55e835 2034 case SERVICE_START:
c4653a4d
LP
2035 if (s->type == SERVICE_FINISH) {
2036 /* This was our main goal, so let's go on */
2037 if (success)
2038 service_enter_start_post(s);
2039 else
2040 service_enter_signal(s, SERVICE_FINAL_SIGTERM, false);
2041 break;
2042 } else {
8c47c732 2043 assert(s->type == SERVICE_DBUS || s->type == SERVICE_NOTIFY);
7d55e835 2044
c4653a4d
LP
2045 /* Fall through */
2046 }
7d55e835 2047
034c6ed7 2048 case SERVICE_RUNNING:
80876c20 2049 service_enter_running(s, success);
034c6ed7
LP
2050 break;
2051
2052 case SERVICE_STOP_SIGTERM:
2053 case SERVICE_STOP_SIGKILL:
2054
2055 if (!control_pid_good(s))
2056 service_enter_stop_post(s, success);
5cb5a6ff 2057
034c6ed7
LP
2058 /* If there is still a control process, wait for that first */
2059 break;
5cb5a6ff 2060
034c6ed7
LP
2061 default:
2062 assert_not_reached("Uh, main process died at wrong time.");
2063 }
5cb5a6ff 2064
034c6ed7 2065 } else if (s->control_pid == pid) {
034c6ed7 2066
a16e1123
LP
2067 if (s->control_command)
2068 exec_status_fill(&s->control_command->exec_status, pid, code, status);
2069
034c6ed7
LP
2070 s->control_pid = 0;
2071
9e2f7c11 2072 log_debug("%s: control process exited, code=%s status=%i", u->meta.id, sigchld_code_to_string(code), status);
034c6ed7
LP
2073
2074 /* If we are shutting things down anyway we
2075 * don't care about failing commands. */
2076
a16e1123 2077 if (s->control_command && s->control_command->command_next && success) {
034c6ed7
LP
2078
2079 /* There is another command to *
2080 * execute, so let's do that. */
2081
9e2f7c11 2082 log_debug("%s running next command for state %s", u->meta.id, service_state_to_string(s->state));
034c6ed7
LP
2083 service_run_next(s, success);
2084
80876c20 2085 } else {
034c6ed7
LP
2086 /* No further commands for this step, so let's
2087 * figure out what to do next */
2088
a16e1123
LP
2089 s->control_command = NULL;
2090 s->control_command_id = _SERVICE_EXEC_COMMAND_INVALID;
2091
9e2f7c11 2092 log_debug("%s got final SIGCHLD for state %s", u->meta.id, service_state_to_string(s->state));
bd982a8b 2093
034c6ed7
LP
2094 switch (s->state) {
2095
2096 case SERVICE_START_PRE:
2097 if (success)
2098 service_enter_start(s);
2099 else
80876c20 2100 service_enter_signal(s, SERVICE_FINAL_SIGTERM, false);
034c6ed7
LP
2101 break;
2102
2103 case SERVICE_START:
2104 assert(s->type == SERVICE_FORKING);
2105
2106 /* Let's try to load the pid
2107 * file here if we can. We
2108 * ignore the return value,
2109 * since the PID file might
2110 * actually be created by a
2111 * START_POST script */
2112
2113 if (success) {
2114 if (s->pid_file)
2115 service_load_pid_file(s);
2116
2117 service_enter_start_post(s);
2118 } else
80876c20 2119 service_enter_signal(s, SERVICE_FINAL_SIGTERM, false);
034c6ed7
LP
2120
2121 break;
2122
2123 case SERVICE_START_POST:
2124 if (success && s->pid_file && !s->main_pid_known) {
2125 int r;
2126
2127 /* Hmm, let's see if we can
2128 * load the pid now after the
2129 * start-post scripts got
2130 * executed. */
2131
2132 if ((r = service_load_pid_file(s)) < 0)
9e2f7c11 2133 log_warning("%s: failed to load PID file %s: %s", UNIT(s)->meta.id, s->pid_file, strerror(-r));
034c6ed7
LP
2134 }
2135
2136 /* Fall through */
2137
2138 case SERVICE_RELOAD:
80876c20
LP
2139 if (success)
2140 service_enter_running(s, true);
2141 else
034c6ed7
LP
2142 service_enter_stop(s, false);
2143
2144 break;
2145
2146 case SERVICE_STOP:
80876c20 2147 service_enter_signal(s, SERVICE_STOP_SIGTERM, success);
034c6ed7
LP
2148 break;
2149
2150 case SERVICE_STOP_SIGTERM:
2151 case SERVICE_STOP_SIGKILL:
2152 if (main_pid_good(s) <= 0)
2153 service_enter_stop_post(s, success);
2154
2155 /* If there is still a service
2156 * process around, wait until
2157 * that one quit, too */
2158 break;
2159
2160 case SERVICE_STOP_POST:
2161 case SERVICE_FINAL_SIGTERM:
2162 case SERVICE_FINAL_SIGKILL:
2163 service_enter_dead(s, success, true);
2164 break;
2165
2166 default:
2167 assert_not_reached("Uh, control process died at wrong time.");
2168 }
2169 }
8c47c732 2170 }
034c6ed7
LP
2171}
2172
acbb0225 2173static void service_timer_event(Unit *u, uint64_t elapsed, Watch* w) {
87f0e418 2174 Service *s = SERVICE(u);
034c6ed7
LP
2175
2176 assert(s);
2177 assert(elapsed == 1);
2178
acbb0225 2179 assert(w == &s->timer_watch);
034c6ed7
LP
2180
2181 switch (s->state) {
2182
2183 case SERVICE_START_PRE:
2184 case SERVICE_START:
9e2f7c11 2185 log_warning("%s operation timed out. Terminating.", u->meta.id);
80876c20
LP
2186 service_enter_signal(s, SERVICE_FINAL_SIGTERM, false);
2187 break;
2188
034c6ed7
LP
2189 case SERVICE_START_POST:
2190 case SERVICE_RELOAD:
9e2f7c11 2191 log_warning("%s operation timed out. Stopping.", u->meta.id);
034c6ed7
LP
2192 service_enter_stop(s, false);
2193 break;
2194
2195 case SERVICE_STOP:
9e2f7c11 2196 log_warning("%s stopping timed out. Terminating.", u->meta.id);
034c6ed7
LP
2197 service_enter_signal(s, SERVICE_STOP_SIGTERM, false);
2198 break;
2199
2200 case SERVICE_STOP_SIGTERM:
9e2f7c11 2201 log_warning("%s stopping timed out. Killing.", u->meta.id);
034c6ed7
LP
2202 service_enter_signal(s, SERVICE_STOP_SIGKILL, false);
2203 break;
2204
2205 case SERVICE_STOP_SIGKILL:
2206 /* Uh, wie sent a SIGKILL and it is still not gone?
2207 * Must be something we cannot kill, so let's just be
2208 * weirded out and continue */
2209
9e2f7c11 2210 log_warning("%s still around after SIGKILL. Ignoring.", u->meta.id);
034c6ed7
LP
2211 service_enter_stop_post(s, false);
2212 break;
2213
2214 case SERVICE_STOP_POST:
9e2f7c11 2215 log_warning("%s stopping timed out (2). Terminating.", u->meta.id);
034c6ed7
LP
2216 service_enter_signal(s, SERVICE_FINAL_SIGTERM, false);
2217 break;
2218
2219 case SERVICE_FINAL_SIGTERM:
9e2f7c11 2220 log_warning("%s stopping timed out (2). Killing.", u->meta.id);
034c6ed7
LP
2221 service_enter_signal(s, SERVICE_FINAL_SIGKILL, false);
2222 break;
2223
2224 case SERVICE_FINAL_SIGKILL:
18c78fb1 2225 log_warning("%s still around after SIGKILL (2). Entering maintenance mode.", u->meta.id);
034c6ed7
LP
2226 service_enter_dead(s, false, true);
2227 break;
2228
2229 case SERVICE_AUTO_RESTART:
9e2f7c11 2230 log_debug("%s holdoff time over, scheduling restart.", u->meta.id);
034c6ed7
LP
2231 service_enter_restart(s);
2232 break;
2233
2234 default:
2235 assert_not_reached("Timeout at wrong time.");
2236 }
5cb5a6ff
LP
2237}
2238
8e274523
LP
2239static void service_cgroup_notify_event(Unit *u) {
2240 Service *s = SERVICE(u);
2241
2242 assert(u);
2243
9e2f7c11 2244 log_debug("%s: cgroup is empty", u->meta.id);
8e274523
LP
2245
2246 switch (s->state) {
2247
2248 /* Waiting for SIGCHLD is usually more interesting,
2249 * because it includes return codes/signals. Which is
2250 * why we ignore the cgroup events for most cases,
2251 * except when we don't know pid which to expect the
2252 * SIGCHLD for. */
2253
2254 case SERVICE_RUNNING:
80876c20 2255 service_enter_running(s, true);
8e274523
LP
2256 break;
2257
2258 default:
2259 ;
2260 }
2261}
2262
c952c6ec 2263static void service_notify_message(Unit *u, pid_t pid, char **tags) {
8c47c732
LP
2264 Service *s = SERVICE(u);
2265 const char *e;
2266
2267 assert(u);
2268
c952c6ec
LP
2269 if (s->notify_access == NOTIFY_NONE) {
2270 log_warning("%s: Got notification message from PID %lu, but reception is disabled.",
2271 u->meta.id, (unsigned long) pid);
2272 return;
2273 }
2274
2275 if (s->notify_access == NOTIFY_MAIN && pid != s->main_pid) {
2276 log_warning("%s: Got notification message from PID %lu, but reception only permitted for PID %lu",
2277 u->meta.id, (unsigned long) pid, (unsigned long) s->main_pid);
2278 return;
2279 }
2280
8c47c732
LP
2281 log_debug("%s: Got message", u->meta.id);
2282
2283 /* Interpret MAINPID= */
2284 if ((e = strv_find_prefix(tags, "MAINPID=")) &&
2285 (s->state == SERVICE_START ||
2286 s->state == SERVICE_START_POST ||
2287 s->state == SERVICE_RUNNING ||
2288 s->state == SERVICE_RELOAD)) {
8c47c732 2289
5925dd3c 2290 if (parse_pid(e + 8, &pid) < 0)
8c47c732
LP
2291 log_warning("Failed to parse %s", e);
2292 else {
2293 log_debug("%s: got %s", u->meta.id, e);
5925dd3c 2294 service_set_main_pid(s, pid);
8c47c732
LP
2295 }
2296 }
2297
2298 /* Interpret READY= */
2299 if (s->type == SERVICE_NOTIFY &&
2300 s->state == SERVICE_START &&
2301 strv_find(tags, "READY=1")) {
2302 log_debug("%s: got READY=1", u->meta.id);
2303
2304 service_enter_start_post(s);
2305 }
2306
2307 /* Interpret STATUS= */
2308 if ((e = strv_find_prefix(tags, "STATUS="))) {
2309 char *t;
2310
2311 if (!(t = strdup(e+7))) {
2312 log_error("Failed to allocate string.");
2313 return;
2314 }
2315
2316 log_debug("%s: got %s", u->meta.id, e);
2317
2318 free(s->status_text);
2319 s->status_text = t;
2320 }
2321}
2322
2c4104f0 2323static int service_enumerate(Manager *m) {
2c4104f0
LP
2324 char **p;
2325 unsigned i;
2326 DIR *d = NULL;
2327 char *path = NULL, *fpath = NULL, *name = NULL;
2328 int r;
2329
2330 assert(m);
2331
84e3543e 2332 STRV_FOREACH(p, m->lookup_paths.sysvrcnd_path)
09cd1ab1 2333 for (i = 0; i < ELEMENTSOF(rcnd_table); i ++) {
2c4104f0
LP
2334 struct dirent *de;
2335
2336 free(path);
2337 path = NULL;
09cd1ab1 2338 if (asprintf(&path, "%s/%s", *p, rcnd_table[i].path) < 0) {
2c4104f0
LP
2339 r = -ENOMEM;
2340 goto finish;
2341 }
2342
2343 if (d)
2344 closedir(d);
2345
2346 if (!(d = opendir(path))) {
2347 if (errno != ENOENT)
2348 log_warning("opendir() failed on %s: %s", path, strerror(errno));
2349
2350 continue;
2351 }
2352
2353 while ((de = readdir(d))) {
6542952f 2354 Unit *service;
db06e3b6 2355 int a, b;
2c4104f0
LP
2356
2357 if (ignore_file(de->d_name))
2358 continue;
2359
2360 if (de->d_name[0] != 'S' && de->d_name[0] != 'K')
2361 continue;
2362
2363 if (strlen(de->d_name) < 4)
2364 continue;
2365
db06e3b6
LP
2366 a = undecchar(de->d_name[1]);
2367 b = undecchar(de->d_name[2]);
2368
2369 if (a < 0 || b < 0)
2370 continue;
2371
2c4104f0
LP
2372 free(fpath);
2373 fpath = NULL;
09cd1ab1 2374 if (asprintf(&fpath, "%s/%s/%s", *p, rcnd_table[i].path, de->d_name) < 0) {
2c4104f0
LP
2375 r = -ENOMEM;
2376 goto finish;
2377 }
2378
2379 if (access(fpath, X_OK) < 0) {
2380
2381 if (errno != ENOENT)
2382 log_warning("access() failed on %s: %s", fpath, strerror(errno));
2383
2384 continue;
2385 }
2386
2387 free(name);
b7ccee3c 2388 if (!(name = sysv_translate_name(de->d_name + 3))) {
2c4104f0
LP
2389 r = -ENOMEM;
2390 goto finish;
2391 }
2392
fbe9f3a9
LP
2393 if ((r = manager_load_unit_prepare(m, name, NULL, &service)) < 0) {
2394 log_warning("Failed to prepare unit %s: %s", name, strerror(-r));
2395 continue;
2396 }
2c4104f0 2397
09cd1ab1 2398 if (de->d_name[0] == 'S' &&
fc5df99e 2399 (rcnd_table[i].type == RUNLEVEL_UP || rcnd_table[i].type == RUNLEVEL_SYSINIT))
fbe9f3a9
LP
2400 SERVICE(service)->sysv_start_priority =
2401 MAX(a*10 + b, SERVICE(service)->sysv_start_priority);
db06e3b6
LP
2402
2403 manager_dispatch_load_queue(m);
2404 service = unit_follow_merge(service);
2405
2c4104f0 2406 if (de->d_name[0] == 'S') {
6542952f
LP
2407 Unit *runlevel_target;
2408
09cd1ab1 2409 if ((r = manager_load_unit(m, rcnd_table[i].target, NULL, &runlevel_target)) < 0)
6542952f
LP
2410 goto finish;
2411
2412 if ((r = unit_add_dependency(runlevel_target, UNIT_WANTS, service, true)) < 0)
2c4104f0
LP
2413 goto finish;
2414
a0fcc5f6 2415 if ((r = unit_add_dependency(service, UNIT_BEFORE, runlevel_target, true)) < 0)
2c4104f0 2416 goto finish;
23a177ef 2417
fc5df99e
LP
2418 } else if (de->d_name[0] == 'K' &&
2419 (rcnd_table[i].type == RUNLEVEL_DOWN ||
2420 rcnd_table[i].type == RUNLEVEL_SYSINIT)) {
6542952f
LP
2421 Unit *shutdown_target;
2422
23a177ef
LP
2423 /* We honour K links only for
2424 * halt/reboot. For the normal
2425 * runlevels we assume the
2426 * stop jobs will be
2427 * implicitly added by the
6542952f
LP
2428 * core logic. Also, we don't
2429 * really distuingish here
2430 * between the runlevels 0 and
2431 * 6 and just add them to the
fc5df99e
LP
2432 * special shutdown target. On
2433 * SUSE the boot.d/ runlevel
2434 * is also used for shutdown,
2435 * so we add links for that
2436 * too to the shutdown
2437 * target.*/
6542952f
LP
2438
2439 if ((r = manager_load_unit(m, SPECIAL_SHUTDOWN_TARGET, NULL, &shutdown_target)) < 0)
2440 goto finish;
23a177ef 2441
a0fcc5f6 2442 if ((r = unit_add_dependency(service, UNIT_CONFLICTS, shutdown_target, true)) < 0)
2c4104f0
LP
2443 goto finish;
2444
a0fcc5f6 2445 if ((r = unit_add_dependency(service, UNIT_BEFORE, shutdown_target, true)) < 0)
2c4104f0
LP
2446 goto finish;
2447 }
2448 }
2449 }
2450
2451 r = 0;
2452
2453finish:
2454 free(path);
2455 free(fpath);
2456 free(name);
fbe9f3a9
LP
2457
2458 if (d)
2459 closedir(d);
2c4104f0
LP
2460
2461 return r;
2462}
2463
05e343b7
LP
2464static void service_bus_name_owner_change(
2465 Unit *u,
2466 const char *name,
2467 const char *old_owner,
2468 const char *new_owner) {
2469
2470 Service *s = SERVICE(u);
2471
2472 assert(s);
2473 assert(name);
2474
2475 assert(streq(s->bus_name, name));
2476 assert(old_owner || new_owner);
2477
2478 if (old_owner && new_owner)
2479 log_debug("%s's D-Bus name %s changed owner from %s to %s", u->meta.id, name, old_owner, new_owner);
2480 else if (old_owner)
2481 log_debug("%s's D-Bus name %s no longer registered by %s", u->meta.id, name, old_owner);
2482 else
2483 log_debug("%s's D-Bus name %s now registered by %s", u->meta.id, name, new_owner);
2484
2485 s->bus_name_good = !!new_owner;
2486
2487 if (s->type == SERVICE_DBUS) {
2488
2489 /* service_enter_running() will figure out what to
2490 * do */
2491 if (s->state == SERVICE_RUNNING)
2492 service_enter_running(s, true);
2493 else if (s->state == SERVICE_START && new_owner)
2494 service_enter_start_post(s);
2495
2496 } else if (new_owner &&
2497 s->main_pid <= 0 &&
2498 (s->state == SERVICE_START ||
2499 s->state == SERVICE_START_POST ||
2500 s->state == SERVICE_RUNNING ||
2501 s->state == SERVICE_RELOAD)) {
2502
2503 /* Try to acquire PID from bus service */
2504 log_debug("Trying to acquire PID from D-Bus name...");
2505
2506 bus_query_pid(u->meta.manager, name);
2507 }
2508}
2509
2510static void service_bus_query_pid_done(
2511 Unit *u,
2512 const char *name,
2513 pid_t pid) {
2514
2515 Service *s = SERVICE(u);
2516
2517 assert(s);
2518 assert(name);
2519
2520 log_debug("%s's D-Bus name %s is now owned by process %u", u->meta.id, name, (unsigned) pid);
2521
2522 if (s->main_pid <= 0 &&
2523 (s->state == SERVICE_START ||
2524 s->state == SERVICE_START_POST ||
2525 s->state == SERVICE_RUNNING ||
2526 s->state == SERVICE_RELOAD))
5925dd3c 2527 service_set_main_pid(s, pid);
05e343b7
LP
2528}
2529
4f2d528d
LP
2530int service_set_socket_fd(Service *s, int fd) {
2531 assert(s);
2532 assert(fd >= 0);
2533
2534 /* This is called by the socket code when instantiating a new
2535 * service for a stream socket and the socket needs to be
2536 * configured. */
2537
2538 if (UNIT(s)->meta.load_state != UNIT_LOADED)
2539 return -EINVAL;
2540
2541 if (s->socket_fd >= 0)
2542 return -EBUSY;
2543
2544 if (s->state != SERVICE_DEAD)
2545 return -EAGAIN;
2546
2547 s->socket_fd = fd;
701cc384 2548 s->got_socket_fd = true;
4f2d528d
LP
2549 return 0;
2550}
2551
94f04347
LP
2552static const char* const service_state_table[_SERVICE_STATE_MAX] = {
2553 [SERVICE_DEAD] = "dead",
2554 [SERVICE_START_PRE] = "start-pre",
2555 [SERVICE_START] = "start",
2556 [SERVICE_START_POST] = "start-post",
2557 [SERVICE_RUNNING] = "running",
80876c20 2558 [SERVICE_EXITED] = "exited",
94f04347
LP
2559 [SERVICE_RELOAD] = "reload",
2560 [SERVICE_STOP] = "stop",
2561 [SERVICE_STOP_SIGTERM] = "stop-sigterm",
2562 [SERVICE_STOP_SIGKILL] = "stop-sigkill",
2563 [SERVICE_STOP_POST] = "stop-post",
2564 [SERVICE_FINAL_SIGTERM] = "final-sigterm",
2565 [SERVICE_FINAL_SIGKILL] = "final-sigkill",
18c78fb1 2566 [SERVICE_MAINTENANCE] = "maintenance",
94f04347
LP
2567 [SERVICE_AUTO_RESTART] = "auto-restart",
2568};
2569
2570DEFINE_STRING_TABLE_LOOKUP(service_state, ServiceState);
2571
2572static const char* const service_restart_table[_SERVICE_RESTART_MAX] = {
2573 [SERVICE_ONCE] = "once",
2574 [SERVICE_RESTART_ON_SUCCESS] = "restart-on-success",
40531a55 2575 [SERVICE_RESTART_ALWAYS] = "restart-always",
94f04347
LP
2576};
2577
2578DEFINE_STRING_TABLE_LOOKUP(service_restart, ServiceRestart);
2579
2580static const char* const service_type_table[_SERVICE_TYPE_MAX] = {
2581 [SERVICE_FORKING] = "forking",
2582 [SERVICE_SIMPLE] = "simple",
05e343b7 2583 [SERVICE_FINISH] = "finish",
8c47c732
LP
2584 [SERVICE_DBUS] = "dbus",
2585 [SERVICE_NOTIFY] = "notify"
94f04347
LP
2586};
2587
2588DEFINE_STRING_TABLE_LOOKUP(service_type, ServiceType);
2589
e537352b 2590static const char* const service_exec_command_table[_SERVICE_EXEC_COMMAND_MAX] = {
94f04347
LP
2591 [SERVICE_EXEC_START_PRE] = "ExecStartPre",
2592 [SERVICE_EXEC_START] = "ExecStart",
2593 [SERVICE_EXEC_START_POST] = "ExecStartPost",
2594 [SERVICE_EXEC_RELOAD] = "ExecReload",
2595 [SERVICE_EXEC_STOP] = "ExecStop",
2596 [SERVICE_EXEC_STOP_POST] = "ExecStopPost",
2597};
2598
2599DEFINE_STRING_TABLE_LOOKUP(service_exec_command, ServiceExecCommand);
2600
c952c6ec
LP
2601static const char* const notify_access_table[_NOTIFY_ACCESS_MAX] = {
2602 [NOTIFY_NONE] = "none",
2603 [NOTIFY_MAIN] = "main",
2604 [NOTIFY_ALL] = "all"
2605};
2606
2607DEFINE_STRING_TABLE_LOOKUP(notify_access, NotifyAccess);
2608
87f0e418 2609const UnitVTable service_vtable = {
5cb5a6ff
LP
2610 .suffix = ".service",
2611
034c6ed7
LP
2612 .init = service_init,
2613 .done = service_done,
a16e1123
LP
2614 .load = service_load,
2615
2616 .coldplug = service_coldplug,
034c6ed7 2617
5cb5a6ff
LP
2618 .dump = service_dump,
2619
2620 .start = service_start,
2621 .stop = service_stop,
2622 .reload = service_reload,
2623
034c6ed7
LP
2624 .can_reload = service_can_reload,
2625
a16e1123
LP
2626 .serialize = service_serialize,
2627 .deserialize_item = service_deserialize_item,
2628
5cb5a6ff 2629 .active_state = service_active_state,
10a94420 2630 .sub_state_to_string = service_sub_state_to_string,
5cb5a6ff 2631
701cc384
LP
2632 .check_gc = service_check_gc,
2633 .check_snapshot = service_check_snapshot,
2634
034c6ed7
LP
2635 .sigchld_event = service_sigchld_event,
2636 .timer_event = service_timer_event,
2c4104f0 2637
8e274523 2638 .cgroup_notify_empty = service_cgroup_notify_event,
8c47c732 2639 .notify_message = service_notify_message,
8e274523 2640
05e343b7
LP
2641 .bus_name_owner_change = service_bus_name_owner_change,
2642 .bus_query_pid_done = service_bus_query_pid_done,
2643
4139c1b2
LP
2644 .bus_message_handler = bus_service_message_handler,
2645
2c4104f0 2646 .enumerate = service_enumerate
5cb5a6ff 2647};