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