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