]> git.proxmox.com Git - systemd.git/blame - src/core/service.c
New upstream version 249~rc2
[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
8b3d4ff0
MB
671 /* If s->bus_name is not set, then the unit will be refused by service_verify() later. */
672 if (s->type != SERVICE_DBUS || !s->bus_name)
db2df898
MP
673 return 0;
674
6e866b33 675 r = unit_add_dependency_by_name(UNIT(s), UNIT_REQUIRES, SPECIAL_DBUS_SOCKET, true, UNIT_DEPENDENCY_FILE);
5a920b42
MP
676 if (r < 0)
677 return log_unit_error_errno(UNIT(s), r, "Failed to add dependency on " SPECIAL_DBUS_SOCKET ": %m");
db2df898 678
f5e65279 679 /* We always want to be ordered against dbus.socket if both are in the transaction. */
6e866b33 680 r = unit_add_dependency_by_name(UNIT(s), UNIT_AFTER, SPECIAL_DBUS_SOCKET, true, UNIT_DEPENDENCY_FILE);
db2df898
MP
681 if (r < 0)
682 return log_unit_error_errno(UNIT(s), r, "Failed to add dependency on " SPECIAL_DBUS_SOCKET ": %m");
683
684 r = unit_watch_bus_name(UNIT(s), s->bus_name);
685 if (r == -EEXIST)
686 return log_unit_error_errno(UNIT(s), r, "Two services allocated for the same bus name %s, refusing operation.", s->bus_name);
687 if (r < 0)
688 return log_unit_error_errno(UNIT(s), r, "Cannot watch bus name %s: %m", s->bus_name);
689
690 return 0;
691}
692
e735f4d4
MP
693static int service_add_extras(Service *s) {
694 int r;
695
696 assert(s);
697
698 if (s->type == _SERVICE_TYPE_INVALID) {
699 /* Figure out a type automatically */
700 if (s->bus_name)
701 s->type = SERVICE_DBUS;
702 else if (s->exec_command[SERVICE_EXEC_START])
703 s->type = SERVICE_SIMPLE;
704 else
705 s->type = SERVICE_ONESHOT;
706 }
707
708 /* Oneshot services have disabled start timeout by default */
709 if (s->type == SERVICE_ONESHOT && !s->start_timeout_defined)
4c89c718 710 s->timeout_start_usec = USEC_INFINITY;
e735f4d4 711
97e5042f 712 service_fix_stdio(s);
e735f4d4
MP
713
714 r = unit_patch_contexts(UNIT(s));
715 if (r < 0)
716 return r;
717
718 r = unit_add_exec_dependencies(UNIT(s), &s->exec_context);
719 if (r < 0)
720 return r;
721
d9dfd233 722 r = unit_set_default_slice(UNIT(s));
e735f4d4
MP
723 if (r < 0)
724 return r;
725
b012e921
MB
726 /* If the service needs the notify socket, let's enable it automatically. */
727 if (s->notify_access == NOTIFY_NONE &&
728 (s->type == SERVICE_NOTIFY || s->watchdog_usec > 0 || s->n_fd_store_max > 0))
e735f4d4
MP
729 s->notify_access = NOTIFY_MAIN;
730
f2dec872
BR
731 /* If no OOM policy was explicitly set, then default to the configure default OOM policy. Except when
732 * delegation is on, in that case it we assume the payload knows better what to do and can process
733 * things in a more focused way. */
734 if (s->oom_policy < 0)
735 s->oom_policy = s->cgroup_context.delegate ? OOM_CONTINUE : UNIT(s)->manager->default_oom_policy;
736
737 /* Let the kernel do the killing if that's requested. */
738 s->cgroup_context.memory_oom_group = s->oom_policy == OOM_KILL;
739
db2df898
MP
740 r = service_add_default_dependencies(s);
741 if (r < 0)
742 return r;
e735f4d4 743
db2df898
MP
744 r = service_setup_bus_name(s);
745 if (r < 0)
746 return r;
e735f4d4
MP
747
748 return 0;
749}
750
663996b3 751static int service_load(Unit *u) {
663996b3 752 Service *s = SERVICE(u);
5eef597e 753 int r;
663996b3 754
e1f67bc7 755 r = unit_load_fragment_and_dropin(u, true);
14228c0d 756 if (r < 0)
663996b3
MS
757 return r;
758
e1f67bc7
MB
759 if (u->load_state != UNIT_LOADED)
760 return 0;
663996b3 761
663996b3 762 /* This is a new unit? Then let's add in some extras */
e1f67bc7
MB
763 r = service_add_extras(s);
764 if (r < 0)
765 return r;
663996b3
MS
766
767 return service_verify(s);
768}
769
770static void service_dump(Unit *u, FILE *f, const char *prefix) {
f2dec872 771 char buf_restart[FORMAT_TIMESPAN_MAX], buf_start[FORMAT_TIMESPAN_MAX], buf_stop[FORMAT_TIMESPAN_MAX],
812752cc 772 buf_runtime[FORMAT_TIMESPAN_MAX], buf_watchdog[FORMAT_TIMESPAN_MAX], buf_abort[FORMAT_TIMESPAN_MAX];
663996b3
MS
773 ServiceExecCommand c;
774 Service *s = SERVICE(u);
775 const char *prefix2;
663996b3
MS
776
777 assert(s);
778
5eef597e 779 prefix = strempty(prefix);
e735f4d4 780 prefix2 = strjoina(prefix, "\t");
663996b3
MS
781
782 fprintf(f,
783 "%sService State: %s\n"
784 "%sResult: %s\n"
785 "%sReload Result: %s\n"
f2dec872 786 "%sClean Result: %s\n"
663996b3
MS
787 "%sPermissionsStartOnly: %s\n"
788 "%sRootDirectoryStartOnly: %s\n"
789 "%sRemainAfterExit: %s\n"
790 "%sGuessMainPID: %s\n"
791 "%sType: %s\n"
792 "%sRestart: %s\n"
5eef597e 793 "%sNotifyAccess: %s\n"
f2dec872
BR
794 "%sNotifyState: %s\n"
795 "%sOOMPolicy: %s\n",
663996b3
MS
796 prefix, service_state_to_string(s->state),
797 prefix, service_result_to_string(s->result),
798 prefix, service_result_to_string(s->reload_result),
f2dec872 799 prefix, service_result_to_string(s->clean_result),
663996b3
MS
800 prefix, yes_no(s->permissions_start_only),
801 prefix, yes_no(s->root_directory_start_only),
802 prefix, yes_no(s->remain_after_exit),
803 prefix, yes_no(s->guess_main_pid),
804 prefix, service_type_to_string(s->type),
805 prefix, service_restart_to_string(s->restart),
5eef597e 806 prefix, notify_access_to_string(s->notify_access),
f2dec872
BR
807 prefix, notify_state_to_string(s->notify_state),
808 prefix, oom_policy_to_string(s->oom_policy));
663996b3
MS
809
810 if (s->control_pid > 0)
811 fprintf(f,
60f067b4
JS
812 "%sControl PID: "PID_FMT"\n",
813 prefix, s->control_pid);
663996b3
MS
814
815 if (s->main_pid > 0)
816 fprintf(f,
60f067b4 817 "%sMain PID: "PID_FMT"\n"
663996b3
MS
818 "%sMain PID Known: %s\n"
819 "%sMain PID Alien: %s\n",
60f067b4 820 prefix, s->main_pid,
663996b3
MS
821 prefix, yes_no(s->main_pid_known),
822 prefix, yes_no(s->main_pid_alien));
823
824 if (s->pid_file)
825 fprintf(f,
826 "%sPIDFile: %s\n",
827 prefix, s->pid_file);
828
829 if (s->bus_name)
830 fprintf(f,
831 "%sBusName: %s\n"
832 "%sBus Name Good: %s\n",
833 prefix, s->bus_name,
834 prefix, yes_no(s->bus_name_good));
835
8a584da2
MP
836 if (UNIT_ISSET(s->accept_socket))
837 fprintf(f,
838 "%sAccept Socket: %s\n",
839 prefix, UNIT_DEREF(s->accept_socket)->id);
840
98393f85
MB
841 fprintf(f,
842 "%sRestartSec: %s\n"
843 "%sTimeoutStartSec: %s\n"
a10f5d05
MB
844 "%sTimeoutStopSec: %s\n"
845 "%sTimeoutStartFailureMode: %s\n"
846 "%sTimeoutStopFailureMode: %s\n",
98393f85
MB
847 prefix, format_timespan(buf_restart, sizeof(buf_restart), s->restart_usec, USEC_PER_SEC),
848 prefix, format_timespan(buf_start, sizeof(buf_start), s->timeout_start_usec, USEC_PER_SEC),
a10f5d05
MB
849 prefix, format_timespan(buf_stop, sizeof(buf_stop), s->timeout_stop_usec, USEC_PER_SEC),
850 prefix, service_timeout_failure_mode_to_string(s->timeout_start_failure_mode),
851 prefix, service_timeout_failure_mode_to_string(s->timeout_stop_failure_mode));
f2dec872
BR
852
853 if (s->timeout_abort_set)
854 fprintf(f,
855 "%sTimeoutAbortSec: %s\n",
856 prefix, format_timespan(buf_abort, sizeof(buf_abort), s->timeout_abort_usec, USEC_PER_SEC));
857
858 fprintf(f,
f2dec872
BR
859 "%sRuntimeMaxSec: %s\n"
860 "%sWatchdogSec: %s\n",
98393f85
MB
861 prefix, format_timespan(buf_runtime, sizeof(buf_runtime), s->runtime_max_usec, USEC_PER_SEC),
862 prefix, format_timespan(buf_watchdog, sizeof(buf_watchdog), s->watchdog_usec, USEC_PER_SEC));
863
663996b3
MS
864 kill_context_dump(&s->kill_context, f, prefix);
865 exec_context_dump(&s->exec_context, f, prefix);
866
867 for (c = 0; c < _SERVICE_EXEC_COMMAND_MAX; c++) {
868
869 if (!s->exec_command[c])
870 continue;
871
872 fprintf(f, "%s-> %s:\n",
873 prefix, service_exec_command_to_string(c));
874
875 exec_command_dump_list(s->exec_command[c], f, prefix2);
876 }
877
663996b3
MS
878 if (s->status_text)
879 fprintf(f, "%sStatus Text: %s\n",
880 prefix, s->status_text);
e735f4d4 881
6300502b 882 if (s->n_fd_store_max > 0)
e735f4d4
MP
883 fprintf(f,
884 "%sFile Descriptor Store Max: %u\n"
b012e921 885 "%sFile Descriptor Store Current: %zu\n",
e735f4d4
MP
886 prefix, s->n_fd_store_max,
887 prefix, s->n_fd_store);
f5e65279 888
e1f67bc7 889 cgroup_context_dump(UNIT(s), f, prefix);
663996b3
MS
890}
891
1d42b86d
MB
892static int service_is_suitable_main_pid(Service *s, pid_t pid, int prio) {
893 Unit *owner;
894
895 assert(s);
896 assert(pid_is_valid(pid));
897
898 /* Checks whether the specified PID is suitable as main PID for this service. returns negative if not, 0 if the
899 * PID is questionnable but should be accepted if the source of configuration is trusted. > 0 if the PID is
900 * good */
901
3a6ce677
BR
902 if (pid == getpid_cached() || pid == 1)
903 return log_unit_full_errno(UNIT(s), prio, SYNTHETIC_ERRNO(EPERM), "New main PID "PID_FMT" is the manager, refusing.", pid);
1d42b86d 904
3a6ce677
BR
905 if (pid == s->control_pid)
906 return log_unit_full_errno(UNIT(s), prio, SYNTHETIC_ERRNO(EPERM), "New main PID "PID_FMT" is the control process, refusing.", pid);
1d42b86d 907
3a6ce677
BR
908 if (!pid_is_alive(pid))
909 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
910
911 owner = manager_get_unit_by_pid(UNIT(s)->manager, pid);
912 if (owner == UNIT(s)) {
913 log_unit_debug(UNIT(s), "New main PID "PID_FMT" belongs to service, we are happy.", pid);
914 return 1; /* Yay, it's definitely a good PID */
915 }
916
917 return 0; /* Hmm it's a suspicious PID, let's accept it if configuration source is trusted */
918}
919
663996b3 920static int service_load_pid_file(Service *s, bool may_warn) {
1d42b86d 921 char procfs[STRLEN("/proc/self/fd/") + DECIMAL_STR_MAX(int)];
98393f85 922 bool questionable_pid_file = false;
663996b3 923 _cleanup_free_ char *k = NULL;
1d42b86d
MB
924 _cleanup_close_ int fd = -1;
925 int r, prio;
663996b3
MS
926 pid_t pid;
927
928 assert(s);
929
930 if (!s->pid_file)
931 return -ENOENT;
932
1d42b86d
MB
933 prio = may_warn ? LOG_INFO : LOG_DEBUG;
934
e1f67bc7
MB
935 r = chase_symlinks(s->pid_file, NULL, CHASE_SAFE, NULL, &fd);
936 if (r == -ENOLINK) {
7de6915e
MB
937 log_unit_debug_errno(UNIT(s), r,
938 "Potentially unsafe symlink chain, will now retry with relaxed checks: %s", s->pid_file);
98393f85
MB
939
940 questionable_pid_file = true;
941
e1f67bc7 942 r = chase_symlinks(s->pid_file, NULL, 0, NULL, &fd);
98393f85 943 }
e1f67bc7 944 if (r < 0)
7de6915e
MB
945 return log_unit_full_errno(UNIT(s), prio, fd,
946 "Can't open PID file %s (yet?) after %s: %m", s->pid_file, service_state_to_string(s->state));
1d42b86d 947
e1f67bc7
MB
948 /* Let's read the PID file now that we chased it down. But we need to convert the O_PATH fd
949 * chase_symlinks() returned us into a proper fd first. */
1d42b86d
MB
950 xsprintf(procfs, "/proc/self/fd/%i", fd);
951 r = read_one_line_file(procfs, &k);
952 if (r < 0)
e1f67bc7
MB
953 return log_unit_error_errno(UNIT(s), r,
954 "Can't convert PID files %s O_PATH file descriptor to proper file descriptor: %m",
955 s->pid_file);
663996b3
MS
956
957 r = parse_pid(k, &pid);
1d42b86d 958 if (r < 0)
7de6915e 959 return log_unit_full_errno(UNIT(s), prio, r, "Failed to parse PID from file %s: %m", s->pid_file);
1d42b86d
MB
960
961 if (s->main_pid_known && pid == s->main_pid)
962 return 0;
963
964 r = service_is_suitable_main_pid(s, pid, prio);
965 if (r < 0)
663996b3 966 return r;
1d42b86d
MB
967 if (r == 0) {
968 struct stat st;
663996b3 969
3a6ce677
BR
970 if (questionable_pid_file)
971 return log_unit_error_errno(UNIT(s), SYNTHETIC_ERRNO(EPERM),
972 "Refusing to accept PID outside of service control group, acquired through unsafe symlink chain: %s", s->pid_file);
98393f85 973
1d42b86d
MB
974 /* Hmm, it's not clear if the new main PID is safe. Let's allow this if the PID file is owned by root */
975
976 if (fstat(fd, &st) < 0)
977 return log_unit_error_errno(UNIT(s), errno, "Failed to fstat() PID file O_PATH fd: %m");
978
3a6ce677
BR
979 if (st.st_uid != 0)
980 return log_unit_error_errno(UNIT(s), SYNTHETIC_ERRNO(EPERM),
981 "New main PID "PID_FMT" does not belong to service, and PID file is not owned by root. Refusing.", pid);
1d42b86d
MB
982
983 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
984 }
985
986 if (s->main_pid_known) {
e3bff60a 987 log_unit_debug(UNIT(s), "Main PID changing: "PID_FMT" -> "PID_FMT, s->main_pid, pid);
5eef597e 988
663996b3
MS
989 service_unwatch_main_pid(s);
990 s->main_pid_known = false;
991 } else
e3bff60a 992 log_unit_debug(UNIT(s), "Main PID loaded: "PID_FMT, pid);
663996b3
MS
993
994 r = service_set_main_pid(s, pid);
995 if (r < 0)
996 return r;
997
bb4f798a 998 r = unit_watch_pid(UNIT(s), pid, false);
2897b343
MP
999 if (r < 0) /* FIXME: we need to do something here */
1000 return log_unit_warning_errno(UNIT(s), r, "Failed to watch PID "PID_FMT" for service: %m", pid);
663996b3 1001
1d42b86d 1002 return 1;
663996b3
MS
1003}
1004
aa27b158 1005static void service_search_main_pid(Service *s) {
d9dfd233 1006 pid_t pid = 0;
663996b3
MS
1007 int r;
1008
1009 assert(s);
1010
a032b68d 1011 /* If we know it anyway, don't ever fall back to unreliable
663996b3
MS
1012 * heuristics */
1013 if (s->main_pid_known)
aa27b158 1014 return;
663996b3
MS
1015
1016 if (!s->guess_main_pid)
aa27b158 1017 return;
663996b3
MS
1018
1019 assert(s->main_pid <= 0);
1020
aa27b158
MP
1021 if (unit_search_main_pid(UNIT(s), &pid) < 0)
1022 return;
663996b3 1023
e3bff60a 1024 log_unit_debug(UNIT(s), "Main PID guessed: "PID_FMT, pid);
aa27b158
MP
1025 if (service_set_main_pid(s, pid) < 0)
1026 return;
663996b3 1027
bb4f798a 1028 r = unit_watch_pid(UNIT(s), pid, false);
aa27b158 1029 if (r < 0)
663996b3 1030 /* FIXME: we need to do something here */
e3bff60a 1031 log_unit_warning_errno(UNIT(s), r, "Failed to watch PID "PID_FMT" from: %m", pid);
663996b3
MS
1032}
1033
663996b3
MS
1034static void service_set_state(Service *s, ServiceState state) {
1035 ServiceState old_state;
1036 const UnitActiveState *table;
60f067b4 1037
663996b3
MS
1038 assert(s);
1039
6e866b33
MB
1040 if (s->state != state)
1041 bus_unit_send_pending_change_signal(UNIT(s), false);
1042
663996b3
MS
1043 table = s->type == SERVICE_IDLE ? state_translation_table_idle : state_translation_table;
1044
1045 old_state = s->state;
1046 s->state = state;
1047
1048 service_unwatch_pid_file(s);
1049
60f067b4 1050 if (!IN_SET(state,
f2dec872 1051 SERVICE_CONDITION, SERVICE_START_PRE, SERVICE_START, SERVICE_START_POST,
4c89c718 1052 SERVICE_RUNNING,
60f067b4 1053 SERVICE_RELOAD,
6e866b33 1054 SERVICE_STOP, SERVICE_STOP_WATCHDOG, SERVICE_STOP_SIGTERM, SERVICE_STOP_SIGKILL, SERVICE_STOP_POST,
a10f5d05 1055 SERVICE_FINAL_WATCHDOG, SERVICE_FINAL_SIGTERM, SERVICE_FINAL_SIGKILL,
f2dec872
BR
1056 SERVICE_AUTO_RESTART,
1057 SERVICE_CLEANING))
60f067b4
JS
1058 s->timer_event_source = sd_event_source_unref(s->timer_event_source);
1059
1060 if (!IN_SET(state,
1061 SERVICE_START, SERVICE_START_POST,
1062 SERVICE_RUNNING, SERVICE_RELOAD,
6e866b33 1063 SERVICE_STOP, SERVICE_STOP_WATCHDOG, SERVICE_STOP_SIGTERM, SERVICE_STOP_SIGKILL, SERVICE_STOP_POST,
a10f5d05 1064 SERVICE_FINAL_WATCHDOG, SERVICE_FINAL_SIGTERM, SERVICE_FINAL_SIGKILL)) {
663996b3
MS
1065 service_unwatch_main_pid(s);
1066 s->main_command = NULL;
1067 }
1068
60f067b4 1069 if (!IN_SET(state,
f2dec872 1070 SERVICE_CONDITION, SERVICE_START_PRE, SERVICE_START, SERVICE_START_POST,
60f067b4 1071 SERVICE_RELOAD,
6e866b33 1072 SERVICE_STOP, SERVICE_STOP_WATCHDOG, SERVICE_STOP_SIGTERM, SERVICE_STOP_SIGKILL, SERVICE_STOP_POST,
a10f5d05 1073 SERVICE_FINAL_WATCHDOG, SERVICE_FINAL_SIGTERM, SERVICE_FINAL_SIGKILL,
f2dec872 1074 SERVICE_CLEANING)) {
663996b3
MS
1075 service_unwatch_control_pid(s);
1076 s->control_command = NULL;
1077 s->control_command_id = _SERVICE_EXEC_COMMAND_INVALID;
1078 }
1079
b012e921 1080 if (IN_SET(state, SERVICE_DEAD, SERVICE_FAILED, SERVICE_AUTO_RESTART)) {
60f067b4 1081 unit_unwatch_all_pids(UNIT(s));
b012e921
MB
1082 unit_dequeue_rewatch_pids(UNIT(s));
1083 }
60f067b4
JS
1084
1085 if (!IN_SET(state,
f2dec872 1086 SERVICE_CONDITION, SERVICE_START_PRE, SERVICE_START, SERVICE_START_POST,
60f067b4 1087 SERVICE_RUNNING, SERVICE_RELOAD,
6e866b33 1088 SERVICE_STOP, SERVICE_STOP_WATCHDOG, SERVICE_STOP_SIGTERM, SERVICE_STOP_SIGKILL, SERVICE_STOP_POST,
a10f5d05 1089 SERVICE_FINAL_WATCHDOG, SERVICE_FINAL_SIGTERM, SERVICE_FINAL_SIGKILL) &&
aa27b158 1090 !(state == SERVICE_DEAD && UNIT(s)->job))
663996b3 1091 service_close_socket_fd(s);
663996b3 1092
6e866b33
MB
1093 if (state != SERVICE_START)
1094 s->exec_fd_event_source = sd_event_source_unref(s->exec_fd_event_source);
1095
60f067b4 1096 if (!IN_SET(state, SERVICE_START_POST, SERVICE_RUNNING, SERVICE_RELOAD))
663996b3
MS
1097 service_stop_watchdog(s);
1098
1099 /* For the inactive states unit_notify() will trim the cgroup,
1100 * but for exit we have to do that ourselves... */
aa27b158 1101 if (state == SERVICE_EXITED && !MANAGER_IS_RELOADING(UNIT(s)->manager))
d9dfd233 1102 unit_prune_cgroup(UNIT(s));
663996b3
MS
1103
1104 if (old_state != state)
e3bff60a 1105 log_unit_debug(UNIT(s), "Changed %s -> %s", service_state_to_string(old_state), service_state_to_string(state));
663996b3 1106
b012e921
MB
1107 unit_notify(UNIT(s), table[old_state], table[state],
1108 (s->reload_result == SERVICE_SUCCESS ? 0 : UNIT_NOTIFY_RELOAD_FAILURE) |
3a6ce677 1109 (s->will_auto_restart ? UNIT_NOTIFY_WILL_AUTO_RESTART : 0));
663996b3
MS
1110}
1111
4c89c718
MP
1112static usec_t service_coldplug_timeout(Service *s) {
1113 assert(s);
1114
1115 switch (s->deserialized_state) {
1116
f2dec872 1117 case SERVICE_CONDITION:
4c89c718
MP
1118 case SERVICE_START_PRE:
1119 case SERVICE_START:
1120 case SERVICE_START_POST:
1121 case SERVICE_RELOAD:
1122 return usec_add(UNIT(s)->state_change_timestamp.monotonic, s->timeout_start_usec);
1123
1124 case SERVICE_RUNNING:
1125 return usec_add(UNIT(s)->active_enter_timestamp.monotonic, s->runtime_max_usec);
1126
1127 case SERVICE_STOP:
4c89c718
MP
1128 case SERVICE_STOP_SIGTERM:
1129 case SERVICE_STOP_SIGKILL:
1130 case SERVICE_STOP_POST:
1131 case SERVICE_FINAL_SIGTERM:
1132 case SERVICE_FINAL_SIGKILL:
1133 return usec_add(UNIT(s)->state_change_timestamp.monotonic, s->timeout_stop_usec);
1134
f2dec872 1135 case SERVICE_STOP_WATCHDOG:
a10f5d05 1136 case SERVICE_FINAL_WATCHDOG:
f2dec872
BR
1137 return usec_add(UNIT(s)->state_change_timestamp.monotonic, service_timeout_abort_usec(s));
1138
4c89c718
MP
1139 case SERVICE_AUTO_RESTART:
1140 return usec_add(UNIT(s)->inactive_enter_timestamp.monotonic, s->restart_usec);
1141
f2dec872 1142 case SERVICE_CLEANING:
812752cc 1143 return usec_add(UNIT(s)->state_change_timestamp.monotonic, s->exec_context.timeout_clean_usec);
f2dec872 1144
4c89c718
MP
1145 default:
1146 return USEC_INFINITY;
1147 }
1148}
1149
663996b3
MS
1150static int service_coldplug(Unit *u) {
1151 Service *s = SERVICE(u);
1152 int r;
1153
1154 assert(s);
1155 assert(s->state == SERVICE_DEAD);
1156
db2df898
MP
1157 if (s->deserialized_state == s->state)
1158 return 0;
663996b3 1159
4c89c718
MP
1160 r = service_arm_timer(s, service_coldplug_timeout(s));
1161 if (r < 0)
1162 return r;
60f067b4 1163
db2df898
MP
1164 if (s->main_pid > 0 &&
1165 pid_is_unwaited(s->main_pid) &&
1d42b86d 1166 (IN_SET(s->deserialized_state,
db2df898
MP
1167 SERVICE_START, SERVICE_START_POST,
1168 SERVICE_RUNNING, SERVICE_RELOAD,
6e866b33 1169 SERVICE_STOP, SERVICE_STOP_WATCHDOG, SERVICE_STOP_SIGTERM, SERVICE_STOP_SIGKILL, SERVICE_STOP_POST,
a10f5d05 1170 SERVICE_FINAL_WATCHDOG, SERVICE_FINAL_SIGTERM, SERVICE_FINAL_SIGKILL))) {
bb4f798a 1171 r = unit_watch_pid(UNIT(s), s->main_pid, false);
db2df898
MP
1172 if (r < 0)
1173 return r;
1174 }
663996b3 1175
db2df898
MP
1176 if (s->control_pid > 0 &&
1177 pid_is_unwaited(s->control_pid) &&
1178 IN_SET(s->deserialized_state,
f2dec872 1179 SERVICE_CONDITION, SERVICE_START_PRE, SERVICE_START, SERVICE_START_POST,
db2df898 1180 SERVICE_RELOAD,
6e866b33 1181 SERVICE_STOP, SERVICE_STOP_WATCHDOG, SERVICE_STOP_SIGTERM, SERVICE_STOP_SIGKILL, SERVICE_STOP_POST,
a10f5d05 1182 SERVICE_FINAL_WATCHDOG, SERVICE_FINAL_SIGTERM, SERVICE_FINAL_SIGKILL,
f2dec872 1183 SERVICE_CLEANING)) {
bb4f798a 1184 r = unit_watch_pid(UNIT(s), s->control_pid, false);
db2df898
MP
1185 if (r < 0)
1186 return r;
663996b3 1187 }
60f067b4 1188
f2dec872 1189 if (!IN_SET(s->deserialized_state, SERVICE_DEAD, SERVICE_FAILED, SERVICE_AUTO_RESTART, SERVICE_CLEANING)) {
b012e921 1190 (void) unit_enqueue_rewatch_pids(u);
8a584da2 1191 (void) unit_setup_dynamic_creds(u);
98393f85
MB
1192 (void) unit_setup_exec_runtime(u);
1193 }
8a584da2 1194
b012e921
MB
1195 if (IN_SET(s->deserialized_state, SERVICE_START_POST, SERVICE_RUNNING, SERVICE_RELOAD))
1196 service_start_watchdog(s);
1197
8a584da2
MP
1198 if (UNIT_ISSET(s->accept_socket)) {
1199 Socket* socket = SOCKET(UNIT_DEREF(s->accept_socket));
1200
1201 if (socket->max_connections_per_source > 0) {
1202 SocketPeer *peer;
1203
1204 /* Make a best-effort attempt at bumping the connection count */
1205 if (socket_acquire_peer(socket, s->socket_fd, &peer) > 0) {
1206 socket_peer_unref(s->peer);
1207 s->peer = peer;
1208 }
1209 }
1210 }
1211
db2df898 1212 service_set_state(s, s->deserialized_state);
663996b3
MS
1213 return 0;
1214}
1215
6e866b33
MB
1216static int service_collect_fds(
1217 Service *s,
1218 int **fds,
1219 char ***fd_names,
1220 size_t *n_socket_fds,
1221 size_t *n_storage_fds) {
81c58355 1222
6300502b 1223 _cleanup_strv_free_ char **rfd_names = NULL;
e735f4d4 1224 _cleanup_free_ int *rfds = NULL;
6e866b33 1225 size_t rn_socket_fds = 0, rn_storage_fds = 0;
81c58355 1226 int r;
663996b3
MS
1227
1228 assert(s);
1229 assert(fds);
6300502b 1230 assert(fd_names);
81c58355 1231 assert(n_socket_fds);
6e866b33 1232 assert(n_storage_fds);
663996b3 1233
6300502b 1234 if (s->socket_fd >= 0) {
663996b3 1235
6300502b 1236 /* Pass the per-connection socket */
663996b3 1237
6300502b
MP
1238 rfds = new(int, 1);
1239 if (!rfds)
1240 return -ENOMEM;
1241 rfds[0] = s->socket_fd;
663996b3 1242
6e866b33 1243 rfd_names = strv_new("connection");
6300502b
MP
1244 if (!rfd_names)
1245 return -ENOMEM;
663996b3 1246
81c58355 1247 rn_socket_fds = 1;
6300502b 1248 } else {
6300502b 1249 Unit *u;
663996b3 1250
6300502b 1251 /* Pass all our configured sockets for singleton services */
663996b3 1252
8b3d4ff0 1253 UNIT_FOREACH_DEPENDENCY(u, UNIT(s), UNIT_ATOM_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,
8b3d4ff0 1367 int *ret_exec_fd) {
6e866b33 1368
8b3d4ff0 1369 _cleanup_close_pair_ int p[] = { -1, -1 };
6e866b33
MB
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
8b3d4ff0 1383 TAKE_FD(p[0]);
6e866b33
MB
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,
8b3d4ff0 1413 pid_t *ret_pid) {
663996b3 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);
8b3d4ff0 1430 assert(ret_pid);
663996b3 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 1584
8b3d4ff0 1585 *ret_pid = pid;
663996b3
MS
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
8b3d4ff0 1624static int cgroup_empty(Service *s) {
663996b3
MS
1625 assert(s);
1626
8b3d4ff0 1627 /* Returns 0 if there is no cgroup, > 0 if is empty or doesn't exist, < 0 if we can't figure it out */
f5e65279 1628
14228c0d
MB
1629 if (!UNIT(s)->cgroup_path)
1630 return 0;
1631
8b3d4ff0
MB
1632 return cg_is_empty_recursive(SYSTEMD_CGROUP_CONTROLLER, UNIT(s)->cgroup_path);
1633}
1634
1635
1636static int cgroup_good(Service *s) {
1637 int r;
1638
1639 /* Returns 0 if the cgroup is empty or doesn't exist, > 0 if it is exists and is populated, < 0 if we can't
1640 * figure it out */
1641
1642 r = cgroup_empty(s);
663996b3
MS
1643 if (r < 0)
1644 return r;
1645
f5e65279 1646 return r == 0;
663996b3
MS
1647}
1648
e1f67bc7 1649static bool service_shall_restart(Service *s, const char **reason) {
e3bff60a
MP
1650 assert(s);
1651
1652 /* Don't restart after manual stops */
e1f67bc7
MB
1653 if (s->forbid_restart) {
1654 *reason = "manual stop";
e3bff60a 1655 return false;
e1f67bc7 1656 }
e3bff60a
MP
1657
1658 /* Never restart if this is configured as special exception */
e1f67bc7
MB
1659 if (exit_status_set_test(&s->restart_prevent_status, s->main_exec_status.code, s->main_exec_status.status)) {
1660 *reason = "prevented by exit status";
e3bff60a 1661 return false;
e1f67bc7 1662 }
e3bff60a
MP
1663
1664 /* Restart if the exit code/status are configured as restart triggers */
e1f67bc7
MB
1665 if (exit_status_set_test(&s->restart_force_status, s->main_exec_status.code, s->main_exec_status.status)) {
1666 *reason = "forced by exit status";
e3bff60a 1667 return true;
e1f67bc7 1668 }
e3bff60a 1669
e1f67bc7 1670 *reason = "restart setting";
e3bff60a
MP
1671 switch (s->restart) {
1672
1673 case SERVICE_RESTART_NO:
1674 return false;
1675
1676 case SERVICE_RESTART_ALWAYS:
1677 return true;
1678
1679 case SERVICE_RESTART_ON_SUCCESS:
1680 return s->result == SERVICE_SUCCESS;
1681
1682 case SERVICE_RESTART_ON_FAILURE:
478ed938 1683 return !IN_SET(s->result, SERVICE_SUCCESS, SERVICE_SKIP_CONDITION);
e3bff60a
MP
1684
1685 case SERVICE_RESTART_ON_ABNORMAL:
478ed938 1686 return !IN_SET(s->result, SERVICE_SUCCESS, SERVICE_FAILURE_EXIT_CODE, SERVICE_SKIP_CONDITION);
e3bff60a
MP
1687
1688 case SERVICE_RESTART_ON_WATCHDOG:
1689 return s->result == SERVICE_FAILURE_WATCHDOG;
1690
1691 case SERVICE_RESTART_ON_ABORT:
1692 return IN_SET(s->result, SERVICE_FAILURE_SIGNAL, SERVICE_FAILURE_CORE_DUMP);
1693
1694 default:
1695 assert_not_reached("unknown restart setting");
1696 }
1697}
1698
52ad194e
MB
1699static bool service_will_restart(Unit *u) {
1700 Service *s = SERVICE(u);
1701
f5e65279
MB
1702 assert(s);
1703
52ad194e
MB
1704 if (s->will_auto_restart)
1705 return true;
f5e65279
MB
1706 if (s->state == SERVICE_AUTO_RESTART)
1707 return true;
b012e921 1708
812752cc 1709 return unit_will_restart_default(u);
f5e65279
MB
1710}
1711
663996b3 1712static void service_enter_dead(Service *s, ServiceResult f, bool allow_restart) {
f2dec872 1713 ServiceState end_state;
663996b3 1714 int r;
f5e65279 1715
663996b3
MS
1716 assert(s);
1717
f5e65279
MB
1718 /* If there's a stop job queued before we enter the DEAD state, we shouldn't act on Restart=, in order to not
1719 * undo what has already been enqueued. */
1720 if (unit_stop_pending(UNIT(s)))
1721 allow_restart = false;
1722
8a584da2 1723 if (s->result == SERVICE_SUCCESS)
663996b3
MS
1724 s->result = f;
1725
f2dec872
BR
1726 if (s->result == SERVICE_SUCCESS) {
1727 unit_log_success(UNIT(s));
1728 end_state = SERVICE_DEAD;
1729 } else if (s->result == SERVICE_SKIP_CONDITION) {
1730 unit_log_skip(UNIT(s), service_result_to_string(s->result));
1731 end_state = SERVICE_DEAD;
1732 } else {
1733 unit_log_failure(UNIT(s), service_result_to_string(s->result));
1734 end_state = SERVICE_FAILED;
1735 }
a10f5d05 1736 unit_warn_leftover_processes(UNIT(s), unit_log_leftover_process_stop);
f5e65279 1737
e1f67bc7
MB
1738 if (!allow_restart)
1739 log_unit_debug(UNIT(s), "Service restart not allowed.");
1740 else {
1741 const char *reason;
1742 bool shall_restart;
1743
1744 shall_restart = service_shall_restart(s, &reason);
1745 log_unit_debug(UNIT(s), "Service will %srestart (%s)",
1746 shall_restart ? "" : "not ",
1747 reason);
1748 if (shall_restart)
1749 s->will_auto_restart = true;
1750 }
663996b3 1751
52ad194e
MB
1752 /* Make sure service_release_resources() doesn't destroy our FD store, while we are changing through
1753 * SERVICE_FAILED/SERVICE_DEAD before entering into SERVICE_AUTO_RESTART. */
1754 s->n_keep_fd_store ++;
60f067b4 1755
f2dec872 1756 service_set_state(s, end_state);
52ad194e
MB
1757
1758 if (s->will_auto_restart) {
1759 s->will_auto_restart = false;
663996b3 1760
4c89c718 1761 r = service_arm_timer(s, usec_add(now(CLOCK_MONOTONIC), s->restart_usec));
52ad194e
MB
1762 if (r < 0) {
1763 s->n_keep_fd_store--;
663996b3 1764 goto fail;
52ad194e 1765 }
663996b3
MS
1766
1767 service_set_state(s, SERVICE_AUTO_RESTART);
f5e65279
MB
1768 } else
1769 /* If we shan't restart, then flush out the restart counter. But don't do that immediately, so that the
1770 * user can still introspect the counter. Do so on the next start. */
1771 s->flush_n_restarts = true;
663996b3 1772
f2dec872 1773 /* 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
1774 * queue, so that the fd store is possibly gc'ed again */
1775 s->n_keep_fd_store--;
1776 unit_add_to_gc_queue(UNIT(s));
1777
e3bff60a 1778 /* The next restart might not be a manual stop, hence reset the flag indicating manual stops */
663996b3
MS
1779 s->forbid_restart = false;
1780
60f067b4 1781 /* We want fresh tmpdirs in case service is started again immediately */
98393f85 1782 s->exec_runtime = exec_runtime_unref(s->exec_runtime, true);
60f067b4 1783
812752cc 1784 /* Also, remove the runtime directory */
a032b68d 1785 unit_destroy_runtime_data(UNIT(s), &s->exec_context);
663996b3 1786
8a584da2
MP
1787 /* Get rid of the IPC bits of the user */
1788 unit_unref_uid_gid(UNIT(s), true);
1789
1790 /* Release the user, and destroy it if we are the only remaining owner */
1791 dynamic_creds_destroy(&s->dynamic_creds);
1792
14228c0d
MB
1793 /* Try to delete the pid file. At this point it will be
1794 * out-of-date, and some software might be confused by it, so
1795 * let's remove it. */
1796 if (s->pid_file)
4c89c718 1797 (void) unlink(s->pid_file);
14228c0d 1798
bb4f798a
MB
1799 /* Reset TTY ownership if necessary */
1800 exec_context_revert_tty(&s->exec_context);
1801
663996b3
MS
1802 return;
1803
1804fail:
e3bff60a 1805 log_unit_warning_errno(UNIT(s), r, "Failed to run install restart timer: %m");
663996b3
MS
1806 service_enter_dead(s, SERVICE_FAILURE_RESOURCES, false);
1807}
1808
663996b3
MS
1809static void service_enter_stop_post(Service *s, ServiceResult f) {
1810 int r;
1811 assert(s);
1812
8a584da2 1813 if (s->result == SERVICE_SUCCESS)
663996b3
MS
1814 s->result = f;
1815
1816 service_unwatch_control_pid(s);
b012e921 1817 (void) unit_enqueue_rewatch_pids(UNIT(s));
663996b3
MS
1818
1819 s->control_command = s->exec_command[SERVICE_EXEC_STOP_POST];
1820 if (s->control_command) {
1821 s->control_command_id = SERVICE_EXEC_STOP_POST;
1822
1823 r = service_spawn(s,
1824 s->control_command,
5eef597e 1825 s->timeout_stop_usec,
6e866b33 1826 EXEC_APPLY_SANDBOXING|EXEC_APPLY_CHROOT|EXEC_APPLY_TTY_STDIN|EXEC_IS_CONTROL|EXEC_SETENV_RESULT|EXEC_CONTROL_CGROUP,
663996b3
MS
1827 &s->control_pid);
1828 if (r < 0)
1829 goto fail;
1830
663996b3
MS
1831 service_set_state(s, SERVICE_STOP_POST);
1832 } else
60f067b4 1833 service_enter_signal(s, SERVICE_FINAL_SIGTERM, SERVICE_SUCCESS);
663996b3
MS
1834
1835 return;
1836
1837fail:
e3bff60a 1838 log_unit_warning_errno(UNIT(s), r, "Failed to run 'stop-post' task: %m");
663996b3
MS
1839 service_enter_signal(s, SERVICE_FINAL_SIGTERM, SERVICE_FAILURE_RESOURCES);
1840}
1841
e1f67bc7 1842static int state_to_kill_operation(Service *s, ServiceState state) {
e3bff60a
MP
1843 switch (state) {
1844
6e866b33 1845 case SERVICE_STOP_WATCHDOG:
a10f5d05 1846 case SERVICE_FINAL_WATCHDOG:
6e866b33 1847 return KILL_WATCHDOG;
e3bff60a
MP
1848
1849 case SERVICE_STOP_SIGTERM:
e1f67bc7
MB
1850 if (unit_has_job_type(UNIT(s), JOB_RESTART))
1851 return KILL_RESTART;
1852 _fallthrough_;
1853
e3bff60a
MP
1854 case SERVICE_FINAL_SIGTERM:
1855 return KILL_TERMINATE;
1856
1857 case SERVICE_STOP_SIGKILL:
1858 case SERVICE_FINAL_SIGKILL:
1859 return KILL_KILL;
1860
1861 default:
1862 return _KILL_OPERATION_INVALID;
1863 }
1864}
1865
663996b3 1866static void service_enter_signal(Service *s, ServiceState state, ServiceResult f) {
a10f5d05 1867 int kill_operation, r;
663996b3
MS
1868
1869 assert(s);
1870
8a584da2 1871 if (s->result == SERVICE_SUCCESS)
663996b3
MS
1872 s->result = f;
1873
b012e921
MB
1874 /* Before sending any signal, make sure we track all members of this cgroup */
1875 (void) unit_watch_all_pids(UNIT(s));
1876
1877 /* Also, enqueue a job that we recheck all our PIDs a bit later, given that it's likely some processes have
1878 * died now */
1879 (void) unit_enqueue_rewatch_pids(UNIT(s));
60f067b4 1880
a10f5d05 1881 kill_operation = state_to_kill_operation(s, state);
663996b3
MS
1882 r = unit_kill_context(
1883 UNIT(s),
1884 &s->kill_context,
a10f5d05 1885 kill_operation,
663996b3
MS
1886 s->main_pid,
1887 s->control_pid,
1888 s->main_pid_alien);
1889 if (r < 0)
1890 goto fail;
1891
1892 if (r > 0) {
f2dec872 1893 r = service_arm_timer(s, usec_add(now(CLOCK_MONOTONIC),
a10f5d05 1894 kill_operation == KILL_WATCHDOG ? service_timeout_abort_usec(s) : s->timeout_stop_usec));
4c89c718
MP
1895 if (r < 0)
1896 goto fail;
663996b3
MS
1897
1898 service_set_state(s, state);
6e866b33 1899 } else if (IN_SET(state, SERVICE_STOP_WATCHDOG, SERVICE_STOP_SIGTERM) && s->kill_context.send_sigkill)
60f067b4 1900 service_enter_signal(s, SERVICE_STOP_SIGKILL, SERVICE_SUCCESS);
6e866b33 1901 else if (IN_SET(state, SERVICE_STOP_WATCHDOG, SERVICE_STOP_SIGTERM, SERVICE_STOP_SIGKILL))
663996b3 1902 service_enter_stop_post(s, SERVICE_SUCCESS);
a10f5d05 1903 else if (IN_SET(state, SERVICE_FINAL_WATCHDOG, SERVICE_FINAL_SIGTERM) && s->kill_context.send_sigkill)
60f067b4 1904 service_enter_signal(s, SERVICE_FINAL_SIGKILL, SERVICE_SUCCESS);
663996b3
MS
1905 else
1906 service_enter_dead(s, SERVICE_SUCCESS, true);
1907
1908 return;
1909
1910fail:
e3bff60a 1911 log_unit_warning_errno(UNIT(s), r, "Failed to kill processes: %m");
663996b3 1912
6e866b33 1913 if (IN_SET(state, SERVICE_STOP_WATCHDOG, SERVICE_STOP_SIGTERM, SERVICE_STOP_SIGKILL))
663996b3
MS
1914 service_enter_stop_post(s, SERVICE_FAILURE_RESOURCES);
1915 else
1916 service_enter_dead(s, SERVICE_FAILURE_RESOURCES, true);
1917}
1918
5eef597e
MP
1919static void service_enter_stop_by_notify(Service *s) {
1920 assert(s);
1921
b012e921 1922 (void) unit_enqueue_rewatch_pids(UNIT(s));
5eef597e 1923
4c89c718 1924 service_arm_timer(s, usec_add(now(CLOCK_MONOTONIC), s->timeout_stop_usec));
5eef597e
MP
1925
1926 /* The service told us it's stopping, so it's as if we SIGTERM'd it. */
1927 service_set_state(s, SERVICE_STOP_SIGTERM);
1928}
1929
663996b3
MS
1930static void service_enter_stop(Service *s, ServiceResult f) {
1931 int r;
1932
1933 assert(s);
1934
8a584da2 1935 if (s->result == SERVICE_SUCCESS)
663996b3
MS
1936 s->result = f;
1937
1938 service_unwatch_control_pid(s);
b012e921 1939 (void) unit_enqueue_rewatch_pids(UNIT(s));
663996b3
MS
1940
1941 s->control_command = s->exec_command[SERVICE_EXEC_STOP];
1942 if (s->control_command) {
1943 s->control_command_id = SERVICE_EXEC_STOP;
1944
1945 r = service_spawn(s,
1946 s->control_command,
5eef597e 1947 s->timeout_stop_usec,
6e866b33 1948 EXEC_APPLY_SANDBOXING|EXEC_APPLY_CHROOT|EXEC_IS_CONTROL|EXEC_SETENV_RESULT|EXEC_CONTROL_CGROUP,
663996b3
MS
1949 &s->control_pid);
1950 if (r < 0)
1951 goto fail;
1952
1953 service_set_state(s, SERVICE_STOP);
1954 } else
1955 service_enter_signal(s, SERVICE_STOP_SIGTERM, SERVICE_SUCCESS);
1956
1957 return;
1958
1959fail:
e3bff60a 1960 log_unit_warning_errno(UNIT(s), r, "Failed to run 'stop' task: %m");
663996b3
MS
1961 service_enter_signal(s, SERVICE_STOP_SIGTERM, SERVICE_FAILURE_RESOURCES);
1962}
1963
d9dfd233
MP
1964static bool service_good(Service *s) {
1965 int main_pid_ok;
1966 assert(s);
1967
1968 if (s->type == SERVICE_DBUS && !s->bus_name_good)
1969 return false;
1970
1971 main_pid_ok = main_pid_good(s);
1972 if (main_pid_ok > 0) /* It's alive */
1973 return true;
1974 if (main_pid_ok == 0) /* It's dead */
1975 return false;
1976
1977 /* OK, we don't know anything about the main PID, maybe
1978 * because there is none. Let's check the control group
1979 * instead. */
1980
1981 return cgroup_good(s) != 0;
1982}
1983
663996b3 1984static void service_enter_running(Service *s, ServiceResult f) {
663996b3
MS
1985 assert(s);
1986
8a584da2 1987 if (s->result == SERVICE_SUCCESS)
663996b3
MS
1988 s->result = f;
1989
4c89c718
MP
1990 service_unwatch_control_pid(s);
1991
b012e921
MB
1992 if (s->result != SERVICE_SUCCESS)
1993 service_enter_signal(s, SERVICE_STOP_SIGTERM, f);
1994 else if (service_good(s)) {
5eef597e 1995
b012e921 1996 /* If there are any queued up sd_notify() notifications, process them now */
5eef597e
MP
1997 if (s->notify_state == NOTIFY_RELOADING)
1998 service_enter_reload_by_notify(s);
1999 else if (s->notify_state == NOTIFY_STOPPING)
2000 service_enter_stop_by_notify(s);
4c89c718 2001 else {
5eef597e 2002 service_set_state(s, SERVICE_RUNNING);
4c89c718
MP
2003 service_arm_timer(s, usec_add(UNIT(s)->active_enter_timestamp.monotonic, s->runtime_max_usec));
2004 }
5eef597e 2005
b012e921 2006 } else if (s->remain_after_exit)
663996b3
MS
2007 service_set_state(s, SERVICE_EXITED);
2008 else
2009 service_enter_stop(s, SERVICE_SUCCESS);
2010}
2011
2012static void service_enter_start_post(Service *s) {
2013 int r;
2014 assert(s);
2015
2016 service_unwatch_control_pid(s);
60f067b4 2017 service_reset_watchdog(s);
663996b3
MS
2018
2019 s->control_command = s->exec_command[SERVICE_EXEC_START_POST];
2020 if (s->control_command) {
2021 s->control_command_id = SERVICE_EXEC_START_POST;
2022
2023 r = service_spawn(s,
2024 s->control_command,
5eef597e 2025 s->timeout_start_usec,
6e866b33 2026 EXEC_APPLY_SANDBOXING|EXEC_APPLY_CHROOT|EXEC_IS_CONTROL|EXEC_CONTROL_CGROUP,
663996b3
MS
2027 &s->control_pid);
2028 if (r < 0)
2029 goto fail;
2030
2031 service_set_state(s, SERVICE_START_POST);
2032 } else
2033 service_enter_running(s, SERVICE_SUCCESS);
2034
2035 return;
2036
2037fail:
e3bff60a 2038 log_unit_warning_errno(UNIT(s), r, "Failed to run 'start-post' task: %m");
663996b3
MS
2039 service_enter_stop(s, SERVICE_FAILURE_RESOURCES);
2040}
2041
52ad194e 2042static void service_kill_control_process(Service *s) {
f5e65279 2043 int r;
14228c0d 2044
f5e65279
MB
2045 assert(s);
2046
52ad194e
MB
2047 if (s->control_pid <= 0)
2048 return;
f5e65279 2049
52ad194e
MB
2050 r = kill_and_sigcont(s->control_pid, SIGKILL);
2051 if (r < 0) {
2052 _cleanup_free_ char *comm = NULL;
f5e65279 2053
52ad194e 2054 (void) get_process_comm(s->control_pid, &comm);
f5e65279 2055
52ad194e
MB
2056 log_unit_debug_errno(UNIT(s), r, "Failed to kill control process " PID_FMT " (%s), ignoring: %m",
2057 s->control_pid, strna(comm));
f5e65279 2058 }
14228c0d
MB
2059}
2060
bb4f798a
MB
2061static int service_adverse_to_leftover_processes(Service *s) {
2062 assert(s);
2063
2064 /* KillMode=mixed and control group are used to indicate that all process should be killed off.
a10f5d05
MB
2065 * SendSIGKILL= is used for services that require a clean shutdown. These are typically database
2066 * service where a SigKilled process would result in a lengthy recovery and who's shutdown or startup
2067 * time is quite variable (so Timeout settings aren't of use).
bb4f798a
MB
2068 *
2069 * Here we take these two factors and refuse to start a service if there are existing processes
2070 * within a control group. Databases, while generally having some protection against multiple
a10f5d05 2071 * instances running, lets not stress the rigor of these. Also ExecStartPre= parts of the service
bb4f798a 2072 * aren't as rigoriously written to protect aganst against multiple use. */
a10f5d05
MB
2073
2074 if (unit_warn_leftover_processes(UNIT(s), unit_log_leftover_process_start) > 0 &&
bb4f798a 2075 IN_SET(s->kill_context.kill_mode, KILL_MIXED, KILL_CONTROL_GROUP) &&
f2dec872
BR
2076 !s->kill_context.send_sigkill)
2077 return log_unit_error_errno(UNIT(s), SYNTHETIC_ERRNO(EBUSY),
2078 "Will not start SendSIGKILL=no service of type KillMode=control-group or mixed while processes exist");
2079
bb4f798a
MB
2080 return 0;
2081}
2082
663996b3 2083static void service_enter_start(Service *s) {
14228c0d 2084 ExecCommand *c;
4c89c718 2085 usec_t timeout;
663996b3
MS
2086 pid_t pid;
2087 int r;
663996b3
MS
2088
2089 assert(s);
2090
14228c0d
MB
2091 service_unwatch_control_pid(s);
2092 service_unwatch_main_pid(s);
663996b3 2093
bb4f798a
MB
2094 r = service_adverse_to_leftover_processes(s);
2095 if (r < 0)
2096 goto fail;
663996b3
MS
2097
2098 if (s->type == SERVICE_FORKING) {
2099 s->control_command_id = SERVICE_EXEC_START;
2100 c = s->control_command = s->exec_command[SERVICE_EXEC_START];
2101
2102 s->main_command = NULL;
2103 } else {
2104 s->control_command_id = _SERVICE_EXEC_COMMAND_INVALID;
2105 s->control_command = NULL;
2106
2107 c = s->main_command = s->exec_command[SERVICE_EXEC_START];
2108 }
2109
5eef597e 2110 if (!c) {
8a584da2 2111 if (s->type != SERVICE_ONESHOT) {
a10f5d05
MB
2112 /* There's no command line configured for the main command? Hmm, that is strange.
2113 * This can only happen if the configuration changes at runtime. In this case,
2114 * let's enter a failure state. */
3a6ce677 2115 r = log_unit_error_errno(UNIT(s), SYNTHETIC_ERRNO(ENXIO), "There's no 'start' task anymore we could start.");
8a584da2
MP
2116 goto fail;
2117 }
2118
6e866b33
MB
2119 /* We force a fake state transition here. Otherwise, the unit would go directly from
2120 * SERVICE_DEAD to SERVICE_DEAD without SERVICE_ACTIVATING or SERVICE_ACTIVE
f2dec872 2121 * in between. This way we can later trigger actions that depend on the state
6e866b33
MB
2122 * transition, including SuccessAction=. */
2123 service_set_state(s, SERVICE_START);
2124
5eef597e
MP
2125 service_enter_start_post(s);
2126 return;
2127 }
2128
4c89c718
MP
2129 if (IN_SET(s->type, SERVICE_SIMPLE, SERVICE_IDLE))
2130 /* For simple + idle this is the main process. We don't apply any timeout here, but
2131 * service_enter_running() will later apply the .runtime_max_usec timeout. */
2132 timeout = USEC_INFINITY;
2133 else
2134 timeout = s->timeout_start_usec;
2135
663996b3
MS
2136 r = service_spawn(s,
2137 c,
4c89c718 2138 timeout,
a032b68d 2139 EXEC_PASS_FDS|EXEC_APPLY_SANDBOXING|EXEC_APPLY_CHROOT|EXEC_APPLY_TTY_STDIN|EXEC_SET_WATCHDOG|EXEC_WRITE_CREDENTIALS,
663996b3
MS
2140 &pid);
2141 if (r < 0)
2142 goto fail;
2143
4c89c718 2144 if (IN_SET(s->type, SERVICE_SIMPLE, SERVICE_IDLE)) {
663996b3
MS
2145 /* For simple services we immediately start
2146 * the START_POST binaries. */
2147
2148 service_set_main_pid(s, pid);
2149 service_enter_start_post(s);
2150
2151 } else if (s->type == SERVICE_FORKING) {
2152
2153 /* For forking services we wait until the start
2154 * process exited. */
2155
2156 s->control_pid = pid;
2157 service_set_state(s, SERVICE_START);
2158
6e866b33 2159 } else if (IN_SET(s->type, SERVICE_ONESHOT, SERVICE_DBUS, SERVICE_NOTIFY, SERVICE_EXEC)) {
663996b3 2160
6e866b33 2161 /* For oneshot services we wait until the start process exited, too, but it is our main process. */
663996b3 2162
6e866b33
MB
2163 /* For D-Bus services we know the main pid right away, but wait for the bus name to appear on the
2164 * bus. 'notify' and 'exec' services are similar. */
663996b3
MS
2165
2166 service_set_main_pid(s, pid);
2167 service_set_state(s, SERVICE_START);
2168 } else
2169 assert_not_reached("Unknown service type");
2170
2171 return;
2172
2173fail:
e3bff60a 2174 log_unit_warning_errno(UNIT(s), r, "Failed to run 'start' task: %m");
2897b343 2175 service_enter_signal(s, SERVICE_STOP_SIGTERM, SERVICE_FAILURE_RESOURCES);
663996b3
MS
2176}
2177
2178static void service_enter_start_pre(Service *s) {
2179 int r;
2180
2181 assert(s);
2182
2183 service_unwatch_control_pid(s);
2184
2185 s->control_command = s->exec_command[SERVICE_EXEC_START_PRE];
2186 if (s->control_command) {
52ad194e 2187
bb4f798a
MB
2188 r = service_adverse_to_leftover_processes(s);
2189 if (r < 0)
2190 goto fail;
663996b3
MS
2191
2192 s->control_command_id = SERVICE_EXEC_START_PRE;
2193
2194 r = service_spawn(s,
2195 s->control_command,
5eef597e 2196 s->timeout_start_usec,
f5e65279 2197 EXEC_APPLY_SANDBOXING|EXEC_APPLY_CHROOT|EXEC_IS_CONTROL|EXEC_APPLY_TTY_STDIN,
663996b3
MS
2198 &s->control_pid);
2199 if (r < 0)
2200 goto fail;
2201
2202 service_set_state(s, SERVICE_START_PRE);
2203 } else
2204 service_enter_start(s);
2205
2206 return;
2207
2208fail:
e3bff60a 2209 log_unit_warning_errno(UNIT(s), r, "Failed to run 'start-pre' task: %m");
663996b3
MS
2210 service_enter_dead(s, SERVICE_FAILURE_RESOURCES, true);
2211}
2212
f2dec872
BR
2213static void service_enter_condition(Service *s) {
2214 int r;
2215
2216 assert(s);
2217
2218 service_unwatch_control_pid(s);
2219
2220 s->control_command = s->exec_command[SERVICE_EXEC_CONDITION];
2221 if (s->control_command) {
2222
2223 r = service_adverse_to_leftover_processes(s);
2224 if (r < 0)
2225 goto fail;
2226
2227 s->control_command_id = SERVICE_EXEC_CONDITION;
2228
2229 r = service_spawn(s,
2230 s->control_command,
2231 s->timeout_start_usec,
2232 EXEC_APPLY_SANDBOXING|EXEC_APPLY_CHROOT|EXEC_IS_CONTROL|EXEC_APPLY_TTY_STDIN,
2233 &s->control_pid);
2234
2235 if (r < 0)
2236 goto fail;
2237
2238 service_set_state(s, SERVICE_CONDITION);
2239 } else
2240 service_enter_start_pre(s);
2241
2242 return;
2243
2244fail:
2245 log_unit_warning_errno(UNIT(s), r, "Failed to run 'exec-condition' task: %m");
2246 service_enter_dead(s, SERVICE_FAILURE_RESOURCES, true);
2247}
2248
663996b3 2249static void service_enter_restart(Service *s) {
4c89c718 2250 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
663996b3 2251 int r;
663996b3
MS
2252
2253 assert(s);
663996b3 2254
e1f67bc7 2255 if (unit_has_job_type(UNIT(s), JOB_STOP)) {
663996b3 2256 /* Don't restart things if we are going down anyway */
e3bff60a 2257 log_unit_info(UNIT(s), "Stop job pending for unit, delaying automatic restart.");
663996b3 2258
4c89c718 2259 r = service_arm_timer(s, usec_add(now(CLOCK_MONOTONIC), s->restart_usec));
663996b3
MS
2260 if (r < 0)
2261 goto fail;
2262
2263 return;
2264 }
2265
2266 /* Any units that are bound to this service must also be
2267 * restarted. We use JOB_RESTART (instead of the more obvious
2268 * JOB_START) here so that those dependency jobs will be added
2269 * as well. */
bb4f798a 2270 r = manager_add_job(UNIT(s)->manager, JOB_RESTART, UNIT(s), JOB_REPLACE, NULL, &error, NULL);
663996b3
MS
2271 if (r < 0)
2272 goto fail;
2273
f5e65279 2274 /* Count the jobs we enqueue for restarting. This counter is maintained as long as the unit isn't fully
8b3d4ff0 2275 * stopped, i.e. as long as it remains up or remains in auto-start states. The user can reset the counter
f5e65279
MB
2276 * explicitly however via the usual "systemctl reset-failure" logic. */
2277 s->n_restarts ++;
2278 s->flush_n_restarts = false;
2279
5b5a102a
MB
2280 log_unit_struct(UNIT(s), LOG_INFO,
2281 "MESSAGE_ID=" SD_MESSAGE_UNIT_RESTART_SCHEDULED_STR,
2282 LOG_UNIT_INVOCATION_ID(UNIT(s)),
2283 LOG_UNIT_MESSAGE(UNIT(s), "Scheduled restart job, restart counter is at %u.", s->n_restarts),
2284 "N_RESTARTS=%u", s->n_restarts);
f5e65279
MB
2285
2286 /* Notify clients about changed restart counter */
2287 unit_add_to_dbus_queue(UNIT(s));
2288
663996b3
MS
2289 /* Note that we stay in the SERVICE_AUTO_RESTART state here,
2290 * it will be canceled as part of the service_stop() call that
2291 * is executed as part of JOB_RESTART. */
2292
663996b3
MS
2293 return;
2294
2295fail:
a032b68d 2296 log_unit_warning(UNIT(s), "Failed to schedule restart job: %s", bus_error_message(&error, r));
663996b3 2297 service_enter_dead(s, SERVICE_FAILURE_RESOURCES, false);
663996b3
MS
2298}
2299
5eef597e 2300static void service_enter_reload_by_notify(Service *s) {
f5e65279
MB
2301 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
2302 int r;
2303
5eef597e
MP
2304 assert(s);
2305
4c89c718 2306 service_arm_timer(s, usec_add(now(CLOCK_MONOTONIC), s->timeout_start_usec));
5eef597e 2307 service_set_state(s, SERVICE_RELOAD);
f5e65279
MB
2308
2309 /* service_enter_reload_by_notify is never called during a reload, thus no loops are possible. */
2310 r = manager_propagate_reload(UNIT(s)->manager, UNIT(s), JOB_FAIL, &error);
2311 if (r < 0)
a032b68d 2312 log_unit_warning(UNIT(s), "Failed to schedule propagation of reload: %s", bus_error_message(&error, r));
5eef597e
MP
2313}
2314
663996b3
MS
2315static void service_enter_reload(Service *s) {
2316 int r;
2317
2318 assert(s);
2319
2320 service_unwatch_control_pid(s);
6300502b 2321 s->reload_result = SERVICE_SUCCESS;
663996b3
MS
2322
2323 s->control_command = s->exec_command[SERVICE_EXEC_RELOAD];
2324 if (s->control_command) {
2325 s->control_command_id = SERVICE_EXEC_RELOAD;
2326
2327 r = service_spawn(s,
2328 s->control_command,
5eef597e 2329 s->timeout_start_usec,
6e866b33 2330 EXEC_APPLY_SANDBOXING|EXEC_APPLY_CHROOT|EXEC_IS_CONTROL|EXEC_CONTROL_CGROUP,
663996b3
MS
2331 &s->control_pid);
2332 if (r < 0)
2333 goto fail;
2334
2335 service_set_state(s, SERVICE_RELOAD);
2336 } else
2337 service_enter_running(s, SERVICE_SUCCESS);
2338
2339 return;
2340
2341fail:
e3bff60a 2342 log_unit_warning_errno(UNIT(s), r, "Failed to run 'reload' task: %m");
663996b3
MS
2343 s->reload_result = SERVICE_FAILURE_RESOURCES;
2344 service_enter_running(s, SERVICE_SUCCESS);
2345}
2346
2347static void service_run_next_control(Service *s) {
4c89c718 2348 usec_t timeout;
663996b3
MS
2349 int r;
2350
2351 assert(s);
2352 assert(s->control_command);
2353 assert(s->control_command->command_next);
2354
2355 assert(s->control_command_id != SERVICE_EXEC_START);
2356
2357 s->control_command = s->control_command->command_next;
2358 service_unwatch_control_pid(s);
2359
f2dec872 2360 if (IN_SET(s->state, SERVICE_CONDITION, SERVICE_START_PRE, SERVICE_START, SERVICE_START_POST, SERVICE_RUNNING, SERVICE_RELOAD))
4c89c718
MP
2361 timeout = s->timeout_start_usec;
2362 else
2363 timeout = s->timeout_stop_usec;
2364
663996b3
MS
2365 r = service_spawn(s,
2366 s->control_command,
4c89c718 2367 timeout,
f5e65279 2368 EXEC_APPLY_SANDBOXING|EXEC_APPLY_CHROOT|EXEC_IS_CONTROL|
f2dec872 2369 (IN_SET(s->control_command_id, SERVICE_EXEC_CONDITION, SERVICE_EXEC_START_PRE, SERVICE_EXEC_STOP_POST) ? EXEC_APPLY_TTY_STDIN : 0)|
6e866b33
MB
2370 (IN_SET(s->control_command_id, SERVICE_EXEC_STOP, SERVICE_EXEC_STOP_POST) ? EXEC_SETENV_RESULT : 0)|
2371 (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
2372 &s->control_pid);
2373 if (r < 0)
2374 goto fail;
2375
2376 return;
2377
2378fail:
e3bff60a 2379 log_unit_warning_errno(UNIT(s), r, "Failed to run next control task: %m");
663996b3 2380
f2dec872 2381 if (IN_SET(s->state, SERVICE_CONDITION, SERVICE_START_PRE, SERVICE_START_POST, SERVICE_STOP))
663996b3
MS
2382 service_enter_signal(s, SERVICE_STOP_SIGTERM, SERVICE_FAILURE_RESOURCES);
2383 else if (s->state == SERVICE_STOP_POST)
2384 service_enter_dead(s, SERVICE_FAILURE_RESOURCES, true);
2385 else if (s->state == SERVICE_RELOAD) {
2386 s->reload_result = SERVICE_FAILURE_RESOURCES;
2387 service_enter_running(s, SERVICE_SUCCESS);
2388 } else
2389 service_enter_stop(s, SERVICE_FAILURE_RESOURCES);
2390}
2391
2392static void service_run_next_main(Service *s) {
2393 pid_t pid;
2394 int r;
2395
2396 assert(s);
2397 assert(s->main_command);
2398 assert(s->main_command->command_next);
2399 assert(s->type == SERVICE_ONESHOT);
2400
2401 s->main_command = s->main_command->command_next;
2402 service_unwatch_main_pid(s);
2403
2404 r = service_spawn(s,
2405 s->main_command,
5eef597e 2406 s->timeout_start_usec,
f5e65279 2407 EXEC_PASS_FDS|EXEC_APPLY_SANDBOXING|EXEC_APPLY_CHROOT|EXEC_APPLY_TTY_STDIN|EXEC_SET_WATCHDOG,
663996b3
MS
2408 &pid);
2409 if (r < 0)
2410 goto fail;
2411
2412 service_set_main_pid(s, pid);
2413
2414 return;
2415
2416fail:
e3bff60a 2417 log_unit_warning_errno(UNIT(s), r, "Failed to run next main task: %m");
663996b3
MS
2418 service_enter_stop(s, SERVICE_FAILURE_RESOURCES);
2419}
2420
663996b3
MS
2421static int service_start(Unit *u) {
2422 Service *s = SERVICE(u);
aa27b158 2423 int r;
663996b3
MS
2424
2425 assert(s);
2426
2427 /* We cannot fulfill this request right now, try again later
2428 * please! */
e3bff60a 2429 if (IN_SET(s->state,
6e866b33 2430 SERVICE_STOP, SERVICE_STOP_WATCHDOG, SERVICE_STOP_SIGTERM, SERVICE_STOP_SIGKILL, SERVICE_STOP_POST,
a10f5d05 2431 SERVICE_FINAL_WATCHDOG, SERVICE_FINAL_SIGTERM, SERVICE_FINAL_SIGKILL, SERVICE_CLEANING))
663996b3
MS
2432 return -EAGAIN;
2433
2434 /* Already on it! */
f2dec872 2435 if (IN_SET(s->state, SERVICE_CONDITION, SERVICE_START_PRE, SERVICE_START, SERVICE_START_POST))
663996b3
MS
2436 return 0;
2437
2438 /* A service that will be restarted must be stopped first to
2439 * trigger BindsTo and/or OnFailure dependencies. If a user
2440 * does not want to wait for the holdoff time to elapse, the
2441 * service should be manually restarted, not started. We
2442 * simply return EAGAIN here, so that any start jobs stay
2443 * queued, and assume that the auto restart timer will
2444 * eventually trigger the restart. */
2445 if (s->state == SERVICE_AUTO_RESTART)
2446 return -EAGAIN;
2447
e3bff60a 2448 assert(IN_SET(s->state, SERVICE_DEAD, SERVICE_FAILED));
663996b3 2449
aa27b158 2450 /* Make sure we don't enter a busy loop of some kind. */
bb4f798a 2451 r = unit_test_start_limit(u);
aa27b158
MP
2452 if (r < 0) {
2453 service_enter_dead(s, SERVICE_FAILURE_START_LIMIT_HIT, false);
2454 return r;
2455 }
2456
8a584da2
MP
2457 r = unit_acquire_invocation_id(u);
2458 if (r < 0)
2459 return r;
2460
663996b3
MS
2461 s->result = SERVICE_SUCCESS;
2462 s->reload_result = SERVICE_SUCCESS;
2463 s->main_pid_known = false;
2464 s->main_pid_alien = false;
2465 s->forbid_restart = false;
52ad194e 2466
6300502b 2467 s->status_text = mfree(s->status_text);
5eef597e
MP
2468 s->status_errno = 0;
2469
2470 s->notify_state = NOTIFY_UNKNOWN;
2471
6e866b33 2472 s->watchdog_original_usec = s->watchdog_usec;
5a920b42 2473 s->watchdog_override_enable = false;
6e866b33
MB
2474 s->watchdog_override_usec = USEC_INFINITY;
2475
2476 exec_command_reset_status_list_array(s->exec_command, _SERVICE_EXEC_COMMAND_MAX);
2477 exec_status_reset(&s->main_exec_status);
5a920b42 2478
f5e65279
MB
2479 /* This is not an automatic restart? Flush the restart counter then */
2480 if (s->flush_n_restarts) {
2481 s->n_restarts = 0;
2482 s->flush_n_restarts = false;
2483 }
2484
6e866b33
MB
2485 u->reset_accounting = true;
2486
f2dec872 2487 service_enter_condition(s);
e735f4d4 2488 return 1;
663996b3
MS
2489}
2490
2491static int service_stop(Unit *u) {
2492 Service *s = SERVICE(u);
2493
2494 assert(s);
2495
e3bff60a 2496 /* Don't create restart jobs from manual stops. */
663996b3
MS
2497 s->forbid_restart = true;
2498
2499 /* Already on it */
e3bff60a 2500 if (IN_SET(s->state,
f2dec872 2501 SERVICE_STOP, SERVICE_STOP_SIGTERM, SERVICE_STOP_SIGKILL, SERVICE_STOP_POST,
a10f5d05 2502 SERVICE_FINAL_WATCHDOG, SERVICE_FINAL_SIGTERM, SERVICE_FINAL_SIGKILL))
663996b3
MS
2503 return 0;
2504
2505 /* A restart will be scheduled or is in progress. */
2506 if (s->state == SERVICE_AUTO_RESTART) {
2507 service_set_state(s, SERVICE_DEAD);
2508 return 0;
2509 }
2510
2511 /* If there's already something running we go directly into
2512 * kill mode. */
f2dec872 2513 if (IN_SET(s->state, SERVICE_CONDITION, SERVICE_START_PRE, SERVICE_START, SERVICE_START_POST, SERVICE_RELOAD, SERVICE_STOP_WATCHDOG)) {
663996b3
MS
2514 service_enter_signal(s, SERVICE_STOP_SIGTERM, SERVICE_SUCCESS);
2515 return 0;
2516 }
2517
f2dec872
BR
2518 /* If we are currently cleaning, then abort it, brutally. */
2519 if (s->state == SERVICE_CLEANING) {
2520 service_enter_signal(s, SERVICE_FINAL_SIGKILL, SERVICE_SUCCESS);
2521 return 0;
2522 }
2523
e3bff60a 2524 assert(IN_SET(s->state, SERVICE_RUNNING, SERVICE_EXITED));
663996b3
MS
2525
2526 service_enter_stop(s, SERVICE_SUCCESS);
e735f4d4 2527 return 1;
663996b3
MS
2528}
2529
2530static int service_reload(Unit *u) {
2531 Service *s = SERVICE(u);
2532
2533 assert(s);
2534
f5e65279 2535 assert(IN_SET(s->state, SERVICE_RUNNING, SERVICE_EXITED));
663996b3
MS
2536
2537 service_enter_reload(s);
7035cd9e 2538 return 1;
663996b3
MS
2539}
2540
2541_pure_ static bool service_can_reload(Unit *u) {
2542 Service *s = SERVICE(u);
2543
2544 assert(s);
2545
2546 return !!s->exec_command[SERVICE_EXEC_RELOAD];
2547}
2548
81c58355
MB
2549static unsigned service_exec_command_index(Unit *u, ServiceExecCommand id, ExecCommand *current) {
2550 Service *s = SERVICE(u);
2551 unsigned idx = 0;
2552 ExecCommand *first, *c;
2553
2554 assert(s);
a10f5d05
MB
2555 assert(id >= 0);
2556 assert(id < _SERVICE_EXEC_COMMAND_MAX);
81c58355
MB
2557
2558 first = s->exec_command[id];
2559
2560 /* Figure out where we are in the list by walking back to the beginning */
2561 for (c = current; c != first; c = c->command_prev)
2562 idx++;
2563
2564 return idx;
2565}
2566
2567static int service_serialize_exec_command(Unit *u, FILE *f, ExecCommand *command) {
6e866b33 2568 _cleanup_free_ char *args = NULL, *p = NULL;
81c58355 2569 Service *s = SERVICE(u);
6e866b33 2570 const char *type, *key;
81c58355 2571 ServiceExecCommand id;
8b3d4ff0 2572 size_t length = 0;
81c58355 2573 unsigned idx;
81c58355 2574 char **arg;
81c58355
MB
2575
2576 assert(s);
2577 assert(f);
2578
2579 if (!command)
2580 return 0;
2581
2582 if (command == s->control_command) {
2583 type = "control";
2584 id = s->control_command_id;
2585 } else {
2586 type = "main";
2587 id = SERVICE_EXEC_START;
2588 }
2589
2590 idx = service_exec_command_index(u, id, command);
2591
2592 STRV_FOREACH(arg, command->argv) {
81c58355 2593 _cleanup_free_ char *e = NULL;
6e866b33 2594 size_t n;
81c58355 2595
6e866b33 2596 e = cescape(*arg);
81c58355 2597 if (!e)
6e866b33 2598 return log_oom();
81c58355
MB
2599
2600 n = strlen(e);
8b3d4ff0 2601 if (!GREEDY_REALLOC(args, length + 2 + n + 2))
6e866b33 2602 return log_oom();
81c58355
MB
2603
2604 if (length > 0)
2605 args[length++] = ' ';
2606
f2dec872 2607 args[length++] = '"';
81c58355
MB
2608 memcpy(args + length, e, n);
2609 length += n;
f2dec872 2610 args[length++] = '"';
81c58355
MB
2611 }
2612
8b3d4ff0 2613 if (!GREEDY_REALLOC(args, length + 1))
6e866b33
MB
2614 return log_oom();
2615
81c58355
MB
2616 args[length++] = 0;
2617
6e866b33 2618 p = cescape(command->path);
81c58355 2619 if (!p)
a10f5d05 2620 return log_oom();
81c58355 2621
6e866b33 2622 key = strjoina(type, "-command");
a10f5d05
MB
2623 (void) serialize_item_format(f, key, "%s %u %s %s", service_exec_command_to_string(id), idx, p, args);
2624
2625 return 0;
81c58355
MB
2626}
2627
663996b3
MS
2628static int service_serialize(Unit *u, FILE *f, FDSet *fds) {
2629 Service *s = SERVICE(u);
e735f4d4 2630 ServiceFDStore *fs;
db2df898 2631 int r;
663996b3
MS
2632
2633 assert(u);
2634 assert(f);
2635 assert(fds);
2636
6e866b33
MB
2637 (void) serialize_item(f, "state", service_state_to_string(s->state));
2638 (void) serialize_item(f, "result", service_result_to_string(s->result));
2639 (void) serialize_item(f, "reload-result", service_result_to_string(s->reload_result));
663996b3
MS
2640
2641 if (s->control_pid > 0)
6e866b33 2642 (void) serialize_item_format(f, "control-pid", PID_FMT, s->control_pid);
663996b3
MS
2643
2644 if (s->main_pid_known && s->main_pid > 0)
6e866b33 2645 (void) serialize_item_format(f, "main-pid", PID_FMT, s->main_pid);
663996b3 2646
6e866b33
MB
2647 (void) serialize_bool(f, "main-pid-known", s->main_pid_known);
2648 (void) serialize_bool(f, "bus-name-good", s->bus_name_good);
2649 (void) serialize_bool(f, "bus-name-owner", s->bus_name_owner);
663996b3 2650
6e866b33
MB
2651 (void) serialize_item_format(f, "n-restarts", "%u", s->n_restarts);
2652 (void) serialize_bool(f, "flush-n-restarts", s->flush_n_restarts);
f5e65279 2653
6e866b33 2654 r = serialize_item_escaped(f, "status-text", s->status_text);
db2df898
MP
2655 if (r < 0)
2656 return r;
663996b3 2657
81c58355
MB
2658 service_serialize_exec_command(u, f, s->control_command);
2659 service_serialize_exec_command(u, f, s->main_command);
663996b3 2660
6e866b33 2661 r = serialize_fd(f, fds, "stdin-fd", s->stdin_fd);
db2df898
MP
2662 if (r < 0)
2663 return r;
6e866b33 2664 r = serialize_fd(f, fds, "stdout-fd", s->stdout_fd);
db2df898
MP
2665 if (r < 0)
2666 return r;
6e866b33 2667 r = serialize_fd(f, fds, "stderr-fd", s->stderr_fd);
db2df898
MP
2668 if (r < 0)
2669 return r;
5eef597e 2670
6e866b33
MB
2671 if (s->exec_fd_event_source) {
2672 r = serialize_fd(f, fds, "exec-fd", sd_event_source_get_io_fd(s->exec_fd_event_source));
2673 if (r < 0)
2674 return r;
2675
2676 (void) serialize_bool(f, "exec-fd-hot", s->exec_fd_hot);
2677 }
2678
8a584da2 2679 if (UNIT_ISSET(s->accept_socket)) {
6e866b33 2680 r = serialize_item(f, "accept-socket", UNIT_DEREF(s->accept_socket)->id);
8a584da2
MP
2681 if (r < 0)
2682 return r;
2683 }
2684
6e866b33 2685 r = serialize_fd(f, fds, "socket-fd", s->socket_fd);
db2df898
MP
2686 if (r < 0)
2687 return r;
5eef597e 2688
e735f4d4 2689 LIST_FOREACH(fd_store, fs, s->fd_store) {
6300502b 2690 _cleanup_free_ char *c = NULL;
e735f4d4
MP
2691 int copy;
2692
2693 copy = fdset_put_dup(fds, fs->fd);
2694 if (copy < 0)
6e866b33 2695 return log_error_errno(copy, "Failed to copy file descriptor for serialization: %m");
e735f4d4 2696
6300502b 2697 c = cescape(fs->fdname);
6e866b33
MB
2698 if (!c)
2699 return log_oom();
6300502b 2700
a10f5d05 2701 (void) serialize_item_format(f, "fd-store-fd", "%i \"%s\" %i", copy, c, fs->do_poll);
e735f4d4
MP
2702 }
2703
663996b3 2704 if (s->main_exec_status.pid > 0) {
6e866b33
MB
2705 (void) serialize_item_format(f, "main-exec-status-pid", PID_FMT, s->main_exec_status.pid);
2706 (void) serialize_dual_timestamp(f, "main-exec-status-start", &s->main_exec_status.start_timestamp);
2707 (void) serialize_dual_timestamp(f, "main-exec-status-exit", &s->main_exec_status.exit_timestamp);
663996b3
MS
2708
2709 if (dual_timestamp_is_set(&s->main_exec_status.exit_timestamp)) {
6e866b33
MB
2710 (void) serialize_item_format(f, "main-exec-status-code", "%i", s->main_exec_status.code);
2711 (void) serialize_item_format(f, "main-exec-status-status", "%i", s->main_exec_status.status);
663996b3
MS
2712 }
2713 }
e3bff60a 2714
6e866b33
MB
2715 (void) serialize_dual_timestamp(f, "watchdog-timestamp", &s->watchdog_timestamp);
2716 (void) serialize_bool(f, "forbid-restart", s->forbid_restart);
663996b3 2717
5a920b42 2718 if (s->watchdog_override_enable)
6e866b33
MB
2719 (void) serialize_item_format(f, "watchdog-override-usec", USEC_FMT, s->watchdog_override_usec);
2720
2721 if (s->watchdog_original_usec != USEC_INFINITY)
2722 (void) serialize_item_format(f, "watchdog-original-usec", USEC_FMT, s->watchdog_original_usec);
5a920b42 2723
663996b3
MS
2724 return 0;
2725}
2726
5b5a102a 2727int service_deserialize_exec_command(
a10f5d05
MB
2728 Unit *u,
2729 const char *key,
2730 const char *value) {
2731
81c58355
MB
2732 Service *s = SERVICE(u);
2733 int r;
2734 unsigned idx = 0, i;
2735 bool control, found = false;
2736 ServiceExecCommand id = _SERVICE_EXEC_COMMAND_INVALID;
2737 ExecCommand *command = NULL;
2738 _cleanup_free_ char *path = NULL;
2739 _cleanup_strv_free_ char **argv = NULL;
2740
2741 enum ExecCommandState {
2742 STATE_EXEC_COMMAND_TYPE,
2743 STATE_EXEC_COMMAND_INDEX,
2744 STATE_EXEC_COMMAND_PATH,
2745 STATE_EXEC_COMMAND_ARGS,
2746 _STATE_EXEC_COMMAND_MAX,
3a6ce677 2747 _STATE_EXEC_COMMAND_INVALID = -EINVAL,
81c58355
MB
2748 } state;
2749
2750 assert(s);
2751 assert(key);
2752 assert(value);
2753
2754 control = streq(key, "control-command");
2755
2756 state = STATE_EXEC_COMMAND_TYPE;
2757
2758 for (;;) {
2759 _cleanup_free_ char *arg = NULL;
2760
f2dec872 2761 r = extract_first_word(&value, &arg, NULL, EXTRACT_CUNESCAPE | EXTRACT_UNQUOTE);
6e866b33
MB
2762 if (r < 0)
2763 return r;
81c58355
MB
2764 if (r == 0)
2765 break;
81c58355
MB
2766
2767 switch (state) {
2768 case STATE_EXEC_COMMAND_TYPE:
2769 id = service_exec_command_from_string(arg);
2770 if (id < 0)
3a6ce677 2771 return id;
81c58355
MB
2772
2773 state = STATE_EXEC_COMMAND_INDEX;
2774 break;
2775 case STATE_EXEC_COMMAND_INDEX:
2776 r = safe_atou(arg, &idx);
2777 if (r < 0)
3a6ce677 2778 return r;
81c58355
MB
2779
2780 state = STATE_EXEC_COMMAND_PATH;
2781 break;
2782 case STATE_EXEC_COMMAND_PATH:
b012e921 2783 path = TAKE_PTR(arg);
81c58355 2784 state = STATE_EXEC_COMMAND_ARGS;
81c58355
MB
2785 break;
2786 case STATE_EXEC_COMMAND_ARGS:
2787 r = strv_extend(&argv, arg);
2788 if (r < 0)
2789 return -ENOMEM;
2790 break;
2791 default:
5b5a102a 2792 assert_not_reached("Logic error in exec command deserialization");
81c58355
MB
2793 }
2794 }
2795
2796 if (state != STATE_EXEC_COMMAND_ARGS)
2797 return -EINVAL;
5b5a102a
MB
2798 if (strv_isempty(argv))
2799 return -EINVAL; /* At least argv[0] must be always present. */
81c58355
MB
2800
2801 /* Let's check whether exec command on given offset matches data that we just deserialized */
2802 for (command = s->exec_command[id], i = 0; command; command = command->command_next, i++) {
2803 if (i != idx)
2804 continue;
2805
2806 found = strv_equal(argv, command->argv) && streq(command->path, path);
2807 break;
2808 }
2809
2810 if (!found) {
2811 /* Command at the index we serialized is different, let's look for command that exactly
2812 * matches but is on different index. If there is no such command we will not resume execution. */
2813 for (command = s->exec_command[id]; command; command = command->command_next)
2814 if (strv_equal(command->argv, argv) && streq(command->path, path))
2815 break;
2816 }
2817
a10f5d05 2818 if (command && control) {
81c58355 2819 s->control_command = command;
a10f5d05
MB
2820 s->control_command_id = id;
2821 } else if (command)
81c58355
MB
2822 s->main_command = command;
2823 else
2824 log_unit_warning(u, "Current command vanished from the unit file, execution of the command list won't be resumed.");
2825
2826 return 0;
2827}
2828
663996b3
MS
2829static int service_deserialize_item(Unit *u, const char *key, const char *value, FDSet *fds) {
2830 Service *s = SERVICE(u);
e735f4d4 2831 int r;
663996b3
MS
2832
2833 assert(u);
2834 assert(key);
2835 assert(value);
2836 assert(fds);
2837
2838 if (streq(key, "state")) {
2839 ServiceState state;
2840
2841 state = service_state_from_string(value);
2842 if (state < 0)
e3bff60a 2843 log_unit_debug(u, "Failed to parse state value: %s", value);
663996b3
MS
2844 else
2845 s->deserialized_state = state;
2846 } else if (streq(key, "result")) {
2847 ServiceResult f;
2848
2849 f = service_result_from_string(value);
2850 if (f < 0)
e3bff60a 2851 log_unit_debug(u, "Failed to parse result value: %s", value);
663996b3
MS
2852 else if (f != SERVICE_SUCCESS)
2853 s->result = f;
2854
2855 } else if (streq(key, "reload-result")) {
2856 ServiceResult f;
2857
2858 f = service_result_from_string(value);
2859 if (f < 0)
e3bff60a 2860 log_unit_debug(u, "Failed to parse reload result value: %s", value);
663996b3
MS
2861 else if (f != SERVICE_SUCCESS)
2862 s->reload_result = f;
2863
2864 } else if (streq(key, "control-pid")) {
2865 pid_t pid;
2866
2867 if (parse_pid(value, &pid) < 0)
e3bff60a 2868 log_unit_debug(u, "Failed to parse control-pid value: %s", value);
663996b3
MS
2869 else
2870 s->control_pid = pid;
2871 } else if (streq(key, "main-pid")) {
2872 pid_t pid;
2873
2874 if (parse_pid(value, &pid) < 0)
e3bff60a 2875 log_unit_debug(u, "Failed to parse main-pid value: %s", value);
1d42b86d
MB
2876 else
2877 (void) service_set_main_pid(s, pid);
663996b3
MS
2878 } else if (streq(key, "main-pid-known")) {
2879 int b;
2880
2881 b = parse_boolean(value);
2882 if (b < 0)
e3bff60a 2883 log_unit_debug(u, "Failed to parse main-pid-known value: %s", value);
663996b3
MS
2884 else
2885 s->main_pid_known = b;
86f210e9
MP
2886 } else if (streq(key, "bus-name-good")) {
2887 int b;
2888
2889 b = parse_boolean(value);
2890 if (b < 0)
2891 log_unit_debug(u, "Failed to parse bus-name-good value: %s", value);
2892 else
2893 s->bus_name_good = b;
4c89c718
MP
2894 } else if (streq(key, "bus-name-owner")) {
2895 r = free_and_strdup(&s->bus_name_owner, value);
2896 if (r < 0)
2897 log_unit_error_errno(u, r, "Unable to deserialize current bus owner %s: %m", value);
663996b3
MS
2898 } else if (streq(key, "status-text")) {
2899 char *t;
2900
e3bff60a
MP
2901 r = cunescape(value, 0, &t);
2902 if (r < 0)
6e866b33
MB
2903 log_unit_debug_errno(u, r, "Failed to unescape status text '%s': %m", value);
2904 else
2905 free_and_replace(s->status_text, t);
663996b3 2906
8a584da2
MP
2907 } else if (streq(key, "accept-socket")) {
2908 Unit *socket;
2909
2910 r = manager_load_unit(u->manager, value, NULL, NULL, &socket);
2911 if (r < 0)
6e866b33 2912 log_unit_debug_errno(u, r, "Failed to load accept-socket unit '%s': %m", value);
8a584da2 2913 else {
98393f85 2914 unit_ref_set(&s->accept_socket, u, socket);
8a584da2
MP
2915 SOCKET(socket)->n_connections++;
2916 }
2917
663996b3
MS
2918 } else if (streq(key, "socket-fd")) {
2919 int fd;
2920
2921 if (safe_atoi(value, &fd) < 0 || fd < 0 || !fdset_contains(fds, fd))
e3bff60a 2922 log_unit_debug(u, "Failed to parse socket-fd value: %s", value);
663996b3 2923 else {
60f067b4 2924 asynchronous_close(s->socket_fd);
663996b3
MS
2925 s->socket_fd = fdset_remove(fds, fd);
2926 }
e735f4d4 2927 } else if (streq(key, "fd-store-fd")) {
a10f5d05 2928 _cleanup_free_ char *fdv = NULL, *fdn = NULL, *fdp = NULL;
e735f4d4 2929 int fd;
a10f5d05 2930 int do_poll;
e735f4d4 2931
a10f5d05
MB
2932 r = extract_first_word(&value, &fdv, NULL, 0);
2933 if (r <= 0 || safe_atoi(fdv, &fd) < 0 || fd < 0 || !fdset_contains(fds, fd)) {
e3bff60a 2934 log_unit_debug(u, "Failed to parse fd-store-fd value: %s", value);
a10f5d05
MB
2935 return 0;
2936 }
6300502b 2937
a10f5d05
MB
2938 r = extract_first_word(&value, &fdn, NULL, EXTRACT_CUNESCAPE | EXTRACT_UNQUOTE);
2939 if (r <= 0) {
8b3d4ff0 2940 log_unit_debug(u, "Failed to parse fd-store-fd value: %s", value);
a10f5d05
MB
2941 return 0;
2942 }
6300502b 2943
a10f5d05
MB
2944 r = extract_first_word(&value, &fdp, NULL, 0);
2945 if (r == 0) {
2946 /* If the value is not present, we assume the default */
2947 do_poll = 1;
2948 } else if (r < 0 || safe_atoi(fdp, &do_poll) < 0) {
2949 log_unit_debug_errno(u, r, "Failed to parse fd-store-fd value \"%s\": %m", value);
2950 return 0;
e735f4d4
MP
2951 }
2952
a10f5d05
MB
2953 r = service_add_fd_store(s, fd, fdn, do_poll);
2954 if (r < 0)
2955 log_unit_error_errno(u, r, "Failed to add fd to store: %m");
2956 else
2957 fdset_remove(fds, fd);
663996b3
MS
2958 } else if (streq(key, "main-exec-status-pid")) {
2959 pid_t pid;
2960
2961 if (parse_pid(value, &pid) < 0)
e3bff60a 2962 log_unit_debug(u, "Failed to parse main-exec-status-pid value: %s", value);
663996b3
MS
2963 else
2964 s->main_exec_status.pid = pid;
2965 } else if (streq(key, "main-exec-status-code")) {
2966 int i;
2967
2968 if (safe_atoi(value, &i) < 0)
e3bff60a 2969 log_unit_debug(u, "Failed to parse main-exec-status-code value: %s", value);
663996b3
MS
2970 else
2971 s->main_exec_status.code = i;
2972 } else if (streq(key, "main-exec-status-status")) {
2973 int i;
2974
2975 if (safe_atoi(value, &i) < 0)
e3bff60a 2976 log_unit_debug(u, "Failed to parse main-exec-status-status value: %s", value);
663996b3
MS
2977 else
2978 s->main_exec_status.status = i;
2979 } else if (streq(key, "main-exec-status-start"))
6e866b33 2980 deserialize_dual_timestamp(value, &s->main_exec_status.start_timestamp);
663996b3 2981 else if (streq(key, "main-exec-status-exit"))
6e866b33 2982 deserialize_dual_timestamp(value, &s->main_exec_status.exit_timestamp);
663996b3 2983 else if (streq(key, "watchdog-timestamp"))
6e866b33 2984 deserialize_dual_timestamp(value, &s->watchdog_timestamp);
60f067b4
JS
2985 else if (streq(key, "forbid-restart")) {
2986 int b;
663996b3 2987
60f067b4
JS
2988 b = parse_boolean(value);
2989 if (b < 0)
e3bff60a 2990 log_unit_debug(u, "Failed to parse forbid-restart value: %s", value);
60f067b4
JS
2991 else
2992 s->forbid_restart = b;
db2df898
MP
2993 } else if (streq(key, "stdin-fd")) {
2994 int fd;
2995
2996 if (safe_atoi(value, &fd) < 0 || fd < 0 || !fdset_contains(fds, fd))
2997 log_unit_debug(u, "Failed to parse stdin-fd value: %s", value);
2998 else {
2999 asynchronous_close(s->stdin_fd);
3000 s->stdin_fd = fdset_remove(fds, fd);
4c89c718 3001 s->exec_context.stdio_as_fds = true;
db2df898
MP
3002 }
3003 } else if (streq(key, "stdout-fd")) {
3004 int fd;
3005
3006 if (safe_atoi(value, &fd) < 0 || fd < 0 || !fdset_contains(fds, fd))
3007 log_unit_debug(u, "Failed to parse stdout-fd value: %s", value);
3008 else {
3009 asynchronous_close(s->stdout_fd);
3010 s->stdout_fd = fdset_remove(fds, fd);
4c89c718 3011 s->exec_context.stdio_as_fds = true;
db2df898
MP
3012 }
3013 } else if (streq(key, "stderr-fd")) {
3014 int fd;
3015
3016 if (safe_atoi(value, &fd) < 0 || fd < 0 || !fdset_contains(fds, fd))
3017 log_unit_debug(u, "Failed to parse stderr-fd value: %s", value);
3018 else {
3019 asynchronous_close(s->stderr_fd);
3020 s->stderr_fd = fdset_remove(fds, fd);
4c89c718 3021 s->exec_context.stdio_as_fds = true;
db2df898 3022 }
6e866b33
MB
3023 } else if (streq(key, "exec-fd")) {
3024 int fd;
3025
3026 if (safe_atoi(value, &fd) < 0 || fd < 0 || !fdset_contains(fds, fd))
3027 log_unit_debug(u, "Failed to parse exec-fd value: %s", value);
3028 else {
3029 s->exec_fd_event_source = sd_event_source_unref(s->exec_fd_event_source);
3030
3031 fd = fdset_remove(fds, fd);
3032 if (service_allocate_exec_fd_event_source(s, fd, &s->exec_fd_event_source) < 0)
3033 safe_close(fd);
3034 }
5a920b42 3035 } else if (streq(key, "watchdog-override-usec")) {
6e866b33 3036 if (deserialize_usec(value, &s->watchdog_override_usec) < 0)
5a920b42 3037 log_unit_debug(u, "Failed to parse watchdog_override_usec value: %s", value);
6e866b33 3038 else
5a920b42 3039 s->watchdog_override_enable = true;
6e866b33
MB
3040
3041 } else if (streq(key, "watchdog-original-usec")) {
3042 if (deserialize_usec(value, &s->watchdog_original_usec) < 0)
3043 log_unit_debug(u, "Failed to parse watchdog_original_usec value: %s", value);
3044
81c58355
MB
3045 } else if (STR_IN_SET(key, "main-command", "control-command")) {
3046 r = service_deserialize_exec_command(u, key, value);
3047 if (r < 0)
3048 log_unit_debug_errno(u, r, "Failed to parse serialized command \"%s\": %m", value);
f5e65279
MB
3049
3050 } else if (streq(key, "n-restarts")) {
3051 r = safe_atou(value, &s->n_restarts);
3052 if (r < 0)
3053 log_unit_debug_errno(u, r, "Failed to parse serialized restart counter '%s': %m", value);
3054
3055 } else if (streq(key, "flush-n-restarts")) {
3056 r = parse_boolean(value);
3057 if (r < 0)
3058 log_unit_debug_errno(u, r, "Failed to parse serialized flush restart counter setting '%s': %m", value);
3059 else
3060 s->flush_n_restarts = r;
663996b3 3061 } else
e3bff60a 3062 log_unit_debug(u, "Unknown serialization key: %s", key);
663996b3
MS
3063
3064 return 0;
3065}
3066
3067_pure_ static UnitActiveState service_active_state(Unit *u) {
3068 const UnitActiveState *table;
3069
3070 assert(u);
3071
3072 table = SERVICE(u)->type == SERVICE_IDLE ? state_translation_table_idle : state_translation_table;
3073
3074 return table[SERVICE(u)->state];
3075}
3076
3077static const char *service_sub_state_to_string(Unit *u) {
3078 assert(u);
3079
3080 return service_state_to_string(SERVICE(u)->state);
3081}
3082
98393f85 3083static bool service_may_gc(Unit *u) {
663996b3
MS
3084 Service *s = SERVICE(u);
3085
3086 assert(s);
3087
52ad194e 3088 /* Never clean up services that still have a process around, even if the service is formally dead. Note that
98393f85 3089 * unit_may_gc() already checked our cgroup for us, we just check our two additional PIDs, too, in case they
52ad194e
MB
3090 * have moved outside of the cgroup. */
3091
3092 if (main_pid_good(s) > 0 ||
663996b3 3093 control_pid_good(s) > 0)
98393f85 3094 return false;
663996b3 3095
98393f85 3096 return true;
663996b3
MS
3097}
3098
663996b3
MS
3099static int service_retry_pid_file(Service *s) {
3100 int r;
3101
3102 assert(s->pid_file);
f5e65279 3103 assert(IN_SET(s->state, SERVICE_START, SERVICE_START_POST));
663996b3
MS
3104
3105 r = service_load_pid_file(s, false);
3106 if (r < 0)
3107 return r;
3108
3109 service_unwatch_pid_file(s);
3110
3111 service_enter_running(s, SERVICE_SUCCESS);
3112 return 0;
3113}
3114
3115static int service_watch_pid_file(Service *s) {
3116 int r;
3117
e3bff60a 3118 log_unit_debug(UNIT(s), "Setting watch for PID file %s", s->pid_file_pathspec->path);
5eef597e 3119
6e866b33 3120 r = path_spec_watch(s->pid_file_pathspec, service_dispatch_inotify_io);
663996b3
MS
3121 if (r < 0)
3122 goto fail;
3123
3124 /* the pidfile might have appeared just before we set the watch */
e3bff60a 3125 log_unit_debug(UNIT(s), "Trying to read PID file %s in case it changed", s->pid_file_pathspec->path);
663996b3
MS
3126 service_retry_pid_file(s);
3127
3128 return 0;
3129fail:
e3bff60a 3130 log_unit_error_errno(UNIT(s), r, "Failed to set a watch for PID file %s: %m", s->pid_file_pathspec->path);
663996b3
MS
3131 service_unwatch_pid_file(s);
3132 return r;
3133}
3134
3135static int service_demand_pid_file(Service *s) {
3136 PathSpec *ps;
3137
3138 assert(s->pid_file);
3139 assert(!s->pid_file_pathspec);
3140
3141 ps = new0(PathSpec, 1);
3142 if (!ps)
3143 return -ENOMEM;
3144
60f067b4 3145 ps->unit = UNIT(s);
663996b3
MS
3146 ps->path = strdup(s->pid_file);
3147 if (!ps->path) {
3148 free(ps);
3149 return -ENOMEM;
3150 }
3151
8b3d4ff0 3152 path_simplify(ps->path);
663996b3
MS
3153
3154 /* PATH_CHANGED would not be enough. There are daemons (sendmail) that
3155 * keep their PID file open all the time. */
3156 ps->type = PATH_MODIFIED;
3157 ps->inotify_fd = -1;
3158
3159 s->pid_file_pathspec = ps;
3160
60f067b4
JS
3161 return service_watch_pid_file(s);
3162}
3163
6e866b33 3164static int service_dispatch_inotify_io(sd_event_source *source, int fd, uint32_t events, void *userdata) {
60f067b4
JS
3165 PathSpec *p = userdata;
3166 Service *s;
3167
3168 assert(p);
3169
3170 s = SERVICE(p->unit);
3171
3172 assert(s);
3173 assert(fd >= 0);
f5e65279 3174 assert(IN_SET(s->state, SERVICE_START, SERVICE_START_POST));
60f067b4
JS
3175 assert(s->pid_file_pathspec);
3176 assert(path_spec_owns_inotify_fd(s->pid_file_pathspec, fd));
3177
e3bff60a 3178 log_unit_debug(UNIT(s), "inotify event");
60f067b4
JS
3179
3180 if (path_spec_fd_event(p, events) < 0)
3181 goto fail;
3182
3183 if (service_retry_pid_file(s) == 0)
3184 return 0;
3185
3186 if (service_watch_pid_file(s) < 0)
3187 goto fail;
3188
3189 return 0;
3190
3191fail:
3192 service_unwatch_pid_file(s);
3193 service_enter_signal(s, SERVICE_STOP_SIGTERM, SERVICE_FAILURE_RESOURCES);
3194 return 0;
3195}
3196
6e866b33
MB
3197static int service_dispatch_exec_io(sd_event_source *source, int fd, uint32_t events, void *userdata) {
3198 Service *s = SERVICE(userdata);
3199
3200 assert(s);
3201
3202 log_unit_debug(UNIT(s), "got exec-fd event");
3203
3204 /* If Type=exec is set, we'll consider a service started successfully the instant we invoked execve()
3205 * successfully for it. We implement this through a pipe() towards the child, which the kernel automatically
3206 * closes for us due to O_CLOEXEC on execve() in the child, which then triggers EOF on the pipe in the
3207 * parent. We need to be careful however, as there are other reasons that we might cause the child's side of
3208 * the pipe to be closed (for example, a simple exit()). To deal with that we'll ignore EOFs on the pipe unless
3209 * the child signalled us first that it is about to call the execve(). It does so by sending us a simple
3210 * non-zero byte via the pipe. We also provide the child with a way to inform us in case execve() failed: if it
3211 * sends a zero byte we'll ignore POLLHUP on the fd again. */
3212
3213 for (;;) {
3214 uint8_t x;
3215 ssize_t n;
3216
3217 n = read(fd, &x, sizeof(x));
3218 if (n < 0) {
3219 if (errno == EAGAIN) /* O_NONBLOCK in effect → everything queued has now been processed. */
3220 return 0;
3221
3222 return log_unit_error_errno(UNIT(s), errno, "Failed to read from exec_fd: %m");
3223 }
3224 if (n == 0) { /* EOF → the event we are waiting for */
3225
3226 s->exec_fd_event_source = sd_event_source_unref(s->exec_fd_event_source);
3227
3228 if (s->exec_fd_hot) { /* Did the child tell us to expect EOF now? */
3229 log_unit_debug(UNIT(s), "Got EOF on exec-fd");
3230
3231 s->exec_fd_hot = false;
3232
3233 /* Nice! This is what we have been waiting for. Transition to next state. */
3234 if (s->type == SERVICE_EXEC && s->state == SERVICE_START)
3235 service_enter_start_post(s);
3236 } else
3237 log_unit_debug(UNIT(s), "Got EOF on exec-fd while it was disabled, ignoring.");
3238
3239 return 0;
3240 }
3241
3242 /* A byte was read → this turns on/off the exec fd logic */
3243 assert(n == sizeof(x));
3244 s->exec_fd_hot = x;
3245 }
3246
3247 return 0;
3248}
3249
60f067b4
JS
3250static void service_notify_cgroup_empty_event(Unit *u) {
3251 Service *s = SERVICE(u);
3252
3253 assert(u);
3254
f2dec872 3255 log_unit_debug(u, "Control group is empty.");
60f067b4
JS
3256
3257 switch (s->state) {
3258
3259 /* Waiting for SIGCHLD is usually more interesting,
3260 * because it includes return codes/signals. Which is
3261 * why we ignore the cgroup events for most cases,
3262 * except when we don't know pid which to expect the
3263 * SIGCHLD for. */
3264
3265 case SERVICE_START:
f5e65279
MB
3266 if (s->type == SERVICE_NOTIFY &&
3267 main_pid_good(s) == 0 &&
3268 control_pid_good(s) == 0) {
2897b343
MP
3269 /* No chance of getting a ready notification anymore */
3270 service_enter_stop_post(s, SERVICE_FAILURE_PROTOCOL);
3271 break;
3272 }
3273
52ad194e 3274 _fallthrough_;
60f067b4 3275 case SERVICE_START_POST:
f5e65279
MB
3276 if (s->pid_file_pathspec &&
3277 main_pid_good(s) == 0 &&
3278 control_pid_good(s) == 0) {
3279
2897b343 3280 /* Give up hoping for the daemon to write its PID file */
e3bff60a 3281 log_unit_warning(u, "Daemon never wrote its PID file. Failing.");
5eef597e 3282
60f067b4
JS
3283 service_unwatch_pid_file(s);
3284 if (s->state == SERVICE_START)
2897b343 3285 service_enter_stop_post(s, SERVICE_FAILURE_PROTOCOL);
60f067b4 3286 else
2897b343 3287 service_enter_stop(s, SERVICE_FAILURE_PROTOCOL);
60f067b4
JS
3288 }
3289 break;
663996b3 3290
60f067b4
JS
3291 case SERVICE_RUNNING:
3292 /* service_enter_running() will figure out what to do */
3293 service_enter_running(s, SERVICE_SUCCESS);
3294 break;
663996b3 3295
6e866b33 3296 case SERVICE_STOP_WATCHDOG:
60f067b4
JS
3297 case SERVICE_STOP_SIGTERM:
3298 case SERVICE_STOP_SIGKILL:
663996b3 3299
f5e65279 3300 if (main_pid_good(s) <= 0 && control_pid_good(s) <= 0)
60f067b4 3301 service_enter_stop_post(s, SERVICE_SUCCESS);
663996b3 3302
60f067b4 3303 break;
663996b3 3304
60f067b4 3305 case SERVICE_STOP_POST:
a10f5d05 3306 case SERVICE_FINAL_WATCHDOG:
60f067b4
JS
3307 case SERVICE_FINAL_SIGTERM:
3308 case SERVICE_FINAL_SIGKILL:
f5e65279 3309 if (main_pid_good(s) <= 0 && control_pid_good(s) <= 0)
60f067b4 3310 service_enter_dead(s, SERVICE_SUCCESS, true);
663996b3 3311
60f067b4 3312 break;
663996b3 3313
a032b68d
MB
3314 /* If the cgroup empty notification comes when the unit is not active, we must have failed to clean
3315 * up the cgroup earlier and should do it now. */
3316 case SERVICE_DEAD:
3317 case SERVICE_FAILED:
3318 unit_prune_cgroup(u);
3319 break;
3320
60f067b4
JS
3321 default:
3322 ;
3323 }
663996b3
MS
3324}
3325
f2dec872
BR
3326static void service_notify_cgroup_oom_event(Unit *u) {
3327 Service *s = SERVICE(u);
3328
3329 log_unit_debug(u, "Process of control group was killed by the OOM killer.");
3330
3331 if (s->oom_policy == OOM_CONTINUE)
3332 return;
3333
3334 switch (s->state) {
3335
3336 case SERVICE_CONDITION:
3337 case SERVICE_START_PRE:
3338 case SERVICE_START:
3339 case SERVICE_START_POST:
3340 case SERVICE_STOP:
3341 if (s->oom_policy == OOM_STOP)
3342 service_enter_signal(s, SERVICE_STOP_SIGTERM, SERVICE_FAILURE_OOM_KILL);
3343 else if (s->oom_policy == OOM_KILL)
3344 service_enter_signal(s, SERVICE_STOP_SIGKILL, SERVICE_FAILURE_OOM_KILL);
3345
3346 break;
3347
3348 case SERVICE_EXITED:
3349 case SERVICE_RUNNING:
3350 if (s->oom_policy == OOM_STOP)
3351 service_enter_stop(s, SERVICE_FAILURE_OOM_KILL);
3352 else if (s->oom_policy == OOM_KILL)
3353 service_enter_signal(s, SERVICE_STOP_SIGKILL, SERVICE_FAILURE_OOM_KILL);
3354
3355 break;
3356
3357 case SERVICE_STOP_WATCHDOG:
3358 case SERVICE_STOP_SIGTERM:
3359 service_enter_signal(s, SERVICE_STOP_SIGKILL, SERVICE_FAILURE_OOM_KILL);
3360 break;
3361
3362 case SERVICE_STOP_SIGKILL:
3363 case SERVICE_FINAL_SIGKILL:
3364 if (s->result == SERVICE_SUCCESS)
3365 s->result = SERVICE_FAILURE_OOM_KILL;
3366 break;
3367
3368 case SERVICE_STOP_POST:
3369 case SERVICE_FINAL_SIGTERM:
3370 service_enter_signal(s, SERVICE_FINAL_SIGKILL, SERVICE_FAILURE_OOM_KILL);
3371 break;
3372
3373 default:
3374 ;
3375 }
3376}
3377
663996b3 3378static void service_sigchld_event(Unit *u, pid_t pid, int code, int status) {
1d42b86d 3379 bool notify_dbus = true;
663996b3
MS
3380 Service *s = SERVICE(u);
3381 ServiceResult f;
bb4f798a 3382 ExitClean clean_mode;
663996b3
MS
3383
3384 assert(s);
3385 assert(pid >= 0);
3386
bb4f798a
MB
3387 /* Oneshot services and non-SERVICE_EXEC_START commands should not be
3388 * considered daemons as they are typically not long running. */
3389 if (s->type == SERVICE_ONESHOT || (s->control_pid == pid && s->control_command_id != SERVICE_EXEC_START))
3390 clean_mode = EXIT_CLEAN_COMMAND;
3391 else
3392 clean_mode = EXIT_CLEAN_DAEMON;
3393
3394 if (is_clean_exit(code, status, clean_mode, &s->success_status))
663996b3
MS
3395 f = SERVICE_SUCCESS;
3396 else if (code == CLD_EXITED)
3397 f = SERVICE_FAILURE_EXIT_CODE;
3398 else if (code == CLD_KILLED)
3399 f = SERVICE_FAILURE_SIGNAL;
3400 else if (code == CLD_DUMPED)
3401 f = SERVICE_FAILURE_CORE_DUMP;
3402 else
3403 assert_not_reached("Unknown code");
3404
8b3d4ff0
MB
3405 /* Services with ExitType=cgroup ignore the main PID for purposes of exit status */
3406 if (s->exit_type == SERVICE_EXIT_CGROUP && s->main_pid == pid) {
3407 service_unwatch_main_pid(s);
3408 s->main_pid_known = false;
3409 }
3410
3411 if ((s->exit_type == SERVICE_EXIT_MAIN && s->main_pid == pid) ||
3412 (s->exit_type == SERVICE_EXIT_CGROUP && cgroup_empty(s) && !control_pid_good(s))) {
663996b3
MS
3413 /* Forking services may occasionally move to a new PID.
3414 * As long as they update the PID file before exiting the old
3415 * PID, they're fine. */
1d42b86d 3416 if (service_load_pid_file(s, false) > 0)
663996b3
MS
3417 return;
3418
3419 s->main_pid = 0;
3420 exec_status_exit(&s->main_exec_status, &s->exec_context, pid, code, status);
3421
3422 if (s->main_command) {
3423 /* If this is not a forking service than the
3424 * main process got started and hence we copy
3425 * the exit status so that it is recorded both
3426 * as main and as control process exit
3427 * status */
3428
3429 s->main_command->exec_status = s->main_exec_status;
3430
f5e65279 3431 if (s->main_command->flags & EXEC_COMMAND_IGNORE_FAILURE)
663996b3
MS
3432 f = SERVICE_SUCCESS;
3433 } else if (s->exec_command[SERVICE_EXEC_START]) {
3434
3435 /* If this is a forked process, then we should
3436 * ignore the return value if this was
3437 * configured for the starter process */
3438
f5e65279 3439 if (s->exec_command[SERVICE_EXEC_START]->flags & EXEC_COMMAND_IGNORE_FAILURE)
663996b3
MS
3440 f = SERVICE_SUCCESS;
3441 }
3442
6e866b33 3443 unit_log_process_exit(
c5fca32e 3444 u,
8b3d4ff0 3445 s->exit_type == SERVICE_EXIT_CGROUP ? "Last process" : "Main process",
6e866b33 3446 service_exec_command_to_string(SERVICE_EXEC_START),
c5fca32e 3447 f == SERVICE_SUCCESS,
6e866b33 3448 code, status);
663996b3 3449
8a584da2 3450 if (s->result == SERVICE_SUCCESS)
663996b3
MS
3451 s->result = f;
3452
3453 if (s->main_command &&
3454 s->main_command->command_next &&
f5e65279 3455 s->type == SERVICE_ONESHOT &&
663996b3
MS
3456 f == SERVICE_SUCCESS) {
3457
8b3d4ff0 3458 /* There is another command to execute, so let's do that. */
663996b3 3459
e3bff60a 3460 log_unit_debug(u, "Running next main command for state %s.", service_state_to_string(s->state));
663996b3
MS
3461 service_run_next_main(s);
3462
3463 } else {
3464
8b3d4ff0 3465 /* The service exited, so the service is officially gone. */
663996b3
MS
3466 s->main_command = NULL;
3467
3468 switch (s->state) {
3469
3470 case SERVICE_START_POST:
3471 case SERVICE_RELOAD:
5b5a102a
MB
3472 /* If neither main nor control processes are running then
3473 * the current state can never exit cleanly, hence immediately
3474 * terminate the service. */
3475 if (control_pid_good(s) <= 0)
3476 service_enter_stop(s, f);
3477
8b3d4ff0 3478 /* Otherwise need to wait until the operation is done. */
5b5a102a
MB
3479 break;
3480
663996b3 3481 case SERVICE_STOP:
8b3d4ff0 3482 /* Need to wait until the operation is done. */
663996b3
MS
3483 break;
3484
3485 case SERVICE_START:
3486 if (s->type == SERVICE_ONESHOT) {
3487 /* This was our main goal, so let's go on */
3488 if (f == SERVICE_SUCCESS)
3489 service_enter_start_post(s);
3490 else
2897b343
MP
3491 service_enter_signal(s, SERVICE_STOP_SIGTERM, f);
3492 break;
3493 } else if (s->type == SERVICE_NOTIFY) {
3494 /* Only enter running through a notification, so that the
3495 * SERVICE_START state signifies that no ready notification
3496 * has been received */
3497 if (f != SERVICE_SUCCESS)
3498 service_enter_signal(s, SERVICE_STOP_SIGTERM, f);
f5e65279
MB
3499 else if (!s->remain_after_exit || s->notify_access == NOTIFY_MAIN)
3500 /* The service has never been and will never be active */
2897b343 3501 service_enter_signal(s, SERVICE_STOP_SIGTERM, SERVICE_FAILURE_PROTOCOL);
663996b3
MS
3502 break;
3503 }
3504
52ad194e 3505 _fallthrough_;
663996b3
MS
3506 case SERVICE_RUNNING:
3507 service_enter_running(s, f);
3508 break;
3509
6e866b33 3510 case SERVICE_STOP_WATCHDOG:
663996b3
MS
3511 case SERVICE_STOP_SIGTERM:
3512 case SERVICE_STOP_SIGKILL:
3513
f5e65279 3514 if (control_pid_good(s) <= 0)
663996b3
MS
3515 service_enter_stop_post(s, f);
3516
3517 /* If there is still a control process, wait for that first */
3518 break;
3519
60f067b4 3520 case SERVICE_STOP_POST:
cb695f0e
MB
3521
3522 if (control_pid_good(s) <= 0)
3523 service_enter_signal(s, SERVICE_FINAL_SIGTERM, f);
3524
3525 break;
3526
a10f5d05 3527 case SERVICE_FINAL_WATCHDOG:
60f067b4
JS
3528 case SERVICE_FINAL_SIGTERM:
3529 case SERVICE_FINAL_SIGKILL:
3530
f5e65279 3531 if (control_pid_good(s) <= 0)
60f067b4
JS
3532 service_enter_dead(s, f, true);
3533 break;
3534
663996b3
MS
3535 default:
3536 assert_not_reached("Uh, main process died at wrong time.");
3537 }
3538 }
3539
3540 } else if (s->control_pid == pid) {
663996b3
MS
3541 s->control_pid = 0;
3542
3543 if (s->control_command) {
5eef597e 3544 exec_status_exit(&s->control_command->exec_status, &s->exec_context, pid, code, status);
663996b3 3545
f5e65279 3546 if (s->control_command->flags & EXEC_COMMAND_IGNORE_FAILURE)
663996b3
MS
3547 f = SERVICE_SUCCESS;
3548 }
3549
3a6ce677
BR
3550 /* ExecCondition= calls that exit with (0, 254] should invoke skip-like behavior instead of failing */
3551 if (s->state == SERVICE_CONDITION) {
3552 if (f == SERVICE_FAILURE_EXIT_CODE && status < 255) {
3553 UNIT(s)->condition_result = false;
3554 f = SERVICE_SKIP_CONDITION;
3555 } else if (f == SERVICE_SUCCESS)
3556 UNIT(s)->condition_result = true;
3557 }
3558
6e866b33 3559 unit_log_process_exit(
c5fca32e 3560 u,
6e866b33
MB
3561 "Control process",
3562 service_exec_command_to_string(s->control_command_id),
c5fca32e 3563 f == SERVICE_SUCCESS,
6e866b33 3564 code, status);
663996b3 3565
f2dec872 3566 if (s->state != SERVICE_RELOAD && s->result == SERVICE_SUCCESS)
663996b3
MS
3567 s->result = f;
3568
663996b3
MS
3569 if (s->control_command &&
3570 s->control_command->command_next &&
3571 f == SERVICE_SUCCESS) {
3572
3573 /* There is another command to *
3574 * execute, so let's do that. */
3575
e3bff60a 3576 log_unit_debug(u, "Running next control command for state %s.", service_state_to_string(s->state));
663996b3
MS
3577 service_run_next_control(s);
3578
3579 } else {
3580 /* No further commands for this step, so let's
3581 * figure out what to do next */
3582
3583 s->control_command = NULL;
3584 s->control_command_id = _SERVICE_EXEC_COMMAND_INVALID;
3585
e3bff60a 3586 log_unit_debug(u, "Got final SIGCHLD for state %s.", service_state_to_string(s->state));
663996b3
MS
3587
3588 switch (s->state) {
3589
f2dec872
BR
3590 case SERVICE_CONDITION:
3591 if (f == SERVICE_SUCCESS)
3592 service_enter_start_pre(s);
3593 else
3594 service_enter_signal(s, SERVICE_STOP_SIGTERM, f);
3595 break;
3596
663996b3
MS
3597 case SERVICE_START_PRE:
3598 if (f == SERVICE_SUCCESS)
3599 service_enter_start(s);
3600 else
2897b343 3601 service_enter_signal(s, SERVICE_STOP_SIGTERM, f);
663996b3
MS
3602 break;
3603
3604 case SERVICE_START:
3605 if (s->type != SERVICE_FORKING)
3606 /* Maybe spurious event due to a reload that changed the type? */
3607 break;
3608
3609 if (f != SERVICE_SUCCESS) {
2897b343 3610 service_enter_signal(s, SERVICE_STOP_SIGTERM, f);
663996b3
MS
3611 break;
3612 }
3613
3614 if (s->pid_file) {
3615 bool has_start_post;
3616 int r;
3617
3618 /* Let's try to load the pid file here if we can.
3619 * The PID file might actually be created by a START_POST
3620 * script. In that case don't worry if the loading fails. */
3621
b012e921 3622 has_start_post = s->exec_command[SERVICE_EXEC_START_POST];
663996b3
MS
3623 r = service_load_pid_file(s, !has_start_post);
3624 if (!has_start_post && r < 0) {
3625 r = service_demand_pid_file(s);
f5e65279 3626 if (r < 0 || cgroup_good(s) == 0)
2897b343 3627 service_enter_signal(s, SERVICE_STOP_SIGTERM, SERVICE_FAILURE_PROTOCOL);
663996b3
MS
3628 break;
3629 }
3630 } else
aa27b158 3631 service_search_main_pid(s);
663996b3
MS
3632
3633 service_enter_start_post(s);
3634 break;
3635
3636 case SERVICE_START_POST:
3637 if (f != SERVICE_SUCCESS) {
4c89c718 3638 service_enter_signal(s, SERVICE_STOP_SIGTERM, f);
663996b3
MS
3639 break;
3640 }
3641
3642 if (s->pid_file) {
3643 int r;
3644
3645 r = service_load_pid_file(s, true);
3646 if (r < 0) {
3647 r = service_demand_pid_file(s);
f5e65279 3648 if (r < 0 || cgroup_good(s) == 0)
2897b343 3649 service_enter_stop(s, SERVICE_FAILURE_PROTOCOL);
663996b3
MS
3650 break;
3651 }
3652 } else
aa27b158 3653 service_search_main_pid(s);
663996b3
MS
3654
3655 service_enter_running(s, SERVICE_SUCCESS);
3656 break;
3657
3658 case SERVICE_RELOAD:
aa27b158
MP
3659 if (f == SERVICE_SUCCESS)
3660 if (service_load_pid_file(s, true) < 0)
3661 service_search_main_pid(s);
663996b3
MS
3662
3663 s->reload_result = f;
3664 service_enter_running(s, SERVICE_SUCCESS);
3665 break;
3666
3667 case SERVICE_STOP:
3668 service_enter_signal(s, SERVICE_STOP_SIGTERM, f);
3669 break;
3670
6e866b33 3671 case SERVICE_STOP_WATCHDOG:
663996b3
MS
3672 case SERVICE_STOP_SIGTERM:
3673 case SERVICE_STOP_SIGKILL:
3674 if (main_pid_good(s) <= 0)
3675 service_enter_stop_post(s, f);
3676
bb4f798a 3677 /* If there is still a service process around, wait until
663996b3
MS
3678 * that one quit, too */
3679 break;
3680
3681 case SERVICE_STOP_POST:
cb695f0e
MB
3682 if (main_pid_good(s) <= 0)
3683 service_enter_signal(s, SERVICE_FINAL_SIGTERM, f);
3684 break;
3685
a10f5d05 3686 case SERVICE_FINAL_WATCHDOG:
663996b3
MS
3687 case SERVICE_FINAL_SIGTERM:
3688 case SERVICE_FINAL_SIGKILL:
60f067b4
JS
3689 if (main_pid_good(s) <= 0)
3690 service_enter_dead(s, f, true);
663996b3
MS
3691 break;
3692
f2dec872
BR
3693 case SERVICE_CLEANING:
3694
3695 if (s->clean_result == SERVICE_SUCCESS)
3696 s->clean_result = f;
3697
3698 service_enter_dead(s, SERVICE_SUCCESS, false);
3699 break;
3700
663996b3
MS
3701 default:
3702 assert_not_reached("Uh, control process died at wrong time.");
3703 }
3704 }
1d42b86d
MB
3705 } else /* Neither control nor main PID? If so, don't notify about anything */
3706 notify_dbus = false;
663996b3
MS
3707
3708 /* Notify clients about changed exit status */
1d42b86d
MB
3709 if (notify_dbus)
3710 unit_add_to_dbus_queue(u);
663996b3 3711
bb4f798a
MB
3712 /* We watch the main/control process otherwise we can't retrieve the unit they
3713 * belong to with cgroupv1. But if they are not our direct child, we won't get a
3714 * SIGCHLD for them. Therefore we need to look for others to watch so we can
3715 * detect when the cgroup becomes empty. Note that the control process is always
3716 * our child so it's pointless to watch all other processes. */
3717 if (!control_pid_good(s))
3718 if (!s->main_pid_known || s->main_pid_alien)
3719 (void) unit_enqueue_rewatch_pids(u);
60f067b4 3720}
663996b3 3721
60f067b4
JS
3722static int service_dispatch_timer(sd_event_source *source, usec_t usec, void *userdata) {
3723 Service *s = SERVICE(userdata);
663996b3 3724
60f067b4
JS
3725 assert(s);
3726 assert(source == s->timer_event_source);
663996b3
MS
3727
3728 switch (s->state) {
3729
f2dec872 3730 case SERVICE_CONDITION:
663996b3
MS
3731 case SERVICE_START_PRE:
3732 case SERVICE_START:
663996b3 3733 case SERVICE_START_POST:
a10f5d05
MB
3734 switch (s->timeout_start_failure_mode) {
3735
3736 case SERVICE_TIMEOUT_TERMINATE:
3737 log_unit_warning(UNIT(s), "%s operation timed out. Terminating.", service_state_to_string(s->state));
3738 service_enter_signal(s, SERVICE_STOP_SIGTERM, SERVICE_FAILURE_TIMEOUT);
3739 break;
3740
3741 case SERVICE_TIMEOUT_ABORT:
3742 log_unit_warning(UNIT(s), "%s operation timed out. Aborting.", service_state_to_string(s->state));
3743 service_enter_signal(s, SERVICE_STOP_WATCHDOG, SERVICE_FAILURE_TIMEOUT);
3744 break;
3745
3746 case SERVICE_TIMEOUT_KILL:
3747 if (s->kill_context.send_sigkill) {
3748 log_unit_warning(UNIT(s), "%s operation timed out. Killing.", service_state_to_string(s->state));
3749 service_enter_signal(s, SERVICE_STOP_SIGKILL, SERVICE_FAILURE_TIMEOUT);
3750 } else {
3751 log_unit_warning(UNIT(s), "%s operation timed out. Skipping SIGKILL.", service_state_to_string(s->state));
3752 service_enter_stop_post(s, SERVICE_FAILURE_TIMEOUT);
3753 }
3754 break;
3755
3756 default:
3757 assert_not_reached("unknown timeout mode");
3758 }
4c89c718
MP
3759 break;
3760
3761 case SERVICE_RUNNING:
3762 log_unit_warning(UNIT(s), "Service reached runtime time limit. Stopping.");
663996b3
MS
3763 service_enter_stop(s, SERVICE_FAILURE_TIMEOUT);
3764 break;
3765
3766 case SERVICE_RELOAD:
4c89c718 3767 log_unit_warning(UNIT(s), "Reload operation timed out. Killing reload process.");
52ad194e 3768 service_kill_control_process(s);
663996b3
MS
3769 s->reload_result = SERVICE_FAILURE_TIMEOUT;
3770 service_enter_running(s, SERVICE_SUCCESS);
3771 break;
3772
3773 case SERVICE_STOP:
a10f5d05
MB
3774 switch (s->timeout_stop_failure_mode) {
3775
3776 case SERVICE_TIMEOUT_TERMINATE:
3777 log_unit_warning(UNIT(s), "Stopping timed out. Terminating.");
3778 service_enter_signal(s, SERVICE_STOP_SIGTERM, SERVICE_FAILURE_TIMEOUT);
3779 break;
3780
3781 case SERVICE_TIMEOUT_ABORT:
3782 log_unit_warning(UNIT(s), "Stopping timed out. Aborting.");
3783 service_enter_signal(s, SERVICE_STOP_WATCHDOG, SERVICE_FAILURE_TIMEOUT);
3784 break;
3785
3786 case SERVICE_TIMEOUT_KILL:
3787 if (s->kill_context.send_sigkill) {
3788 log_unit_warning(UNIT(s), "Stopping timed out. Killing.");
3789 service_enter_signal(s, SERVICE_STOP_SIGKILL, SERVICE_FAILURE_TIMEOUT);
3790 } else {
3791 log_unit_warning(UNIT(s), "Stopping timed out. Skipping SIGKILL.");
3792 service_enter_stop_post(s, SERVICE_FAILURE_TIMEOUT);
3793 }
3794 break;
3795
3796 default:
3797 assert_not_reached("unknown timeout mode");
3798 }
663996b3
MS
3799 break;
3800
6e866b33 3801 case SERVICE_STOP_WATCHDOG:
a10f5d05
MB
3802 if (s->kill_context.send_sigkill) {
3803 log_unit_warning(UNIT(s), "State 'stop-watchdog' timed out. Killing.");
3804 service_enter_signal(s, SERVICE_STOP_SIGKILL, SERVICE_FAILURE_TIMEOUT);
3805 } else {
3806 log_unit_warning(UNIT(s), "State 'stop-watchdog' timed out. Skipping SIGKILL.");
3807 service_enter_stop_post(s, SERVICE_FAILURE_TIMEOUT);
3808 }
5eef597e
MP
3809 break;
3810
663996b3 3811 case SERVICE_STOP_SIGTERM:
a10f5d05
MB
3812 if (s->timeout_stop_failure_mode == SERVICE_TIMEOUT_ABORT) {
3813 log_unit_warning(UNIT(s), "State 'stop-sigterm' timed out. Aborting.");
3814 service_enter_signal(s, SERVICE_STOP_WATCHDOG, SERVICE_FAILURE_TIMEOUT);
3815 } else if (s->kill_context.send_sigkill) {
e3bff60a 3816 log_unit_warning(UNIT(s), "State 'stop-sigterm' timed out. Killing.");
663996b3
MS
3817 service_enter_signal(s, SERVICE_STOP_SIGKILL, SERVICE_FAILURE_TIMEOUT);
3818 } else {
e3bff60a 3819 log_unit_warning(UNIT(s), "State 'stop-sigterm' timed out. Skipping SIGKILL.");
663996b3
MS
3820 service_enter_stop_post(s, SERVICE_FAILURE_TIMEOUT);
3821 }
3822
3823 break;
3824
3825 case SERVICE_STOP_SIGKILL:
3826 /* Uh, we sent a SIGKILL and it is still not gone?
3827 * Must be something we cannot kill, so let's just be
3828 * weirded out and continue */
3829
e3bff60a 3830 log_unit_warning(UNIT(s), "Processes still around after SIGKILL. Ignoring.");
663996b3
MS
3831 service_enter_stop_post(s, SERVICE_FAILURE_TIMEOUT);
3832 break;
3833
3834 case SERVICE_STOP_POST:
a10f5d05
MB
3835 switch (s->timeout_stop_failure_mode) {
3836
3837 case SERVICE_TIMEOUT_TERMINATE:
3838 log_unit_warning(UNIT(s), "State 'stop-post' timed out. Terminating.");
3839 service_enter_signal(s, SERVICE_FINAL_SIGTERM, SERVICE_FAILURE_TIMEOUT);
3840 break;
3841
3842 case SERVICE_TIMEOUT_ABORT:
3843 log_unit_warning(UNIT(s), "State 'stop-post' timed out. Aborting.");
3844 service_enter_signal(s, SERVICE_FINAL_WATCHDOG, SERVICE_FAILURE_TIMEOUT);
3845 break;
3846
3847 case SERVICE_TIMEOUT_KILL:
3848 if (s->kill_context.send_sigkill) {
3849 log_unit_warning(UNIT(s), "State 'stop-post' timed out. Killing.");
3850 service_enter_signal(s, SERVICE_FINAL_SIGKILL, SERVICE_FAILURE_TIMEOUT);
3851 } else {
3852 log_unit_warning(UNIT(s), "State 'stop-post' timed out. Skipping SIGKILL. Entering failed mode.");
3853 service_enter_dead(s, SERVICE_FAILURE_TIMEOUT, false);
3854 }
3855 break;
3856
3857 default:
3858 assert_not_reached("unknown timeout mode");
3859 }
663996b3
MS
3860 break;
3861
a10f5d05 3862 case SERVICE_FINAL_WATCHDOG:
663996b3 3863 if (s->kill_context.send_sigkill) {
a10f5d05 3864 log_unit_warning(UNIT(s), "State 'final-watchdog' timed out. Killing.");
663996b3
MS
3865 service_enter_signal(s, SERVICE_FINAL_SIGKILL, SERVICE_FAILURE_TIMEOUT);
3866 } else {
a10f5d05
MB
3867 log_unit_warning(UNIT(s), "State 'final-watchdog' timed out. Skipping SIGKILL. Entering failed mode.");
3868 service_enter_dead(s, SERVICE_FAILURE_TIMEOUT, false);
3869 }
3870 break;
3871
3872 case SERVICE_FINAL_SIGTERM:
3873 if (s->timeout_stop_failure_mode == SERVICE_TIMEOUT_ABORT) {
3874 log_unit_warning(UNIT(s), "State 'final-sigterm' timed out. Aborting.");
3875 service_enter_signal(s, SERVICE_FINAL_WATCHDOG, SERVICE_FAILURE_TIMEOUT);
3876 } else if (s->kill_context.send_sigkill) {
3877 log_unit_warning(UNIT(s), "State 'final-sigterm' timed out. Killing.");
3878 service_enter_signal(s, SERVICE_FINAL_SIGKILL, SERVICE_FAILURE_TIMEOUT);
3879 } else {
3880 log_unit_warning(UNIT(s), "State 'final-sigterm' timed out. Skipping SIGKILL. Entering failed mode.");
663996b3
MS
3881 service_enter_dead(s, SERVICE_FAILURE_TIMEOUT, false);
3882 }
3883
3884 break;
3885
3886 case SERVICE_FINAL_SIGKILL:
e3bff60a 3887 log_unit_warning(UNIT(s), "Processes still around after final SIGKILL. Entering failed mode.");
663996b3
MS
3888 service_enter_dead(s, SERVICE_FAILURE_TIMEOUT, true);
3889 break;
3890
3891 case SERVICE_AUTO_RESTART:
b012e921
MB
3892 if (s->restart_usec > 0) {
3893 char buf_restart[FORMAT_TIMESPAN_MAX];
e1f67bc7
MB
3894 log_unit_debug(UNIT(s),
3895 "Service RestartSec=%s expired, scheduling restart.",
3896 format_timespan(buf_restart, sizeof buf_restart, s->restart_usec, USEC_PER_SEC));
b012e921 3897 } else
e1f67bc7
MB
3898 log_unit_debug(UNIT(s),
3899 "Service has no hold-off time (RestartSec=0), scheduling restart.");
b012e921 3900
663996b3
MS
3901 service_enter_restart(s);
3902 break;
3903
f2dec872
BR
3904 case SERVICE_CLEANING:
3905 log_unit_warning(UNIT(s), "Cleaning timed out. killing.");
3906
3907 if (s->clean_result == SERVICE_SUCCESS)
3908 s->clean_result = SERVICE_FAILURE_TIMEOUT;
3909
3910 service_enter_signal(s, SERVICE_FINAL_SIGKILL, 0);
3911 break;
3912
663996b3
MS
3913 default:
3914 assert_not_reached("Timeout at wrong time.");
3915 }
663996b3 3916
60f067b4
JS
3917 return 0;
3918}
663996b3 3919
60f067b4
JS
3920static int service_dispatch_watchdog(sd_event_source *source, usec_t usec, void *userdata) {
3921 Service *s = SERVICE(userdata);
5eef597e 3922 char t[FORMAT_TIMESPAN_MAX];
5a920b42 3923 usec_t watchdog_usec;
663996b3 3924
60f067b4
JS
3925 assert(s);
3926 assert(source == s->watchdog_event_source);
663996b3 3927
5a920b42
MP
3928 watchdog_usec = service_get_watchdog_usec(s);
3929
1d42b86d
MB
3930 if (UNIT(s)->manager->service_watchdogs) {
3931 log_unit_error(UNIT(s), "Watchdog timeout (limit %s)!",
3932 format_timespan(t, sizeof(t), watchdog_usec, 1));
5eef597e 3933
6e866b33 3934 service_enter_signal(s, SERVICE_STOP_WATCHDOG, SERVICE_FAILURE_WATCHDOG);
1d42b86d
MB
3935 } else
3936 log_unit_warning(UNIT(s), "Watchdog disabled! Ignoring watchdog timeout (limit %s)!",
3937 format_timespan(t, sizeof(t), watchdog_usec, 1));
663996b3 3938
60f067b4 3939 return 0;
663996b3
MS
3940}
3941
a10f5d05 3942static bool service_notify_message_authorized(Service *s, pid_t pid, FDSet *fds) {
52ad194e 3943 assert(s);
60f067b4 3944
663996b3 3945 if (s->notify_access == NOTIFY_NONE) {
52ad194e
MB
3946 log_unit_warning(UNIT(s), "Got notification message from PID "PID_FMT", but reception is disabled.", pid);
3947 return false;
3948 }
3949
3950 if (s->notify_access == NOTIFY_MAIN && pid != s->main_pid) {
60f067b4 3951 if (s->main_pid != 0)
52ad194e 3952 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 3953 else
52ad194e
MB
3954 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);
3955
3956 return false;
3957 }
3958
3959 if (s->notify_access == NOTIFY_EXEC && pid != s->main_pid && pid != s->control_pid) {
2897b343 3960 if (s->main_pid != 0 && s->control_pid != 0)
52ad194e 3961 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
3962 pid, s->main_pid, s->control_pid);
3963 else if (s->main_pid != 0)
52ad194e 3964 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 3965 else if (s->control_pid != 0)
52ad194e 3966 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 3967 else
52ad194e
MB
3968 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);
3969
3970 return false;
3971 }
3972
3973 return true;
3974}
3975
f2dec872
BR
3976static void service_force_watchdog(Service *s) {
3977 if (!UNIT(s)->manager->service_watchdogs)
3978 return;
3979
3980 log_unit_error(UNIT(s), "Watchdog request (last status: %s)!",
3981 s->status_text ? s->status_text : "<unset>");
3982
3983 service_enter_signal(s, SERVICE_STOP_WATCHDOG, SERVICE_FAILURE_WATCHDOG);
3984}
3985
1d42b86d
MB
3986static void service_notify_message(
3987 Unit *u,
3988 const struct ucred *ucred,
a10f5d05 3989 char * const *tags,
1d42b86d
MB
3990 FDSet *fds) {
3991
52ad194e
MB
3992 Service *s = SERVICE(u);
3993 bool notify_dbus = false;
3994 const char *e;
a10f5d05 3995 char * const *i;
1d42b86d 3996 int r;
52ad194e
MB
3997
3998 assert(u);
1d42b86d 3999 assert(ucred);
52ad194e 4000
a10f5d05 4001 if (!service_notify_message_authorized(SERVICE(u), ucred->pid, fds))
663996b3 4002 return;
52ad194e 4003
1d42b86d 4004 if (DEBUG_LOGGING) {
52ad194e
MB
4005 _cleanup_free_ char *cc = NULL;
4006
4007 cc = strv_join(tags, ", ");
1d42b86d 4008 log_unit_debug(u, "Got notification message from PID "PID_FMT" (%s)", ucred->pid, isempty(cc) ? "n/a" : cc);
52ad194e 4009 }
663996b3 4010
663996b3 4011 /* Interpret MAINPID= */
5eef597e
MP
4012 e = strv_find_startswith(tags, "MAINPID=");
4013 if (e && IN_SET(s->state, SERVICE_START, SERVICE_START_POST, SERVICE_RUNNING, SERVICE_RELOAD)) {
1d42b86d
MB
4014 pid_t new_main_pid;
4015
4016 if (parse_pid(e, &new_main_pid) < 0)
4017 log_unit_warning(u, "Failed to parse MAINPID= field in notification message, ignoring: %s", e);
4018 else if (!s->main_pid_known || new_main_pid != s->main_pid) {
4019
4020 r = service_is_suitable_main_pid(s, new_main_pid, LOG_WARNING);
4021 if (r == 0) {
f2dec872 4022 /* The new main PID is a bit suspicious, which is OK if the sender is privileged. */
1d42b86d
MB
4023
4024 if (ucred->uid == 0) {
4025 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);
4026 r = 1;
4027 } else
4028 log_unit_debug(u, "New main PID "PID_FMT" does not belong to service, refusing.", new_main_pid);
4029 }
4030 if (r > 0) {
4031 service_set_main_pid(s, new_main_pid);
6e866b33 4032
bb4f798a 4033 r = unit_watch_pid(UNIT(s), new_main_pid, false);
6e866b33
MB
4034 if (r < 0)
4035 log_unit_warning_errno(UNIT(s), r, "Failed to watch new main PID "PID_FMT" for service: %m", new_main_pid);
4036
1d42b86d
MB
4037 notify_dbus = true;
4038 }
663996b3
MS
4039 }
4040 }
4041
52ad194e
MB
4042 /* Interpret READY=/STOPPING=/RELOADING=. Last one wins. */
4043 STRV_FOREACH_BACKWARDS(i, tags) {
5eef597e 4044
52ad194e
MB
4045 if (streq(*i, "READY=1")) {
4046 s->notify_state = NOTIFY_READY;
5eef597e 4047
52ad194e
MB
4048 /* Type=notify services inform us about completed
4049 * initialization with READY=1 */
4050 if (s->type == SERVICE_NOTIFY && s->state == SERVICE_START)
4051 service_enter_start_post(s);
5eef597e 4052
52ad194e
MB
4053 /* Sending READY=1 while we are reloading informs us
4054 * that the reloading is complete */
4055 if (s->state == SERVICE_RELOAD && s->control_pid == 0)
4056 service_enter_running(s, SERVICE_SUCCESS);
5eef597e 4057
52ad194e
MB
4058 notify_dbus = true;
4059 break;
5eef597e 4060
52ad194e
MB
4061 } else if (streq(*i, "RELOADING=1")) {
4062 s->notify_state = NOTIFY_RELOADING;
5eef597e 4063
52ad194e
MB
4064 if (s->state == SERVICE_RUNNING)
4065 service_enter_reload_by_notify(s);
5eef597e 4066
52ad194e
MB
4067 notify_dbus = true;
4068 break;
5eef597e 4069
52ad194e
MB
4070 } else if (streq(*i, "STOPPING=1")) {
4071 s->notify_state = NOTIFY_STOPPING;
5eef597e 4072
52ad194e
MB
4073 if (s->state == SERVICE_RUNNING)
4074 service_enter_stop_by_notify(s);
5eef597e 4075
52ad194e
MB
4076 notify_dbus = true;
4077 break;
4078 }
663996b3
MS
4079 }
4080
4081 /* Interpret STATUS= */
5eef597e 4082 e = strv_find_startswith(tags, "STATUS=");
663996b3 4083 if (e) {
5eef597e 4084 _cleanup_free_ char *t = NULL;
663996b3 4085
5eef597e 4086 if (!isempty(e)) {
6e866b33
MB
4087 /* Note that this size limit check is mostly paranoia: since the datagram size we are willing
4088 * to process is already limited to NOTIFY_BUFFER_MAX, this limit here should never be hit. */
4089 if (strlen(e) > STATUS_TEXT_MAX)
4090 log_unit_warning(u, "Status message overly long (%zu > %u), ignoring.", strlen(e), STATUS_TEXT_MAX);
4091 else if (!utf8_is_valid(e))
4092 log_unit_warning(u, "Status message in notification message is not UTF-8 clean, ignoring.");
5eef597e 4093 else {
5eef597e
MP
4094 t = strdup(e);
4095 if (!t)
4096 log_oom();
663996b3 4097 }
5eef597e 4098 }
663996b3 4099
60f067b4 4100 if (!streq_ptr(s->status_text, t)) {
8a584da2 4101 free_and_replace(s->status_text, t);
60f067b4 4102 notify_dbus = true;
5eef597e
MP
4103 }
4104 }
4105
4106 /* Interpret ERRNO= */
4107 e = strv_find_startswith(tags, "ERRNO=");
4108 if (e) {
4109 int status_errno;
4110
52ad194e
MB
4111 status_errno = parse_errno(e);
4112 if (status_errno < 0)
4113 log_unit_warning_errno(u, status_errno,
6e866b33 4114 "Failed to parse ERRNO= field value '%s' in notification message: %m", e);
52ad194e
MB
4115 else if (s->status_errno != status_errno) {
4116 s->status_errno = status_errno;
4117 notify_dbus = true;
5eef597e 4118 }
663996b3 4119 }
60f067b4 4120
52ad194e
MB
4121 /* Interpret EXTEND_TIMEOUT= */
4122 e = strv_find_startswith(tags, "EXTEND_TIMEOUT_USEC=");
4123 if (e) {
4124 usec_t extend_timeout_usec;
4125 if (safe_atou64(e, &extend_timeout_usec) < 0)
4126 log_unit_warning(u, "Failed to parse EXTEND_TIMEOUT_USEC=%s", e);
4127 else
4128 service_extend_timeout(s, extend_timeout_usec);
4129 }
4130
60f067b4 4131 /* Interpret WATCHDOG= */
f2dec872
BR
4132 e = strv_find_startswith(tags, "WATCHDOG=");
4133 if (e) {
4134 if (streq(e, "1"))
4135 service_reset_watchdog(s);
4136 else if (streq(e, "trigger"))
4137 service_force_watchdog(s);
4138 else
4139 log_unit_warning(u, "Passed WATCHDOG= field is invalid, ignoring.");
4140 }
663996b3 4141
52ad194e
MB
4142 e = strv_find_startswith(tags, "WATCHDOG_USEC=");
4143 if (e) {
4144 usec_t watchdog_override_usec;
4145 if (safe_atou64(e, &watchdog_override_usec) < 0)
4146 log_unit_warning(u, "Failed to parse WATCHDOG_USEC=%s", e);
4147 else
6e866b33 4148 service_override_watchdog_timeout(s, watchdog_override_usec);
52ad194e
MB
4149 }
4150
4151 /* Process FD store messages. Either FDSTOREREMOVE=1 for removal, or FDSTORE=1 for addition. In both cases,
4152 * process FDNAME= for picking the file descriptor name to use. Note that FDNAME= is required when removing
4153 * fds, but optional when pushing in new fds, for compatibility reasons. */
4154 if (strv_find(tags, "FDSTOREREMOVE=1")) {
4155 const char *name;
4156
4157 name = strv_find_startswith(tags, "FDNAME=");
4158 if (!name || !fdname_is_valid(name))
4159 log_unit_warning(u, "FDSTOREREMOVE=1 requested, but no valid file descriptor name passed, ignoring.");
4160 else
4161 service_remove_fd_store(s, name);
4162
4163 } else if (strv_find(tags, "FDSTORE=1")) {
6300502b
MP
4164 const char *name;
4165
4166 name = strv_find_startswith(tags, "FDNAME=");
4167 if (name && !fdname_is_valid(name)) {
4168 log_unit_warning(u, "Passed FDNAME= name is invalid, ignoring.");
4169 name = NULL;
4170 }
4171
a10f5d05 4172 (void) service_add_fd_store_set(s, fds, name, !strv_contains(tags, "FDPOLL=0"));
5a920b42
MP
4173 }
4174
663996b3 4175 /* Notify clients about changed status or main pid */
60f067b4
JS
4176 if (notify_dbus)
4177 unit_add_to_dbus_queue(u);
663996b3
MS
4178}
4179
4c89c718 4180static int service_get_timeout(Unit *u, usec_t *timeout) {
60f067b4 4181 Service *s = SERVICE(u);
4c89c718 4182 uint64_t t;
663996b3
MS
4183 int r;
4184
60f067b4 4185 if (!s->timer_event_source)
663996b3
MS
4186 return 0;
4187
4c89c718 4188 r = sd_event_source_get_time(s->timer_event_source, &t);
60f067b4
JS
4189 if (r < 0)
4190 return r;
4c89c718
MP
4191 if (t == USEC_INFINITY)
4192 return 0;
663996b3 4193
4c89c718 4194 *timeout = t;
60f067b4 4195 return 1;
663996b3 4196}
663996b3 4197
46cdbd49 4198static void service_bus_name_owner_change(Unit *u, const char *new_owner) {
663996b3
MS
4199
4200 Service *s = SERVICE(u);
60f067b4 4201 int r;
663996b3
MS
4202
4203 assert(s);
663996b3 4204
46cdbd49
BR
4205 if (new_owner)
4206 log_unit_debug(u, "D-Bus name %s now owned by %s", s->bus_name, new_owner);
663996b3 4207 else
46cdbd49 4208 log_unit_debug(u, "D-Bus name %s now not owned by anyone.", s->bus_name);
663996b3 4209
a032b68d 4210 s->bus_name_good = new_owner;
663996b3 4211
4c89c718
MP
4212 /* Track the current owner, so we can reconstruct changes after a daemon reload */
4213 r = free_and_strdup(&s->bus_name_owner, new_owner);
4214 if (r < 0) {
4215 log_unit_error_errno(u, r, "Unable to set new bus name owner %s: %m", new_owner);
4216 return;
4217 }
4218
663996b3
MS
4219 if (s->type == SERVICE_DBUS) {
4220
4221 /* service_enter_running() will figure out what to
4222 * do */
4223 if (s->state == SERVICE_RUNNING)
4224 service_enter_running(s, SERVICE_SUCCESS);
4225 else if (s->state == SERVICE_START && new_owner)
4226 service_enter_start_post(s);
4227
4228 } else if (new_owner &&
4229 s->main_pid <= 0 &&
f5e65279
MB
4230 IN_SET(s->state,
4231 SERVICE_START,
4232 SERVICE_START_POST,
4233 SERVICE_RUNNING,
4234 SERVICE_RELOAD)) {
663996b3 4235
4c89c718 4236 _cleanup_(sd_bus_creds_unrefp) sd_bus_creds *creds = NULL;
60f067b4 4237 pid_t pid;
663996b3 4238
60f067b4 4239 /* Try to acquire PID from bus service */
663996b3 4240
c5fca32e 4241 r = sd_bus_get_name_creds(u->manager->api_bus, s->bus_name, SD_BUS_CREDS_PID, &creds);
60f067b4
JS
4242 if (r >= 0)
4243 r = sd_bus_creds_get_pid(creds, &pid);
4244 if (r >= 0) {
c5fca32e 4245 log_unit_debug(u, "D-Bus name %s is now owned by process " PID_FMT, s->bus_name, pid);
663996b3 4246
60f067b4 4247 service_set_main_pid(s, pid);
bb4f798a 4248 unit_watch_pid(UNIT(s), pid, false);
60f067b4 4249 }
14228c0d 4250 }
663996b3
MS
4251}
4252
5eef597e 4253int service_set_socket_fd(Service *s, int fd, Socket *sock, bool selinux_context_net) {
60f067b4
JS
4254 _cleanup_free_ char *peer = NULL;
4255 int r;
663996b3
MS
4256
4257 assert(s);
4258 assert(fd >= 0);
4259
aa27b158
MP
4260 /* This is called by the socket code when instantiating a new service for a stream socket and the socket needs
4261 * to be configured. We take ownership of the passed fd on success. */
663996b3
MS
4262
4263 if (UNIT(s)->load_state != UNIT_LOADED)
4264 return -EINVAL;
4265
4266 if (s->socket_fd >= 0)
4267 return -EBUSY;
4268
4269 if (s->state != SERVICE_DEAD)
4270 return -EAGAIN;
4271
4c89c718 4272 if (getpeername_pretty(fd, true, &peer) >= 0) {
60f067b4
JS
4273
4274 if (UNIT(s)->description) {
5b5a102a 4275 _cleanup_free_ char *a = NULL;
60f067b4 4276
2897b343 4277 a = strjoin(UNIT(s)->description, " (", peer, ")");
60f067b4
JS
4278 if (!a)
4279 return -ENOMEM;
4280
4281 r = unit_set_description(UNIT(s), a);
4282 } else
4283 r = unit_set_description(UNIT(s), peer);
4284
4285 if (r < 0)
4286 return r;
4287 }
4288
52ad194e 4289 r = unit_add_two_dependencies(UNIT(sock), UNIT_BEFORE, UNIT_TRIGGERS, UNIT(s), false, UNIT_DEPENDENCY_IMPLICIT);
aa27b158
MP
4290 if (r < 0)
4291 return r;
4292
663996b3 4293 s->socket_fd = fd;
5eef597e 4294 s->socket_fd_selinux_context_net = selinux_context_net;
663996b3 4295
98393f85 4296 unit_ref_set(&s->accept_socket, UNIT(s), UNIT(sock));
aa27b158 4297 return 0;
663996b3
MS
4298}
4299
4300static void service_reset_failed(Unit *u) {
4301 Service *s = SERVICE(u);
4302
4303 assert(s);
4304
4305 if (s->state == SERVICE_FAILED)
4306 service_set_state(s, SERVICE_DEAD);
4307
4308 s->result = SERVICE_SUCCESS;
4309 s->reload_result = SERVICE_SUCCESS;
f2dec872 4310 s->clean_result = SERVICE_SUCCESS;
f5e65279
MB
4311 s->n_restarts = 0;
4312 s->flush_n_restarts = false;
663996b3
MS
4313}
4314
60f067b4 4315static int service_kill(Unit *u, KillWho who, int signo, sd_bus_error *error) {
663996b3 4316 Service *s = SERVICE(u);
14228c0d 4317
f5e65279
MB
4318 assert(s);
4319
663996b3
MS
4320 return unit_kill_common(u, who, signo, s->main_pid, s->control_pid, error);
4321}
4322
aa27b158
MP
4323static int service_main_pid(Unit *u) {
4324 Service *s = SERVICE(u);
4325
4326 assert(s);
4327
4328 return s->main_pid;
4329}
4330
4331static int service_control_pid(Unit *u) {
4332 Service *s = SERVICE(u);
4333
4334 assert(s);
4335
4336 return s->control_pid;
4337}
4338
1d42b86d
MB
4339static bool service_needs_console(Unit *u) {
4340 Service *s = SERVICE(u);
4341
4342 assert(s);
4343
4344 /* We provide our own implementation of this here, instead of relying of the generic implementation
4345 * unit_needs_console() provides, since we want to return false if we are in SERVICE_EXITED state. */
4346
4347 if (!exec_context_may_touch_console(&s->exec_context))
4348 return false;
4349
4350 return IN_SET(s->state,
f2dec872 4351 SERVICE_CONDITION,
1d42b86d
MB
4352 SERVICE_START_PRE,
4353 SERVICE_START,
4354 SERVICE_START_POST,
4355 SERVICE_RUNNING,
4356 SERVICE_RELOAD,
4357 SERVICE_STOP,
6e866b33 4358 SERVICE_STOP_WATCHDOG,
1d42b86d
MB
4359 SERVICE_STOP_SIGTERM,
4360 SERVICE_STOP_SIGKILL,
4361 SERVICE_STOP_POST,
a10f5d05 4362 SERVICE_FINAL_WATCHDOG,
1d42b86d
MB
4363 SERVICE_FINAL_SIGTERM,
4364 SERVICE_FINAL_SIGKILL);
4365}
4366
6e866b33
MB
4367static int service_exit_status(Unit *u) {
4368 Service *s = SERVICE(u);
4369
4370 assert(u);
4371
4372 if (s->main_exec_status.pid <= 0 ||
4373 !dual_timestamp_is_set(&s->main_exec_status.exit_timestamp))
4374 return -ENODATA;
4375
4376 if (s->main_exec_status.code != CLD_EXITED)
4377 return -EBADE;
4378
4379 return s->main_exec_status.status;
4380}
4381
f2dec872
BR
4382static int service_clean(Unit *u, ExecCleanMask mask) {
4383 _cleanup_strv_free_ char **l = NULL;
4384 Service *s = SERVICE(u);
f2dec872
BR
4385 int r;
4386
4387 assert(s);
4388 assert(mask != 0);
4389
4390 if (s->state != SERVICE_DEAD)
4391 return -EBUSY;
4392
4393 r = exec_context_get_clean_directories(&s->exec_context, u->manager->prefix, mask, &l);
4394 if (r < 0)
4395 return r;
4396
4397 if (strv_isempty(l))
4398 return -EUNATCH;
4399
4400 service_unwatch_control_pid(s);
4401 s->clean_result = SERVICE_SUCCESS;
4402 s->control_command = NULL;
4403 s->control_command_id = _SERVICE_EXEC_COMMAND_INVALID;
4404
812752cc 4405 r = service_arm_timer(s, usec_add(now(CLOCK_MONOTONIC), s->exec_context.timeout_clean_usec));
f2dec872
BR
4406 if (r < 0)
4407 goto fail;
4408
e1f67bc7 4409 r = unit_fork_and_watch_rm_rf(u, l, &s->control_pid);
f2dec872
BR
4410 if (r < 0)
4411 goto fail;
4412
f2dec872
BR
4413 service_set_state(s, SERVICE_CLEANING);
4414
4415 return 0;
4416
4417fail:
e1f67bc7 4418 log_unit_warning_errno(u, r, "Failed to initiate cleaning: %m");
f2dec872
BR
4419 s->clean_result = SERVICE_FAILURE_RESOURCES;
4420 s->timer_event_source = sd_event_source_unref(s->timer_event_source);
4421 return r;
4422}
4423
4424static int service_can_clean(Unit *u, ExecCleanMask *ret) {
4425 Service *s = SERVICE(u);
4426
4427 assert(s);
4428
4429 return exec_context_get_clean_mask(&s->exec_context, ret);
4430}
4431
46cdbd49
BR
4432static const char *service_finished_job(Unit *u, JobType t, JobResult result) {
4433 if (t == JOB_START && result == JOB_DONE) {
4434 Service *s = SERVICE(u);
4435
4436 if (s->type == SERVICE_ONESHOT)
4437 return "Finished %s.";
4438 }
4439
4440 /* Fall back to generic */
4441 return NULL;
4442}
4443
663996b3
MS
4444static const char* const service_restart_table[_SERVICE_RESTART_MAX] = {
4445 [SERVICE_RESTART_NO] = "no",
4446 [SERVICE_RESTART_ON_SUCCESS] = "on-success",
4447 [SERVICE_RESTART_ON_FAILURE] = "on-failure",
60f067b4 4448 [SERVICE_RESTART_ON_ABNORMAL] = "on-abnormal",
14228c0d 4449 [SERVICE_RESTART_ON_WATCHDOG] = "on-watchdog",
663996b3 4450 [SERVICE_RESTART_ON_ABORT] = "on-abort",
60f067b4 4451 [SERVICE_RESTART_ALWAYS] = "always",
663996b3
MS
4452};
4453
4454DEFINE_STRING_TABLE_LOOKUP(service_restart, ServiceRestart);
4455
4456static const char* const service_type_table[_SERVICE_TYPE_MAX] = {
4457 [SERVICE_SIMPLE] = "simple",
4458 [SERVICE_FORKING] = "forking",
4459 [SERVICE_ONESHOT] = "oneshot",
4460 [SERVICE_DBUS] = "dbus",
4461 [SERVICE_NOTIFY] = "notify",
6e866b33
MB
4462 [SERVICE_IDLE] = "idle",
4463 [SERVICE_EXEC] = "exec",
663996b3
MS
4464};
4465
4466DEFINE_STRING_TABLE_LOOKUP(service_type, ServiceType);
4467
8b3d4ff0
MB
4468static const char* const service_exit_type_table[_SERVICE_EXIT_TYPE_MAX] = {
4469 [SERVICE_EXIT_MAIN] = "main",
4470 [SERVICE_EXIT_CGROUP] = "cgroup",
4471};
4472
4473DEFINE_STRING_TABLE_LOOKUP(service_exit_type, ServiceExitType);
4474
663996b3 4475static const char* const service_exec_command_table[_SERVICE_EXEC_COMMAND_MAX] = {
f2dec872 4476 [SERVICE_EXEC_CONDITION] = "ExecCondition",
663996b3
MS
4477 [SERVICE_EXEC_START_PRE] = "ExecStartPre",
4478 [SERVICE_EXEC_START] = "ExecStart",
4479 [SERVICE_EXEC_START_POST] = "ExecStartPost",
4480 [SERVICE_EXEC_RELOAD] = "ExecReload",
4481 [SERVICE_EXEC_STOP] = "ExecStop",
4482 [SERVICE_EXEC_STOP_POST] = "ExecStopPost",
4483};
4484
4485DEFINE_STRING_TABLE_LOOKUP(service_exec_command, ServiceExecCommand);
4486
f2dec872 4487static const char* const service_exec_ex_command_table[_SERVICE_EXEC_COMMAND_MAX] = {
e1f67bc7 4488 [SERVICE_EXEC_CONDITION] = "ExecConditionEx",
f2dec872
BR
4489 [SERVICE_EXEC_START_PRE] = "ExecStartPreEx",
4490 [SERVICE_EXEC_START] = "ExecStartEx",
4491 [SERVICE_EXEC_START_POST] = "ExecStartPostEx",
e1f67bc7
MB
4492 [SERVICE_EXEC_RELOAD] = "ExecReloadEx",
4493 [SERVICE_EXEC_STOP] = "ExecStopEx",
4494 [SERVICE_EXEC_STOP_POST] = "ExecStopPostEx",
f2dec872
BR
4495};
4496
4497DEFINE_STRING_TABLE_LOOKUP(service_exec_ex_command, ServiceExecCommand);
4498
5eef597e
MP
4499static const char* const notify_state_table[_NOTIFY_STATE_MAX] = {
4500 [NOTIFY_UNKNOWN] = "unknown",
4501 [NOTIFY_READY] = "ready",
4502 [NOTIFY_RELOADING] = "reloading",
4503 [NOTIFY_STOPPING] = "stopping",
4504};
4505
4506DEFINE_STRING_TABLE_LOOKUP(notify_state, NotifyState);
4507
663996b3
MS
4508static const char* const service_result_table[_SERVICE_RESULT_MAX] = {
4509 [SERVICE_SUCCESS] = "success",
4510 [SERVICE_FAILURE_RESOURCES] = "resources",
2897b343 4511 [SERVICE_FAILURE_PROTOCOL] = "protocol",
663996b3
MS
4512 [SERVICE_FAILURE_TIMEOUT] = "timeout",
4513 [SERVICE_FAILURE_EXIT_CODE] = "exit-code",
4514 [SERVICE_FAILURE_SIGNAL] = "signal",
4515 [SERVICE_FAILURE_CORE_DUMP] = "core-dump",
4516 [SERVICE_FAILURE_WATCHDOG] = "watchdog",
aa27b158 4517 [SERVICE_FAILURE_START_LIMIT_HIT] = "start-limit-hit",
f2dec872
BR
4518 [SERVICE_FAILURE_OOM_KILL] = "oom-kill",
4519 [SERVICE_SKIP_CONDITION] = "exec-condition",
663996b3
MS
4520};
4521
4522DEFINE_STRING_TABLE_LOOKUP(service_result, ServiceResult);
4523
a10f5d05
MB
4524static const char* const service_timeout_failure_mode_table[_SERVICE_TIMEOUT_FAILURE_MODE_MAX] = {
4525 [SERVICE_TIMEOUT_TERMINATE] = "terminate",
4526 [SERVICE_TIMEOUT_ABORT] = "abort",
4527 [SERVICE_TIMEOUT_KILL] = "kill",
4528};
4529
4530DEFINE_STRING_TABLE_LOOKUP(service_timeout_failure_mode, ServiceTimeoutFailureMode);
4531
663996b3
MS
4532const UnitVTable service_vtable = {
4533 .object_size = sizeof(Service),
60f067b4
JS
4534 .exec_context_offset = offsetof(Service, exec_context),
4535 .cgroup_context_offset = offsetof(Service, cgroup_context),
4536 .kill_context_offset = offsetof(Service, kill_context),
4537 .exec_runtime_offset = offsetof(Service, exec_runtime),
8a584da2 4538 .dynamic_creds_offset = offsetof(Service, dynamic_creds),
663996b3
MS
4539
4540 .sections =
4541 "Unit\0"
4542 "Service\0"
4543 "Install\0",
14228c0d 4544 .private_section = "Service",
663996b3 4545
98393f85
MB
4546 .can_transient = true,
4547 .can_delegate = true,
46cdbd49 4548 .can_fail = true,
a032b68d 4549 .can_set_managed_oom = true,
98393f85 4550
663996b3
MS
4551 .init = service_init,
4552 .done = service_done,
4553 .load = service_load,
e735f4d4 4554 .release_resources = service_release_resources,
663996b3
MS
4555
4556 .coldplug = service_coldplug,
4557
4558 .dump = service_dump,
4559
4560 .start = service_start,
4561 .stop = service_stop,
4562 .reload = service_reload,
4563
4564 .can_reload = service_can_reload,
4565
4566 .kill = service_kill,
f2dec872
BR
4567 .clean = service_clean,
4568 .can_clean = service_can_clean,
663996b3 4569
a10f5d05
MB
4570 .freeze = unit_freeze_vtable_common,
4571 .thaw = unit_thaw_vtable_common,
4572
663996b3
MS
4573 .serialize = service_serialize,
4574 .deserialize_item = service_deserialize_item,
4575
4576 .active_state = service_active_state,
4577 .sub_state_to_string = service_sub_state_to_string,
4578
52ad194e
MB
4579 .will_restart = service_will_restart,
4580
98393f85 4581 .may_gc = service_may_gc,
663996b3
MS
4582
4583 .sigchld_event = service_sigchld_event,
663996b3
MS
4584
4585 .reset_failed = service_reset_failed,
4586
14228c0d 4587 .notify_cgroup_empty = service_notify_cgroup_empty_event,
f2dec872 4588 .notify_cgroup_oom = service_notify_cgroup_oom_event,
663996b3
MS
4589 .notify_message = service_notify_message,
4590
aa27b158
MP
4591 .main_pid = service_main_pid,
4592 .control_pid = service_control_pid,
4593
663996b3 4594 .bus_name_owner_change = service_bus_name_owner_change,
663996b3 4595
14228c0d
MB
4596 .bus_set_property = bus_service_set_property,
4597 .bus_commit_properties = bus_service_commit_properties,
4598
60f067b4 4599 .get_timeout = service_get_timeout,
1d42b86d 4600 .needs_console = service_needs_console,
6e866b33 4601 .exit_status = service_exit_status,
663996b3 4602
663996b3
MS
4603 .status_message_formats = {
4604 .starting_stopping = {
4605 [0] = "Starting %s...",
4606 [1] = "Stopping %s...",
4607 },
4608 .finished_start_job = {
663996b3 4609 [JOB_FAILED] = "Failed to start %s.",
663996b3
MS
4610 },
4611 .finished_stop_job = {
4612 [JOB_DONE] = "Stopped %s.",
4613 [JOB_FAILED] = "Stopped (with error) %s.",
663996b3 4614 },
46cdbd49 4615 .finished_job = service_finished_job,
663996b3
MS
4616 },
4617};