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