2010-04-14 04:48:59 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2010 The Android Open Source Project
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <errno.h>
|
2015-02-07 05:15:18 +01:00
|
|
|
#include <fcntl.h>
|
2010-04-14 04:48:59 +02:00
|
|
|
#include <signal.h>
|
2015-02-07 05:15:18 +01:00
|
|
|
#include <stdio.h>
|
2010-04-14 04:48:59 +02:00
|
|
|
#include <sys/socket.h>
|
2015-03-28 07:20:44 +01:00
|
|
|
#include <sys/types.h>
|
2010-04-14 04:48:59 +02:00
|
|
|
#include <sys/wait.h>
|
2015-03-28 07:20:44 +01:00
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include <base/stringprintf.h>
|
2011-03-08 08:29:42 +01:00
|
|
|
#include <cutils/android_reboot.h>
|
2011-09-02 02:09:44 +02:00
|
|
|
#include <cutils/list.h>
|
2015-03-28 07:20:44 +01:00
|
|
|
#include <cutils/sockets.h>
|
2010-04-14 04:48:59 +02:00
|
|
|
|
2015-07-24 02:53:11 +02:00
|
|
|
#include "action.h"
|
2010-04-14 04:48:59 +02:00
|
|
|
#include "init.h"
|
2010-04-20 02:05:34 +02:00
|
|
|
#include "log.h"
|
2015-02-07 05:15:18 +01:00
|
|
|
#include "util.h"
|
2010-04-14 04:48:59 +02:00
|
|
|
|
2015-03-28 07:20:44 +01:00
|
|
|
#define CRITICAL_CRASH_THRESHOLD 4 /* if we crash >4 times ... */
|
|
|
|
#define CRITICAL_CRASH_WINDOW (4*60) /* ... in 4 minutes, goto recovery */
|
|
|
|
|
2015-04-25 02:43:21 +02:00
|
|
|
static int signal_write_fd = -1;
|
|
|
|
static int signal_read_fd = -1;
|
2010-04-14 04:48:59 +02:00
|
|
|
|
2015-04-25 02:43:21 +02:00
|
|
|
static std::string DescribeStatus(int status) {
|
2015-03-28 07:20:44 +01:00
|
|
|
if (WIFEXITED(status)) {
|
|
|
|
return android::base::StringPrintf("exited with status %d", WEXITSTATUS(status));
|
|
|
|
} else if (WIFSIGNALED(status)) {
|
|
|
|
return android::base::StringPrintf("killed by signal %d", WTERMSIG(status));
|
|
|
|
} else if (WIFSTOPPED(status)) {
|
|
|
|
return android::base::StringPrintf("stopped by signal %d", WSTOPSIG(status));
|
|
|
|
} else {
|
|
|
|
return "state changed";
|
|
|
|
}
|
|
|
|
}
|
2010-04-14 04:48:59 +02:00
|
|
|
|
2015-04-25 02:43:21 +02:00
|
|
|
static bool wait_for_one_process() {
|
2010-04-14 04:48:59 +02:00
|
|
|
int status;
|
2015-02-07 05:15:18 +01:00
|
|
|
pid_t pid = TEMP_FAILURE_RETRY(waitpid(-1, &status, WNOHANG));
|
2015-04-25 02:43:21 +02:00
|
|
|
if (pid == 0) {
|
|
|
|
return false;
|
|
|
|
} else if (pid == -1) {
|
|
|
|
ERROR("waitpid failed: %s\n", strerror(errno));
|
|
|
|
return false;
|
2015-02-07 05:15:18 +01:00
|
|
|
}
|
2010-04-14 04:48:59 +02:00
|
|
|
|
2015-02-07 05:15:18 +01:00
|
|
|
service* svc = service_find_by_pid(pid);
|
2015-03-28 07:20:44 +01:00
|
|
|
|
|
|
|
std::string name;
|
|
|
|
if (svc) {
|
|
|
|
name = android::base::StringPrintf("Service '%s' (pid %d)", svc->name, pid);
|
|
|
|
} else {
|
|
|
|
name = android::base::StringPrintf("Untracked pid %d", pid);
|
|
|
|
}
|
|
|
|
|
|
|
|
NOTICE("%s %s\n", name.c_str(), DescribeStatus(status).c_str());
|
|
|
|
|
2010-04-14 04:48:59 +02:00
|
|
|
if (!svc) {
|
2015-04-25 02:43:21 +02:00
|
|
|
return true;
|
2010-04-14 04:48:59 +02:00
|
|
|
}
|
|
|
|
|
2015-02-07 05:15:18 +01:00
|
|
|
// TODO: all the code from here down should be a member function on service.
|
|
|
|
|
2012-01-26 05:48:46 +01:00
|
|
|
if (!(svc->flags & SVC_ONESHOT) || (svc->flags & SVC_RESTART)) {
|
2015-03-28 07:20:44 +01:00
|
|
|
NOTICE("Service '%s' (pid %d) killing any children in process group\n", svc->name, pid);
|
2015-02-07 05:15:18 +01:00
|
|
|
kill(-pid, SIGKILL);
|
2010-04-14 04:48:59 +02:00
|
|
|
}
|
|
|
|
|
2015-02-07 05:15:18 +01:00
|
|
|
// Remove any sockets we may have created.
|
|
|
|
for (socketinfo* si = svc->sockets; si; si = si->next) {
|
2010-04-14 04:48:59 +02:00
|
|
|
char tmp[128];
|
|
|
|
snprintf(tmp, sizeof(tmp), ANDROID_SOCKET_DIR"/%s", si->name);
|
|
|
|
unlink(tmp);
|
|
|
|
}
|
|
|
|
|
2015-02-07 05:15:18 +01:00
|
|
|
if (svc->flags & SVC_EXEC) {
|
|
|
|
INFO("SVC_EXEC pid %d finished...\n", svc->pid);
|
|
|
|
waiting_for_exec = false;
|
|
|
|
list_remove(&svc->slist);
|
|
|
|
free(svc->name);
|
|
|
|
free(svc);
|
2015-04-25 02:43:21 +02:00
|
|
|
return true;
|
2015-02-07 05:15:18 +01:00
|
|
|
}
|
|
|
|
|
2010-04-14 04:48:59 +02:00
|
|
|
svc->pid = 0;
|
|
|
|
svc->flags &= (~SVC_RUNNING);
|
|
|
|
|
2015-02-07 05:15:18 +01:00
|
|
|
// Oneshot processes go into the disabled state on exit,
|
|
|
|
// except when manually restarted.
|
2012-01-26 05:48:46 +01:00
|
|
|
if ((svc->flags & SVC_ONESHOT) && !(svc->flags & SVC_RESTART)) {
|
2010-04-14 04:48:59 +02:00
|
|
|
svc->flags |= SVC_DISABLED;
|
|
|
|
}
|
|
|
|
|
2015-02-07 05:15:18 +01:00
|
|
|
// Disabled and reset processes do not get restarted automatically.
|
|
|
|
if (svc->flags & (SVC_DISABLED | SVC_RESET)) {
|
|
|
|
svc->NotifyStateChange("stopped");
|
2015-04-25 02:43:21 +02:00
|
|
|
return true;
|
2010-04-14 04:48:59 +02:00
|
|
|
}
|
|
|
|
|
2015-02-07 05:15:18 +01:00
|
|
|
time_t now = gettime();
|
2012-01-26 05:48:46 +01:00
|
|
|
if ((svc->flags & SVC_CRITICAL) && !(svc->flags & SVC_RESTART)) {
|
2010-04-14 04:48:59 +02:00
|
|
|
if (svc->time_crashed + CRITICAL_CRASH_WINDOW >= now) {
|
|
|
|
if (++svc->nr_crashed > CRITICAL_CRASH_THRESHOLD) {
|
|
|
|
ERROR("critical process '%s' exited %d times in %d minutes; "
|
|
|
|
"rebooting into recovery mode\n", svc->name,
|
|
|
|
CRITICAL_CRASH_THRESHOLD, CRITICAL_CRASH_WINDOW / 60);
|
2011-03-08 08:29:42 +01:00
|
|
|
android_reboot(ANDROID_RB_RESTART2, 0, "recovery");
|
2015-04-25 02:43:21 +02:00
|
|
|
return true;
|
2010-04-14 04:48:59 +02:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
svc->time_crashed = now;
|
|
|
|
svc->nr_crashed = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-01-26 05:48:46 +01:00
|
|
|
svc->flags &= (~SVC_RESTART);
|
2010-04-14 04:48:59 +02:00
|
|
|
svc->flags |= SVC_RESTARTING;
|
|
|
|
|
2015-02-07 05:15:18 +01:00
|
|
|
// Execute all onrestart commands for this service.
|
2015-07-24 02:53:11 +02:00
|
|
|
svc->onrestart->ExecuteAllCommands();
|
|
|
|
|
2015-02-07 05:15:18 +01:00
|
|
|
svc->NotifyStateChange("restarting");
|
2015-04-25 02:43:21 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void reap_any_outstanding_children() {
|
|
|
|
while (wait_for_one_process()) {
|
|
|
|
}
|
2010-04-14 04:48:59 +02:00
|
|
|
}
|
|
|
|
|
2015-04-25 06:13:44 +02:00
|
|
|
static void handle_signal() {
|
2015-04-25 02:43:21 +02:00
|
|
|
// Clear outstanding requests.
|
|
|
|
char buf[32];
|
|
|
|
read(signal_read_fd, buf, sizeof(buf));
|
|
|
|
|
|
|
|
reap_any_outstanding_children();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void SIGCHLD_handler(int) {
|
|
|
|
if (TEMP_FAILURE_RETRY(write(signal_write_fd, "1", 1)) == -1) {
|
|
|
|
ERROR("write(signal_write_fd) failed: %s\n", strerror(errno));
|
2015-02-07 05:15:18 +01:00
|
|
|
}
|
2010-04-14 04:48:59 +02:00
|
|
|
}
|
|
|
|
|
2015-04-25 06:13:44 +02:00
|
|
|
void signal_handler_init() {
|
2015-04-25 02:43:21 +02:00
|
|
|
// Create a signalling mechanism for SIGCHLD.
|
|
|
|
int s[2];
|
|
|
|
if (socketpair(AF_UNIX, SOCK_STREAM | SOCK_NONBLOCK | SOCK_CLOEXEC, 0, s) == -1) {
|
|
|
|
ERROR("socketpair failed: %s\n", strerror(errno));
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
signal_write_fd = s[0];
|
|
|
|
signal_read_fd = s[1];
|
|
|
|
|
|
|
|
// Write to signal_write_fd if we catch SIGCHLD.
|
2010-04-17 05:28:11 +02:00
|
|
|
struct sigaction act;
|
2012-07-10 21:15:19 +02:00
|
|
|
memset(&act, 0, sizeof(act));
|
2015-04-25 02:43:21 +02:00
|
|
|
act.sa_handler = SIGCHLD_handler;
|
2010-04-17 05:28:11 +02:00
|
|
|
act.sa_flags = SA_NOCLDSTOP;
|
|
|
|
sigaction(SIGCHLD, &act, 0);
|
|
|
|
|
2015-04-25 02:43:21 +02:00
|
|
|
reap_any_outstanding_children();
|
2010-04-17 05:28:11 +02:00
|
|
|
|
2015-04-25 06:13:44 +02:00
|
|
|
register_epoll_handler(signal_read_fd, handle_signal);
|
2010-04-14 04:48:59 +02:00
|
|
|
}
|