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