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