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