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>
|
|
|
|
|
2015-12-05 07:00:26 +01:00
|
|
|
#include <android-base/stringprintf.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-07-31 21:45:25 +02:00
|
|
|
#include "service.h"
|
2015-02-07 05:15:18 +01:00
|
|
|
#include "util.h"
|
2010-04-14 04:48:59 +02:00
|
|
|
|
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 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));
|
|
|
|
|
2015-12-18 20:39:59 +01:00
|
|
|
ServiceManager::GetInstance().ReapAnyOutstandingChildren();
|
2015-04-25 02:43:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void SIGCHLD_handler(int) {
|
|
|
|
if (TEMP_FAILURE_RETRY(write(signal_write_fd, "1", 1)) == -1) {
|
2016-06-25 00:12:21 +02:00
|
|
|
PLOG(ERROR) << "write(signal_write_fd) failed";
|
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) {
|
2016-06-25 00:12:21 +02:00
|
|
|
PLOG(ERROR) << "socketpair failed";
|
2015-04-25 02:43:21 +02:00
|
|
|
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-12-18 20:39:59 +01:00
|
|
|
ServiceManager::GetInstance().ReapAnyOutstandingChildren();
|
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
|
|
|
}
|