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