service.c revision 6962fd3bd28cb5d3aaff69c1e3b6cc006e7c8426
/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
/***
This file is part of systemd.
Copyright 2010 Lennart Poettering
under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 of the License, or
(at your option) any later version.
systemd is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with systemd; If not, see <http://www.gnu.org/licenses/>.
***/
#include <errno.h>
#include <signal.h>
#include <unistd.h>
#include "async.h"
#include "manager.h"
#include "unit.h"
#include "service.h"
#include "load-fragment.h"
#include "load-dropin.h"
#include "log.h"
#include "strv.h"
#include "unit-name.h"
#include "unit-printf.h"
#include "dbus-service.h"
#include "special.h"
#include "exit-status.h"
#include "def.h"
#include "path-util.h"
#include "util.h"
#include "utf8.h"
#include "env-util.h"
#include "fileio.h"
#include "bus-error.h"
#include "bus-util.h"
#include "bus-kernel.h"
};
/* For Type=idle we never want to delay any other jobs, hence we
* consider idle jobs active as soon as we start working on them */
[SERVICE_START] = UNIT_ACTIVE,
};
static void service_enter_reload_by_notify(Service *s);
static void service_init(Unit *u) {
assert(u);
s->type = _SERVICE_TYPE_INVALID;
s->socket_fd = -1;
s->bus_endpoint_fd = -1;
s->guess_main_pid = true;
RATELIMIT_INIT(s->start_limit, u->manager->default_start_limit_interval, u->manager->default_start_limit_burst);
}
static void service_unwatch_control_pid(Service *s) {
assert(s);
if (s->control_pid <= 0)
return;
s->control_pid = 0;
}
static void service_unwatch_main_pid(Service *s) {
assert(s);
if (s->main_pid <= 0)
return;
s->main_pid = 0;
}
static void service_unwatch_pid_file(Service *s) {
if (!s->pid_file_pathspec)
return;
log_unit_debug(UNIT(s)->id, "Stopping watch for %s's PID file %s", UNIT(s)->id, s->pid_file_pathspec->path);
free(s->pid_file_pathspec);
s->pid_file_pathspec = NULL;
}
assert(s);
if (pid <= 1)
return -EINVAL;
return -EINVAL;
return 0;
}
s->main_pid_known = true;
log_unit_warning(UNIT(s)->id, "%s: Supervising process "PID_FMT" which is not our child. We'll most likely not notice when it exits.", UNIT(s)->id, pid);
s->main_pid_alien = true;
} else
s->main_pid_alien = false;
return 0;
}
static void service_close_socket_fd(Service *s) {
assert(s);
}
static void service_connection_unref(Service *s) {
assert(s);
if (!UNIT_ISSET(s->accept_socket))
return;
unit_ref_unset(&s->accept_socket);
}
static void service_stop_watchdog(Service *s) {
assert(s);
}
static void service_start_watchdog(Service *s) {
int r;
assert(s);
if (s->watchdog_usec <= 0)
return;
if (s->watchdog_event_source) {
r = sd_event_source_set_time(s->watchdog_event_source, s->watchdog_timestamp.monotonic + s->watchdog_usec);
if (r < 0) {
return;
}
} else {
r = sd_event_add_time(
if (r < 0) {
return;
}
/* Let's process everything else which might be a sign
* of living before we consider a service died. */
}
if (r < 0)
}
static void service_reset_watchdog(Service *s) {
assert(s);
}
if (!fs)
return;
}
if (fs->event_source) {
}
}
static void service_release_resources(Unit *u) {
assert(s);
if (!s->fd_store)
return;
while (s->fd_store)
assert(s->n_fd_store == 0);
}
static void service_done(Unit *u) {
assert(s);
free(s->status_text);
s->status_text = NULL;
free(s->reboot_arg);
s->reboot_arg = NULL;
s->control_command = NULL;
s->main_command = NULL;
/* This will leak a process, but at least no memory or any of
* our resources */
if (s->bus_name) {
unit_unwatch_bus_name(u, s->bus_name);
}
unit_ref_unset(&s->accept_socket);
}
assert(e);
/* If we get either EPOLLHUP or EPOLLERR, it's time to remove this entry from the fd store */
return 0;
}
int r;
assert(s);
if (s->n_fd_store >= s->n_fd_store_max)
return 0;
if (r < 0)
return r;
if (r > 0) {
/* Already included */
safe_close(fd);
return 1;
}
}
if (!fs)
return -ENOMEM;
if (r < 0) {
return r;
}
s->n_fd_store++;
return 1;
}
int r;
assert(s);
if (fdset_size(fds) <= 0)
return 0;
while (s->n_fd_store < s->n_fd_store_max) {
if (fd < 0)
break;
r = service_add_fd_store(s, fd);
if (r < 0)
if (r > 0) {
fd = -1;
}
}
if (fdset_size(fds) > 0)
log_unit_warning(UNIT(s)->id, "%s: tried to store more fds than FDStoreMax=%u allows, closing remaining.", UNIT(s)->id, s->n_fd_store_max);
return 0;
}
int r;
assert(s);
if (s->timer_event_source) {
if (r < 0)
return r;
}
return sd_event_add_time(
&s->timer_event_source,
}
static int service_verify(Service *s) {
assert(s);
return 0;
log_unit_error(UNIT(s)->id, "%s lacks both ExecStart= and ExecStop= setting. Refusing.", UNIT(s)->id);
return -EINVAL;
}
log_unit_error(UNIT(s)->id, "%s has no ExecStart= setting, which is only allowed for Type=oneshot services. Refusing.", UNIT(s)->id);
return -EINVAL;
}
log_unit_error(UNIT(s)->id, "%s has no ExecStart= setting, which is only allowed for RemainAfterExit=yes services. Refusing.", UNIT(s)->id);
return -EINVAL;
}
log_unit_error(UNIT(s)->id, "%s has more than one ExecStart= setting, which is only allowed for Type=oneshot services. Refusing.", UNIT(s)->id);
return -EINVAL;
}
log_unit_error(UNIT(s)->id, "%s has Restart= setting other than no, which isn't allowed for Type=oneshot services. Refusing.", UNIT(s)->id);
return -EINVAL;
}
log_unit_error(UNIT(s)->id, "%s has RestartForceStatus= set, which isn't allowed for Type=oneshot services. Refusing.", UNIT(s)->id);
return -EINVAL;
}
log_unit_error(UNIT(s)->id, "%s is of type D-Bus but no D-Bus service name has been specified. Refusing.", UNIT(s)->id);
return -EINVAL;
}
log_unit_warning(UNIT(s)->id, "%s has a D-Bus service name specified, but is not of type dbus. Ignoring.", UNIT(s)->id);
if (s->exec_context.pam_name && !(s->kill_context.kill_mode == KILL_CONTROL_GROUP || s->kill_context.kill_mode == KILL_MIXED)) {
log_unit_error(UNIT(s)->id, "%s has PAM enabled. Kill mode must be set to 'control-group' or 'mixed'. Refusing.", UNIT(s)->id);
return -EINVAL;
}
return 0;
}
static int service_add_default_dependencies(Service *s) {
int r;
assert(s);
/* Add a number of automatic dependencies useful for the
* majority of services. */
/* First, pull in base system */
r = unit_add_two_dependencies_by_name(UNIT(s), UNIT_AFTER, UNIT_REQUIRES, SPECIAL_BASIC_TARGET, NULL, true);
if (r < 0)
return r;
/* Second, activate normal shutdown */
return unit_add_two_dependencies_by_name(UNIT(s), UNIT_BEFORE, UNIT_CONFLICTS, SPECIAL_SHUTDOWN_TARGET, NULL, true);
}
static void service_fix_output(Service *s) {
assert(s);
/* If nothing has been explicitly configured, patch default
* since in that case we want output to default to the same
* place as we read input from. */
}
static int service_add_extras(Service *s) {
int r;
assert(s);
if (s->type == _SERVICE_TYPE_INVALID) {
/* Figure out a type automatically */
if (s->bus_name)
s->type = SERVICE_DBUS;
else if (s->exec_command[SERVICE_EXEC_START])
s->type = SERVICE_SIMPLE;
else
s->type = SERVICE_ONESHOT;
}
/* Oneshot services have disabled start timeout by default */
s->timeout_start_usec = 0;
r = unit_patch_contexts(UNIT(s));
if (r < 0)
return r;
if (r < 0)
return r;
if (r < 0)
return r;
s->notify_access = NOTIFY_MAIN;
s->notify_access = NOTIFY_MAIN;
if (s->bus_name) {
#ifdef ENABLE_KDBUS
const char *n;
if (r < 0)
return r;
#endif
if (r < 0)
return r;
}
if (UNIT(s)->default_dependencies) {
r = service_add_default_dependencies(s);
if (r < 0)
return r;
}
return 0;
}
static int service_load(Unit *u) {
int r;
assert(s);
/* Load a .service file */
r = unit_load_fragment(u);
if (r < 0)
return r;
/* Still nothing found? Then let's give up */
if (u->load_state == UNIT_STUB)
return -ENOENT;
/* This is a new unit? Then let's add in some extras */
if (u->load_state == UNIT_LOADED) {
/* We were able to load something, then let's add in
* the dropin directories. */
r = unit_load_dropin(u);
if (r < 0)
return r;
/* This is a new unit? Then let's add in some
* extras */
r = service_add_extras(s);
if (r < 0)
return r;
}
return service_verify(s);
}
const char *prefix2;
assert(s);
fprintf(f,
"%sService State: %s\n"
"%sResult: %s\n"
"%sReload Result: %s\n"
"%sPermissionsStartOnly: %s\n"
"%sRootDirectoryStartOnly: %s\n"
"%sRemainAfterExit: %s\n"
"%sGuessMainPID: %s\n"
"%sType: %s\n"
"%sRestart: %s\n"
"%sNotifyAccess: %s\n"
"%sNotifyState: %s\n",
if (s->control_pid > 0)
fprintf(f,
prefix, s->control_pid);
if (s->main_pid > 0)
fprintf(f,
"%sMain PID Known: %s\n"
"%sMain PID Alien: %s\n",
if (s->pid_file)
fprintf(f,
"%sPIDFile: %s\n",
if (s->bus_name)
fprintf(f,
"%sBusName: %s\n"
"%sBus Name Good: %s\n",
for (c = 0; c < _SERVICE_EXEC_COMMAND_MAX; c++) {
if (!s->exec_command[c])
continue;
fprintf(f, "%s-> %s:\n",
}
if (s->status_text)
fprintf(f, "%sStatus Text: %s\n",
prefix, s->status_text);
if (s->n_fd_store_max > 0) {
fprintf(f,
"%sFile Descriptor Store Max: %u\n"
"%sFile Descriptor Store Current: %u\n",
prefix, s->n_fd_store_max,
prefix, s->n_fd_store);
}
}
_cleanup_free_ char *k = NULL;
int r;
assert(s);
if (!s->pid_file)
return -ENOENT;
r = read_one_line_file(s->pid_file, &k);
if (r < 0) {
if (may_warn)
log_unit_info(UNIT(s)->id, "PID file %s not readable (yet?) after %s.", s->pid_file, service_state_to_string(s->state));
return r;
}
if (r < 0) {
if (may_warn)
return r;
}
if (!pid_is_alive(pid)) {
if (may_warn)
log_unit_info(UNIT(s)->id, "PID "PID_FMT" read from file %s does not exist or is a zombie.", pid, s->pid_file);
return -ESRCH;
}
if (s->main_pid_known) {
return 0;
s->main_pid_known = false;
} else
r = service_set_main_pid(s, pid);
if (r < 0)
return r;
if (r < 0) {
/* FIXME: we need to do something here */
return r;
}
return 0;
}
static int service_search_main_pid(Service *s) {
int r;
assert(s);
/* If we know it anyway, don't ever fallback to unreliable
* heuristics */
if (s->main_pid_known)
return 0;
if (!s->guess_main_pid)
return 0;
if (pid <= 0)
return -ENOENT;
r = service_set_main_pid(s, pid);
if (r < 0)
return r;
if (r < 0) {
/* FIXME: we need to do something here */
return r;
}
return 0;
}
const UnitActiveState *table;
assert(s);
s->main_command = NULL;
}
s->control_command = NULL;
}
}
/* For the inactive states unit_notify() will trim the cgroup,
* but for exit we have to do that ourselves... */
/* For remain_after_exit services, let's see if we can "release" the
* hold on the console, since unit_notify() only does that in case of
* change of state */
if (state == SERVICE_EXITED &&
s->remain_after_exit &&
m->n_on_console --;
if (m->n_on_console == 0)
/* unset no_console_output flag, since the console is free */
m->no_console_output = false;
}
}
log_unit_debug(UNIT(s)->id, "%s changed %s -> %s", UNIT(s)->id, service_state_to_string(old_state), service_state_to_string(state));
s->reload_result = SERVICE_SUCCESS;
}
int r;
assert(s);
if (s->deserialized_state != s->state) {
if (IN_SET(s->deserialized_state,
usec_t k;
k = IN_SET(s->deserialized_state, SERVICE_START_PRE, SERVICE_START, SERVICE_START_POST, SERVICE_RELOAD) ? s->timeout_start_usec : s->timeout_stop_usec;
if (k > 0) {
r = service_arm_timer(s, k);
if (r < 0)
return r;
}
}
if (s->deserialized_state == SERVICE_AUTO_RESTART) {
/* The restart timeouts 0 means immediately */
r = service_arm_timer(s, s->restart_usec);
if (r < 0)
return r;
}
if (pid_is_unwaited(s->main_pid) &&
((s->deserialized_state == SERVICE_START && IN_SET(s->type, SERVICE_FORKING, SERVICE_DBUS, SERVICE_ONESHOT, SERVICE_NOTIFY)) ||
if (r < 0)
return r;
}
if (pid_is_unwaited(s->control_pid) &&
if (r < 0)
return r;
}
unit_watch_all_pids(UNIT(s));
service_set_state(s, s->deserialized_state);
}
return 0;
}
unsigned rn_fds = 0;
Iterator i;
int r;
Unit *u;
assert(s);
if (s->socket_fd >= 0)
return 0;
int *cfds;
unsigned cn_fds;
if (u->type != UNIT_SOCKET)
continue;
if (r < 0)
return r;
if (cn_fds <= 0) {
continue;
}
if (!rfds) {
} else {
int *t;
if (!t) {
return -ENOMEM;
}
rfds = t;
}
}
if (s->n_fd_store > 0) {
int *t;
if (!t)
return -ENOMEM;
rfds = t;
}
return 0;
}
static int service_spawn(
Service *s,
ExecCommand *c,
bool pass_fds,
bool apply_permissions,
bool apply_chroot,
bool apply_tty_stdin,
bool is_control,
int r;
_cleanup_strv_free_ char
const char *path;
.bus_endpoint_fd = -1,
};
assert(s);
assert(c);
(void) unit_realize_cgroup(UNIT(s));
if (s->reset_cpu_usage) {
(void) unit_reset_cpu_usage(UNIT(s));
s->reset_cpu_usage = false;
}
r = unit_setup_exec_runtime(UNIT(s));
if (r < 0)
goto fail;
if (pass_fds ||
if (s->socket_fd >= 0) {
n_fds = 1;
} else {
if (r < 0)
goto fail;
}
}
if (timeout > 0) {
r = service_arm_timer(s, timeout);
if (r < 0)
goto fail;
} else
if (r < 0)
goto fail;
if (!our_env) {
r = -ENOMEM;
goto fail;
}
r = -ENOMEM;
goto fail;
}
if (s->main_pid > 0)
r = -ENOMEM;
goto fail;
}
r = -ENOMEM;
goto fail;
}
if (UNIT_DEREF(s->accept_socket)) {
union sockaddr_union sa;
if (r < 0) {
r = -errno;
goto fail;
}
char *t;
int port;
if (r < 0)
goto fail;
if (!t) {
r = -ENOMEM;
goto fail;
}
if (port < 0) {
r = port;
goto fail;
}
r = -ENOMEM;
goto fail;
}
}
}
if (!final_env) {
r = -ENOMEM;
goto fail;
}
} else
#ifdef ENABLE_KDBUS
if (s->exec_context.bus_endpoint) {
if (r < 0)
goto fail;
/* Pass the fd to the exec_params so that the child process can upload the policy.
* Keep a reference to the fd in the service, so the endpoint is kept alive as long
* as the service is running. */
}
#endif
if (s->type == SERVICE_IDLE)
r = exec_spawn(c,
&s->exec_context,
s->exec_runtime,
&pid);
if (r < 0)
goto fail;
if (r < 0)
/* FIXME: we need to do something here */
goto fail;
return 0;
fail:
if (timeout)
return r;
}
static int main_pid_good(Service *s) {
assert(s);
/* Returns 0 if the pid is dead, 1 if it is good, -1 if we
* don't know */
/* If we know the pid file, then lets just check if it is
* still valid */
if (s->main_pid_known) {
/* If it's an alien child let's check if it is still
* alive ... */
if (s->main_pid_alien && s->main_pid > 0)
return pid_is_alive(s->main_pid);
/* .. otherwise assume we'll get a SIGCHLD for it,
* which we really should wait for to collect exit
* status and code */
return s->main_pid > 0;
}
/* We don't know the pid */
return -EAGAIN;
}
assert(s);
return s->control_pid > 0;
}
static int cgroup_good(Service *s) {
int r;
assert(s);
if (!UNIT(s)->cgroup_path)
return 0;
if (r < 0)
return r;
return !r;
}
int r;
assert(s);
if (f != SERVICE_SUCCESS)
s->result = f;
if (s->result != SERVICE_SUCCESS) {
}
if (allow_restart &&
!s->forbid_restart &&
(s->restart == SERVICE_RESTART_ALWAYS ||
(s->restart == SERVICE_RESTART_ON_ABNORMAL && !IN_SET(s->result, SERVICE_SUCCESS, SERVICE_FAILURE_EXIT_CODE)) ||
(s->restart == SERVICE_RESTART_ON_ABORT && IN_SET(s->result, SERVICE_FAILURE_SIGNAL, SERVICE_FAILURE_CORE_DUMP)) ||
(s->main_exec_status.code == CLD_EXITED && set_contains(s->restart_force_status.status, INT_TO_PTR(s->main_exec_status.status))) ||
(IN_SET(s->main_exec_status.code, CLD_KILLED, CLD_DUMPED) && set_contains(s->restart_force_status.signal, INT_TO_PTR(s->main_exec_status.status)))) &&
(s->main_exec_status.code != CLD_EXITED || !set_contains(s->restart_prevent_status.status, INT_TO_PTR(s->main_exec_status.status))) &&
(!IN_SET(s->main_exec_status.code, CLD_KILLED, CLD_DUMPED) || !set_contains(s->restart_prevent_status.signal, INT_TO_PTR(s->main_exec_status.status)))) {
r = service_arm_timer(s, s->restart_usec);
if (r < 0)
goto fail;
}
s->forbid_restart = false;
/* We want fresh tmpdirs in case service is started again immediately */
/* Also, remove the runtime directory in */
exec_context_destroy_runtime_directory(&s->exec_context, manager_get_runtime_prefix(UNIT(s)->manager));
/* Try to delete the pid file. At this point it will be
* out-of-date, and some software might be confused by it, so
* let's remove it. */
if (s->pid_file)
unlink_noerrno(s->pid_file);
return;
fail:
service_enter_dead(s, SERVICE_FAILURE_RESOURCES, false);
}
int r;
assert(s);
if (f != SERVICE_SUCCESS)
s->result = f;
unit_watch_all_pids(UNIT(s));
if (s->control_command) {
r = service_spawn(s,
s->control_command,
false,
true,
true,
&s->control_pid);
if (r < 0)
goto fail;
} else
return;
fail:
}
int r;
assert(s);
if (f != SERVICE_SUCCESS)
s->result = f;
unit_watch_all_pids(UNIT(s));
r = unit_kill_context(
UNIT(s),
&s->kill_context,
(state != SERVICE_STOP_SIGTERM && state != SERVICE_FINAL_SIGTERM && state != SERVICE_STOP_SIGABRT) ?
s->main_pid,
s->control_pid,
s->main_pid_alien);
if (r < 0)
goto fail;
if (r > 0) {
if (s->timeout_stop_usec > 0) {
r = service_arm_timer(s, s->timeout_stop_usec);
if (r < 0)
goto fail;
}
service_set_state(s, state);
else if (state == SERVICE_STOP_SIGKILL)
else if (state == SERVICE_FINAL_SIGTERM)
else
service_enter_dead(s, SERVICE_SUCCESS, true);
return;
fail:
else
service_enter_dead(s, SERVICE_FAILURE_RESOURCES, true);
}
static void service_enter_stop_by_notify(Service *s) {
assert(s);
unit_watch_all_pids(UNIT(s));
if (s->timeout_stop_usec > 0)
service_arm_timer(s, s->timeout_stop_usec);
/* The service told us it's stopping, so it's as if we SIGTERM'd it. */
}
int r;
assert(s);
if (f != SERVICE_SUCCESS)
s->result = f;
unit_watch_all_pids(UNIT(s));
if (s->control_command) {
r = service_spawn(s,
s->control_command,
false,
false,
true,
&s->control_pid);
if (r < 0)
goto fail;
} else
return;
fail:
}
int main_pid_ok, cgroup_ok;
assert(s);
if (f != SERVICE_SUCCESS)
s->result = f;
main_pid_ok = main_pid_good(s);
cgroup_ok = cgroup_good(s);
/* If there are any queued up sd_notify()
* notifications, process them now */
if (s->notify_state == NOTIFY_RELOADING)
else if (s->notify_state == NOTIFY_STOPPING)
else
} else if (s->remain_after_exit)
else
}
static void service_enter_start_post(Service *s) {
int r;
assert(s);
if (s->control_command) {
r = service_spawn(s,
s->control_command,
false,
false,
true,
&s->control_pid);
if (r < 0)
goto fail;
} else
return;
fail:
}
static void service_kill_control_processes(Service *s) {
char *p;
if (!UNIT(s)->cgroup_path)
return;
}
static void service_enter_start(Service *s) {
ExecCommand *c;
int r;
assert(s);
/* We want to ensure that nobody leaks processes from
* START_PRE here, so let's go on a killing spree, People
* should not spawn long running processes from START_PRE. */
if (s->type == SERVICE_FORKING) {
s->main_command = NULL;
} else {
s->control_command = NULL;
}
if (!c) {
return;
}
r = service_spawn(s,
c,
IN_SET(s->type, SERVICE_FORKING, SERVICE_DBUS, SERVICE_NOTIFY, SERVICE_ONESHOT) ? s->timeout_start_usec : 0,
true,
true,
true,
true,
false,
&pid);
if (r < 0)
goto fail;
/* For simple services we immediately start
* the START_POST binaries. */
service_set_main_pid(s, pid);
} else if (s->type == SERVICE_FORKING) {
/* For forking services we wait until the start
* process exited. */
s->control_pid = pid;
} else if (s->type == SERVICE_ONESHOT ||
s->type == SERVICE_DBUS ||
s->type == SERVICE_NOTIFY) {
/* For oneshot services we wait until the start
* process exited, too, but it is our main process. */
/* For D-Bus services we know the main pid right away,
* but wait for the bus name to appear on the
* bus. Notify services are similar. */
service_set_main_pid(s, pid);
} else
assert_not_reached("Unknown service type");
return;
fail:
}
static void service_enter_start_pre(Service *s) {
int r;
assert(s);
if (s->control_command) {
/* Before we start anything, let's clear up what might
* be left from previous runs. */
r = service_spawn(s,
s->control_command,
false,
true,
true,
&s->control_pid);
if (r < 0)
goto fail;
} else
return;
fail:
service_enter_dead(s, SERVICE_FAILURE_RESOURCES, true);
}
static void service_enter_restart(Service *s) {
int r;
assert(s);
/* Don't restart things if we are going down anyway */
r = service_arm_timer(s, s->restart_usec);
if (r < 0)
goto fail;
return;
}
/* Any units that are bound to this service must also be
* restarted. We use JOB_RESTART (instead of the more obvious
* JOB_START) here so that those dependency jobs will be added
* as well. */
if (r < 0)
goto fail;
/* Note that we stay in the SERVICE_AUTO_RESTART state here,
* it will be canceled as part of the service_stop() call that
* is executed as part of JOB_RESTART. */
return;
fail:
log_unit_warning(UNIT(s)->id, "%s failed to schedule restart job: %s", UNIT(s)->id, bus_error_message(&error, -r));
service_enter_dead(s, SERVICE_FAILURE_RESOURCES, false);
}
static void service_enter_reload_by_notify(Service *s) {
assert(s);
if (s->timeout_start_usec > 0)
service_arm_timer(s, s->timeout_start_usec);
}
static void service_enter_reload(Service *s) {
int r;
assert(s);
if (s->control_command) {
r = service_spawn(s,
s->control_command,
false,
false,
true,
&s->control_pid);
if (r < 0)
goto fail;
} else
return;
fail:
}
static void service_run_next_control(Service *s) {
int r;
assert(s);
assert(s->control_command);
r = service_spawn(s,
s->control_command,
IN_SET(s->state, SERVICE_START_PRE, SERVICE_START, SERVICE_START_POST, SERVICE_RUNNING, SERVICE_RELOAD) ? s->timeout_start_usec : s->timeout_stop_usec,
false,
s->control_command_id == SERVICE_EXEC_START_PRE ||
true,
&s->control_pid);
if (r < 0)
goto fail;
return;
fail:
if (s->state == SERVICE_START_PRE)
else if (s->state == SERVICE_STOP)
else if (s->state == SERVICE_STOP_POST)
service_enter_dead(s, SERVICE_FAILURE_RESOURCES, true);
else if (s->state == SERVICE_RELOAD) {
} else
}
static void service_run_next_main(Service *s) {
int r;
assert(s);
assert(s->main_command);
r = service_spawn(s,
s->main_command,
true,
true,
true,
true,
false,
&pid);
if (r < 0)
goto fail;
service_set_main_pid(s, pid);
return;
fail:
}
static int service_start_limit_test(Service *s) {
assert(s);
if (ratelimit_test(&s->start_limit))
return 0;
}
static int service_start(Unit *u) {
int r;
assert(s);
/* We cannot fulfill this request right now, try again later
* please! */
if (s->state == SERVICE_STOP ||
s->state == SERVICE_STOP_SIGABRT ||
s->state == SERVICE_STOP_SIGTERM ||
s->state == SERVICE_STOP_SIGKILL ||
s->state == SERVICE_STOP_POST ||
s->state == SERVICE_FINAL_SIGTERM ||
s->state == SERVICE_FINAL_SIGKILL)
return -EAGAIN;
/* Already on it! */
if (s->state == SERVICE_START_PRE ||
s->state == SERVICE_START ||
s->state == SERVICE_START_POST)
return 0;
/* A service that will be restarted must be stopped first to
* does not want to wait for the holdoff time to elapse, the
* service should be manually restarted, not started. We
* simply return EAGAIN here, so that any start jobs stay
* queued, and assume that the auto restart timer will
* eventually trigger the restart. */
if (s->state == SERVICE_AUTO_RESTART)
return -EAGAIN;
/* Make sure we don't enter a busy loop of some kind. */
r = service_start_limit_test(s);
if (r < 0) {
service_enter_dead(s, SERVICE_FAILURE_START_LIMIT, false);
return r;
}
s->result = SERVICE_SUCCESS;
s->reload_result = SERVICE_SUCCESS;
s->main_pid_known = false;
s->main_pid_alien = false;
s->forbid_restart = false;
s->reset_cpu_usage = true;
free(s->status_text);
s->status_text = NULL;
s->status_errno = 0;
s->notify_state = NOTIFY_UNKNOWN;
return 1;
}
static int service_stop(Unit *u) {
assert(s);
/* Don't create restart jobs from here. */
s->forbid_restart = true;
/* Already on it */
if (s->state == SERVICE_STOP ||
s->state == SERVICE_STOP_SIGABRT ||
s->state == SERVICE_STOP_SIGTERM ||
s->state == SERVICE_STOP_SIGKILL ||
s->state == SERVICE_STOP_POST ||
s->state == SERVICE_FINAL_SIGTERM ||
s->state == SERVICE_FINAL_SIGKILL)
return 0;
/* A restart will be scheduled or is in progress. */
if (s->state == SERVICE_AUTO_RESTART) {
return 0;
}
/* If there's already something running we go directly into
* kill mode. */
if (s->state == SERVICE_START_PRE ||
s->state == SERVICE_START ||
s->state == SERVICE_START_POST ||
s->state == SERVICE_RELOAD) {
return 0;
}
s->state == SERVICE_EXITED);
return 1;
}
static int service_reload(Unit *u) {
assert(s);
return 0;
}
assert(s);
return !!s->exec_command[SERVICE_EXEC_RELOAD];
}
assert(u);
assert(f);
if (s->control_pid > 0)
s->control_pid);
if (s->main_pid_known && s->main_pid > 0)
if (s->status_text)
/* FIXME: There's a minor uncleanliness here: if there are
* multiple commands attached here, we will start from the
* first one again */
if (s->control_command_id >= 0)
unit_serialize_item(u, f, "control-command",
if (s->socket_fd >= 0) {
int copy;
if (copy < 0)
return copy;
}
if (s->bus_endpoint_fd >= 0) {
int copy;
if (copy < 0)
return copy;
}
int copy;
if (copy < 0)
return copy;
}
if (s->main_exec_status.pid > 0) {
s->main_exec_status.pid);
dual_timestamp_serialize(f, "main-exec-status-start",
dual_timestamp_serialize(f, "main-exec-status-exit",
s->main_exec_status.code);
s->main_exec_status.status);
}
}
if (dual_timestamp_is_set(&s->watchdog_timestamp))
if (s->forbid_restart)
return 0;
}
int r;
assert(u);
if (state < 0)
else
s->deserialized_state = state;
if (f < 0)
else if (f != SERVICE_SUCCESS)
s->result = f;
if (f < 0)
else if (f != SERVICE_SUCCESS)
s->reload_result = f;
else
s->control_pid = pid;
else {
service_set_main_pid(s, pid);
}
int b;
b = parse_boolean(value);
if (b < 0)
else
s->main_pid_known = b;
char *t;
if (!t)
log_oom();
else {
free(s->status_text);
s->status_text = t;
}
if (id < 0)
else {
s->control_command_id = id;
}
int fd;
else {
}
int fd;
else {
}
int fd;
else {
r = service_add_fd_store(s, fd);
if (r < 0)
else if (r > 0)
}
else
int i;
else
s->main_exec_status.code = i;
int i;
else
s->main_exec_status.status = i;
int b;
b = parse_boolean(value);
if (b < 0)
else
s->forbid_restart = b;
} else
return 0;
}
const UnitActiveState *table;
assert(u);
}
static const char *service_sub_state_to_string(Unit *u) {
assert(u);
}
static bool service_check_gc(Unit *u) {
assert(s);
/* Never clean up services that still have a process around,
* even if the service is formally dead. */
if (cgroup_good(s) > 0 ||
main_pid_good(s) > 0 ||
control_pid_good(s) > 0)
return true;
return false;
}
assert(s);
return s->socket_fd < 0;
}
static int service_retry_pid_file(Service *s) {
int r;
r = service_load_pid_file(s, false);
if (r < 0)
return r;
return 0;
}
static int service_watch_pid_file(Service *s) {
int r;
log_unit_debug(UNIT(s)->id, "Setting watch for %s's PID file %s", UNIT(s)->id, s->pid_file_pathspec->path);
if (r < 0)
goto fail;
/* the pidfile might have appeared just before we set the watch */
log_unit_debug(UNIT(s)->id, "Trying to read %s's PID file %s in case it changed", UNIT(s)->id, s->pid_file_pathspec->path);
return 0;
fail:
log_unit_error_errno(UNIT(s)->id, r, "Failed to set a watch for %s's PID file %s: %m", UNIT(s)->id, s->pid_file_pathspec->path);
return r;
}
static int service_demand_pid_file(Service *s) {
assert(!s->pid_file_pathspec);
if (!ps)
return -ENOMEM;
return -ENOMEM;
}
/* PATH_CHANGED would not be enough. There are daemons (sendmail) that
* keep their PID file open all the time. */
s->pid_file_pathspec = ps;
return service_watch_pid_file(s);
}
Service *s;
assert(p);
assert(s);
assert(s->pid_file_pathspec);
if (path_spec_fd_event(p, events) < 0)
goto fail;
if (service_retry_pid_file(s) == 0)
return 0;
if (service_watch_pid_file(s) < 0)
goto fail;
return 0;
fail:
return 0;
}
static void service_notify_cgroup_empty_event(Unit *u) {
assert(u);
switch (s->state) {
/* Waiting for SIGCHLD is usually more interesting,
* why we ignore the cgroup events for most cases,
* except when we don't know pid which to expect the
* SIGCHLD for. */
case SERVICE_START:
case SERVICE_START_POST:
/* If we were hoping for the daemon to write its PID file,
* we can give up now. */
if (s->pid_file_pathspec) {
if (s->state == SERVICE_START)
else
}
break;
case SERVICE_RUNNING:
/* service_enter_running() will figure out what to do */
break;
case SERVICE_STOP_SIGABRT:
case SERVICE_STOP_SIGTERM:
case SERVICE_STOP_SIGKILL:
if (main_pid_good(s) <= 0 && !control_pid_good(s))
break;
case SERVICE_STOP_POST:
case SERVICE_FINAL_SIGTERM:
case SERVICE_FINAL_SIGKILL:
if (main_pid_good(s) <= 0 && !control_pid_good(s))
service_enter_dead(s, SERVICE_SUCCESS, true);
break;
default:
;
}
}
assert(s);
f = SERVICE_SUCCESS;
else if (code == CLD_EXITED)
else if (code == CLD_KILLED)
else if (code == CLD_DUMPED)
else
assert_not_reached("Unknown code");
/* Forking services may occasionally move to a new PID.
* As long as they update the PID file before exiting the old
* PID, they're fine. */
if (service_load_pid_file(s, false) == 0)
return;
s->main_pid = 0;
if (s->main_command) {
/* If this is not a forking service than the
* main process got started and hence we copy
* the exit status so that it is recorded both
* as main and as control process exit
* status */
if (s->main_command->ignore)
f = SERVICE_SUCCESS;
} else if (s->exec_command[SERVICE_EXEC_START]) {
/* If this is a forked process, then we should
* ignore the return value if this was
* configured for the starter process */
f = SERVICE_SUCCESS;
}
log_unit_struct(u->id,
LOG_MESSAGE("%s: main process exited, code=%s, status=%i/%s",
: signal_to_string(status))),
"EXIT_STATUS=%i", status,
NULL);
if (f != SERVICE_SUCCESS)
s->result = f;
if (s->main_command &&
s->main_command->command_next &&
f == SERVICE_SUCCESS) {
/* There is another command to *
* execute, so let's do that. */
log_unit_debug(u->id, "%s running next main command for state %s", u->id, service_state_to_string(s->state));
} else {
/* The service exited, so the service is officially
* gone. */
s->main_command = NULL;
switch (s->state) {
case SERVICE_START_POST:
case SERVICE_RELOAD:
case SERVICE_STOP:
/* Need to wait until the operation is
* done */
break;
case SERVICE_START:
if (s->type == SERVICE_ONESHOT) {
/* This was our main goal, so let's go on */
if (f == SERVICE_SUCCESS)
else
break;
}
/* Fall through */
case SERVICE_RUNNING:
service_enter_running(s, f);
break;
case SERVICE_STOP_SIGABRT:
case SERVICE_STOP_SIGTERM:
case SERVICE_STOP_SIGKILL:
if (!control_pid_good(s))
service_enter_stop_post(s, f);
/* If there is still a control process, wait for that first */
break;
case SERVICE_STOP_POST:
case SERVICE_FINAL_SIGTERM:
case SERVICE_FINAL_SIGKILL:
if (!control_pid_good(s))
service_enter_dead(s, f, true);
break;
default:
assert_not_reached("Uh, main process died at wrong time.");
}
}
} else if (s->control_pid == pid) {
s->control_pid = 0;
if (s->control_command) {
if (s->control_command->ignore)
f = SERVICE_SUCCESS;
}
log_unit_full(u->id,
"%s: control process exited, code=%s status=%i",
if (f != SERVICE_SUCCESS)
s->result = f;
/* Immediately get rid of the cgroup, so that the
* kernel doesn't delay the cgroup empty messages for
* the service cgroup any longer than necessary */
if (s->control_command &&
s->control_command->command_next &&
f == SERVICE_SUCCESS) {
/* There is another command to *
* execute, so let's do that. */
log_unit_debug(u->id, "%s running next control command for state %s", u->id, service_state_to_string(s->state));
} else {
/* No further commands for this step, so let's
* figure out what to do next */
s->control_command = NULL;
log_unit_debug(u->id, "%s got final SIGCHLD for state %s", u->id, service_state_to_string(s->state));
switch (s->state) {
case SERVICE_START_PRE:
if (f == SERVICE_SUCCESS)
else
break;
case SERVICE_START:
if (s->type != SERVICE_FORKING)
/* Maybe spurious event due to a reload that changed the type? */
break;
if (f != SERVICE_SUCCESS) {
break;
}
if (s->pid_file) {
bool has_start_post;
int r;
/* Let's try to load the pid file here if we can.
* The PID file might actually be created by a START_POST
* script. In that case don't worry if the loading fails. */
r = service_load_pid_file(s, !has_start_post);
if (!has_start_post && r < 0) {
r = service_demand_pid_file(s);
if (r < 0 || !cgroup_good(s))
break;
}
} else
break;
case SERVICE_START_POST:
if (f != SERVICE_SUCCESS) {
service_enter_stop(s, f);
break;
}
if (s->pid_file) {
int r;
r = service_load_pid_file(s, true);
if (r < 0) {
r = service_demand_pid_file(s);
if (r < 0 || !cgroup_good(s))
break;
}
} else
break;
case SERVICE_RELOAD:
if (f == SERVICE_SUCCESS) {
service_load_pid_file(s, true);
}
s->reload_result = f;
break;
case SERVICE_STOP:
break;
case SERVICE_STOP_SIGABRT:
case SERVICE_STOP_SIGTERM:
case SERVICE_STOP_SIGKILL:
if (main_pid_good(s) <= 0)
service_enter_stop_post(s, f);
/* If there is still a service
* process around, wait until
* that one quit, too */
break;
case SERVICE_STOP_POST:
case SERVICE_FINAL_SIGTERM:
case SERVICE_FINAL_SIGKILL:
if (main_pid_good(s) <= 0)
service_enter_dead(s, f, true);
break;
default:
assert_not_reached("Uh, control process died at wrong time.");
}
}
}
/* Notify clients about changed exit status */
/* We got one SIGCHLD for the service, let's watch all
* processes that are now running of the service, and watch
* that. Among the PIDs we then watch will be children
* reassigned to us, which hopefully allows us to identify
* when all children are gone */
/* If the PID set is empty now, then let's finish this off */
if (set_isempty(u->pids))
}
assert(s);
switch (s->state) {
case SERVICE_START_PRE:
case SERVICE_START:
log_unit_warning(UNIT(s)->id, "%s %s operation timed out. Terminating.", UNIT(s)->id, s->state == SERVICE_START ? "start" : "start-pre");
break;
case SERVICE_START_POST:
break;
case SERVICE_RELOAD:
break;
case SERVICE_STOP:
break;
case SERVICE_STOP_SIGABRT:
break;
case SERVICE_STOP_SIGTERM:
if (s->kill_context.send_sigkill) {
} else {
}
break;
case SERVICE_STOP_SIGKILL:
/* Uh, we sent a SIGKILL and it is still not gone?
* Must be something we cannot kill, so let's just be
* weirded out and continue */
break;
case SERVICE_STOP_POST:
break;
case SERVICE_FINAL_SIGTERM:
if (s->kill_context.send_sigkill) {
} else {
log_unit_warning(UNIT(s)->id, "%s stop-final-sigterm timed out. Skipping SIGKILL. Entering failed mode.", UNIT(s)->id);
service_enter_dead(s, SERVICE_FAILURE_TIMEOUT, false);
}
break;
case SERVICE_FINAL_SIGKILL:
log_unit_warning(UNIT(s)->id, "%s still around after final SIGKILL. Entering failed mode.", UNIT(s)->id);
service_enter_dead(s, SERVICE_FAILURE_TIMEOUT, true);
break;
case SERVICE_AUTO_RESTART:
s->restart_usec > 0 ?
"%s holdoff time over, scheduling restart." :
"%s has no holdoff time, scheduling restart.",
break;
default:
assert_not_reached("Timeout at wrong time.");
}
return 0;
}
char t[FORMAT_TIMESPAN_MAX];
assert(s);
return 0;
}
bool notify_dbus = false;
const char *e;
assert(u);
if (s->notify_access == NOTIFY_NONE) {
log_unit_warning(u->id, "%s: Got notification message from PID "PID_FMT", but reception is disabled.", u->id, pid);
return;
}
if (s->main_pid != 0)
log_unit_warning(u->id, "%s: Got notification message from PID "PID_FMT", but reception only permitted for main PID "PID_FMT, u->id, pid, s->main_pid);
else
log_unit_debug(u->id, "%s: Got notification message from PID "PID_FMT", but reception only permitted for main PID which is currently not known", u->id, pid);
return;
}
/* Interpret MAINPID= */
else {
service_set_main_pid(s, pid);
notify_dbus = true;
}
}
/* Interpret RELOADING= */
s->notify_state = NOTIFY_RELOADING;
if (s->state == SERVICE_RUNNING)
notify_dbus = true;
}
/* Interpret READY= */
s->notify_state = NOTIFY_READY;
/* Type=notify services inform us about completed
* initialization with READY=1 */
/* Sending READY=1 while we are reloading informs us
* that the reloading is complete */
notify_dbus = true;
}
/* Interpret STOPPING= */
s->notify_state = NOTIFY_STOPPING;
if (s->state == SERVICE_RUNNING)
notify_dbus = true;
}
/* Interpret STATUS= */
if (e) {
_cleanup_free_ char *t = NULL;
if (!isempty(e)) {
if (!utf8_is_valid(e))
else {
t = strdup(e);
if (!t)
log_oom();
}
}
if (!streq_ptr(s->status_text, t)) {
free(s->status_text);
s->status_text = t;
t = NULL;
notify_dbus = true;
}
}
/* Interpret ERRNO= */
if (e) {
int status_errno;
else {
if (s->status_errno != status_errno) {
s->status_errno = status_errno;
notify_dbus = true;
}
}
}
/* Interpret WATCHDOG= */
}
/* Add the passed fds to the fd store */
}
/* Notify clients about changed status or main pid */
if (notify_dbus)
}
int r;
if (!s->timer_event_source)
return 0;
if (r < 0)
return r;
return 1;
}
static void service_bus_name_owner_change(
Unit *u,
const char *name,
const char *old_owner,
const char *new_owner) {
int r;
assert(s);
log_unit_debug(u->id, "%s's D-Bus name %s changed owner from %s to %s", u->id, name, old_owner, new_owner);
else if (old_owner)
else
s->bus_name_good = !!new_owner;
if (s->type == SERVICE_DBUS) {
/* service_enter_running() will figure out what to
* do */
if (s->state == SERVICE_RUNNING)
} else if (new_owner &&
s->main_pid <= 0 &&
(s->state == SERVICE_START ||
s->state == SERVICE_START_POST ||
s->state == SERVICE_RUNNING ||
s->state == SERVICE_RELOAD)) {
/* Try to acquire PID from bus service */
if (r >= 0)
if (r >= 0) {
log_unit_debug(u->id, "%s's D-Bus name %s is now owned by process %u", u->id, name, (unsigned) pid);
service_set_main_pid(s, pid);
}
}
}
int r;
assert(s);
/* This is called by the socket code when instantiating a new
* service for a stream socket and the socket needs to be
* configured. */
return -EINVAL;
if (s->socket_fd >= 0)
return -EBUSY;
if (s->state != SERVICE_DEAD)
return -EAGAIN;
if (UNIT(s)->description) {
_cleanup_free_ char *a;
if (!a)
return -ENOMEM;
r = unit_set_description(UNIT(s), a);
} else
if (r < 0)
return r;
}
}
static void service_reset_failed(Unit *u) {
assert(s);
if (s->state == SERVICE_FAILED)
s->result = SERVICE_SUCCESS;
s->reload_result = SERVICE_SUCCESS;
}
}
static const char* const service_state_table[_SERVICE_STATE_MAX] = {
[SERVICE_DEAD] = "dead",
[SERVICE_START_PRE] = "start-pre",
[SERVICE_START] = "start",
[SERVICE_START_POST] = "start-post",
[SERVICE_RUNNING] = "running",
[SERVICE_EXITED] = "exited",
[SERVICE_RELOAD] = "reload",
[SERVICE_STOP] = "stop",
[SERVICE_STOP_SIGABRT] = "stop-sigabrt",
[SERVICE_STOP_SIGTERM] = "stop-sigterm",
[SERVICE_STOP_SIGKILL] = "stop-sigkill",
[SERVICE_STOP_POST] = "stop-post",
[SERVICE_FINAL_SIGTERM] = "final-sigterm",
[SERVICE_FINAL_SIGKILL] = "final-sigkill",
[SERVICE_FAILED] = "failed",
[SERVICE_AUTO_RESTART] = "auto-restart",
};
static const char* const service_restart_table[_SERVICE_RESTART_MAX] = {
[SERVICE_RESTART_NO] = "no",
[SERVICE_RESTART_ON_SUCCESS] = "on-success",
[SERVICE_RESTART_ON_FAILURE] = "on-failure",
[SERVICE_RESTART_ON_ABNORMAL] = "on-abnormal",
[SERVICE_RESTART_ON_WATCHDOG] = "on-watchdog",
[SERVICE_RESTART_ON_ABORT] = "on-abort",
[SERVICE_RESTART_ALWAYS] = "always",
};
static const char* const service_type_table[_SERVICE_TYPE_MAX] = {
[SERVICE_SIMPLE] = "simple",
[SERVICE_FORKING] = "forking",
[SERVICE_ONESHOT] = "oneshot",
[SERVICE_DBUS] = "dbus",
[SERVICE_NOTIFY] = "notify",
[SERVICE_IDLE] = "idle"
};
static const char* const service_exec_command_table[_SERVICE_EXEC_COMMAND_MAX] = {
[SERVICE_EXEC_START_PRE] = "ExecStartPre",
[SERVICE_EXEC_START] = "ExecStart",
[SERVICE_EXEC_START_POST] = "ExecStartPost",
[SERVICE_EXEC_RELOAD] = "ExecReload",
[SERVICE_EXEC_STOP] = "ExecStop",
[SERVICE_EXEC_STOP_POST] = "ExecStopPost",
};
static const char* const notify_access_table[_NOTIFY_ACCESS_MAX] = {
[NOTIFY_NONE] = "none",
[NOTIFY_MAIN] = "main",
[NOTIFY_ALL] = "all"
};
static const char* const notify_state_table[_NOTIFY_STATE_MAX] = {
[NOTIFY_UNKNOWN] = "unknown",
[NOTIFY_READY] = "ready",
[NOTIFY_RELOADING] = "reloading",
[NOTIFY_STOPPING] = "stopping",
};
static const char* const service_result_table[_SERVICE_RESULT_MAX] = {
[SERVICE_SUCCESS] = "success",
[SERVICE_FAILURE_RESOURCES] = "resources",
[SERVICE_FAILURE_TIMEOUT] = "timeout",
[SERVICE_FAILURE_EXIT_CODE] = "exit-code",
[SERVICE_FAILURE_SIGNAL] = "signal",
[SERVICE_FAILURE_CORE_DUMP] = "core-dump",
[SERVICE_FAILURE_WATCHDOG] = "watchdog",
[SERVICE_FAILURE_START_LIMIT] = "start-limit"
};
const UnitVTable service_vtable = {
.object_size = sizeof(Service),
.sections =
"Unit\0"
"Service\0"
"Install\0",
.private_section = "Service",
.init = service_init,
.done = service_done,
.load = service_load,
.dump = service_dump,
.start = service_start,
.stop = service_stop,
.reload = service_reload,
.kill = service_kill,
.bus_interface = "org.freedesktop.systemd1.Service",
.can_transient = true,
.starting_stopping = {
[0] = "Starting %s...",
[1] = "Stopping %s...",
},
.finished_start_job = {
[JOB_DONE] = "Started %s.",
[JOB_FAILED] = "Failed to start %s.",
[JOB_DEPENDENCY] = "Dependency failed for %s.",
[JOB_TIMEOUT] = "Timed out starting %s.",
},
.finished_stop_job = {
[JOB_DONE] = "Stopped %s.",
[JOB_FAILED] = "Stopped (with error) %s.",
[JOB_TIMEOUT] = "Timed out stopping %s.",
},
},
};