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