2013-02-13 11:39:24 +01:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
|
|
|
* Copyright (C) 2012 Icinga Development Team (http://www.icinga.org/) *
|
|
|
|
* *
|
|
|
|
* This program is free software; you can redistribute it and/or *
|
|
|
|
* modify it under the terms of the GNU General Public License *
|
|
|
|
* as published by the Free Software Foundation; either version 2 *
|
|
|
|
* of the License, or (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
* This program 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 General Public License for more details. *
|
|
|
|
* *
|
|
|
|
* You should have received a copy of the GNU General Public License *
|
|
|
|
* along with this program; if not, write to the Free Software Foundation *
|
|
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
#ifndef _WIN32
|
|
|
|
#include "i2-base.h"
|
|
|
|
#include <execvpe.h>
|
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
|
|
|
int Process::m_TaskFd;
|
|
|
|
extern char **environ;
|
|
|
|
|
|
|
|
void Process::CreateWorkers(void)
|
|
|
|
{
|
|
|
|
int fds[2];
|
|
|
|
|
2013-02-14 10:55:15 +01:00
|
|
|
#if HAVE_PIPE2
|
2013-02-13 21:05:58 +01:00
|
|
|
if (pipe2(fds, O_CLOEXEC) < 0)
|
2013-02-13 13:03:21 +01:00
|
|
|
BOOST_THROW_EXCEPTION(PosixException("pipe2() failed.", errno));
|
|
|
|
#else /* HAVE_PIPE2 */
|
2013-02-13 11:39:24 +01:00
|
|
|
if (pipe(fds) < 0)
|
|
|
|
BOOST_THROW_EXCEPTION(PosixException("pipe() failed.", errno));
|
|
|
|
|
2013-02-13 15:41:14 +01:00
|
|
|
/* Don't bother setting fds[1] to clo-exec as we'll only
|
2013-02-13 13:03:21 +01:00
|
|
|
* use it in the following dup() call. */
|
2013-02-13 11:39:24 +01:00
|
|
|
|
2013-02-13 13:03:21 +01:00
|
|
|
Utility::SetCloExec(fds[1]);
|
|
|
|
#endif /* HAVE_PIPE2 */
|
2013-02-13 12:34:25 +01:00
|
|
|
|
2013-02-13 13:03:21 +01:00
|
|
|
m_TaskFd = fds[1];
|
2013-02-13 12:34:25 +01:00
|
|
|
|
2013-02-13 11:39:24 +01:00
|
|
|
for (int i = 0; i < thread::hardware_concurrency(); i++) {
|
2013-02-13 13:03:21 +01:00
|
|
|
int childTaskFd = dup(fds[0]);
|
2013-02-13 11:39:24 +01:00
|
|
|
|
|
|
|
if (childTaskFd < 0)
|
|
|
|
BOOST_THROW_EXCEPTION(PosixException("dup() failed.", errno));
|
|
|
|
|
2013-02-13 13:03:21 +01:00
|
|
|
Utility::SetNonBlocking(childTaskFd);
|
|
|
|
Utility::SetCloExec(childTaskFd);
|
2013-02-13 11:39:24 +01:00
|
|
|
|
|
|
|
thread t(&Process::WorkerThreadProc, childTaskFd);
|
|
|
|
t.detach();
|
|
|
|
}
|
2013-02-13 12:34:25 +01:00
|
|
|
|
|
|
|
(void) close(fds[0]);
|
2013-02-13 11:39:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void Process::WorkerThreadProc(int taskFd)
|
|
|
|
{
|
|
|
|
map<int, Process::Ptr> tasks;
|
|
|
|
pollfd *pfds = NULL;
|
|
|
|
|
|
|
|
for (;;) {
|
|
|
|
map<int, Process::Ptr>::iterator it, prev;
|
|
|
|
|
|
|
|
pfds = (pollfd *)realloc(pfds, (1 + tasks.size()) * sizeof(pollfd));
|
|
|
|
|
|
|
|
if (pfds == NULL)
|
|
|
|
BOOST_THROW_EXCEPTION(PosixException("realloc() failed.", errno));
|
|
|
|
|
|
|
|
int idx = 0;
|
|
|
|
|
|
|
|
int fd;
|
|
|
|
BOOST_FOREACH(tie(fd, tuples::ignore), tasks) {
|
|
|
|
pfds[idx].fd = fd;
|
|
|
|
pfds[idx].events = POLLIN | POLLHUP;
|
|
|
|
idx++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (tasks.size() < MaxTasksPerThread) {
|
|
|
|
pfds[idx].fd = taskFd;
|
|
|
|
pfds[idx].events = POLLIN;
|
|
|
|
idx++;
|
|
|
|
}
|
|
|
|
|
|
|
|
int rc = poll(pfds, idx, -1);
|
|
|
|
|
|
|
|
if (rc < 0 && errno != EINTR)
|
|
|
|
BOOST_THROW_EXCEPTION(PosixException("poll() failed.", errno));
|
|
|
|
|
|
|
|
if (rc == 0)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < idx; i++) {
|
|
|
|
if ((pfds[i].revents & (POLLIN|POLLHUP)) == 0)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
while (pfds[i].fd == taskFd && tasks.size() < MaxTasksPerThread) {
|
|
|
|
Process::Ptr task;
|
|
|
|
|
|
|
|
{
|
|
|
|
boost::mutex::scoped_lock lock(m_Mutex);
|
|
|
|
|
|
|
|
/* Read one byte for every task we take from the pending tasks list. */
|
|
|
|
char buffer;
|
|
|
|
int rc = read(taskFd, &buffer, sizeof(buffer));
|
|
|
|
|
|
|
|
if (rc < 0) {
|
|
|
|
if (errno == EAGAIN)
|
|
|
|
break; /* Someone else was faster and took our task. */
|
|
|
|
|
|
|
|
BOOST_THROW_EXCEPTION(PosixException("read() failed.", errno));
|
|
|
|
}
|
|
|
|
|
|
|
|
assert(!m_Tasks.empty());
|
|
|
|
|
|
|
|
task = m_Tasks.front();
|
|
|
|
m_Tasks.pop_front();
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
task->InitTask();
|
|
|
|
|
|
|
|
int fd = task->m_FD;
|
|
|
|
|
|
|
|
if (fd >= 0)
|
|
|
|
tasks[fd] = task;
|
|
|
|
} catch (...) {
|
2013-02-15 06:47:26 +01:00
|
|
|
Application::GetEQ().Post(boost::bind(&Process::FinishException, task, boost::current_exception()));
|
2013-02-13 11:39:24 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
it = tasks.find(pfds[i].fd);
|
|
|
|
|
|
|
|
if (it == tasks.end())
|
|
|
|
continue;
|
|
|
|
|
|
|
|
Process::Ptr task = it->second;
|
|
|
|
|
|
|
|
if (!task->RunTask()) {
|
|
|
|
prev = it;
|
|
|
|
tasks.erase(prev);
|
|
|
|
|
2013-02-15 06:47:26 +01:00
|
|
|
Application::GetEQ().Post(boost::bind(&Process::FinishResult, task, task->m_Result));
|
2013-02-13 11:39:24 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Process::NotifyWorker(void)
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* This little gem which is commonly known as the "self-pipe trick"
|
|
|
|
* takes care of waking up the select() call in the worker thread.
|
|
|
|
*/
|
|
|
|
if (write(m_TaskFd, "T", 1) < 0)
|
|
|
|
BOOST_THROW_EXCEPTION(PosixException("write() failed.", errno));
|
|
|
|
}
|
|
|
|
|
|
|
|
void Process::InitTask(void)
|
|
|
|
{
|
|
|
|
m_Result.ExecutionStart = Utility::GetTime();
|
|
|
|
|
|
|
|
assert(m_FD == -1);
|
|
|
|
|
|
|
|
int fds[2];
|
|
|
|
|
2013-02-14 10:55:15 +01:00
|
|
|
#if HAVE_PIPE2
|
2013-02-13 11:39:24 +01:00
|
|
|
if (pipe2(fds, O_NONBLOCK | O_CLOEXEC) < 0)
|
2013-02-13 13:03:21 +01:00
|
|
|
BOOST_THROW_EXCEPTION(PosixException("pipe2() failed.", errno));
|
2013-02-13 11:39:24 +01:00
|
|
|
#else /* HAVE_PIPE2 */
|
|
|
|
if (pipe(fds) < 0)
|
|
|
|
BOOST_THROW_EXCEPTION(PosixException("pipe() failed.", errno));
|
|
|
|
|
2013-02-13 13:03:21 +01:00
|
|
|
Utility::SetNonBlocking(fds[0]);
|
|
|
|
Utility::SetCloExec(fds[0]);
|
2013-02-13 11:39:24 +01:00
|
|
|
|
2013-02-13 13:03:21 +01:00
|
|
|
Utility::SetNonBlocking(fds[1]);
|
|
|
|
Utility::SetCloExec(fds[1]);
|
2013-02-13 11:39:24 +01:00
|
|
|
#endif /* HAVE_PIPE2 */
|
|
|
|
|
|
|
|
// build argv
|
|
|
|
char **argv = new char *[m_Arguments.size() + 1];
|
|
|
|
|
|
|
|
for (int i = 0; i < m_Arguments.size(); i++)
|
|
|
|
argv[i] = strdup(m_Arguments[i].CStr());
|
|
|
|
|
|
|
|
argv[m_Arguments.size()] = NULL;
|
|
|
|
|
|
|
|
m_Arguments.clear();
|
|
|
|
|
|
|
|
// build envp
|
|
|
|
int envc = 0;
|
|
|
|
|
|
|
|
/* count existing environment variables */
|
|
|
|
while (environ[envc] != NULL)
|
|
|
|
envc++;
|
|
|
|
|
|
|
|
char **envp = new char *[envc + (m_ExtraEnvironment ? m_ExtraEnvironment->GetLength() : 0) + 1];
|
|
|
|
|
|
|
|
for (int i = 0; i < envc; i++)
|
|
|
|
envp[i] = strdup(environ[i]);
|
|
|
|
|
|
|
|
if (m_ExtraEnvironment) {
|
|
|
|
String key;
|
|
|
|
Value value;
|
|
|
|
int index = envc;
|
|
|
|
BOOST_FOREACH(tie(key, value), m_ExtraEnvironment) {
|
|
|
|
String kv = key + "=" + Convert::ToString(value);
|
|
|
|
envp[index] = strdup(kv.CStr());
|
|
|
|
index++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
envp[envc + (m_ExtraEnvironment ? m_ExtraEnvironment->GetLength() : 0)] = NULL;
|
|
|
|
|
|
|
|
m_ExtraEnvironment.reset();
|
|
|
|
|
2013-02-14 10:55:15 +01:00
|
|
|
#if HAVE_WORKING_VFORK
|
2013-02-13 11:39:24 +01:00
|
|
|
m_Pid = vfork();
|
2013-02-14 10:55:15 +01:00
|
|
|
#else /* HAVE_WORKING_VFORK */
|
2013-02-13 11:39:24 +01:00
|
|
|
m_Pid = fork();
|
2013-02-14 10:55:15 +01:00
|
|
|
#endif /* HAVE_WORKING_VFORK */
|
2013-02-13 11:39:24 +01:00
|
|
|
|
|
|
|
if (m_Pid < 0)
|
|
|
|
BOOST_THROW_EXCEPTION(PosixException("fork() failed.", errno));
|
|
|
|
|
|
|
|
if (m_Pid == 0) {
|
|
|
|
// child process
|
|
|
|
|
|
|
|
if (dup2(fds[1], STDOUT_FILENO) < 0 || dup2(fds[1], STDERR_FILENO) < 0) {
|
|
|
|
perror("dup2() failed.");
|
|
|
|
_exit(128);
|
|
|
|
}
|
|
|
|
|
|
|
|
(void) close(fds[0]);
|
|
|
|
(void) close(fds[1]);
|
|
|
|
|
|
|
|
if (execvpe(argv[0], argv, envp) < 0) {
|
|
|
|
perror("execvpe() failed.");
|
|
|
|
_exit(128);
|
|
|
|
}
|
|
|
|
|
|
|
|
_exit(128);
|
|
|
|
}
|
|
|
|
|
|
|
|
// parent process
|
|
|
|
|
|
|
|
// free arguments
|
|
|
|
for (int i = 0; argv[i] != NULL; i++)
|
|
|
|
free(argv[i]);
|
|
|
|
|
|
|
|
delete [] argv;
|
|
|
|
|
|
|
|
// free environment
|
|
|
|
for (int i = 0; envp[i] != NULL; i++)
|
|
|
|
free(envp[i]);
|
|
|
|
|
|
|
|
delete [] envp;
|
|
|
|
|
|
|
|
m_FD = fds[0];
|
|
|
|
(void) close(fds[1]);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Process::RunTask(void)
|
|
|
|
{
|
|
|
|
char buffer[512];
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
do {
|
|
|
|
rc = read(m_FD, buffer, sizeof(buffer));
|
|
|
|
|
|
|
|
if (rc > 0) {
|
|
|
|
m_OutputStream.write(buffer, rc);
|
|
|
|
}
|
|
|
|
} while (rc > 0);
|
|
|
|
|
|
|
|
if (rc < 0 && errno == EAGAIN)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
String output = m_OutputStream.str();
|
|
|
|
|
|
|
|
int status, exitcode;
|
|
|
|
|
|
|
|
(void) close(m_FD);
|
|
|
|
|
|
|
|
if (waitpid(m_Pid, &status, 0) != m_Pid)
|
|
|
|
BOOST_THROW_EXCEPTION(PosixException("waitpid() failed.", errno));
|
|
|
|
|
|
|
|
if (WIFEXITED(status)) {
|
|
|
|
exitcode = WEXITSTATUS(status);
|
|
|
|
} else if (WIFSIGNALED(status)) {
|
|
|
|
stringstream outputbuf;
|
|
|
|
outputbuf << "Process was terminated by signal " << WTERMSIG(status);
|
|
|
|
output = outputbuf.str();
|
|
|
|
exitcode = 128;
|
|
|
|
} else {
|
|
|
|
exitcode = 128;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_Result.ExecutionEnd = Utility::GetTime();
|
|
|
|
m_Result.ExitStatus = exitcode;
|
|
|
|
m_Result.Output = output;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* _WIN32 */
|