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