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