1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153
|
/*
Copyright 2010 Google, Inc.
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>
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <sysexits.h>
#include <syslog.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <unistd.h>
#include "subprocess.h"
int childpid = -1; /* default to a bogus pid */
volatile sig_atomic_t killed_by_us = 0;
volatile sig_atomic_t fatal_error_in_progress = 0;
void kill_process_group() {
int pgid;
killed_by_us = 1;
pgid = getpgid(childpid);
if (killpg(pgid, SIGTERM) < 0) {
perror("killpg");
exit(EX_OSERR);
}
}
static void termination_handler(int sig);
static void termination_handler(int sig) {
int old_errno;
if (fatal_error_in_progress) {
raise(sig);
}
fatal_error_in_progress = 1;
if (childpid > 0) {
old_errno = errno;
/* we were killed (SIGTERM), so make sure child dies too */
kill_process_group();
errno = old_errno;
}
signal(sig, SIG_DFL);
raise(sig);
}
void install_termination_handler(void);
void install_termination_handler(void) {
struct sigaction sa, old_sa;
sa.sa_handler = termination_handler;
sigemptyset(&sa.sa_mask);
sigaddset(&sa.sa_mask, SIGINT);
sigaddset(&sa.sa_mask, SIGHUP);
sigaddset(&sa.sa_mask, SIGTERM);
sigaddset(&sa.sa_mask, SIGQUIT);
sa.sa_flags = 0;
sigaction(SIGINT, NULL, &old_sa);
if (old_sa.sa_handler != SIG_IGN)
sigaction(SIGINT, &sa, NULL);
sigaction(SIGHUP, NULL, &old_sa);
if (old_sa.sa_handler != SIG_IGN)
sigaction(SIGHUP, &sa, NULL);
sigaction(SIGTERM, NULL, &old_sa);
if (old_sa.sa_handler != SIG_IGN)
sigaction(SIGTERM, &sa, NULL);
}
int run_subprocess(char * command, char ** args, void (*pre_wait_function)(void)) {
int pid;
int status;
childpid = fork();
if (childpid == 0) {
/* try to detach from parent's process group */
if (setsid() == -1) {
syslog(LOG_ERR, "Unable to detach child. Aborting");
return -1;
}
if (execvp(command, args)) {
perror("execvp");
exit(EX_NOINPUT);
} else {
/* Control almost certainly will not get to this point, ever. If
* the call to execvp returned, instead of switching to a new memory
* image, there was a problem. This exit will be collected by the
* parent's call to waitpid() below.
*/
exit(EX_UNAVAILABLE);
}
} else if (childpid < 0) {
perror("fork");
exit(EX_OSERR);
} else {
/* Make sure the child dies if we get killed. */
/* Only the parent should do this, of course! */
install_termination_handler();
if (pre_wait_function != NULL) {
pre_wait_function();
}
/* blocking wait on the child */
while ((pid = waitpid(childpid, &status, 0)) < 0) {
if (errno == EINTR) {
if (killed_by_us) {
break;
} /* else restart the loop */
} else {
perror("waitpid");
}
}
alarm(0);
if (pid > 0) {
if (pid != childpid) {
syslog(LOG_ERR, "childpid %d not retured by waitpid! instead %d",
childpid, pid);
kill_process_group();
exit(EX_OSERR);
}
/* exited normally? */
if (WIFEXITED(status)) {
/* decode and return exit sttus */
status = WEXITSTATUS(status);
syslog(LOG_DEBUG, "child exited with status %d", status);
} else {
/* This formula is a Unix shell convention */
status = 128 + WTERMSIG(status);
syslog(LOG_DEBUG, "child exited via signal %d",
WTERMSIG(status));
}
}
childpid = -1;
}
return status;
}
|