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