]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/core/service.c
core: disallow using '-.service' as a service name
[thirdparty/systemd.git] / src / core / service.c
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2
3 #include <errno.h>
4 #include <signal.h>
5 #include <sys/stat.h>
6 #include <sys/types.h>
7 #include <unistd.h>
8
9 #include "sd-messages.h"
10
11 #include "alloc-util.h"
12 #include "async.h"
13 #include "bus-error.h"
14 #include "bus-kernel.h"
15 #include "bus-util.h"
16 #include "dbus-service.h"
17 #include "dbus-unit.h"
18 #include "def.h"
19 #include "env-util.h"
20 #include "escape.h"
21 #include "exit-status.h"
22 #include "fd-util.h"
23 #include "fileio.h"
24 #include "format-util.h"
25 #include "fs-util.h"
26 #include "load-dropin.h"
27 #include "load-fragment.h"
28 #include "log.h"
29 #include "manager.h"
30 #include "parse-util.h"
31 #include "path-util.h"
32 #include "process-util.h"
33 #include "serialize.h"
34 #include "service.h"
35 #include "signal-util.h"
36 #include "special.h"
37 #include "stdio-util.h"
38 #include "string-table.h"
39 #include "string-util.h"
40 #include "strv.h"
41 #include "unit-name.h"
42 #include "unit.h"
43 #include "utf8.h"
44 #include "util.h"
45
46 static const UnitActiveState state_translation_table[_SERVICE_STATE_MAX] = {
47 [SERVICE_DEAD] = UNIT_INACTIVE,
48 [SERVICE_CONDITION] = UNIT_ACTIVATING,
49 [SERVICE_START_PRE] = UNIT_ACTIVATING,
50 [SERVICE_START] = UNIT_ACTIVATING,
51 [SERVICE_START_POST] = UNIT_ACTIVATING,
52 [SERVICE_RUNNING] = UNIT_ACTIVE,
53 [SERVICE_EXITED] = UNIT_ACTIVE,
54 [SERVICE_RELOAD] = UNIT_RELOADING,
55 [SERVICE_STOP] = UNIT_DEACTIVATING,
56 [SERVICE_STOP_WATCHDOG] = UNIT_DEACTIVATING,
57 [SERVICE_STOP_SIGTERM] = UNIT_DEACTIVATING,
58 [SERVICE_STOP_SIGKILL] = UNIT_DEACTIVATING,
59 [SERVICE_STOP_POST] = UNIT_DEACTIVATING,
60 [SERVICE_FINAL_SIGTERM] = UNIT_DEACTIVATING,
61 [SERVICE_FINAL_SIGKILL] = UNIT_DEACTIVATING,
62 [SERVICE_FAILED] = UNIT_FAILED,
63 [SERVICE_AUTO_RESTART] = UNIT_ACTIVATING,
64 [SERVICE_CLEANING] = UNIT_MAINTENANCE,
65 };
66
67 /* For Type=idle we never want to delay any other jobs, hence we
68 * consider idle jobs active as soon as we start working on them */
69 static const UnitActiveState state_translation_table_idle[_SERVICE_STATE_MAX] = {
70 [SERVICE_DEAD] = UNIT_INACTIVE,
71 [SERVICE_CONDITION] = UNIT_ACTIVE,
72 [SERVICE_START_PRE] = UNIT_ACTIVE,
73 [SERVICE_START] = UNIT_ACTIVE,
74 [SERVICE_START_POST] = UNIT_ACTIVE,
75 [SERVICE_RUNNING] = UNIT_ACTIVE,
76 [SERVICE_EXITED] = UNIT_ACTIVE,
77 [SERVICE_RELOAD] = UNIT_RELOADING,
78 [SERVICE_STOP] = UNIT_DEACTIVATING,
79 [SERVICE_STOP_WATCHDOG] = UNIT_DEACTIVATING,
80 [SERVICE_STOP_SIGTERM] = UNIT_DEACTIVATING,
81 [SERVICE_STOP_SIGKILL] = UNIT_DEACTIVATING,
82 [SERVICE_STOP_POST] = UNIT_DEACTIVATING,
83 [SERVICE_FINAL_SIGTERM] = UNIT_DEACTIVATING,
84 [SERVICE_FINAL_SIGKILL] = UNIT_DEACTIVATING,
85 [SERVICE_FAILED] = UNIT_FAILED,
86 [SERVICE_AUTO_RESTART] = UNIT_ACTIVATING,
87 [SERVICE_CLEANING] = UNIT_MAINTENANCE,
88 };
89
90 static int service_dispatch_inotify_io(sd_event_source *source, int fd, uint32_t events, void *userdata);
91 static int service_dispatch_timer(sd_event_source *source, usec_t usec, void *userdata);
92 static int service_dispatch_watchdog(sd_event_source *source, usec_t usec, void *userdata);
93 static int service_dispatch_exec_io(sd_event_source *source, int fd, uint32_t events, void *userdata);
94
95 static void service_enter_signal(Service *s, ServiceState state, ServiceResult f);
96 static void service_enter_reload_by_notify(Service *s);
97
98 static void service_init(Unit *u) {
99 Service *s = SERVICE(u);
100
101 assert(u);
102 assert(u->load_state == UNIT_STUB);
103
104 s->timeout_start_usec = u->manager->default_timeout_start_usec;
105 s->timeout_stop_usec = u->manager->default_timeout_stop_usec;
106 s->timeout_abort_usec = u->manager->default_timeout_abort_usec;
107 s->timeout_abort_set = u->manager->default_timeout_abort_set;
108 s->restart_usec = u->manager->default_restart_usec;
109 s->runtime_max_usec = USEC_INFINITY;
110 s->type = _SERVICE_TYPE_INVALID;
111 s->socket_fd = -1;
112 s->stdin_fd = s->stdout_fd = s->stderr_fd = -1;
113 s->guess_main_pid = true;
114
115 s->control_command_id = _SERVICE_EXEC_COMMAND_INVALID;
116
117 s->exec_context.keyring_mode = MANAGER_IS_SYSTEM(u->manager) ?
118 EXEC_KEYRING_PRIVATE : EXEC_KEYRING_INHERIT;
119
120 s->watchdog_original_usec = USEC_INFINITY;
121
122 s->oom_policy = _OOM_POLICY_INVALID;
123 }
124
125 static void service_unwatch_control_pid(Service *s) {
126 assert(s);
127
128 if (s->control_pid <= 0)
129 return;
130
131 unit_unwatch_pid(UNIT(s), s->control_pid);
132 s->control_pid = 0;
133 }
134
135 static void service_unwatch_main_pid(Service *s) {
136 assert(s);
137
138 if (s->main_pid <= 0)
139 return;
140
141 unit_unwatch_pid(UNIT(s), s->main_pid);
142 s->main_pid = 0;
143 }
144
145 static void service_unwatch_pid_file(Service *s) {
146 if (!s->pid_file_pathspec)
147 return;
148
149 log_unit_debug(UNIT(s), "Stopping watch for PID file %s", s->pid_file_pathspec->path);
150 path_spec_unwatch(s->pid_file_pathspec);
151 path_spec_done(s->pid_file_pathspec);
152 s->pid_file_pathspec = mfree(s->pid_file_pathspec);
153 }
154
155 static int service_set_main_pid(Service *s, pid_t pid) {
156 assert(s);
157
158 if (pid <= 1)
159 return -EINVAL;
160
161 if (pid == getpid_cached())
162 return -EINVAL;
163
164 if (s->main_pid == pid && s->main_pid_known)
165 return 0;
166
167 if (s->main_pid != pid) {
168 service_unwatch_main_pid(s);
169 exec_status_start(&s->main_exec_status, pid);
170 }
171
172 s->main_pid = pid;
173 s->main_pid_known = true;
174 s->main_pid_alien = pid_is_my_child(pid) == 0;
175
176 if (s->main_pid_alien)
177 log_unit_warning(UNIT(s), "Supervising process "PID_FMT" which is not our child. We'll most likely not notice when it exits.", pid);
178
179 return 0;
180 }
181
182 void service_close_socket_fd(Service *s) {
183 assert(s);
184
185 /* Undo the effect of service_set_socket_fd(). */
186
187 s->socket_fd = asynchronous_close(s->socket_fd);
188
189 if (UNIT_ISSET(s->accept_socket)) {
190 socket_connection_unref(SOCKET(UNIT_DEREF(s->accept_socket)));
191 unit_ref_unset(&s->accept_socket);
192 }
193 }
194
195 static void service_stop_watchdog(Service *s) {
196 assert(s);
197
198 s->watchdog_event_source = sd_event_source_unref(s->watchdog_event_source);
199 s->watchdog_timestamp = DUAL_TIMESTAMP_NULL;
200 }
201
202 static usec_t service_get_watchdog_usec(Service *s) {
203 assert(s);
204
205 if (s->watchdog_override_enable)
206 return s->watchdog_override_usec;
207
208 return s->watchdog_original_usec;
209 }
210
211 static void service_start_watchdog(Service *s) {
212 usec_t watchdog_usec;
213 int r;
214
215 assert(s);
216
217 watchdog_usec = service_get_watchdog_usec(s);
218 if (IN_SET(watchdog_usec, 0, USEC_INFINITY)) {
219 service_stop_watchdog(s);
220 return;
221 }
222
223 if (s->watchdog_event_source) {
224 r = sd_event_source_set_time(s->watchdog_event_source, usec_add(s->watchdog_timestamp.monotonic, watchdog_usec));
225 if (r < 0) {
226 log_unit_warning_errno(UNIT(s), r, "Failed to reset watchdog timer: %m");
227 return;
228 }
229
230 r = sd_event_source_set_enabled(s->watchdog_event_source, SD_EVENT_ONESHOT);
231 } else {
232 r = sd_event_add_time(
233 UNIT(s)->manager->event,
234 &s->watchdog_event_source,
235 CLOCK_MONOTONIC,
236 usec_add(s->watchdog_timestamp.monotonic, watchdog_usec), 0,
237 service_dispatch_watchdog, s);
238 if (r < 0) {
239 log_unit_warning_errno(UNIT(s), r, "Failed to add watchdog timer: %m");
240 return;
241 }
242
243 (void) sd_event_source_set_description(s->watchdog_event_source, "service-watchdog");
244
245 /* Let's process everything else which might be a sign
246 * of living before we consider a service died. */
247 r = sd_event_source_set_priority(s->watchdog_event_source, SD_EVENT_PRIORITY_IDLE);
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_extend_event_source_timeout(Service *s, sd_event_source *source, usec_t extended) {
254 usec_t current;
255 int r;
256
257 assert(s);
258
259 /* Extends the specified event source timer to at least the specified time, unless it is already later
260 * anyway. */
261
262 if (!source)
263 return;
264
265 r = sd_event_source_get_time(source, &current);
266 if (r < 0) {
267 const char *desc;
268 (void) sd_event_source_get_description(s->timer_event_source, &desc);
269 log_unit_warning_errno(UNIT(s), r, "Failed to retrieve timeout time for event source '%s', ignoring: %m", strna(desc));
270 return;
271 }
272
273 if (current >= extended) /* Current timeout is already longer, ignore this. */
274 return;
275
276 r = sd_event_source_set_time(source, extended);
277 if (r < 0) {
278 const char *desc;
279 (void) sd_event_source_get_description(s->timer_event_source, &desc);
280 log_unit_warning_errno(UNIT(s), r, "Failed to set timeout time for even source '%s', ignoring %m", strna(desc));
281 }
282 }
283
284 static void service_extend_timeout(Service *s, usec_t extend_timeout_usec) {
285 usec_t extended;
286
287 assert(s);
288
289 if (IN_SET(extend_timeout_usec, 0, USEC_INFINITY))
290 return;
291
292 extended = usec_add(now(CLOCK_MONOTONIC), extend_timeout_usec);
293
294 service_extend_event_source_timeout(s, s->timer_event_source, extended);
295 service_extend_event_source_timeout(s, s->watchdog_event_source, extended);
296 }
297
298 static void service_reset_watchdog(Service *s) {
299 assert(s);
300
301 dual_timestamp_get(&s->watchdog_timestamp);
302 service_start_watchdog(s);
303 }
304
305 static void service_override_watchdog_timeout(Service *s, usec_t watchdog_override_usec) {
306 assert(s);
307
308 s->watchdog_override_enable = true;
309 s->watchdog_override_usec = watchdog_override_usec;
310 service_reset_watchdog(s);
311
312 log_unit_debug(UNIT(s), "watchdog_usec="USEC_FMT, s->watchdog_usec);
313 log_unit_debug(UNIT(s), "watchdog_override_usec="USEC_FMT, s->watchdog_override_usec);
314 }
315
316 static void service_fd_store_unlink(ServiceFDStore *fs) {
317
318 if (!fs)
319 return;
320
321 if (fs->service) {
322 assert(fs->service->n_fd_store > 0);
323 LIST_REMOVE(fd_store, fs->service->fd_store, fs);
324 fs->service->n_fd_store--;
325 }
326
327 sd_event_source_disable_unref(fs->event_source);
328
329 free(fs->fdname);
330 safe_close(fs->fd);
331 free(fs);
332 }
333
334 static void service_release_fd_store(Service *s) {
335 assert(s);
336
337 if (s->n_keep_fd_store > 0)
338 return;
339
340 log_unit_debug(UNIT(s), "Releasing all stored fds");
341 while (s->fd_store)
342 service_fd_store_unlink(s->fd_store);
343
344 assert(s->n_fd_store == 0);
345 }
346
347 static void service_release_resources(Unit *u) {
348 Service *s = SERVICE(u);
349
350 assert(s);
351
352 if (!s->fd_store && s->stdin_fd < 0 && s->stdout_fd < 0 && s->stderr_fd < 0)
353 return;
354
355 log_unit_debug(u, "Releasing resources.");
356
357 s->stdin_fd = safe_close(s->stdin_fd);
358 s->stdout_fd = safe_close(s->stdout_fd);
359 s->stderr_fd = safe_close(s->stderr_fd);
360
361 service_release_fd_store(s);
362 }
363
364 static void service_done(Unit *u) {
365 Service *s = SERVICE(u);
366
367 assert(s);
368
369 s->pid_file = mfree(s->pid_file);
370 s->status_text = mfree(s->status_text);
371
372 s->exec_runtime = exec_runtime_unref(s->exec_runtime, false);
373 exec_command_free_array(s->exec_command, _SERVICE_EXEC_COMMAND_MAX);
374 s->control_command = NULL;
375 s->main_command = NULL;
376
377 dynamic_creds_unref(&s->dynamic_creds);
378
379 exit_status_set_free(&s->restart_prevent_status);
380 exit_status_set_free(&s->restart_force_status);
381 exit_status_set_free(&s->success_status);
382
383 /* This will leak a process, but at least no memory or any of
384 * our resources */
385 service_unwatch_main_pid(s);
386 service_unwatch_control_pid(s);
387 service_unwatch_pid_file(s);
388
389 if (s->bus_name) {
390 unit_unwatch_bus_name(u, s->bus_name);
391 s->bus_name = mfree(s->bus_name);
392 }
393
394 s->bus_name_owner = mfree(s->bus_name_owner);
395
396 s->usb_function_descriptors = mfree(s->usb_function_descriptors);
397 s->usb_function_strings = mfree(s->usb_function_strings);
398
399 service_close_socket_fd(s);
400 s->peer = socket_peer_unref(s->peer);
401
402 unit_ref_unset(&s->accept_socket);
403
404 service_stop_watchdog(s);
405
406 s->timer_event_source = sd_event_source_unref(s->timer_event_source);
407 s->exec_fd_event_source = sd_event_source_unref(s->exec_fd_event_source);
408
409 service_release_resources(u);
410 }
411
412 static int on_fd_store_io(sd_event_source *e, int fd, uint32_t revents, void *userdata) {
413 ServiceFDStore *fs = userdata;
414
415 assert(e);
416 assert(fs);
417
418 /* If we get either EPOLLHUP or EPOLLERR, it's time to remove this entry from the fd store */
419 log_unit_debug(UNIT(fs->service),
420 "Received %s on stored fd %d (%s), closing.",
421 revents & EPOLLERR ? "EPOLLERR" : "EPOLLHUP",
422 fs->fd, strna(fs->fdname));
423 service_fd_store_unlink(fs);
424 return 0;
425 }
426
427 static int service_add_fd_store(Service *s, int fd, const char *name) {
428 ServiceFDStore *fs;
429 int r;
430
431 /* fd is always consumed if we return >= 0 */
432
433 assert(s);
434 assert(fd >= 0);
435
436 if (s->n_fd_store >= s->n_fd_store_max)
437 return -EXFULL; /* Our store is full.
438 * Use this errno rather than E[NM]FILE to distinguish from
439 * the case where systemd itself hits the file limit. */
440
441 LIST_FOREACH(fd_store, fs, s->fd_store) {
442 r = same_fd(fs->fd, fd);
443 if (r < 0)
444 return r;
445 if (r > 0) {
446 safe_close(fd);
447 return 0; /* fd already included */
448 }
449 }
450
451 fs = new0(ServiceFDStore, 1);
452 if (!fs)
453 return -ENOMEM;
454
455 fs->fd = fd;
456 fs->service = s;
457 fs->fdname = strdup(name ?: "stored");
458 if (!fs->fdname) {
459 free(fs);
460 return -ENOMEM;
461 }
462
463 r = sd_event_add_io(UNIT(s)->manager->event, &fs->event_source, fd, 0, on_fd_store_io, fs);
464 if (r < 0 && r != -EPERM) { /* EPERM indicates fds that aren't pollable, which is OK */
465 free(fs->fdname);
466 free(fs);
467 return r;
468 } else if (r >= 0)
469 (void) sd_event_source_set_description(fs->event_source, "service-fd-store");
470
471 LIST_PREPEND(fd_store, s->fd_store, fs);
472 s->n_fd_store++;
473
474 return 1; /* fd newly stored */
475 }
476
477 static int service_add_fd_store_set(Service *s, FDSet *fds, const char *name) {
478 int r;
479
480 assert(s);
481
482 while (fdset_size(fds) > 0) {
483 _cleanup_close_ int fd = -1;
484
485 fd = fdset_steal_first(fds);
486 if (fd < 0)
487 break;
488
489 r = service_add_fd_store(s, fd, name);
490 if (r == -EXFULL)
491 return log_unit_warning_errno(UNIT(s), r,
492 "Cannot store more fds than FileDescriptorStoreMax=%u, closing remaining.",
493 s->n_fd_store_max);
494 if (r < 0)
495 return log_unit_error_errno(UNIT(s), r, "Failed to add fd to store: %m");
496 if (r > 0)
497 log_unit_debug(UNIT(s), "Added fd %u (%s) to fd store.", fd, strna(name));
498 fd = -1;
499 }
500
501 return 0;
502 }
503
504 static void service_remove_fd_store(Service *s, const char *name) {
505 ServiceFDStore *fs, *n;
506
507 assert(s);
508 assert(name);
509
510 LIST_FOREACH_SAFE(fd_store, fs, n, s->fd_store) {
511 if (!streq(fs->fdname, name))
512 continue;
513
514 log_unit_debug(UNIT(s), "Got explicit request to remove fd %i (%s), closing.", fs->fd, name);
515 service_fd_store_unlink(fs);
516 }
517 }
518
519 static int service_arm_timer(Service *s, usec_t usec) {
520 int r;
521
522 assert(s);
523
524 if (s->timer_event_source) {
525 r = sd_event_source_set_time(s->timer_event_source, usec);
526 if (r < 0)
527 return r;
528
529 return sd_event_source_set_enabled(s->timer_event_source, SD_EVENT_ONESHOT);
530 }
531
532 if (usec == USEC_INFINITY)
533 return 0;
534
535 r = sd_event_add_time(
536 UNIT(s)->manager->event,
537 &s->timer_event_source,
538 CLOCK_MONOTONIC,
539 usec, 0,
540 service_dispatch_timer, s);
541 if (r < 0)
542 return r;
543
544 (void) sd_event_source_set_description(s->timer_event_source, "service-timer");
545
546 return 0;
547 }
548
549 static int service_verify(Service *s) {
550 assert(s);
551
552 if (UNIT(s)->load_state != UNIT_LOADED)
553 return 0;
554
555 if (!service_unit_name_is_valid(UNIT(s)->id)) {
556 log_unit_error(UNIT(s), "Service name is invalid or reserved. Refusing.");
557 return -ENOEXEC;
558 }
559
560 if (!s->exec_command[SERVICE_EXEC_START] && !s->exec_command[SERVICE_EXEC_STOP]
561 && UNIT(s)->success_action == EMERGENCY_ACTION_NONE) {
562 /* FailureAction= only makes sense if one of the start or stop commands is specified.
563 * SuccessAction= will be executed unconditionally if no commands are specified. Hence,
564 * either a command or SuccessAction= are required. */
565
566 log_unit_error(UNIT(s), "Service has no ExecStart=, ExecStop=, or SuccessAction=. Refusing.");
567 return -ENOEXEC;
568 }
569
570 if (s->type != SERVICE_ONESHOT && !s->exec_command[SERVICE_EXEC_START]) {
571 log_unit_error(UNIT(s), "Service has no ExecStart= setting, which is only allowed for Type=oneshot services. Refusing.");
572 return -ENOEXEC;
573 }
574
575 if (!s->remain_after_exit && !s->exec_command[SERVICE_EXEC_START] && UNIT(s)->success_action == EMERGENCY_ACTION_NONE) {
576 log_unit_error(UNIT(s), "Service has no ExecStart= and no SuccessAction= settings and does not have RemainAfterExit=yes set. Refusing.");
577 return -ENOEXEC;
578 }
579
580 if (s->type != SERVICE_ONESHOT && s->exec_command[SERVICE_EXEC_START]->command_next) {
581 log_unit_error(UNIT(s), "Service has more than one ExecStart= setting, which is only allowed for Type=oneshot services. Refusing.");
582 return -ENOEXEC;
583 }
584
585 if (s->type == SERVICE_ONESHOT && s->restart != SERVICE_RESTART_NO) {
586 log_unit_error(UNIT(s), "Service has Restart= setting other than no, which isn't allowed for Type=oneshot services. Refusing.");
587 return -ENOEXEC;
588 }
589
590 if (s->type == SERVICE_ONESHOT && !exit_status_set_is_empty(&s->restart_force_status)) {
591 log_unit_error(UNIT(s), "Service has RestartForceStatus= set, which isn't allowed for Type=oneshot services. Refusing.");
592 return -ENOEXEC;
593 }
594
595 if (s->type == SERVICE_DBUS && !s->bus_name) {
596 log_unit_error(UNIT(s), "Service is of type D-Bus but no D-Bus service name has been specified. Refusing.");
597 return -ENOEXEC;
598 }
599
600 if (s->bus_name && s->type != SERVICE_DBUS)
601 log_unit_warning(UNIT(s), "Service has a D-Bus service name specified, but is not of type dbus. Ignoring.");
602
603 if (s->exec_context.pam_name && !IN_SET(s->kill_context.kill_mode, KILL_CONTROL_GROUP, KILL_MIXED)) {
604 log_unit_error(UNIT(s), "Service has PAM enabled. Kill mode must be set to 'control-group' or 'mixed'. Refusing.");
605 return -ENOEXEC;
606 }
607
608 if (s->usb_function_descriptors && !s->usb_function_strings)
609 log_unit_warning(UNIT(s), "Service has USBFunctionDescriptors= setting, but no USBFunctionStrings=. Ignoring.");
610
611 if (!s->usb_function_descriptors && s->usb_function_strings)
612 log_unit_warning(UNIT(s), "Service has USBFunctionStrings= setting, but no USBFunctionDescriptors=. Ignoring.");
613
614 if (s->runtime_max_usec != USEC_INFINITY && s->type == SERVICE_ONESHOT)
615 log_unit_warning(UNIT(s), "RuntimeMaxSec= has no effect in combination with Type=oneshot. Ignoring.");
616
617 return 0;
618 }
619
620 static int service_add_default_dependencies(Service *s) {
621 int r;
622
623 assert(s);
624
625 if (!UNIT(s)->default_dependencies)
626 return 0;
627
628 /* Add a number of automatic dependencies useful for the
629 * majority of services. */
630
631 if (MANAGER_IS_SYSTEM(UNIT(s)->manager)) {
632 /* First, pull in the really early boot stuff, and
633 * require it, so that we fail if we can't acquire
634 * it. */
635
636 r = unit_add_two_dependencies_by_name(UNIT(s), UNIT_AFTER, UNIT_REQUIRES, SPECIAL_SYSINIT_TARGET, true, UNIT_DEPENDENCY_DEFAULT);
637 if (r < 0)
638 return r;
639 } else {
640
641 /* In the --user instance there's no sysinit.target,
642 * in that case require basic.target instead. */
643
644 r = unit_add_dependency_by_name(UNIT(s), UNIT_REQUIRES, SPECIAL_BASIC_TARGET, true, UNIT_DEPENDENCY_DEFAULT);
645 if (r < 0)
646 return r;
647 }
648
649 /* Second, if the rest of the base system is in the same
650 * transaction, order us after it, but do not pull it in or
651 * even require it. */
652 r = unit_add_dependency_by_name(UNIT(s), UNIT_AFTER, SPECIAL_BASIC_TARGET, true, UNIT_DEPENDENCY_DEFAULT);
653 if (r < 0)
654 return r;
655
656 /* Third, add us in for normal shutdown. */
657 return unit_add_two_dependencies_by_name(UNIT(s), UNIT_BEFORE, UNIT_CONFLICTS, SPECIAL_SHUTDOWN_TARGET, true, UNIT_DEPENDENCY_DEFAULT);
658 }
659
660 static void service_fix_output(Service *s) {
661 assert(s);
662
663 /* If nothing has been explicitly configured, patch default output in. If input is socket/tty we avoid this
664 * however, since in that case we want output to default to the same place as we read input from. */
665
666 if (s->exec_context.std_error == EXEC_OUTPUT_INHERIT &&
667 s->exec_context.std_output == EXEC_OUTPUT_INHERIT &&
668 s->exec_context.std_input == EXEC_INPUT_NULL)
669 s->exec_context.std_error = UNIT(s)->manager->default_std_error;
670
671 if (s->exec_context.std_output == EXEC_OUTPUT_INHERIT &&
672 s->exec_context.std_input == EXEC_INPUT_NULL)
673 s->exec_context.std_output = UNIT(s)->manager->default_std_output;
674
675 if (s->exec_context.std_input == EXEC_INPUT_NULL &&
676 s->exec_context.stdin_data_size > 0)
677 s->exec_context.std_input = EXEC_INPUT_DATA;
678 }
679
680 static int service_setup_bus_name(Service *s) {
681 int r;
682
683 assert(s);
684
685 if (!s->bus_name)
686 return 0;
687
688 r = unit_add_dependency_by_name(UNIT(s), UNIT_REQUIRES, SPECIAL_DBUS_SOCKET, true, UNIT_DEPENDENCY_FILE);
689 if (r < 0)
690 return log_unit_error_errno(UNIT(s), r, "Failed to add dependency on " SPECIAL_DBUS_SOCKET ": %m");
691
692 /* We always want to be ordered against dbus.socket if both are in the transaction. */
693 r = unit_add_dependency_by_name(UNIT(s), UNIT_AFTER, SPECIAL_DBUS_SOCKET, true, UNIT_DEPENDENCY_FILE);
694 if (r < 0)
695 return log_unit_error_errno(UNIT(s), r, "Failed to add dependency on " SPECIAL_DBUS_SOCKET ": %m");
696
697 r = unit_watch_bus_name(UNIT(s), s->bus_name);
698 if (r == -EEXIST)
699 return log_unit_error_errno(UNIT(s), r, "Two services allocated for the same bus name %s, refusing operation.", s->bus_name);
700 if (r < 0)
701 return log_unit_error_errno(UNIT(s), r, "Cannot watch bus name %s: %m", s->bus_name);
702
703 return 0;
704 }
705
706 static int service_add_extras(Service *s) {
707 int r;
708
709 assert(s);
710
711 if (s->type == _SERVICE_TYPE_INVALID) {
712 /* Figure out a type automatically */
713 if (s->bus_name)
714 s->type = SERVICE_DBUS;
715 else if (s->exec_command[SERVICE_EXEC_START])
716 s->type = SERVICE_SIMPLE;
717 else
718 s->type = SERVICE_ONESHOT;
719 }
720
721 /* Oneshot services have disabled start timeout by default */
722 if (s->type == SERVICE_ONESHOT && !s->start_timeout_defined)
723 s->timeout_start_usec = USEC_INFINITY;
724
725 service_fix_output(s);
726
727 r = unit_patch_contexts(UNIT(s));
728 if (r < 0)
729 return r;
730
731 r = unit_add_exec_dependencies(UNIT(s), &s->exec_context);
732 if (r < 0)
733 return r;
734
735 r = unit_set_default_slice(UNIT(s));
736 if (r < 0)
737 return r;
738
739 /* If the service needs the notify socket, let's enable it automatically. */
740 if (s->notify_access == NOTIFY_NONE &&
741 (s->type == SERVICE_NOTIFY || s->watchdog_usec > 0 || s->n_fd_store_max > 0))
742 s->notify_access = NOTIFY_MAIN;
743
744 /* If no OOM policy was explicitly set, then default to the configure default OOM policy. Except when
745 * delegation is on, in that case it we assume the payload knows better what to do and can process
746 * things in a more focused way. */
747 if (s->oom_policy < 0)
748 s->oom_policy = s->cgroup_context.delegate ? OOM_CONTINUE : UNIT(s)->manager->default_oom_policy;
749
750 /* Let the kernel do the killing if that's requested. */
751 s->cgroup_context.memory_oom_group = s->oom_policy == OOM_KILL;
752
753 r = service_add_default_dependencies(s);
754 if (r < 0)
755 return r;
756
757 r = service_setup_bus_name(s);
758 if (r < 0)
759 return r;
760
761 return 0;
762 }
763
764 static int service_load(Unit *u) {
765 Service *s = SERVICE(u);
766 int r;
767
768 assert(s);
769
770 /* Load a .service file */
771 r = unit_load_fragment(u);
772 if (r < 0)
773 return r;
774
775 /* Still nothing found? Then let's give up */
776 if (u->load_state == UNIT_STUB)
777 return -ENOENT;
778
779 /* This is a new unit? Then let's add in some extras */
780 if (u->load_state == UNIT_LOADED) {
781
782 /* We were able to load something, then let's add in
783 * the dropin directories. */
784 r = unit_load_dropin(u);
785 if (r < 0)
786 return r;
787
788 /* This is a new unit? Then let's add in some
789 * extras */
790 r = service_add_extras(s);
791 if (r < 0)
792 return r;
793 }
794
795 return service_verify(s);
796 }
797
798 static void service_dump(Unit *u, FILE *f, const char *prefix) {
799 char buf_restart[FORMAT_TIMESPAN_MAX], buf_start[FORMAT_TIMESPAN_MAX], buf_stop[FORMAT_TIMESPAN_MAX],
800 buf_runtime[FORMAT_TIMESPAN_MAX], buf_watchdog[FORMAT_TIMESPAN_MAX], buf_abort[FORMAT_TIMESPAN_MAX];
801 ServiceExecCommand c;
802 Service *s = SERVICE(u);
803 const char *prefix2;
804
805 assert(s);
806
807 prefix = strempty(prefix);
808 prefix2 = strjoina(prefix, "\t");
809
810 fprintf(f,
811 "%sService State: %s\n"
812 "%sResult: %s\n"
813 "%sReload Result: %s\n"
814 "%sClean Result: %s\n"
815 "%sPermissionsStartOnly: %s\n"
816 "%sRootDirectoryStartOnly: %s\n"
817 "%sRemainAfterExit: %s\n"
818 "%sGuessMainPID: %s\n"
819 "%sType: %s\n"
820 "%sRestart: %s\n"
821 "%sNotifyAccess: %s\n"
822 "%sNotifyState: %s\n"
823 "%sOOMPolicy: %s\n",
824 prefix, service_state_to_string(s->state),
825 prefix, service_result_to_string(s->result),
826 prefix, service_result_to_string(s->reload_result),
827 prefix, service_result_to_string(s->clean_result),
828 prefix, yes_no(s->permissions_start_only),
829 prefix, yes_no(s->root_directory_start_only),
830 prefix, yes_no(s->remain_after_exit),
831 prefix, yes_no(s->guess_main_pid),
832 prefix, service_type_to_string(s->type),
833 prefix, service_restart_to_string(s->restart),
834 prefix, notify_access_to_string(s->notify_access),
835 prefix, notify_state_to_string(s->notify_state),
836 prefix, oom_policy_to_string(s->oom_policy));
837
838 if (s->control_pid > 0)
839 fprintf(f,
840 "%sControl PID: "PID_FMT"\n",
841 prefix, s->control_pid);
842
843 if (s->main_pid > 0)
844 fprintf(f,
845 "%sMain PID: "PID_FMT"\n"
846 "%sMain PID Known: %s\n"
847 "%sMain PID Alien: %s\n",
848 prefix, s->main_pid,
849 prefix, yes_no(s->main_pid_known),
850 prefix, yes_no(s->main_pid_alien));
851
852 if (s->pid_file)
853 fprintf(f,
854 "%sPIDFile: %s\n",
855 prefix, s->pid_file);
856
857 if (s->bus_name)
858 fprintf(f,
859 "%sBusName: %s\n"
860 "%sBus Name Good: %s\n",
861 prefix, s->bus_name,
862 prefix, yes_no(s->bus_name_good));
863
864 if (UNIT_ISSET(s->accept_socket))
865 fprintf(f,
866 "%sAccept Socket: %s\n",
867 prefix, UNIT_DEREF(s->accept_socket)->id);
868
869 fprintf(f,
870 "%sRestartSec: %s\n"
871 "%sTimeoutStartSec: %s\n"
872 "%sTimeoutStopSec: %s\n",
873 prefix, format_timespan(buf_restart, sizeof(buf_restart), s->restart_usec, USEC_PER_SEC),
874 prefix, format_timespan(buf_start, sizeof(buf_start), s->timeout_start_usec, USEC_PER_SEC),
875 prefix, format_timespan(buf_stop, sizeof(buf_stop), s->timeout_stop_usec, USEC_PER_SEC));
876
877 if (s->timeout_abort_set)
878 fprintf(f,
879 "%sTimeoutAbortSec: %s\n",
880 prefix, format_timespan(buf_abort, sizeof(buf_abort), s->timeout_abort_usec, USEC_PER_SEC));
881
882 fprintf(f,
883 "%sRuntimeMaxSec: %s\n"
884 "%sWatchdogSec: %s\n",
885 prefix, format_timespan(buf_runtime, sizeof(buf_runtime), s->runtime_max_usec, USEC_PER_SEC),
886 prefix, format_timespan(buf_watchdog, sizeof(buf_watchdog), s->watchdog_usec, USEC_PER_SEC));
887
888 kill_context_dump(&s->kill_context, f, prefix);
889 exec_context_dump(&s->exec_context, f, prefix);
890
891 for (c = 0; c < _SERVICE_EXEC_COMMAND_MAX; c++) {
892
893 if (!s->exec_command[c])
894 continue;
895
896 fprintf(f, "%s-> %s:\n",
897 prefix, service_exec_command_to_string(c));
898
899 exec_command_dump_list(s->exec_command[c], f, prefix2);
900 }
901
902 if (s->status_text)
903 fprintf(f, "%sStatus Text: %s\n",
904 prefix, s->status_text);
905
906 if (s->n_fd_store_max > 0)
907 fprintf(f,
908 "%sFile Descriptor Store Max: %u\n"
909 "%sFile Descriptor Store Current: %zu\n",
910 prefix, s->n_fd_store_max,
911 prefix, s->n_fd_store);
912
913 cgroup_context_dump(UNIT(s), f, prefix);
914 }
915
916 static int service_is_suitable_main_pid(Service *s, pid_t pid, int prio) {
917 Unit *owner;
918
919 assert(s);
920 assert(pid_is_valid(pid));
921
922 /* Checks whether the specified PID is suitable as main PID for this service. returns negative if not, 0 if the
923 * PID is questionnable but should be accepted if the source of configuration is trusted. > 0 if the PID is
924 * good */
925
926 if (pid == getpid_cached() || pid == 1) {
927 log_unit_full(UNIT(s), prio, 0, "New main PID "PID_FMT" is the manager, refusing.", pid);
928 return -EPERM;
929 }
930
931 if (pid == s->control_pid) {
932 log_unit_full(UNIT(s), prio, 0, "New main PID "PID_FMT" is the control process, refusing.", pid);
933 return -EPERM;
934 }
935
936 if (!pid_is_alive(pid)) {
937 log_unit_full(UNIT(s), prio, 0, "New main PID "PID_FMT" does not exist or is a zombie.", pid);
938 return -ESRCH;
939 }
940
941 owner = manager_get_unit_by_pid(UNIT(s)->manager, pid);
942 if (owner == UNIT(s)) {
943 log_unit_debug(UNIT(s), "New main PID "PID_FMT" belongs to service, we are happy.", pid);
944 return 1; /* Yay, it's definitely a good PID */
945 }
946
947 return 0; /* Hmm it's a suspicious PID, let's accept it if configuration source is trusted */
948 }
949
950 static int service_load_pid_file(Service *s, bool may_warn) {
951 char procfs[STRLEN("/proc/self/fd/") + DECIMAL_STR_MAX(int)];
952 bool questionable_pid_file = false;
953 _cleanup_free_ char *k = NULL;
954 _cleanup_close_ int fd = -1;
955 int r, prio;
956 pid_t pid;
957
958 assert(s);
959
960 if (!s->pid_file)
961 return -ENOENT;
962
963 prio = may_warn ? LOG_INFO : LOG_DEBUG;
964
965 fd = chase_symlinks(s->pid_file, NULL, CHASE_OPEN|CHASE_SAFE, NULL);
966 if (fd == -ENOLINK) {
967 log_unit_full(UNIT(s), LOG_DEBUG, fd, "Potentially unsafe symlink chain, will now retry with relaxed checks: %s", s->pid_file);
968
969 questionable_pid_file = true;
970
971 fd = chase_symlinks(s->pid_file, NULL, CHASE_OPEN, NULL);
972 }
973 if (fd < 0)
974 return log_unit_full(UNIT(s), prio, fd, "Can't open PID file %s (yet?) after %s: %m", s->pid_file, service_state_to_string(s->state));
975
976 /* Let's read the PID file now that we chased it down. But we need to convert the O_PATH fd chase_symlinks() returned us into a proper fd first. */
977 xsprintf(procfs, "/proc/self/fd/%i", fd);
978 r = read_one_line_file(procfs, &k);
979 if (r < 0)
980 return log_unit_error_errno(UNIT(s), r, "Can't convert PID files %s O_PATH file descriptor to proper file descriptor: %m", s->pid_file);
981
982 r = parse_pid(k, &pid);
983 if (r < 0)
984 return log_unit_full(UNIT(s), prio, r, "Failed to parse PID from file %s: %m", s->pid_file);
985
986 if (s->main_pid_known && pid == s->main_pid)
987 return 0;
988
989 r = service_is_suitable_main_pid(s, pid, prio);
990 if (r < 0)
991 return r;
992 if (r == 0) {
993 struct stat st;
994
995 if (questionable_pid_file) {
996 log_unit_error(UNIT(s), "Refusing to accept PID outside of service control group, acquired through unsafe symlink chain: %s", s->pid_file);
997 return -EPERM;
998 }
999
1000 /* Hmm, it's not clear if the new main PID is safe. Let's allow this if the PID file is owned by root */
1001
1002 if (fstat(fd, &st) < 0)
1003 return log_unit_error_errno(UNIT(s), errno, "Failed to fstat() PID file O_PATH fd: %m");
1004
1005 if (st.st_uid != 0) {
1006 log_unit_error(UNIT(s), "New main PID "PID_FMT" does not belong to service, and PID file is not owned by root. Refusing.", pid);
1007 return -EPERM;
1008 }
1009
1010 log_unit_debug(UNIT(s), "New main PID "PID_FMT" does not belong to service, but we'll accept it since PID file is owned by root.", pid);
1011 }
1012
1013 if (s->main_pid_known) {
1014 log_unit_debug(UNIT(s), "Main PID changing: "PID_FMT" -> "PID_FMT, s->main_pid, pid);
1015
1016 service_unwatch_main_pid(s);
1017 s->main_pid_known = false;
1018 } else
1019 log_unit_debug(UNIT(s), "Main PID loaded: "PID_FMT, pid);
1020
1021 r = service_set_main_pid(s, pid);
1022 if (r < 0)
1023 return r;
1024
1025 r = unit_watch_pid(UNIT(s), pid, false);
1026 if (r < 0) /* FIXME: we need to do something here */
1027 return log_unit_warning_errno(UNIT(s), r, "Failed to watch PID "PID_FMT" for service: %m", pid);
1028
1029 return 1;
1030 }
1031
1032 static void service_search_main_pid(Service *s) {
1033 pid_t pid = 0;
1034 int r;
1035
1036 assert(s);
1037
1038 /* If we know it anyway, don't ever fallback to unreliable
1039 * heuristics */
1040 if (s->main_pid_known)
1041 return;
1042
1043 if (!s->guess_main_pid)
1044 return;
1045
1046 assert(s->main_pid <= 0);
1047
1048 if (unit_search_main_pid(UNIT(s), &pid) < 0)
1049 return;
1050
1051 log_unit_debug(UNIT(s), "Main PID guessed: "PID_FMT, pid);
1052 if (service_set_main_pid(s, pid) < 0)
1053 return;
1054
1055 r = unit_watch_pid(UNIT(s), pid, false);
1056 if (r < 0)
1057 /* FIXME: we need to do something here */
1058 log_unit_warning_errno(UNIT(s), r, "Failed to watch PID "PID_FMT" from: %m", pid);
1059 }
1060
1061 static void service_set_state(Service *s, ServiceState state) {
1062 ServiceState old_state;
1063 const UnitActiveState *table;
1064
1065 assert(s);
1066
1067 if (s->state != state)
1068 bus_unit_send_pending_change_signal(UNIT(s), false);
1069
1070 table = s->type == SERVICE_IDLE ? state_translation_table_idle : state_translation_table;
1071
1072 old_state = s->state;
1073 s->state = state;
1074
1075 service_unwatch_pid_file(s);
1076
1077 if (!IN_SET(state,
1078 SERVICE_CONDITION, SERVICE_START_PRE, SERVICE_START, SERVICE_START_POST,
1079 SERVICE_RUNNING,
1080 SERVICE_RELOAD,
1081 SERVICE_STOP, SERVICE_STOP_WATCHDOG, SERVICE_STOP_SIGTERM, SERVICE_STOP_SIGKILL, SERVICE_STOP_POST,
1082 SERVICE_FINAL_SIGTERM, SERVICE_FINAL_SIGKILL,
1083 SERVICE_AUTO_RESTART,
1084 SERVICE_CLEANING))
1085 s->timer_event_source = sd_event_source_unref(s->timer_event_source);
1086
1087 if (!IN_SET(state,
1088 SERVICE_START, SERVICE_START_POST,
1089 SERVICE_RUNNING, SERVICE_RELOAD,
1090 SERVICE_STOP, SERVICE_STOP_WATCHDOG, SERVICE_STOP_SIGTERM, SERVICE_STOP_SIGKILL, SERVICE_STOP_POST,
1091 SERVICE_FINAL_SIGTERM, SERVICE_FINAL_SIGKILL)) {
1092 service_unwatch_main_pid(s);
1093 s->main_command = NULL;
1094 }
1095
1096 if (!IN_SET(state,
1097 SERVICE_CONDITION, SERVICE_START_PRE, SERVICE_START, SERVICE_START_POST,
1098 SERVICE_RELOAD,
1099 SERVICE_STOP, SERVICE_STOP_WATCHDOG, SERVICE_STOP_SIGTERM, SERVICE_STOP_SIGKILL, SERVICE_STOP_POST,
1100 SERVICE_FINAL_SIGTERM, SERVICE_FINAL_SIGKILL,
1101 SERVICE_CLEANING)) {
1102 service_unwatch_control_pid(s);
1103 s->control_command = NULL;
1104 s->control_command_id = _SERVICE_EXEC_COMMAND_INVALID;
1105 }
1106
1107 if (IN_SET(state, SERVICE_DEAD, SERVICE_FAILED, SERVICE_AUTO_RESTART)) {
1108 unit_unwatch_all_pids(UNIT(s));
1109 unit_dequeue_rewatch_pids(UNIT(s));
1110 }
1111
1112 if (!IN_SET(state,
1113 SERVICE_CONDITION, SERVICE_START_PRE, SERVICE_START, SERVICE_START_POST,
1114 SERVICE_RUNNING, SERVICE_RELOAD,
1115 SERVICE_STOP, SERVICE_STOP_WATCHDOG, SERVICE_STOP_SIGTERM, SERVICE_STOP_SIGKILL, SERVICE_STOP_POST,
1116 SERVICE_FINAL_SIGTERM, SERVICE_FINAL_SIGKILL) &&
1117 !(state == SERVICE_DEAD && UNIT(s)->job))
1118 service_close_socket_fd(s);
1119
1120 if (state != SERVICE_START)
1121 s->exec_fd_event_source = sd_event_source_unref(s->exec_fd_event_source);
1122
1123 if (!IN_SET(state, SERVICE_START_POST, SERVICE_RUNNING, SERVICE_RELOAD))
1124 service_stop_watchdog(s);
1125
1126 /* For the inactive states unit_notify() will trim the cgroup,
1127 * but for exit we have to do that ourselves... */
1128 if (state == SERVICE_EXITED && !MANAGER_IS_RELOADING(UNIT(s)->manager))
1129 unit_prune_cgroup(UNIT(s));
1130
1131 if (old_state != state)
1132 log_unit_debug(UNIT(s), "Changed %s -> %s", service_state_to_string(old_state), service_state_to_string(state));
1133
1134 unit_notify(UNIT(s), table[old_state], table[state],
1135 (s->reload_result == SERVICE_SUCCESS ? 0 : UNIT_NOTIFY_RELOAD_FAILURE) |
1136 (s->will_auto_restart ? UNIT_NOTIFY_WILL_AUTO_RESTART : 0) |
1137 (s->result == SERVICE_SKIP_CONDITION ? UNIT_NOTIFY_SKIP_CONDITION : 0));
1138 }
1139
1140 static usec_t service_coldplug_timeout(Service *s) {
1141 assert(s);
1142
1143 switch (s->deserialized_state) {
1144
1145 case SERVICE_CONDITION:
1146 case SERVICE_START_PRE:
1147 case SERVICE_START:
1148 case SERVICE_START_POST:
1149 case SERVICE_RELOAD:
1150 return usec_add(UNIT(s)->state_change_timestamp.monotonic, s->timeout_start_usec);
1151
1152 case SERVICE_RUNNING:
1153 return usec_add(UNIT(s)->active_enter_timestamp.monotonic, s->runtime_max_usec);
1154
1155 case SERVICE_STOP:
1156 case SERVICE_STOP_SIGTERM:
1157 case SERVICE_STOP_SIGKILL:
1158 case SERVICE_STOP_POST:
1159 case SERVICE_FINAL_SIGTERM:
1160 case SERVICE_FINAL_SIGKILL:
1161 return usec_add(UNIT(s)->state_change_timestamp.monotonic, s->timeout_stop_usec);
1162
1163 case SERVICE_STOP_WATCHDOG:
1164 return usec_add(UNIT(s)->state_change_timestamp.monotonic, service_timeout_abort_usec(s));
1165
1166 case SERVICE_AUTO_RESTART:
1167 return usec_add(UNIT(s)->inactive_enter_timestamp.monotonic, s->restart_usec);
1168
1169 case SERVICE_CLEANING:
1170 return usec_add(UNIT(s)->state_change_timestamp.monotonic, s->exec_context.timeout_clean_usec);
1171
1172 default:
1173 return USEC_INFINITY;
1174 }
1175 }
1176
1177 static int service_coldplug(Unit *u) {
1178 Service *s = SERVICE(u);
1179 int r;
1180
1181 assert(s);
1182 assert(s->state == SERVICE_DEAD);
1183
1184 if (s->deserialized_state == s->state)
1185 return 0;
1186
1187 r = service_arm_timer(s, service_coldplug_timeout(s));
1188 if (r < 0)
1189 return r;
1190
1191 if (s->main_pid > 0 &&
1192 pid_is_unwaited(s->main_pid) &&
1193 (IN_SET(s->deserialized_state,
1194 SERVICE_START, SERVICE_START_POST,
1195 SERVICE_RUNNING, SERVICE_RELOAD,
1196 SERVICE_STOP, SERVICE_STOP_WATCHDOG, SERVICE_STOP_SIGTERM, SERVICE_STOP_SIGKILL, SERVICE_STOP_POST,
1197 SERVICE_FINAL_SIGTERM, SERVICE_FINAL_SIGKILL))) {
1198 r = unit_watch_pid(UNIT(s), s->main_pid, false);
1199 if (r < 0)
1200 return r;
1201 }
1202
1203 if (s->control_pid > 0 &&
1204 pid_is_unwaited(s->control_pid) &&
1205 IN_SET(s->deserialized_state,
1206 SERVICE_CONDITION, SERVICE_START_PRE, SERVICE_START, SERVICE_START_POST,
1207 SERVICE_RELOAD,
1208 SERVICE_STOP, SERVICE_STOP_WATCHDOG, SERVICE_STOP_SIGTERM, SERVICE_STOP_SIGKILL, SERVICE_STOP_POST,
1209 SERVICE_FINAL_SIGTERM, SERVICE_FINAL_SIGKILL,
1210 SERVICE_CLEANING)) {
1211 r = unit_watch_pid(UNIT(s), s->control_pid, false);
1212 if (r < 0)
1213 return r;
1214 }
1215
1216 if (!IN_SET(s->deserialized_state, SERVICE_DEAD, SERVICE_FAILED, SERVICE_AUTO_RESTART, SERVICE_CLEANING)) {
1217 (void) unit_enqueue_rewatch_pids(u);
1218 (void) unit_setup_dynamic_creds(u);
1219 (void) unit_setup_exec_runtime(u);
1220 }
1221
1222 if (IN_SET(s->deserialized_state, SERVICE_START_POST, SERVICE_RUNNING, SERVICE_RELOAD))
1223 service_start_watchdog(s);
1224
1225 if (UNIT_ISSET(s->accept_socket)) {
1226 Socket* socket = SOCKET(UNIT_DEREF(s->accept_socket));
1227
1228 if (socket->max_connections_per_source > 0) {
1229 SocketPeer *peer;
1230
1231 /* Make a best-effort attempt at bumping the connection count */
1232 if (socket_acquire_peer(socket, s->socket_fd, &peer) > 0) {
1233 socket_peer_unref(s->peer);
1234 s->peer = peer;
1235 }
1236 }
1237 }
1238
1239 service_set_state(s, s->deserialized_state);
1240 return 0;
1241 }
1242
1243 static int service_collect_fds(
1244 Service *s,
1245 int **fds,
1246 char ***fd_names,
1247 size_t *n_socket_fds,
1248 size_t *n_storage_fds) {
1249
1250 _cleanup_strv_free_ char **rfd_names = NULL;
1251 _cleanup_free_ int *rfds = NULL;
1252 size_t rn_socket_fds = 0, rn_storage_fds = 0;
1253 int r;
1254
1255 assert(s);
1256 assert(fds);
1257 assert(fd_names);
1258 assert(n_socket_fds);
1259 assert(n_storage_fds);
1260
1261 if (s->socket_fd >= 0) {
1262
1263 /* Pass the per-connection socket */
1264
1265 rfds = new(int, 1);
1266 if (!rfds)
1267 return -ENOMEM;
1268 rfds[0] = s->socket_fd;
1269
1270 rfd_names = strv_new("connection");
1271 if (!rfd_names)
1272 return -ENOMEM;
1273
1274 rn_socket_fds = 1;
1275 } else {
1276 Iterator i;
1277 void *v;
1278 Unit *u;
1279
1280 /* Pass all our configured sockets for singleton services */
1281
1282 HASHMAP_FOREACH_KEY(v, u, UNIT(s)->dependencies[UNIT_TRIGGERED_BY], i) {
1283 _cleanup_free_ int *cfds = NULL;
1284 Socket *sock;
1285 int cn_fds;
1286
1287 if (u->type != UNIT_SOCKET)
1288 continue;
1289
1290 sock = SOCKET(u);
1291
1292 cn_fds = socket_collect_fds(sock, &cfds);
1293 if (cn_fds < 0)
1294 return cn_fds;
1295
1296 if (cn_fds <= 0)
1297 continue;
1298
1299 if (!rfds) {
1300 rfds = TAKE_PTR(cfds);
1301 rn_socket_fds = cn_fds;
1302 } else {
1303 int *t;
1304
1305 t = reallocarray(rfds, rn_socket_fds + cn_fds, sizeof(int));
1306 if (!t)
1307 return -ENOMEM;
1308
1309 memcpy(t + rn_socket_fds, cfds, cn_fds * sizeof(int));
1310
1311 rfds = t;
1312 rn_socket_fds += cn_fds;
1313 }
1314
1315 r = strv_extend_n(&rfd_names, socket_fdname(sock), cn_fds);
1316 if (r < 0)
1317 return r;
1318 }
1319 }
1320
1321 if (s->n_fd_store > 0) {
1322 ServiceFDStore *fs;
1323 size_t n_fds;
1324 char **nl;
1325 int *t;
1326
1327 t = reallocarray(rfds, rn_socket_fds + s->n_fd_store, sizeof(int));
1328 if (!t)
1329 return -ENOMEM;
1330
1331 rfds = t;
1332
1333 nl = reallocarray(rfd_names, rn_socket_fds + s->n_fd_store + 1, sizeof(char *));
1334 if (!nl)
1335 return -ENOMEM;
1336
1337 rfd_names = nl;
1338 n_fds = rn_socket_fds;
1339
1340 LIST_FOREACH(fd_store, fs, s->fd_store) {
1341 rfds[n_fds] = fs->fd;
1342 rfd_names[n_fds] = strdup(strempty(fs->fdname));
1343 if (!rfd_names[n_fds])
1344 return -ENOMEM;
1345
1346 rn_storage_fds++;
1347 n_fds++;
1348 }
1349
1350 rfd_names[n_fds] = NULL;
1351 }
1352
1353 *fds = TAKE_PTR(rfds);
1354 *fd_names = TAKE_PTR(rfd_names);
1355 *n_socket_fds = rn_socket_fds;
1356 *n_storage_fds = rn_storage_fds;
1357
1358 return 0;
1359 }
1360
1361 static int service_allocate_exec_fd_event_source(
1362 Service *s,
1363 int fd,
1364 sd_event_source **ret_event_source) {
1365
1366 _cleanup_(sd_event_source_unrefp) sd_event_source *source = NULL;
1367 int r;
1368
1369 assert(s);
1370 assert(fd >= 0);
1371 assert(ret_event_source);
1372
1373 r = sd_event_add_io(UNIT(s)->manager->event, &source, fd, 0, service_dispatch_exec_io, s);
1374 if (r < 0)
1375 return log_unit_error_errno(UNIT(s), r, "Failed to allocate exec_fd event source: %m");
1376
1377 /* This is a bit lower priority than SIGCHLD, as that carries a lot more interesting failure information */
1378
1379 r = sd_event_source_set_priority(source, SD_EVENT_PRIORITY_NORMAL-3);
1380 if (r < 0)
1381 return log_unit_error_errno(UNIT(s), r, "Failed to adjust priority of exec_fd event source: %m");
1382
1383 (void) sd_event_source_set_description(source, "service event_fd");
1384
1385 r = sd_event_source_set_io_fd_own(source, true);
1386 if (r < 0)
1387 return log_unit_error_errno(UNIT(s), r, "Failed to pass ownership of fd to event source: %m");
1388
1389 *ret_event_source = TAKE_PTR(source);
1390 return 0;
1391 }
1392
1393 static int service_allocate_exec_fd(
1394 Service *s,
1395 sd_event_source **ret_event_source,
1396 int* ret_exec_fd) {
1397
1398 _cleanup_close_pair_ int p[2] = { -1, -1 };
1399 int r;
1400
1401 assert(s);
1402 assert(ret_event_source);
1403 assert(ret_exec_fd);
1404
1405 if (pipe2(p, O_CLOEXEC|O_NONBLOCK) < 0)
1406 return log_unit_error_errno(UNIT(s), errno, "Failed to allocate exec_fd pipe: %m");
1407
1408 r = service_allocate_exec_fd_event_source(s, p[0], ret_event_source);
1409 if (r < 0)
1410 return r;
1411
1412 p[0] = -1;
1413 *ret_exec_fd = TAKE_FD(p[1]);
1414
1415 return 0;
1416 }
1417
1418 static bool service_exec_needs_notify_socket(Service *s, ExecFlags flags) {
1419 assert(s);
1420
1421 /* Notifications are accepted depending on the process and
1422 * the access setting of the service:
1423 * process: \ access: NONE MAIN EXEC ALL
1424 * main no yes yes yes
1425 * control no no yes yes
1426 * other (forked) no no no yes */
1427
1428 if (flags & EXEC_IS_CONTROL)
1429 /* A control process */
1430 return IN_SET(s->notify_access, NOTIFY_EXEC, NOTIFY_ALL);
1431
1432 /* We only spawn main processes and control processes, so any
1433 * process that is not a control process is a main process */
1434 return s->notify_access != NOTIFY_NONE;
1435 }
1436
1437 static int service_spawn(
1438 Service *s,
1439 ExecCommand *c,
1440 usec_t timeout,
1441 ExecFlags flags,
1442 pid_t *_pid) {
1443
1444 _cleanup_(exec_params_clear) ExecParameters exec_params = {
1445 .flags = flags,
1446 .stdin_fd = -1,
1447 .stdout_fd = -1,
1448 .stderr_fd = -1,
1449 .exec_fd = -1,
1450 };
1451 _cleanup_strv_free_ char **final_env = NULL, **our_env = NULL, **fd_names = NULL;
1452 _cleanup_(sd_event_source_unrefp) sd_event_source *exec_fd_source = NULL;
1453 size_t n_socket_fds = 0, n_storage_fds = 0, n_env = 0;
1454 _cleanup_close_ int exec_fd = -1;
1455 _cleanup_free_ int *fds = NULL;
1456 pid_t pid;
1457 int r;
1458
1459 assert(s);
1460 assert(c);
1461 assert(_pid);
1462
1463 r = unit_prepare_exec(UNIT(s)); /* This realizes the cgroup, among other things */
1464 if (r < 0)
1465 return r;
1466
1467 if (flags & EXEC_IS_CONTROL) {
1468 /* If this is a control process, mask the permissions/chroot application if this is requested. */
1469 if (s->permissions_start_only)
1470 exec_params.flags &= ~EXEC_APPLY_SANDBOXING;
1471 if (s->root_directory_start_only)
1472 exec_params.flags &= ~EXEC_APPLY_CHROOT;
1473 }
1474
1475 if ((flags & EXEC_PASS_FDS) ||
1476 s->exec_context.std_input == EXEC_INPUT_SOCKET ||
1477 s->exec_context.std_output == EXEC_OUTPUT_SOCKET ||
1478 s->exec_context.std_error == EXEC_OUTPUT_SOCKET) {
1479
1480 r = service_collect_fds(s, &fds, &fd_names, &n_socket_fds, &n_storage_fds);
1481 if (r < 0)
1482 return r;
1483
1484 log_unit_debug(UNIT(s), "Passing %zu fds to service", n_socket_fds + n_storage_fds);
1485 }
1486
1487 if (!FLAGS_SET(flags, EXEC_IS_CONTROL) && s->type == SERVICE_EXEC) {
1488 assert(!s->exec_fd_event_source);
1489
1490 r = service_allocate_exec_fd(s, &exec_fd_source, &exec_fd);
1491 if (r < 0)
1492 return r;
1493 }
1494
1495 r = service_arm_timer(s, usec_add(now(CLOCK_MONOTONIC), timeout));
1496 if (r < 0)
1497 return r;
1498
1499 our_env = new0(char*, 10);
1500 if (!our_env)
1501 return -ENOMEM;
1502
1503 if (service_exec_needs_notify_socket(s, flags))
1504 if (asprintf(our_env + n_env++, "NOTIFY_SOCKET=%s", UNIT(s)->manager->notify_socket) < 0)
1505 return -ENOMEM;
1506
1507 if (s->main_pid > 0)
1508 if (asprintf(our_env + n_env++, "MAINPID="PID_FMT, s->main_pid) < 0)
1509 return -ENOMEM;
1510
1511 if (MANAGER_IS_USER(UNIT(s)->manager))
1512 if (asprintf(our_env + n_env++, "MANAGERPID="PID_FMT, getpid_cached()) < 0)
1513 return -ENOMEM;
1514
1515 if (s->pid_file)
1516 if (asprintf(our_env + n_env++, "PIDFILE=%s", s->pid_file) < 0)
1517 return -ENOMEM;
1518
1519 if (s->socket_fd >= 0) {
1520 union sockaddr_union sa;
1521 socklen_t salen = sizeof(sa);
1522
1523 /* If this is a per-connection service instance, let's set $REMOTE_ADDR and $REMOTE_PORT to something
1524 * useful. Note that we do this only when we are still connected at this point in time, which we might
1525 * very well not be. Hence we ignore all errors when retrieving peer information (as that might result
1526 * in ENOTCONN), and just use whate we can use. */
1527
1528 if (getpeername(s->socket_fd, &sa.sa, &salen) >= 0 &&
1529 IN_SET(sa.sa.sa_family, AF_INET, AF_INET6, AF_VSOCK)) {
1530
1531 _cleanup_free_ char *addr = NULL;
1532 char *t;
1533 unsigned port;
1534
1535 r = sockaddr_pretty(&sa.sa, salen, true, false, &addr);
1536 if (r < 0)
1537 return r;
1538
1539 t = strjoin("REMOTE_ADDR=", addr);
1540 if (!t)
1541 return -ENOMEM;
1542 our_env[n_env++] = t;
1543
1544 r = sockaddr_port(&sa.sa, &port);
1545 if (r < 0)
1546 return r;
1547
1548 if (asprintf(&t, "REMOTE_PORT=%u", port) < 0)
1549 return -ENOMEM;
1550 our_env[n_env++] = t;
1551 }
1552 }
1553
1554 if (flags & EXEC_SETENV_RESULT) {
1555 if (asprintf(our_env + n_env++, "SERVICE_RESULT=%s", service_result_to_string(s->result)) < 0)
1556 return -ENOMEM;
1557
1558 if (s->main_exec_status.pid > 0 &&
1559 dual_timestamp_is_set(&s->main_exec_status.exit_timestamp)) {
1560 if (asprintf(our_env + n_env++, "EXIT_CODE=%s", sigchld_code_to_string(s->main_exec_status.code)) < 0)
1561 return -ENOMEM;
1562
1563 if (s->main_exec_status.code == CLD_EXITED)
1564 r = asprintf(our_env + n_env++, "EXIT_STATUS=%i", s->main_exec_status.status);
1565 else
1566 r = asprintf(our_env + n_env++, "EXIT_STATUS=%s", signal_to_string(s->main_exec_status.status));
1567 if (r < 0)
1568 return -ENOMEM;
1569 }
1570 }
1571
1572 r = unit_set_exec_params(UNIT(s), &exec_params);
1573 if (r < 0)
1574 return r;
1575
1576 final_env = strv_env_merge(2, exec_params.environment, our_env, NULL);
1577 if (!final_env)
1578 return -ENOMEM;
1579
1580 /* System D-Bus needs nss-systemd disabled, so that we don't deadlock */
1581 SET_FLAG(exec_params.flags, EXEC_NSS_BYPASS_BUS,
1582 MANAGER_IS_SYSTEM(UNIT(s)->manager) && unit_has_name(UNIT(s), SPECIAL_DBUS_SERVICE));
1583
1584 strv_free_and_replace(exec_params.environment, final_env);
1585 exec_params.fds = fds;
1586 exec_params.fd_names = fd_names;
1587 exec_params.n_socket_fds = n_socket_fds;
1588 exec_params.n_storage_fds = n_storage_fds;
1589 exec_params.watchdog_usec = service_get_watchdog_usec(s);
1590 exec_params.selinux_context_net = s->socket_fd_selinux_context_net;
1591 if (s->type == SERVICE_IDLE)
1592 exec_params.idle_pipe = UNIT(s)->manager->idle_pipe;
1593 exec_params.stdin_fd = s->stdin_fd;
1594 exec_params.stdout_fd = s->stdout_fd;
1595 exec_params.stderr_fd = s->stderr_fd;
1596 exec_params.exec_fd = exec_fd;
1597
1598 r = exec_spawn(UNIT(s),
1599 c,
1600 &s->exec_context,
1601 &exec_params,
1602 s->exec_runtime,
1603 &s->dynamic_creds,
1604 &pid);
1605 if (r < 0)
1606 return r;
1607
1608 s->exec_fd_event_source = TAKE_PTR(exec_fd_source);
1609 s->exec_fd_hot = false;
1610
1611 r = unit_watch_pid(UNIT(s), pid, true);
1612 if (r < 0)
1613 return r;
1614
1615 *_pid = pid;
1616
1617 return 0;
1618 }
1619
1620 static int main_pid_good(Service *s) {
1621 assert(s);
1622
1623 /* Returns 0 if the pid is dead, > 0 if it is good, < 0 if we don't know */
1624
1625 /* If we know the pid file, then let's just check if it is
1626 * still valid */
1627 if (s->main_pid_known) {
1628
1629 /* If it's an alien child let's check if it is still
1630 * alive ... */
1631 if (s->main_pid_alien && s->main_pid > 0)
1632 return pid_is_alive(s->main_pid);
1633
1634 /* .. otherwise assume we'll get a SIGCHLD for it,
1635 * which we really should wait for to collect exit
1636 * status and code */
1637 return s->main_pid > 0;
1638 }
1639
1640 /* We don't know the pid */
1641 return -EAGAIN;
1642 }
1643
1644 static int control_pid_good(Service *s) {
1645 assert(s);
1646
1647 /* Returns 0 if the control PID is dead, > 0 if it is good. We never actually return < 0 here, but in order to
1648 * make this function as similar as possible to main_pid_good() and cgroup_good(), we pretend that < 0 also
1649 * means: we can't figure it out. */
1650
1651 return s->control_pid > 0;
1652 }
1653
1654 static int cgroup_good(Service *s) {
1655 int r;
1656
1657 assert(s);
1658
1659 /* Returns 0 if the cgroup is empty or doesn't exist, > 0 if it is exists and is populated, < 0 if we can't
1660 * figure it out */
1661
1662 if (!UNIT(s)->cgroup_path)
1663 return 0;
1664
1665 r = cg_is_empty_recursive(SYSTEMD_CGROUP_CONTROLLER, UNIT(s)->cgroup_path);
1666 if (r < 0)
1667 return r;
1668
1669 return r == 0;
1670 }
1671
1672 static bool service_shall_restart(Service *s) {
1673 assert(s);
1674
1675 /* Don't restart after manual stops */
1676 if (s->forbid_restart)
1677 return false;
1678
1679 /* Never restart if this is configured as special exception */
1680 if (exit_status_set_test(&s->restart_prevent_status, s->main_exec_status.code, s->main_exec_status.status))
1681 return false;
1682
1683 /* Restart if the exit code/status are configured as restart triggers */
1684 if (exit_status_set_test(&s->restart_force_status, s->main_exec_status.code, s->main_exec_status.status))
1685 return true;
1686
1687 switch (s->restart) {
1688
1689 case SERVICE_RESTART_NO:
1690 return false;
1691
1692 case SERVICE_RESTART_ALWAYS:
1693 return true;
1694
1695 case SERVICE_RESTART_ON_SUCCESS:
1696 return s->result == SERVICE_SUCCESS;
1697
1698 case SERVICE_RESTART_ON_FAILURE:
1699 return s->result != SERVICE_SUCCESS;
1700
1701 case SERVICE_RESTART_ON_ABNORMAL:
1702 return !IN_SET(s->result, SERVICE_SUCCESS, SERVICE_FAILURE_EXIT_CODE);
1703
1704 case SERVICE_RESTART_ON_WATCHDOG:
1705 return s->result == SERVICE_FAILURE_WATCHDOG;
1706
1707 case SERVICE_RESTART_ON_ABORT:
1708 return IN_SET(s->result, SERVICE_FAILURE_SIGNAL, SERVICE_FAILURE_CORE_DUMP);
1709
1710 default:
1711 assert_not_reached("unknown restart setting");
1712 }
1713 }
1714
1715 static bool service_will_restart(Unit *u) {
1716 Service *s = SERVICE(u);
1717
1718 assert(s);
1719
1720 if (s->will_auto_restart)
1721 return true;
1722 if (s->state == SERVICE_AUTO_RESTART)
1723 return true;
1724
1725 return unit_will_restart_default(u);
1726 }
1727
1728 static void service_enter_dead(Service *s, ServiceResult f, bool allow_restart) {
1729 ServiceState end_state;
1730 int r;
1731
1732 assert(s);
1733
1734 /* If there's a stop job queued before we enter the DEAD state, we shouldn't act on Restart=, in order to not
1735 * undo what has already been enqueued. */
1736 if (unit_stop_pending(UNIT(s)))
1737 allow_restart = false;
1738
1739 if (s->result == SERVICE_SUCCESS)
1740 s->result = f;
1741
1742 if (s->result == SERVICE_SUCCESS) {
1743 unit_log_success(UNIT(s));
1744 end_state = SERVICE_DEAD;
1745 } else if (s->result == SERVICE_SKIP_CONDITION) {
1746 unit_log_skip(UNIT(s), service_result_to_string(s->result));
1747 end_state = SERVICE_DEAD;
1748 } else {
1749 unit_log_failure(UNIT(s), service_result_to_string(s->result));
1750 end_state = SERVICE_FAILED;
1751 }
1752
1753 if (allow_restart && service_shall_restart(s))
1754 s->will_auto_restart = true;
1755
1756 /* Make sure service_release_resources() doesn't destroy our FD store, while we are changing through
1757 * SERVICE_FAILED/SERVICE_DEAD before entering into SERVICE_AUTO_RESTART. */
1758 s->n_keep_fd_store ++;
1759
1760 service_set_state(s, end_state);
1761
1762 if (s->will_auto_restart) {
1763 s->will_auto_restart = false;
1764
1765 r = service_arm_timer(s, usec_add(now(CLOCK_MONOTONIC), s->restart_usec));
1766 if (r < 0) {
1767 s->n_keep_fd_store--;
1768 goto fail;
1769 }
1770
1771 service_set_state(s, SERVICE_AUTO_RESTART);
1772 } else
1773 /* If we shan't restart, then flush out the restart counter. But don't do that immediately, so that the
1774 * user can still introspect the counter. Do so on the next start. */
1775 s->flush_n_restarts = true;
1776
1777 /* The new state is in effect, let's decrease the fd store ref counter again. Let's also re-add us to the GC
1778 * queue, so that the fd store is possibly gc'ed again */
1779 s->n_keep_fd_store--;
1780 unit_add_to_gc_queue(UNIT(s));
1781
1782 /* The next restart might not be a manual stop, hence reset the flag indicating manual stops */
1783 s->forbid_restart = false;
1784
1785 /* We want fresh tmpdirs in case service is started again immediately */
1786 s->exec_runtime = exec_runtime_unref(s->exec_runtime, true);
1787
1788 /* Also, remove the runtime directory */
1789 unit_destroy_runtime_directory(UNIT(s), &s->exec_context);
1790
1791 /* Get rid of the IPC bits of the user */
1792 unit_unref_uid_gid(UNIT(s), true);
1793
1794 /* Release the user, and destroy it if we are the only remaining owner */
1795 dynamic_creds_destroy(&s->dynamic_creds);
1796
1797 /* Try to delete the pid file. At this point it will be
1798 * out-of-date, and some software might be confused by it, so
1799 * let's remove it. */
1800 if (s->pid_file)
1801 (void) unlink(s->pid_file);
1802
1803 /* Reset TTY ownership if necessary */
1804 exec_context_revert_tty(&s->exec_context);
1805
1806 return;
1807
1808 fail:
1809 log_unit_warning_errno(UNIT(s), r, "Failed to run install restart timer: %m");
1810 service_enter_dead(s, SERVICE_FAILURE_RESOURCES, false);
1811 }
1812
1813 static void service_enter_stop_post(Service *s, ServiceResult f) {
1814 int r;
1815 assert(s);
1816
1817 if (s->result == SERVICE_SUCCESS)
1818 s->result = f;
1819
1820 service_unwatch_control_pid(s);
1821 (void) unit_enqueue_rewatch_pids(UNIT(s));
1822
1823 s->control_command = s->exec_command[SERVICE_EXEC_STOP_POST];
1824 if (s->control_command) {
1825 s->control_command_id = SERVICE_EXEC_STOP_POST;
1826
1827 r = service_spawn(s,
1828 s->control_command,
1829 s->timeout_stop_usec,
1830 EXEC_APPLY_SANDBOXING|EXEC_APPLY_CHROOT|EXEC_APPLY_TTY_STDIN|EXEC_IS_CONTROL|EXEC_SETENV_RESULT|EXEC_CONTROL_CGROUP,
1831 &s->control_pid);
1832 if (r < 0)
1833 goto fail;
1834
1835 service_set_state(s, SERVICE_STOP_POST);
1836 } else
1837 service_enter_signal(s, SERVICE_FINAL_SIGTERM, SERVICE_SUCCESS);
1838
1839 return;
1840
1841 fail:
1842 log_unit_warning_errno(UNIT(s), r, "Failed to run 'stop-post' task: %m");
1843 service_enter_signal(s, SERVICE_FINAL_SIGTERM, SERVICE_FAILURE_RESOURCES);
1844 }
1845
1846 static int state_to_kill_operation(Service *s, ServiceState state) {
1847 switch (state) {
1848
1849 case SERVICE_STOP_WATCHDOG:
1850 return KILL_WATCHDOG;
1851
1852 case SERVICE_STOP_SIGTERM:
1853 if (unit_has_job_type(UNIT(s), JOB_RESTART))
1854 return KILL_RESTART;
1855 _fallthrough_;
1856
1857 case SERVICE_FINAL_SIGTERM:
1858 return KILL_TERMINATE;
1859
1860 case SERVICE_STOP_SIGKILL:
1861 case SERVICE_FINAL_SIGKILL:
1862 return KILL_KILL;
1863
1864 default:
1865 return _KILL_OPERATION_INVALID;
1866 }
1867 }
1868
1869 static void service_enter_signal(Service *s, ServiceState state, ServiceResult f) {
1870 int r;
1871
1872 assert(s);
1873
1874 if (s->result == SERVICE_SUCCESS)
1875 s->result = f;
1876
1877 /* Before sending any signal, make sure we track all members of this cgroup */
1878 (void) unit_watch_all_pids(UNIT(s));
1879
1880 /* Also, enqueue a job that we recheck all our PIDs a bit later, given that it's likely some processes have
1881 * died now */
1882 (void) unit_enqueue_rewatch_pids(UNIT(s));
1883
1884 r = unit_kill_context(
1885 UNIT(s),
1886 &s->kill_context,
1887 state_to_kill_operation(s, state),
1888 s->main_pid,
1889 s->control_pid,
1890 s->main_pid_alien);
1891 if (r < 0)
1892 goto fail;
1893
1894 if (r > 0) {
1895 r = service_arm_timer(s, usec_add(now(CLOCK_MONOTONIC),
1896 state == SERVICE_STOP_WATCHDOG ? service_timeout_abort_usec(s) : s->timeout_stop_usec));
1897 if (r < 0)
1898 goto fail;
1899
1900 service_set_state(s, state);
1901 } else if (IN_SET(state, SERVICE_STOP_WATCHDOG, SERVICE_STOP_SIGTERM) && s->kill_context.send_sigkill)
1902 service_enter_signal(s, SERVICE_STOP_SIGKILL, SERVICE_SUCCESS);
1903 else if (IN_SET(state, SERVICE_STOP_WATCHDOG, SERVICE_STOP_SIGTERM, SERVICE_STOP_SIGKILL))
1904 service_enter_stop_post(s, SERVICE_SUCCESS);
1905 else if (state == SERVICE_FINAL_SIGTERM && s->kill_context.send_sigkill)
1906 service_enter_signal(s, SERVICE_FINAL_SIGKILL, SERVICE_SUCCESS);
1907 else
1908 service_enter_dead(s, SERVICE_SUCCESS, true);
1909
1910 return;
1911
1912 fail:
1913 log_unit_warning_errno(UNIT(s), r, "Failed to kill processes: %m");
1914
1915 if (IN_SET(state, SERVICE_STOP_WATCHDOG, SERVICE_STOP_SIGTERM, SERVICE_STOP_SIGKILL))
1916 service_enter_stop_post(s, SERVICE_FAILURE_RESOURCES);
1917 else
1918 service_enter_dead(s, SERVICE_FAILURE_RESOURCES, true);
1919 }
1920
1921 static void service_enter_stop_by_notify(Service *s) {
1922 assert(s);
1923
1924 (void) unit_enqueue_rewatch_pids(UNIT(s));
1925
1926 service_arm_timer(s, usec_add(now(CLOCK_MONOTONIC), s->timeout_stop_usec));
1927
1928 /* The service told us it's stopping, so it's as if we SIGTERM'd it. */
1929 service_set_state(s, SERVICE_STOP_SIGTERM);
1930 }
1931
1932 static void service_enter_stop(Service *s, ServiceResult f) {
1933 int r;
1934
1935 assert(s);
1936
1937 if (s->result == SERVICE_SUCCESS)
1938 s->result = f;
1939
1940 service_unwatch_control_pid(s);
1941 (void) unit_enqueue_rewatch_pids(UNIT(s));
1942
1943 s->control_command = s->exec_command[SERVICE_EXEC_STOP];
1944 if (s->control_command) {
1945 s->control_command_id = SERVICE_EXEC_STOP;
1946
1947 r = service_spawn(s,
1948 s->control_command,
1949 s->timeout_stop_usec,
1950 EXEC_APPLY_SANDBOXING|EXEC_APPLY_CHROOT|EXEC_IS_CONTROL|EXEC_SETENV_RESULT|EXEC_CONTROL_CGROUP,
1951 &s->control_pid);
1952 if (r < 0)
1953 goto fail;
1954
1955 service_set_state(s, SERVICE_STOP);
1956 } else
1957 service_enter_signal(s, SERVICE_STOP_SIGTERM, SERVICE_SUCCESS);
1958
1959 return;
1960
1961 fail:
1962 log_unit_warning_errno(UNIT(s), r, "Failed to run 'stop' task: %m");
1963 service_enter_signal(s, SERVICE_STOP_SIGTERM, SERVICE_FAILURE_RESOURCES);
1964 }
1965
1966 static bool service_good(Service *s) {
1967 int main_pid_ok;
1968 assert(s);
1969
1970 if (s->type == SERVICE_DBUS && !s->bus_name_good)
1971 return false;
1972
1973 main_pid_ok = main_pid_good(s);
1974 if (main_pid_ok > 0) /* It's alive */
1975 return true;
1976 if (main_pid_ok == 0) /* It's dead */
1977 return false;
1978
1979 /* OK, we don't know anything about the main PID, maybe
1980 * because there is none. Let's check the control group
1981 * instead. */
1982
1983 return cgroup_good(s) != 0;
1984 }
1985
1986 static void service_enter_running(Service *s, ServiceResult f) {
1987 assert(s);
1988
1989 if (s->result == SERVICE_SUCCESS)
1990 s->result = f;
1991
1992 service_unwatch_control_pid(s);
1993
1994 if (s->result != SERVICE_SUCCESS)
1995 service_enter_signal(s, SERVICE_STOP_SIGTERM, f);
1996 else if (service_good(s)) {
1997
1998 /* If there are any queued up sd_notify() notifications, process them now */
1999 if (s->notify_state == NOTIFY_RELOADING)
2000 service_enter_reload_by_notify(s);
2001 else if (s->notify_state == NOTIFY_STOPPING)
2002 service_enter_stop_by_notify(s);
2003 else {
2004 service_set_state(s, SERVICE_RUNNING);
2005 service_arm_timer(s, usec_add(UNIT(s)->active_enter_timestamp.monotonic, s->runtime_max_usec));
2006 }
2007
2008 } else if (s->remain_after_exit)
2009 service_set_state(s, SERVICE_EXITED);
2010 else
2011 service_enter_stop(s, SERVICE_SUCCESS);
2012 }
2013
2014 static void service_enter_start_post(Service *s) {
2015 int r;
2016 assert(s);
2017
2018 service_unwatch_control_pid(s);
2019 service_reset_watchdog(s);
2020
2021 s->control_command = s->exec_command[SERVICE_EXEC_START_POST];
2022 if (s->control_command) {
2023 s->control_command_id = SERVICE_EXEC_START_POST;
2024
2025 r = service_spawn(s,
2026 s->control_command,
2027 s->timeout_start_usec,
2028 EXEC_APPLY_SANDBOXING|EXEC_APPLY_CHROOT|EXEC_IS_CONTROL|EXEC_CONTROL_CGROUP,
2029 &s->control_pid);
2030 if (r < 0)
2031 goto fail;
2032
2033 service_set_state(s, SERVICE_START_POST);
2034 } else
2035 service_enter_running(s, SERVICE_SUCCESS);
2036
2037 return;
2038
2039 fail:
2040 log_unit_warning_errno(UNIT(s), r, "Failed to run 'start-post' task: %m");
2041 service_enter_stop(s, SERVICE_FAILURE_RESOURCES);
2042 }
2043
2044 static void service_kill_control_process(Service *s) {
2045 int r;
2046
2047 assert(s);
2048
2049 if (s->control_pid <= 0)
2050 return;
2051
2052 r = kill_and_sigcont(s->control_pid, SIGKILL);
2053 if (r < 0) {
2054 _cleanup_free_ char *comm = NULL;
2055
2056 (void) get_process_comm(s->control_pid, &comm);
2057
2058 log_unit_debug_errno(UNIT(s), r, "Failed to kill control process " PID_FMT " (%s), ignoring: %m",
2059 s->control_pid, strna(comm));
2060 }
2061 }
2062
2063 static int service_adverse_to_leftover_processes(Service *s) {
2064 assert(s);
2065
2066 /* KillMode=mixed and control group are used to indicate that all process should be killed off.
2067 * SendSIGKILL is used for services that require a clean shutdown. These are typically database
2068 * service where a SigKilled process would result in a lengthy recovery and who's shutdown or
2069 * startup time is quite variable (so Timeout settings aren't of use).
2070 *
2071 * Here we take these two factors and refuse to start a service if there are existing processes
2072 * within a control group. Databases, while generally having some protection against multiple
2073 * instances running, lets not stress the rigor of these. Also ExecStartPre parts of the service
2074 * aren't as rigoriously written to protect aganst against multiple use. */
2075 if (unit_warn_leftover_processes(UNIT(s)) &&
2076 IN_SET(s->kill_context.kill_mode, KILL_MIXED, KILL_CONTROL_GROUP) &&
2077 !s->kill_context.send_sigkill)
2078 return log_unit_error_errno(UNIT(s), SYNTHETIC_ERRNO(EBUSY),
2079 "Will not start SendSIGKILL=no service of type KillMode=control-group or mixed while processes exist");
2080
2081 return 0;
2082 }
2083
2084 static void service_enter_start(Service *s) {
2085 ExecCommand *c;
2086 usec_t timeout;
2087 pid_t pid;
2088 int r;
2089
2090 assert(s);
2091
2092 service_unwatch_control_pid(s);
2093 service_unwatch_main_pid(s);
2094
2095 r = service_adverse_to_leftover_processes(s);
2096 if (r < 0)
2097 goto fail;
2098
2099 if (s->type == SERVICE_FORKING) {
2100 s->control_command_id = SERVICE_EXEC_START;
2101 c = s->control_command = s->exec_command[SERVICE_EXEC_START];
2102
2103 s->main_command = NULL;
2104 } else {
2105 s->control_command_id = _SERVICE_EXEC_COMMAND_INVALID;
2106 s->control_command = NULL;
2107
2108 c = s->main_command = s->exec_command[SERVICE_EXEC_START];
2109 }
2110
2111 if (!c) {
2112 if (s->type != SERVICE_ONESHOT) {
2113 /* There's no command line configured for the main command? Hmm, that is strange. This can only
2114 * happen if the configuration changes at runtime. In this case, let's enter a failure
2115 * state. */
2116 log_unit_error(UNIT(s), "There's no 'start' task anymore we could start.");
2117 r = -ENXIO;
2118 goto fail;
2119 }
2120
2121 /* We force a fake state transition here. Otherwise, the unit would go directly from
2122 * SERVICE_DEAD to SERVICE_DEAD without SERVICE_ACTIVATING or SERVICE_ACTIVE
2123 * in between. This way we can later trigger actions that depend on the state
2124 * transition, including SuccessAction=. */
2125 service_set_state(s, SERVICE_START);
2126
2127 service_enter_start_post(s);
2128 return;
2129 }
2130
2131 if (IN_SET(s->type, SERVICE_SIMPLE, SERVICE_IDLE))
2132 /* For simple + idle this is the main process. We don't apply any timeout here, but
2133 * service_enter_running() will later apply the .runtime_max_usec timeout. */
2134 timeout = USEC_INFINITY;
2135 else
2136 timeout = s->timeout_start_usec;
2137
2138 r = service_spawn(s,
2139 c,
2140 timeout,
2141 EXEC_PASS_FDS|EXEC_APPLY_SANDBOXING|EXEC_APPLY_CHROOT|EXEC_APPLY_TTY_STDIN|EXEC_SET_WATCHDOG,
2142 &pid);
2143 if (r < 0)
2144 goto fail;
2145
2146 if (IN_SET(s->type, SERVICE_SIMPLE, SERVICE_IDLE)) {
2147 /* For simple services we immediately start
2148 * the START_POST binaries. */
2149
2150 service_set_main_pid(s, pid);
2151 service_enter_start_post(s);
2152
2153 } else if (s->type == SERVICE_FORKING) {
2154
2155 /* For forking services we wait until the start
2156 * process exited. */
2157
2158 s->control_pid = pid;
2159 service_set_state(s, SERVICE_START);
2160
2161 } else if (IN_SET(s->type, SERVICE_ONESHOT, SERVICE_DBUS, SERVICE_NOTIFY, SERVICE_EXEC)) {
2162
2163 /* For oneshot services we wait until the start process exited, too, but it is our main process. */
2164
2165 /* For D-Bus services we know the main pid right away, but wait for the bus name to appear on the
2166 * bus. 'notify' and 'exec' services are similar. */
2167
2168 service_set_main_pid(s, pid);
2169 service_set_state(s, SERVICE_START);
2170 } else
2171 assert_not_reached("Unknown service type");
2172
2173 return;
2174
2175 fail:
2176 log_unit_warning_errno(UNIT(s), r, "Failed to run 'start' task: %m");
2177 service_enter_signal(s, SERVICE_STOP_SIGTERM, SERVICE_FAILURE_RESOURCES);
2178 }
2179
2180 static void service_enter_start_pre(Service *s) {
2181 int r;
2182
2183 assert(s);
2184
2185 service_unwatch_control_pid(s);
2186
2187 s->control_command = s->exec_command[SERVICE_EXEC_START_PRE];
2188 if (s->control_command) {
2189
2190 r = service_adverse_to_leftover_processes(s);
2191 if (r < 0)
2192 goto fail;
2193
2194 s->control_command_id = SERVICE_EXEC_START_PRE;
2195
2196 r = service_spawn(s,
2197 s->control_command,
2198 s->timeout_start_usec,
2199 EXEC_APPLY_SANDBOXING|EXEC_APPLY_CHROOT|EXEC_IS_CONTROL|EXEC_APPLY_TTY_STDIN,
2200 &s->control_pid);
2201 if (r < 0)
2202 goto fail;
2203
2204 service_set_state(s, SERVICE_START_PRE);
2205 } else
2206 service_enter_start(s);
2207
2208 return;
2209
2210 fail:
2211 log_unit_warning_errno(UNIT(s), r, "Failed to run 'start-pre' task: %m");
2212 service_enter_dead(s, SERVICE_FAILURE_RESOURCES, true);
2213 }
2214
2215 static void service_enter_condition(Service *s) {
2216 int r;
2217
2218 assert(s);
2219
2220 service_unwatch_control_pid(s);
2221
2222 s->control_command = s->exec_command[SERVICE_EXEC_CONDITION];
2223 if (s->control_command) {
2224
2225 r = service_adverse_to_leftover_processes(s);
2226 if (r < 0)
2227 goto fail;
2228
2229 s->control_command_id = SERVICE_EXEC_CONDITION;
2230
2231 r = service_spawn(s,
2232 s->control_command,
2233 s->timeout_start_usec,
2234 EXEC_APPLY_SANDBOXING|EXEC_APPLY_CHROOT|EXEC_IS_CONTROL|EXEC_APPLY_TTY_STDIN,
2235 &s->control_pid);
2236
2237 if (r < 0)
2238 goto fail;
2239
2240 service_set_state(s, SERVICE_CONDITION);
2241 } else
2242 service_enter_start_pre(s);
2243
2244 return;
2245
2246 fail:
2247 log_unit_warning_errno(UNIT(s), r, "Failed to run 'exec-condition' task: %m");
2248 service_enter_dead(s, SERVICE_FAILURE_RESOURCES, true);
2249 }
2250
2251 static void service_enter_restart(Service *s) {
2252 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
2253 int r;
2254
2255 assert(s);
2256
2257 if (unit_has_job_type(UNIT(s), JOB_STOP)) {
2258 /* Don't restart things if we are going down anyway */
2259 log_unit_info(UNIT(s), "Stop job pending for unit, delaying automatic restart.");
2260
2261 r = service_arm_timer(s, usec_add(now(CLOCK_MONOTONIC), s->restart_usec));
2262 if (r < 0)
2263 goto fail;
2264
2265 return;
2266 }
2267
2268 /* Any units that are bound to this service must also be
2269 * restarted. We use JOB_RESTART (instead of the more obvious
2270 * JOB_START) here so that those dependency jobs will be added
2271 * as well. */
2272 r = manager_add_job(UNIT(s)->manager, JOB_RESTART, UNIT(s), JOB_REPLACE, NULL, &error, NULL);
2273 if (r < 0)
2274 goto fail;
2275
2276 /* Count the jobs we enqueue for restarting. This counter is maintained as long as the unit isn't fully
2277 * stopped, i.e. as long as it remains up or remains in auto-start states. The use can reset the counter
2278 * explicitly however via the usual "systemctl reset-failure" logic. */
2279 s->n_restarts ++;
2280 s->flush_n_restarts = false;
2281
2282 log_struct(LOG_INFO,
2283 "MESSAGE_ID=" SD_MESSAGE_UNIT_RESTART_SCHEDULED_STR,
2284 LOG_UNIT_ID(UNIT(s)),
2285 LOG_UNIT_INVOCATION_ID(UNIT(s)),
2286 LOG_UNIT_MESSAGE(UNIT(s), "Scheduled restart job, restart counter is at %u.", s->n_restarts),
2287 "N_RESTARTS=%u", s->n_restarts);
2288
2289 /* Notify clients about changed restart counter */
2290 unit_add_to_dbus_queue(UNIT(s));
2291
2292 /* Note that we stay in the SERVICE_AUTO_RESTART state here,
2293 * it will be canceled as part of the service_stop() call that
2294 * is executed as part of JOB_RESTART. */
2295
2296 return;
2297
2298 fail:
2299 log_unit_warning(UNIT(s), "Failed to schedule restart job: %s", bus_error_message(&error, -r));
2300 service_enter_dead(s, SERVICE_FAILURE_RESOURCES, false);
2301 }
2302
2303 static void service_enter_reload_by_notify(Service *s) {
2304 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
2305 int r;
2306
2307 assert(s);
2308
2309 service_arm_timer(s, usec_add(now(CLOCK_MONOTONIC), s->timeout_start_usec));
2310 service_set_state(s, SERVICE_RELOAD);
2311
2312 /* service_enter_reload_by_notify is never called during a reload, thus no loops are possible. */
2313 r = manager_propagate_reload(UNIT(s)->manager, UNIT(s), JOB_FAIL, &error);
2314 if (r < 0)
2315 log_unit_warning(UNIT(s), "Failed to schedule propagation of reload: %s", bus_error_message(&error, -r));
2316 }
2317
2318 static void service_enter_reload(Service *s) {
2319 int r;
2320
2321 assert(s);
2322
2323 service_unwatch_control_pid(s);
2324 s->reload_result = SERVICE_SUCCESS;
2325
2326 s->control_command = s->exec_command[SERVICE_EXEC_RELOAD];
2327 if (s->control_command) {
2328 s->control_command_id = SERVICE_EXEC_RELOAD;
2329
2330 r = service_spawn(s,
2331 s->control_command,
2332 s->timeout_start_usec,
2333 EXEC_APPLY_SANDBOXING|EXEC_APPLY_CHROOT|EXEC_IS_CONTROL|EXEC_CONTROL_CGROUP,
2334 &s->control_pid);
2335 if (r < 0)
2336 goto fail;
2337
2338 service_set_state(s, SERVICE_RELOAD);
2339 } else
2340 service_enter_running(s, SERVICE_SUCCESS);
2341
2342 return;
2343
2344 fail:
2345 log_unit_warning_errno(UNIT(s), r, "Failed to run 'reload' task: %m");
2346 s->reload_result = SERVICE_FAILURE_RESOURCES;
2347 service_enter_running(s, SERVICE_SUCCESS);
2348 }
2349
2350 static void service_run_next_control(Service *s) {
2351 usec_t timeout;
2352 int r;
2353
2354 assert(s);
2355 assert(s->control_command);
2356 assert(s->control_command->command_next);
2357
2358 assert(s->control_command_id != SERVICE_EXEC_START);
2359
2360 s->control_command = s->control_command->command_next;
2361 service_unwatch_control_pid(s);
2362
2363 if (IN_SET(s->state, SERVICE_CONDITION, SERVICE_START_PRE, SERVICE_START, SERVICE_START_POST, SERVICE_RUNNING, SERVICE_RELOAD))
2364 timeout = s->timeout_start_usec;
2365 else
2366 timeout = s->timeout_stop_usec;
2367
2368 r = service_spawn(s,
2369 s->control_command,
2370 timeout,
2371 EXEC_APPLY_SANDBOXING|EXEC_APPLY_CHROOT|EXEC_IS_CONTROL|
2372 (IN_SET(s->control_command_id, SERVICE_EXEC_CONDITION, SERVICE_EXEC_START_PRE, SERVICE_EXEC_STOP_POST) ? EXEC_APPLY_TTY_STDIN : 0)|
2373 (IN_SET(s->control_command_id, SERVICE_EXEC_STOP, SERVICE_EXEC_STOP_POST) ? EXEC_SETENV_RESULT : 0)|
2374 (IN_SET(s->control_command_id, SERVICE_EXEC_START_POST, SERVICE_EXEC_RELOAD, SERVICE_EXEC_STOP, SERVICE_EXEC_STOP_POST) ? EXEC_CONTROL_CGROUP : 0),
2375 &s->control_pid);
2376 if (r < 0)
2377 goto fail;
2378
2379 return;
2380
2381 fail:
2382 log_unit_warning_errno(UNIT(s), r, "Failed to run next control task: %m");
2383
2384 if (IN_SET(s->state, SERVICE_CONDITION, SERVICE_START_PRE, SERVICE_START_POST, SERVICE_STOP))
2385 service_enter_signal(s, SERVICE_STOP_SIGTERM, SERVICE_FAILURE_RESOURCES);
2386 else if (s->state == SERVICE_STOP_POST)
2387 service_enter_dead(s, SERVICE_FAILURE_RESOURCES, true);
2388 else if (s->state == SERVICE_RELOAD) {
2389 s->reload_result = SERVICE_FAILURE_RESOURCES;
2390 service_enter_running(s, SERVICE_SUCCESS);
2391 } else
2392 service_enter_stop(s, SERVICE_FAILURE_RESOURCES);
2393 }
2394
2395 static void service_run_next_main(Service *s) {
2396 pid_t pid;
2397 int r;
2398
2399 assert(s);
2400 assert(s->main_command);
2401 assert(s->main_command->command_next);
2402 assert(s->type == SERVICE_ONESHOT);
2403
2404 s->main_command = s->main_command->command_next;
2405 service_unwatch_main_pid(s);
2406
2407 r = service_spawn(s,
2408 s->main_command,
2409 s->timeout_start_usec,
2410 EXEC_PASS_FDS|EXEC_APPLY_SANDBOXING|EXEC_APPLY_CHROOT|EXEC_APPLY_TTY_STDIN|EXEC_SET_WATCHDOG,
2411 &pid);
2412 if (r < 0)
2413 goto fail;
2414
2415 service_set_main_pid(s, pid);
2416
2417 return;
2418
2419 fail:
2420 log_unit_warning_errno(UNIT(s), r, "Failed to run next main task: %m");
2421 service_enter_stop(s, SERVICE_FAILURE_RESOURCES);
2422 }
2423
2424 static int service_start(Unit *u) {
2425 Service *s = SERVICE(u);
2426 int r;
2427
2428 assert(s);
2429
2430 /* We cannot fulfill this request right now, try again later
2431 * please! */
2432 if (IN_SET(s->state,
2433 SERVICE_STOP, SERVICE_STOP_WATCHDOG, SERVICE_STOP_SIGTERM, SERVICE_STOP_SIGKILL, SERVICE_STOP_POST,
2434 SERVICE_FINAL_SIGTERM, SERVICE_FINAL_SIGKILL, SERVICE_CLEANING))
2435 return -EAGAIN;
2436
2437 /* Already on it! */
2438 if (IN_SET(s->state, SERVICE_CONDITION, SERVICE_START_PRE, SERVICE_START, SERVICE_START_POST))
2439 return 0;
2440
2441 /* A service that will be restarted must be stopped first to
2442 * trigger BindsTo and/or OnFailure dependencies. If a user
2443 * does not want to wait for the holdoff time to elapse, the
2444 * service should be manually restarted, not started. We
2445 * simply return EAGAIN here, so that any start jobs stay
2446 * queued, and assume that the auto restart timer will
2447 * eventually trigger the restart. */
2448 if (s->state == SERVICE_AUTO_RESTART)
2449 return -EAGAIN;
2450
2451 assert(IN_SET(s->state, SERVICE_DEAD, SERVICE_FAILED));
2452
2453 /* Make sure we don't enter a busy loop of some kind. */
2454 r = unit_test_start_limit(u);
2455 if (r < 0) {
2456 service_enter_dead(s, SERVICE_FAILURE_START_LIMIT_HIT, false);
2457 return r;
2458 }
2459
2460 r = unit_acquire_invocation_id(u);
2461 if (r < 0)
2462 return r;
2463
2464 s->result = SERVICE_SUCCESS;
2465 s->reload_result = SERVICE_SUCCESS;
2466 s->main_pid_known = false;
2467 s->main_pid_alien = false;
2468 s->forbid_restart = false;
2469
2470 s->status_text = mfree(s->status_text);
2471 s->status_errno = 0;
2472
2473 s->notify_state = NOTIFY_UNKNOWN;
2474
2475 s->watchdog_original_usec = s->watchdog_usec;
2476 s->watchdog_override_enable = false;
2477 s->watchdog_override_usec = USEC_INFINITY;
2478
2479 exec_command_reset_status_list_array(s->exec_command, _SERVICE_EXEC_COMMAND_MAX);
2480 exec_status_reset(&s->main_exec_status);
2481
2482 /* This is not an automatic restart? Flush the restart counter then */
2483 if (s->flush_n_restarts) {
2484 s->n_restarts = 0;
2485 s->flush_n_restarts = false;
2486 }
2487
2488 u->reset_accounting = true;
2489
2490 service_enter_condition(s);
2491 return 1;
2492 }
2493
2494 static int service_stop(Unit *u) {
2495 Service *s = SERVICE(u);
2496
2497 assert(s);
2498
2499 /* Don't create restart jobs from manual stops. */
2500 s->forbid_restart = true;
2501
2502 /* Already on it */
2503 if (IN_SET(s->state,
2504 SERVICE_STOP, SERVICE_STOP_SIGTERM, SERVICE_STOP_SIGKILL, SERVICE_STOP_POST,
2505 SERVICE_FINAL_SIGTERM, SERVICE_FINAL_SIGKILL))
2506 return 0;
2507
2508 /* A restart will be scheduled or is in progress. */
2509 if (s->state == SERVICE_AUTO_RESTART) {
2510 service_set_state(s, SERVICE_DEAD);
2511 return 0;
2512 }
2513
2514 /* If there's already something running we go directly into
2515 * kill mode. */
2516 if (IN_SET(s->state, SERVICE_CONDITION, SERVICE_START_PRE, SERVICE_START, SERVICE_START_POST, SERVICE_RELOAD, SERVICE_STOP_WATCHDOG)) {
2517 service_enter_signal(s, SERVICE_STOP_SIGTERM, SERVICE_SUCCESS);
2518 return 0;
2519 }
2520
2521 /* If we are currently cleaning, then abort it, brutally. */
2522 if (s->state == SERVICE_CLEANING) {
2523 service_enter_signal(s, SERVICE_FINAL_SIGKILL, SERVICE_SUCCESS);
2524 return 0;
2525 }
2526
2527 assert(IN_SET(s->state, SERVICE_RUNNING, SERVICE_EXITED));
2528
2529 service_enter_stop(s, SERVICE_SUCCESS);
2530 return 1;
2531 }
2532
2533 static int service_reload(Unit *u) {
2534 Service *s = SERVICE(u);
2535
2536 assert(s);
2537
2538 assert(IN_SET(s->state, SERVICE_RUNNING, SERVICE_EXITED));
2539
2540 service_enter_reload(s);
2541 return 1;
2542 }
2543
2544 _pure_ static bool service_can_reload(Unit *u) {
2545 Service *s = SERVICE(u);
2546
2547 assert(s);
2548
2549 return !!s->exec_command[SERVICE_EXEC_RELOAD];
2550 }
2551
2552 static unsigned service_exec_command_index(Unit *u, ServiceExecCommand id, ExecCommand *current) {
2553 Service *s = SERVICE(u);
2554 unsigned idx = 0;
2555 ExecCommand *first, *c;
2556
2557 assert(s);
2558
2559 first = s->exec_command[id];
2560
2561 /* Figure out where we are in the list by walking back to the beginning */
2562 for (c = current; c != first; c = c->command_prev)
2563 idx++;
2564
2565 return idx;
2566 }
2567
2568 static int service_serialize_exec_command(Unit *u, FILE *f, ExecCommand *command) {
2569 _cleanup_free_ char *args = NULL, *p = NULL;
2570 size_t allocated = 0, length = 0;
2571 Service *s = SERVICE(u);
2572 const char *type, *key;
2573 ServiceExecCommand id;
2574 unsigned idx;
2575 char **arg;
2576
2577 assert(s);
2578 assert(f);
2579
2580 if (!command)
2581 return 0;
2582
2583 if (command == s->control_command) {
2584 type = "control";
2585 id = s->control_command_id;
2586 } else {
2587 type = "main";
2588 id = SERVICE_EXEC_START;
2589 }
2590
2591 idx = service_exec_command_index(u, id, command);
2592
2593 STRV_FOREACH(arg, command->argv) {
2594 _cleanup_free_ char *e = NULL;
2595 size_t n;
2596
2597 e = cescape(*arg);
2598 if (!e)
2599 return log_oom();
2600
2601 n = strlen(e);
2602 if (!GREEDY_REALLOC(args, allocated, length + 2 + n + 2))
2603 return log_oom();
2604
2605 if (length > 0)
2606 args[length++] = ' ';
2607
2608 args[length++] = '"';
2609 memcpy(args + length, e, n);
2610 length += n;
2611 args[length++] = '"';
2612 }
2613
2614 if (!GREEDY_REALLOC(args, allocated, length + 1))
2615 return log_oom();
2616
2617 args[length++] = 0;
2618
2619 p = cescape(command->path);
2620 if (!p)
2621 return -ENOMEM;
2622
2623 key = strjoina(type, "-command");
2624 return serialize_item_format(f, key, "%s %u %s %s", service_exec_command_to_string(id), idx, p, args);
2625 }
2626
2627 static int service_serialize(Unit *u, FILE *f, FDSet *fds) {
2628 Service *s = SERVICE(u);
2629 ServiceFDStore *fs;
2630 int r;
2631
2632 assert(u);
2633 assert(f);
2634 assert(fds);
2635
2636 (void) serialize_item(f, "state", service_state_to_string(s->state));
2637 (void) serialize_item(f, "result", service_result_to_string(s->result));
2638 (void) serialize_item(f, "reload-result", service_result_to_string(s->reload_result));
2639
2640 if (s->control_pid > 0)
2641 (void) serialize_item_format(f, "control-pid", PID_FMT, s->control_pid);
2642
2643 if (s->main_pid_known && s->main_pid > 0)
2644 (void) serialize_item_format(f, "main-pid", PID_FMT, s->main_pid);
2645
2646 (void) serialize_bool(f, "main-pid-known", s->main_pid_known);
2647 (void) serialize_bool(f, "bus-name-good", s->bus_name_good);
2648 (void) serialize_bool(f, "bus-name-owner", s->bus_name_owner);
2649
2650 (void) serialize_item_format(f, "n-restarts", "%u", s->n_restarts);
2651 (void) serialize_bool(f, "flush-n-restarts", s->flush_n_restarts);
2652
2653 r = serialize_item_escaped(f, "status-text", s->status_text);
2654 if (r < 0)
2655 return r;
2656
2657 service_serialize_exec_command(u, f, s->control_command);
2658 service_serialize_exec_command(u, f, s->main_command);
2659
2660 r = serialize_fd(f, fds, "stdin-fd", s->stdin_fd);
2661 if (r < 0)
2662 return r;
2663 r = serialize_fd(f, fds, "stdout-fd", s->stdout_fd);
2664 if (r < 0)
2665 return r;
2666 r = serialize_fd(f, fds, "stderr-fd", s->stderr_fd);
2667 if (r < 0)
2668 return r;
2669
2670 if (s->exec_fd_event_source) {
2671 r = serialize_fd(f, fds, "exec-fd", sd_event_source_get_io_fd(s->exec_fd_event_source));
2672 if (r < 0)
2673 return r;
2674
2675 (void) serialize_bool(f, "exec-fd-hot", s->exec_fd_hot);
2676 }
2677
2678 if (UNIT_ISSET(s->accept_socket)) {
2679 r = serialize_item(f, "accept-socket", UNIT_DEREF(s->accept_socket)->id);
2680 if (r < 0)
2681 return r;
2682 }
2683
2684 r = serialize_fd(f, fds, "socket-fd", s->socket_fd);
2685 if (r < 0)
2686 return r;
2687
2688 LIST_FOREACH(fd_store, fs, s->fd_store) {
2689 _cleanup_free_ char *c = NULL;
2690 int copy;
2691
2692 copy = fdset_put_dup(fds, fs->fd);
2693 if (copy < 0)
2694 return log_error_errno(copy, "Failed to copy file descriptor for serialization: %m");
2695
2696 c = cescape(fs->fdname);
2697 if (!c)
2698 return log_oom();
2699
2700 (void) serialize_item_format(f, "fd-store-fd", "%i %s", copy, c);
2701 }
2702
2703 if (s->main_exec_status.pid > 0) {
2704 (void) serialize_item_format(f, "main-exec-status-pid", PID_FMT, s->main_exec_status.pid);
2705 (void) serialize_dual_timestamp(f, "main-exec-status-start", &s->main_exec_status.start_timestamp);
2706 (void) serialize_dual_timestamp(f, "main-exec-status-exit", &s->main_exec_status.exit_timestamp);
2707
2708 if (dual_timestamp_is_set(&s->main_exec_status.exit_timestamp)) {
2709 (void) serialize_item_format(f, "main-exec-status-code", "%i", s->main_exec_status.code);
2710 (void) serialize_item_format(f, "main-exec-status-status", "%i", s->main_exec_status.status);
2711 }
2712 }
2713
2714 (void) serialize_dual_timestamp(f, "watchdog-timestamp", &s->watchdog_timestamp);
2715 (void) serialize_bool(f, "forbid-restart", s->forbid_restart);
2716
2717 if (s->watchdog_override_enable)
2718 (void) serialize_item_format(f, "watchdog-override-usec", USEC_FMT, s->watchdog_override_usec);
2719
2720 if (s->watchdog_original_usec != USEC_INFINITY)
2721 (void) serialize_item_format(f, "watchdog-original-usec", USEC_FMT, s->watchdog_original_usec);
2722
2723 return 0;
2724 }
2725
2726 static int service_deserialize_exec_command(Unit *u, const char *key, const char *value) {
2727 Service *s = SERVICE(u);
2728 int r;
2729 unsigned idx = 0, i;
2730 bool control, found = false;
2731 ServiceExecCommand id = _SERVICE_EXEC_COMMAND_INVALID;
2732 ExecCommand *command = NULL;
2733 _cleanup_free_ char *path = NULL;
2734 _cleanup_strv_free_ char **argv = NULL;
2735
2736 enum ExecCommandState {
2737 STATE_EXEC_COMMAND_TYPE,
2738 STATE_EXEC_COMMAND_INDEX,
2739 STATE_EXEC_COMMAND_PATH,
2740 STATE_EXEC_COMMAND_ARGS,
2741 _STATE_EXEC_COMMAND_MAX,
2742 _STATE_EXEC_COMMAND_INVALID = -1,
2743 } state;
2744
2745 assert(s);
2746 assert(key);
2747 assert(value);
2748
2749 control = streq(key, "control-command");
2750
2751 state = STATE_EXEC_COMMAND_TYPE;
2752
2753 for (;;) {
2754 _cleanup_free_ char *arg = NULL;
2755
2756 r = extract_first_word(&value, &arg, NULL, EXTRACT_CUNESCAPE | EXTRACT_UNQUOTE);
2757 if (r < 0)
2758 return r;
2759 if (r == 0)
2760 break;
2761
2762 switch (state) {
2763 case STATE_EXEC_COMMAND_TYPE:
2764 id = service_exec_command_from_string(arg);
2765 if (id < 0)
2766 return -EINVAL;
2767
2768 state = STATE_EXEC_COMMAND_INDEX;
2769 break;
2770 case STATE_EXEC_COMMAND_INDEX:
2771 r = safe_atou(arg, &idx);
2772 if (r < 0)
2773 return -EINVAL;
2774
2775 state = STATE_EXEC_COMMAND_PATH;
2776 break;
2777 case STATE_EXEC_COMMAND_PATH:
2778 path = TAKE_PTR(arg);
2779 state = STATE_EXEC_COMMAND_ARGS;
2780
2781 if (!path_is_absolute(path))
2782 return -EINVAL;
2783 break;
2784 case STATE_EXEC_COMMAND_ARGS:
2785 r = strv_extend(&argv, arg);
2786 if (r < 0)
2787 return -ENOMEM;
2788 break;
2789 default:
2790 assert_not_reached("Unknown error at deserialization of exec command");
2791 break;
2792 }
2793 }
2794
2795 if (state != STATE_EXEC_COMMAND_ARGS)
2796 return -EINVAL;
2797
2798 /* Let's check whether exec command on given offset matches data that we just deserialized */
2799 for (command = s->exec_command[id], i = 0; command; command = command->command_next, i++) {
2800 if (i != idx)
2801 continue;
2802
2803 found = strv_equal(argv, command->argv) && streq(command->path, path);
2804 break;
2805 }
2806
2807 if (!found) {
2808 /* Command at the index we serialized is different, let's look for command that exactly
2809 * matches but is on different index. If there is no such command we will not resume execution. */
2810 for (command = s->exec_command[id]; command; command = command->command_next)
2811 if (strv_equal(command->argv, argv) && streq(command->path, path))
2812 break;
2813 }
2814
2815 if (command && control)
2816 s->control_command = command;
2817 else if (command)
2818 s->main_command = command;
2819 else
2820 log_unit_warning(u, "Current command vanished from the unit file, execution of the command list won't be resumed.");
2821
2822 return 0;
2823 }
2824
2825 static int service_deserialize_item(Unit *u, const char *key, const char *value, FDSet *fds) {
2826 Service *s = SERVICE(u);
2827 int r;
2828
2829 assert(u);
2830 assert(key);
2831 assert(value);
2832 assert(fds);
2833
2834 if (streq(key, "state")) {
2835 ServiceState state;
2836
2837 state = service_state_from_string(value);
2838 if (state < 0)
2839 log_unit_debug(u, "Failed to parse state value: %s", value);
2840 else
2841 s->deserialized_state = state;
2842 } else if (streq(key, "result")) {
2843 ServiceResult f;
2844
2845 f = service_result_from_string(value);
2846 if (f < 0)
2847 log_unit_debug(u, "Failed to parse result value: %s", value);
2848 else if (f != SERVICE_SUCCESS)
2849 s->result = f;
2850
2851 } else if (streq(key, "reload-result")) {
2852 ServiceResult f;
2853
2854 f = service_result_from_string(value);
2855 if (f < 0)
2856 log_unit_debug(u, "Failed to parse reload result value: %s", value);
2857 else if (f != SERVICE_SUCCESS)
2858 s->reload_result = f;
2859
2860 } else if (streq(key, "control-pid")) {
2861 pid_t pid;
2862
2863 if (parse_pid(value, &pid) < 0)
2864 log_unit_debug(u, "Failed to parse control-pid value: %s", value);
2865 else
2866 s->control_pid = pid;
2867 } else if (streq(key, "main-pid")) {
2868 pid_t pid;
2869
2870 if (parse_pid(value, &pid) < 0)
2871 log_unit_debug(u, "Failed to parse main-pid value: %s", value);
2872 else
2873 (void) service_set_main_pid(s, pid);
2874 } else if (streq(key, "main-pid-known")) {
2875 int b;
2876
2877 b = parse_boolean(value);
2878 if (b < 0)
2879 log_unit_debug(u, "Failed to parse main-pid-known value: %s", value);
2880 else
2881 s->main_pid_known = b;
2882 } else if (streq(key, "bus-name-good")) {
2883 int b;
2884
2885 b = parse_boolean(value);
2886 if (b < 0)
2887 log_unit_debug(u, "Failed to parse bus-name-good value: %s", value);
2888 else
2889 s->bus_name_good = b;
2890 } else if (streq(key, "bus-name-owner")) {
2891 r = free_and_strdup(&s->bus_name_owner, value);
2892 if (r < 0)
2893 log_unit_error_errno(u, r, "Unable to deserialize current bus owner %s: %m", value);
2894 } else if (streq(key, "status-text")) {
2895 char *t;
2896
2897 r = cunescape(value, 0, &t);
2898 if (r < 0)
2899 log_unit_debug_errno(u, r, "Failed to unescape status text '%s': %m", value);
2900 else
2901 free_and_replace(s->status_text, t);
2902
2903 } else if (streq(key, "accept-socket")) {
2904 Unit *socket;
2905
2906 r = manager_load_unit(u->manager, value, NULL, NULL, &socket);
2907 if (r < 0)
2908 log_unit_debug_errno(u, r, "Failed to load accept-socket unit '%s': %m", value);
2909 else {
2910 unit_ref_set(&s->accept_socket, u, socket);
2911 SOCKET(socket)->n_connections++;
2912 }
2913
2914 } else if (streq(key, "socket-fd")) {
2915 int fd;
2916
2917 if (safe_atoi(value, &fd) < 0 || fd < 0 || !fdset_contains(fds, fd))
2918 log_unit_debug(u, "Failed to parse socket-fd value: %s", value);
2919 else {
2920 asynchronous_close(s->socket_fd);
2921 s->socket_fd = fdset_remove(fds, fd);
2922 }
2923 } else if (streq(key, "fd-store-fd")) {
2924 const char *fdv;
2925 size_t pf;
2926 int fd;
2927
2928 pf = strcspn(value, WHITESPACE);
2929 fdv = strndupa(value, pf);
2930
2931 if (safe_atoi(fdv, &fd) < 0 || fd < 0 || !fdset_contains(fds, fd))
2932 log_unit_debug(u, "Failed to parse fd-store-fd value: %s", value);
2933 else {
2934 _cleanup_free_ char *t = NULL;
2935 const char *fdn;
2936
2937 fdn = value + pf;
2938 fdn += strspn(fdn, WHITESPACE);
2939 (void) cunescape(fdn, 0, &t);
2940
2941 r = service_add_fd_store(s, fd, t);
2942 if (r < 0)
2943 log_unit_error_errno(u, r, "Failed to add fd to store: %m");
2944 else
2945 fdset_remove(fds, fd);
2946 }
2947
2948 } else if (streq(key, "main-exec-status-pid")) {
2949 pid_t pid;
2950
2951 if (parse_pid(value, &pid) < 0)
2952 log_unit_debug(u, "Failed to parse main-exec-status-pid value: %s", value);
2953 else
2954 s->main_exec_status.pid = pid;
2955 } else if (streq(key, "main-exec-status-code")) {
2956 int i;
2957
2958 if (safe_atoi(value, &i) < 0)
2959 log_unit_debug(u, "Failed to parse main-exec-status-code value: %s", value);
2960 else
2961 s->main_exec_status.code = i;
2962 } else if (streq(key, "main-exec-status-status")) {
2963 int i;
2964
2965 if (safe_atoi(value, &i) < 0)
2966 log_unit_debug(u, "Failed to parse main-exec-status-status value: %s", value);
2967 else
2968 s->main_exec_status.status = i;
2969 } else if (streq(key, "main-exec-status-start"))
2970 deserialize_dual_timestamp(value, &s->main_exec_status.start_timestamp);
2971 else if (streq(key, "main-exec-status-exit"))
2972 deserialize_dual_timestamp(value, &s->main_exec_status.exit_timestamp);
2973 else if (streq(key, "watchdog-timestamp"))
2974 deserialize_dual_timestamp(value, &s->watchdog_timestamp);
2975 else if (streq(key, "forbid-restart")) {
2976 int b;
2977
2978 b = parse_boolean(value);
2979 if (b < 0)
2980 log_unit_debug(u, "Failed to parse forbid-restart value: %s", value);
2981 else
2982 s->forbid_restart = b;
2983 } else if (streq(key, "stdin-fd")) {
2984 int fd;
2985
2986 if (safe_atoi(value, &fd) < 0 || fd < 0 || !fdset_contains(fds, fd))
2987 log_unit_debug(u, "Failed to parse stdin-fd value: %s", value);
2988 else {
2989 asynchronous_close(s->stdin_fd);
2990 s->stdin_fd = fdset_remove(fds, fd);
2991 s->exec_context.stdio_as_fds = true;
2992 }
2993 } else if (streq(key, "stdout-fd")) {
2994 int fd;
2995
2996 if (safe_atoi(value, &fd) < 0 || fd < 0 || !fdset_contains(fds, fd))
2997 log_unit_debug(u, "Failed to parse stdout-fd value: %s", value);
2998 else {
2999 asynchronous_close(s->stdout_fd);
3000 s->stdout_fd = fdset_remove(fds, fd);
3001 s->exec_context.stdio_as_fds = true;
3002 }
3003 } else if (streq(key, "stderr-fd")) {
3004 int fd;
3005
3006 if (safe_atoi(value, &fd) < 0 || fd < 0 || !fdset_contains(fds, fd))
3007 log_unit_debug(u, "Failed to parse stderr-fd value: %s", value);
3008 else {
3009 asynchronous_close(s->stderr_fd);
3010 s->stderr_fd = fdset_remove(fds, fd);
3011 s->exec_context.stdio_as_fds = true;
3012 }
3013 } else if (streq(key, "exec-fd")) {
3014 int fd;
3015
3016 if (safe_atoi(value, &fd) < 0 || fd < 0 || !fdset_contains(fds, fd))
3017 log_unit_debug(u, "Failed to parse exec-fd value: %s", value);
3018 else {
3019 s->exec_fd_event_source = sd_event_source_unref(s->exec_fd_event_source);
3020
3021 fd = fdset_remove(fds, fd);
3022 if (service_allocate_exec_fd_event_source(s, fd, &s->exec_fd_event_source) < 0)
3023 safe_close(fd);
3024 }
3025 } else if (streq(key, "watchdog-override-usec")) {
3026 if (deserialize_usec(value, &s->watchdog_override_usec) < 0)
3027 log_unit_debug(u, "Failed to parse watchdog_override_usec value: %s", value);
3028 else
3029 s->watchdog_override_enable = true;
3030
3031 } else if (streq(key, "watchdog-original-usec")) {
3032 if (deserialize_usec(value, &s->watchdog_original_usec) < 0)
3033 log_unit_debug(u, "Failed to parse watchdog_original_usec value: %s", value);
3034
3035 } else if (STR_IN_SET(key, "main-command", "control-command")) {
3036 r = service_deserialize_exec_command(u, key, value);
3037 if (r < 0)
3038 log_unit_debug_errno(u, r, "Failed to parse serialized command \"%s\": %m", value);
3039
3040 } else if (streq(key, "n-restarts")) {
3041 r = safe_atou(value, &s->n_restarts);
3042 if (r < 0)
3043 log_unit_debug_errno(u, r, "Failed to parse serialized restart counter '%s': %m", value);
3044
3045 } else if (streq(key, "flush-n-restarts")) {
3046 r = parse_boolean(value);
3047 if (r < 0)
3048 log_unit_debug_errno(u, r, "Failed to parse serialized flush restart counter setting '%s': %m", value);
3049 else
3050 s->flush_n_restarts = r;
3051 } else
3052 log_unit_debug(u, "Unknown serialization key: %s", key);
3053
3054 return 0;
3055 }
3056
3057 _pure_ static UnitActiveState service_active_state(Unit *u) {
3058 const UnitActiveState *table;
3059
3060 assert(u);
3061
3062 table = SERVICE(u)->type == SERVICE_IDLE ? state_translation_table_idle : state_translation_table;
3063
3064 return table[SERVICE(u)->state];
3065 }
3066
3067 static const char *service_sub_state_to_string(Unit *u) {
3068 assert(u);
3069
3070 return service_state_to_string(SERVICE(u)->state);
3071 }
3072
3073 static bool service_may_gc(Unit *u) {
3074 Service *s = SERVICE(u);
3075
3076 assert(s);
3077
3078 /* Never clean up services that still have a process around, even if the service is formally dead. Note that
3079 * unit_may_gc() already checked our cgroup for us, we just check our two additional PIDs, too, in case they
3080 * have moved outside of the cgroup. */
3081
3082 if (main_pid_good(s) > 0 ||
3083 control_pid_good(s) > 0)
3084 return false;
3085
3086 return true;
3087 }
3088
3089 static int service_retry_pid_file(Service *s) {
3090 int r;
3091
3092 assert(s->pid_file);
3093 assert(IN_SET(s->state, SERVICE_START, SERVICE_START_POST));
3094
3095 r = service_load_pid_file(s, false);
3096 if (r < 0)
3097 return r;
3098
3099 service_unwatch_pid_file(s);
3100
3101 service_enter_running(s, SERVICE_SUCCESS);
3102 return 0;
3103 }
3104
3105 static int service_watch_pid_file(Service *s) {
3106 int r;
3107
3108 log_unit_debug(UNIT(s), "Setting watch for PID file %s", s->pid_file_pathspec->path);
3109
3110 r = path_spec_watch(s->pid_file_pathspec, service_dispatch_inotify_io);
3111 if (r < 0)
3112 goto fail;
3113
3114 /* the pidfile might have appeared just before we set the watch */
3115 log_unit_debug(UNIT(s), "Trying to read PID file %s in case it changed", s->pid_file_pathspec->path);
3116 service_retry_pid_file(s);
3117
3118 return 0;
3119 fail:
3120 log_unit_error_errno(UNIT(s), r, "Failed to set a watch for PID file %s: %m", s->pid_file_pathspec->path);
3121 service_unwatch_pid_file(s);
3122 return r;
3123 }
3124
3125 static int service_demand_pid_file(Service *s) {
3126 PathSpec *ps;
3127
3128 assert(s->pid_file);
3129 assert(!s->pid_file_pathspec);
3130
3131 ps = new0(PathSpec, 1);
3132 if (!ps)
3133 return -ENOMEM;
3134
3135 ps->unit = UNIT(s);
3136 ps->path = strdup(s->pid_file);
3137 if (!ps->path) {
3138 free(ps);
3139 return -ENOMEM;
3140 }
3141
3142 path_simplify(ps->path, false);
3143
3144 /* PATH_CHANGED would not be enough. There are daemons (sendmail) that
3145 * keep their PID file open all the time. */
3146 ps->type = PATH_MODIFIED;
3147 ps->inotify_fd = -1;
3148
3149 s->pid_file_pathspec = ps;
3150
3151 return service_watch_pid_file(s);
3152 }
3153
3154 static int service_dispatch_inotify_io(sd_event_source *source, int fd, uint32_t events, void *userdata) {
3155 PathSpec *p = userdata;
3156 Service *s;
3157
3158 assert(p);
3159
3160 s = SERVICE(p->unit);
3161
3162 assert(s);
3163 assert(fd >= 0);
3164 assert(IN_SET(s->state, SERVICE_START, SERVICE_START_POST));
3165 assert(s->pid_file_pathspec);
3166 assert(path_spec_owns_inotify_fd(s->pid_file_pathspec, fd));
3167
3168 log_unit_debug(UNIT(s), "inotify event");
3169
3170 if (path_spec_fd_event(p, events) < 0)
3171 goto fail;
3172
3173 if (service_retry_pid_file(s) == 0)
3174 return 0;
3175
3176 if (service_watch_pid_file(s) < 0)
3177 goto fail;
3178
3179 return 0;
3180
3181 fail:
3182 service_unwatch_pid_file(s);
3183 service_enter_signal(s, SERVICE_STOP_SIGTERM, SERVICE_FAILURE_RESOURCES);
3184 return 0;
3185 }
3186
3187 static int service_dispatch_exec_io(sd_event_source *source, int fd, uint32_t events, void *userdata) {
3188 Service *s = SERVICE(userdata);
3189
3190 assert(s);
3191
3192 log_unit_debug(UNIT(s), "got exec-fd event");
3193
3194 /* If Type=exec is set, we'll consider a service started successfully the instant we invoked execve()
3195 * successfully for it. We implement this through a pipe() towards the child, which the kernel automatically
3196 * closes for us due to O_CLOEXEC on execve() in the child, which then triggers EOF on the pipe in the
3197 * parent. We need to be careful however, as there are other reasons that we might cause the child's side of
3198 * the pipe to be closed (for example, a simple exit()). To deal with that we'll ignore EOFs on the pipe unless
3199 * the child signalled us first that it is about to call the execve(). It does so by sending us a simple
3200 * non-zero byte via the pipe. We also provide the child with a way to inform us in case execve() failed: if it
3201 * sends a zero byte we'll ignore POLLHUP on the fd again. */
3202
3203 for (;;) {
3204 uint8_t x;
3205 ssize_t n;
3206
3207 n = read(fd, &x, sizeof(x));
3208 if (n < 0) {
3209 if (errno == EAGAIN) /* O_NONBLOCK in effect → everything queued has now been processed. */
3210 return 0;
3211
3212 return log_unit_error_errno(UNIT(s), errno, "Failed to read from exec_fd: %m");
3213 }
3214 if (n == 0) { /* EOF → the event we are waiting for */
3215
3216 s->exec_fd_event_source = sd_event_source_unref(s->exec_fd_event_source);
3217
3218 if (s->exec_fd_hot) { /* Did the child tell us to expect EOF now? */
3219 log_unit_debug(UNIT(s), "Got EOF on exec-fd");
3220
3221 s->exec_fd_hot = false;
3222
3223 /* Nice! This is what we have been waiting for. Transition to next state. */
3224 if (s->type == SERVICE_EXEC && s->state == SERVICE_START)
3225 service_enter_start_post(s);
3226 } else
3227 log_unit_debug(UNIT(s), "Got EOF on exec-fd while it was disabled, ignoring.");
3228
3229 return 0;
3230 }
3231
3232 /* A byte was read → this turns on/off the exec fd logic */
3233 assert(n == sizeof(x));
3234 s->exec_fd_hot = x;
3235 }
3236
3237 return 0;
3238 }
3239
3240 static void service_notify_cgroup_empty_event(Unit *u) {
3241 Service *s = SERVICE(u);
3242
3243 assert(u);
3244
3245 log_unit_debug(u, "Control group is empty.");
3246
3247 switch (s->state) {
3248
3249 /* Waiting for SIGCHLD is usually more interesting,
3250 * because it includes return codes/signals. Which is
3251 * why we ignore the cgroup events for most cases,
3252 * except when we don't know pid which to expect the
3253 * SIGCHLD for. */
3254
3255 case SERVICE_START:
3256 if (s->type == SERVICE_NOTIFY &&
3257 main_pid_good(s) == 0 &&
3258 control_pid_good(s) == 0) {
3259 /* No chance of getting a ready notification anymore */
3260 service_enter_stop_post(s, SERVICE_FAILURE_PROTOCOL);
3261 break;
3262 }
3263
3264 _fallthrough_;
3265 case SERVICE_START_POST:
3266 if (s->pid_file_pathspec &&
3267 main_pid_good(s) == 0 &&
3268 control_pid_good(s) == 0) {
3269
3270 /* Give up hoping for the daemon to write its PID file */
3271 log_unit_warning(u, "Daemon never wrote its PID file. Failing.");
3272
3273 service_unwatch_pid_file(s);
3274 if (s->state == SERVICE_START)
3275 service_enter_stop_post(s, SERVICE_FAILURE_PROTOCOL);
3276 else
3277 service_enter_stop(s, SERVICE_FAILURE_PROTOCOL);
3278 }
3279 break;
3280
3281 case SERVICE_RUNNING:
3282 /* service_enter_running() will figure out what to do */
3283 service_enter_running(s, SERVICE_SUCCESS);
3284 break;
3285
3286 case SERVICE_STOP_WATCHDOG:
3287 case SERVICE_STOP_SIGTERM:
3288 case SERVICE_STOP_SIGKILL:
3289
3290 if (main_pid_good(s) <= 0 && control_pid_good(s) <= 0)
3291 service_enter_stop_post(s, SERVICE_SUCCESS);
3292
3293 break;
3294
3295 case SERVICE_STOP_POST:
3296 case SERVICE_FINAL_SIGTERM:
3297 case SERVICE_FINAL_SIGKILL:
3298 if (main_pid_good(s) <= 0 && control_pid_good(s) <= 0)
3299 service_enter_dead(s, SERVICE_SUCCESS, true);
3300
3301 break;
3302
3303 default:
3304 ;
3305 }
3306 }
3307
3308 static void service_notify_cgroup_oom_event(Unit *u) {
3309 Service *s = SERVICE(u);
3310
3311 log_unit_debug(u, "Process of control group was killed by the OOM killer.");
3312
3313 if (s->oom_policy == OOM_CONTINUE)
3314 return;
3315
3316 switch (s->state) {
3317
3318 case SERVICE_CONDITION:
3319 case SERVICE_START_PRE:
3320 case SERVICE_START:
3321 case SERVICE_START_POST:
3322 case SERVICE_STOP:
3323 if (s->oom_policy == OOM_STOP)
3324 service_enter_signal(s, SERVICE_STOP_SIGTERM, SERVICE_FAILURE_OOM_KILL);
3325 else if (s->oom_policy == OOM_KILL)
3326 service_enter_signal(s, SERVICE_STOP_SIGKILL, SERVICE_FAILURE_OOM_KILL);
3327
3328 break;
3329
3330 case SERVICE_EXITED:
3331 case SERVICE_RUNNING:
3332 if (s->oom_policy == OOM_STOP)
3333 service_enter_stop(s, SERVICE_FAILURE_OOM_KILL);
3334 else if (s->oom_policy == OOM_KILL)
3335 service_enter_signal(s, SERVICE_STOP_SIGKILL, SERVICE_FAILURE_OOM_KILL);
3336
3337 break;
3338
3339 case SERVICE_STOP_WATCHDOG:
3340 case SERVICE_STOP_SIGTERM:
3341 service_enter_signal(s, SERVICE_STOP_SIGKILL, SERVICE_FAILURE_OOM_KILL);
3342 break;
3343
3344 case SERVICE_STOP_SIGKILL:
3345 case SERVICE_FINAL_SIGKILL:
3346 if (s->result == SERVICE_SUCCESS)
3347 s->result = SERVICE_FAILURE_OOM_KILL;
3348 break;
3349
3350 case SERVICE_STOP_POST:
3351 case SERVICE_FINAL_SIGTERM:
3352 service_enter_signal(s, SERVICE_FINAL_SIGKILL, SERVICE_FAILURE_OOM_KILL);
3353 break;
3354
3355 default:
3356 ;
3357 }
3358 }
3359
3360 static void service_sigchld_event(Unit *u, pid_t pid, int code, int status) {
3361 bool notify_dbus = true;
3362 Service *s = SERVICE(u);
3363 ServiceResult f;
3364 ExitClean clean_mode;
3365
3366 assert(s);
3367 assert(pid >= 0);
3368
3369 /* Oneshot services and non-SERVICE_EXEC_START commands should not be
3370 * considered daemons as they are typically not long running. */
3371 if (s->type == SERVICE_ONESHOT || (s->control_pid == pid && s->control_command_id != SERVICE_EXEC_START))
3372 clean_mode = EXIT_CLEAN_COMMAND;
3373 else
3374 clean_mode = EXIT_CLEAN_DAEMON;
3375
3376 if (is_clean_exit(code, status, clean_mode, &s->success_status))
3377 f = SERVICE_SUCCESS;
3378 else if (code == CLD_EXITED)
3379 f = SERVICE_FAILURE_EXIT_CODE;
3380 else if (code == CLD_KILLED)
3381 f = SERVICE_FAILURE_SIGNAL;
3382 else if (code == CLD_DUMPED)
3383 f = SERVICE_FAILURE_CORE_DUMP;
3384 else
3385 assert_not_reached("Unknown code");
3386
3387 if (s->main_pid == pid) {
3388 /* Forking services may occasionally move to a new PID.
3389 * As long as they update the PID file before exiting the old
3390 * PID, they're fine. */
3391 if (service_load_pid_file(s, false) > 0)
3392 return;
3393
3394 s->main_pid = 0;
3395 exec_status_exit(&s->main_exec_status, &s->exec_context, pid, code, status);
3396
3397 if (s->main_command) {
3398 /* If this is not a forking service than the
3399 * main process got started and hence we copy
3400 * the exit status so that it is recorded both
3401 * as main and as control process exit
3402 * status */
3403
3404 s->main_command->exec_status = s->main_exec_status;
3405
3406 if (s->main_command->flags & EXEC_COMMAND_IGNORE_FAILURE)
3407 f = SERVICE_SUCCESS;
3408 } else if (s->exec_command[SERVICE_EXEC_START]) {
3409
3410 /* If this is a forked process, then we should
3411 * ignore the return value if this was
3412 * configured for the starter process */
3413
3414 if (s->exec_command[SERVICE_EXEC_START]->flags & EXEC_COMMAND_IGNORE_FAILURE)
3415 f = SERVICE_SUCCESS;
3416 }
3417
3418 unit_log_process_exit(
3419 u,
3420 "Main process",
3421 service_exec_command_to_string(SERVICE_EXEC_START),
3422 f == SERVICE_SUCCESS,
3423 code, status);
3424
3425 if (s->result == SERVICE_SUCCESS)
3426 s->result = f;
3427
3428 if (s->main_command &&
3429 s->main_command->command_next &&
3430 s->type == SERVICE_ONESHOT &&
3431 f == SERVICE_SUCCESS) {
3432
3433 /* There is another command to *
3434 * execute, so let's do that. */
3435
3436 log_unit_debug(u, "Running next main command for state %s.", service_state_to_string(s->state));
3437 service_run_next_main(s);
3438
3439 } else {
3440
3441 /* The service exited, so the service is officially
3442 * gone. */
3443 s->main_command = NULL;
3444
3445 switch (s->state) {
3446
3447 case SERVICE_START_POST:
3448 case SERVICE_RELOAD:
3449 case SERVICE_STOP:
3450 /* Need to wait until the operation is
3451 * done */
3452 break;
3453
3454 case SERVICE_START:
3455 if (s->type == SERVICE_ONESHOT) {
3456 /* This was our main goal, so let's go on */
3457 if (f == SERVICE_SUCCESS)
3458 service_enter_start_post(s);
3459 else
3460 service_enter_signal(s, SERVICE_STOP_SIGTERM, f);
3461 break;
3462 } else if (s->type == SERVICE_NOTIFY) {
3463 /* Only enter running through a notification, so that the
3464 * SERVICE_START state signifies that no ready notification
3465 * has been received */
3466 if (f != SERVICE_SUCCESS)
3467 service_enter_signal(s, SERVICE_STOP_SIGTERM, f);
3468 else if (!s->remain_after_exit || s->notify_access == NOTIFY_MAIN)
3469 /* The service has never been and will never be active */
3470 service_enter_signal(s, SERVICE_STOP_SIGTERM, SERVICE_FAILURE_PROTOCOL);
3471 break;
3472 }
3473
3474 _fallthrough_;
3475 case SERVICE_RUNNING:
3476 service_enter_running(s, f);
3477 break;
3478
3479 case SERVICE_STOP_WATCHDOG:
3480 case SERVICE_STOP_SIGTERM:
3481 case SERVICE_STOP_SIGKILL:
3482
3483 if (control_pid_good(s) <= 0)
3484 service_enter_stop_post(s, f);
3485
3486 /* If there is still a control process, wait for that first */
3487 break;
3488
3489 case SERVICE_STOP_POST:
3490 case SERVICE_FINAL_SIGTERM:
3491 case SERVICE_FINAL_SIGKILL:
3492
3493 if (control_pid_good(s) <= 0)
3494 service_enter_dead(s, f, true);
3495 break;
3496
3497 default:
3498 assert_not_reached("Uh, main process died at wrong time.");
3499 }
3500 }
3501
3502 } else if (s->control_pid == pid) {
3503 s->control_pid = 0;
3504
3505 /* ExecCondition= calls that exit with (0, 254] should invoke skip-like behavior instead of failing */
3506 if (f == SERVICE_FAILURE_EXIT_CODE && s->state == SERVICE_CONDITION && status < 255)
3507 f = SERVICE_SKIP_CONDITION;
3508
3509 if (s->control_command) {
3510 exec_status_exit(&s->control_command->exec_status, &s->exec_context, pid, code, status);
3511
3512 if (s->control_command->flags & EXEC_COMMAND_IGNORE_FAILURE)
3513 f = SERVICE_SUCCESS;
3514 }
3515
3516 unit_log_process_exit(
3517 u,
3518 "Control process",
3519 service_exec_command_to_string(s->control_command_id),
3520 f == SERVICE_SUCCESS,
3521 code, status);
3522
3523 if (s->state != SERVICE_RELOAD && s->result == SERVICE_SUCCESS)
3524 s->result = f;
3525
3526 if (s->control_command &&
3527 s->control_command->command_next &&
3528 f == SERVICE_SUCCESS) {
3529
3530 /* There is another command to *
3531 * execute, so let's do that. */
3532
3533 log_unit_debug(u, "Running next control command for state %s.", service_state_to_string(s->state));
3534 service_run_next_control(s);
3535
3536 } else {
3537 /* No further commands for this step, so let's
3538 * figure out what to do next */
3539
3540 s->control_command = NULL;
3541 s->control_command_id = _SERVICE_EXEC_COMMAND_INVALID;
3542
3543 log_unit_debug(u, "Got final SIGCHLD for state %s.", service_state_to_string(s->state));
3544
3545 switch (s->state) {
3546
3547 case SERVICE_CONDITION:
3548 if (f == SERVICE_SUCCESS)
3549 service_enter_start_pre(s);
3550 else
3551 service_enter_signal(s, SERVICE_STOP_SIGTERM, f);
3552 break;
3553
3554 case SERVICE_START_PRE:
3555 if (f == SERVICE_SUCCESS)
3556 service_enter_start(s);
3557 else
3558 service_enter_signal(s, SERVICE_STOP_SIGTERM, f);
3559 break;
3560
3561 case SERVICE_START:
3562 if (s->type != SERVICE_FORKING)
3563 /* Maybe spurious event due to a reload that changed the type? */
3564 break;
3565
3566 if (f != SERVICE_SUCCESS) {
3567 service_enter_signal(s, SERVICE_STOP_SIGTERM, f);
3568 break;
3569 }
3570
3571 if (s->pid_file) {
3572 bool has_start_post;
3573 int r;
3574
3575 /* Let's try to load the pid file here if we can.
3576 * The PID file might actually be created by a START_POST
3577 * script. In that case don't worry if the loading fails. */
3578
3579 has_start_post = s->exec_command[SERVICE_EXEC_START_POST];
3580 r = service_load_pid_file(s, !has_start_post);
3581 if (!has_start_post && r < 0) {
3582 r = service_demand_pid_file(s);
3583 if (r < 0 || cgroup_good(s) == 0)
3584 service_enter_signal(s, SERVICE_STOP_SIGTERM, SERVICE_FAILURE_PROTOCOL);
3585 break;
3586 }
3587 } else
3588 service_search_main_pid(s);
3589
3590 service_enter_start_post(s);
3591 break;
3592
3593 case SERVICE_START_POST:
3594 if (f != SERVICE_SUCCESS) {
3595 service_enter_signal(s, SERVICE_STOP_SIGTERM, f);
3596 break;
3597 }
3598
3599 if (s->pid_file) {
3600 int r;
3601
3602 r = service_load_pid_file(s, true);
3603 if (r < 0) {
3604 r = service_demand_pid_file(s);
3605 if (r < 0 || cgroup_good(s) == 0)
3606 service_enter_stop(s, SERVICE_FAILURE_PROTOCOL);
3607 break;
3608 }
3609 } else
3610 service_search_main_pid(s);
3611
3612 service_enter_running(s, SERVICE_SUCCESS);
3613 break;
3614
3615 case SERVICE_RELOAD:
3616 if (f == SERVICE_SUCCESS)
3617 if (service_load_pid_file(s, true) < 0)
3618 service_search_main_pid(s);
3619
3620 s->reload_result = f;
3621 service_enter_running(s, SERVICE_SUCCESS);
3622 break;
3623
3624 case SERVICE_STOP:
3625 service_enter_signal(s, SERVICE_STOP_SIGTERM, f);
3626 break;
3627
3628 case SERVICE_STOP_WATCHDOG:
3629 case SERVICE_STOP_SIGTERM:
3630 case SERVICE_STOP_SIGKILL:
3631 if (main_pid_good(s) <= 0)
3632 service_enter_stop_post(s, f);
3633
3634 /* If there is still a service process around, wait until
3635 * that one quit, too */
3636 break;
3637
3638 case SERVICE_STOP_POST:
3639 case SERVICE_FINAL_SIGTERM:
3640 case SERVICE_FINAL_SIGKILL:
3641 if (main_pid_good(s) <= 0)
3642 service_enter_dead(s, f, true);
3643 break;
3644
3645 case SERVICE_CLEANING:
3646
3647 if (s->clean_result == SERVICE_SUCCESS)
3648 s->clean_result = f;
3649
3650 service_enter_dead(s, SERVICE_SUCCESS, false);
3651 break;
3652
3653 default:
3654 assert_not_reached("Uh, control process died at wrong time.");
3655 }
3656 }
3657 } else /* Neither control nor main PID? If so, don't notify about anything */
3658 notify_dbus = false;
3659
3660 /* Notify clients about changed exit status */
3661 if (notify_dbus)
3662 unit_add_to_dbus_queue(u);
3663
3664 /* We watch the main/control process otherwise we can't retrieve the unit they
3665 * belong to with cgroupv1. But if they are not our direct child, we won't get a
3666 * SIGCHLD for them. Therefore we need to look for others to watch so we can
3667 * detect when the cgroup becomes empty. Note that the control process is always
3668 * our child so it's pointless to watch all other processes. */
3669 if (!control_pid_good(s))
3670 if (!s->main_pid_known || s->main_pid_alien)
3671 (void) unit_enqueue_rewatch_pids(u);
3672 }
3673
3674 static int service_dispatch_timer(sd_event_source *source, usec_t usec, void *userdata) {
3675 Service *s = SERVICE(userdata);
3676
3677 assert(s);
3678 assert(source == s->timer_event_source);
3679
3680 switch (s->state) {
3681
3682 case SERVICE_CONDITION:
3683 case SERVICE_START_PRE:
3684 case SERVICE_START:
3685 log_unit_warning(UNIT(s), "%s operation timed out. Terminating.", service_state_to_string(s->state));
3686 service_enter_signal(s, SERVICE_STOP_SIGTERM, SERVICE_FAILURE_TIMEOUT);
3687 break;
3688
3689 case SERVICE_START_POST:
3690 log_unit_warning(UNIT(s), "Start-post operation timed out. Stopping.");
3691 service_enter_signal(s, SERVICE_STOP_SIGTERM, SERVICE_FAILURE_TIMEOUT);
3692 break;
3693
3694 case SERVICE_RUNNING:
3695 log_unit_warning(UNIT(s), "Service reached runtime time limit. Stopping.");
3696 service_enter_stop(s, SERVICE_FAILURE_TIMEOUT);
3697 break;
3698
3699 case SERVICE_RELOAD:
3700 log_unit_warning(UNIT(s), "Reload operation timed out. Killing reload process.");
3701 service_kill_control_process(s);
3702 s->reload_result = SERVICE_FAILURE_TIMEOUT;
3703 service_enter_running(s, SERVICE_SUCCESS);
3704 break;
3705
3706 case SERVICE_STOP:
3707 log_unit_warning(UNIT(s), "Stopping timed out. Terminating.");
3708 service_enter_signal(s, SERVICE_STOP_SIGTERM, SERVICE_FAILURE_TIMEOUT);
3709 break;
3710
3711 case SERVICE_STOP_WATCHDOG:
3712 log_unit_warning(UNIT(s), "State 'stop-watchdog' timed out. Terminating.");
3713 service_enter_signal(s, SERVICE_STOP_SIGTERM, SERVICE_FAILURE_TIMEOUT);
3714 break;
3715
3716 case SERVICE_STOP_SIGTERM:
3717 if (s->kill_context.send_sigkill) {
3718 log_unit_warning(UNIT(s), "State 'stop-sigterm' timed out. Killing.");
3719 service_enter_signal(s, SERVICE_STOP_SIGKILL, SERVICE_FAILURE_TIMEOUT);
3720 } else {
3721 log_unit_warning(UNIT(s), "State 'stop-sigterm' timed out. Skipping SIGKILL.");
3722 service_enter_stop_post(s, SERVICE_FAILURE_TIMEOUT);
3723 }
3724
3725 break;
3726
3727 case SERVICE_STOP_SIGKILL:
3728 /* Uh, we sent a SIGKILL and it is still not gone?
3729 * Must be something we cannot kill, so let's just be
3730 * weirded out and continue */
3731
3732 log_unit_warning(UNIT(s), "Processes still around after SIGKILL. Ignoring.");
3733 service_enter_stop_post(s, SERVICE_FAILURE_TIMEOUT);
3734 break;
3735
3736 case SERVICE_STOP_POST:
3737 log_unit_warning(UNIT(s), "State 'stop-post' timed out. Terminating.");
3738 service_enter_signal(s, SERVICE_FINAL_SIGTERM, SERVICE_FAILURE_TIMEOUT);
3739 break;
3740
3741 case SERVICE_FINAL_SIGTERM:
3742 if (s->kill_context.send_sigkill) {
3743 log_unit_warning(UNIT(s), "State 'stop-final-sigterm' timed out. Killing.");
3744 service_enter_signal(s, SERVICE_FINAL_SIGKILL, SERVICE_FAILURE_TIMEOUT);
3745 } else {
3746 log_unit_warning(UNIT(s), "State 'stop-final-sigterm' timed out. Skipping SIGKILL. Entering failed mode.");
3747 service_enter_dead(s, SERVICE_FAILURE_TIMEOUT, false);
3748 }
3749
3750 break;
3751
3752 case SERVICE_FINAL_SIGKILL:
3753 log_unit_warning(UNIT(s), "Processes still around after final SIGKILL. Entering failed mode.");
3754 service_enter_dead(s, SERVICE_FAILURE_TIMEOUT, true);
3755 break;
3756
3757 case SERVICE_AUTO_RESTART:
3758 if (s->restart_usec > 0) {
3759 char buf_restart[FORMAT_TIMESPAN_MAX];
3760 log_unit_info(UNIT(s),
3761 "Service RestartSec=%s expired, scheduling restart.",
3762 format_timespan(buf_restart, sizeof buf_restart, s->restart_usec, USEC_PER_SEC));
3763 } else
3764 log_unit_info(UNIT(s),
3765 "Service has no hold-off time (RestartSec=0), scheduling restart.");
3766
3767 service_enter_restart(s);
3768 break;
3769
3770 case SERVICE_CLEANING:
3771 log_unit_warning(UNIT(s), "Cleaning timed out. killing.");
3772
3773 if (s->clean_result == SERVICE_SUCCESS)
3774 s->clean_result = SERVICE_FAILURE_TIMEOUT;
3775
3776 service_enter_signal(s, SERVICE_FINAL_SIGKILL, 0);
3777 break;
3778
3779 default:
3780 assert_not_reached("Timeout at wrong time.");
3781 }
3782
3783 return 0;
3784 }
3785
3786 static int service_dispatch_watchdog(sd_event_source *source, usec_t usec, void *userdata) {
3787 Service *s = SERVICE(userdata);
3788 char t[FORMAT_TIMESPAN_MAX];
3789 usec_t watchdog_usec;
3790
3791 assert(s);
3792 assert(source == s->watchdog_event_source);
3793
3794 watchdog_usec = service_get_watchdog_usec(s);
3795
3796 if (UNIT(s)->manager->service_watchdogs) {
3797 log_unit_error(UNIT(s), "Watchdog timeout (limit %s)!",
3798 format_timespan(t, sizeof(t), watchdog_usec, 1));
3799
3800 service_enter_signal(s, SERVICE_STOP_WATCHDOG, SERVICE_FAILURE_WATCHDOG);
3801 } else
3802 log_unit_warning(UNIT(s), "Watchdog disabled! Ignoring watchdog timeout (limit %s)!",
3803 format_timespan(t, sizeof(t), watchdog_usec, 1));
3804
3805 return 0;
3806 }
3807
3808 static bool service_notify_message_authorized(Service *s, pid_t pid, char **tags, FDSet *fds) {
3809 assert(s);
3810
3811 if (s->notify_access == NOTIFY_NONE) {
3812 log_unit_warning(UNIT(s), "Got notification message from PID "PID_FMT", but reception is disabled.", pid);
3813 return false;
3814 }
3815
3816 if (s->notify_access == NOTIFY_MAIN && pid != s->main_pid) {
3817 if (s->main_pid != 0)
3818 log_unit_warning(UNIT(s), "Got notification message from PID "PID_FMT", but reception only permitted for main PID "PID_FMT, pid, s->main_pid);
3819 else
3820 log_unit_warning(UNIT(s), "Got notification message from PID "PID_FMT", but reception only permitted for main PID which is currently not known", pid);
3821
3822 return false;
3823 }
3824
3825 if (s->notify_access == NOTIFY_EXEC && pid != s->main_pid && pid != s->control_pid) {
3826 if (s->main_pid != 0 && s->control_pid != 0)
3827 log_unit_warning(UNIT(s), "Got notification message from PID "PID_FMT", but reception only permitted for main PID "PID_FMT" and control PID "PID_FMT,
3828 pid, s->main_pid, s->control_pid);
3829 else if (s->main_pid != 0)
3830 log_unit_warning(UNIT(s), "Got notification message from PID "PID_FMT", but reception only permitted for main PID "PID_FMT, pid, s->main_pid);
3831 else if (s->control_pid != 0)
3832 log_unit_warning(UNIT(s), "Got notification message from PID "PID_FMT", but reception only permitted for control PID "PID_FMT, pid, s->control_pid);
3833 else
3834 log_unit_warning(UNIT(s), "Got notification message from PID "PID_FMT", but reception only permitted for main PID and control PID which are currently not known", pid);
3835
3836 return false;
3837 }
3838
3839 return true;
3840 }
3841
3842 static void service_force_watchdog(Service *s) {
3843 if (!UNIT(s)->manager->service_watchdogs)
3844 return;
3845
3846 log_unit_error(UNIT(s), "Watchdog request (last status: %s)!",
3847 s->status_text ? s->status_text : "<unset>");
3848
3849 service_enter_signal(s, SERVICE_STOP_WATCHDOG, SERVICE_FAILURE_WATCHDOG);
3850 }
3851
3852 static void service_notify_message(
3853 Unit *u,
3854 const struct ucred *ucred,
3855 char **tags,
3856 FDSet *fds) {
3857
3858 Service *s = SERVICE(u);
3859 bool notify_dbus = false;
3860 const char *e;
3861 char **i;
3862 int r;
3863
3864 assert(u);
3865 assert(ucred);
3866
3867 if (!service_notify_message_authorized(SERVICE(u), ucred->pid, tags, fds))
3868 return;
3869
3870 if (DEBUG_LOGGING) {
3871 _cleanup_free_ char *cc = NULL;
3872
3873 cc = strv_join(tags, ", ");
3874 log_unit_debug(u, "Got notification message from PID "PID_FMT" (%s)", ucred->pid, isempty(cc) ? "n/a" : cc);
3875 }
3876
3877 /* Interpret MAINPID= */
3878 e = strv_find_startswith(tags, "MAINPID=");
3879 if (e && IN_SET(s->state, SERVICE_START, SERVICE_START_POST, SERVICE_RUNNING, SERVICE_RELOAD)) {
3880 pid_t new_main_pid;
3881
3882 if (parse_pid(e, &new_main_pid) < 0)
3883 log_unit_warning(u, "Failed to parse MAINPID= field in notification message, ignoring: %s", e);
3884 else if (!s->main_pid_known || new_main_pid != s->main_pid) {
3885
3886 r = service_is_suitable_main_pid(s, new_main_pid, LOG_WARNING);
3887 if (r == 0) {
3888 /* The new main PID is a bit suspicious, which is OK if the sender is privileged. */
3889
3890 if (ucred->uid == 0) {
3891 log_unit_debug(u, "New main PID "PID_FMT" does not belong to service, but we'll accept it as the request to change it came from a privileged process.", new_main_pid);
3892 r = 1;
3893 } else
3894 log_unit_debug(u, "New main PID "PID_FMT" does not belong to service, refusing.", new_main_pid);
3895 }
3896 if (r > 0) {
3897 service_set_main_pid(s, new_main_pid);
3898
3899 r = unit_watch_pid(UNIT(s), new_main_pid, false);
3900 if (r < 0)
3901 log_unit_warning_errno(UNIT(s), r, "Failed to watch new main PID "PID_FMT" for service: %m", new_main_pid);
3902
3903 notify_dbus = true;
3904 }
3905 }
3906 }
3907
3908 /* Interpret READY=/STOPPING=/RELOADING=. Last one wins. */
3909 STRV_FOREACH_BACKWARDS(i, tags) {
3910
3911 if (streq(*i, "READY=1")) {
3912 s->notify_state = NOTIFY_READY;
3913
3914 /* Type=notify services inform us about completed
3915 * initialization with READY=1 */
3916 if (s->type == SERVICE_NOTIFY && s->state == SERVICE_START)
3917 service_enter_start_post(s);
3918
3919 /* Sending READY=1 while we are reloading informs us
3920 * that the reloading is complete */
3921 if (s->state == SERVICE_RELOAD && s->control_pid == 0)
3922 service_enter_running(s, SERVICE_SUCCESS);
3923
3924 notify_dbus = true;
3925 break;
3926
3927 } else if (streq(*i, "RELOADING=1")) {
3928 s->notify_state = NOTIFY_RELOADING;
3929
3930 if (s->state == SERVICE_RUNNING)
3931 service_enter_reload_by_notify(s);
3932
3933 notify_dbus = true;
3934 break;
3935
3936 } else if (streq(*i, "STOPPING=1")) {
3937 s->notify_state = NOTIFY_STOPPING;
3938
3939 if (s->state == SERVICE_RUNNING)
3940 service_enter_stop_by_notify(s);
3941
3942 notify_dbus = true;
3943 break;
3944 }
3945 }
3946
3947 /* Interpret STATUS= */
3948 e = strv_find_startswith(tags, "STATUS=");
3949 if (e) {
3950 _cleanup_free_ char *t = NULL;
3951
3952 if (!isempty(e)) {
3953 /* Note that this size limit check is mostly paranoia: since the datagram size we are willing
3954 * to process is already limited to NOTIFY_BUFFER_MAX, this limit here should never be hit. */
3955 if (strlen(e) > STATUS_TEXT_MAX)
3956 log_unit_warning(u, "Status message overly long (%zu > %u), ignoring.", strlen(e), STATUS_TEXT_MAX);
3957 else if (!utf8_is_valid(e))
3958 log_unit_warning(u, "Status message in notification message is not UTF-8 clean, ignoring.");
3959 else {
3960 t = strdup(e);
3961 if (!t)
3962 log_oom();
3963 }
3964 }
3965
3966 if (!streq_ptr(s->status_text, t)) {
3967 free_and_replace(s->status_text, t);
3968 notify_dbus = true;
3969 }
3970 }
3971
3972 /* Interpret ERRNO= */
3973 e = strv_find_startswith(tags, "ERRNO=");
3974 if (e) {
3975 int status_errno;
3976
3977 status_errno = parse_errno(e);
3978 if (status_errno < 0)
3979 log_unit_warning_errno(u, status_errno,
3980 "Failed to parse ERRNO= field value '%s' in notification message: %m", e);
3981 else if (s->status_errno != status_errno) {
3982 s->status_errno = status_errno;
3983 notify_dbus = true;
3984 }
3985 }
3986
3987 /* Interpret EXTEND_TIMEOUT= */
3988 e = strv_find_startswith(tags, "EXTEND_TIMEOUT_USEC=");
3989 if (e) {
3990 usec_t extend_timeout_usec;
3991 if (safe_atou64(e, &extend_timeout_usec) < 0)
3992 log_unit_warning(u, "Failed to parse EXTEND_TIMEOUT_USEC=%s", e);
3993 else
3994 service_extend_timeout(s, extend_timeout_usec);
3995 }
3996
3997 /* Interpret WATCHDOG= */
3998 e = strv_find_startswith(tags, "WATCHDOG=");
3999 if (e) {
4000 if (streq(e, "1"))
4001 service_reset_watchdog(s);
4002 else if (streq(e, "trigger"))
4003 service_force_watchdog(s);
4004 else
4005 log_unit_warning(u, "Passed WATCHDOG= field is invalid, ignoring.");
4006 }
4007
4008 e = strv_find_startswith(tags, "WATCHDOG_USEC=");
4009 if (e) {
4010 usec_t watchdog_override_usec;
4011 if (safe_atou64(e, &watchdog_override_usec) < 0)
4012 log_unit_warning(u, "Failed to parse WATCHDOG_USEC=%s", e);
4013 else
4014 service_override_watchdog_timeout(s, watchdog_override_usec);
4015 }
4016
4017 /* Process FD store messages. Either FDSTOREREMOVE=1 for removal, or FDSTORE=1 for addition. In both cases,
4018 * process FDNAME= for picking the file descriptor name to use. Note that FDNAME= is required when removing
4019 * fds, but optional when pushing in new fds, for compatibility reasons. */
4020 if (strv_find(tags, "FDSTOREREMOVE=1")) {
4021 const char *name;
4022
4023 name = strv_find_startswith(tags, "FDNAME=");
4024 if (!name || !fdname_is_valid(name))
4025 log_unit_warning(u, "FDSTOREREMOVE=1 requested, but no valid file descriptor name passed, ignoring.");
4026 else
4027 service_remove_fd_store(s, name);
4028
4029 } else if (strv_find(tags, "FDSTORE=1")) {
4030 const char *name;
4031
4032 name = strv_find_startswith(tags, "FDNAME=");
4033 if (name && !fdname_is_valid(name)) {
4034 log_unit_warning(u, "Passed FDNAME= name is invalid, ignoring.");
4035 name = NULL;
4036 }
4037
4038 (void) service_add_fd_store_set(s, fds, name);
4039 }
4040
4041 /* Notify clients about changed status or main pid */
4042 if (notify_dbus)
4043 unit_add_to_dbus_queue(u);
4044 }
4045
4046 static int service_get_timeout(Unit *u, usec_t *timeout) {
4047 Service *s = SERVICE(u);
4048 uint64_t t;
4049 int r;
4050
4051 if (!s->timer_event_source)
4052 return 0;
4053
4054 r = sd_event_source_get_time(s->timer_event_source, &t);
4055 if (r < 0)
4056 return r;
4057 if (t == USEC_INFINITY)
4058 return 0;
4059
4060 *timeout = t;
4061 return 1;
4062 }
4063
4064 static void service_bus_name_owner_change(
4065 Unit *u,
4066 const char *old_owner,
4067 const char *new_owner) {
4068
4069 Service *s = SERVICE(u);
4070 int r;
4071
4072 assert(s);
4073
4074 assert(old_owner || new_owner);
4075
4076 if (old_owner && new_owner)
4077 log_unit_debug(u, "D-Bus name %s changed owner from %s to %s", s->bus_name, old_owner, new_owner);
4078 else if (old_owner)
4079 log_unit_debug(u, "D-Bus name %s no longer registered by %s", s->bus_name, old_owner);
4080 else
4081 log_unit_debug(u, "D-Bus name %s now registered by %s", s->bus_name, new_owner);
4082
4083 s->bus_name_good = !!new_owner;
4084
4085 /* Track the current owner, so we can reconstruct changes after a daemon reload */
4086 r = free_and_strdup(&s->bus_name_owner, new_owner);
4087 if (r < 0) {
4088 log_unit_error_errno(u, r, "Unable to set new bus name owner %s: %m", new_owner);
4089 return;
4090 }
4091
4092 if (s->type == SERVICE_DBUS) {
4093
4094 /* service_enter_running() will figure out what to
4095 * do */
4096 if (s->state == SERVICE_RUNNING)
4097 service_enter_running(s, SERVICE_SUCCESS);
4098 else if (s->state == SERVICE_START && new_owner)
4099 service_enter_start_post(s);
4100
4101 } else if (new_owner &&
4102 s->main_pid <= 0 &&
4103 IN_SET(s->state,
4104 SERVICE_START,
4105 SERVICE_START_POST,
4106 SERVICE_RUNNING,
4107 SERVICE_RELOAD)) {
4108
4109 _cleanup_(sd_bus_creds_unrefp) sd_bus_creds *creds = NULL;
4110 pid_t pid;
4111
4112 /* Try to acquire PID from bus service */
4113
4114 r = sd_bus_get_name_creds(u->manager->api_bus, s->bus_name, SD_BUS_CREDS_PID, &creds);
4115 if (r >= 0)
4116 r = sd_bus_creds_get_pid(creds, &pid);
4117 if (r >= 0) {
4118 log_unit_debug(u, "D-Bus name %s is now owned by process " PID_FMT, s->bus_name, pid);
4119
4120 service_set_main_pid(s, pid);
4121 unit_watch_pid(UNIT(s), pid, false);
4122 }
4123 }
4124 }
4125
4126 int service_set_socket_fd(Service *s, int fd, Socket *sock, bool selinux_context_net) {
4127 _cleanup_free_ char *peer = NULL;
4128 int r;
4129
4130 assert(s);
4131 assert(fd >= 0);
4132
4133 /* This is called by the socket code when instantiating a new service for a stream socket and the socket needs
4134 * to be configured. We take ownership of the passed fd on success. */
4135
4136 if (UNIT(s)->load_state != UNIT_LOADED)
4137 return -EINVAL;
4138
4139 if (s->socket_fd >= 0)
4140 return -EBUSY;
4141
4142 if (s->state != SERVICE_DEAD)
4143 return -EAGAIN;
4144
4145 if (getpeername_pretty(fd, true, &peer) >= 0) {
4146
4147 if (UNIT(s)->description) {
4148 _cleanup_free_ char *a;
4149
4150 a = strjoin(UNIT(s)->description, " (", peer, ")");
4151 if (!a)
4152 return -ENOMEM;
4153
4154 r = unit_set_description(UNIT(s), a);
4155 } else
4156 r = unit_set_description(UNIT(s), peer);
4157
4158 if (r < 0)
4159 return r;
4160 }
4161
4162 r = unit_add_two_dependencies(UNIT(sock), UNIT_BEFORE, UNIT_TRIGGERS, UNIT(s), false, UNIT_DEPENDENCY_IMPLICIT);
4163 if (r < 0)
4164 return r;
4165
4166 s->socket_fd = fd;
4167 s->socket_fd_selinux_context_net = selinux_context_net;
4168
4169 unit_ref_set(&s->accept_socket, UNIT(s), UNIT(sock));
4170 return 0;
4171 }
4172
4173 static void service_reset_failed(Unit *u) {
4174 Service *s = SERVICE(u);
4175
4176 assert(s);
4177
4178 if (s->state == SERVICE_FAILED)
4179 service_set_state(s, SERVICE_DEAD);
4180
4181 s->result = SERVICE_SUCCESS;
4182 s->reload_result = SERVICE_SUCCESS;
4183 s->clean_result = SERVICE_SUCCESS;
4184 s->n_restarts = 0;
4185 s->flush_n_restarts = false;
4186 }
4187
4188 static int service_kill(Unit *u, KillWho who, int signo, sd_bus_error *error) {
4189 Service *s = SERVICE(u);
4190
4191 assert(s);
4192
4193 return unit_kill_common(u, who, signo, s->main_pid, s->control_pid, error);
4194 }
4195
4196 static int service_main_pid(Unit *u) {
4197 Service *s = SERVICE(u);
4198
4199 assert(s);
4200
4201 return s->main_pid;
4202 }
4203
4204 static int service_control_pid(Unit *u) {
4205 Service *s = SERVICE(u);
4206
4207 assert(s);
4208
4209 return s->control_pid;
4210 }
4211
4212 static bool service_needs_console(Unit *u) {
4213 Service *s = SERVICE(u);
4214
4215 assert(s);
4216
4217 /* We provide our own implementation of this here, instead of relying of the generic implementation
4218 * unit_needs_console() provides, since we want to return false if we are in SERVICE_EXITED state. */
4219
4220 if (!exec_context_may_touch_console(&s->exec_context))
4221 return false;
4222
4223 return IN_SET(s->state,
4224 SERVICE_CONDITION,
4225 SERVICE_START_PRE,
4226 SERVICE_START,
4227 SERVICE_START_POST,
4228 SERVICE_RUNNING,
4229 SERVICE_RELOAD,
4230 SERVICE_STOP,
4231 SERVICE_STOP_WATCHDOG,
4232 SERVICE_STOP_SIGTERM,
4233 SERVICE_STOP_SIGKILL,
4234 SERVICE_STOP_POST,
4235 SERVICE_FINAL_SIGTERM,
4236 SERVICE_FINAL_SIGKILL);
4237 }
4238
4239 static int service_exit_status(Unit *u) {
4240 Service *s = SERVICE(u);
4241
4242 assert(u);
4243
4244 if (s->main_exec_status.pid <= 0 ||
4245 !dual_timestamp_is_set(&s->main_exec_status.exit_timestamp))
4246 return -ENODATA;
4247
4248 if (s->main_exec_status.code != CLD_EXITED)
4249 return -EBADE;
4250
4251 return s->main_exec_status.status;
4252 }
4253
4254 static int service_clean(Unit *u, ExecCleanMask mask) {
4255 _cleanup_strv_free_ char **l = NULL;
4256 Service *s = SERVICE(u);
4257 int r;
4258
4259 assert(s);
4260 assert(mask != 0);
4261
4262 if (s->state != SERVICE_DEAD)
4263 return -EBUSY;
4264
4265 r = exec_context_get_clean_directories(&s->exec_context, u->manager->prefix, mask, &l);
4266 if (r < 0)
4267 return r;
4268
4269 if (strv_isempty(l))
4270 return -EUNATCH;
4271
4272 service_unwatch_control_pid(s);
4273 s->clean_result = SERVICE_SUCCESS;
4274 s->control_command = NULL;
4275 s->control_command_id = _SERVICE_EXEC_COMMAND_INVALID;
4276
4277 r = service_arm_timer(s, usec_add(now(CLOCK_MONOTONIC), s->exec_context.timeout_clean_usec));
4278 if (r < 0)
4279 goto fail;
4280
4281 r = unit_fork_and_watch_rm_rf(u, l, &s->control_pid);
4282 if (r < 0)
4283 goto fail;
4284
4285 service_set_state(s, SERVICE_CLEANING);
4286
4287 return 0;
4288
4289 fail:
4290 log_unit_warning_errno(u, r, "Failed to initiate cleaning: %m");
4291 s->clean_result = SERVICE_FAILURE_RESOURCES;
4292 s->timer_event_source = sd_event_source_unref(s->timer_event_source);
4293 return r;
4294 }
4295
4296 static int service_can_clean(Unit *u, ExecCleanMask *ret) {
4297 Service *s = SERVICE(u);
4298
4299 assert(s);
4300
4301 return exec_context_get_clean_mask(&s->exec_context, ret);
4302 }
4303
4304 static const char* const service_restart_table[_SERVICE_RESTART_MAX] = {
4305 [SERVICE_RESTART_NO] = "no",
4306 [SERVICE_RESTART_ON_SUCCESS] = "on-success",
4307 [SERVICE_RESTART_ON_FAILURE] = "on-failure",
4308 [SERVICE_RESTART_ON_ABNORMAL] = "on-abnormal",
4309 [SERVICE_RESTART_ON_WATCHDOG] = "on-watchdog",
4310 [SERVICE_RESTART_ON_ABORT] = "on-abort",
4311 [SERVICE_RESTART_ALWAYS] = "always",
4312 };
4313
4314 DEFINE_STRING_TABLE_LOOKUP(service_restart, ServiceRestart);
4315
4316 static const char* const service_type_table[_SERVICE_TYPE_MAX] = {
4317 [SERVICE_SIMPLE] = "simple",
4318 [SERVICE_FORKING] = "forking",
4319 [SERVICE_ONESHOT] = "oneshot",
4320 [SERVICE_DBUS] = "dbus",
4321 [SERVICE_NOTIFY] = "notify",
4322 [SERVICE_IDLE] = "idle",
4323 [SERVICE_EXEC] = "exec",
4324 };
4325
4326 DEFINE_STRING_TABLE_LOOKUP(service_type, ServiceType);
4327
4328 static const char* const service_exec_command_table[_SERVICE_EXEC_COMMAND_MAX] = {
4329 [SERVICE_EXEC_CONDITION] = "ExecCondition",
4330 [SERVICE_EXEC_START_PRE] = "ExecStartPre",
4331 [SERVICE_EXEC_START] = "ExecStart",
4332 [SERVICE_EXEC_START_POST] = "ExecStartPost",
4333 [SERVICE_EXEC_RELOAD] = "ExecReload",
4334 [SERVICE_EXEC_STOP] = "ExecStop",
4335 [SERVICE_EXEC_STOP_POST] = "ExecStopPost",
4336 };
4337
4338 DEFINE_STRING_TABLE_LOOKUP(service_exec_command, ServiceExecCommand);
4339
4340 static const char* const service_exec_ex_command_table[_SERVICE_EXEC_COMMAND_MAX] = {
4341 [SERVICE_EXEC_CONDITION] = "ExecConditionEx",
4342 [SERVICE_EXEC_START_PRE] = "ExecStartPreEx",
4343 [SERVICE_EXEC_START] = "ExecStartEx",
4344 [SERVICE_EXEC_START_POST] = "ExecStartPostEx",
4345 [SERVICE_EXEC_RELOAD] = "ExecReloadEx",
4346 [SERVICE_EXEC_STOP] = "ExecStopEx",
4347 [SERVICE_EXEC_STOP_POST] = "ExecStopPostEx",
4348 };
4349
4350 DEFINE_STRING_TABLE_LOOKUP(service_exec_ex_command, ServiceExecCommand);
4351
4352 static const char* const notify_state_table[_NOTIFY_STATE_MAX] = {
4353 [NOTIFY_UNKNOWN] = "unknown",
4354 [NOTIFY_READY] = "ready",
4355 [NOTIFY_RELOADING] = "reloading",
4356 [NOTIFY_STOPPING] = "stopping",
4357 };
4358
4359 DEFINE_STRING_TABLE_LOOKUP(notify_state, NotifyState);
4360
4361 static const char* const service_result_table[_SERVICE_RESULT_MAX] = {
4362 [SERVICE_SUCCESS] = "success",
4363 [SERVICE_FAILURE_RESOURCES] = "resources",
4364 [SERVICE_FAILURE_PROTOCOL] = "protocol",
4365 [SERVICE_FAILURE_TIMEOUT] = "timeout",
4366 [SERVICE_FAILURE_EXIT_CODE] = "exit-code",
4367 [SERVICE_FAILURE_SIGNAL] = "signal",
4368 [SERVICE_FAILURE_CORE_DUMP] = "core-dump",
4369 [SERVICE_FAILURE_WATCHDOG] = "watchdog",
4370 [SERVICE_FAILURE_START_LIMIT_HIT] = "start-limit-hit",
4371 [SERVICE_FAILURE_OOM_KILL] = "oom-kill",
4372 [SERVICE_SKIP_CONDITION] = "exec-condition",
4373 };
4374
4375 DEFINE_STRING_TABLE_LOOKUP(service_result, ServiceResult);
4376
4377 const UnitVTable service_vtable = {
4378 .object_size = sizeof(Service),
4379 .exec_context_offset = offsetof(Service, exec_context),
4380 .cgroup_context_offset = offsetof(Service, cgroup_context),
4381 .kill_context_offset = offsetof(Service, kill_context),
4382 .exec_runtime_offset = offsetof(Service, exec_runtime),
4383 .dynamic_creds_offset = offsetof(Service, dynamic_creds),
4384
4385 .sections =
4386 "Unit\0"
4387 "Service\0"
4388 "Install\0",
4389 .private_section = "Service",
4390
4391 .can_transient = true,
4392 .can_delegate = true,
4393
4394 .init = service_init,
4395 .done = service_done,
4396 .load = service_load,
4397 .release_resources = service_release_resources,
4398
4399 .coldplug = service_coldplug,
4400
4401 .dump = service_dump,
4402
4403 .start = service_start,
4404 .stop = service_stop,
4405 .reload = service_reload,
4406
4407 .can_reload = service_can_reload,
4408
4409 .kill = service_kill,
4410 .clean = service_clean,
4411 .can_clean = service_can_clean,
4412
4413 .serialize = service_serialize,
4414 .deserialize_item = service_deserialize_item,
4415
4416 .active_state = service_active_state,
4417 .sub_state_to_string = service_sub_state_to_string,
4418
4419 .will_restart = service_will_restart,
4420
4421 .may_gc = service_may_gc,
4422
4423 .sigchld_event = service_sigchld_event,
4424
4425 .reset_failed = service_reset_failed,
4426
4427 .notify_cgroup_empty = service_notify_cgroup_empty_event,
4428 .notify_cgroup_oom = service_notify_cgroup_oom_event,
4429 .notify_message = service_notify_message,
4430
4431 .main_pid = service_main_pid,
4432 .control_pid = service_control_pid,
4433
4434 .bus_name_owner_change = service_bus_name_owner_change,
4435
4436 .bus_vtable = bus_service_vtable,
4437 .bus_set_property = bus_service_set_property,
4438 .bus_commit_properties = bus_service_commit_properties,
4439
4440 .get_timeout = service_get_timeout,
4441 .needs_console = service_needs_console,
4442 .exit_status = service_exit_status,
4443
4444 .status_message_formats = {
4445 .starting_stopping = {
4446 [0] = "Starting %s...",
4447 [1] = "Stopping %s...",
4448 },
4449 .finished_start_job = {
4450 [JOB_DONE] = "Started %s.",
4451 [JOB_FAILED] = "Failed to start %s.",
4452 [JOB_SKIPPED] = "Skipped %s.",
4453 },
4454 .finished_stop_job = {
4455 [JOB_DONE] = "Stopped %s.",
4456 [JOB_FAILED] = "Stopped (with error) %s.",
4457 },
4458 },
4459 };