]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/core/service.c
Merge pull request #6941 from andir/use-in_set
[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
3742095b 532 if (s->exec_context.pam_name && !IN_SET(s->kill_context.kill_mode, KILL_CONTROL_GROUP, 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);
18f573aa
LP
806
807 cgroup_context_dump(&s->cgroup_context, f, prefix);
5cb5a6ff
LP
808}
809
c5419d42 810static int service_load_pid_file(Service *s, bool may_warn) {
7fd1b19b 811 _cleanup_free_ char *k = NULL;
034c6ed7 812 int r;
5925dd3c 813 pid_t pid;
034c6ed7
LP
814
815 assert(s);
816
034c6ed7 817 if (!s->pid_file)
13230d5d 818 return -ENOENT;
034c6ed7 819
117dcc57
ZJS
820 r = read_one_line_file(s->pid_file, &k);
821 if (r < 0) {
c5419d42 822 if (may_warn)
f2341e0a 823 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 824 return r;
5375410b 825 }
034c6ed7 826
5925dd3c 827 r = parse_pid(k, &pid);
bc41f93e
ZJS
828 if (r < 0) {
829 if (may_warn)
f2341e0a 830 log_unit_info_errno(UNIT(s), r, "Failed to read PID from file %s: %m", s->pid_file);
5925dd3c 831 return r;
bc41f93e 832 }
406eaf93 833
9f5650ae 834 if (!pid_is_alive(pid)) {
c5419d42 835 if (may_warn)
f2341e0a 836 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
837 return -ESRCH;
838 }
839
db01f8b3
MS
840 if (s->main_pid_known) {
841 if (pid == s->main_pid)
842 return 0;
843
f2341e0a 844 log_unit_debug(UNIT(s), "Main PID changing: "PID_FMT" -> "PID_FMT, s->main_pid, pid);
8bb2d17d 845
db01f8b3
MS
846 service_unwatch_main_pid(s);
847 s->main_pid_known = false;
3a111838 848 } else
f2341e0a 849 log_unit_debug(UNIT(s), "Main PID loaded: "PID_FMT, pid);
db01f8b3 850
117dcc57
ZJS
851 r = service_set_main_pid(s, pid);
852 if (r < 0)
16f6025e
LP
853 return r;
854
117dcc57 855 r = unit_watch_pid(UNIT(s), pid);
e8b509d3
LP
856 if (r < 0) /* FIXME: we need to do something here */
857 return log_unit_warning_errno(UNIT(s), r, "Failed to watch PID "PID_FMT" for service: %m", pid);
034c6ed7
LP
858
859 return 0;
860}
861
783e05d6 862static void service_search_main_pid(Service *s) {
efdb0237 863 pid_t pid = 0;
4fbf50b3
LP
864 int r;
865
866 assert(s);
867
3185a36b
LP
868 /* If we know it anyway, don't ever fallback to unreliable
869 * heuristics */
4fbf50b3 870 if (s->main_pid_known)
783e05d6 871 return;
4fbf50b3 872
3185a36b 873 if (!s->guess_main_pid)
783e05d6 874 return;
3185a36b 875
4fbf50b3
LP
876 assert(s->main_pid <= 0);
877
783e05d6
ZJS
878 if (unit_search_main_pid(UNIT(s), &pid) < 0)
879 return;
4fbf50b3 880
f2341e0a 881 log_unit_debug(UNIT(s), "Main PID guessed: "PID_FMT, pid);
783e05d6
ZJS
882 if (service_set_main_pid(s, pid) < 0)
883 return;
4fbf50b3 884
117dcc57 885 r = unit_watch_pid(UNIT(s), pid);
783e05d6 886 if (r < 0)
4fbf50b3 887 /* FIXME: we need to do something here */
f2341e0a 888 log_unit_warning_errno(UNIT(s), r, "Failed to watch PID "PID_FMT" from: %m", pid);
4fbf50b3
LP
889}
890
034c6ed7
LP
891static void service_set_state(Service *s, ServiceState state) {
892 ServiceState old_state;
e056b01d 893 const UnitActiveState *table;
842129f5 894
5cb5a6ff
LP
895 assert(s);
896
e056b01d
LP
897 table = s->type == SERVICE_IDLE ? state_translation_table_idle : state_translation_table;
898
034c6ed7 899 old_state = s->state;
5cb5a6ff 900 s->state = state;
034c6ed7 901
3a111838
MS
902 service_unwatch_pid_file(s);
903
842129f5
LP
904 if (!IN_SET(state,
905 SERVICE_START_PRE, SERVICE_START, SERVICE_START_POST,
36c16a7c 906 SERVICE_RUNNING,
842129f5 907 SERVICE_RELOAD,
57614eb1 908 SERVICE_STOP, SERVICE_STOP_SIGABRT, SERVICE_STOP_SIGTERM, SERVICE_STOP_SIGKILL, SERVICE_STOP_POST,
842129f5
LP
909 SERVICE_FINAL_SIGTERM, SERVICE_FINAL_SIGKILL,
910 SERVICE_AUTO_RESTART))
718db961 911 s->timer_event_source = sd_event_source_unref(s->timer_event_source);
034c6ed7 912
842129f5
LP
913 if (!IN_SET(state,
914 SERVICE_START, SERVICE_START_POST,
915 SERVICE_RUNNING, SERVICE_RELOAD,
57614eb1 916 SERVICE_STOP, SERVICE_STOP_SIGABRT, SERVICE_STOP_SIGTERM, SERVICE_STOP_SIGKILL, SERVICE_STOP_POST,
bf108e55 917 SERVICE_FINAL_SIGTERM, SERVICE_FINAL_SIGKILL)) {
5e94833f 918 service_unwatch_main_pid(s);
867b3b7d
LP
919 s->main_command = NULL;
920 }
034c6ed7 921
842129f5
LP
922 if (!IN_SET(state,
923 SERVICE_START_PRE, SERVICE_START, SERVICE_START_POST,
924 SERVICE_RELOAD,
57614eb1 925 SERVICE_STOP, SERVICE_STOP_SIGABRT, SERVICE_STOP_SIGTERM, SERVICE_STOP_SIGKILL, SERVICE_STOP_POST,
842129f5 926 SERVICE_FINAL_SIGTERM, SERVICE_FINAL_SIGKILL)) {
5e94833f 927 service_unwatch_control_pid(s);
034c6ed7 928 s->control_command = NULL;
a16e1123 929 s->control_command_id = _SERVICE_EXEC_COMMAND_INVALID;
e537352b 930 }
034c6ed7 931
a911bb9a
LP
932 if (IN_SET(state, SERVICE_DEAD, SERVICE_FAILED, SERVICE_AUTO_RESTART))
933 unit_unwatch_all_pids(UNIT(s));
934
842129f5
LP
935 if (!IN_SET(state,
936 SERVICE_START_PRE, SERVICE_START, SERVICE_START_POST,
937 SERVICE_RUNNING, SERVICE_RELOAD,
57614eb1
LP
938 SERVICE_STOP, SERVICE_STOP_SIGABRT, SERVICE_STOP_SIGTERM, SERVICE_STOP_SIGKILL, SERVICE_STOP_POST,
939 SERVICE_FINAL_SIGTERM, SERVICE_FINAL_SIGKILL) &&
5cc3985e 940 !(state == SERVICE_DEAD && UNIT(s)->job))
4f2d528d
LP
941 service_close_socket_fd(s);
942
7596e9e1 943 if (!IN_SET(state, SERVICE_START_POST, SERVICE_RUNNING, SERVICE_RELOAD))
a6927d7f
MO
944 service_stop_watchdog(s);
945
f6023656
LP
946 /* For the inactive states unit_notify() will trim the cgroup,
947 * but for exit we have to do that ourselves... */
2c289ea8 948 if (state == SERVICE_EXITED && !MANAGER_IS_RELOADING(UNIT(s)->manager))
efdb0237 949 unit_prune_cgroup(UNIT(s));
f6023656 950
9cd86184
OB
951 /* For remain_after_exit services, let's see if we can "release" the
952 * hold on the console, since unit_notify() only does that in case of
953 * change of state */
f49650ce
LP
954 if (state == SERVICE_EXITED &&
955 s->remain_after_exit &&
9cd86184 956 UNIT(s)->manager->n_on_console > 0) {
f49650ce
LP
957
958 ExecContext *ec;
959
960 ec = unit_get_exec_context(UNIT(s));
9cd86184
OB
961 if (ec && exec_context_may_touch_console(ec)) {
962 Manager *m = UNIT(s)->manager;
963
313cefa1 964 m->n_on_console--;
9cd86184
OB
965 if (m->n_on_console == 0)
966 /* unset no_console_output flag, since the console is free */
967 m->no_console_output = false;
968 }
969 }
970
e537352b 971 if (old_state != state)
f2341e0a 972 log_unit_debug(UNIT(s), "Changed %s -> %s", service_state_to_string(old_state), service_state_to_string(state));
acbb0225 973
e056b01d 974 unit_notify(UNIT(s), table[old_state], table[state], s->reload_result == SERVICE_SUCCESS);
034c6ed7
LP
975}
976
36c16a7c
LP
977static usec_t service_coldplug_timeout(Service *s) {
978 assert(s);
979
980 switch (s->deserialized_state) {
981
982 case SERVICE_START_PRE:
983 case SERVICE_START:
984 case SERVICE_START_POST:
985 case SERVICE_RELOAD:
986 return usec_add(UNIT(s)->state_change_timestamp.monotonic, s->timeout_start_usec);
987
988 case SERVICE_RUNNING:
989 return usec_add(UNIT(s)->active_enter_timestamp.monotonic, s->runtime_max_usec);
990
991 case SERVICE_STOP:
992 case SERVICE_STOP_SIGABRT:
993 case SERVICE_STOP_SIGTERM:
994 case SERVICE_STOP_SIGKILL:
995 case SERVICE_STOP_POST:
996 case SERVICE_FINAL_SIGTERM:
997 case SERVICE_FINAL_SIGKILL:
998 return usec_add(UNIT(s)->state_change_timestamp.monotonic, s->timeout_stop_usec);
999
1000 case SERVICE_AUTO_RESTART:
1001 return usec_add(UNIT(s)->inactive_enter_timestamp.monotonic, s->restart_usec);
1002
1003 default:
1004 return USEC_INFINITY;
1005 }
1006}
1007
be847e82 1008static int service_coldplug(Unit *u) {
a16e1123
LP
1009 Service *s = SERVICE(u);
1010 int r;
1011
1012 assert(s);
1013 assert(s->state == SERVICE_DEAD);
1014
930d2838
LP
1015 if (s->deserialized_state == s->state)
1016 return 0;
6c12b52e 1017
36c16a7c
LP
1018 r = service_arm_timer(s, service_coldplug_timeout(s));
1019 if (r < 0)
1020 return r;
a911bb9a 1021
930d2838
LP
1022 if (s->main_pid > 0 &&
1023 pid_is_unwaited(s->main_pid) &&
1024 ((s->deserialized_state == SERVICE_START && IN_SET(s->type, SERVICE_FORKING, SERVICE_DBUS, SERVICE_ONESHOT, SERVICE_NOTIFY)) ||
1025 IN_SET(s->deserialized_state,
1026 SERVICE_START, SERVICE_START_POST,
1027 SERVICE_RUNNING, SERVICE_RELOAD,
1028 SERVICE_STOP, SERVICE_STOP_SIGABRT, SERVICE_STOP_SIGTERM, SERVICE_STOP_SIGKILL, SERVICE_STOP_POST,
1029 SERVICE_FINAL_SIGTERM, SERVICE_FINAL_SIGKILL))) {
1030 r = unit_watch_pid(UNIT(s), s->main_pid);
1031 if (r < 0)
1032 return r;
1033 }
bb242b7b 1034
930d2838
LP
1035 if (s->control_pid > 0 &&
1036 pid_is_unwaited(s->control_pid) &&
1037 IN_SET(s->deserialized_state,
1038 SERVICE_START_PRE, SERVICE_START, SERVICE_START_POST,
1039 SERVICE_RELOAD,
1040 SERVICE_STOP, SERVICE_STOP_SIGABRT, SERVICE_STOP_SIGTERM, SERVICE_STOP_SIGKILL, SERVICE_STOP_POST,
1041 SERVICE_FINAL_SIGTERM, SERVICE_FINAL_SIGKILL)) {
1042 r = unit_watch_pid(UNIT(s), s->control_pid);
1043 if (r < 0)
1044 return r;
a16e1123 1045 }
92c1622e 1046
930d2838
LP
1047 if (!IN_SET(s->deserialized_state, SERVICE_DEAD, SERVICE_FAILED, SERVICE_AUTO_RESTART))
1048 unit_watch_all_pids(UNIT(s));
1049
1050 if (IN_SET(s->deserialized_state, SERVICE_START_POST, SERVICE_RUNNING, SERVICE_RELOAD))
1051 service_start_watchdog(s);
1052
29206d46
LP
1053 if (!IN_SET(s->deserialized_state, SERVICE_DEAD, SERVICE_FAILED, SERVICE_AUTO_RESTART))
1054 (void) unit_setup_dynamic_creds(u);
1055
3ebcd323
ZJS
1056 if (UNIT_ISSET(s->accept_socket)) {
1057 Socket* socket = SOCKET(UNIT_DEREF(s->accept_socket));
1058
1059 if (socket->max_connections_per_source > 0) {
1060 SocketPeer *peer;
1061
1062 /* Make a best-effort attempt at bumping the connection count */
1063 if (socket_acquire_peer(socket, s->socket_fd, &peer) > 0) {
1064 socket_peer_unref(s->peer);
1065 s->peer = peer;
1066 }
1067 }
1068 }
1069
930d2838 1070 service_set_state(s, s->deserialized_state);
a16e1123
LP
1071 return 0;
1072}
1073
4c47affc
FB
1074static int service_collect_fds(Service *s,
1075 int **fds,
1076 char ***fd_names,
1077 unsigned *n_storage_fds,
1078 unsigned *n_socket_fds) {
1079
8dd4c05b 1080 _cleanup_strv_free_ char **rfd_names = NULL;
a354329f 1081 _cleanup_free_ int *rfds = NULL;
4c47affc
FB
1082 unsigned rn_socket_fds = 0, rn_storage_fds = 0;
1083 int r;
44d8db9e
LP
1084
1085 assert(s);
1086 assert(fds);
8dd4c05b 1087 assert(fd_names);
9b141911 1088 assert(n_socket_fds);
44d8db9e 1089
8dd4c05b 1090 if (s->socket_fd >= 0) {
6cf6bbc2 1091
8dd4c05b 1092 /* Pass the per-connection socket */
57020a3a 1093
8dd4c05b
LP
1094 rfds = new(int, 1);
1095 if (!rfds)
1096 return -ENOMEM;
1097 rfds[0] = s->socket_fd;
57020a3a 1098
8dd4c05b
LP
1099 rfd_names = strv_new("connection", NULL);
1100 if (!rfd_names)
1101 return -ENOMEM;
44d8db9e 1102
4c47affc 1103 rn_socket_fds = 1;
8dd4c05b
LP
1104 } else {
1105 Iterator i;
1106 Unit *u;
44d8db9e 1107
8dd4c05b 1108 /* Pass all our configured sockets for singleton services */
44d8db9e 1109
8dd4c05b
LP
1110 SET_FOREACH(u, UNIT(s)->dependencies[UNIT_TRIGGERED_BY], i) {
1111 _cleanup_free_ int *cfds = NULL;
1112 Socket *sock;
1113 int cn_fds;
44d8db9e 1114
8dd4c05b
LP
1115 if (u->type != UNIT_SOCKET)
1116 continue;
44d8db9e 1117
8dd4c05b 1118 sock = SOCKET(u);
a354329f 1119
8dd4c05b
LP
1120 cn_fds = socket_collect_fds(sock, &cfds);
1121 if (cn_fds < 0)
1122 return cn_fds;
44d8db9e 1123
8dd4c05b
LP
1124 if (cn_fds <= 0)
1125 continue;
79c7626d 1126
8dd4c05b
LP
1127 if (!rfds) {
1128 rfds = cfds;
4c47affc 1129 rn_socket_fds = cn_fds;
8dd4c05b
LP
1130
1131 cfds = NULL;
1132 } else {
1133 int *t;
1134
4c47affc 1135 t = realloc(rfds, (rn_socket_fds + cn_fds) * sizeof(int));
8dd4c05b
LP
1136 if (!t)
1137 return -ENOMEM;
1138
4c47affc 1139 memcpy(t + rn_socket_fds, cfds, cn_fds * sizeof(int));
8dd4c05b
LP
1140
1141 rfds = t;
4c47affc 1142 rn_socket_fds += cn_fds;
8dd4c05b
LP
1143 }
1144
1145 r = strv_extend_n(&rfd_names, socket_fdname(sock), cn_fds);
1146 if (r < 0)
1147 return r;
44d8db9e
LP
1148 }
1149 }
1150
a354329f
LP
1151 if (s->n_fd_store > 0) {
1152 ServiceFDStore *fs;
4c47affc 1153 unsigned n_fds;
8dd4c05b 1154 char **nl;
a354329f
LP
1155 int *t;
1156
4c47affc 1157 t = realloc(rfds, (rn_socket_fds + s->n_fd_store) * sizeof(int));
a354329f
LP
1158 if (!t)
1159 return -ENOMEM;
1160
1161 rfds = t;
8dd4c05b 1162
4c47affc 1163 nl = realloc(rfd_names, (rn_socket_fds + s->n_fd_store + 1) * sizeof(char*));
8dd4c05b
LP
1164 if (!nl)
1165 return -ENOMEM;
1166
1167 rfd_names = nl;
4c47affc 1168 n_fds = rn_socket_fds;
8dd4c05b
LP
1169
1170 LIST_FOREACH(fd_store, fs, s->fd_store) {
4c47affc
FB
1171 rfds[n_fds] = fs->fd;
1172 rfd_names[n_fds] = strdup(strempty(fs->fdname));
1173 if (!rfd_names[n_fds])
8dd4c05b
LP
1174 return -ENOMEM;
1175
4c47affc
FB
1176 rn_storage_fds++;
1177 n_fds++;
8dd4c05b
LP
1178 }
1179
4c47affc 1180 rfd_names[n_fds] = NULL;
a354329f
LP
1181 }
1182
44d8db9e 1183 *fds = rfds;
8dd4c05b 1184 *fd_names = rfd_names;
9b141911 1185 *n_socket_fds = rn_socket_fds;
4c47affc 1186 *n_storage_fds = rn_storage_fds;
3e33402a 1187
a354329f 1188 rfds = NULL;
8dd4c05b 1189 rfd_names = NULL;
79c7626d 1190
4c47affc 1191 return 0;
44d8db9e
LP
1192}
1193
6375bd20
JW
1194static bool service_exec_needs_notify_socket(Service *s, ExecFlags flags) {
1195 assert(s);
1196
1197 /* Notifications are accepted depending on the process and
1198 * the access setting of the service:
1199 * process: \ access: NONE MAIN EXEC ALL
1200 * main no yes yes yes
1201 * control no no yes yes
1202 * other (forked) no no no yes */
1203
1204 if (flags & EXEC_IS_CONTROL)
1205 /* A control process */
1206 return IN_SET(s->notify_access, NOTIFY_EXEC, NOTIFY_ALL);
1207
1208 /* We only spawn main processes and control processes, so any
1209 * process that is not a control process is a main process */
1210 return s->notify_access != NOTIFY_NONE;
1211}
1212
81a2b7ce
LP
1213static int service_spawn(
1214 Service *s,
1215 ExecCommand *c,
21b2ce39 1216 usec_t timeout,
c39f1ce2 1217 ExecFlags flags,
81a2b7ce
LP
1218 pid_t *_pid) {
1219
5125e762 1220 _cleanup_strv_free_ char **final_env = NULL, **our_env = NULL, **fd_names = NULL;
8dd4c05b 1221 _cleanup_free_ int *fds = NULL;
4c47affc 1222 unsigned n_storage_fds = 0, n_socket_fds = 0, n_env = 0;
8dd4c05b
LP
1223 pid_t pid;
1224
9fa95f85 1225 ExecParameters exec_params = {
c39f1ce2
LP
1226 .flags = flags,
1227 .stdin_fd = -1,
1228 .stdout_fd = -1,
1229 .stderr_fd = -1,
9fa95f85 1230 };
034c6ed7 1231
8dd4c05b
LP
1232 int r;
1233
034c6ed7
LP
1234 assert(s);
1235 assert(c);
1236 assert(_pid);
1237
9c1a61ad
LP
1238 if (flags & EXEC_IS_CONTROL) {
1239 /* If this is a control process, mask the permissions/chroot application if this is requested. */
1240 if (s->permissions_start_only)
1703fa41 1241 exec_params.flags &= ~EXEC_APPLY_SANDBOXING;
9c1a61ad
LP
1242 if (s->root_directory_start_only)
1243 exec_params.flags &= ~EXEC_APPLY_CHROOT;
1244 }
1245
5ad096b3 1246 (void) unit_realize_cgroup(UNIT(s));
906c06f6
DM
1247 if (s->reset_accounting) {
1248 (void) unit_reset_cpu_accounting(UNIT(s));
1249 (void) unit_reset_ip_accounting(UNIT(s));
1250 s->reset_accounting = false;
5ad096b3 1251 }
4ad49000 1252
613b411c
LP
1253 r = unit_setup_exec_runtime(UNIT(s));
1254 if (r < 0)
36c16a7c 1255 return r;
613b411c 1256
29206d46
LP
1257 r = unit_setup_dynamic_creds(UNIT(s));
1258 if (r < 0)
1259 return r;
1260
c39f1ce2 1261 if ((flags & EXEC_PASS_FDS) ||
6cf6bbc2
LP
1262 s->exec_context.std_input == EXEC_INPUT_SOCKET ||
1263 s->exec_context.std_output == EXEC_OUTPUT_SOCKET ||
1264 s->exec_context.std_error == EXEC_OUTPUT_SOCKET) {
1265
4c47affc 1266 r = service_collect_fds(s, &fds, &fd_names, &n_storage_fds, &n_socket_fds);
8dd4c05b 1267 if (r < 0)
36c16a7c 1268 return r;
6cf6bbc2 1269
4c47affc 1270 log_unit_debug(UNIT(s), "Passing %i fds to service", n_storage_fds + n_socket_fds);
4f2d528d 1271 }
44d8db9e 1272
36c16a7c
LP
1273 r = service_arm_timer(s, usec_add(now(CLOCK_MONOTONIC), timeout));
1274 if (r < 0)
1275 return r;
034c6ed7 1276
136dc4c4 1277 our_env = new0(char*, 9);
36c16a7c
LP
1278 if (!our_env)
1279 return -ENOMEM;
c952c6ec 1280
6375bd20 1281 if (service_exec_needs_notify_socket(s, flags))
36c16a7c
LP
1282 if (asprintf(our_env + n_env++, "NOTIFY_SOCKET=%s", UNIT(s)->manager->notify_socket) < 0)
1283 return -ENOMEM;
c952c6ec 1284
2105e76a 1285 if (s->main_pid > 0)
36c16a7c
LP
1286 if (asprintf(our_env + n_env++, "MAINPID="PID_FMT, s->main_pid) < 0)
1287 return -ENOMEM;
2105e76a 1288
c39f1ce2 1289 if (MANAGER_IS_USER(UNIT(s)->manager))
df0ff127 1290 if (asprintf(our_env + n_env++, "MANAGERPID="PID_FMT, getpid_cached()) < 0)
36c16a7c 1291 return -ENOMEM;
97ae63e2 1292
8dd4c05b 1293 if (s->socket_fd >= 0) {
3b1c5241
SL
1294 union sockaddr_union sa;
1295 socklen_t salen = sizeof(sa);
1296
1297 r = getpeername(s->socket_fd, &sa.sa, &salen);
f2dbd059
KR
1298 if (r < 0) {
1299 r = -errno;
1300
1301 /* ENOTCONN is legitimate if the endpoint disappeared on shutdown.
1302 * This connection is over, but the socket unit lives on. */
7dd736ab 1303 if (r != -ENOTCONN || !IN_SET(s->control_command_id, SERVICE_EXEC_STOP, SERVICE_EXEC_STOP_POST))
f2dbd059
KR
1304 return r;
1305 }
3b1c5241 1306
359a5bcf 1307 if (r == 0 && IN_SET(sa.sa.sa_family, AF_INET, AF_INET6, AF_VSOCK)) {
3b1c5241
SL
1308 _cleanup_free_ char *addr = NULL;
1309 char *t;
882ac6e7 1310 unsigned port;
3b1c5241
SL
1311
1312 r = sockaddr_pretty(&sa.sa, salen, true, false, &addr);
1313 if (r < 0)
36c16a7c 1314 return r;
3b1c5241
SL
1315
1316 t = strappend("REMOTE_ADDR=", addr);
36c16a7c
LP
1317 if (!t)
1318 return -ENOMEM;
3b1c5241
SL
1319 our_env[n_env++] = t;
1320
882ac6e7
SH
1321 r = sockaddr_port(&sa.sa, &port);
1322 if (r < 0)
1323 return r;
3b1c5241 1324
36c16a7c
LP
1325 if (asprintf(&t, "REMOTE_PORT=%u", port) < 0)
1326 return -ENOMEM;
3b1c5241
SL
1327 our_env[n_env++] = t;
1328 }
1329 }
1330
136dc4c4
LP
1331 if (flags & EXEC_SETENV_RESULT) {
1332 if (asprintf(our_env + n_env++, "SERVICE_RESULT=%s", service_result_to_string(s->result)) < 0)
1333 return -ENOMEM;
1334
1335 if (s->main_exec_status.pid > 0 &&
1336 dual_timestamp_is_set(&s->main_exec_status.exit_timestamp)) {
1337 if (asprintf(our_env + n_env++, "EXIT_CODE=%s", sigchld_code_to_string(s->main_exec_status.code)) < 0)
1338 return -ENOMEM;
1339
1340 if (s->main_exec_status.code == CLD_EXITED)
1341 r = asprintf(our_env + n_env++, "EXIT_STATUS=%i", s->main_exec_status.status);
1342 else
1343 r = asprintf(our_env + n_env++, "EXIT_STATUS=%s", signal_to_string(s->main_exec_status.status));
1344 if (r < 0)
1345 return -ENOMEM;
1346 }
1347 }
1348
19bbdd98 1349 manager_set_exec_params(UNIT(s)->manager, &exec_params);
f0d47797 1350 unit_set_exec_params(UNIT(s), &exec_params);
3536f49e
YW
1351
1352 final_env = strv_env_merge(2, exec_params.environment, our_env, NULL);
36c16a7c
LP
1353 if (!final_env)
1354 return -ENOMEM;
c952c6ec 1355
c39f1ce2 1356 if ((flags & EXEC_IS_CONTROL) && UNIT(s)->cgroup_path) {
f0d47797
LP
1357 exec_params.cgroup_path = strjoina(UNIT(s)->cgroup_path, "/control");
1358 (void) cg_create(SYSTEMD_CGROUP_CONTROLLER, exec_params.cgroup_path);
1359 }
4ad49000 1360
5bf7569c
LP
1361 /* System services should get a new keyring by default. */
1362 SET_FLAG(exec_params.flags, EXEC_NEW_KEYRING, MANAGER_IS_SYSTEM(UNIT(s)->manager));
ac647978
LP
1363
1364 /* System D-Bus needs nss-systemd disabled, so that we don't deadlock */
1365 SET_FLAG(exec_params.flags, EXEC_NSS_BYPASS_BUS,
1366 MANAGER_IS_SYSTEM(UNIT(s)->manager) && unit_has_name(UNIT(s), SPECIAL_DBUS_SERVICE));
4ad49000 1367
5125e762 1368 exec_params.argv = c->argv;
c39f1ce2 1369 exec_params.environment = final_env;
9fa95f85 1370 exec_params.fds = fds;
8dd4c05b 1371 exec_params.fd_names = fd_names;
4c47affc 1372 exec_params.n_storage_fds = n_storage_fds;
9b141911 1373 exec_params.n_socket_fds = n_socket_fds;
9fa95f85 1374 exec_params.watchdog_usec = s->watchdog_usec;
a34ceba6 1375 exec_params.selinux_context_net = s->socket_fd_selinux_context_net;
9fa95f85
DM
1376 if (s->type == SERVICE_IDLE)
1377 exec_params.idle_pipe = UNIT(s)->manager->idle_pipe;
a34ceba6
LP
1378 exec_params.stdin_fd = s->stdin_fd;
1379 exec_params.stdout_fd = s->stdout_fd;
1380 exec_params.stderr_fd = s->stderr_fd;
9fa95f85 1381
f2341e0a
LP
1382 r = exec_spawn(UNIT(s),
1383 c,
9e2f7c11 1384 &s->exec_context,
9fa95f85 1385 &exec_params,
613b411c 1386 s->exec_runtime,
29206d46 1387 &s->dynamic_creds,
9e2f7c11 1388 &pid);
9e2f7c11 1389 if (r < 0)
36c16a7c 1390 return r;
034c6ed7 1391
117dcc57 1392 r = unit_watch_pid(UNIT(s), pid);
e8b509d3 1393 if (r < 0) /* FIXME: we need to do something here */
36c16a7c 1394 return r;
034c6ed7
LP
1395
1396 *_pid = pid;
1397
5cb5a6ff 1398 return 0;
034c6ed7
LP
1399}
1400
80876c20
LP
1401static int main_pid_good(Service *s) {
1402 assert(s);
1403
51894d70 1404 /* Returns 0 if the pid is dead, > 0 if it is good, < 0 if we don't know */
80876c20 1405
fc08079e 1406 /* If we know the pid file, then let's just check if it is
80876c20 1407 * still valid */
6dfa5494
LP
1408 if (s->main_pid_known) {
1409
1410 /* If it's an alien child let's check if it is still
1411 * alive ... */
62220cf7 1412 if (s->main_pid_alien && s->main_pid > 0)
9f5650ae 1413 return pid_is_alive(s->main_pid);
6dfa5494
LP
1414
1415 /* .. otherwise assume we'll get a SIGCHLD for it,
1416 * which we really should wait for to collect exit
1417 * status and code */
80876c20 1418 return s->main_pid > 0;
6dfa5494 1419 }
80876c20
LP
1420
1421 /* We don't know the pid */
1422 return -EAGAIN;
1423}
1424
019be286 1425static int control_pid_good(Service *s) {
80876c20
LP
1426 assert(s);
1427
07697d7e
LP
1428 /* Returns 0 if the control PID is dead, > 0 if it is good. We never actually return < 0 here, but in order to
1429 * make this function as similar as possible to main_pid_good() and cgroup_good(), we pretend that < 0 also
1430 * means: we can't figure it out. */
1431
80876c20
LP
1432 return s->control_pid > 0;
1433}
1434
1435static int cgroup_good(Service *s) {
1436 int r;
1437
1438 assert(s);
1439
07697d7e
LP
1440 /* Returns 0 if the cgroup is empty or doesn't exist, > 0 if it is exists and is populated, < 0 if we can't
1441 * figure it out */
1442
4ad49000
LP
1443 if (!UNIT(s)->cgroup_path)
1444 return 0;
1445
6f883237 1446 r = cg_is_empty_recursive(SYSTEMD_CGROUP_CONTROLLER, UNIT(s)->cgroup_path);
117dcc57 1447 if (r < 0)
80876c20
LP
1448 return r;
1449
b13ddbbc 1450 return r == 0;
80876c20
LP
1451}
1452
a509f0e6
LP
1453static bool service_shall_restart(Service *s) {
1454 assert(s);
1455
1456 /* Don't restart after manual stops */
1457 if (s->forbid_restart)
1458 return false;
1459
1460 /* Never restart if this is configured as special exception */
1461 if (exit_status_set_test(&s->restart_prevent_status, s->main_exec_status.code, s->main_exec_status.status))
1462 return false;
1463
1464 /* Restart if the exit code/status are configured as restart triggers */
1465 if (exit_status_set_test(&s->restart_force_status, s->main_exec_status.code, s->main_exec_status.status))
1466 return true;
1467
1468 switch (s->restart) {
1469
1470 case SERVICE_RESTART_NO:
1471 return false;
1472
1473 case SERVICE_RESTART_ALWAYS:
1474 return true;
1475
1476 case SERVICE_RESTART_ON_SUCCESS:
1477 return s->result == SERVICE_SUCCESS;
1478
1479 case SERVICE_RESTART_ON_FAILURE:
1480 return s->result != SERVICE_SUCCESS;
1481
1482 case SERVICE_RESTART_ON_ABNORMAL:
1483 return !IN_SET(s->result, SERVICE_SUCCESS, SERVICE_FAILURE_EXIT_CODE);
1484
1485 case SERVICE_RESTART_ON_WATCHDOG:
1486 return s->result == SERVICE_FAILURE_WATCHDOG;
1487
1488 case SERVICE_RESTART_ON_ABORT:
1489 return IN_SET(s->result, SERVICE_FAILURE_SIGNAL, SERVICE_FAILURE_CORE_DUMP);
1490
1491 default:
1492 assert_not_reached("unknown restart setting");
1493 }
1494}
1495
53f47dfc
YW
1496static bool service_will_restart(Service *s) {
1497 assert(s);
1498
1499 if (s->state == SERVICE_AUTO_RESTART)
1500 return true;
1501 if (!UNIT(s)->job)
1502 return false;
1503 if (UNIT(s)->job->type == JOB_START)
1504 return true;
1505 return false;
1506}
1507
f42806df 1508static void service_enter_dead(Service *s, ServiceResult f, bool allow_restart) {
034c6ed7 1509 int r;
0f52f8e5 1510
034c6ed7
LP
1511 assert(s);
1512
0f52f8e5
LP
1513 /* If there's a stop job queued before we enter the DEAD state, we shouldn't act on Restart=, in order to not
1514 * undo what has already been enqueued. */
1515 if (unit_stop_pending(UNIT(s)))
1516 allow_restart = false;
1517
a0fef983 1518 if (s->result == SERVICE_SUCCESS)
f42806df 1519 s->result = f;
034c6ed7 1520
ed77d407
LP
1521 if (s->result != SERVICE_SUCCESS)
1522 log_unit_warning(UNIT(s), "Failed with result '%s'.", service_result_to_string(s->result));
1523
0c7f15b3
MS
1524 service_set_state(s, s->result != SERVICE_SUCCESS ? SERVICE_FAILED : SERVICE_DEAD);
1525
ed77d407 1526 if (s->result != SERVICE_SUCCESS)
87a47f99 1527 emergency_action(UNIT(s)->manager, s->emergency_action, UNIT(s)->reboot_arg, "service failed");
93ae25e6 1528
a509f0e6 1529 if (allow_restart && service_shall_restart(s)) {
034c6ed7 1530
36c16a7c 1531 r = service_arm_timer(s, usec_add(now(CLOCK_MONOTONIC), s->restart_usec));
f42806df 1532 if (r < 0)
034c6ed7
LP
1533 goto fail;
1534
1535 service_set_state(s, SERVICE_AUTO_RESTART);
7a0019d3
LP
1536 } else
1537 /* If we shan't restart, then flush out the restart counter. But don't do that immediately, so that the
1538 * user can still introspect the counter. Do so on the next start. */
1539 s->flush_n_restarts = true;
034c6ed7 1540
f2341e0a 1541 /* The next restart might not be a manual stop, hence reset the flag indicating manual stops */
47342320
LP
1542 s->forbid_restart = false;
1543
e66cf1a3 1544 /* We want fresh tmpdirs in case service is started again immediately */
613b411c
LP
1545 exec_runtime_destroy(s->exec_runtime);
1546 s->exec_runtime = exec_runtime_unref(s->exec_runtime);
c17ec25e 1547
53f47dfc
YW
1548 if (s->exec_context.runtime_directory_preserve_mode == EXEC_PRESERVE_NO ||
1549 (s->exec_context.runtime_directory_preserve_mode == EXEC_PRESERVE_RESTART && !service_will_restart(s)))
1550 /* Also, remove the runtime directory */
3536f49e 1551 exec_context_destroy_runtime_directory(&s->exec_context, UNIT(s)->manager->prefix[EXEC_DIRECTORY_RUNTIME]);
e66cf1a3 1552
00d9ef85
LP
1553 /* Get rid of the IPC bits of the user */
1554 unit_unref_uid_gid(UNIT(s), true);
1555
29206d46
LP
1556 /* Release the user, and destroy it if we are the only remaining owner */
1557 dynamic_creds_destroy(&s->dynamic_creds);
1558
9285c9ff
LN
1559 /* Try to delete the pid file. At this point it will be
1560 * out-of-date, and some software might be confused by it, so
1561 * let's remove it. */
1562 if (s->pid_file)
fabab190 1563 (void) unlink(s->pid_file);
9285c9ff 1564
034c6ed7
LP
1565 return;
1566
1567fail:
f2341e0a 1568 log_unit_warning_errno(UNIT(s), r, "Failed to run install restart timer: %m");
f42806df 1569 service_enter_dead(s, SERVICE_FAILURE_RESOURCES, false);
034c6ed7
LP
1570}
1571
f42806df 1572static void service_enter_stop_post(Service *s, ServiceResult f) {
034c6ed7
LP
1573 int r;
1574 assert(s);
1575
a0fef983 1576 if (s->result == SERVICE_SUCCESS)
f42806df 1577 s->result = f;
034c6ed7 1578
5e94833f 1579 service_unwatch_control_pid(s);
a911bb9a 1580 unit_watch_all_pids(UNIT(s));
5e94833f 1581
117dcc57
ZJS
1582 s->control_command = s->exec_command[SERVICE_EXEC_STOP_POST];
1583 if (s->control_command) {
867b3b7d
LP
1584 s->control_command_id = SERVICE_EXEC_STOP_POST;
1585
ecedd90f
LP
1586 r = service_spawn(s,
1587 s->control_command,
21b2ce39 1588 s->timeout_stop_usec,
1703fa41 1589 EXEC_APPLY_SANDBOXING|EXEC_APPLY_CHROOT|EXEC_APPLY_TTY_STDIN|EXEC_IS_CONTROL|EXEC_SETENV_RESULT,
ecedd90f
LP
1590 &s->control_pid);
1591 if (r < 0)
034c6ed7
LP
1592 goto fail;
1593
80876c20
LP
1594 service_set_state(s, SERVICE_STOP_POST);
1595 } else
ac84d1fb 1596 service_enter_signal(s, SERVICE_FINAL_SIGTERM, SERVICE_SUCCESS);
034c6ed7
LP
1597
1598 return;
1599
1600fail:
f2341e0a 1601 log_unit_warning_errno(UNIT(s), r, "Failed to run 'stop-post' task: %m");
f42806df 1602 service_enter_signal(s, SERVICE_FINAL_SIGTERM, SERVICE_FAILURE_RESOURCES);
034c6ed7
LP
1603}
1604
4940c0b0
LP
1605static int state_to_kill_operation(ServiceState state) {
1606 switch (state) {
1607
1608 case SERVICE_STOP_SIGABRT:
1609 return KILL_ABORT;
1610
1611 case SERVICE_STOP_SIGTERM:
1612 case SERVICE_FINAL_SIGTERM:
1613 return KILL_TERMINATE;
1614
1615 case SERVICE_STOP_SIGKILL:
1616 case SERVICE_FINAL_SIGKILL:
1617 return KILL_KILL;
1618
1619 default:
1620 return _KILL_OPERATION_INVALID;
1621 }
1622}
1623
f42806df 1624static void service_enter_signal(Service *s, ServiceState state, ServiceResult f) {
034c6ed7 1625 int r;
034c6ed7
LP
1626
1627 assert(s);
1628
a0fef983 1629 if (s->result == SERVICE_SUCCESS)
f42806df 1630 s->result = f;
034c6ed7 1631
a911bb9a
LP
1632 unit_watch_all_pids(UNIT(s));
1633
cd2086fe
LP
1634 r = unit_kill_context(
1635 UNIT(s),
1636 &s->kill_context,
4940c0b0 1637 state_to_kill_operation(state),
cd2086fe
LP
1638 s->main_pid,
1639 s->control_pid,
1640 s->main_pid_alien);
1641 if (r < 0)
1642 goto fail;
034c6ed7 1643
cd2086fe 1644 if (r > 0) {
36c16a7c
LP
1645 r = service_arm_timer(s, usec_add(now(CLOCK_MONOTONIC), s->timeout_stop_usec));
1646 if (r < 0)
1647 goto fail;
d6ea93e3 1648
80876c20 1649 service_set_state(s, state);
1db0db4b 1650 } else if (IN_SET(state, SERVICE_STOP_SIGABRT, SERVICE_STOP_SIGTERM) && s->kill_context.send_sigkill)
ac84d1fb 1651 service_enter_signal(s, SERVICE_STOP_SIGKILL, SERVICE_SUCCESS);
1db0db4b 1652 else if (IN_SET(state, SERVICE_STOP_SIGABRT, SERVICE_STOP_SIGTERM, SERVICE_STOP_SIGKILL))
f42806df 1653 service_enter_stop_post(s, SERVICE_SUCCESS);
1db0db4b 1654 else if (state == SERVICE_FINAL_SIGTERM && s->kill_context.send_sigkill)
ac84d1fb 1655 service_enter_signal(s, SERVICE_FINAL_SIGKILL, SERVICE_SUCCESS);
80876c20 1656 else
f42806df 1657 service_enter_dead(s, SERVICE_SUCCESS, true);
034c6ed7
LP
1658
1659 return;
1660
1661fail:
f2341e0a 1662 log_unit_warning_errno(UNIT(s), r, "Failed to kill processes: %m");
034c6ed7 1663
a00973af 1664 if (IN_SET(state, SERVICE_STOP_SIGABRT, SERVICE_STOP_SIGTERM, SERVICE_STOP_SIGKILL))
f42806df 1665 service_enter_stop_post(s, SERVICE_FAILURE_RESOURCES);
034c6ed7 1666 else
f42806df 1667 service_enter_dead(s, SERVICE_FAILURE_RESOURCES, true);
034c6ed7
LP
1668}
1669
308d72dc
LP
1670static void service_enter_stop_by_notify(Service *s) {
1671 assert(s);
1672
1673 unit_watch_all_pids(UNIT(s));
1674
36c16a7c 1675 service_arm_timer(s, usec_add(now(CLOCK_MONOTONIC), s->timeout_stop_usec));
308d72dc 1676
6041a7ee
MS
1677 /* The service told us it's stopping, so it's as if we SIGTERM'd it. */
1678 service_set_state(s, SERVICE_STOP_SIGTERM);
308d72dc
LP
1679}
1680
f42806df 1681static void service_enter_stop(Service *s, ServiceResult f) {
034c6ed7 1682 int r;
5925dd3c 1683
034c6ed7
LP
1684 assert(s);
1685
a0fef983 1686 if (s->result == SERVICE_SUCCESS)
f42806df 1687 s->result = f;
034c6ed7 1688
5e94833f 1689 service_unwatch_control_pid(s);
a911bb9a 1690 unit_watch_all_pids(UNIT(s));
5e94833f 1691
117dcc57
ZJS
1692 s->control_command = s->exec_command[SERVICE_EXEC_STOP];
1693 if (s->control_command) {
867b3b7d
LP
1694 s->control_command_id = SERVICE_EXEC_STOP;
1695
ecedd90f
LP
1696 r = service_spawn(s,
1697 s->control_command,
21b2ce39 1698 s->timeout_stop_usec,
1703fa41 1699 EXEC_APPLY_SANDBOXING|EXEC_APPLY_CHROOT|EXEC_IS_CONTROL|EXEC_SETENV_RESULT,
ecedd90f
LP
1700 &s->control_pid);
1701 if (r < 0)
034c6ed7
LP
1702 goto fail;
1703
80876c20
LP
1704 service_set_state(s, SERVICE_STOP);
1705 } else
f42806df 1706 service_enter_signal(s, SERVICE_STOP_SIGTERM, SERVICE_SUCCESS);
034c6ed7
LP
1707
1708 return;
1709
1710fail:
f2341e0a 1711 log_unit_warning_errno(UNIT(s), r, "Failed to run 'stop' task: %m");
f42806df 1712 service_enter_signal(s, SERVICE_STOP_SIGTERM, SERVICE_FAILURE_RESOURCES);
034c6ed7
LP
1713}
1714
957c3cf9
LP
1715static bool service_good(Service *s) {
1716 int main_pid_ok;
1717 assert(s);
1718
1719 if (s->type == SERVICE_DBUS && !s->bus_name_good)
1720 return false;
1721
1722 main_pid_ok = main_pid_good(s);
1723 if (main_pid_ok > 0) /* It's alive */
1724 return true;
1725 if (main_pid_ok == 0) /* It's dead */
1726 return false;
1727
1728 /* OK, we don't know anything about the main PID, maybe
1729 * because there is none. Let's check the control group
1730 * instead. */
1731
1732 return cgroup_good(s) != 0;
1733}
1734
f42806df 1735static void service_enter_running(Service *s, ServiceResult f) {
80876c20
LP
1736 assert(s);
1737
a0fef983 1738 if (s->result == SERVICE_SUCCESS)
f42806df 1739 s->result = f;
80876c20 1740
089b64d5
LP
1741 service_unwatch_control_pid(s);
1742
957c3cf9 1743 if (service_good(s)) {
308d72dc
LP
1744
1745 /* If there are any queued up sd_notify()
1746 * notifications, process them now */
1747 if (s->notify_state == NOTIFY_RELOADING)
1748 service_enter_reload_by_notify(s);
1749 else if (s->notify_state == NOTIFY_STOPPING)
1750 service_enter_stop_by_notify(s);
36c16a7c 1751 else {
308d72dc 1752 service_set_state(s, SERVICE_RUNNING);
36c16a7c
LP
1753 service_arm_timer(s, usec_add(UNIT(s)->active_enter_timestamp.monotonic, s->runtime_max_usec));
1754 }
308d72dc 1755
3d474ef7 1756 } else if (f != SERVICE_SUCCESS)
c3fda31d 1757 service_enter_signal(s, SERVICE_STOP_SIGTERM, f);
3d474ef7 1758 else if (s->remain_after_exit)
80876c20
LP
1759 service_set_state(s, SERVICE_EXITED);
1760 else
f42806df 1761 service_enter_stop(s, SERVICE_SUCCESS);
80876c20
LP
1762}
1763
034c6ed7
LP
1764static void service_enter_start_post(Service *s) {
1765 int r;
1766 assert(s);
1767
5e94833f 1768 service_unwatch_control_pid(s);
842129f5 1769 service_reset_watchdog(s);
bb242b7b 1770
117dcc57
ZJS
1771 s->control_command = s->exec_command[SERVICE_EXEC_START_POST];
1772 if (s->control_command) {
867b3b7d
LP
1773 s->control_command_id = SERVICE_EXEC_START_POST;
1774
ecedd90f
LP
1775 r = service_spawn(s,
1776 s->control_command,
21b2ce39 1777 s->timeout_start_usec,
1703fa41 1778 EXEC_APPLY_SANDBOXING|EXEC_APPLY_CHROOT|EXEC_IS_CONTROL,
ecedd90f
LP
1779 &s->control_pid);
1780 if (r < 0)
034c6ed7
LP
1781 goto fail;
1782
80876c20
LP
1783 service_set_state(s, SERVICE_START_POST);
1784 } else
f42806df 1785 service_enter_running(s, SERVICE_SUCCESS);
034c6ed7
LP
1786
1787 return;
1788
1789fail:
f2341e0a 1790 log_unit_warning_errno(UNIT(s), r, "Failed to run 'start-post' task: %m");
f42806df 1791 service_enter_stop(s, SERVICE_FAILURE_RESOURCES);
034c6ed7
LP
1792}
1793
4ad49000 1794static void service_kill_control_processes(Service *s) {
a6951a50 1795 int r;
4ad49000 1796
a6951a50
LP
1797 assert(s);
1798
1799 if (s->control_pid > 0) {
1800 r = kill_and_sigcont(s->control_pid, SIGKILL);
1801 if (r < 0) {
1802 _cleanup_free_ char *comm = NULL;
1803
1804 (void) get_process_comm(s->control_pid, &comm);
1805
1806 log_unit_debug_errno(UNIT(s), r, "Failed to kill control process " PID_FMT " (%s), ignoring: %m",
1807 s->control_pid, strna(comm));
1808 }
1809 }
4ad49000 1810
a6951a50
LP
1811 if (UNIT(s)->cgroup_path) {
1812 _cleanup_set_free_ Set *pid_set = NULL;
1813 char *p;
1814
1815 if (s->control_pid > 0) {
1816 r = set_make(&pid_set, PID_TO_PTR(s->control_pid), NULL);
1817 if (r < 0) {
1818 log_oom();
1819 return;
1820 }
1821 }
1822
1823 p = strjoina(UNIT(s)->cgroup_path, "/control");
1824 r = cg_kill_recursive(SYSTEMD_CGROUP_CONTROLLER, p, SIGKILL, CGROUP_SIGCONT|CGROUP_IGNORE_SELF|CGROUP_REMOVE, pid_set, NULL, NULL);
1825 if (r < 0)
1826 log_unit_debug_errno(UNIT(s), r, "Failed to send SIGKILL to processes of control group %s: %m", p);
1827 }
4ad49000
LP
1828}
1829
034c6ed7 1830static void service_enter_start(Service *s) {
4ad49000 1831 ExecCommand *c;
36c16a7c 1832 usec_t timeout;
034c6ed7
LP
1833 pid_t pid;
1834 int r;
1835
1836 assert(s);
1837
41efeaec
LP
1838 service_unwatch_control_pid(s);
1839 service_unwatch_main_pid(s);
80876c20 1840
8f53a7b8
LP
1841 /* We want to ensure that nobody leaks processes from
1842 * START_PRE here, so let's go on a killing spree, People
1843 * should not spawn long running processes from START_PRE. */
4ad49000 1844 service_kill_control_processes(s);
8f53a7b8 1845
867b3b7d
LP
1846 if (s->type == SERVICE_FORKING) {
1847 s->control_command_id = SERVICE_EXEC_START;
1848 c = s->control_command = s->exec_command[SERVICE_EXEC_START];
1849
1850 s->main_command = NULL;
1851 } else {
1852 s->control_command_id = _SERVICE_EXEC_COMMAND_INVALID;
1853 s->control_command = NULL;
1854
1855 c = s->main_command = s->exec_command[SERVICE_EXEC_START];
1856 }
34e9ba66 1857
96fb8242 1858 if (!c) {
47fffb35
LP
1859 if (s->type != SERVICE_ONESHOT) {
1860 /* There's no command line configured for the main command? Hmm, that is strange. This can only
1861 * happen if the configuration changes at runtime. In this case, let's enter a failure
1862 * state. */
1863 log_unit_error(UNIT(s), "There's no 'start' task anymore we could start: %m");
1864 r = -ENXIO;
1865 goto fail;
1866 }
1867
96fb8242
LP
1868 service_enter_start_post(s);
1869 return;
1870 }
1871
36c16a7c
LP
1872 if (IN_SET(s->type, SERVICE_SIMPLE, SERVICE_IDLE))
1873 /* For simple + idle this is the main process. We don't apply any timeout here, but
1874 * service_enter_running() will later apply the .runtime_max_usec timeout. */
1875 timeout = USEC_INFINITY;
1876 else
1877 timeout = s->timeout_start_usec;
1878
ecedd90f
LP
1879 r = service_spawn(s,
1880 c,
36c16a7c 1881 timeout,
1703fa41 1882 EXEC_PASS_FDS|EXEC_APPLY_SANDBOXING|EXEC_APPLY_CHROOT|EXEC_APPLY_TTY_STDIN|EXEC_SET_WATCHDOG,
ecedd90f
LP
1883 &pid);
1884 if (r < 0)
034c6ed7
LP
1885 goto fail;
1886
36c16a7c 1887 if (IN_SET(s->type, SERVICE_SIMPLE, SERVICE_IDLE)) {
034c6ed7
LP
1888 /* For simple services we immediately start
1889 * the START_POST binaries. */
1890
5925dd3c 1891 service_set_main_pid(s, pid);
034c6ed7
LP
1892 service_enter_start_post(s);
1893
1894 } else if (s->type == SERVICE_FORKING) {
1895
1896 /* For forking services we wait until the start
1897 * process exited. */
1898
e55224ca 1899 s->control_pid = pid;
80876c20
LP
1900 service_set_state(s, SERVICE_START);
1901
36c16a7c 1902 } else if (IN_SET(s->type, SERVICE_ONESHOT, SERVICE_DBUS, SERVICE_NOTIFY)) {
7d55e835 1903
34e9ba66 1904 /* For oneshot services we wait until the start
7d55e835
LP
1905 * process exited, too, but it is our main process. */
1906
05e343b7 1907 /* For D-Bus services we know the main pid right away,
8c47c732
LP
1908 * but wait for the bus name to appear on the
1909 * bus. Notify services are similar. */
05e343b7 1910
5925dd3c 1911 service_set_main_pid(s, pid);
80876c20 1912 service_set_state(s, SERVICE_START);
034c6ed7
LP
1913 } else
1914 assert_not_reached("Unknown service type");
1915
1916 return;
1917
1918fail:
f2341e0a 1919 log_unit_warning_errno(UNIT(s), r, "Failed to run 'start' task: %m");
c3fda31d 1920 service_enter_signal(s, SERVICE_STOP_SIGTERM, SERVICE_FAILURE_RESOURCES);
034c6ed7
LP
1921}
1922
1923static void service_enter_start_pre(Service *s) {
1924 int r;
1925
1926 assert(s);
1927
5e94833f
LP
1928 service_unwatch_control_pid(s);
1929
117dcc57
ZJS
1930 s->control_command = s->exec_command[SERVICE_EXEC_START_PRE];
1931 if (s->control_command) {
8f53a7b8
LP
1932 /* Before we start anything, let's clear up what might
1933 * be left from previous runs. */
4ad49000 1934 service_kill_control_processes(s);
8f53a7b8 1935
867b3b7d
LP
1936 s->control_command_id = SERVICE_EXEC_START_PRE;
1937
ecedd90f
LP
1938 r = service_spawn(s,
1939 s->control_command,
21b2ce39 1940 s->timeout_start_usec,
1703fa41 1941 EXEC_APPLY_SANDBOXING|EXEC_APPLY_CHROOT|EXEC_IS_CONTROL|EXEC_APPLY_TTY_STDIN,
ecedd90f
LP
1942 &s->control_pid);
1943 if (r < 0)
034c6ed7
LP
1944 goto fail;
1945
80876c20
LP
1946 service_set_state(s, SERVICE_START_PRE);
1947 } else
034c6ed7
LP
1948 service_enter_start(s);
1949
1950 return;
1951
1952fail:
f2341e0a 1953 log_unit_warning_errno(UNIT(s), r, "Failed to run 'start-pre' task: %m");
f42806df 1954 service_enter_dead(s, SERVICE_FAILURE_RESOURCES, true);
034c6ed7
LP
1955}
1956
1957static void service_enter_restart(Service *s) {
4afd3348 1958 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
034c6ed7 1959 int r;
398ef8ba 1960
034c6ed7
LP
1961 assert(s);
1962
a8bb2e65
LP
1963 if (UNIT(s)->job && UNIT(s)->job->type == JOB_STOP) {
1964 /* Don't restart things if we are going down anyway */
f2341e0a 1965 log_unit_info(UNIT(s), "Stop job pending for unit, delaying automatic restart.");
2edfa366 1966
36c16a7c 1967 r = service_arm_timer(s, usec_add(now(CLOCK_MONOTONIC), s->restart_usec));
a8bb2e65 1968 if (r < 0)
2edfa366 1969 goto fail;
feae8adb
DW
1970
1971 return;
2edfa366
LP
1972 }
1973
48bb5876
DW
1974 /* Any units that are bound to this service must also be
1975 * restarted. We use JOB_RESTART (instead of the more obvious
1976 * JOB_START) here so that those dependency jobs will be added
1977 * as well. */
4bd29fe5 1978 r = manager_add_job(UNIT(s)->manager, JOB_RESTART, UNIT(s), JOB_FAIL, &error, NULL);
48bb5876 1979 if (r < 0)
034c6ed7
LP
1980 goto fail;
1981
7a0019d3
LP
1982 /* Count the jobs we enqueue for restarting. This counter is maintained as long as the unit isn't fully
1983 * stopped, i.e. as long as it remains up or remains in auto-start states. The use can reset the counter
1984 * explicitly however via the usual "systemctl reset-failure" logic. */
1985 s->n_restarts ++;
1986 s->flush_n_restarts = false;
1987
1988 log_struct(LOG_INFO,
1989 "MESSAGE_ID=" SD_MESSAGE_UNIT_RESTART_SCHEDULED_STR,
1990 LOG_UNIT_ID(UNIT(s)),
f1c50bec 1991 LOG_UNIT_INVOCATION_ID(UNIT(s)),
7a0019d3
LP
1992 LOG_UNIT_MESSAGE(UNIT(s), "Scheduled restart job, restart counter is at %u.", s->n_restarts),
1993 "N_RESTARTS=%u", s->n_restarts,
1994 NULL);
1995
1996 /* Notify clients about changed restart counter */
1997 unit_add_to_dbus_queue(UNIT(s));
1998
a8bb2e65
LP
1999 /* Note that we stay in the SERVICE_AUTO_RESTART state here,
2000 * it will be canceled as part of the service_stop() call that
2001 * is executed as part of JOB_RESTART. */
2002
034c6ed7
LP
2003 return;
2004
2005fail:
f2341e0a 2006 log_unit_warning(UNIT(s), "Failed to schedule restart job: %s", bus_error_message(&error, -r));
f42806df 2007 service_enter_dead(s, SERVICE_FAILURE_RESOURCES, false);
034c6ed7
LP
2008}
2009
308d72dc 2010static void service_enter_reload_by_notify(Service *s) {
15d167f8
JW
2011 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
2012 int r;
2013
308d72dc
LP
2014 assert(s);
2015
36c16a7c 2016 service_arm_timer(s, usec_add(now(CLOCK_MONOTONIC), s->timeout_start_usec));
308d72dc 2017 service_set_state(s, SERVICE_RELOAD);
15d167f8
JW
2018
2019 /* service_enter_reload_by_notify is never called during a reload, thus no loops are possible. */
2020 r = manager_propagate_reload(UNIT(s)->manager, UNIT(s), JOB_FAIL, &error);
2021 if (r < 0)
2022 log_unit_warning(UNIT(s), "Failed to schedule propagation of reload: %s", bus_error_message(&error, -r));
308d72dc
LP
2023}
2024
034c6ed7
LP
2025static void service_enter_reload(Service *s) {
2026 int r;
2027
2028 assert(s);
2029
5e94833f 2030 service_unwatch_control_pid(s);
95c906ae 2031 s->reload_result = SERVICE_SUCCESS;
5e94833f 2032
117dcc57
ZJS
2033 s->control_command = s->exec_command[SERVICE_EXEC_RELOAD];
2034 if (s->control_command) {
867b3b7d
LP
2035 s->control_command_id = SERVICE_EXEC_RELOAD;
2036
ecedd90f
LP
2037 r = service_spawn(s,
2038 s->control_command,
21b2ce39 2039 s->timeout_start_usec,
1703fa41 2040 EXEC_APPLY_SANDBOXING|EXEC_APPLY_CHROOT|EXEC_IS_CONTROL,
ecedd90f
LP
2041 &s->control_pid);
2042 if (r < 0)
034c6ed7
LP
2043 goto fail;
2044
80876c20
LP
2045 service_set_state(s, SERVICE_RELOAD);
2046 } else
f42806df 2047 service_enter_running(s, SERVICE_SUCCESS);
034c6ed7
LP
2048
2049 return;
2050
2051fail:
f2341e0a 2052 log_unit_warning_errno(UNIT(s), r, "Failed to run 'reload' task: %m");
f42806df
LP
2053 s->reload_result = SERVICE_FAILURE_RESOURCES;
2054 service_enter_running(s, SERVICE_SUCCESS);
034c6ed7
LP
2055}
2056
f42806df 2057static void service_run_next_control(Service *s) {
36c16a7c 2058 usec_t timeout;
034c6ed7
LP
2059 int r;
2060
2061 assert(s);
2062 assert(s->control_command);
2063 assert(s->control_command->command_next);
2064
34e9ba66 2065 assert(s->control_command_id != SERVICE_EXEC_START);
034c6ed7 2066
34e9ba66 2067 s->control_command = s->control_command->command_next;
5e94833f
LP
2068 service_unwatch_control_pid(s);
2069
36c16a7c
LP
2070 if (IN_SET(s->state, SERVICE_START_PRE, SERVICE_START, SERVICE_START_POST, SERVICE_RUNNING, SERVICE_RELOAD))
2071 timeout = s->timeout_start_usec;
2072 else
2073 timeout = s->timeout_stop_usec;
2074
ecedd90f
LP
2075 r = service_spawn(s,
2076 s->control_command,
36c16a7c 2077 timeout,
1703fa41 2078 EXEC_APPLY_SANDBOXING|EXEC_APPLY_CHROOT|EXEC_IS_CONTROL|
136dc4c4
LP
2079 (IN_SET(s->control_command_id, SERVICE_EXEC_START_PRE, SERVICE_EXEC_STOP_POST) ? EXEC_APPLY_TTY_STDIN : 0)|
2080 (IN_SET(s->control_command_id, SERVICE_EXEC_STOP, SERVICE_EXEC_STOP_POST) ? EXEC_SETENV_RESULT : 0),
ecedd90f
LP
2081 &s->control_pid);
2082 if (r < 0)
034c6ed7
LP
2083 goto fail;
2084
2085 return;
2086
2087fail:
f2341e0a 2088 log_unit_warning_errno(UNIT(s), r, "Failed to run next control task: %m");
034c6ed7 2089
c3fda31d 2090 if (IN_SET(s->state, SERVICE_START_PRE, SERVICE_STOP))
f42806df 2091 service_enter_signal(s, SERVICE_STOP_SIGTERM, SERVICE_FAILURE_RESOURCES);
034c6ed7 2092 else if (s->state == SERVICE_STOP_POST)
f42806df 2093 service_enter_dead(s, SERVICE_FAILURE_RESOURCES, true);
e2f3b44c 2094 else if (s->state == SERVICE_RELOAD) {
f42806df
LP
2095 s->reload_result = SERVICE_FAILURE_RESOURCES;
2096 service_enter_running(s, SERVICE_SUCCESS);
e2f3b44c 2097 } else
f42806df 2098 service_enter_stop(s, SERVICE_FAILURE_RESOURCES);
5cb5a6ff
LP
2099}
2100
f42806df 2101static void service_run_next_main(Service *s) {
34e9ba66
LP
2102 pid_t pid;
2103 int r;
2104
2105 assert(s);
867b3b7d
LP
2106 assert(s->main_command);
2107 assert(s->main_command->command_next);
2108 assert(s->type == SERVICE_ONESHOT);
34e9ba66 2109
867b3b7d 2110 s->main_command = s->main_command->command_next;
34e9ba66
LP
2111 service_unwatch_main_pid(s);
2112
ecedd90f
LP
2113 r = service_spawn(s,
2114 s->main_command,
21b2ce39 2115 s->timeout_start_usec,
1703fa41 2116 EXEC_PASS_FDS|EXEC_APPLY_SANDBOXING|EXEC_APPLY_CHROOT|EXEC_APPLY_TTY_STDIN|EXEC_SET_WATCHDOG,
ecedd90f
LP
2117 &pid);
2118 if (r < 0)
34e9ba66
LP
2119 goto fail;
2120
2121 service_set_main_pid(s, pid);
2122
2123 return;
2124
2125fail:
f2341e0a 2126 log_unit_warning_errno(UNIT(s), r, "Failed to run next main task: %m");
f42806df 2127 service_enter_stop(s, SERVICE_FAILURE_RESOURCES);
34e9ba66
LP
2128}
2129
87f0e418
LP
2130static int service_start(Unit *u) {
2131 Service *s = SERVICE(u);
07299350 2132 int r;
5cb5a6ff
LP
2133
2134 assert(s);
2135
034c6ed7
LP
2136 /* We cannot fulfill this request right now, try again later
2137 * please! */
a00973af
LP
2138 if (IN_SET(s->state,
2139 SERVICE_STOP, SERVICE_STOP_SIGABRT, SERVICE_STOP_SIGTERM, SERVICE_STOP_SIGKILL, SERVICE_STOP_POST,
2140 SERVICE_FINAL_SIGTERM, SERVICE_FINAL_SIGKILL))
5cb5a6ff
LP
2141 return -EAGAIN;
2142
034c6ed7 2143 /* Already on it! */
a00973af 2144 if (IN_SET(s->state, SERVICE_START_PRE, SERVICE_START, SERVICE_START_POST))
034c6ed7
LP
2145 return 0;
2146
2e9d6c12 2147 /* A service that will be restarted must be stopped first to
7f2cddae 2148 * trigger BindsTo and/or OnFailure dependencies. If a user
2e9d6c12 2149 * does not want to wait for the holdoff time to elapse, the
d4943dc7
LP
2150 * service should be manually restarted, not started. We
2151 * simply return EAGAIN here, so that any start jobs stay
2152 * queued, and assume that the auto restart timer will
2153 * eventually trigger the restart. */
2154 if (s->state == SERVICE_AUTO_RESTART)
a8bb2e65 2155 return -EAGAIN;
2e9d6c12 2156
a00973af 2157 assert(IN_SET(s->state, SERVICE_DEAD, SERVICE_FAILED));
5cb5a6ff 2158
07299350
LP
2159 /* Make sure we don't enter a busy loop of some kind. */
2160 r = unit_start_limit_test(u);
2161 if (r < 0) {
2162 service_enter_dead(s, SERVICE_FAILURE_START_LIMIT_HIT, false);
2163 return r;
2164 }
2165
4b58153d
LP
2166 r = unit_acquire_invocation_id(u);
2167 if (r < 0)
2168 return r;
2169
f42806df
LP
2170 s->result = SERVICE_SUCCESS;
2171 s->reload_result = SERVICE_SUCCESS;
034c6ed7 2172 s->main_pid_known = false;
6dfa5494 2173 s->main_pid_alien = false;
47342320 2174 s->forbid_restart = false;
906c06f6 2175 s->reset_accounting = true;
034c6ed7 2176
a1e58e8e 2177 s->status_text = mfree(s->status_text);
8cfdb077
LP
2178 s->status_errno = 0;
2179
308d72dc
LP
2180 s->notify_state = NOTIFY_UNKNOWN;
2181
2787d83c
M
2182 s->watchdog_override_enable = false;
2183 s->watchdog_override_usec = 0;
2184
7a0019d3
LP
2185 /* This is not an automatic restart? Flush the restart counter then */
2186 if (s->flush_n_restarts) {
2187 s->n_restarts = 0;
2188 s->flush_n_restarts = false;
2189 }
2190
034c6ed7 2191 service_enter_start_pre(s);
82a2b6bb 2192 return 1;
5cb5a6ff
LP
2193}
2194
87f0e418
LP
2195static int service_stop(Unit *u) {
2196 Service *s = SERVICE(u);
5cb5a6ff
LP
2197
2198 assert(s);
2199
a509f0e6 2200 /* Don't create restart jobs from manual stops. */
47342320 2201 s->forbid_restart = true;
034c6ed7 2202
e537352b 2203 /* Already on it */
a00973af
LP
2204 if (IN_SET(s->state,
2205 SERVICE_STOP, SERVICE_STOP_SIGABRT, SERVICE_STOP_SIGTERM, SERVICE_STOP_SIGKILL, SERVICE_STOP_POST,
2206 SERVICE_FINAL_SIGTERM, SERVICE_FINAL_SIGKILL))
e537352b
LP
2207 return 0;
2208
f0c7b229 2209 /* A restart will be scheduled or is in progress. */
034c6ed7 2210 if (s->state == SERVICE_AUTO_RESTART) {
0c7f15b3 2211 service_set_state(s, SERVICE_DEAD);
034c6ed7
LP
2212 return 0;
2213 }
2214
3f6c78dc
LP
2215 /* If there's already something running we go directly into
2216 * kill mode. */
a00973af 2217 if (IN_SET(s->state, SERVICE_START_PRE, SERVICE_START, SERVICE_START_POST, SERVICE_RELOAD)) {
f42806df 2218 service_enter_signal(s, SERVICE_STOP_SIGTERM, SERVICE_SUCCESS);
3f6c78dc
LP
2219 return 0;
2220 }
5cb5a6ff 2221
a00973af 2222 assert(IN_SET(s->state, SERVICE_RUNNING, SERVICE_EXITED));
3a762661 2223
f42806df 2224 service_enter_stop(s, SERVICE_SUCCESS);
82a2b6bb 2225 return 1;
5cb5a6ff
LP
2226}
2227
87f0e418
LP
2228static int service_reload(Unit *u) {
2229 Service *s = SERVICE(u);
034c6ed7
LP
2230
2231 assert(s);
2232
3742095b 2233 assert(IN_SET(s->state, SERVICE_RUNNING, SERVICE_EXITED));
034c6ed7
LP
2234
2235 service_enter_reload(s);
2d018ae2 2236 return 1;
5cb5a6ff
LP
2237}
2238
44a6b1b6 2239_pure_ static bool service_can_reload(Unit *u) {
87f0e418 2240 Service *s = SERVICE(u);
034c6ed7
LP
2241
2242 assert(s);
2243
2244 return !!s->exec_command[SERVICE_EXEC_RELOAD];
2245}
2246
e266c068
MS
2247static unsigned service_exec_command_index(Unit *u, ServiceExecCommand id, ExecCommand *current) {
2248 Service *s = SERVICE(u);
2249 unsigned idx = 0;
2250 ExecCommand *first, *c;
2251
2252 assert(s);
2253
2254 first = s->exec_command[id];
2255
2256 /* Figure out where we are in the list by walking back to the beginning */
2257 for (c = current; c != first; c = c->command_prev)
2258 idx++;
2259
2260 return idx;
2261}
2262
2263static int service_serialize_exec_command(Unit *u, FILE *f, ExecCommand *command) {
2264 Service *s = SERVICE(u);
2265 ServiceExecCommand id;
2266 unsigned idx;
2267 const char *type;
2268 char **arg;
e266c068
MS
2269 _cleanup_free_ char *args = NULL, *p = NULL;
2270 size_t allocated = 0, length = 0;
2271
2272 assert(s);
2273 assert(f);
2274
2275 if (!command)
2276 return 0;
2277
2278 if (command == s->control_command) {
2279 type = "control";
2280 id = s->control_command_id;
2281 } else {
2282 type = "main";
2283 id = SERVICE_EXEC_START;
2284 }
2285
2286 idx = service_exec_command_index(u, id, command);
2287
2288 STRV_FOREACH(arg, command->argv) {
2289 size_t n;
2290 _cleanup_free_ char *e = NULL;
2291
2292 e = xescape(*arg, WHITESPACE);
2293 if (!e)
2294 return -ENOMEM;
2295
2296 n = strlen(e);
2297 if (!GREEDY_REALLOC(args, allocated, length + 1 + n + 1))
2298 return -ENOMEM;
2299
2300 if (length > 0)
2301 args[length++] = ' ';
2302
2303 memcpy(args + length, e, n);
2304 length += n;
2305 }
2306
2307 if (!GREEDY_REALLOC(args, allocated, length + 1))
2308 return -ENOMEM;
2309 args[length++] = 0;
2310
2311 p = xescape(command->path, WHITESPACE);
2312 if (!p)
2313 return -ENOMEM;
2314
2315 fprintf(f, "%s-command=%s %u %s %s\n", type, service_exec_command_to_string(id), idx, p, args);
2316
2317 return 0;
2318}
2319
a16e1123
LP
2320static int service_serialize(Unit *u, FILE *f, FDSet *fds) {
2321 Service *s = SERVICE(u);
2339fc93 2322 ServiceFDStore *fs;
a34ceba6 2323 int r;
a16e1123
LP
2324
2325 assert(u);
2326 assert(f);
2327 assert(fds);
2328
2329 unit_serialize_item(u, f, "state", service_state_to_string(s->state));
f42806df
LP
2330 unit_serialize_item(u, f, "result", service_result_to_string(s->result));
2331 unit_serialize_item(u, f, "reload-result", service_result_to_string(s->reload_result));
a16e1123
LP
2332
2333 if (s->control_pid > 0)
f06db334 2334 unit_serialize_item_format(u, f, "control-pid", PID_FMT, s->control_pid);
a16e1123 2335
5925dd3c 2336 if (s->main_pid_known && s->main_pid > 0)
ccd06097 2337 unit_serialize_item_format(u, f, "main-pid", PID_FMT, s->main_pid);
a16e1123
LP
2338
2339 unit_serialize_item(u, f, "main-pid-known", yes_no(s->main_pid_known));
de1d4f9b 2340 unit_serialize_item(u, f, "bus-name-good", yes_no(s->bus_name_good));
d8ccf5fd 2341 unit_serialize_item(u, f, "bus-name-owner", s->bus_name_owner);
a16e1123 2342
7a0019d3 2343 unit_serialize_item_format(u, f, "n-restarts", "%u", s->n_restarts);
7f923884 2344 unit_serialize_item(u, f, "flush-n-restarts", yes_no(s->flush_n_restarts));
7a0019d3 2345
a34ceba6
LP
2346 r = unit_serialize_item_escaped(u, f, "status-text", s->status_text);
2347 if (r < 0)
2348 return r;
3a2776bc 2349
e266c068
MS
2350 service_serialize_exec_command(u, f, s->control_command);
2351 service_serialize_exec_command(u, f, s->main_command);
a16e1123 2352
a34ceba6
LP
2353 r = unit_serialize_item_fd(u, f, fds, "stdin-fd", s->stdin_fd);
2354 if (r < 0)
2355 return r;
2356 r = unit_serialize_item_fd(u, f, fds, "stdout-fd", s->stdout_fd);
2357 if (r < 0)
2358 return r;
2359 r = unit_serialize_item_fd(u, f, fds, "stderr-fd", s->stderr_fd);
2360 if (r < 0)
2361 return r;
e44da745 2362
9dfb64f8
ZJS
2363 if (UNIT_ISSET(s->accept_socket)) {
2364 r = unit_serialize_item(u, f, "accept-socket", UNIT_DEREF(s->accept_socket)->id);
2365 if (r < 0)
2366 return r;
2367 }
2368
a34ceba6 2369 r = unit_serialize_item_fd(u, f, fds, "socket-fd", s->socket_fd);
a34ceba6
LP
2370 if (r < 0)
2371 return r;
e44da745 2372
2339fc93 2373 LIST_FOREACH(fd_store, fs, s->fd_store) {
8dd4c05b 2374 _cleanup_free_ char *c = NULL;
2339fc93
LP
2375 int copy;
2376
2377 copy = fdset_put_dup(fds, fs->fd);
2378 if (copy < 0)
2379 return copy;
2380
8dd4c05b
LP
2381 c = cescape(fs->fdname);
2382
2383 unit_serialize_item_format(u, f, "fd-store-fd", "%i %s", copy, strempty(c));
2339fc93
LP
2384 }
2385
ecdbca40 2386 if (s->main_exec_status.pid > 0) {
f06db334
LP
2387 unit_serialize_item_format(u, f, "main-exec-status-pid", PID_FMT, s->main_exec_status.pid);
2388 dual_timestamp_serialize(f, "main-exec-status-start", &s->main_exec_status.start_timestamp);
2389 dual_timestamp_serialize(f, "main-exec-status-exit", &s->main_exec_status.exit_timestamp);
ecdbca40 2390
799fd0fd 2391 if (dual_timestamp_is_set(&s->main_exec_status.exit_timestamp)) {
f06db334
LP
2392 unit_serialize_item_format(u, f, "main-exec-status-code", "%i", s->main_exec_status.code);
2393 unit_serialize_item_format(u, f, "main-exec-status-status", "%i", s->main_exec_status.status);
ecdbca40
LP
2394 }
2395 }
f06db334 2396
36b693a6 2397 dual_timestamp_serialize(f, "watchdog-timestamp", &s->watchdog_timestamp);
ecdbca40 2398
a34ceba6 2399 unit_serialize_item(u, f, "forbid-restart", yes_no(s->forbid_restart));
6aca9a58 2400
2787d83c
M
2401 if (s->watchdog_override_enable)
2402 unit_serialize_item_format(u, f, "watchdog-override-usec", USEC_FMT, s->watchdog_override_usec);
2403
a16e1123
LP
2404 return 0;
2405}
2406
e266c068
MS
2407static int service_deserialize_exec_command(Unit *u, const char *key, const char *value) {
2408 Service *s = SERVICE(u);
2409 int r;
2410 unsigned idx = 0, i;
2411 bool control, found = false;
2412 ServiceExecCommand id = _SERVICE_EXEC_COMMAND_INVALID;
2413 ExecCommand *command = NULL;
6eeec374 2414 _cleanup_free_ char *path = NULL;
e266c068
MS
2415 _cleanup_strv_free_ char **argv = NULL;
2416
2417 enum ExecCommandState {
2418 STATE_EXEC_COMMAND_TYPE,
2419 STATE_EXEC_COMMAND_INDEX,
2420 STATE_EXEC_COMMAND_PATH,
2421 STATE_EXEC_COMMAND_ARGS,
2422 _STATE_EXEC_COMMAND_MAX,
2423 _STATE_EXEC_COMMAND_INVALID = -1,
2424 } state;
2425
2426 assert(s);
2427 assert(key);
2428 assert(value);
2429
2430 control = streq(key, "control-command");
2431
2432 state = STATE_EXEC_COMMAND_TYPE;
2433
2434 for (;;) {
2435 _cleanup_free_ char *arg = NULL;
2436
2437 r = extract_first_word(&value, &arg, NULL, EXTRACT_CUNESCAPE);
2438 if (r == 0)
2439 break;
2440 else if (r < 0)
2441 return r;
2442
2443 switch (state) {
2444 case STATE_EXEC_COMMAND_TYPE:
2445 id = service_exec_command_from_string(arg);
2446 if (id < 0)
2447 return -EINVAL;
2448
2449 state = STATE_EXEC_COMMAND_INDEX;
2450 break;
2451 case STATE_EXEC_COMMAND_INDEX:
2452 r = safe_atou(arg, &idx);
2453 if (r < 0)
2454 return -EINVAL;
2455
2456 state = STATE_EXEC_COMMAND_PATH;
2457 break;
2458 case STATE_EXEC_COMMAND_PATH:
2459 path = arg;
2460 arg = NULL;
2461 state = STATE_EXEC_COMMAND_ARGS;
2462
2463 if (!path_is_absolute(path))
2464 return -EINVAL;
2465 break;
2466 case STATE_EXEC_COMMAND_ARGS:
2467 r = strv_extend(&argv, arg);
2468 if (r < 0)
2469 return -ENOMEM;
2470 break;
2471 default:
2472 assert_not_reached("Unknown error at deserialization of exec command");
2473 break;
2474 }
2475 }
2476
2477 if (state != STATE_EXEC_COMMAND_ARGS)
2478 return -EINVAL;
2479
2480 /* Let's check whether exec command on given offset matches data that we just deserialized */
2481 for (command = s->exec_command[id], i = 0; command; command = command->command_next, i++) {
2482 if (i != idx)
2483 continue;
2484
2485 found = strv_equal(argv, command->argv) && streq(command->path, path);
2486 break;
2487 }
2488
2489 if (!found) {
2490 /* Command at the index we serialized is different, let's look for command that exactly
2491 * matches but is on different index. If there is no such command we will not resume execution. */
2492 for (command = s->exec_command[id]; command; command = command->command_next)
2493 if (strv_equal(command->argv, argv) && streq(command->path, path))
2494 break;
2495 }
2496
2497 if (command && control)
2498 s->control_command = command;
2499 else if (command)
2500 s->main_command = command;
2501 else
2502 log_unit_warning(u, "Current command vanished from the unit file, execution of the command list won't be resumed.");
2503
2504 return 0;
2505}
2506
a16e1123
LP
2507static int service_deserialize_item(Unit *u, const char *key, const char *value, FDSet *fds) {
2508 Service *s = SERVICE(u);
2339fc93 2509 int r;
a16e1123
LP
2510
2511 assert(u);
2512 assert(key);
2513 assert(value);
2514 assert(fds);
2515
2516 if (streq(key, "state")) {
2517 ServiceState state;
2518
117dcc57
ZJS
2519 state = service_state_from_string(value);
2520 if (state < 0)
f2341e0a 2521 log_unit_debug(u, "Failed to parse state value: %s", value);
a16e1123
LP
2522 else
2523 s->deserialized_state = state;
f42806df
LP
2524 } else if (streq(key, "result")) {
2525 ServiceResult f;
2526
2527 f = service_result_from_string(value);
2528 if (f < 0)
f2341e0a 2529 log_unit_debug(u, "Failed to parse result value: %s", value);
f42806df
LP
2530 else if (f != SERVICE_SUCCESS)
2531 s->result = f;
2532
2533 } else if (streq(key, "reload-result")) {
2534 ServiceResult f;
2535
2536 f = service_result_from_string(value);
2537 if (f < 0)
f2341e0a 2538 log_unit_debug(u, "Failed to parse reload result value: %s", value);
f42806df
LP
2539 else if (f != SERVICE_SUCCESS)
2540 s->reload_result = f;
a16e1123 2541
a16e1123 2542 } else if (streq(key, "control-pid")) {
5925dd3c 2543 pid_t pid;
a16e1123 2544
e364ad06 2545 if (parse_pid(value, &pid) < 0)
f2341e0a 2546 log_unit_debug(u, "Failed to parse control-pid value: %s", value);
a16e1123 2547 else
e55224ca 2548 s->control_pid = pid;
a16e1123 2549 } else if (streq(key, "main-pid")) {
5925dd3c 2550 pid_t pid;
a16e1123 2551
e364ad06 2552 if (parse_pid(value, &pid) < 0)
f2341e0a 2553 log_unit_debug(u, "Failed to parse main-pid value: %s", value);
7400b9d2
LP
2554 else {
2555 service_set_main_pid(s, pid);
2556 unit_watch_pid(UNIT(s), pid);
2557 }
a16e1123
LP
2558 } else if (streq(key, "main-pid-known")) {
2559 int b;
2560
117dcc57
ZJS
2561 b = parse_boolean(value);
2562 if (b < 0)
f2341e0a 2563 log_unit_debug(u, "Failed to parse main-pid-known value: %s", value);
a16e1123
LP
2564 else
2565 s->main_pid_known = b;
de1d4f9b
WF
2566 } else if (streq(key, "bus-name-good")) {
2567 int b;
2568
2569 b = parse_boolean(value);
2570 if (b < 0)
2571 log_unit_debug(u, "Failed to parse bus-name-good value: %s", value);
2572 else
2573 s->bus_name_good = b;
d8ccf5fd
DM
2574 } else if (streq(key, "bus-name-owner")) {
2575 r = free_and_strdup(&s->bus_name_owner, value);
2576 if (r < 0)
2577 log_unit_error_errno(u, r, "Unable to deserialize current bus owner %s: %m", value);
3a2776bc
LP
2578 } else if (streq(key, "status-text")) {
2579 char *t;
2580
f2341e0a
LP
2581 r = cunescape(value, 0, &t);
2582 if (r < 0)
2583 log_unit_debug_errno(u, r, "Failed to unescape status text: %s", value);
117dcc57 2584 else {
3a2776bc
LP
2585 free(s->status_text);
2586 s->status_text = t;
2587 }
2588
9dfb64f8
ZJS
2589 } else if (streq(key, "accept-socket")) {
2590 Unit *socket;
2591
2592 r = manager_load_unit(u->manager, value, NULL, NULL, &socket);
2593 if (r < 0)
2594 log_unit_debug_errno(u, r, "Failed to load accept-socket unit: %s", value);
2595 else {
2596 unit_ref_set(&s->accept_socket, socket);
2597 SOCKET(socket)->n_connections++;
2598 }
2599
a16e1123
LP
2600 } else if (streq(key, "socket-fd")) {
2601 int fd;
2602
2603 if (safe_atoi(value, &fd) < 0 || fd < 0 || !fdset_contains(fds, fd))
f2341e0a 2604 log_unit_debug(u, "Failed to parse socket-fd value: %s", value);
a16e1123 2605 else {
574634bc 2606 asynchronous_close(s->socket_fd);
a16e1123
LP
2607 s->socket_fd = fdset_remove(fds, fd);
2608 }
2339fc93 2609 } else if (streq(key, "fd-store-fd")) {
8dd4c05b
LP
2610 const char *fdv;
2611 size_t pf;
2339fc93
LP
2612 int fd;
2613
8dd4c05b
LP
2614 pf = strcspn(value, WHITESPACE);
2615 fdv = strndupa(value, pf);
2616
2617 if (safe_atoi(fdv, &fd) < 0 || fd < 0 || !fdset_contains(fds, fd))
f2341e0a 2618 log_unit_debug(u, "Failed to parse fd-store-fd value: %s", value);
2339fc93 2619 else {
8dd4c05b
LP
2620 _cleanup_free_ char *t = NULL;
2621 const char *fdn;
2622
2623 fdn = value + pf;
2624 fdn += strspn(fdn, WHITESPACE);
2625 (void) cunescape(fdn, 0, &t);
2626
2627 r = service_add_fd_store(s, fd, t);
2339fc93 2628 if (r < 0)
f2341e0a 2629 log_unit_error_errno(u, r, "Failed to add fd to store: %m");
9021ff17 2630 else
2339fc93
LP
2631 fdset_remove(fds, fd);
2632 }
2633
ecdbca40
LP
2634 } else if (streq(key, "main-exec-status-pid")) {
2635 pid_t pid;
2636
e364ad06 2637 if (parse_pid(value, &pid) < 0)
f2341e0a 2638 log_unit_debug(u, "Failed to parse main-exec-status-pid value: %s", value);
ecdbca40
LP
2639 else
2640 s->main_exec_status.pid = pid;
2641 } else if (streq(key, "main-exec-status-code")) {
2642 int i;
2643
e364ad06 2644 if (safe_atoi(value, &i) < 0)
f2341e0a 2645 log_unit_debug(u, "Failed to parse main-exec-status-code value: %s", value);
ecdbca40
LP
2646 else
2647 s->main_exec_status.code = i;
2648 } else if (streq(key, "main-exec-status-status")) {
2649 int i;
2650
e364ad06 2651 if (safe_atoi(value, &i) < 0)
f2341e0a 2652 log_unit_debug(u, "Failed to parse main-exec-status-status value: %s", value);
ecdbca40
LP
2653 else
2654 s->main_exec_status.status = i;
799fd0fd
LP
2655 } else if (streq(key, "main-exec-status-start"))
2656 dual_timestamp_deserialize(value, &s->main_exec_status.start_timestamp);
2657 else if (streq(key, "main-exec-status-exit"))
2658 dual_timestamp_deserialize(value, &s->main_exec_status.exit_timestamp);
a6927d7f
MO
2659 else if (streq(key, "watchdog-timestamp"))
2660 dual_timestamp_deserialize(value, &s->watchdog_timestamp);
613b411c 2661 else if (streq(key, "forbid-restart")) {
6aca9a58
SE
2662 int b;
2663
2664 b = parse_boolean(value);
2665 if (b < 0)
f2341e0a 2666 log_unit_debug(u, "Failed to parse forbid-restart value: %s", value);
6aca9a58
SE
2667 else
2668 s->forbid_restart = b;
a34ceba6
LP
2669 } else if (streq(key, "stdin-fd")) {
2670 int fd;
2671
2672 if (safe_atoi(value, &fd) < 0 || fd < 0 || !fdset_contains(fds, fd))
2673 log_unit_debug(u, "Failed to parse stdin-fd value: %s", value);
2674 else {
2675 asynchronous_close(s->stdin_fd);
2676 s->stdin_fd = fdset_remove(fds, fd);
1e22b5cd 2677 s->exec_context.stdio_as_fds = true;
a34ceba6
LP
2678 }
2679 } else if (streq(key, "stdout-fd")) {
2680 int fd;
2681
2682 if (safe_atoi(value, &fd) < 0 || fd < 0 || !fdset_contains(fds, fd))
2683 log_unit_debug(u, "Failed to parse stdout-fd value: %s", value);
2684 else {
2685 asynchronous_close(s->stdout_fd);
2686 s->stdout_fd = fdset_remove(fds, fd);
1e22b5cd 2687 s->exec_context.stdio_as_fds = true;
a34ceba6
LP
2688 }
2689 } else if (streq(key, "stderr-fd")) {
2690 int fd;
2691
2692 if (safe_atoi(value, &fd) < 0 || fd < 0 || !fdset_contains(fds, fd))
2693 log_unit_debug(u, "Failed to parse stderr-fd value: %s", value);
2694 else {
2695 asynchronous_close(s->stderr_fd);
2696 s->stderr_fd = fdset_remove(fds, fd);
1e22b5cd 2697 s->exec_context.stdio_as_fds = true;
a34ceba6 2698 }
2787d83c
M
2699 } else if (streq(key, "watchdog-override-usec")) {
2700 usec_t watchdog_override_usec;
2701 if (timestamp_deserialize(value, &watchdog_override_usec) < 0)
2702 log_unit_debug(u, "Failed to parse watchdog_override_usec value: %s", value);
2703 else {
2704 s->watchdog_override_enable = true;
2705 s->watchdog_override_usec = watchdog_override_usec;
2706 }
e266c068
MS
2707 } else if (STR_IN_SET(key, "main-command", "control-command")) {
2708 r = service_deserialize_exec_command(u, key, value);
2709 if (r < 0)
2710 log_unit_debug_errno(u, r, "Failed to parse serialized command \"%s\": %m", value);
7a0019d3
LP
2711
2712 } else if (streq(key, "n-restarts")) {
2713 r = safe_atou(value, &s->n_restarts);
2714 if (r < 0)
2715 log_unit_debug_errno(u, r, "Failed to parse serialized restart counter '%s': %m", value);
2716
2717 } else if (streq(key, "flush-n-restarts")) {
2718 r = parse_boolean(value);
2719 if (r < 0)
2720 log_unit_debug_errno(u, r, "Failed to parse serialized flush restart counter setting '%s': %m", value);
2721 else
2722 s->flush_n_restarts = r;
c17ec25e 2723 } else
f2341e0a 2724 log_unit_debug(u, "Unknown serialization key: %s", key);
a16e1123
LP
2725
2726 return 0;
2727}
2728
44a6b1b6 2729_pure_ static UnitActiveState service_active_state(Unit *u) {
e056b01d
LP
2730 const UnitActiveState *table;
2731
87f0e418 2732 assert(u);
5cb5a6ff 2733
e056b01d
LP
2734 table = SERVICE(u)->type == SERVICE_IDLE ? state_translation_table_idle : state_translation_table;
2735
2736 return table[SERVICE(u)->state];
034c6ed7
LP
2737}
2738
10a94420
LP
2739static const char *service_sub_state_to_string(Unit *u) {
2740 assert(u);
2741
2742 return service_state_to_string(SERVICE(u)->state);
2743}
2744
701cc384
LP
2745static bool service_check_gc(Unit *u) {
2746 Service *s = SERVICE(u);
2747
2748 assert(s);
2749
6d55002a
LP
2750 /* Never clean up services that still have a process around,
2751 * even if the service is formally dead. */
2752 if (cgroup_good(s) > 0 ||
2753 main_pid_good(s) > 0 ||
2754 control_pid_good(s) > 0)
2755 return true;
2756
6d55002a
LP
2757 return false;
2758}
2759
3a111838
MS
2760static int service_retry_pid_file(Service *s) {
2761 int r;
2762
2763 assert(s->pid_file);
3742095b 2764 assert(IN_SET(s->state, SERVICE_START, SERVICE_START_POST));
3a111838
MS
2765
2766 r = service_load_pid_file(s, false);
2767 if (r < 0)
2768 return r;
2769
2770 service_unwatch_pid_file(s);
2771
f42806df 2772 service_enter_running(s, SERVICE_SUCCESS);
3a111838
MS
2773 return 0;
2774}
2775
2776static int service_watch_pid_file(Service *s) {
2777 int r;
2778
f2341e0a 2779 log_unit_debug(UNIT(s), "Setting watch for PID file %s", s->pid_file_pathspec->path);
8bb2d17d 2780
718db961 2781 r = path_spec_watch(s->pid_file_pathspec, service_dispatch_io);
3a111838
MS
2782 if (r < 0)
2783 goto fail;
2784
2785 /* the pidfile might have appeared just before we set the watch */
f2341e0a 2786 log_unit_debug(UNIT(s), "Trying to read PID file %s in case it changed", s->pid_file_pathspec->path);
3a111838
MS
2787 service_retry_pid_file(s);
2788
2789 return 0;
2790fail:
f2341e0a 2791 log_unit_error_errno(UNIT(s), r, "Failed to set a watch for PID file %s: %m", s->pid_file_pathspec->path);
3a111838
MS
2792 service_unwatch_pid_file(s);
2793 return r;
2794}
2795
2796static int service_demand_pid_file(Service *s) {
2797 PathSpec *ps;
2798
2799 assert(s->pid_file);
2800 assert(!s->pid_file_pathspec);
2801
2802 ps = new0(PathSpec, 1);
2803 if (!ps)
2804 return -ENOMEM;
2805
718db961 2806 ps->unit = UNIT(s);
3a111838
MS
2807 ps->path = strdup(s->pid_file);
2808 if (!ps->path) {
2809 free(ps);
2810 return -ENOMEM;
2811 }
2812
2813 path_kill_slashes(ps->path);
2814
2815 /* PATH_CHANGED would not be enough. There are daemons (sendmail) that
2816 * keep their PID file open all the time. */
2817 ps->type = PATH_MODIFIED;
2818 ps->inotify_fd = -1;
2819
2820 s->pid_file_pathspec = ps;
2821
2822 return service_watch_pid_file(s);
2823}
2824
718db961 2825static int service_dispatch_io(sd_event_source *source, int fd, uint32_t events, void *userdata) {
e14c2802
LP
2826 PathSpec *p = userdata;
2827 Service *s;
2828
2829 assert(p);
2830
2831 s = SERVICE(p->unit);
3a111838
MS
2832
2833 assert(s);
2834 assert(fd >= 0);
3742095b 2835 assert(IN_SET(s->state, SERVICE_START, SERVICE_START_POST));
3a111838 2836 assert(s->pid_file_pathspec);
57020a3a 2837 assert(path_spec_owns_inotify_fd(s->pid_file_pathspec, fd));
3a111838 2838
f2341e0a 2839 log_unit_debug(UNIT(s), "inotify event");
3a111838 2840
e14c2802 2841 if (path_spec_fd_event(p, events) < 0)
3a111838
MS
2842 goto fail;
2843
2844 if (service_retry_pid_file(s) == 0)
718db961 2845 return 0;
3a111838
MS
2846
2847 if (service_watch_pid_file(s) < 0)
2848 goto fail;
2849
718db961
LP
2850 return 0;
2851
3a111838
MS
2852fail:
2853 service_unwatch_pid_file(s);
f42806df 2854 service_enter_signal(s, SERVICE_STOP_SIGTERM, SERVICE_FAILURE_RESOURCES);
718db961 2855 return 0;
3a111838
MS
2856}
2857
a911bb9a
LP
2858static void service_notify_cgroup_empty_event(Unit *u) {
2859 Service *s = SERVICE(u);
2860
2861 assert(u);
2862
f2341e0a 2863 log_unit_debug(u, "cgroup is empty");
a911bb9a
LP
2864
2865 switch (s->state) {
2866
2867 /* Waiting for SIGCHLD is usually more interesting,
2868 * because it includes return codes/signals. Which is
2869 * why we ignore the cgroup events for most cases,
2870 * except when we don't know pid which to expect the
2871 * SIGCHLD for. */
2872
2873 case SERVICE_START:
3c751b1b
LP
2874 if (s->type == SERVICE_NOTIFY &&
2875 main_pid_good(s) == 0 &&
2876 control_pid_good(s) == 0) {
3d474ef7 2877 /* No chance of getting a ready notification anymore */
c3fda31d 2878 service_enter_stop_post(s, SERVICE_FAILURE_PROTOCOL);
71e529fc
JW
2879 break;
2880 }
2881
2882 /* Fall through */
2883
2884 case SERVICE_START_POST:
3c751b1b
LP
2885 if (s->pid_file_pathspec &&
2886 main_pid_good(s) == 0 &&
2887 control_pid_good(s) == 0) {
2888
3d474ef7 2889 /* Give up hoping for the daemon to write its PID file */
f2341e0a 2890 log_unit_warning(u, "Daemon never wrote its PID file. Failing.");
8bb2d17d 2891
a911bb9a
LP
2892 service_unwatch_pid_file(s);
2893 if (s->state == SERVICE_START)
c3fda31d 2894 service_enter_stop_post(s, SERVICE_FAILURE_PROTOCOL);
a911bb9a 2895 else
c35755fb 2896 service_enter_stop(s, SERVICE_FAILURE_PROTOCOL);
a911bb9a
LP
2897 }
2898 break;
2899
2900 case SERVICE_RUNNING:
2901 /* service_enter_running() will figure out what to do */
2902 service_enter_running(s, SERVICE_SUCCESS);
2903 break;
2904
db2cb23b 2905 case SERVICE_STOP_SIGABRT:
a911bb9a
LP
2906 case SERVICE_STOP_SIGTERM:
2907 case SERVICE_STOP_SIGKILL:
2908
b13ddbbc 2909 if (main_pid_good(s) <= 0 && control_pid_good(s) <= 0)
a911bb9a
LP
2910 service_enter_stop_post(s, SERVICE_SUCCESS);
2911
2912 break;
2913
2914 case SERVICE_STOP_POST:
2915 case SERVICE_FINAL_SIGTERM:
2916 case SERVICE_FINAL_SIGKILL:
b13ddbbc 2917 if (main_pid_good(s) <= 0 && control_pid_good(s) <= 0)
a911bb9a
LP
2918 service_enter_dead(s, SERVICE_SUCCESS, true);
2919
2920 break;
2921
2922 default:
2923 ;
2924 }
2925}
2926
87f0e418
LP
2927static void service_sigchld_event(Unit *u, pid_t pid, int code, int status) {
2928 Service *s = SERVICE(u);
f42806df 2929 ServiceResult f;
5cb5a6ff
LP
2930
2931 assert(s);
034c6ed7
LP
2932 assert(pid >= 0);
2933
1f0958f6 2934 if (is_clean_exit(code, status, s->type == SERVICE_ONESHOT ? EXIT_CLEAN_COMMAND : EXIT_CLEAN_DAEMON, &s->success_status))
f42806df
LP
2935 f = SERVICE_SUCCESS;
2936 else if (code == CLD_EXITED)
2937 f = SERVICE_FAILURE_EXIT_CODE;
2938 else if (code == CLD_KILLED)
2939 f = SERVICE_FAILURE_SIGNAL;
2940 else if (code == CLD_DUMPED)
2941 f = SERVICE_FAILURE_CORE_DUMP;
d06dacd0 2942 else
cfc4eb4c 2943 assert_not_reached("Unknown code");
034c6ed7
LP
2944
2945 if (s->main_pid == pid) {
db01f8b3
MS
2946 /* Forking services may occasionally move to a new PID.
2947 * As long as they update the PID file before exiting the old
2948 * PID, they're fine. */
5375410b 2949 if (service_load_pid_file(s, false) == 0)
db01f8b3 2950 return;
034c6ed7 2951
034c6ed7 2952 s->main_pid = 0;
6ea832a2 2953 exec_status_exit(&s->main_exec_status, &s->exec_context, pid, code, status);
034c6ed7 2954
867b3b7d 2955 if (s->main_command) {
fbeefb45
LP
2956 /* If this is not a forking service than the
2957 * main process got started and hence we copy
2958 * the exit status so that it is recorded both
2959 * as main and as control process exit
2960 * status */
2961
867b3b7d 2962 s->main_command->exec_status = s->main_exec_status;
b708e7ce 2963
3ed0cd26 2964 if (s->main_command->flags & EXEC_COMMAND_IGNORE_FAILURE)
f42806df 2965 f = SERVICE_SUCCESS;
fbeefb45
LP
2966 } else if (s->exec_command[SERVICE_EXEC_START]) {
2967
2968 /* If this is a forked process, then we should
2969 * ignore the return value if this was
2970 * configured for the starter process */
2971
3ed0cd26 2972 if (s->exec_command[SERVICE_EXEC_START]->flags & EXEC_COMMAND_IGNORE_FAILURE)
fbeefb45 2973 f = SERVICE_SUCCESS;
034c6ed7
LP
2974 }
2975
5368222d
LP
2976 /* When this is a successful exit, let's log about the exit code on DEBUG level. If this is a failure
2977 * and the process exited on its own via exit(), then let's make this a NOTICE, under the assumption
2978 * that the service already logged the reason at a higher log level on its own. However, if the service
2979 * died due to a signal, then it most likely didn't say anything about any reason, hence let's raise
2980 * our log level to WARNING then. */
2981
2982 log_struct(f == SERVICE_SUCCESS ? LOG_DEBUG :
2983 (code == CLD_EXITED ? LOG_NOTICE : LOG_WARNING),
f2341e0a
LP
2984 LOG_UNIT_MESSAGE(u, "Main process exited, code=%s, status=%i/%s",
2985 sigchld_code_to_string(code), status,
e2cc6eca
LP
2986 strna(code == CLD_EXITED
2987 ? exit_status_to_string(status, EXIT_STATUS_FULL)
2988 : signal_to_string(status))),
f2341e0a
LP
2989 "EXIT_CODE=%s", sigchld_code_to_string(code),
2990 "EXIT_STATUS=%i", status,
ba360bb0 2991 LOG_UNIT_ID(u),
f1c50bec 2992 LOG_UNIT_INVOCATION_ID(u),
f2341e0a 2993 NULL);
f42806df 2994
a0fef983 2995 if (s->result == SERVICE_SUCCESS)
f42806df 2996 s->result = f;
034c6ed7 2997
867b3b7d
LP
2998 if (s->main_command &&
2999 s->main_command->command_next &&
b58aeb70 3000 s->type == SERVICE_ONESHOT &&
f42806df 3001 f == SERVICE_SUCCESS) {
034c6ed7 3002
34e9ba66
LP
3003 /* There is another command to *
3004 * execute, so let's do that. */
034c6ed7 3005
f2341e0a 3006 log_unit_debug(u, "Running next main command for state %s.", service_state_to_string(s->state));
f42806df 3007 service_run_next_main(s);
034c6ed7 3008
34e9ba66
LP
3009 } else {
3010
3011 /* The service exited, so the service is officially
3012 * gone. */
867b3b7d 3013 s->main_command = NULL;
34e9ba66
LP
3014
3015 switch (s->state) {
3016
3017 case SERVICE_START_POST:
3018 case SERVICE_RELOAD:
3019 case SERVICE_STOP:
3020 /* Need to wait until the operation is
3021 * done */
c4653a4d 3022 break;
7d55e835 3023
34e9ba66
LP
3024 case SERVICE_START:
3025 if (s->type == SERVICE_ONESHOT) {
3026 /* This was our main goal, so let's go on */
f42806df 3027 if (f == SERVICE_SUCCESS)
34e9ba66
LP
3028 service_enter_start_post(s);
3029 else
c3fda31d 3030 service_enter_signal(s, SERVICE_STOP_SIGTERM, f);
34e9ba66 3031 break;
3d474ef7
JW
3032 } else if (s->type == SERVICE_NOTIFY) {
3033 /* Only enter running through a notification, so that the
3034 * SERVICE_START state signifies that no ready notification
3035 * has been received */
3036 if (f != SERVICE_SUCCESS)
c3fda31d 3037 service_enter_signal(s, SERVICE_STOP_SIGTERM, f);
3d474ef7
JW
3038 else if (!s->remain_after_exit)
3039 /* The service has never been active */
c3fda31d 3040 service_enter_signal(s, SERVICE_STOP_SIGTERM, SERVICE_FAILURE_PROTOCOL);
3d474ef7 3041 break;
34e9ba66 3042 }
034c6ed7 3043
bfba3256
LP
3044 /* Fall through */
3045
34e9ba66 3046 case SERVICE_RUNNING:
f42806df 3047 service_enter_running(s, f);
34e9ba66 3048 break;
034c6ed7 3049
db2cb23b 3050 case SERVICE_STOP_SIGABRT:
34e9ba66
LP
3051 case SERVICE_STOP_SIGTERM:
3052 case SERVICE_STOP_SIGKILL:
5cb5a6ff 3053
b13ddbbc 3054 if (control_pid_good(s) <= 0)
f42806df 3055 service_enter_stop_post(s, f);
5cb5a6ff 3056
34e9ba66
LP
3057 /* If there is still a control process, wait for that first */
3058 break;
3059
bf108e55
LP
3060 case SERVICE_STOP_POST:
3061 case SERVICE_FINAL_SIGTERM:
3062 case SERVICE_FINAL_SIGKILL:
3063
b13ddbbc 3064 if (control_pid_good(s) <= 0)
bf108e55
LP
3065 service_enter_dead(s, f, true);
3066 break;
3067
34e9ba66
LP
3068 default:
3069 assert_not_reached("Uh, main process died at wrong time.");
3070 }
034c6ed7 3071 }
5cb5a6ff 3072
034c6ed7 3073 } else if (s->control_pid == pid) {
34e9ba66
LP
3074 s->control_pid = 0;
3075
b708e7ce 3076 if (s->control_command) {
8bb2d17d 3077 exec_status_exit(&s->control_command->exec_status, &s->exec_context, pid, code, status);
a16e1123 3078
3ed0cd26 3079 if (s->control_command->flags & EXEC_COMMAND_IGNORE_FAILURE)
f42806df 3080 f = SERVICE_SUCCESS;
b708e7ce
LP
3081 }
3082
f2341e0a
LP
3083 log_unit_full(u, f == SERVICE_SUCCESS ? LOG_DEBUG : LOG_NOTICE, 0,
3084 "Control process exited, code=%s status=%i",
3085 sigchld_code_to_string(code), status);
f42806df 3086
a0fef983 3087 if (s->result == SERVICE_SUCCESS)
f42806df 3088 s->result = f;
034c6ed7 3089
88f3e0c9
LP
3090 /* Immediately get rid of the cgroup, so that the
3091 * kernel doesn't delay the cgroup empty messages for
3092 * the service cgroup any longer than necessary */
4ad49000 3093 service_kill_control_processes(s);
88f3e0c9 3094
34e9ba66
LP
3095 if (s->control_command &&
3096 s->control_command->command_next &&
f42806df 3097 f == SERVICE_SUCCESS) {
034c6ed7
LP
3098
3099 /* There is another command to *
3100 * execute, so let's do that. */
3101
f2341e0a 3102 log_unit_debug(u, "Running next control command for state %s.", service_state_to_string(s->state));
f42806df 3103 service_run_next_control(s);
034c6ed7 3104
80876c20 3105 } else {
034c6ed7
LP
3106 /* No further commands for this step, so let's
3107 * figure out what to do next */
3108
a16e1123
LP
3109 s->control_command = NULL;
3110 s->control_command_id = _SERVICE_EXEC_COMMAND_INVALID;
3111
f2341e0a 3112 log_unit_debug(u, "Got final SIGCHLD for state %s.", service_state_to_string(s->state));
bd982a8b 3113
034c6ed7
LP
3114 switch (s->state) {
3115
3116 case SERVICE_START_PRE:
f42806df 3117 if (f == SERVICE_SUCCESS)
034c6ed7
LP
3118 service_enter_start(s);
3119 else
c3fda31d 3120 service_enter_signal(s, SERVICE_STOP_SIGTERM, f);
034c6ed7
LP
3121 break;
3122
3123 case SERVICE_START:
bfba3256
LP
3124 if (s->type != SERVICE_FORKING)
3125 /* Maybe spurious event due to a reload that changed the type? */
3126 break;
034c6ed7 3127
f42806df 3128 if (f != SERVICE_SUCCESS) {
c3fda31d 3129 service_enter_signal(s, SERVICE_STOP_SIGTERM, f);
3a111838
MS
3130 break;
3131 }
034c6ed7 3132
3a111838 3133 if (s->pid_file) {
f42806df
LP
3134 bool has_start_post;
3135 int r;
3136
3a111838
MS
3137 /* Let's try to load the pid file here if we can.
3138 * The PID file might actually be created by a START_POST
3139 * script. In that case don't worry if the loading fails. */
f42806df
LP
3140
3141 has_start_post = !!s->exec_command[SERVICE_EXEC_START_POST];
3142 r = service_load_pid_file(s, !has_start_post);
3a111838
MS
3143 if (!has_start_post && r < 0) {
3144 r = service_demand_pid_file(s);
b13ddbbc 3145 if (r < 0 || cgroup_good(s) == 0)
c3fda31d 3146 service_enter_signal(s, SERVICE_STOP_SIGTERM, SERVICE_FAILURE_PROTOCOL);
3a111838
MS
3147 break;
3148 }
034c6ed7 3149 } else
783e05d6 3150 service_search_main_pid(s);
034c6ed7 3151
3a111838 3152 service_enter_start_post(s);
034c6ed7
LP
3153 break;
3154
3155 case SERVICE_START_POST:
f42806df 3156 if (f != SERVICE_SUCCESS) {
ce359e98 3157 service_enter_signal(s, SERVICE_STOP_SIGTERM, f);
2096e009 3158 break;
034c6ed7
LP
3159 }
3160
2096e009 3161 if (s->pid_file) {
f42806df
LP
3162 int r;
3163
3164 r = service_load_pid_file(s, true);
2096e009
MS
3165 if (r < 0) {
3166 r = service_demand_pid_file(s);
b13ddbbc 3167 if (r < 0 || cgroup_good(s) == 0)
c35755fb 3168 service_enter_stop(s, SERVICE_FAILURE_PROTOCOL);
2096e009
MS
3169 break;
3170 }
3171 } else
783e05d6 3172 service_search_main_pid(s);
2096e009 3173
f42806df 3174 service_enter_running(s, SERVICE_SUCCESS);
3185a36b 3175 break;
034c6ed7
LP
3176
3177 case SERVICE_RELOAD:
7236ce6e
ZJS
3178 if (f == SERVICE_SUCCESS)
3179 if (service_load_pid_file(s, true) < 0)
3180 service_search_main_pid(s);
3185a36b 3181
f42806df
LP
3182 s->reload_result = f;
3183 service_enter_running(s, SERVICE_SUCCESS);
034c6ed7
LP
3184 break;
3185
3186 case SERVICE_STOP:
f42806df 3187 service_enter_signal(s, SERVICE_STOP_SIGTERM, f);
034c6ed7
LP
3188 break;
3189
db2cb23b 3190 case SERVICE_STOP_SIGABRT:
034c6ed7
LP
3191 case SERVICE_STOP_SIGTERM:
3192 case SERVICE_STOP_SIGKILL:
3193 if (main_pid_good(s) <= 0)
f42806df 3194 service_enter_stop_post(s, f);
034c6ed7
LP
3195
3196 /* If there is still a service
3197 * process around, wait until
3198 * that one quit, too */
3199 break;
3200
3201 case SERVICE_STOP_POST:
3202 case SERVICE_FINAL_SIGTERM:
3203 case SERVICE_FINAL_SIGKILL:
bf108e55
LP
3204 if (main_pid_good(s) <= 0)
3205 service_enter_dead(s, f, true);
034c6ed7
LP
3206 break;
3207
3208 default:
3209 assert_not_reached("Uh, control process died at wrong time.");
3210 }
3211 }
8c47c732 3212 }
c4e2ceae
LP
3213
3214 /* Notify clients about changed exit status */
3215 unit_add_to_dbus_queue(u);
a911bb9a
LP
3216
3217 /* We got one SIGCHLD for the service, let's watch all
3218 * processes that are now running of the service, and watch
3219 * that. Among the PIDs we then watch will be children
3220 * reassigned to us, which hopefully allows us to identify
3221 * when all children are gone */
3222 unit_tidy_watch_pids(u, s->main_pid, s->control_pid);
3223 unit_watch_all_pids(u);
3224
bbc85a16
EV
3225 /* If the PID set is empty now, then let's finish this off
3226 (On unified we use proper notifications) */
c22800e4 3227 if (cg_unified_controller(SYSTEMD_CGROUP_CONTROLLER) == 0 && set_isempty(u->pids))
09e24654 3228 unit_add_to_cgroup_empty_queue(u);
034c6ed7
LP
3229}
3230
718db961
LP
3231static int service_dispatch_timer(sd_event_source *source, usec_t usec, void *userdata) {
3232 Service *s = SERVICE(userdata);
034c6ed7
LP
3233
3234 assert(s);
718db961 3235 assert(source == s->timer_event_source);
034c6ed7
LP
3236
3237 switch (s->state) {
3238
3239 case SERVICE_START_PRE:
3240 case SERVICE_START:
f2341e0a 3241 log_unit_warning(UNIT(s), "%s operation timed out. Terminating.", s->state == SERVICE_START ? "Start" : "Start-pre");
c3fda31d 3242 service_enter_signal(s, SERVICE_STOP_SIGTERM, SERVICE_FAILURE_TIMEOUT);
80876c20
LP
3243 break;
3244
034c6ed7 3245 case SERVICE_START_POST:
f2341e0a 3246 log_unit_warning(UNIT(s), "Start-post operation timed out. Stopping.");
ce359e98 3247 service_enter_signal(s, SERVICE_STOP_SIGTERM, SERVICE_FAILURE_TIMEOUT);
034c6ed7
LP
3248 break;
3249
36c16a7c
LP
3250 case SERVICE_RUNNING:
3251 log_unit_warning(UNIT(s), "Service reached runtime time limit. Stopping.");
3252 service_enter_stop(s, SERVICE_FAILURE_TIMEOUT);
3253 break;
3254
e2f3b44c 3255 case SERVICE_RELOAD:
089b64d5 3256 log_unit_warning(UNIT(s), "Reload operation timed out. Killing reload process.");
478b6192 3257 service_kill_control_processes(s);
f42806df
LP
3258 s->reload_result = SERVICE_FAILURE_TIMEOUT;
3259 service_enter_running(s, SERVICE_SUCCESS);
e2f3b44c
LP
3260 break;
3261
034c6ed7 3262 case SERVICE_STOP:
f2341e0a 3263 log_unit_warning(UNIT(s), "Stopping timed out. Terminating.");
f42806df 3264 service_enter_signal(s, SERVICE_STOP_SIGTERM, SERVICE_FAILURE_TIMEOUT);
034c6ed7
LP
3265 break;
3266
db2cb23b 3267 case SERVICE_STOP_SIGABRT:
f2341e0a 3268 log_unit_warning(UNIT(s), "State 'stop-sigabrt' timed out. Terminating.");
2ab2ab7b 3269 service_enter_signal(s, SERVICE_STOP_SIGTERM, SERVICE_FAILURE_TIMEOUT);
db2cb23b
UTL
3270 break;
3271
034c6ed7 3272 case SERVICE_STOP_SIGTERM:
4819ff03 3273 if (s->kill_context.send_sigkill) {
f2341e0a 3274 log_unit_warning(UNIT(s), "State 'stop-sigterm' timed out. Killing.");
f42806df 3275 service_enter_signal(s, SERVICE_STOP_SIGKILL, SERVICE_FAILURE_TIMEOUT);
ba035df2 3276 } else {
f2341e0a 3277 log_unit_warning(UNIT(s), "State 'stop-sigterm' timed out. Skipping SIGKILL.");
f42806df 3278 service_enter_stop_post(s, SERVICE_FAILURE_TIMEOUT);
ba035df2
LP
3279 }
3280
034c6ed7
LP
3281 break;
3282
3283 case SERVICE_STOP_SIGKILL:
35b8ca3a 3284 /* Uh, we sent a SIGKILL and it is still not gone?
034c6ed7
LP
3285 * Must be something we cannot kill, so let's just be
3286 * weirded out and continue */
3287
f2341e0a 3288 log_unit_warning(UNIT(s), "Processes still around after SIGKILL. Ignoring.");
f42806df 3289 service_enter_stop_post(s, SERVICE_FAILURE_TIMEOUT);
034c6ed7
LP
3290 break;
3291
3292 case SERVICE_STOP_POST:
f2341e0a 3293 log_unit_warning(UNIT(s), "State 'stop-post' timed out. Terminating.");
f42806df 3294 service_enter_signal(s, SERVICE_FINAL_SIGTERM, SERVICE_FAILURE_TIMEOUT);
034c6ed7
LP
3295 break;
3296
3297 case SERVICE_FINAL_SIGTERM:
4819ff03 3298 if (s->kill_context.send_sigkill) {
f2341e0a 3299 log_unit_warning(UNIT(s), "State 'stop-final-sigterm' timed out. Killing.");
f42806df 3300 service_enter_signal(s, SERVICE_FINAL_SIGKILL, SERVICE_FAILURE_TIMEOUT);
ba035df2 3301 } else {
f2341e0a 3302 log_unit_warning(UNIT(s), "State 'stop-final-sigterm' timed out. Skipping SIGKILL. Entering failed mode.");
f42806df 3303 service_enter_dead(s, SERVICE_FAILURE_TIMEOUT, false);
ba035df2
LP
3304 }
3305
034c6ed7
LP
3306 break;
3307
3308 case SERVICE_FINAL_SIGKILL:
f2341e0a 3309 log_unit_warning(UNIT(s), "Processes still around after final SIGKILL. Entering failed mode.");
f42806df 3310 service_enter_dead(s, SERVICE_FAILURE_TIMEOUT, true);
034c6ed7
LP
3311 break;
3312
3313 case SERVICE_AUTO_RESTART:
f2341e0a 3314 log_unit_info(UNIT(s),
ef417cfd 3315 s->restart_usec > 0 ?
f2341e0a
LP
3316 "Service hold-off time over, scheduling restart." :
3317 "Service has no hold-off time, scheduling restart.");
034c6ed7
LP
3318 service_enter_restart(s);
3319 break;
3320
3321 default:
3322 assert_not_reached("Timeout at wrong time.");
3323 }
718db961
LP
3324
3325 return 0;
3326}
3327
3328static int service_dispatch_watchdog(sd_event_source *source, usec_t usec, void *userdata) {
3329 Service *s = SERVICE(userdata);
a7850c7d 3330 char t[FORMAT_TIMESPAN_MAX];
2787d83c 3331 usec_t watchdog_usec;
718db961
LP
3332
3333 assert(s);
3334 assert(source == s->watchdog_event_source);
3335
2787d83c
M
3336 watchdog_usec = service_get_watchdog_usec(s);
3337
f2341e0a 3338 log_unit_error(UNIT(s), "Watchdog timeout (limit %s)!",
2787d83c 3339 format_timespan(t, sizeof(t), watchdog_usec, 1));
8bb2d17d 3340
db2cb23b 3341 service_enter_signal(s, SERVICE_STOP_SIGABRT, SERVICE_FAILURE_WATCHDOG);
842129f5 3342
718db961 3343 return 0;
5cb5a6ff
LP
3344}
3345
a354329f 3346static void service_notify_message(Unit *u, pid_t pid, char **tags, FDSet *fds) {
8c47c732 3347 Service *s = SERVICE(u);
308d72dc 3348 _cleanup_free_ char *cc = NULL;
30b5275a 3349 bool notify_dbus = false;
308d72dc 3350 const char *e;
8c47c732
LP
3351
3352 assert(u);
3353
308d72dc 3354 cc = strv_join(tags, ", ");
da13d4d2 3355
c952c6ec 3356 if (s->notify_access == NOTIFY_NONE) {
f2341e0a 3357 log_unit_warning(u, "Got notification message from PID "PID_FMT", but reception is disabled.", pid);
c952c6ec 3358 return;
34959677 3359 } else if (s->notify_access == NOTIFY_MAIN && pid != s->main_pid) {
336c6e46 3360 if (s->main_pid != 0)
f2341e0a 3361 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 3362 else
6375bd20
JW
3363 log_unit_warning(u, "Got notification message from PID "PID_FMT", but reception only permitted for main PID which is currently not known", pid);
3364 return;
3365 } else if (s->notify_access == NOTIFY_EXEC && pid != s->main_pid && pid != s->control_pid) {
3366 if (s->main_pid != 0 && s->control_pid != 0)
3367 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,
3368 pid, s->main_pid, s->control_pid);
3369 else if (s->main_pid != 0)
3370 log_unit_warning(u, "Got notification message from PID "PID_FMT", but reception only permitted for main PID "PID_FMT, pid, s->main_pid);
3371 else if (s->control_pid != 0)
3372 log_unit_warning(u, "Got notification message from PID "PID_FMT", but reception only permitted for control PID "PID_FMT, pid, s->control_pid);
3373 else
3374 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 3375 return;
34959677
TG
3376 } else
3377 log_unit_debug(u, "Got notification message from PID "PID_FMT" (%s)", pid, isempty(cc) ? "n/a" : cc);
c952c6ec 3378
8c47c732 3379 /* Interpret MAINPID= */
28849dba 3380 e = strv_find_startswith(tags, "MAINPID=");
5e56b378 3381 if (e && IN_SET(s->state, SERVICE_START, SERVICE_START_POST, SERVICE_RUNNING, SERVICE_RELOAD)) {
28849dba 3382 if (parse_pid(e, &pid) < 0)
f2341e0a 3383 log_unit_warning(u, "Failed to parse MAINPID= field in notification message: %s", e);
3c9512c7
JW
3384 else if (pid == s->control_pid)
3385 log_unit_warning(u, "A control process cannot also be the main process");
df0ff127 3386 else if (pid == getpid_cached() || pid == 1)
6939ce64 3387 log_unit_warning(u, "Service manager can't be main process, ignoring sd_notify() MAINPID= field");
8c47c732 3388 else {
5925dd3c 3389 service_set_main_pid(s, pid);
7400b9d2 3390 unit_watch_pid(UNIT(s), pid);
30b5275a 3391 notify_dbus = true;
8c47c732
LP
3392 }
3393 }
3394
308d72dc
LP
3395 /* Interpret RELOADING= */
3396 if (strv_find(tags, "RELOADING=1")) {
3397
308d72dc
LP
3398 s->notify_state = NOTIFY_RELOADING;
3399
3400 if (s->state == SERVICE_RUNNING)
3401 service_enter_reload_by_notify(s);
3402
3403 notify_dbus = true;
3404 }
3405
8c47c732 3406 /* Interpret READY= */
308d72dc
LP
3407 if (strv_find(tags, "READY=1")) {
3408
308d72dc
LP
3409 s->notify_state = NOTIFY_READY;
3410
3411 /* Type=notify services inform us about completed
3412 * initialization with READY=1 */
3413 if (s->type == SERVICE_NOTIFY && s->state == SERVICE_START)
3414 service_enter_start_post(s);
3415
3416 /* Sending READY=1 while we are reloading informs us
3417 * that the reloading is complete */
3418 if (s->state == SERVICE_RELOAD && s->control_pid == 0)
3419 service_enter_running(s, SERVICE_SUCCESS);
3420
3421 notify_dbus = true;
3422 }
3423
3424 /* Interpret STOPPING= */
3425 if (strv_find(tags, "STOPPING=1")) {
3426
308d72dc
LP
3427 s->notify_state = NOTIFY_STOPPING;
3428
3429 if (s->state == SERVICE_RUNNING)
3430 service_enter_stop_by_notify(s);
3431
30b5275a 3432 notify_dbus = true;
8c47c732
LP
3433 }
3434
3435 /* Interpret STATUS= */
28849dba 3436 e = strv_find_startswith(tags, "STATUS=");
7f110ff9 3437 if (e) {
28849dba 3438 _cleanup_free_ char *t = NULL;
8c47c732 3439
28849dba
LP
3440 if (!isempty(e)) {
3441 if (!utf8_is_valid(e))
f2341e0a 3442 log_unit_warning(u, "Status message in notification message is not UTF-8 clean.");
28849dba 3443 else {
28849dba
LP
3444 t = strdup(e);
3445 if (!t)
3446 log_oom();
3a2776bc 3447 }
28849dba 3448 }
8c47c732 3449
30b5275a 3450 if (!streq_ptr(s->status_text, t)) {
3b319885 3451 free_and_replace(s->status_text, t);
30b5275a 3452 notify_dbus = true;
28849dba 3453 }
8c47c732 3454 }
842129f5 3455
4774e357 3456 /* Interpret ERRNO= */
28849dba 3457 e = strv_find_startswith(tags, "ERRNO=");
4774e357
MAA
3458 if (e) {
3459 int status_errno;
3460
28849dba 3461 if (safe_atoi(e, &status_errno) < 0 || status_errno < 0)
f2341e0a 3462 log_unit_warning(u, "Failed to parse ERRNO= field in notification message: %s", e);
4774e357 3463 else {
4774e357
MAA
3464 if (s->status_errno != status_errno) {
3465 s->status_errno = status_errno;
3466 notify_dbus = true;
3467 }
3468 }
3469 }
3470
6f285378 3471 /* Interpret WATCHDOG= */
1f6b4113 3472 if (strv_find(tags, "WATCHDOG=1"))
842129f5 3473 service_reset_watchdog(s);
c4e2ceae 3474
8dd4c05b
LP
3475 if (strv_find(tags, "FDSTORE=1")) {
3476 const char *name;
3477
3478 name = strv_find_startswith(tags, "FDNAME=");
3479 if (name && !fdname_is_valid(name)) {
3480 log_unit_warning(u, "Passed FDNAME= name is invalid, ignoring.");
3481 name = NULL;
3482 }
3483
3484 service_add_fd_store_set(s, fds, name);
3485 }
a354329f 3486
2787d83c
M
3487 e = strv_find_startswith(tags, "WATCHDOG_USEC=");
3488 if (e) {
3489 usec_t watchdog_override_usec;
3490 if (safe_atou64(e, &watchdog_override_usec) < 0)
3491 log_unit_warning(u, "Failed to parse WATCHDOG_USEC=%s", e);
3492 else
3493 service_reset_watchdog_timeout(s, watchdog_override_usec);
3494 }
3495
c4e2ceae 3496 /* Notify clients about changed status or main pid */
30b5275a
LP
3497 if (notify_dbus)
3498 unit_add_to_dbus_queue(u);
8c47c732
LP
3499}
3500
7a7821c8 3501static int service_get_timeout(Unit *u, usec_t *timeout) {
68db7a3b 3502 Service *s = SERVICE(u);
7a7821c8 3503 uint64_t t;
68db7a3b
ZJS
3504 int r;
3505
3506 if (!s->timer_event_source)
3507 return 0;
3508
7a7821c8 3509 r = sd_event_source_get_time(s->timer_event_source, &t);
68db7a3b
ZJS
3510 if (r < 0)
3511 return r;
7a7821c8
LP
3512 if (t == USEC_INFINITY)
3513 return 0;
68db7a3b 3514
7a7821c8 3515 *timeout = t;
68db7a3b
ZJS
3516 return 1;
3517}
3518
05e343b7
LP
3519static void service_bus_name_owner_change(
3520 Unit *u,
3521 const char *name,
3522 const char *old_owner,
3523 const char *new_owner) {
3524
3525 Service *s = SERVICE(u);
718db961 3526 int r;
05e343b7
LP
3527
3528 assert(s);
3529 assert(name);
3530
3531 assert(streq(s->bus_name, name));
3532 assert(old_owner || new_owner);
3533
3534 if (old_owner && new_owner)
f2341e0a 3535 log_unit_debug(u, "D-Bus name %s changed owner from %s to %s", name, old_owner, new_owner);
05e343b7 3536 else if (old_owner)
f2341e0a 3537 log_unit_debug(u, "D-Bus name %s no longer registered by %s", name, old_owner);
05e343b7 3538 else
f2341e0a 3539 log_unit_debug(u, "D-Bus name %s now registered by %s", name, new_owner);
05e343b7
LP
3540
3541 s->bus_name_good = !!new_owner;
3542
d8ccf5fd
DM
3543 /* Track the current owner, so we can reconstruct changes after a daemon reload */
3544 r = free_and_strdup(&s->bus_name_owner, new_owner);
3545 if (r < 0) {
3546 log_unit_error_errno(u, r, "Unable to set new bus name owner %s: %m", new_owner);
3547 return;
3548 }
3549
05e343b7
LP
3550 if (s->type == SERVICE_DBUS) {
3551
3552 /* service_enter_running() will figure out what to
3553 * do */
3554 if (s->state == SERVICE_RUNNING)
f42806df 3555 service_enter_running(s, SERVICE_SUCCESS);
05e343b7
LP
3556 else if (s->state == SERVICE_START && new_owner)
3557 service_enter_start_post(s);
3558
3559 } else if (new_owner &&
3560 s->main_pid <= 0 &&
a6951a50
LP
3561 IN_SET(s->state,
3562 SERVICE_START,
3563 SERVICE_START_POST,
3564 SERVICE_RUNNING,
3565 SERVICE_RELOAD)) {
05e343b7 3566
4afd3348 3567 _cleanup_(sd_bus_creds_unrefp) sd_bus_creds *creds = NULL;
718db961 3568 pid_t pid;
05e343b7 3569
718db961 3570 /* Try to acquire PID from bus service */
05e343b7 3571
056f95d0 3572 r = sd_bus_get_name_creds(u->manager->api_bus, name, SD_BUS_CREDS_PID, &creds);
5b12334d
LP
3573 if (r >= 0)
3574 r = sd_bus_creds_get_pid(creds, &pid);
718db961 3575 if (r >= 0) {
7c102d60 3576 log_unit_debug(u, "D-Bus name %s is now owned by process " PID_FMT, name, pid);
05e343b7 3577
718db961
LP
3578 service_set_main_pid(s, pid);
3579 unit_watch_pid(UNIT(s), pid);
3580 }
7400b9d2 3581 }
05e343b7
LP
3582}
3583
16115b0a 3584int service_set_socket_fd(Service *s, int fd, Socket *sock, bool selinux_context_net) {
79a98c60
LP
3585 _cleanup_free_ char *peer = NULL;
3586 int r;
57020a3a 3587
4f2d528d
LP
3588 assert(s);
3589 assert(fd >= 0);
3590
7f2fbbff
LP
3591 /* This is called by the socket code when instantiating a new service for a stream socket and the socket needs
3592 * to be configured. We take ownership of the passed fd on success. */
4f2d528d 3593
1124fe6f 3594 if (UNIT(s)->load_state != UNIT_LOADED)
4f2d528d
LP
3595 return -EINVAL;
3596
3597 if (s->socket_fd >= 0)
3598 return -EBUSY;
3599
3600 if (s->state != SERVICE_DEAD)
3601 return -EAGAIN;
3602
366b7db4 3603 if (getpeername_pretty(fd, true, &peer) >= 0) {
79a98c60
LP
3604
3605 if (UNIT(s)->description) {
3606 _cleanup_free_ char *a;
3607
605405c6 3608 a = strjoin(UNIT(s)->description, " (", peer, ")");
79a98c60
LP
3609 if (!a)
3610 return -ENOMEM;
3611
3612 r = unit_set_description(UNIT(s), a);
3613 } else
3614 r = unit_set_description(UNIT(s), peer);
3615
3616 if (r < 0)
3617 return r;
3618 }
3619
7f2fbbff
LP
3620 r = unit_add_two_dependencies(UNIT(sock), UNIT_BEFORE, UNIT_TRIGGERS, UNIT(s), false);
3621 if (r < 0)
3622 return r;
3623
4f2d528d 3624 s->socket_fd = fd;
16115b0a 3625 s->socket_fd_selinux_context_net = selinux_context_net;
6cf6bbc2 3626
57020a3a 3627 unit_ref_set(&s->accept_socket, UNIT(sock));
7f2fbbff 3628 return 0;
4f2d528d
LP
3629}
3630
fdf20a31 3631static void service_reset_failed(Unit *u) {
5632e374
LP
3632 Service *s = SERVICE(u);
3633
3634 assert(s);
3635
fdf20a31 3636 if (s->state == SERVICE_FAILED)
5632e374
LP
3637 service_set_state(s, SERVICE_DEAD);
3638
f42806df
LP
3639 s->result = SERVICE_SUCCESS;
3640 s->reload_result = SERVICE_SUCCESS;
7a0019d3
LP
3641 s->n_restarts = 0;
3642 s->flush_n_restarts = false;
5632e374
LP
3643}
3644
718db961 3645static int service_kill(Unit *u, KillWho who, int signo, sd_bus_error *error) {
8a0867d6 3646 Service *s = SERVICE(u);
41efeaec 3647
a6951a50
LP
3648 assert(s);
3649
814cc562 3650 return unit_kill_common(u, who, signo, s->main_pid, s->control_pid, error);
8a0867d6
LP
3651}
3652
291d565a
LP
3653static int service_main_pid(Unit *u) {
3654 Service *s = SERVICE(u);
3655
3656 assert(s);
3657
3658 return s->main_pid;
3659}
3660
3661static int service_control_pid(Unit *u) {
3662 Service *s = SERVICE(u);
3663
3664 assert(s);
3665
3666 return s->control_pid;
3667}
3668
94f04347 3669static const char* const service_restart_table[_SERVICE_RESTART_MAX] = {
525ee6f4
LP
3670 [SERVICE_RESTART_NO] = "no",
3671 [SERVICE_RESTART_ON_SUCCESS] = "on-success",
50caaedb 3672 [SERVICE_RESTART_ON_FAILURE] = "on-failure",
6cfe2fde 3673 [SERVICE_RESTART_ON_ABNORMAL] = "on-abnormal",
dc99a976 3674 [SERVICE_RESTART_ON_WATCHDOG] = "on-watchdog",
50caaedb 3675 [SERVICE_RESTART_ON_ABORT] = "on-abort",
6cfe2fde 3676 [SERVICE_RESTART_ALWAYS] = "always",
94f04347
LP
3677};
3678
3679DEFINE_STRING_TABLE_LOOKUP(service_restart, ServiceRestart);
3680
3681static const char* const service_type_table[_SERVICE_TYPE_MAX] = {
94f04347 3682 [SERVICE_SIMPLE] = "simple",
0d624a78 3683 [SERVICE_FORKING] = "forking",
34e9ba66 3684 [SERVICE_ONESHOT] = "oneshot",
8c47c732 3685 [SERVICE_DBUS] = "dbus",
f2b68789
LP
3686 [SERVICE_NOTIFY] = "notify",
3687 [SERVICE_IDLE] = "idle"
94f04347
LP
3688};
3689
3690DEFINE_STRING_TABLE_LOOKUP(service_type, ServiceType);
3691
e537352b 3692static const char* const service_exec_command_table[_SERVICE_EXEC_COMMAND_MAX] = {
94f04347
LP
3693 [SERVICE_EXEC_START_PRE] = "ExecStartPre",
3694 [SERVICE_EXEC_START] = "ExecStart",
3695 [SERVICE_EXEC_START_POST] = "ExecStartPost",
3696 [SERVICE_EXEC_RELOAD] = "ExecReload",
3697 [SERVICE_EXEC_STOP] = "ExecStop",
3698 [SERVICE_EXEC_STOP_POST] = "ExecStopPost",
3699};
3700
3701DEFINE_STRING_TABLE_LOOKUP(service_exec_command, ServiceExecCommand);
3702
308d72dc
LP
3703static const char* const notify_state_table[_NOTIFY_STATE_MAX] = {
3704 [NOTIFY_UNKNOWN] = "unknown",
3705 [NOTIFY_READY] = "ready",
3706 [NOTIFY_RELOADING] = "reloading",
3707 [NOTIFY_STOPPING] = "stopping",
3708};
3709
3710DEFINE_STRING_TABLE_LOOKUP(notify_state, NotifyState);
3711
f42806df
LP
3712static const char* const service_result_table[_SERVICE_RESULT_MAX] = {
3713 [SERVICE_SUCCESS] = "success",
3714 [SERVICE_FAILURE_RESOURCES] = "resources",
c35755fb 3715 [SERVICE_FAILURE_PROTOCOL] = "protocol",
f42806df
LP
3716 [SERVICE_FAILURE_TIMEOUT] = "timeout",
3717 [SERVICE_FAILURE_EXIT_CODE] = "exit-code",
3718 [SERVICE_FAILURE_SIGNAL] = "signal",
bb242b7b 3719 [SERVICE_FAILURE_CORE_DUMP] = "core-dump",
8d1b002a 3720 [SERVICE_FAILURE_WATCHDOG] = "watchdog",
07299350 3721 [SERVICE_FAILURE_START_LIMIT_HIT] = "start-limit-hit",
f42806df
LP
3722};
3723
3724DEFINE_STRING_TABLE_LOOKUP(service_result, ServiceResult);
3725
87f0e418 3726const UnitVTable service_vtable = {
7d17cfbc 3727 .object_size = sizeof(Service),
718db961
LP
3728 .exec_context_offset = offsetof(Service, exec_context),
3729 .cgroup_context_offset = offsetof(Service, cgroup_context),
3730 .kill_context_offset = offsetof(Service, kill_context),
613b411c 3731 .exec_runtime_offset = offsetof(Service, exec_runtime),
29206d46 3732 .dynamic_creds_offset = offsetof(Service, dynamic_creds),
3ef63c31 3733
f975e971
LP
3734 .sections =
3735 "Unit\0"
3736 "Service\0"
3737 "Install\0",
4ad49000 3738 .private_section = "Service",
71645aca 3739
034c6ed7
LP
3740 .init = service_init,
3741 .done = service_done,
a16e1123 3742 .load = service_load,
a354329f 3743 .release_resources = service_release_resources,
a16e1123
LP
3744
3745 .coldplug = service_coldplug,
034c6ed7 3746
5cb5a6ff
LP
3747 .dump = service_dump,
3748
3749 .start = service_start,
3750 .stop = service_stop,
3751 .reload = service_reload,
3752
034c6ed7
LP
3753 .can_reload = service_can_reload,
3754
8a0867d6
LP
3755 .kill = service_kill,
3756
a16e1123
LP
3757 .serialize = service_serialize,
3758 .deserialize_item = service_deserialize_item,
3759
5cb5a6ff 3760 .active_state = service_active_state,
10a94420 3761 .sub_state_to_string = service_sub_state_to_string,
5cb5a6ff 3762
701cc384 3763 .check_gc = service_check_gc,
701cc384 3764
034c6ed7 3765 .sigchld_event = service_sigchld_event,
2c4104f0 3766
fdf20a31 3767 .reset_failed = service_reset_failed,
5632e374 3768
4ad49000 3769 .notify_cgroup_empty = service_notify_cgroup_empty_event,
8c47c732 3770 .notify_message = service_notify_message,
8e274523 3771
291d565a
LP
3772 .main_pid = service_main_pid,
3773 .control_pid = service_control_pid,
3774
05e343b7 3775 .bus_name_owner_change = service_bus_name_owner_change,
05e343b7 3776
718db961 3777 .bus_vtable = bus_service_vtable,
74c964d3
LP
3778 .bus_set_property = bus_service_set_property,
3779 .bus_commit_properties = bus_service_commit_properties,
4139c1b2 3780
68db7a3b 3781 .get_timeout = service_get_timeout,
718db961
LP
3782 .can_transient = true,
3783
c6918296
MS
3784 .status_message_formats = {
3785 .starting_stopping = {
3786 [0] = "Starting %s...",
3787 [1] = "Stopping %s...",
3788 },
3789 .finished_start_job = {
3790 [JOB_DONE] = "Started %s.",
3791 [JOB_FAILED] = "Failed to start %s.",
c6918296
MS
3792 },
3793 .finished_stop_job = {
3794 [JOB_DONE] = "Stopped %s.",
3795 [JOB_FAILED] = "Stopped (with error) %s.",
c6918296
MS
3796 },
3797 },
5cb5a6ff 3798};