]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/core/service.c
core: add a concept of "dynamic" user ids, that are allocated as long as a service...
[thirdparty/systemd.git] / src / core / service.c
1 /***
2 This file is part of systemd.
3
4 Copyright 2010 Lennart Poettering
5
6 systemd is free software; you can redistribute it and/or modify it
7 under the terms of the GNU Lesser General Public License as published by
8 the Free Software Foundation; either version 2.1 of the License, or
9 (at your option) any later version.
10
11 systemd is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
15
16 You should have received a copy of the GNU Lesser General Public License
17 along with systemd; If not, see <http://www.gnu.org/licenses/>.
18 ***/
19
20 #include <errno.h>
21 #include <signal.h>
22 #include <unistd.h>
23
24 #include "alloc-util.h"
25 #include "async.h"
26 #include "bus-error.h"
27 #include "bus-kernel.h"
28 #include "bus-util.h"
29 #include "dbus-service.h"
30 #include "def.h"
31 #include "env-util.h"
32 #include "escape.h"
33 #include "exit-status.h"
34 #include "fd-util.h"
35 #include "fileio.h"
36 #include "formats-util.h"
37 #include "fs-util.h"
38 #include "load-dropin.h"
39 #include "load-fragment.h"
40 #include "log.h"
41 #include "manager.h"
42 #include "parse-util.h"
43 #include "path-util.h"
44 #include "process-util.h"
45 #include "service.h"
46 #include "signal-util.h"
47 #include "special.h"
48 #include "string-table.h"
49 #include "string-util.h"
50 #include "strv.h"
51 #include "unit-name.h"
52 #include "unit-printf.h"
53 #include "unit.h"
54 #include "utf8.h"
55 #include "util.h"
56
57 static const UnitActiveState state_translation_table[_SERVICE_STATE_MAX] = {
58 [SERVICE_DEAD] = UNIT_INACTIVE,
59 [SERVICE_START_PRE] = UNIT_ACTIVATING,
60 [SERVICE_START] = UNIT_ACTIVATING,
61 [SERVICE_START_POST] = UNIT_ACTIVATING,
62 [SERVICE_RUNNING] = UNIT_ACTIVE,
63 [SERVICE_EXITED] = UNIT_ACTIVE,
64 [SERVICE_RELOAD] = UNIT_RELOADING,
65 [SERVICE_STOP] = UNIT_DEACTIVATING,
66 [SERVICE_STOP_SIGABRT] = UNIT_DEACTIVATING,
67 [SERVICE_STOP_SIGTERM] = UNIT_DEACTIVATING,
68 [SERVICE_STOP_SIGKILL] = UNIT_DEACTIVATING,
69 [SERVICE_STOP_POST] = UNIT_DEACTIVATING,
70 [SERVICE_FINAL_SIGTERM] = UNIT_DEACTIVATING,
71 [SERVICE_FINAL_SIGKILL] = UNIT_DEACTIVATING,
72 [SERVICE_FAILED] = UNIT_FAILED,
73 [SERVICE_AUTO_RESTART] = UNIT_ACTIVATING
74 };
75
76 /* For Type=idle we never want to delay any other jobs, hence we
77 * consider idle jobs active as soon as we start working on them */
78 static const UnitActiveState state_translation_table_idle[_SERVICE_STATE_MAX] = {
79 [SERVICE_DEAD] = UNIT_INACTIVE,
80 [SERVICE_START_PRE] = UNIT_ACTIVE,
81 [SERVICE_START] = UNIT_ACTIVE,
82 [SERVICE_START_POST] = UNIT_ACTIVE,
83 [SERVICE_RUNNING] = UNIT_ACTIVE,
84 [SERVICE_EXITED] = UNIT_ACTIVE,
85 [SERVICE_RELOAD] = UNIT_RELOADING,
86 [SERVICE_STOP] = UNIT_DEACTIVATING,
87 [SERVICE_STOP_SIGABRT] = UNIT_DEACTIVATING,
88 [SERVICE_STOP_SIGTERM] = UNIT_DEACTIVATING,
89 [SERVICE_STOP_SIGKILL] = UNIT_DEACTIVATING,
90 [SERVICE_STOP_POST] = UNIT_DEACTIVATING,
91 [SERVICE_FINAL_SIGTERM] = UNIT_DEACTIVATING,
92 [SERVICE_FINAL_SIGKILL] = UNIT_DEACTIVATING,
93 [SERVICE_FAILED] = UNIT_FAILED,
94 [SERVICE_AUTO_RESTART] = UNIT_ACTIVATING
95 };
96
97 static int service_dispatch_io(sd_event_source *source, int fd, uint32_t events, void *userdata);
98 static int service_dispatch_timer(sd_event_source *source, usec_t usec, void *userdata);
99 static int service_dispatch_watchdog(sd_event_source *source, usec_t usec, void *userdata);
100
101 static void service_enter_signal(Service *s, ServiceState state, ServiceResult f);
102 static void service_enter_reload_by_notify(Service *s);
103
104 static void service_init(Unit *u) {
105 Service *s = SERVICE(u);
106
107 assert(u);
108 assert(u->load_state == UNIT_STUB);
109
110 s->timeout_start_usec = u->manager->default_timeout_start_usec;
111 s->timeout_stop_usec = u->manager->default_timeout_stop_usec;
112 s->restart_usec = u->manager->default_restart_usec;
113 s->runtime_max_usec = USEC_INFINITY;
114 s->type = _SERVICE_TYPE_INVALID;
115 s->socket_fd = -1;
116 s->stdin_fd = s->stdout_fd = s->stderr_fd = -1;
117 s->guess_main_pid = true;
118
119 s->control_command_id = _SERVICE_EXEC_COMMAND_INVALID;
120 }
121
122 static void service_unwatch_control_pid(Service *s) {
123 assert(s);
124
125 if (s->control_pid <= 0)
126 return;
127
128 unit_unwatch_pid(UNIT(s), s->control_pid);
129 s->control_pid = 0;
130 }
131
132 static void service_unwatch_main_pid(Service *s) {
133 assert(s);
134
135 if (s->main_pid <= 0)
136 return;
137
138 unit_unwatch_pid(UNIT(s), s->main_pid);
139 s->main_pid = 0;
140 }
141
142 static void service_unwatch_pid_file(Service *s) {
143 if (!s->pid_file_pathspec)
144 return;
145
146 log_unit_debug(UNIT(s), "Stopping watch for PID file %s", s->pid_file_pathspec->path);
147 path_spec_unwatch(s->pid_file_pathspec);
148 path_spec_done(s->pid_file_pathspec);
149 s->pid_file_pathspec = mfree(s->pid_file_pathspec);
150 }
151
152 static int service_set_main_pid(Service *s, pid_t pid) {
153 pid_t ppid;
154
155 assert(s);
156
157 if (pid <= 1)
158 return -EINVAL;
159
160 if (pid == getpid())
161 return -EINVAL;
162
163 if (s->main_pid == pid && s->main_pid_known)
164 return 0;
165
166 if (s->main_pid != pid) {
167 service_unwatch_main_pid(s);
168 exec_status_start(&s->main_exec_status, pid);
169 }
170
171 s->main_pid = pid;
172 s->main_pid_known = true;
173
174 if (get_process_ppid(pid, &ppid) >= 0 && ppid != getpid()) {
175 log_unit_warning(UNIT(s), "Supervising process "PID_FMT" which is not our child. We'll most likely not notice when it exits.", pid);
176 s->main_pid_alien = true;
177 } else
178 s->main_pid_alien = false;
179
180 return 0;
181 }
182
183 void service_close_socket_fd(Service *s) {
184 assert(s);
185
186 /* Undo the effect of service_set_socket_fd(). */
187
188 s->socket_fd = asynchronous_close(s->socket_fd);
189
190 if (UNIT_ISSET(s->accept_socket)) {
191 socket_connection_unref(SOCKET(UNIT_DEREF(s->accept_socket)));
192 unit_ref_unset(&s->accept_socket);
193 }
194 }
195
196 static void service_stop_watchdog(Service *s) {
197 assert(s);
198
199 s->watchdog_event_source = sd_event_source_unref(s->watchdog_event_source);
200 s->watchdog_timestamp = DUAL_TIMESTAMP_NULL;
201 }
202
203 static usec_t service_get_watchdog_usec(Service *s) {
204 assert(s);
205
206 if (s->watchdog_override_enable)
207 return s->watchdog_override_usec;
208 else
209 return s->watchdog_usec;
210 }
211
212 static void service_start_watchdog(Service *s) {
213 int r;
214 usec_t watchdog_usec;
215
216 assert(s);
217
218 watchdog_usec = service_get_watchdog_usec(s);
219 if (watchdog_usec == 0 || watchdog_usec == USEC_INFINITY)
220 return;
221
222 if (s->watchdog_event_source) {
223 r = sd_event_source_set_time(s->watchdog_event_source, usec_add(s->watchdog_timestamp.monotonic, watchdog_usec));
224 if (r < 0) {
225 log_unit_warning_errno(UNIT(s), r, "Failed to reset watchdog timer: %m");
226 return;
227 }
228
229 r = sd_event_source_set_enabled(s->watchdog_event_source, SD_EVENT_ONESHOT);
230 } else {
231 r = sd_event_add_time(
232 UNIT(s)->manager->event,
233 &s->watchdog_event_source,
234 CLOCK_MONOTONIC,
235 usec_add(s->watchdog_timestamp.monotonic, watchdog_usec), 0,
236 service_dispatch_watchdog, s);
237 if (r < 0) {
238 log_unit_warning_errno(UNIT(s), r, "Failed to add watchdog timer: %m");
239 return;
240 }
241
242 (void) sd_event_source_set_description(s->watchdog_event_source, "service-watchdog");
243
244 /* Let's process everything else which might be a sign
245 * of living before we consider a service died. */
246 r = sd_event_source_set_priority(s->watchdog_event_source, SD_EVENT_PRIORITY_IDLE);
247 }
248
249 if (r < 0)
250 log_unit_warning_errno(UNIT(s), r, "Failed to install watchdog timer: %m");
251 }
252
253 static void service_reset_watchdog(Service *s) {
254 assert(s);
255
256 dual_timestamp_get(&s->watchdog_timestamp);
257 service_start_watchdog(s);
258 }
259
260 static void service_reset_watchdog_timeout(Service *s, usec_t watchdog_override_usec) {
261 assert(s);
262
263 s->watchdog_override_enable = true;
264 s->watchdog_override_usec = watchdog_override_usec;
265 service_reset_watchdog(s);
266
267 log_unit_debug(UNIT(s), "watchdog_usec="USEC_FMT, s->watchdog_usec);
268 log_unit_debug(UNIT(s), "watchdog_override_usec="USEC_FMT, s->watchdog_override_usec);
269 }
270
271 static void service_fd_store_unlink(ServiceFDStore *fs) {
272
273 if (!fs)
274 return;
275
276 if (fs->service) {
277 assert(fs->service->n_fd_store > 0);
278 LIST_REMOVE(fd_store, fs->service->fd_store, fs);
279 fs->service->n_fd_store--;
280 }
281
282 if (fs->event_source) {
283 sd_event_source_set_enabled(fs->event_source, SD_EVENT_OFF);
284 sd_event_source_unref(fs->event_source);
285 }
286
287 free(fs->fdname);
288 safe_close(fs->fd);
289 free(fs);
290 }
291
292 static void service_release_resources(Unit *u) {
293 Service *s = SERVICE(u);
294
295 assert(s);
296
297 if (!s->fd_store && s->stdin_fd < 0 && s->stdout_fd < 0 && s->stderr_fd < 0)
298 return;
299
300 log_unit_debug(u, "Releasing all resources.");
301
302 s->stdin_fd = safe_close(s->stdin_fd);
303 s->stdout_fd = safe_close(s->stdout_fd);
304 s->stderr_fd = safe_close(s->stderr_fd);
305
306 while (s->fd_store)
307 service_fd_store_unlink(s->fd_store);
308
309 assert(s->n_fd_store == 0);
310 }
311
312 static void service_done(Unit *u) {
313 Service *s = SERVICE(u);
314
315 assert(s);
316
317 s->pid_file = mfree(s->pid_file);
318 s->status_text = mfree(s->status_text);
319
320 s->exec_runtime = exec_runtime_unref(s->exec_runtime);
321 exec_command_free_array(s->exec_command, _SERVICE_EXEC_COMMAND_MAX);
322 s->control_command = NULL;
323 s->main_command = NULL;
324
325 dynamic_creds_unref(&s->dynamic_creds);
326
327 exit_status_set_free(&s->restart_prevent_status);
328 exit_status_set_free(&s->restart_force_status);
329 exit_status_set_free(&s->success_status);
330
331 /* This will leak a process, but at least no memory or any of
332 * our resources */
333 service_unwatch_main_pid(s);
334 service_unwatch_control_pid(s);
335 service_unwatch_pid_file(s);
336
337 if (s->bus_name) {
338 unit_unwatch_bus_name(u, s->bus_name);
339 s->bus_name = mfree(s->bus_name);
340 }
341
342 s->bus_name_owner = mfree(s->bus_name_owner);
343
344 service_close_socket_fd(s);
345
346 unit_ref_unset(&s->accept_socket);
347
348 service_stop_watchdog(s);
349
350 s->timer_event_source = sd_event_source_unref(s->timer_event_source);
351
352 service_release_resources(u);
353 }
354
355 static int on_fd_store_io(sd_event_source *e, int fd, uint32_t revents, void *userdata) {
356 ServiceFDStore *fs = userdata;
357
358 assert(e);
359 assert(fs);
360
361 /* If we get either EPOLLHUP or EPOLLERR, it's time to remove this entry from the fd store */
362 service_fd_store_unlink(fs);
363 return 0;
364 }
365
366 static int service_add_fd_store(Service *s, int fd, const char *name) {
367 ServiceFDStore *fs;
368 int r;
369
370 assert(s);
371 assert(fd >= 0);
372
373 if (s->n_fd_store >= s->n_fd_store_max)
374 return 0;
375
376 LIST_FOREACH(fd_store, fs, s->fd_store) {
377 r = same_fd(fs->fd, fd);
378 if (r < 0)
379 return r;
380 if (r > 0) {
381 /* Already included */
382 safe_close(fd);
383 return 1;
384 }
385 }
386
387 fs = new0(ServiceFDStore, 1);
388 if (!fs)
389 return -ENOMEM;
390
391 fs->fd = fd;
392 fs->service = s;
393 fs->fdname = strdup(name ?: "stored");
394 if (!fs->fdname) {
395 free(fs);
396 return -ENOMEM;
397 }
398
399 r = sd_event_add_io(UNIT(s)->manager->event, &fs->event_source, fd, 0, on_fd_store_io, fs);
400 if (r < 0) {
401 free(fs->fdname);
402 free(fs);
403 return r;
404 }
405
406 (void) sd_event_source_set_description(fs->event_source, "service-fd-store");
407
408 LIST_PREPEND(fd_store, s->fd_store, fs);
409 s->n_fd_store++;
410
411 return 1;
412 }
413
414 static int service_add_fd_store_set(Service *s, FDSet *fds, const char *name) {
415 int r;
416
417 assert(s);
418
419 if (fdset_size(fds) <= 0)
420 return 0;
421
422 while (s->n_fd_store < s->n_fd_store_max) {
423 _cleanup_close_ int fd = -1;
424
425 fd = fdset_steal_first(fds);
426 if (fd < 0)
427 break;
428
429 r = service_add_fd_store(s, fd, name);
430 if (r < 0)
431 return log_unit_error_errno(UNIT(s), r, "Couldn't add fd to fd store: %m");
432 if (r > 0) {
433 log_unit_debug(UNIT(s), "Added fd to fd store.");
434 fd = -1;
435 }
436 }
437
438 if (fdset_size(fds) > 0)
439 log_unit_warning(UNIT(s), "Tried to store more fds than FileDescriptorStoreMax=%u allows, closing remaining.", s->n_fd_store_max);
440
441 return 0;
442 }
443
444 static int service_arm_timer(Service *s, usec_t usec) {
445 int r;
446
447 assert(s);
448
449 if (s->timer_event_source) {
450 r = sd_event_source_set_time(s->timer_event_source, usec);
451 if (r < 0)
452 return r;
453
454 return sd_event_source_set_enabled(s->timer_event_source, SD_EVENT_ONESHOT);
455 }
456
457 if (usec == USEC_INFINITY)
458 return 0;
459
460 r = sd_event_add_time(
461 UNIT(s)->manager->event,
462 &s->timer_event_source,
463 CLOCK_MONOTONIC,
464 usec, 0,
465 service_dispatch_timer, s);
466 if (r < 0)
467 return r;
468
469 (void) sd_event_source_set_description(s->timer_event_source, "service-timer");
470
471 return 0;
472 }
473
474 static int service_verify(Service *s) {
475 assert(s);
476
477 if (UNIT(s)->load_state != UNIT_LOADED)
478 return 0;
479
480 if (!s->exec_command[SERVICE_EXEC_START] && !s->exec_command[SERVICE_EXEC_STOP]) {
481 log_unit_error(UNIT(s), "Service lacks both ExecStart= and ExecStop= setting. Refusing.");
482 return -EINVAL;
483 }
484
485 if (s->type != SERVICE_ONESHOT && !s->exec_command[SERVICE_EXEC_START]) {
486 log_unit_error(UNIT(s), "Service has no ExecStart= setting, which is only allowed for Type=oneshot services. Refusing.");
487 return -EINVAL;
488 }
489
490 if (!s->remain_after_exit && !s->exec_command[SERVICE_EXEC_START]) {
491 log_unit_error(UNIT(s), "Service has no ExecStart= setting, which is only allowed for RemainAfterExit=yes services. Refusing.");
492 return -EINVAL;
493 }
494
495 if (s->type != SERVICE_ONESHOT && s->exec_command[SERVICE_EXEC_START]->command_next) {
496 log_unit_error(UNIT(s), "Service has more than one ExecStart= setting, which is only allowed for Type=oneshot services. Refusing.");
497 return -EINVAL;
498 }
499
500 if (s->type == SERVICE_ONESHOT && s->restart != SERVICE_RESTART_NO) {
501 log_unit_error(UNIT(s), "Service has Restart= setting other than no, which isn't allowed for Type=oneshot services. Refusing.");
502 return -EINVAL;
503 }
504
505 if (s->type == SERVICE_ONESHOT && !exit_status_set_is_empty(&s->restart_force_status)) {
506 log_unit_error(UNIT(s), "Service has RestartForceStatus= set, which isn't allowed for Type=oneshot services. Refusing.");
507 return -EINVAL;
508 }
509
510 if (s->type == SERVICE_DBUS && !s->bus_name) {
511 log_unit_error(UNIT(s), "Service is of type D-Bus but no D-Bus service name has been specified. Refusing.");
512 return -EINVAL;
513 }
514
515 if (s->bus_name && s->type != SERVICE_DBUS)
516 log_unit_warning(UNIT(s), "Service has a D-Bus service name specified, but is not of type dbus. Ignoring.");
517
518 if (s->exec_context.pam_name && !(s->kill_context.kill_mode == KILL_CONTROL_GROUP || s->kill_context.kill_mode == KILL_MIXED)) {
519 log_unit_error(UNIT(s), "Service has PAM enabled. Kill mode must be set to 'control-group' or 'mixed'. Refusing.");
520 return -EINVAL;
521 }
522
523 if (s->usb_function_descriptors && !s->usb_function_strings)
524 log_unit_warning(UNIT(s), "Service has USBFunctionDescriptors= setting, but no USBFunctionStrings=. Ignoring.");
525
526 if (!s->usb_function_descriptors && s->usb_function_strings)
527 log_unit_warning(UNIT(s), "Service has USBFunctionStrings= setting, but no USBFunctionDescriptors=. Ignoring.");
528
529 if (s->runtime_max_usec != USEC_INFINITY && s->type == SERVICE_ONESHOT)
530 log_unit_warning(UNIT(s), "MaxRuntimeSec= has no effect in combination with Type=oneshot. Ignoring.");
531
532 return 0;
533 }
534
535 static int service_add_default_dependencies(Service *s) {
536 int r;
537
538 assert(s);
539
540 if (!UNIT(s)->default_dependencies)
541 return 0;
542
543 /* Add a number of automatic dependencies useful for the
544 * majority of services. */
545
546 if (MANAGER_IS_SYSTEM(UNIT(s)->manager)) {
547 /* First, pull in the really early boot stuff, and
548 * require it, so that we fail if we can't acquire
549 * it. */
550
551 r = unit_add_two_dependencies_by_name(UNIT(s), UNIT_AFTER, UNIT_REQUIRES, SPECIAL_SYSINIT_TARGET, NULL, true);
552 if (r < 0)
553 return r;
554 } else {
555
556 /* In the --user instance there's no sysinit.target,
557 * in that case require basic.target instead. */
558
559 r = unit_add_dependency_by_name(UNIT(s), UNIT_REQUIRES, SPECIAL_BASIC_TARGET, NULL, true);
560 if (r < 0)
561 return r;
562 }
563
564 /* Second, if the rest of the base system is in the same
565 * transaction, order us after it, but do not pull it in or
566 * even require it. */
567 r = unit_add_dependency_by_name(UNIT(s), UNIT_AFTER, SPECIAL_BASIC_TARGET, NULL, true);
568 if (r < 0)
569 return r;
570
571 /* Third, add us in for normal shutdown. */
572 return unit_add_two_dependencies_by_name(UNIT(s), UNIT_BEFORE, UNIT_CONFLICTS, SPECIAL_SHUTDOWN_TARGET, NULL, true);
573 }
574
575 static void service_fix_output(Service *s) {
576 assert(s);
577
578 /* If nothing has been explicitly configured, patch default
579 * output in. If input is socket/tty we avoid this however,
580 * since in that case we want output to default to the same
581 * place as we read input from. */
582
583 if (s->exec_context.std_error == EXEC_OUTPUT_INHERIT &&
584 s->exec_context.std_output == EXEC_OUTPUT_INHERIT &&
585 s->exec_context.std_input == EXEC_INPUT_NULL)
586 s->exec_context.std_error = UNIT(s)->manager->default_std_error;
587
588 if (s->exec_context.std_output == EXEC_OUTPUT_INHERIT &&
589 s->exec_context.std_input == EXEC_INPUT_NULL)
590 s->exec_context.std_output = UNIT(s)->manager->default_std_output;
591 }
592
593 static int service_setup_bus_name(Service *s) {
594 int r;
595
596 assert(s);
597
598 if (!s->bus_name)
599 return 0;
600
601 r = unit_add_dependency_by_name(UNIT(s), UNIT_REQUIRES, SPECIAL_DBUS_SOCKET, NULL, true);
602 if (r < 0)
603 return log_unit_error_errno(UNIT(s), r, "Failed to add dependency on " SPECIAL_DBUS_SOCKET ": %m");
604
605 /* Regardless if kdbus is used or not, we always want to be ordered against dbus.socket if both are in the transaction. */
606 r = unit_add_dependency_by_name(UNIT(s), UNIT_AFTER, SPECIAL_DBUS_SOCKET, NULL, true);
607 if (r < 0)
608 return log_unit_error_errno(UNIT(s), r, "Failed to add dependency on " SPECIAL_DBUS_SOCKET ": %m");
609
610 r = unit_watch_bus_name(UNIT(s), s->bus_name);
611 if (r == -EEXIST)
612 return log_unit_error_errno(UNIT(s), r, "Two services allocated for the same bus name %s, refusing operation.", s->bus_name);
613 if (r < 0)
614 return log_unit_error_errno(UNIT(s), r, "Cannot watch bus name %s: %m", s->bus_name);
615
616 return 0;
617 }
618
619 static int service_add_extras(Service *s) {
620 int r;
621
622 assert(s);
623
624 if (s->type == _SERVICE_TYPE_INVALID) {
625 /* Figure out a type automatically */
626 if (s->bus_name)
627 s->type = SERVICE_DBUS;
628 else if (s->exec_command[SERVICE_EXEC_START])
629 s->type = SERVICE_SIMPLE;
630 else
631 s->type = SERVICE_ONESHOT;
632 }
633
634 /* Oneshot services have disabled start timeout by default */
635 if (s->type == SERVICE_ONESHOT && !s->start_timeout_defined)
636 s->timeout_start_usec = USEC_INFINITY;
637
638 service_fix_output(s);
639
640 r = unit_patch_contexts(UNIT(s));
641 if (r < 0)
642 return r;
643
644 r = unit_add_exec_dependencies(UNIT(s), &s->exec_context);
645 if (r < 0)
646 return r;
647
648 r = unit_set_default_slice(UNIT(s));
649 if (r < 0)
650 return r;
651
652 if (s->type == SERVICE_NOTIFY && s->notify_access == NOTIFY_NONE)
653 s->notify_access = NOTIFY_MAIN;
654
655 if (s->watchdog_usec > 0 && s->notify_access == NOTIFY_NONE)
656 s->notify_access = NOTIFY_MAIN;
657
658 r = service_add_default_dependencies(s);
659 if (r < 0)
660 return r;
661
662 r = service_setup_bus_name(s);
663 if (r < 0)
664 return r;
665
666 return 0;
667 }
668
669 static int service_load(Unit *u) {
670 Service *s = SERVICE(u);
671 int r;
672
673 assert(s);
674
675 /* Load a .service file */
676 r = unit_load_fragment(u);
677 if (r < 0)
678 return r;
679
680 /* Still nothing found? Then let's give up */
681 if (u->load_state == UNIT_STUB)
682 return -ENOENT;
683
684 /* This is a new unit? Then let's add in some extras */
685 if (u->load_state == UNIT_LOADED) {
686
687 /* We were able to load something, then let's add in
688 * the dropin directories. */
689 r = unit_load_dropin(u);
690 if (r < 0)
691 return r;
692
693 /* This is a new unit? Then let's add in some
694 * extras */
695 r = service_add_extras(s);
696 if (r < 0)
697 return r;
698 }
699
700 return service_verify(s);
701 }
702
703 static void service_dump(Unit *u, FILE *f, const char *prefix) {
704 ServiceExecCommand c;
705 Service *s = SERVICE(u);
706 const char *prefix2;
707
708 assert(s);
709
710 prefix = strempty(prefix);
711 prefix2 = strjoina(prefix, "\t");
712
713 fprintf(f,
714 "%sService State: %s\n"
715 "%sResult: %s\n"
716 "%sReload Result: %s\n"
717 "%sPermissionsStartOnly: %s\n"
718 "%sRootDirectoryStartOnly: %s\n"
719 "%sRemainAfterExit: %s\n"
720 "%sGuessMainPID: %s\n"
721 "%sType: %s\n"
722 "%sRestart: %s\n"
723 "%sNotifyAccess: %s\n"
724 "%sNotifyState: %s\n",
725 prefix, service_state_to_string(s->state),
726 prefix, service_result_to_string(s->result),
727 prefix, service_result_to_string(s->reload_result),
728 prefix, yes_no(s->permissions_start_only),
729 prefix, yes_no(s->root_directory_start_only),
730 prefix, yes_no(s->remain_after_exit),
731 prefix, yes_no(s->guess_main_pid),
732 prefix, service_type_to_string(s->type),
733 prefix, service_restart_to_string(s->restart),
734 prefix, notify_access_to_string(s->notify_access),
735 prefix, notify_state_to_string(s->notify_state));
736
737 if (s->control_pid > 0)
738 fprintf(f,
739 "%sControl PID: "PID_FMT"\n",
740 prefix, s->control_pid);
741
742 if (s->main_pid > 0)
743 fprintf(f,
744 "%sMain PID: "PID_FMT"\n"
745 "%sMain PID Known: %s\n"
746 "%sMain PID Alien: %s\n",
747 prefix, s->main_pid,
748 prefix, yes_no(s->main_pid_known),
749 prefix, yes_no(s->main_pid_alien));
750
751 if (s->pid_file)
752 fprintf(f,
753 "%sPIDFile: %s\n",
754 prefix, s->pid_file);
755
756 if (s->bus_name)
757 fprintf(f,
758 "%sBusName: %s\n"
759 "%sBus Name Good: %s\n",
760 prefix, s->bus_name,
761 prefix, yes_no(s->bus_name_good));
762
763 kill_context_dump(&s->kill_context, f, prefix);
764 exec_context_dump(&s->exec_context, f, prefix);
765
766 for (c = 0; c < _SERVICE_EXEC_COMMAND_MAX; c++) {
767
768 if (!s->exec_command[c])
769 continue;
770
771 fprintf(f, "%s-> %s:\n",
772 prefix, service_exec_command_to_string(c));
773
774 exec_command_dump_list(s->exec_command[c], f, prefix2);
775 }
776
777 if (s->status_text)
778 fprintf(f, "%sStatus Text: %s\n",
779 prefix, s->status_text);
780
781 if (s->n_fd_store_max > 0)
782 fprintf(f,
783 "%sFile Descriptor Store Max: %u\n"
784 "%sFile Descriptor Store Current: %u\n",
785 prefix, s->n_fd_store_max,
786 prefix, s->n_fd_store);
787 }
788
789 static int service_load_pid_file(Service *s, bool may_warn) {
790 _cleanup_free_ char *k = NULL;
791 int r;
792 pid_t pid;
793
794 assert(s);
795
796 if (!s->pid_file)
797 return -ENOENT;
798
799 r = read_one_line_file(s->pid_file, &k);
800 if (r < 0) {
801 if (may_warn)
802 log_unit_info_errno(UNIT(s), r, "PID file %s not readable (yet?) after %s: %m", s->pid_file, service_state_to_string(s->state));
803 return r;
804 }
805
806 r = parse_pid(k, &pid);
807 if (r < 0) {
808 if (may_warn)
809 log_unit_info_errno(UNIT(s), r, "Failed to read PID from file %s: %m", s->pid_file);
810 return r;
811 }
812
813 if (!pid_is_alive(pid)) {
814 if (may_warn)
815 log_unit_info(UNIT(s), "PID "PID_FMT" read from file %s does not exist or is a zombie.", pid, s->pid_file);
816 return -ESRCH;
817 }
818
819 if (s->main_pid_known) {
820 if (pid == s->main_pid)
821 return 0;
822
823 log_unit_debug(UNIT(s), "Main PID changing: "PID_FMT" -> "PID_FMT, s->main_pid, pid);
824
825 service_unwatch_main_pid(s);
826 s->main_pid_known = false;
827 } else
828 log_unit_debug(UNIT(s), "Main PID loaded: "PID_FMT, pid);
829
830 r = service_set_main_pid(s, pid);
831 if (r < 0)
832 return r;
833
834 r = unit_watch_pid(UNIT(s), pid);
835 if (r < 0) {
836 /* FIXME: we need to do something here */
837 log_unit_warning_errno(UNIT(s), r, "Failed to watch PID "PID_FMT" for service: %m", pid);
838 return r;
839 }
840
841 return 0;
842 }
843
844 static void service_search_main_pid(Service *s) {
845 pid_t pid = 0;
846 int r;
847
848 assert(s);
849
850 /* If we know it anyway, don't ever fallback to unreliable
851 * heuristics */
852 if (s->main_pid_known)
853 return;
854
855 if (!s->guess_main_pid)
856 return;
857
858 assert(s->main_pid <= 0);
859
860 if (unit_search_main_pid(UNIT(s), &pid) < 0)
861 return;
862
863 log_unit_debug(UNIT(s), "Main PID guessed: "PID_FMT, pid);
864 if (service_set_main_pid(s, pid) < 0)
865 return;
866
867 r = unit_watch_pid(UNIT(s), pid);
868 if (r < 0)
869 /* FIXME: we need to do something here */
870 log_unit_warning_errno(UNIT(s), r, "Failed to watch PID "PID_FMT" from: %m", pid);
871 }
872
873 static void service_set_state(Service *s, ServiceState state) {
874 ServiceState old_state;
875 const UnitActiveState *table;
876
877 assert(s);
878
879 table = s->type == SERVICE_IDLE ? state_translation_table_idle : state_translation_table;
880
881 old_state = s->state;
882 s->state = state;
883
884 service_unwatch_pid_file(s);
885
886 if (!IN_SET(state,
887 SERVICE_START_PRE, SERVICE_START, SERVICE_START_POST,
888 SERVICE_RUNNING,
889 SERVICE_RELOAD,
890 SERVICE_STOP, SERVICE_STOP_SIGABRT, SERVICE_STOP_SIGTERM, SERVICE_STOP_SIGKILL, SERVICE_STOP_POST,
891 SERVICE_FINAL_SIGTERM, SERVICE_FINAL_SIGKILL,
892 SERVICE_AUTO_RESTART))
893 s->timer_event_source = sd_event_source_unref(s->timer_event_source);
894
895 if (!IN_SET(state,
896 SERVICE_START, SERVICE_START_POST,
897 SERVICE_RUNNING, SERVICE_RELOAD,
898 SERVICE_STOP, SERVICE_STOP_SIGABRT, SERVICE_STOP_SIGTERM, SERVICE_STOP_SIGKILL, SERVICE_STOP_POST,
899 SERVICE_FINAL_SIGTERM, SERVICE_FINAL_SIGKILL)) {
900 service_unwatch_main_pid(s);
901 s->main_command = NULL;
902 }
903
904 if (!IN_SET(state,
905 SERVICE_START_PRE, SERVICE_START, SERVICE_START_POST,
906 SERVICE_RELOAD,
907 SERVICE_STOP, SERVICE_STOP_SIGABRT, SERVICE_STOP_SIGTERM, SERVICE_STOP_SIGKILL, SERVICE_STOP_POST,
908 SERVICE_FINAL_SIGTERM, SERVICE_FINAL_SIGKILL)) {
909 service_unwatch_control_pid(s);
910 s->control_command = NULL;
911 s->control_command_id = _SERVICE_EXEC_COMMAND_INVALID;
912 }
913
914 if (IN_SET(state, SERVICE_DEAD, SERVICE_FAILED, SERVICE_AUTO_RESTART))
915 unit_unwatch_all_pids(UNIT(s));
916
917 if (!IN_SET(state,
918 SERVICE_START_PRE, SERVICE_START, SERVICE_START_POST,
919 SERVICE_RUNNING, SERVICE_RELOAD,
920 SERVICE_STOP, SERVICE_STOP_SIGABRT, SERVICE_STOP_SIGTERM, SERVICE_STOP_SIGKILL, SERVICE_STOP_POST,
921 SERVICE_FINAL_SIGTERM, SERVICE_FINAL_SIGKILL) &&
922 !(state == SERVICE_DEAD && UNIT(s)->job))
923 service_close_socket_fd(s);
924
925 if (!IN_SET(state, SERVICE_START_POST, SERVICE_RUNNING, SERVICE_RELOAD))
926 service_stop_watchdog(s);
927
928 /* For the inactive states unit_notify() will trim the cgroup,
929 * but for exit we have to do that ourselves... */
930 if (state == SERVICE_EXITED && !MANAGER_IS_RELOADING(UNIT(s)->manager))
931 unit_prune_cgroup(UNIT(s));
932
933 /* For remain_after_exit services, let's see if we can "release" the
934 * hold on the console, since unit_notify() only does that in case of
935 * change of state */
936 if (state == SERVICE_EXITED &&
937 s->remain_after_exit &&
938 UNIT(s)->manager->n_on_console > 0) {
939
940 ExecContext *ec;
941
942 ec = unit_get_exec_context(UNIT(s));
943 if (ec && exec_context_may_touch_console(ec)) {
944 Manager *m = UNIT(s)->manager;
945
946 m->n_on_console--;
947 if (m->n_on_console == 0)
948 /* unset no_console_output flag, since the console is free */
949 m->no_console_output = false;
950 }
951 }
952
953 if (old_state != state)
954 log_unit_debug(UNIT(s), "Changed %s -> %s", service_state_to_string(old_state), service_state_to_string(state));
955
956 unit_notify(UNIT(s), table[old_state], table[state], s->reload_result == SERVICE_SUCCESS);
957 }
958
959 static usec_t service_coldplug_timeout(Service *s) {
960 assert(s);
961
962 switch (s->deserialized_state) {
963
964 case SERVICE_START_PRE:
965 case SERVICE_START:
966 case SERVICE_START_POST:
967 case SERVICE_RELOAD:
968 return usec_add(UNIT(s)->state_change_timestamp.monotonic, s->timeout_start_usec);
969
970 case SERVICE_RUNNING:
971 return usec_add(UNIT(s)->active_enter_timestamp.monotonic, s->runtime_max_usec);
972
973 case SERVICE_STOP:
974 case SERVICE_STOP_SIGABRT:
975 case SERVICE_STOP_SIGTERM:
976 case SERVICE_STOP_SIGKILL:
977 case SERVICE_STOP_POST:
978 case SERVICE_FINAL_SIGTERM:
979 case SERVICE_FINAL_SIGKILL:
980 return usec_add(UNIT(s)->state_change_timestamp.monotonic, s->timeout_stop_usec);
981
982 case SERVICE_AUTO_RESTART:
983 return usec_add(UNIT(s)->inactive_enter_timestamp.monotonic, s->restart_usec);
984
985 default:
986 return USEC_INFINITY;
987 }
988 }
989
990 static int service_coldplug(Unit *u) {
991 Service *s = SERVICE(u);
992 int r;
993
994 assert(s);
995 assert(s->state == SERVICE_DEAD);
996
997 if (s->deserialized_state == s->state)
998 return 0;
999
1000 r = service_arm_timer(s, service_coldplug_timeout(s));
1001 if (r < 0)
1002 return r;
1003
1004 if (s->main_pid > 0 &&
1005 pid_is_unwaited(s->main_pid) &&
1006 ((s->deserialized_state == SERVICE_START && IN_SET(s->type, SERVICE_FORKING, SERVICE_DBUS, SERVICE_ONESHOT, SERVICE_NOTIFY)) ||
1007 IN_SET(s->deserialized_state,
1008 SERVICE_START, SERVICE_START_POST,
1009 SERVICE_RUNNING, SERVICE_RELOAD,
1010 SERVICE_STOP, SERVICE_STOP_SIGABRT, SERVICE_STOP_SIGTERM, SERVICE_STOP_SIGKILL, SERVICE_STOP_POST,
1011 SERVICE_FINAL_SIGTERM, SERVICE_FINAL_SIGKILL))) {
1012 r = unit_watch_pid(UNIT(s), s->main_pid);
1013 if (r < 0)
1014 return r;
1015 }
1016
1017 if (s->control_pid > 0 &&
1018 pid_is_unwaited(s->control_pid) &&
1019 IN_SET(s->deserialized_state,
1020 SERVICE_START_PRE, SERVICE_START, SERVICE_START_POST,
1021 SERVICE_RELOAD,
1022 SERVICE_STOP, SERVICE_STOP_SIGABRT, SERVICE_STOP_SIGTERM, SERVICE_STOP_SIGKILL, SERVICE_STOP_POST,
1023 SERVICE_FINAL_SIGTERM, SERVICE_FINAL_SIGKILL)) {
1024 r = unit_watch_pid(UNIT(s), s->control_pid);
1025 if (r < 0)
1026 return r;
1027 }
1028
1029 if (!IN_SET(s->deserialized_state, SERVICE_DEAD, SERVICE_FAILED, SERVICE_AUTO_RESTART))
1030 unit_watch_all_pids(UNIT(s));
1031
1032 if (IN_SET(s->deserialized_state, SERVICE_START_POST, SERVICE_RUNNING, SERVICE_RELOAD))
1033 service_start_watchdog(s);
1034
1035 if (!IN_SET(s->deserialized_state, SERVICE_DEAD, SERVICE_FAILED, SERVICE_AUTO_RESTART))
1036 (void) unit_setup_dynamic_creds(u);
1037
1038 service_set_state(s, s->deserialized_state);
1039 return 0;
1040 }
1041
1042 static int service_collect_fds(Service *s, int **fds, char ***fd_names) {
1043 _cleanup_strv_free_ char **rfd_names = NULL;
1044 _cleanup_free_ int *rfds = NULL;
1045 int rn_fds = 0, r;
1046
1047 assert(s);
1048 assert(fds);
1049 assert(fd_names);
1050
1051 if (s->socket_fd >= 0) {
1052
1053 /* Pass the per-connection socket */
1054
1055 rfds = new(int, 1);
1056 if (!rfds)
1057 return -ENOMEM;
1058 rfds[0] = s->socket_fd;
1059
1060 rfd_names = strv_new("connection", NULL);
1061 if (!rfd_names)
1062 return -ENOMEM;
1063
1064 rn_fds = 1;
1065 } else {
1066 Iterator i;
1067 Unit *u;
1068
1069 /* Pass all our configured sockets for singleton services */
1070
1071 SET_FOREACH(u, UNIT(s)->dependencies[UNIT_TRIGGERED_BY], i) {
1072 _cleanup_free_ int *cfds = NULL;
1073 Socket *sock;
1074 int cn_fds;
1075
1076 if (u->type != UNIT_SOCKET)
1077 continue;
1078
1079 sock = SOCKET(u);
1080
1081 cn_fds = socket_collect_fds(sock, &cfds);
1082 if (cn_fds < 0)
1083 return cn_fds;
1084
1085 if (cn_fds <= 0)
1086 continue;
1087
1088 if (!rfds) {
1089 rfds = cfds;
1090 rn_fds = cn_fds;
1091
1092 cfds = NULL;
1093 } else {
1094 int *t;
1095
1096 t = realloc(rfds, (rn_fds + cn_fds) * sizeof(int));
1097 if (!t)
1098 return -ENOMEM;
1099
1100 memcpy(t + rn_fds, cfds, cn_fds * sizeof(int));
1101
1102 rfds = t;
1103 rn_fds += cn_fds;
1104 }
1105
1106 r = strv_extend_n(&rfd_names, socket_fdname(sock), cn_fds);
1107 if (r < 0)
1108 return r;
1109 }
1110 }
1111
1112 if (s->n_fd_store > 0) {
1113 ServiceFDStore *fs;
1114 char **nl;
1115 int *t;
1116
1117 t = realloc(rfds, (rn_fds + s->n_fd_store) * sizeof(int));
1118 if (!t)
1119 return -ENOMEM;
1120
1121 rfds = t;
1122
1123 nl = realloc(rfd_names, (rn_fds + s->n_fd_store + 1) * sizeof(char*));
1124 if (!nl)
1125 return -ENOMEM;
1126
1127 rfd_names = nl;
1128
1129 LIST_FOREACH(fd_store, fs, s->fd_store) {
1130 rfds[rn_fds] = fs->fd;
1131 rfd_names[rn_fds] = strdup(strempty(fs->fdname));
1132 if (!rfd_names[rn_fds])
1133 return -ENOMEM;
1134
1135 rn_fds++;
1136 }
1137
1138 rfd_names[rn_fds] = NULL;
1139 }
1140
1141 *fds = rfds;
1142 *fd_names = rfd_names;
1143
1144 rfds = NULL;
1145 rfd_names = NULL;
1146
1147 return rn_fds;
1148 }
1149
1150 static int service_spawn(
1151 Service *s,
1152 ExecCommand *c,
1153 usec_t timeout,
1154 bool pass_fds,
1155 bool apply_permissions,
1156 bool apply_chroot,
1157 bool apply_tty_stdin,
1158 bool is_control,
1159 pid_t *_pid) {
1160
1161 _cleanup_strv_free_ char **argv = NULL, **final_env = NULL, **our_env = NULL, **fd_names = NULL;
1162 _cleanup_free_ int *fds = NULL;
1163 unsigned n_fds = 0, n_env = 0;
1164 const char *path;
1165 pid_t pid;
1166
1167 ExecParameters exec_params = {
1168 .apply_permissions = apply_permissions,
1169 .apply_chroot = apply_chroot,
1170 .apply_tty_stdin = apply_tty_stdin,
1171 .stdin_fd = -1,
1172 .stdout_fd = -1,
1173 .stderr_fd = -1,
1174 };
1175
1176 int r;
1177
1178 assert(s);
1179 assert(c);
1180 assert(_pid);
1181
1182 (void) unit_realize_cgroup(UNIT(s));
1183 if (s->reset_cpu_usage) {
1184 (void) unit_reset_cpu_usage(UNIT(s));
1185 s->reset_cpu_usage = false;
1186 }
1187
1188 r = unit_setup_exec_runtime(UNIT(s));
1189 if (r < 0)
1190 return r;
1191
1192 r = unit_setup_dynamic_creds(UNIT(s));
1193 if (r < 0)
1194 return r;
1195
1196 if (pass_fds ||
1197 s->exec_context.std_input == EXEC_INPUT_SOCKET ||
1198 s->exec_context.std_output == EXEC_OUTPUT_SOCKET ||
1199 s->exec_context.std_error == EXEC_OUTPUT_SOCKET) {
1200
1201 r = service_collect_fds(s, &fds, &fd_names);
1202 if (r < 0)
1203 return r;
1204
1205 n_fds = r;
1206 }
1207
1208 r = service_arm_timer(s, usec_add(now(CLOCK_MONOTONIC), timeout));
1209 if (r < 0)
1210 return r;
1211
1212 r = unit_full_printf_strv(UNIT(s), c->argv, &argv);
1213 if (r < 0)
1214 return r;
1215
1216 our_env = new0(char*, 6);
1217 if (!our_env)
1218 return -ENOMEM;
1219
1220 if (is_control ? s->notify_access == NOTIFY_ALL : s->notify_access != NOTIFY_NONE)
1221 if (asprintf(our_env + n_env++, "NOTIFY_SOCKET=%s", UNIT(s)->manager->notify_socket) < 0)
1222 return -ENOMEM;
1223
1224 if (s->main_pid > 0)
1225 if (asprintf(our_env + n_env++, "MAINPID="PID_FMT, s->main_pid) < 0)
1226 return -ENOMEM;
1227
1228 if (!MANAGER_IS_SYSTEM(UNIT(s)->manager))
1229 if (asprintf(our_env + n_env++, "MANAGERPID="PID_FMT, getpid()) < 0)
1230 return -ENOMEM;
1231
1232 if (s->socket_fd >= 0) {
1233 union sockaddr_union sa;
1234 socklen_t salen = sizeof(sa);
1235
1236 r = getpeername(s->socket_fd, &sa.sa, &salen);
1237 if (r < 0)
1238 return -errno;
1239
1240 if (IN_SET(sa.sa.sa_family, AF_INET, AF_INET6)) {
1241 _cleanup_free_ char *addr = NULL;
1242 char *t;
1243 int port;
1244
1245 r = sockaddr_pretty(&sa.sa, salen, true, false, &addr);
1246 if (r < 0)
1247 return r;
1248
1249 t = strappend("REMOTE_ADDR=", addr);
1250 if (!t)
1251 return -ENOMEM;
1252 our_env[n_env++] = t;
1253
1254 port = sockaddr_port(&sa.sa);
1255 if (port < 0)
1256 return port;
1257
1258 if (asprintf(&t, "REMOTE_PORT=%u", port) < 0)
1259 return -ENOMEM;
1260 our_env[n_env++] = t;
1261 }
1262 }
1263
1264 final_env = strv_env_merge(2, UNIT(s)->manager->environment, our_env, NULL);
1265 if (!final_env)
1266 return -ENOMEM;
1267
1268 if (is_control && UNIT(s)->cgroup_path) {
1269 path = strjoina(UNIT(s)->cgroup_path, "/control");
1270 (void) cg_create(SYSTEMD_CGROUP_CONTROLLER, path);
1271 } else
1272 path = UNIT(s)->cgroup_path;
1273
1274 exec_params.argv = argv;
1275 exec_params.fds = fds;
1276 exec_params.fd_names = fd_names;
1277 exec_params.n_fds = n_fds;
1278 exec_params.environment = final_env;
1279 exec_params.confirm_spawn = UNIT(s)->manager->confirm_spawn;
1280 exec_params.cgroup_supported = UNIT(s)->manager->cgroup_supported;
1281 exec_params.cgroup_path = path;
1282 exec_params.cgroup_delegate = s->cgroup_context.delegate;
1283 exec_params.runtime_prefix = manager_get_runtime_prefix(UNIT(s)->manager);
1284 exec_params.watchdog_usec = s->watchdog_usec;
1285 exec_params.selinux_context_net = s->socket_fd_selinux_context_net;
1286 if (s->type == SERVICE_IDLE)
1287 exec_params.idle_pipe = UNIT(s)->manager->idle_pipe;
1288 exec_params.stdin_fd = s->stdin_fd;
1289 exec_params.stdout_fd = s->stdout_fd;
1290 exec_params.stderr_fd = s->stderr_fd;
1291
1292 r = exec_spawn(UNIT(s),
1293 c,
1294 &s->exec_context,
1295 &exec_params,
1296 s->exec_runtime,
1297 &s->dynamic_creds,
1298 &pid);
1299 if (r < 0)
1300 return r;
1301
1302 r = unit_watch_pid(UNIT(s), pid);
1303 if (r < 0)
1304 /* FIXME: we need to do something here */
1305 return r;
1306
1307 *_pid = pid;
1308
1309 return 0;
1310 }
1311
1312 static int main_pid_good(Service *s) {
1313 assert(s);
1314
1315 /* Returns 0 if the pid is dead, 1 if it is good, -1 if we
1316 * don't know */
1317
1318 /* If we know the pid file, then let's just check if it is
1319 * still valid */
1320 if (s->main_pid_known) {
1321
1322 /* If it's an alien child let's check if it is still
1323 * alive ... */
1324 if (s->main_pid_alien && s->main_pid > 0)
1325 return pid_is_alive(s->main_pid);
1326
1327 /* .. otherwise assume we'll get a SIGCHLD for it,
1328 * which we really should wait for to collect exit
1329 * status and code */
1330 return s->main_pid > 0;
1331 }
1332
1333 /* We don't know the pid */
1334 return -EAGAIN;
1335 }
1336
1337 _pure_ static int control_pid_good(Service *s) {
1338 assert(s);
1339
1340 return s->control_pid > 0;
1341 }
1342
1343 static int cgroup_good(Service *s) {
1344 int r;
1345
1346 assert(s);
1347
1348 if (!UNIT(s)->cgroup_path)
1349 return 0;
1350
1351 r = cg_is_empty_recursive(SYSTEMD_CGROUP_CONTROLLER, UNIT(s)->cgroup_path);
1352 if (r < 0)
1353 return r;
1354
1355 return !r;
1356 }
1357
1358 static bool service_shall_restart(Service *s) {
1359 assert(s);
1360
1361 /* Don't restart after manual stops */
1362 if (s->forbid_restart)
1363 return false;
1364
1365 /* Never restart if this is configured as special exception */
1366 if (exit_status_set_test(&s->restart_prevent_status, s->main_exec_status.code, s->main_exec_status.status))
1367 return false;
1368
1369 /* Restart if the exit code/status are configured as restart triggers */
1370 if (exit_status_set_test(&s->restart_force_status, s->main_exec_status.code, s->main_exec_status.status))
1371 return true;
1372
1373 switch (s->restart) {
1374
1375 case SERVICE_RESTART_NO:
1376 return false;
1377
1378 case SERVICE_RESTART_ALWAYS:
1379 return true;
1380
1381 case SERVICE_RESTART_ON_SUCCESS:
1382 return s->result == SERVICE_SUCCESS;
1383
1384 case SERVICE_RESTART_ON_FAILURE:
1385 return s->result != SERVICE_SUCCESS;
1386
1387 case SERVICE_RESTART_ON_ABNORMAL:
1388 return !IN_SET(s->result, SERVICE_SUCCESS, SERVICE_FAILURE_EXIT_CODE);
1389
1390 case SERVICE_RESTART_ON_WATCHDOG:
1391 return s->result == SERVICE_FAILURE_WATCHDOG;
1392
1393 case SERVICE_RESTART_ON_ABORT:
1394 return IN_SET(s->result, SERVICE_FAILURE_SIGNAL, SERVICE_FAILURE_CORE_DUMP);
1395
1396 default:
1397 assert_not_reached("unknown restart setting");
1398 }
1399 }
1400
1401 static void service_enter_dead(Service *s, ServiceResult f, bool allow_restart) {
1402 int r;
1403 assert(s);
1404
1405 if (f != SERVICE_SUCCESS)
1406 s->result = f;
1407
1408 service_set_state(s, s->result != SERVICE_SUCCESS ? SERVICE_FAILED : SERVICE_DEAD);
1409
1410 if (s->result != SERVICE_SUCCESS) {
1411 log_unit_warning(UNIT(s), "Failed with result '%s'.", service_result_to_string(s->result));
1412 failure_action(UNIT(s)->manager, s->failure_action, UNIT(s)->reboot_arg);
1413 }
1414
1415 if (allow_restart && service_shall_restart(s)) {
1416
1417 r = service_arm_timer(s, usec_add(now(CLOCK_MONOTONIC), s->restart_usec));
1418 if (r < 0)
1419 goto fail;
1420
1421 service_set_state(s, SERVICE_AUTO_RESTART);
1422 }
1423
1424 /* The next restart might not be a manual stop, hence reset the flag indicating manual stops */
1425 s->forbid_restart = false;
1426
1427 /* We want fresh tmpdirs in case service is started again immediately */
1428 exec_runtime_destroy(s->exec_runtime);
1429 s->exec_runtime = exec_runtime_unref(s->exec_runtime);
1430
1431 /* Also, remove the runtime directory */
1432 exec_context_destroy_runtime_directory(&s->exec_context, manager_get_runtime_prefix(UNIT(s)->manager));
1433
1434 /* Release the user, and destroy it if we are the only remaining owner */
1435 dynamic_creds_destroy(&s->dynamic_creds);
1436
1437 /* Try to delete the pid file. At this point it will be
1438 * out-of-date, and some software might be confused by it, so
1439 * let's remove it. */
1440 if (s->pid_file)
1441 (void) unlink(s->pid_file);
1442
1443 return;
1444
1445 fail:
1446 log_unit_warning_errno(UNIT(s), r, "Failed to run install restart timer: %m");
1447 service_enter_dead(s, SERVICE_FAILURE_RESOURCES, false);
1448 }
1449
1450 static void service_enter_stop_post(Service *s, ServiceResult f) {
1451 int r;
1452 assert(s);
1453
1454 if (f != SERVICE_SUCCESS)
1455 s->result = f;
1456
1457 service_unwatch_control_pid(s);
1458 unit_watch_all_pids(UNIT(s));
1459
1460 s->control_command = s->exec_command[SERVICE_EXEC_STOP_POST];
1461 if (s->control_command) {
1462 s->control_command_id = SERVICE_EXEC_STOP_POST;
1463
1464 r = service_spawn(s,
1465 s->control_command,
1466 s->timeout_stop_usec,
1467 false,
1468 !s->permissions_start_only,
1469 !s->root_directory_start_only,
1470 true,
1471 true,
1472 &s->control_pid);
1473 if (r < 0)
1474 goto fail;
1475
1476 service_set_state(s, SERVICE_STOP_POST);
1477 } else
1478 service_enter_signal(s, SERVICE_FINAL_SIGTERM, SERVICE_SUCCESS);
1479
1480 return;
1481
1482 fail:
1483 log_unit_warning_errno(UNIT(s), r, "Failed to run 'stop-post' task: %m");
1484 service_enter_signal(s, SERVICE_FINAL_SIGTERM, SERVICE_FAILURE_RESOURCES);
1485 }
1486
1487 static int state_to_kill_operation(ServiceState state) {
1488 switch (state) {
1489
1490 case SERVICE_STOP_SIGABRT:
1491 return KILL_ABORT;
1492
1493 case SERVICE_STOP_SIGTERM:
1494 case SERVICE_FINAL_SIGTERM:
1495 return KILL_TERMINATE;
1496
1497 case SERVICE_STOP_SIGKILL:
1498 case SERVICE_FINAL_SIGKILL:
1499 return KILL_KILL;
1500
1501 default:
1502 return _KILL_OPERATION_INVALID;
1503 }
1504 }
1505
1506 static void service_enter_signal(Service *s, ServiceState state, ServiceResult f) {
1507 int r;
1508
1509 assert(s);
1510
1511 if (f != SERVICE_SUCCESS)
1512 s->result = f;
1513
1514 unit_watch_all_pids(UNIT(s));
1515
1516 r = unit_kill_context(
1517 UNIT(s),
1518 &s->kill_context,
1519 state_to_kill_operation(state),
1520 s->main_pid,
1521 s->control_pid,
1522 s->main_pid_alien);
1523
1524 if (r < 0)
1525 goto fail;
1526
1527 if (r > 0) {
1528 r = service_arm_timer(s, usec_add(now(CLOCK_MONOTONIC), s->timeout_stop_usec));
1529 if (r < 0)
1530 goto fail;
1531
1532 service_set_state(s, state);
1533 } else if (IN_SET(state, SERVICE_STOP_SIGABRT, SERVICE_STOP_SIGTERM) && s->kill_context.send_sigkill)
1534 service_enter_signal(s, SERVICE_STOP_SIGKILL, SERVICE_SUCCESS);
1535 else if (IN_SET(state, SERVICE_STOP_SIGABRT, SERVICE_STOP_SIGTERM, SERVICE_STOP_SIGKILL))
1536 service_enter_stop_post(s, SERVICE_SUCCESS);
1537 else if (state == SERVICE_FINAL_SIGTERM && s->kill_context.send_sigkill)
1538 service_enter_signal(s, SERVICE_FINAL_SIGKILL, SERVICE_SUCCESS);
1539 else
1540 service_enter_dead(s, SERVICE_SUCCESS, true);
1541
1542 return;
1543
1544 fail:
1545 log_unit_warning_errno(UNIT(s), r, "Failed to kill processes: %m");
1546
1547 if (IN_SET(state, SERVICE_STOP_SIGABRT, SERVICE_STOP_SIGTERM, SERVICE_STOP_SIGKILL))
1548 service_enter_stop_post(s, SERVICE_FAILURE_RESOURCES);
1549 else
1550 service_enter_dead(s, SERVICE_FAILURE_RESOURCES, true);
1551 }
1552
1553 static void service_enter_stop_by_notify(Service *s) {
1554 assert(s);
1555
1556 unit_watch_all_pids(UNIT(s));
1557
1558 service_arm_timer(s, usec_add(now(CLOCK_MONOTONIC), s->timeout_stop_usec));
1559
1560 /* The service told us it's stopping, so it's as if we SIGTERM'd it. */
1561 service_set_state(s, SERVICE_STOP_SIGTERM);
1562 }
1563
1564 static void service_enter_stop(Service *s, ServiceResult f) {
1565 int r;
1566
1567 assert(s);
1568
1569 if (f != SERVICE_SUCCESS)
1570 s->result = f;
1571
1572 service_unwatch_control_pid(s);
1573 unit_watch_all_pids(UNIT(s));
1574
1575 s->control_command = s->exec_command[SERVICE_EXEC_STOP];
1576 if (s->control_command) {
1577 s->control_command_id = SERVICE_EXEC_STOP;
1578
1579 r = service_spawn(s,
1580 s->control_command,
1581 s->timeout_stop_usec,
1582 false,
1583 !s->permissions_start_only,
1584 !s->root_directory_start_only,
1585 false,
1586 true,
1587 &s->control_pid);
1588 if (r < 0)
1589 goto fail;
1590
1591 service_set_state(s, SERVICE_STOP);
1592 } else
1593 service_enter_signal(s, SERVICE_STOP_SIGTERM, SERVICE_SUCCESS);
1594
1595 return;
1596
1597 fail:
1598 log_unit_warning_errno(UNIT(s), r, "Failed to run 'stop' task: %m");
1599 service_enter_signal(s, SERVICE_STOP_SIGTERM, SERVICE_FAILURE_RESOURCES);
1600 }
1601
1602 static bool service_good(Service *s) {
1603 int main_pid_ok;
1604 assert(s);
1605
1606 if (s->type == SERVICE_DBUS && !s->bus_name_good)
1607 return false;
1608
1609 main_pid_ok = main_pid_good(s);
1610 if (main_pid_ok > 0) /* It's alive */
1611 return true;
1612 if (main_pid_ok == 0) /* It's dead */
1613 return false;
1614
1615 /* OK, we don't know anything about the main PID, maybe
1616 * because there is none. Let's check the control group
1617 * instead. */
1618
1619 return cgroup_good(s) != 0;
1620 }
1621
1622 static void service_enter_running(Service *s, ServiceResult f) {
1623 assert(s);
1624
1625 if (f != SERVICE_SUCCESS)
1626 s->result = f;
1627
1628 service_unwatch_control_pid(s);
1629
1630 if (service_good(s)) {
1631
1632 /* If there are any queued up sd_notify()
1633 * notifications, process them now */
1634 if (s->notify_state == NOTIFY_RELOADING)
1635 service_enter_reload_by_notify(s);
1636 else if (s->notify_state == NOTIFY_STOPPING)
1637 service_enter_stop_by_notify(s);
1638 else {
1639 service_set_state(s, SERVICE_RUNNING);
1640 service_arm_timer(s, usec_add(UNIT(s)->active_enter_timestamp.monotonic, s->runtime_max_usec));
1641 }
1642
1643 } else if (s->remain_after_exit)
1644 service_set_state(s, SERVICE_EXITED);
1645 else
1646 service_enter_stop(s, SERVICE_SUCCESS);
1647 }
1648
1649 static void service_enter_start_post(Service *s) {
1650 int r;
1651 assert(s);
1652
1653 service_unwatch_control_pid(s);
1654 service_reset_watchdog(s);
1655
1656 s->control_command = s->exec_command[SERVICE_EXEC_START_POST];
1657 if (s->control_command) {
1658 s->control_command_id = SERVICE_EXEC_START_POST;
1659
1660 r = service_spawn(s,
1661 s->control_command,
1662 s->timeout_start_usec,
1663 false,
1664 !s->permissions_start_only,
1665 !s->root_directory_start_only,
1666 false,
1667 true,
1668 &s->control_pid);
1669 if (r < 0)
1670 goto fail;
1671
1672 service_set_state(s, SERVICE_START_POST);
1673 } else
1674 service_enter_running(s, SERVICE_SUCCESS);
1675
1676 return;
1677
1678 fail:
1679 log_unit_warning_errno(UNIT(s), r, "Failed to run 'start-post' task: %m");
1680 service_enter_stop(s, SERVICE_FAILURE_RESOURCES);
1681 }
1682
1683 static void service_kill_control_processes(Service *s) {
1684 char *p;
1685
1686 if (!UNIT(s)->cgroup_path)
1687 return;
1688
1689 p = strjoina(UNIT(s)->cgroup_path, "/control");
1690 cg_kill_recursive(SYSTEMD_CGROUP_CONTROLLER, p, SIGKILL, CGROUP_SIGCONT|CGROUP_IGNORE_SELF|CGROUP_REMOVE, NULL, NULL, NULL);
1691 }
1692
1693 static void service_enter_start(Service *s) {
1694 ExecCommand *c;
1695 usec_t timeout;
1696 pid_t pid;
1697 int r;
1698
1699 assert(s);
1700
1701 service_unwatch_control_pid(s);
1702 service_unwatch_main_pid(s);
1703
1704 /* We want to ensure that nobody leaks processes from
1705 * START_PRE here, so let's go on a killing spree, People
1706 * should not spawn long running processes from START_PRE. */
1707 service_kill_control_processes(s);
1708
1709 if (s->type == SERVICE_FORKING) {
1710 s->control_command_id = SERVICE_EXEC_START;
1711 c = s->control_command = s->exec_command[SERVICE_EXEC_START];
1712
1713 s->main_command = NULL;
1714 } else {
1715 s->control_command_id = _SERVICE_EXEC_COMMAND_INVALID;
1716 s->control_command = NULL;
1717
1718 c = s->main_command = s->exec_command[SERVICE_EXEC_START];
1719 }
1720
1721 if (!c) {
1722 assert(s->type == SERVICE_ONESHOT);
1723 service_enter_start_post(s);
1724 return;
1725 }
1726
1727 if (IN_SET(s->type, SERVICE_SIMPLE, SERVICE_IDLE))
1728 /* For simple + idle this is the main process. We don't apply any timeout here, but
1729 * service_enter_running() will later apply the .runtime_max_usec timeout. */
1730 timeout = USEC_INFINITY;
1731 else
1732 timeout = s->timeout_start_usec;
1733
1734 r = service_spawn(s,
1735 c,
1736 timeout,
1737 true,
1738 true,
1739 true,
1740 true,
1741 false,
1742 &pid);
1743 if (r < 0)
1744 goto fail;
1745
1746 if (IN_SET(s->type, SERVICE_SIMPLE, SERVICE_IDLE)) {
1747 /* For simple services we immediately start
1748 * the START_POST binaries. */
1749
1750 service_set_main_pid(s, pid);
1751 service_enter_start_post(s);
1752
1753 } else if (s->type == SERVICE_FORKING) {
1754
1755 /* For forking services we wait until the start
1756 * process exited. */
1757
1758 s->control_pid = pid;
1759 service_set_state(s, SERVICE_START);
1760
1761 } else if (IN_SET(s->type, SERVICE_ONESHOT, SERVICE_DBUS, SERVICE_NOTIFY)) {
1762
1763 /* For oneshot services we wait until the start
1764 * process exited, too, but it is our main process. */
1765
1766 /* For D-Bus services we know the main pid right away,
1767 * but wait for the bus name to appear on the
1768 * bus. Notify services are similar. */
1769
1770 service_set_main_pid(s, pid);
1771 service_set_state(s, SERVICE_START);
1772 } else
1773 assert_not_reached("Unknown service type");
1774
1775 return;
1776
1777 fail:
1778 log_unit_warning_errno(UNIT(s), r, "Failed to run 'start' task: %m");
1779 service_enter_signal(s, SERVICE_FINAL_SIGTERM, SERVICE_FAILURE_RESOURCES);
1780 }
1781
1782 static void service_enter_start_pre(Service *s) {
1783 int r;
1784
1785 assert(s);
1786
1787 service_unwatch_control_pid(s);
1788
1789 s->control_command = s->exec_command[SERVICE_EXEC_START_PRE];
1790 if (s->control_command) {
1791 /* Before we start anything, let's clear up what might
1792 * be left from previous runs. */
1793 service_kill_control_processes(s);
1794
1795 s->control_command_id = SERVICE_EXEC_START_PRE;
1796
1797 r = service_spawn(s,
1798 s->control_command,
1799 s->timeout_start_usec,
1800 false,
1801 !s->permissions_start_only,
1802 !s->root_directory_start_only,
1803 true,
1804 true,
1805 &s->control_pid);
1806 if (r < 0)
1807 goto fail;
1808
1809 service_set_state(s, SERVICE_START_PRE);
1810 } else
1811 service_enter_start(s);
1812
1813 return;
1814
1815 fail:
1816 log_unit_warning_errno(UNIT(s), r, "Failed to run 'start-pre' task: %m");
1817 service_enter_dead(s, SERVICE_FAILURE_RESOURCES, true);
1818 }
1819
1820 static void service_enter_restart(Service *s) {
1821 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
1822 int r;
1823
1824 assert(s);
1825
1826 if (UNIT(s)->job && UNIT(s)->job->type == JOB_STOP) {
1827 /* Don't restart things if we are going down anyway */
1828 log_unit_info(UNIT(s), "Stop job pending for unit, delaying automatic restart.");
1829
1830 r = service_arm_timer(s, usec_add(now(CLOCK_MONOTONIC), s->restart_usec));
1831 if (r < 0)
1832 goto fail;
1833
1834 return;
1835 }
1836
1837 /* Any units that are bound to this service must also be
1838 * restarted. We use JOB_RESTART (instead of the more obvious
1839 * JOB_START) here so that those dependency jobs will be added
1840 * as well. */
1841 r = manager_add_job(UNIT(s)->manager, JOB_RESTART, UNIT(s), JOB_FAIL, &error, NULL);
1842 if (r < 0)
1843 goto fail;
1844
1845 /* Note that we stay in the SERVICE_AUTO_RESTART state here,
1846 * it will be canceled as part of the service_stop() call that
1847 * is executed as part of JOB_RESTART. */
1848
1849 log_unit_debug(UNIT(s), "Scheduled restart job.");
1850 return;
1851
1852 fail:
1853 log_unit_warning(UNIT(s), "Failed to schedule restart job: %s", bus_error_message(&error, -r));
1854 service_enter_dead(s, SERVICE_FAILURE_RESOURCES, false);
1855 }
1856
1857 static void service_enter_reload_by_notify(Service *s) {
1858 assert(s);
1859
1860 service_arm_timer(s, usec_add(now(CLOCK_MONOTONIC), s->timeout_start_usec));
1861 service_set_state(s, SERVICE_RELOAD);
1862 }
1863
1864 static void service_enter_reload(Service *s) {
1865 int r;
1866
1867 assert(s);
1868
1869 service_unwatch_control_pid(s);
1870 s->reload_result = SERVICE_SUCCESS;
1871
1872 s->control_command = s->exec_command[SERVICE_EXEC_RELOAD];
1873 if (s->control_command) {
1874 s->control_command_id = SERVICE_EXEC_RELOAD;
1875
1876 r = service_spawn(s,
1877 s->control_command,
1878 s->timeout_start_usec,
1879 false,
1880 !s->permissions_start_only,
1881 !s->root_directory_start_only,
1882 false,
1883 true,
1884 &s->control_pid);
1885 if (r < 0)
1886 goto fail;
1887
1888 service_set_state(s, SERVICE_RELOAD);
1889 } else
1890 service_enter_running(s, SERVICE_SUCCESS);
1891
1892 return;
1893
1894 fail:
1895 log_unit_warning_errno(UNIT(s), r, "Failed to run 'reload' task: %m");
1896 s->reload_result = SERVICE_FAILURE_RESOURCES;
1897 service_enter_running(s, SERVICE_SUCCESS);
1898 }
1899
1900 static void service_run_next_control(Service *s) {
1901 usec_t timeout;
1902 int r;
1903
1904 assert(s);
1905 assert(s->control_command);
1906 assert(s->control_command->command_next);
1907
1908 assert(s->control_command_id != SERVICE_EXEC_START);
1909
1910 s->control_command = s->control_command->command_next;
1911 service_unwatch_control_pid(s);
1912
1913 if (IN_SET(s->state, SERVICE_START_PRE, SERVICE_START, SERVICE_START_POST, SERVICE_RUNNING, SERVICE_RELOAD))
1914 timeout = s->timeout_start_usec;
1915 else
1916 timeout = s->timeout_stop_usec;
1917
1918 r = service_spawn(s,
1919 s->control_command,
1920 timeout,
1921 false,
1922 !s->permissions_start_only,
1923 !s->root_directory_start_only,
1924 s->control_command_id == SERVICE_EXEC_START_PRE ||
1925 s->control_command_id == SERVICE_EXEC_STOP_POST,
1926 true,
1927 &s->control_pid);
1928 if (r < 0)
1929 goto fail;
1930
1931 return;
1932
1933 fail:
1934 log_unit_warning_errno(UNIT(s), r, "Failed to run next control task: %m");
1935
1936 if (s->state == SERVICE_START_PRE)
1937 service_enter_signal(s, SERVICE_FINAL_SIGTERM, SERVICE_FAILURE_RESOURCES);
1938 else if (s->state == SERVICE_STOP)
1939 service_enter_signal(s, SERVICE_STOP_SIGTERM, SERVICE_FAILURE_RESOURCES);
1940 else if (s->state == SERVICE_STOP_POST)
1941 service_enter_dead(s, SERVICE_FAILURE_RESOURCES, true);
1942 else if (s->state == SERVICE_RELOAD) {
1943 s->reload_result = SERVICE_FAILURE_RESOURCES;
1944 service_enter_running(s, SERVICE_SUCCESS);
1945 } else
1946 service_enter_stop(s, SERVICE_FAILURE_RESOURCES);
1947 }
1948
1949 static void service_run_next_main(Service *s) {
1950 pid_t pid;
1951 int r;
1952
1953 assert(s);
1954 assert(s->main_command);
1955 assert(s->main_command->command_next);
1956 assert(s->type == SERVICE_ONESHOT);
1957
1958 s->main_command = s->main_command->command_next;
1959 service_unwatch_main_pid(s);
1960
1961 r = service_spawn(s,
1962 s->main_command,
1963 s->timeout_start_usec,
1964 true,
1965 true,
1966 true,
1967 true,
1968 false,
1969 &pid);
1970 if (r < 0)
1971 goto fail;
1972
1973 service_set_main_pid(s, pid);
1974
1975 return;
1976
1977 fail:
1978 log_unit_warning_errno(UNIT(s), r, "Failed to run next main task: %m");
1979 service_enter_stop(s, SERVICE_FAILURE_RESOURCES);
1980 }
1981
1982 static int service_start(Unit *u) {
1983 Service *s = SERVICE(u);
1984 int r;
1985
1986 assert(s);
1987
1988 /* We cannot fulfill this request right now, try again later
1989 * please! */
1990 if (IN_SET(s->state,
1991 SERVICE_STOP, SERVICE_STOP_SIGABRT, SERVICE_STOP_SIGTERM, SERVICE_STOP_SIGKILL, SERVICE_STOP_POST,
1992 SERVICE_FINAL_SIGTERM, SERVICE_FINAL_SIGKILL))
1993 return -EAGAIN;
1994
1995 /* Already on it! */
1996 if (IN_SET(s->state, SERVICE_START_PRE, SERVICE_START, SERVICE_START_POST))
1997 return 0;
1998
1999 /* A service that will be restarted must be stopped first to
2000 * trigger BindsTo and/or OnFailure dependencies. If a user
2001 * does not want to wait for the holdoff time to elapse, the
2002 * service should be manually restarted, not started. We
2003 * simply return EAGAIN here, so that any start jobs stay
2004 * queued, and assume that the auto restart timer will
2005 * eventually trigger the restart. */
2006 if (s->state == SERVICE_AUTO_RESTART)
2007 return -EAGAIN;
2008
2009 assert(IN_SET(s->state, SERVICE_DEAD, SERVICE_FAILED));
2010
2011 /* Make sure we don't enter a busy loop of some kind. */
2012 r = unit_start_limit_test(u);
2013 if (r < 0) {
2014 service_enter_dead(s, SERVICE_FAILURE_START_LIMIT_HIT, false);
2015 return r;
2016 }
2017
2018 s->result = SERVICE_SUCCESS;
2019 s->reload_result = SERVICE_SUCCESS;
2020 s->main_pid_known = false;
2021 s->main_pid_alien = false;
2022 s->forbid_restart = false;
2023 s->reset_cpu_usage = true;
2024
2025 s->status_text = mfree(s->status_text);
2026 s->status_errno = 0;
2027
2028 s->notify_state = NOTIFY_UNKNOWN;
2029
2030 s->watchdog_override_enable = false;
2031 s->watchdog_override_usec = 0;
2032
2033 service_enter_start_pre(s);
2034 return 1;
2035 }
2036
2037 static int service_stop(Unit *u) {
2038 Service *s = SERVICE(u);
2039
2040 assert(s);
2041
2042 /* Don't create restart jobs from manual stops. */
2043 s->forbid_restart = true;
2044
2045 /* Already on it */
2046 if (IN_SET(s->state,
2047 SERVICE_STOP, SERVICE_STOP_SIGABRT, SERVICE_STOP_SIGTERM, SERVICE_STOP_SIGKILL, SERVICE_STOP_POST,
2048 SERVICE_FINAL_SIGTERM, SERVICE_FINAL_SIGKILL))
2049 return 0;
2050
2051 /* A restart will be scheduled or is in progress. */
2052 if (s->state == SERVICE_AUTO_RESTART) {
2053 service_set_state(s, SERVICE_DEAD);
2054 return 0;
2055 }
2056
2057 /* If there's already something running we go directly into
2058 * kill mode. */
2059 if (IN_SET(s->state, SERVICE_START_PRE, SERVICE_START, SERVICE_START_POST, SERVICE_RELOAD)) {
2060 service_enter_signal(s, SERVICE_STOP_SIGTERM, SERVICE_SUCCESS);
2061 return 0;
2062 }
2063
2064 assert(IN_SET(s->state, SERVICE_RUNNING, SERVICE_EXITED));
2065
2066 service_enter_stop(s, SERVICE_SUCCESS);
2067 return 1;
2068 }
2069
2070 static int service_reload(Unit *u) {
2071 Service *s = SERVICE(u);
2072
2073 assert(s);
2074
2075 assert(s->state == SERVICE_RUNNING || s->state == SERVICE_EXITED);
2076
2077 service_enter_reload(s);
2078 return 1;
2079 }
2080
2081 _pure_ static bool service_can_reload(Unit *u) {
2082 Service *s = SERVICE(u);
2083
2084 assert(s);
2085
2086 return !!s->exec_command[SERVICE_EXEC_RELOAD];
2087 }
2088
2089 static int service_serialize(Unit *u, FILE *f, FDSet *fds) {
2090 Service *s = SERVICE(u);
2091 ServiceFDStore *fs;
2092 int r;
2093
2094 assert(u);
2095 assert(f);
2096 assert(fds);
2097
2098 unit_serialize_item(u, f, "state", service_state_to_string(s->state));
2099 unit_serialize_item(u, f, "result", service_result_to_string(s->result));
2100 unit_serialize_item(u, f, "reload-result", service_result_to_string(s->reload_result));
2101
2102 if (s->control_pid > 0)
2103 unit_serialize_item_format(u, f, "control-pid", PID_FMT, s->control_pid);
2104
2105 if (s->main_pid_known && s->main_pid > 0)
2106 unit_serialize_item_format(u, f, "main-pid", PID_FMT, s->main_pid);
2107
2108 unit_serialize_item(u, f, "main-pid-known", yes_no(s->main_pid_known));
2109 unit_serialize_item(u, f, "bus-name-good", yes_no(s->bus_name_good));
2110 unit_serialize_item(u, f, "bus-name-owner", s->bus_name_owner);
2111
2112 r = unit_serialize_item_escaped(u, f, "status-text", s->status_text);
2113 if (r < 0)
2114 return r;
2115
2116 /* FIXME: There's a minor uncleanliness here: if there are
2117 * multiple commands attached here, we will start from the
2118 * first one again */
2119 if (s->control_command_id >= 0)
2120 unit_serialize_item(u, f, "control-command", service_exec_command_to_string(s->control_command_id));
2121
2122 r = unit_serialize_item_fd(u, f, fds, "stdin-fd", s->stdin_fd);
2123 if (r < 0)
2124 return r;
2125 r = unit_serialize_item_fd(u, f, fds, "stdout-fd", s->stdout_fd);
2126 if (r < 0)
2127 return r;
2128 r = unit_serialize_item_fd(u, f, fds, "stderr-fd", s->stderr_fd);
2129 if (r < 0)
2130 return r;
2131
2132 r = unit_serialize_item_fd(u, f, fds, "socket-fd", s->socket_fd);
2133 if (r < 0)
2134 return r;
2135
2136 LIST_FOREACH(fd_store, fs, s->fd_store) {
2137 _cleanup_free_ char *c = NULL;
2138 int copy;
2139
2140 copy = fdset_put_dup(fds, fs->fd);
2141 if (copy < 0)
2142 return copy;
2143
2144 c = cescape(fs->fdname);
2145
2146 unit_serialize_item_format(u, f, "fd-store-fd", "%i %s", copy, strempty(c));
2147 }
2148
2149 if (s->main_exec_status.pid > 0) {
2150 unit_serialize_item_format(u, f, "main-exec-status-pid", PID_FMT, s->main_exec_status.pid);
2151 dual_timestamp_serialize(f, "main-exec-status-start", &s->main_exec_status.start_timestamp);
2152 dual_timestamp_serialize(f, "main-exec-status-exit", &s->main_exec_status.exit_timestamp);
2153
2154 if (dual_timestamp_is_set(&s->main_exec_status.exit_timestamp)) {
2155 unit_serialize_item_format(u, f, "main-exec-status-code", "%i", s->main_exec_status.code);
2156 unit_serialize_item_format(u, f, "main-exec-status-status", "%i", s->main_exec_status.status);
2157 }
2158 }
2159
2160 dual_timestamp_serialize(f, "watchdog-timestamp", &s->watchdog_timestamp);
2161
2162 unit_serialize_item(u, f, "forbid-restart", yes_no(s->forbid_restart));
2163
2164 if (s->watchdog_override_enable)
2165 unit_serialize_item_format(u, f, "watchdog-override-usec", USEC_FMT, s->watchdog_override_usec);
2166
2167 return 0;
2168 }
2169
2170 static int service_deserialize_item(Unit *u, const char *key, const char *value, FDSet *fds) {
2171 Service *s = SERVICE(u);
2172 int r;
2173
2174 assert(u);
2175 assert(key);
2176 assert(value);
2177 assert(fds);
2178
2179 if (streq(key, "state")) {
2180 ServiceState state;
2181
2182 state = service_state_from_string(value);
2183 if (state < 0)
2184 log_unit_debug(u, "Failed to parse state value: %s", value);
2185 else
2186 s->deserialized_state = state;
2187 } else if (streq(key, "result")) {
2188 ServiceResult f;
2189
2190 f = service_result_from_string(value);
2191 if (f < 0)
2192 log_unit_debug(u, "Failed to parse result value: %s", value);
2193 else if (f != SERVICE_SUCCESS)
2194 s->result = f;
2195
2196 } else if (streq(key, "reload-result")) {
2197 ServiceResult f;
2198
2199 f = service_result_from_string(value);
2200 if (f < 0)
2201 log_unit_debug(u, "Failed to parse reload result value: %s", value);
2202 else if (f != SERVICE_SUCCESS)
2203 s->reload_result = f;
2204
2205 } else if (streq(key, "control-pid")) {
2206 pid_t pid;
2207
2208 if (parse_pid(value, &pid) < 0)
2209 log_unit_debug(u, "Failed to parse control-pid value: %s", value);
2210 else
2211 s->control_pid = pid;
2212 } else if (streq(key, "main-pid")) {
2213 pid_t pid;
2214
2215 if (parse_pid(value, &pid) < 0)
2216 log_unit_debug(u, "Failed to parse main-pid value: %s", value);
2217 else {
2218 service_set_main_pid(s, pid);
2219 unit_watch_pid(UNIT(s), pid);
2220 }
2221 } else if (streq(key, "main-pid-known")) {
2222 int b;
2223
2224 b = parse_boolean(value);
2225 if (b < 0)
2226 log_unit_debug(u, "Failed to parse main-pid-known value: %s", value);
2227 else
2228 s->main_pid_known = b;
2229 } else if (streq(key, "bus-name-good")) {
2230 int b;
2231
2232 b = parse_boolean(value);
2233 if (b < 0)
2234 log_unit_debug(u, "Failed to parse bus-name-good value: %s", value);
2235 else
2236 s->bus_name_good = b;
2237 } else if (streq(key, "bus-name-owner")) {
2238 r = free_and_strdup(&s->bus_name_owner, value);
2239 if (r < 0)
2240 log_unit_error_errno(u, r, "Unable to deserialize current bus owner %s: %m", value);
2241 } else if (streq(key, "status-text")) {
2242 char *t;
2243
2244 r = cunescape(value, 0, &t);
2245 if (r < 0)
2246 log_unit_debug_errno(u, r, "Failed to unescape status text: %s", value);
2247 else {
2248 free(s->status_text);
2249 s->status_text = t;
2250 }
2251
2252 } else if (streq(key, "control-command")) {
2253 ServiceExecCommand id;
2254
2255 id = service_exec_command_from_string(value);
2256 if (id < 0)
2257 log_unit_debug(u, "Failed to parse exec-command value: %s", value);
2258 else {
2259 s->control_command_id = id;
2260 s->control_command = s->exec_command[id];
2261 }
2262 } else if (streq(key, "socket-fd")) {
2263 int fd;
2264
2265 if (safe_atoi(value, &fd) < 0 || fd < 0 || !fdset_contains(fds, fd))
2266 log_unit_debug(u, "Failed to parse socket-fd value: %s", value);
2267 else {
2268 asynchronous_close(s->socket_fd);
2269 s->socket_fd = fdset_remove(fds, fd);
2270 }
2271 } else if (streq(key, "fd-store-fd")) {
2272 const char *fdv;
2273 size_t pf;
2274 int fd;
2275
2276 pf = strcspn(value, WHITESPACE);
2277 fdv = strndupa(value, pf);
2278
2279 if (safe_atoi(fdv, &fd) < 0 || fd < 0 || !fdset_contains(fds, fd))
2280 log_unit_debug(u, "Failed to parse fd-store-fd value: %s", value);
2281 else {
2282 _cleanup_free_ char *t = NULL;
2283 const char *fdn;
2284
2285 fdn = value + pf;
2286 fdn += strspn(fdn, WHITESPACE);
2287 (void) cunescape(fdn, 0, &t);
2288
2289 r = service_add_fd_store(s, fd, t);
2290 if (r < 0)
2291 log_unit_error_errno(u, r, "Failed to add fd to store: %m");
2292 else if (r > 0)
2293 fdset_remove(fds, fd);
2294 }
2295
2296 } else if (streq(key, "main-exec-status-pid")) {
2297 pid_t pid;
2298
2299 if (parse_pid(value, &pid) < 0)
2300 log_unit_debug(u, "Failed to parse main-exec-status-pid value: %s", value);
2301 else
2302 s->main_exec_status.pid = pid;
2303 } else if (streq(key, "main-exec-status-code")) {
2304 int i;
2305
2306 if (safe_atoi(value, &i) < 0)
2307 log_unit_debug(u, "Failed to parse main-exec-status-code value: %s", value);
2308 else
2309 s->main_exec_status.code = i;
2310 } else if (streq(key, "main-exec-status-status")) {
2311 int i;
2312
2313 if (safe_atoi(value, &i) < 0)
2314 log_unit_debug(u, "Failed to parse main-exec-status-status value: %s", value);
2315 else
2316 s->main_exec_status.status = i;
2317 } else if (streq(key, "main-exec-status-start"))
2318 dual_timestamp_deserialize(value, &s->main_exec_status.start_timestamp);
2319 else if (streq(key, "main-exec-status-exit"))
2320 dual_timestamp_deserialize(value, &s->main_exec_status.exit_timestamp);
2321 else if (streq(key, "watchdog-timestamp"))
2322 dual_timestamp_deserialize(value, &s->watchdog_timestamp);
2323 else if (streq(key, "forbid-restart")) {
2324 int b;
2325
2326 b = parse_boolean(value);
2327 if (b < 0)
2328 log_unit_debug(u, "Failed to parse forbid-restart value: %s", value);
2329 else
2330 s->forbid_restart = b;
2331 } else if (streq(key, "stdin-fd")) {
2332 int fd;
2333
2334 if (safe_atoi(value, &fd) < 0 || fd < 0 || !fdset_contains(fds, fd))
2335 log_unit_debug(u, "Failed to parse stdin-fd value: %s", value);
2336 else {
2337 asynchronous_close(s->stdin_fd);
2338 s->stdin_fd = fdset_remove(fds, fd);
2339 s->exec_context.stdio_as_fds = true;
2340 }
2341 } else if (streq(key, "stdout-fd")) {
2342 int fd;
2343
2344 if (safe_atoi(value, &fd) < 0 || fd < 0 || !fdset_contains(fds, fd))
2345 log_unit_debug(u, "Failed to parse stdout-fd value: %s", value);
2346 else {
2347 asynchronous_close(s->stdout_fd);
2348 s->stdout_fd = fdset_remove(fds, fd);
2349 s->exec_context.stdio_as_fds = true;
2350 }
2351 } else if (streq(key, "stderr-fd")) {
2352 int fd;
2353
2354 if (safe_atoi(value, &fd) < 0 || fd < 0 || !fdset_contains(fds, fd))
2355 log_unit_debug(u, "Failed to parse stderr-fd value: %s", value);
2356 else {
2357 asynchronous_close(s->stderr_fd);
2358 s->stderr_fd = fdset_remove(fds, fd);
2359 s->exec_context.stdio_as_fds = true;
2360 }
2361 } else if (streq(key, "watchdog-override-usec")) {
2362 usec_t watchdog_override_usec;
2363 if (timestamp_deserialize(value, &watchdog_override_usec) < 0)
2364 log_unit_debug(u, "Failed to parse watchdog_override_usec value: %s", value);
2365 else {
2366 s->watchdog_override_enable = true;
2367 s->watchdog_override_usec = watchdog_override_usec;
2368 }
2369 } else
2370 log_unit_debug(u, "Unknown serialization key: %s", key);
2371
2372 return 0;
2373 }
2374
2375 _pure_ static UnitActiveState service_active_state(Unit *u) {
2376 const UnitActiveState *table;
2377
2378 assert(u);
2379
2380 table = SERVICE(u)->type == SERVICE_IDLE ? state_translation_table_idle : state_translation_table;
2381
2382 return table[SERVICE(u)->state];
2383 }
2384
2385 static const char *service_sub_state_to_string(Unit *u) {
2386 assert(u);
2387
2388 return service_state_to_string(SERVICE(u)->state);
2389 }
2390
2391 static bool service_check_gc(Unit *u) {
2392 Service *s = SERVICE(u);
2393
2394 assert(s);
2395
2396 /* Never clean up services that still have a process around,
2397 * even if the service is formally dead. */
2398 if (cgroup_good(s) > 0 ||
2399 main_pid_good(s) > 0 ||
2400 control_pid_good(s) > 0)
2401 return true;
2402
2403 return false;
2404 }
2405
2406 static int service_retry_pid_file(Service *s) {
2407 int r;
2408
2409 assert(s->pid_file);
2410 assert(s->state == SERVICE_START || s->state == SERVICE_START_POST);
2411
2412 r = service_load_pid_file(s, false);
2413 if (r < 0)
2414 return r;
2415
2416 service_unwatch_pid_file(s);
2417
2418 service_enter_running(s, SERVICE_SUCCESS);
2419 return 0;
2420 }
2421
2422 static int service_watch_pid_file(Service *s) {
2423 int r;
2424
2425 log_unit_debug(UNIT(s), "Setting watch for PID file %s", s->pid_file_pathspec->path);
2426
2427 r = path_spec_watch(s->pid_file_pathspec, service_dispatch_io);
2428 if (r < 0)
2429 goto fail;
2430
2431 /* the pidfile might have appeared just before we set the watch */
2432 log_unit_debug(UNIT(s), "Trying to read PID file %s in case it changed", s->pid_file_pathspec->path);
2433 service_retry_pid_file(s);
2434
2435 return 0;
2436 fail:
2437 log_unit_error_errno(UNIT(s), r, "Failed to set a watch for PID file %s: %m", s->pid_file_pathspec->path);
2438 service_unwatch_pid_file(s);
2439 return r;
2440 }
2441
2442 static int service_demand_pid_file(Service *s) {
2443 PathSpec *ps;
2444
2445 assert(s->pid_file);
2446 assert(!s->pid_file_pathspec);
2447
2448 ps = new0(PathSpec, 1);
2449 if (!ps)
2450 return -ENOMEM;
2451
2452 ps->unit = UNIT(s);
2453 ps->path = strdup(s->pid_file);
2454 if (!ps->path) {
2455 free(ps);
2456 return -ENOMEM;
2457 }
2458
2459 path_kill_slashes(ps->path);
2460
2461 /* PATH_CHANGED would not be enough. There are daemons (sendmail) that
2462 * keep their PID file open all the time. */
2463 ps->type = PATH_MODIFIED;
2464 ps->inotify_fd = -1;
2465
2466 s->pid_file_pathspec = ps;
2467
2468 return service_watch_pid_file(s);
2469 }
2470
2471 static int service_dispatch_io(sd_event_source *source, int fd, uint32_t events, void *userdata) {
2472 PathSpec *p = userdata;
2473 Service *s;
2474
2475 assert(p);
2476
2477 s = SERVICE(p->unit);
2478
2479 assert(s);
2480 assert(fd >= 0);
2481 assert(s->state == SERVICE_START || s->state == SERVICE_START_POST);
2482 assert(s->pid_file_pathspec);
2483 assert(path_spec_owns_inotify_fd(s->pid_file_pathspec, fd));
2484
2485 log_unit_debug(UNIT(s), "inotify event");
2486
2487 if (path_spec_fd_event(p, events) < 0)
2488 goto fail;
2489
2490 if (service_retry_pid_file(s) == 0)
2491 return 0;
2492
2493 if (service_watch_pid_file(s) < 0)
2494 goto fail;
2495
2496 return 0;
2497
2498 fail:
2499 service_unwatch_pid_file(s);
2500 service_enter_signal(s, SERVICE_STOP_SIGTERM, SERVICE_FAILURE_RESOURCES);
2501 return 0;
2502 }
2503
2504 static void service_notify_cgroup_empty_event(Unit *u) {
2505 Service *s = SERVICE(u);
2506
2507 assert(u);
2508
2509 log_unit_debug(u, "cgroup is empty");
2510
2511 switch (s->state) {
2512
2513 /* Waiting for SIGCHLD is usually more interesting,
2514 * because it includes return codes/signals. Which is
2515 * why we ignore the cgroup events for most cases,
2516 * except when we don't know pid which to expect the
2517 * SIGCHLD for. */
2518
2519 case SERVICE_START:
2520 case SERVICE_START_POST:
2521 /* If we were hoping for the daemon to write its PID file,
2522 * we can give up now. */
2523 if (s->pid_file_pathspec) {
2524 log_unit_warning(u, "Daemon never wrote its PID file. Failing.");
2525
2526 service_unwatch_pid_file(s);
2527 if (s->state == SERVICE_START)
2528 service_enter_signal(s, SERVICE_FINAL_SIGTERM, SERVICE_FAILURE_RESOURCES);
2529 else
2530 service_enter_stop(s, SERVICE_FAILURE_RESOURCES);
2531 }
2532 break;
2533
2534 case SERVICE_RUNNING:
2535 /* service_enter_running() will figure out what to do */
2536 service_enter_running(s, SERVICE_SUCCESS);
2537 break;
2538
2539 case SERVICE_STOP_SIGABRT:
2540 case SERVICE_STOP_SIGTERM:
2541 case SERVICE_STOP_SIGKILL:
2542
2543 if (main_pid_good(s) <= 0 && !control_pid_good(s))
2544 service_enter_stop_post(s, SERVICE_SUCCESS);
2545
2546 break;
2547
2548 case SERVICE_STOP_POST:
2549 case SERVICE_FINAL_SIGTERM:
2550 case SERVICE_FINAL_SIGKILL:
2551 if (main_pid_good(s) <= 0 && !control_pid_good(s))
2552 service_enter_dead(s, SERVICE_SUCCESS, true);
2553
2554 break;
2555
2556 default:
2557 ;
2558 }
2559 }
2560
2561 static void service_sigchld_event(Unit *u, pid_t pid, int code, int status) {
2562 Service *s = SERVICE(u);
2563 ServiceResult f;
2564
2565 assert(s);
2566 assert(pid >= 0);
2567
2568 if (UNIT(s)->fragment_path ? is_clean_exit(code, status, &s->success_status) :
2569 is_clean_exit_lsb(code, status, &s->success_status))
2570 f = SERVICE_SUCCESS;
2571 else if (code == CLD_EXITED)
2572 f = SERVICE_FAILURE_EXIT_CODE;
2573 else if (code == CLD_KILLED)
2574 f = SERVICE_FAILURE_SIGNAL;
2575 else if (code == CLD_DUMPED)
2576 f = SERVICE_FAILURE_CORE_DUMP;
2577 else
2578 assert_not_reached("Unknown code");
2579
2580 if (s->main_pid == pid) {
2581 /* Forking services may occasionally move to a new PID.
2582 * As long as they update the PID file before exiting the old
2583 * PID, they're fine. */
2584 if (service_load_pid_file(s, false) == 0)
2585 return;
2586
2587 s->main_pid = 0;
2588 exec_status_exit(&s->main_exec_status, &s->exec_context, pid, code, status);
2589
2590 if (s->main_command) {
2591 /* If this is not a forking service than the
2592 * main process got started and hence we copy
2593 * the exit status so that it is recorded both
2594 * as main and as control process exit
2595 * status */
2596
2597 s->main_command->exec_status = s->main_exec_status;
2598
2599 if (s->main_command->ignore)
2600 f = SERVICE_SUCCESS;
2601 } else if (s->exec_command[SERVICE_EXEC_START]) {
2602
2603 /* If this is a forked process, then we should
2604 * ignore the return value if this was
2605 * configured for the starter process */
2606
2607 if (s->exec_command[SERVICE_EXEC_START]->ignore)
2608 f = SERVICE_SUCCESS;
2609 }
2610
2611 log_struct(f == SERVICE_SUCCESS ? LOG_DEBUG : LOG_NOTICE,
2612 LOG_UNIT_ID(u),
2613 LOG_UNIT_MESSAGE(u, "Main process exited, code=%s, status=%i/%s",
2614 sigchld_code_to_string(code), status,
2615 strna(code == CLD_EXITED
2616 ? exit_status_to_string(status, EXIT_STATUS_FULL)
2617 : signal_to_string(status))),
2618 "EXIT_CODE=%s", sigchld_code_to_string(code),
2619 "EXIT_STATUS=%i", status,
2620 NULL);
2621
2622 if (f != SERVICE_SUCCESS)
2623 s->result = f;
2624
2625 if (s->main_command &&
2626 s->main_command->command_next &&
2627 f == SERVICE_SUCCESS) {
2628
2629 /* There is another command to *
2630 * execute, so let's do that. */
2631
2632 log_unit_debug(u, "Running next main command for state %s.", service_state_to_string(s->state));
2633 service_run_next_main(s);
2634
2635 } else {
2636
2637 /* The service exited, so the service is officially
2638 * gone. */
2639 s->main_command = NULL;
2640
2641 switch (s->state) {
2642
2643 case SERVICE_START_POST:
2644 case SERVICE_RELOAD:
2645 case SERVICE_STOP:
2646 /* Need to wait until the operation is
2647 * done */
2648 break;
2649
2650 case SERVICE_START:
2651 if (s->type == SERVICE_ONESHOT) {
2652 /* This was our main goal, so let's go on */
2653 if (f == SERVICE_SUCCESS)
2654 service_enter_start_post(s);
2655 else
2656 service_enter_signal(s, SERVICE_FINAL_SIGTERM, f);
2657 break;
2658 }
2659
2660 /* Fall through */
2661
2662 case SERVICE_RUNNING:
2663 service_enter_running(s, f);
2664 break;
2665
2666 case SERVICE_STOP_SIGABRT:
2667 case SERVICE_STOP_SIGTERM:
2668 case SERVICE_STOP_SIGKILL:
2669
2670 if (!control_pid_good(s))
2671 service_enter_stop_post(s, f);
2672
2673 /* If there is still a control process, wait for that first */
2674 break;
2675
2676 case SERVICE_STOP_POST:
2677 case SERVICE_FINAL_SIGTERM:
2678 case SERVICE_FINAL_SIGKILL:
2679
2680 if (!control_pid_good(s))
2681 service_enter_dead(s, f, true);
2682 break;
2683
2684 default:
2685 assert_not_reached("Uh, main process died at wrong time.");
2686 }
2687 }
2688
2689 } else if (s->control_pid == pid) {
2690 s->control_pid = 0;
2691
2692 if (s->control_command) {
2693 exec_status_exit(&s->control_command->exec_status, &s->exec_context, pid, code, status);
2694
2695 if (s->control_command->ignore)
2696 f = SERVICE_SUCCESS;
2697 }
2698
2699 log_unit_full(u, f == SERVICE_SUCCESS ? LOG_DEBUG : LOG_NOTICE, 0,
2700 "Control process exited, code=%s status=%i",
2701 sigchld_code_to_string(code), status);
2702
2703 if (f != SERVICE_SUCCESS)
2704 s->result = f;
2705
2706 /* Immediately get rid of the cgroup, so that the
2707 * kernel doesn't delay the cgroup empty messages for
2708 * the service cgroup any longer than necessary */
2709 service_kill_control_processes(s);
2710
2711 if (s->control_command &&
2712 s->control_command->command_next &&
2713 f == SERVICE_SUCCESS) {
2714
2715 /* There is another command to *
2716 * execute, so let's do that. */
2717
2718 log_unit_debug(u, "Running next control command for state %s.", service_state_to_string(s->state));
2719 service_run_next_control(s);
2720
2721 } else {
2722 /* No further commands for this step, so let's
2723 * figure out what to do next */
2724
2725 s->control_command = NULL;
2726 s->control_command_id = _SERVICE_EXEC_COMMAND_INVALID;
2727
2728 log_unit_debug(u, "Got final SIGCHLD for state %s.", service_state_to_string(s->state));
2729
2730 switch (s->state) {
2731
2732 case SERVICE_START_PRE:
2733 if (f == SERVICE_SUCCESS)
2734 service_enter_start(s);
2735 else
2736 service_enter_signal(s, SERVICE_FINAL_SIGTERM, f);
2737 break;
2738
2739 case SERVICE_START:
2740 if (s->type != SERVICE_FORKING)
2741 /* Maybe spurious event due to a reload that changed the type? */
2742 break;
2743
2744 if (f != SERVICE_SUCCESS) {
2745 service_enter_signal(s, SERVICE_FINAL_SIGTERM, f);
2746 break;
2747 }
2748
2749 if (s->pid_file) {
2750 bool has_start_post;
2751 int r;
2752
2753 /* Let's try to load the pid file here if we can.
2754 * The PID file might actually be created by a START_POST
2755 * script. In that case don't worry if the loading fails. */
2756
2757 has_start_post = !!s->exec_command[SERVICE_EXEC_START_POST];
2758 r = service_load_pid_file(s, !has_start_post);
2759 if (!has_start_post && r < 0) {
2760 r = service_demand_pid_file(s);
2761 if (r < 0 || !cgroup_good(s))
2762 service_enter_signal(s, SERVICE_FINAL_SIGTERM, SERVICE_FAILURE_RESOURCES);
2763 break;
2764 }
2765 } else
2766 service_search_main_pid(s);
2767
2768 service_enter_start_post(s);
2769 break;
2770
2771 case SERVICE_START_POST:
2772 if (f != SERVICE_SUCCESS) {
2773 service_enter_signal(s, SERVICE_STOP_SIGTERM, f);
2774 break;
2775 }
2776
2777 if (s->pid_file) {
2778 int r;
2779
2780 r = service_load_pid_file(s, true);
2781 if (r < 0) {
2782 r = service_demand_pid_file(s);
2783 if (r < 0 || !cgroup_good(s))
2784 service_enter_stop(s, SERVICE_FAILURE_RESOURCES);
2785 break;
2786 }
2787 } else
2788 service_search_main_pid(s);
2789
2790 service_enter_running(s, SERVICE_SUCCESS);
2791 break;
2792
2793 case SERVICE_RELOAD:
2794 if (f == SERVICE_SUCCESS)
2795 if (service_load_pid_file(s, true) < 0)
2796 service_search_main_pid(s);
2797
2798 s->reload_result = f;
2799 service_enter_running(s, SERVICE_SUCCESS);
2800 break;
2801
2802 case SERVICE_STOP:
2803 service_enter_signal(s, SERVICE_STOP_SIGTERM, f);
2804 break;
2805
2806 case SERVICE_STOP_SIGABRT:
2807 case SERVICE_STOP_SIGTERM:
2808 case SERVICE_STOP_SIGKILL:
2809 if (main_pid_good(s) <= 0)
2810 service_enter_stop_post(s, f);
2811
2812 /* If there is still a service
2813 * process around, wait until
2814 * that one quit, too */
2815 break;
2816
2817 case SERVICE_STOP_POST:
2818 case SERVICE_FINAL_SIGTERM:
2819 case SERVICE_FINAL_SIGKILL:
2820 if (main_pid_good(s) <= 0)
2821 service_enter_dead(s, f, true);
2822 break;
2823
2824 default:
2825 assert_not_reached("Uh, control process died at wrong time.");
2826 }
2827 }
2828 }
2829
2830 /* Notify clients about changed exit status */
2831 unit_add_to_dbus_queue(u);
2832
2833 /* We got one SIGCHLD for the service, let's watch all
2834 * processes that are now running of the service, and watch
2835 * that. Among the PIDs we then watch will be children
2836 * reassigned to us, which hopefully allows us to identify
2837 * when all children are gone */
2838 unit_tidy_watch_pids(u, s->main_pid, s->control_pid);
2839 unit_watch_all_pids(u);
2840
2841 /* If the PID set is empty now, then let's finish this off
2842 (On unified we use proper notifications) */
2843 if (cg_unified() <= 0 && set_isempty(u->pids))
2844 service_notify_cgroup_empty_event(u);
2845 }
2846
2847 static int service_dispatch_timer(sd_event_source *source, usec_t usec, void *userdata) {
2848 Service *s = SERVICE(userdata);
2849
2850 assert(s);
2851 assert(source == s->timer_event_source);
2852
2853 switch (s->state) {
2854
2855 case SERVICE_START_PRE:
2856 case SERVICE_START:
2857 log_unit_warning(UNIT(s), "%s operation timed out. Terminating.", s->state == SERVICE_START ? "Start" : "Start-pre");
2858 service_enter_signal(s, SERVICE_FINAL_SIGTERM, SERVICE_FAILURE_TIMEOUT);
2859 break;
2860
2861 case SERVICE_START_POST:
2862 log_unit_warning(UNIT(s), "Start-post operation timed out. Stopping.");
2863 service_enter_signal(s, SERVICE_STOP_SIGTERM, SERVICE_FAILURE_TIMEOUT);
2864 break;
2865
2866 case SERVICE_RUNNING:
2867 log_unit_warning(UNIT(s), "Service reached runtime time limit. Stopping.");
2868 service_enter_stop(s, SERVICE_FAILURE_TIMEOUT);
2869 break;
2870
2871 case SERVICE_RELOAD:
2872 log_unit_warning(UNIT(s), "Reload operation timed out. Killing reload process.");
2873 service_kill_control_processes(s);
2874 s->reload_result = SERVICE_FAILURE_TIMEOUT;
2875 service_enter_running(s, SERVICE_SUCCESS);
2876 break;
2877
2878 case SERVICE_STOP:
2879 log_unit_warning(UNIT(s), "Stopping timed out. Terminating.");
2880 service_enter_signal(s, SERVICE_STOP_SIGTERM, SERVICE_FAILURE_TIMEOUT);
2881 break;
2882
2883 case SERVICE_STOP_SIGABRT:
2884 log_unit_warning(UNIT(s), "State 'stop-sigabrt' timed out. Terminating.");
2885 service_enter_signal(s, SERVICE_STOP_SIGTERM, SERVICE_FAILURE_TIMEOUT);
2886 break;
2887
2888 case SERVICE_STOP_SIGTERM:
2889 if (s->kill_context.send_sigkill) {
2890 log_unit_warning(UNIT(s), "State 'stop-sigterm' timed out. Killing.");
2891 service_enter_signal(s, SERVICE_STOP_SIGKILL, SERVICE_FAILURE_TIMEOUT);
2892 } else {
2893 log_unit_warning(UNIT(s), "State 'stop-sigterm' timed out. Skipping SIGKILL.");
2894 service_enter_stop_post(s, SERVICE_FAILURE_TIMEOUT);
2895 }
2896
2897 break;
2898
2899 case SERVICE_STOP_SIGKILL:
2900 /* Uh, we sent a SIGKILL and it is still not gone?
2901 * Must be something we cannot kill, so let's just be
2902 * weirded out and continue */
2903
2904 log_unit_warning(UNIT(s), "Processes still around after SIGKILL. Ignoring.");
2905 service_enter_stop_post(s, SERVICE_FAILURE_TIMEOUT);
2906 break;
2907
2908 case SERVICE_STOP_POST:
2909 log_unit_warning(UNIT(s), "State 'stop-post' timed out. Terminating.");
2910 service_enter_signal(s, SERVICE_FINAL_SIGTERM, SERVICE_FAILURE_TIMEOUT);
2911 break;
2912
2913 case SERVICE_FINAL_SIGTERM:
2914 if (s->kill_context.send_sigkill) {
2915 log_unit_warning(UNIT(s), "State 'stop-final-sigterm' timed out. Killing.");
2916 service_enter_signal(s, SERVICE_FINAL_SIGKILL, SERVICE_FAILURE_TIMEOUT);
2917 } else {
2918 log_unit_warning(UNIT(s), "State 'stop-final-sigterm' timed out. Skipping SIGKILL. Entering failed mode.");
2919 service_enter_dead(s, SERVICE_FAILURE_TIMEOUT, false);
2920 }
2921
2922 break;
2923
2924 case SERVICE_FINAL_SIGKILL:
2925 log_unit_warning(UNIT(s), "Processes still around after final SIGKILL. Entering failed mode.");
2926 service_enter_dead(s, SERVICE_FAILURE_TIMEOUT, true);
2927 break;
2928
2929 case SERVICE_AUTO_RESTART:
2930 log_unit_info(UNIT(s),
2931 s->restart_usec > 0 ?
2932 "Service hold-off time over, scheduling restart." :
2933 "Service has no hold-off time, scheduling restart.");
2934 service_enter_restart(s);
2935 break;
2936
2937 default:
2938 assert_not_reached("Timeout at wrong time.");
2939 }
2940
2941 return 0;
2942 }
2943
2944 static int service_dispatch_watchdog(sd_event_source *source, usec_t usec, void *userdata) {
2945 Service *s = SERVICE(userdata);
2946 char t[FORMAT_TIMESPAN_MAX];
2947 usec_t watchdog_usec;
2948
2949 assert(s);
2950 assert(source == s->watchdog_event_source);
2951
2952 watchdog_usec = service_get_watchdog_usec(s);
2953
2954 log_unit_error(UNIT(s), "Watchdog timeout (limit %s)!",
2955 format_timespan(t, sizeof(t), watchdog_usec, 1));
2956
2957 service_enter_signal(s, SERVICE_STOP_SIGABRT, SERVICE_FAILURE_WATCHDOG);
2958
2959 return 0;
2960 }
2961
2962 static void service_notify_message(Unit *u, pid_t pid, char **tags, FDSet *fds) {
2963 Service *s = SERVICE(u);
2964 _cleanup_free_ char *cc = NULL;
2965 bool notify_dbus = false;
2966 const char *e;
2967
2968 assert(u);
2969
2970 cc = strv_join(tags, ", ");
2971
2972 if (s->notify_access == NOTIFY_NONE) {
2973 log_unit_warning(u, "Got notification message from PID "PID_FMT", but reception is disabled.", pid);
2974 return;
2975 } else if (s->notify_access == NOTIFY_MAIN && pid != s->main_pid) {
2976 if (s->main_pid != 0)
2977 log_unit_warning(u, "Got notification message from PID "PID_FMT", but reception only permitted for main PID "PID_FMT, pid, s->main_pid);
2978 else
2979 log_unit_debug(u, "Got notification message from PID "PID_FMT", but reception only permitted for main PID which is currently not known", pid);
2980 return;
2981 } else
2982 log_unit_debug(u, "Got notification message from PID "PID_FMT" (%s)", pid, isempty(cc) ? "n/a" : cc);
2983
2984 /* Interpret MAINPID= */
2985 e = strv_find_startswith(tags, "MAINPID=");
2986 if (e && IN_SET(s->state, SERVICE_START, SERVICE_START_POST, SERVICE_RUNNING, SERVICE_RELOAD)) {
2987 if (parse_pid(e, &pid) < 0)
2988 log_unit_warning(u, "Failed to parse MAINPID= field in notification message: %s", e);
2989 else {
2990 service_set_main_pid(s, pid);
2991 unit_watch_pid(UNIT(s), pid);
2992 notify_dbus = true;
2993 }
2994 }
2995
2996 /* Interpret RELOADING= */
2997 if (strv_find(tags, "RELOADING=1")) {
2998
2999 s->notify_state = NOTIFY_RELOADING;
3000
3001 if (s->state == SERVICE_RUNNING)
3002 service_enter_reload_by_notify(s);
3003
3004 notify_dbus = true;
3005 }
3006
3007 /* Interpret READY= */
3008 if (strv_find(tags, "READY=1")) {
3009
3010 s->notify_state = NOTIFY_READY;
3011
3012 /* Type=notify services inform us about completed
3013 * initialization with READY=1 */
3014 if (s->type == SERVICE_NOTIFY && s->state == SERVICE_START)
3015 service_enter_start_post(s);
3016
3017 /* Sending READY=1 while we are reloading informs us
3018 * that the reloading is complete */
3019 if (s->state == SERVICE_RELOAD && s->control_pid == 0)
3020 service_enter_running(s, SERVICE_SUCCESS);
3021
3022 notify_dbus = true;
3023 }
3024
3025 /* Interpret STOPPING= */
3026 if (strv_find(tags, "STOPPING=1")) {
3027
3028 s->notify_state = NOTIFY_STOPPING;
3029
3030 if (s->state == SERVICE_RUNNING)
3031 service_enter_stop_by_notify(s);
3032
3033 notify_dbus = true;
3034 }
3035
3036 /* Interpret STATUS= */
3037 e = strv_find_startswith(tags, "STATUS=");
3038 if (e) {
3039 _cleanup_free_ char *t = NULL;
3040
3041 if (!isempty(e)) {
3042 if (!utf8_is_valid(e))
3043 log_unit_warning(u, "Status message in notification message is not UTF-8 clean.");
3044 else {
3045 t = strdup(e);
3046 if (!t)
3047 log_oom();
3048 }
3049 }
3050
3051 if (!streq_ptr(s->status_text, t)) {
3052
3053 free(s->status_text);
3054 s->status_text = t;
3055 t = NULL;
3056
3057 notify_dbus = true;
3058 }
3059 }
3060
3061 /* Interpret ERRNO= */
3062 e = strv_find_startswith(tags, "ERRNO=");
3063 if (e) {
3064 int status_errno;
3065
3066 if (safe_atoi(e, &status_errno) < 0 || status_errno < 0)
3067 log_unit_warning(u, "Failed to parse ERRNO= field in notification message: %s", e);
3068 else {
3069 if (s->status_errno != status_errno) {
3070 s->status_errno = status_errno;
3071 notify_dbus = true;
3072 }
3073 }
3074 }
3075
3076 /* Interpret WATCHDOG= */
3077 if (strv_find(tags, "WATCHDOG=1"))
3078 service_reset_watchdog(s);
3079
3080 if (strv_find(tags, "FDSTORE=1")) {
3081 const char *name;
3082
3083 name = strv_find_startswith(tags, "FDNAME=");
3084 if (name && !fdname_is_valid(name)) {
3085 log_unit_warning(u, "Passed FDNAME= name is invalid, ignoring.");
3086 name = NULL;
3087 }
3088
3089 service_add_fd_store_set(s, fds, name);
3090 }
3091
3092 e = strv_find_startswith(tags, "WATCHDOG_USEC=");
3093 if (e) {
3094 usec_t watchdog_override_usec;
3095 if (safe_atou64(e, &watchdog_override_usec) < 0)
3096 log_unit_warning(u, "Failed to parse WATCHDOG_USEC=%s", e);
3097 else
3098 service_reset_watchdog_timeout(s, watchdog_override_usec);
3099 }
3100
3101 /* Notify clients about changed status or main pid */
3102 if (notify_dbus)
3103 unit_add_to_dbus_queue(u);
3104 }
3105
3106 static int service_get_timeout(Unit *u, usec_t *timeout) {
3107 Service *s = SERVICE(u);
3108 uint64_t t;
3109 int r;
3110
3111 if (!s->timer_event_source)
3112 return 0;
3113
3114 r = sd_event_source_get_time(s->timer_event_source, &t);
3115 if (r < 0)
3116 return r;
3117 if (t == USEC_INFINITY)
3118 return 0;
3119
3120 *timeout = t;
3121 return 1;
3122 }
3123
3124 static void service_bus_name_owner_change(
3125 Unit *u,
3126 const char *name,
3127 const char *old_owner,
3128 const char *new_owner) {
3129
3130 Service *s = SERVICE(u);
3131 int r;
3132
3133 assert(s);
3134 assert(name);
3135
3136 assert(streq(s->bus_name, name));
3137 assert(old_owner || new_owner);
3138
3139 if (old_owner && new_owner)
3140 log_unit_debug(u, "D-Bus name %s changed owner from %s to %s", name, old_owner, new_owner);
3141 else if (old_owner)
3142 log_unit_debug(u, "D-Bus name %s no longer registered by %s", name, old_owner);
3143 else
3144 log_unit_debug(u, "D-Bus name %s now registered by %s", name, new_owner);
3145
3146 s->bus_name_good = !!new_owner;
3147
3148 /* Track the current owner, so we can reconstruct changes after a daemon reload */
3149 r = free_and_strdup(&s->bus_name_owner, new_owner);
3150 if (r < 0) {
3151 log_unit_error_errno(u, r, "Unable to set new bus name owner %s: %m", new_owner);
3152 return;
3153 }
3154
3155 if (s->type == SERVICE_DBUS) {
3156
3157 /* service_enter_running() will figure out what to
3158 * do */
3159 if (s->state == SERVICE_RUNNING)
3160 service_enter_running(s, SERVICE_SUCCESS);
3161 else if (s->state == SERVICE_START && new_owner)
3162 service_enter_start_post(s);
3163
3164 } else if (new_owner &&
3165 s->main_pid <= 0 &&
3166 (s->state == SERVICE_START ||
3167 s->state == SERVICE_START_POST ||
3168 s->state == SERVICE_RUNNING ||
3169 s->state == SERVICE_RELOAD)) {
3170
3171 _cleanup_(sd_bus_creds_unrefp) sd_bus_creds *creds = NULL;
3172 pid_t pid;
3173
3174 /* Try to acquire PID from bus service */
3175
3176 r = sd_bus_get_name_creds(u->manager->api_bus, name, SD_BUS_CREDS_PID, &creds);
3177 if (r >= 0)
3178 r = sd_bus_creds_get_pid(creds, &pid);
3179 if (r >= 0) {
3180 log_unit_debug(u, "D-Bus name %s is now owned by process %u", name, (unsigned) pid);
3181
3182 service_set_main_pid(s, pid);
3183 unit_watch_pid(UNIT(s), pid);
3184 }
3185 }
3186 }
3187
3188 int service_set_socket_fd(Service *s, int fd, Socket *sock, bool selinux_context_net) {
3189 _cleanup_free_ char *peer = NULL;
3190 int r;
3191
3192 assert(s);
3193 assert(fd >= 0);
3194
3195 /* This is called by the socket code when instantiating a new service for a stream socket and the socket needs
3196 * to be configured. We take ownership of the passed fd on success. */
3197
3198 if (UNIT(s)->load_state != UNIT_LOADED)
3199 return -EINVAL;
3200
3201 if (s->socket_fd >= 0)
3202 return -EBUSY;
3203
3204 if (s->state != SERVICE_DEAD)
3205 return -EAGAIN;
3206
3207 if (getpeername_pretty(fd, true, &peer) >= 0) {
3208
3209 if (UNIT(s)->description) {
3210 _cleanup_free_ char *a;
3211
3212 a = strjoin(UNIT(s)->description, " (", peer, ")", NULL);
3213 if (!a)
3214 return -ENOMEM;
3215
3216 r = unit_set_description(UNIT(s), a);
3217 } else
3218 r = unit_set_description(UNIT(s), peer);
3219
3220 if (r < 0)
3221 return r;
3222 }
3223
3224 r = unit_add_two_dependencies(UNIT(sock), UNIT_BEFORE, UNIT_TRIGGERS, UNIT(s), false);
3225 if (r < 0)
3226 return r;
3227
3228 s->socket_fd = fd;
3229 s->socket_fd_selinux_context_net = selinux_context_net;
3230
3231 unit_ref_set(&s->accept_socket, UNIT(sock));
3232 return 0;
3233 }
3234
3235 static void service_reset_failed(Unit *u) {
3236 Service *s = SERVICE(u);
3237
3238 assert(s);
3239
3240 if (s->state == SERVICE_FAILED)
3241 service_set_state(s, SERVICE_DEAD);
3242
3243 s->result = SERVICE_SUCCESS;
3244 s->reload_result = SERVICE_SUCCESS;
3245 }
3246
3247 static int service_kill(Unit *u, KillWho who, int signo, sd_bus_error *error) {
3248 Service *s = SERVICE(u);
3249
3250 return unit_kill_common(u, who, signo, s->main_pid, s->control_pid, error);
3251 }
3252
3253 static int service_main_pid(Unit *u) {
3254 Service *s = SERVICE(u);
3255
3256 assert(s);
3257
3258 return s->main_pid;
3259 }
3260
3261 static int service_control_pid(Unit *u) {
3262 Service *s = SERVICE(u);
3263
3264 assert(s);
3265
3266 return s->control_pid;
3267 }
3268
3269 static const char* const service_restart_table[_SERVICE_RESTART_MAX] = {
3270 [SERVICE_RESTART_NO] = "no",
3271 [SERVICE_RESTART_ON_SUCCESS] = "on-success",
3272 [SERVICE_RESTART_ON_FAILURE] = "on-failure",
3273 [SERVICE_RESTART_ON_ABNORMAL] = "on-abnormal",
3274 [SERVICE_RESTART_ON_WATCHDOG] = "on-watchdog",
3275 [SERVICE_RESTART_ON_ABORT] = "on-abort",
3276 [SERVICE_RESTART_ALWAYS] = "always",
3277 };
3278
3279 DEFINE_STRING_TABLE_LOOKUP(service_restart, ServiceRestart);
3280
3281 static const char* const service_type_table[_SERVICE_TYPE_MAX] = {
3282 [SERVICE_SIMPLE] = "simple",
3283 [SERVICE_FORKING] = "forking",
3284 [SERVICE_ONESHOT] = "oneshot",
3285 [SERVICE_DBUS] = "dbus",
3286 [SERVICE_NOTIFY] = "notify",
3287 [SERVICE_IDLE] = "idle"
3288 };
3289
3290 DEFINE_STRING_TABLE_LOOKUP(service_type, ServiceType);
3291
3292 static const char* const service_exec_command_table[_SERVICE_EXEC_COMMAND_MAX] = {
3293 [SERVICE_EXEC_START_PRE] = "ExecStartPre",
3294 [SERVICE_EXEC_START] = "ExecStart",
3295 [SERVICE_EXEC_START_POST] = "ExecStartPost",
3296 [SERVICE_EXEC_RELOAD] = "ExecReload",
3297 [SERVICE_EXEC_STOP] = "ExecStop",
3298 [SERVICE_EXEC_STOP_POST] = "ExecStopPost",
3299 };
3300
3301 DEFINE_STRING_TABLE_LOOKUP(service_exec_command, ServiceExecCommand);
3302
3303 static const char* const notify_access_table[_NOTIFY_ACCESS_MAX] = {
3304 [NOTIFY_NONE] = "none",
3305 [NOTIFY_MAIN] = "main",
3306 [NOTIFY_ALL] = "all"
3307 };
3308
3309 DEFINE_STRING_TABLE_LOOKUP(notify_access, NotifyAccess);
3310
3311 static const char* const notify_state_table[_NOTIFY_STATE_MAX] = {
3312 [NOTIFY_UNKNOWN] = "unknown",
3313 [NOTIFY_READY] = "ready",
3314 [NOTIFY_RELOADING] = "reloading",
3315 [NOTIFY_STOPPING] = "stopping",
3316 };
3317
3318 DEFINE_STRING_TABLE_LOOKUP(notify_state, NotifyState);
3319
3320 static const char* const service_result_table[_SERVICE_RESULT_MAX] = {
3321 [SERVICE_SUCCESS] = "success",
3322 [SERVICE_FAILURE_RESOURCES] = "resources",
3323 [SERVICE_FAILURE_TIMEOUT] = "timeout",
3324 [SERVICE_FAILURE_EXIT_CODE] = "exit-code",
3325 [SERVICE_FAILURE_SIGNAL] = "signal",
3326 [SERVICE_FAILURE_CORE_DUMP] = "core-dump",
3327 [SERVICE_FAILURE_WATCHDOG] = "watchdog",
3328 [SERVICE_FAILURE_START_LIMIT_HIT] = "start-limit-hit",
3329 };
3330
3331 DEFINE_STRING_TABLE_LOOKUP(service_result, ServiceResult);
3332
3333 const UnitVTable service_vtable = {
3334 .object_size = sizeof(Service),
3335 .exec_context_offset = offsetof(Service, exec_context),
3336 .cgroup_context_offset = offsetof(Service, cgroup_context),
3337 .kill_context_offset = offsetof(Service, kill_context),
3338 .exec_runtime_offset = offsetof(Service, exec_runtime),
3339 .dynamic_creds_offset = offsetof(Service, dynamic_creds),
3340
3341 .sections =
3342 "Unit\0"
3343 "Service\0"
3344 "Install\0",
3345 .private_section = "Service",
3346
3347 .init = service_init,
3348 .done = service_done,
3349 .load = service_load,
3350 .release_resources = service_release_resources,
3351
3352 .coldplug = service_coldplug,
3353
3354 .dump = service_dump,
3355
3356 .start = service_start,
3357 .stop = service_stop,
3358 .reload = service_reload,
3359
3360 .can_reload = service_can_reload,
3361
3362 .kill = service_kill,
3363
3364 .serialize = service_serialize,
3365 .deserialize_item = service_deserialize_item,
3366
3367 .active_state = service_active_state,
3368 .sub_state_to_string = service_sub_state_to_string,
3369
3370 .check_gc = service_check_gc,
3371
3372 .sigchld_event = service_sigchld_event,
3373
3374 .reset_failed = service_reset_failed,
3375
3376 .notify_cgroup_empty = service_notify_cgroup_empty_event,
3377 .notify_message = service_notify_message,
3378
3379 .main_pid = service_main_pid,
3380 .control_pid = service_control_pid,
3381
3382 .bus_name_owner_change = service_bus_name_owner_change,
3383
3384 .bus_vtable = bus_service_vtable,
3385 .bus_set_property = bus_service_set_property,
3386 .bus_commit_properties = bus_service_commit_properties,
3387
3388 .get_timeout = service_get_timeout,
3389 .can_transient = true,
3390
3391 .status_message_formats = {
3392 .starting_stopping = {
3393 [0] = "Starting %s...",
3394 [1] = "Stopping %s...",
3395 },
3396 .finished_start_job = {
3397 [JOB_DONE] = "Started %s.",
3398 [JOB_FAILED] = "Failed to start %s.",
3399 },
3400 .finished_stop_job = {
3401 [JOB_DONE] = "Stopped %s.",
3402 [JOB_FAILED] = "Stopped (with error) %s.",
3403 },
3404 },
3405 };