libreoffice-online/loolwsd/LOOLBroker.cpp

906 lines
27 KiB
C++
Raw Normal View History

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
#include <sys/types.h>
#include <sys/wait.h>
#include <utime.h>
#include <ftw.h>
#include <unistd.h>
#include <dlfcn.h>
#include <atomic>
#include <mutex>
#include <cstring>
#include <cassert>
#include <iostream>
#include <fstream>
#include <deque>
#include <Poco/Types.h>
#include <Poco/Random.h>
#include <Poco/Path.h>
#include <Poco/File.h>
#include <Poco/ThreadLocal.h>
#include <Poco/Process.h>
#include <Poco/Thread.h>
#include <Poco/NamedMutex.h>
#include "Common.hpp"
#include "Capabilities.hpp"
#include "Util.hpp"
// First include the grist of the helper process - ideally
// we can avoid execve and share lots of memory here. We
// can't link to a non-PIC translation unit though, so
// include to share.
#define LOOLKIT_NO_MAIN 1
#include "LOOLKit.cpp"
#define LIB_SOFFICEAPP "lib" "sofficeapp" ".so"
#define LIB_MERGED "lib" "mergedlo" ".so"
#define LIB_SCLO "lib" "sclo" ".so"
#define LIB_SWLO "lib" "swlo" ".so"
#define LIB_SDLO "lib" "sdlo" ".so"
#define JAILED_LOOLKIT_PATH "/usr/bin/loolkit"
typedef int (LokHookPreInit) ( const char *install_path, const char *user_profile_path );
using Poco::Path;
using Poco::File;
using Poco::ThreadLocal;
using Poco::Process;
using Poco::Thread;
using Poco::ProcessHandle;
const std::string FIFO_FILE = "/tmp/loolwsdfifo";
const std::string FIFO_BROKER = "/tmp/loolbroker.fifo";
const std::string BROKER_SUFIX = ".fifo";
const std::string BROKER_PREFIX = "/tmp/lokit";
static int readerChild = -1;
static int readerBroker = -1;
static std::atomic<unsigned> forkCounter;
static std::atomic<std::chrono::seconds> maintenance;
static unsigned int childCounter = 0;
static unsigned int numPreSpawnedChildren = 0;
static std::mutex forkMutex;
static std::map<Process::PID, int> _childProcesses;
static std::map<std::string, Process::PID> _cacheURL;
namespace
{
ThreadLocal<std::string> sourceForLinkOrCopy;
ThreadLocal<Path> destinationForLinkOrCopy;
int linkOrCopyFunction(const char *fpath,
const struct stat* /*sb*/,
int typeflag,
struct FTW* /*ftwbuf*/)
{
if (strcmp(fpath, sourceForLinkOrCopy->c_str()) == 0)
return 0;
assert(fpath[strlen(sourceForLinkOrCopy->c_str())] == '/');
const char *relativeOldPath = fpath + strlen(sourceForLinkOrCopy->c_str()) + 1;
#ifdef __APPLE__
if (strcmp(relativeOldPath, "PkgInfo") == 0)
return 0;
#endif
Path newPath(*destinationForLinkOrCopy, Path(relativeOldPath));
switch (typeflag)
{
case FTW_F:
File(newPath.parent()).createDirectories();
if (link(fpath, newPath.toString().c_str()) == -1)
{
Log::error("Error: link(\"" + std::string(fpath) + "\",\"" + newPath.toString() +
"\") failed. Exiting.");
exit(1);
}
break;
case FTW_DP:
{
struct stat st;
if (stat(fpath, &st) == -1)
{
Log::error("Error: stat(\"" + std::string(fpath) + "\") failed.");
return 1;
}
File(newPath).createDirectories();
struct utimbuf ut;
ut.actime = st.st_atime;
ut.modtime = st.st_mtime;
if (utime(newPath.toString().c_str(), &ut) == -1)
{
Log::error("Error: utime(\"" + newPath.toString() + "\", &ut) failed.");
return 1;
}
}
break;
case FTW_DNR:
Log::error("Cannot read directory '" + std::string(fpath) + "'");
return 1;
case FTW_NS:
Log::error("nftw: stat failed for '" + std::string(fpath) + "'");
return 1;
case FTW_SLN:
Log::error("nftw: symlink to nonexistent file: '" + std::string(fpath) + "', ignored.");
break;
default:
assert(false);
}
return 0;
}
void linkOrCopy(const std::string& source, const Path& destination)
{
*sourceForLinkOrCopy = source;
if (sourceForLinkOrCopy->back() == '/')
sourceForLinkOrCopy->pop_back();
*destinationForLinkOrCopy = destination;
if (nftw(source.c_str(), linkOrCopyFunction, 10, FTW_DEPTH) == -1)
Log::error("linkOrCopy: nftw() failed for '" + source + "'");
}
2016-01-09 10:26:04 -06:00
void requestAbnormalTermination(const Process::PID aPID)
{
if (kill(aPID, SIGTERM) != 0)
{
Log::info("Cannot terminate lokit [" + std::to_string(aPID) + "]");
}
}
}
class PipeRunnable: public Runnable
{
public:
PipeRunnable()
: _pStart(nullptr),
_pEnd(nullptr)
{
}
ssize_t getResponseLine(int nPipeReader, std::string& aLine)
{
ssize_t nBytes = -1;
aLine.clear();
while (true)
{
if ( _pStart == _pEnd )
{
nBytes = Util::readMessage(nPipeReader, _aBuffer, sizeof(_aBuffer));
if ( nBytes < 0 )
{
_pStart = _pEnd = nullptr;
break;
}
_pStart = _aBuffer;
_pEnd = _aBuffer + nBytes;
}
if ( _pStart != _pEnd )
{
char aChar = *_pStart++;
while (_pStart != _pEnd && aChar != '\r' && aChar != '\n')
{
aLine += aChar;
aChar = *_pStart++;
}
if ( aChar == '\r' && *_pStart == '\n')
{
_pStart++;
break;
}
}
}
return nBytes;
}
bool isOKResponse(int nPID)
{
std::string aResponse;
if (getResponseLine(readerChild, aResponse) < 0)
{
Log::error("Error reading child response: " + std::to_string(nPID) + ". Clearing cache.");
2016-01-09 10:26:04 -06:00
requestAbnormalTermination(nPID);
_cacheURL.clear();
return false;
}
StringTokenizer tokens(aResponse, " ", StringTokenizer::TOK_IGNORE_EMPTY | StringTokenizer::TOK_TRIM);
return (tokens[1] == "ok" ? true : false);
}
ssize_t sendMessage(int nPipeWriter, const std::string& aMessage)
{
ssize_t nBytes = -1;
nBytes = Util::writeFIFO(nPipeWriter, aMessage.c_str(), aMessage.length());
if ( nBytes < 0 )
Log::error("Error writting to child pipe.");
return nBytes;
}
ssize_t createThread(Process::PID nPID, const std::string& aTID, const std::string& aURL)
{
std::string aMessage = "thread " + aTID + " " + aURL + "\r\n";
return sendMessage(_childProcesses[nPID], aMessage);
}
void verifyChilds()
{
std::string aMessage;
bool bError = false;
// sanity cache
for (auto it =_cacheURL.cbegin(); it != _cacheURL.cend(); )
{
aMessage = "search " + it->first + "\r\n";
if (sendMessage(_childProcesses[it->second], aMessage) < 0)
{
bError = true;
break;
}
if (!isOKResponse(it->second))
{
Log::debug() << "Removed expired Kit [" + std::to_string(it->second) + "] hosts URL [" + it->first + "] -> " << Log::end;
_cacheURL.erase(it++);
continue;
}
it++;
}
if (bError)
_cacheURL.clear();
}
Process::PID searchURL(const std::string& aURL)
{
const std::string aMessage = "search " + aURL + "\r\n";
Process::PID nPID = -1;
for (auto& it : _childProcesses)
{
assert(it.first > 0 && it.second > 0);
Log::trace("Query to kit [" + std::to_string(it.first) + "]: " + aMessage);
ssize_t nBytes = Util::writeFIFO(it.second, aMessage.c_str(), aMessage.length());
if ( nBytes < 0 )
{
Log::error("Error writting to child pipe: " + std::to_string(it.first) + ". Clearing cache.");
2016-01-09 10:26:04 -06:00
requestAbnormalTermination(it.first);
_cacheURL.clear();
break;
}
std::string aResponse;
nBytes = getResponseLine(readerChild, aResponse);
Log::trace("Response from kit [" + std::to_string(it.first) + "]: " + aResponse);
if ( nBytes < 0 )
{
Log::error("Error reading child response: " + std::to_string(it.first) + ". Clearing cache.");
2016-01-09 10:26:04 -06:00
requestAbnormalTermination(it.first);
_cacheURL.clear();
break;
}
StringTokenizer tokens(aResponse, " ", StringTokenizer::TOK_IGNORE_EMPTY | StringTokenizer::TOK_TRIM);
if (tokens[1] == "ok")
{
// Found, but find all empty instances.
nPID = it.first;
Log::debug("Kit [" + std::to_string(nPID) + "] hosts URL [" + aURL + "].");
break;
}
else if (tokens[1] == "empty")
{
// Remember the last empty.
nPID = it.first;
Log::debug("Kit [" + std::to_string(nPID) + "] is empty.");
}
}
return nPID;
}
void handleInput(const std::string& aMessage)
{
StringTokenizer tokens(aMessage, " ", StringTokenizer::TOK_IGNORE_EMPTY | StringTokenizer::TOK_TRIM);
if (tokens[0] == "request" && tokens.count() == 3)
{
const std::string aTID = tokens[1];
const std::string aURL = tokens[2];
Log::debug("Finding kit for URL [" + aURL + "] on thread [" + aTID + "].");
// check cache
const auto aIterURL = _cacheURL.find(aURL);
if ( aIterURL != _cacheURL.end() )
{
Log::debug("Cache found URL [" + aURL + "] hosted on child [" + std::to_string(aIterURL->second) +
"]. Creating view for thread [" + aTID + "].");
if (createThread(aIterURL->second, aTID, aURL) < 0)
Log::error("Cache: Error creating thread.");
if (!isOKResponse(aIterURL->second))
Log::error("Cache Failed: Creating view for thread [" + aTID + "].");
return;
}
else
{
Log::debug("URL [" + aURL + "] is not in cache, searching " +
std::to_string(_childProcesses.size()) + " kits.");
}
// not found in cache, full search.
const Process::PID nPID = searchURL(aURL);
if ( nPID > 0 )
{
Log::debug("Creating view for URL [" + aURL + "] for thread [" +
aTID + "] on kit [" + std::to_string(nPID) + "].");
if (createThread(nPID, aTID, aURL) < 0)
Log::error("Search: Error creating thread.");
else if (isOKResponse(nPID))
_cacheURL[aURL] = nPID;
else
Log::error("Failed: Creating view for thread [" + aTID + "].");
}
else
{
Log::info("No children available, creating [" + std::to_string(numPreSpawnedChildren) + "] childs");
forkCounter = numPreSpawnedChildren;
}
}
}
void run() override
{
std::string aMessage;
char aBuffer[PIPE_BUFFER];
char* pStart;
char* pEnd;
struct pollfd aPoll;
ssize_t nBytes = -1;
aPoll.fd = readerBroker;
aPoll.events = POLLIN;
aPoll.revents = 0;
pStart = aBuffer;
pEnd = aBuffer;
static const std::string thread_name = "brk_pipe_reader";
#ifdef __linux
if (prctl(PR_SET_NAME, reinterpret_cast<unsigned long>(thread_name.c_str()), 0, 0, 0) != 0)
Log::error("Cannot set thread name to " + thread_name + ".");
#endif
Log::debug("Thread [" + thread_name + "] started.");
2015-12-29 18:59:17 -06:00
while (!TerminationFlag)
{
if ( pStart == pEnd )
{
if (poll(&aPoll, 1, -1) < 0)
{
Log::error("Failed to poll pipe [" + FIFO_FILE + "].");
continue;
}
else
if (aPoll.revents & POLLIN)
{
nBytes = Util::readFIFO(readerBroker, aBuffer, sizeof(aBuffer));
if (nBytes < 0)
{
pStart = pEnd = nullptr;
Log::error("Error reading message from pipe [" + FIFO_FILE + "].");
continue;
}
pStart = aBuffer;
pEnd = aBuffer + nBytes;
}
else
if (aPoll.revents & (POLLERR | POLLHUP))
{
Log::error("Broken pipe [" + FIFO_FILE + "] with wsd.");
break;
}
}
if ( pStart != pEnd )
{
char aChar = *pStart++;
while (pStart != pEnd && aChar != '\r' && aChar != '\n')
{
aMessage += aChar;
aChar = *pStart++;
}
if ( aChar == '\r' && *pStart == '\n')
{
pStart++;
forkMutex.lock();
if (maintenance.load() > std::chrono::seconds(10))
{
maintenance = std::chrono::seconds::zero();
verifyChilds();
}
handleInput(aMessage);
aMessage.clear();
forkMutex.unlock();
}
}
}
Log::debug("Thread [" + thread_name + "] finished.");
}
private:
char* _pStart;
char* _pEnd;
char _aBuffer[PIPE_BUFFER];
};
/// Initializes LibreOfficeKit for cross-fork re-use.
static bool globalPreinit(const std::string &loSubPath)
{
void *handle;
LokHookPreInit* preInit;
std::string fname = "/" + loSubPath + "/program/" LIB_SOFFICEAPP;
handle = dlopen(fname.c_str(), RTLD_GLOBAL|RTLD_NOW);
if (!handle)
{
Log::warn("Failed to load " + std::string(LIB_SOFFICEAPP) + " library. Trying " + std::string(LIB_MERGED));
fname = "/" + loSubPath + "/program/" LIB_MERGED;
handle = dlopen(fname.c_str(), RTLD_GLOBAL|RTLD_NOW);
if (!handle)
{
Log::warn("Failed to load " + std::string(LIB_MERGED) + " library.");
return false;
}
}
preInit = (LokHookPreInit *)dlsym(handle, "lok_preinit");
if (!preInit)
{
Log::warn("Note: No lok_preinit hook in " + std::string(LIB_SOFFICEAPP) +
" library. Cannot fork, will execv instead.");
return false;
}
return preInit(("/" + loSubPath + "/program").c_str(), "file:///user") == 0;
}
static int createLibreOfficeKit(const bool sharePages, const std::string& loSubPath,
const std::string& jailId)
{
Poco::UInt64 child;
int nFIFOWriter = -1;
const std::string pipe = BROKER_PREFIX + std::to_string(childCounter++) + BROKER_SUFIX;
if (mkfifo(pipe.c_str(), 0666) < 0)
{
Log::error("Error: mkfifo failed.");
return -1;
}
if (sharePages)
{
Log::debug("Forking LibreOfficeKit.");
Poco::UInt64 pid;
if (!(pid = fork()))
{
// child
lokit_main(loSubPath, jailId, pipe);
_exit(0);
}
else
{
// parent
child = pid; // (somehow - switch the hash to use real pids or ?) ...
Log::info("Forked kit [" + std::to_string(child) + "].");
}
}
else
{
Process::Args args;
args.push_back("--losubpath=" + loSubPath);
args.push_back("--jailid=" + jailId);
args.push_back("--pipe=" + pipe);
args.push_back("--clientport=" + std::to_string(ClientPortNumber));
Log::info("Launching LibreOfficeKit #" + std::to_string(childCounter) +
": " + JAILED_LOOLKIT_PATH + " " +
Poco::cat(std::string(" "), args.begin(), args.end()));
ProcessHandle procChild = Process::launch(JAILED_LOOLKIT_PATH, args);
child = procChild.id();
Log::info("Spawned kit [" + std::to_string(child) + "].");
if (!Process::isRunning(procChild))
{
// This can happen if we fail to copy it, or bad chroot etc.
Log::error("Error: loolkit [" + std::to_string(child) + "] was stillborn.");
return -1;
}
}
if ( (nFIFOWriter = open(pipe.c_str(), O_WRONLY)) < 0 )
{
Log::error("Error: failed to open write pipe [" + pipe + "] with kit. Abandoning child.");
2016-01-09 10:26:04 -06:00
requestAbnormalTermination(child);
return -1;
}
Log::info() << "Adding Kit #" << childCounter << " PID " << child << Log::end;
_childProcesses[child] = nFIFOWriter;
return child;
}
static int startupLibreOfficeKit(const bool sharePages, const int nLOKits,
const std::string& loSubPath, const std::string& jailId)
{
Process::PID pId = -1;
Log::info() << "Starting " << nLOKits << " LoKit instaces." << Log::end;
for (int nCntr = nLOKits; nCntr; nCntr--)
{
if ((pId = createLibreOfficeKit(sharePages, loSubPath, jailId)) < 0)
{
Log::error("Error: failed to create LibreOfficeKit.");
break;
}
}
return pId;
}
static bool waitForTerminationChild(const Process::PID aPID)
{
int status;
short nCntr = 3;
while (nCntr-- > 0)
{
waitpid(aPID, &status, WUNTRACED | WNOHANG);
if (WIFEXITED(status))
break;
sleep(MAINTENANCE_INTERVAL);
}
return nCntr;
}
// Broker process
int main(int argc, char** argv)
{
if (std::getenv("SLEEPFORDEBUGGER"))
{
std::cerr << "Sleeping " << std::getenv("SLEEPFORDEBUGGER")
<< " seconds to attach debugger to process "
<< Process::id() << std::endl;
Thread::sleep(std::stoul(std::getenv("SLEEPFORDEBUGGER")) * 1000);
}
// Initialization
Log::initialize("brk");
Util::setSignals(false);
std::string childRoot;
std::string jailId;
std::string loSubPath;
std::string sysTemplate;
std::string loTemplate;
for (int i = 0; i < argc; ++i)
{
char *cmd = argv[i];
char *eq = nullptr;
if (strstr(cmd, "--losubpath=") == cmd)
{
eq = strchrnul(cmd, '=');
if (*eq)
loSubPath = std::string(++eq);
}
else if (strstr(cmd, "--systemplate=") == cmd)
{
eq = strchrnul(cmd, '=');
if (*eq)
sysTemplate = std::string(++eq);
}
else if (strstr(cmd, "--lotemplate=") == cmd)
{
eq = strchrnul(cmd, '=');
if (*eq)
loTemplate = std::string(++eq);
}
else if (strstr(cmd, "--childroot=") == cmd)
{
eq = strchrnul(cmd, '=');
if (*eq)
childRoot = std::string(++eq);
}
else if (strstr(cmd, "--jailid=") == cmd)
{
eq = strchrnul(cmd, '=');
if (*eq)
jailId = std::string(++eq);
}
else if (strstr(cmd, "--numprespawns=") == cmd)
{
eq = strchrnul(cmd, '=');
if (*eq)
numPreSpawnedChildren = std::stoi(std::string(++eq));
}
else if (strstr(cmd, "--clientport=") == cmd)
{
eq = strchrnul(cmd, '=');
if (*eq)
ClientPortNumber = std::stoll(std::string(++eq));
}
}
if (loSubPath.empty())
{
Log::error("Error: --losubpath is empty");
exit(-1);
}
if (sysTemplate.empty())
{
Log::error("Error: --losubpath is empty");
exit(-1);
}
if (loTemplate.empty())
{
Log::error("Error: --lotemplate is empty");
exit(-1);
}
if (childRoot.empty())
{
Log::error("Error: --childroot is empty");
exit(-1);
}
if ( !numPreSpawnedChildren )
{
Log::error("Error: --numprespawns is 0");
exit(-1);
}
if ( (readerBroker = open(FIFO_FILE.c_str(), O_RDONLY) ) < 0 )
{
Log::error("Error: failed to open pipe [" + FIFO_FILE + "] read only. Exiting.");
exit(-1);
}
try
{
Poco::Environment::get("LD_BIND_NOW");
}
catch (const Poco::NotFoundException& exc)
{
Log::warn("Note: LD_BIND_NOW is not set.");
}
try
{
Poco::Environment::get("LOK_VIEW_CALLBACK");
}
catch (const Poco::NotFoundException& exc)
{
Log::warn("Note: LOK_VIEW_CALLBACK is not set.");
}
// The loolkit binary must be in our directory.
const std::string loolkitPath = Poco::Path(argv[0]).parent().toString() + "loolkit";
if (!File(loolkitPath).exists())
{
Log::error("Error: loolkit does not exists at [" + loolkitPath + "].");
exit(-1);
}
const Path jailPath = Path::forDirectory(childRoot + Path::separator() + jailId);
Log::info("Jail path: " + jailPath.toString());
File(jailPath).createDirectories();
Path jailLOInstallation(jailPath, loSubPath);
jailLOInstallation.makeDirectory();
File(jailLOInstallation).createDirectory();
// Copy (link) LO installation and other necessary files into it from the template.
linkOrCopy(sysTemplate, jailPath);
linkOrCopy(loTemplate, jailLOInstallation);
// It is necessary to deploy loolkit process to chroot jail.
File(loolkitPath).copyTo(Path(jailPath, JAILED_LOOLKIT_PATH).toString());
// We need this because sometimes the hostname is not resolved
const std::vector<std::string> networkFiles = {"/etc/host.conf", "/etc/hosts", "/etc/nsswitch.conf", "/etc/resolv.conf"};
for (const auto& filename : networkFiles)
{
const File networkFile(filename);
if (networkFile.exists())
{
networkFile.copyTo(Path(jailPath, "/etc").toString());
}
}
#ifdef __linux
// Create the urandom and random devices
File(Path(jailPath, "/dev")).createDirectory();
if (mknod((jailPath.toString() + "/dev/random").c_str(),
S_IFCHR | S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH,
makedev(1, 8)) != 0)
{
Log::error("Error: mknod(" + jailPath.toString() + "/dev/random) failed.");
}
if (mknod((jailPath.toString() + "/dev/urandom").c_str(),
S_IFCHR | S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH,
makedev(1, 9)) != 0)
{
Log::error("Error: mknod(" + jailPath.toString() + "/dev/urandom) failed.");
}
#endif
Log::info("loolbroker -> chroot(\"" + jailPath.toString() + "\")");
if (chroot(jailPath.toString().c_str()) == -1)
{
Log::error("Error: chroot(\"" + jailPath.toString() + "\") failed.");
exit(-1);
}
if (chdir("/") == -1)
{
Log::error("Error: chdir(\"/\") in jail failed.");
exit(-1);
}
#ifdef __linux
dropCapability(CAP_SYS_CHROOT);
dropCapability(CAP_MKNOD);
dropCapability(CAP_FOWNER);
#else
dropCapability();
#endif
if (mkfifo(FIFO_BROKER.c_str(), 0666) == -1)
{
Log::error("Error: Failed to create pipe FIFO [" + FIFO_BROKER + "].");
exit(-1);
}
const bool sharePages = globalPreinit(loSubPath);
if ( startupLibreOfficeKit(sharePages, numPreSpawnedChildren, loSubPath, jailId) < 0 )
{
Log::error("Error: failed to create children.");
exit(-1);
}
if ( (readerChild = open(FIFO_BROKER.c_str(), O_RDONLY) ) < 0 )
{
Log::error("Error: pipe opened for reading.");
exit(-1);
}
PipeRunnable pipeHandler;
Poco::Thread aPipe;
aPipe.start(pipeHandler);
2015-12-29 18:59:17 -06:00
Log::info("loolbroker is ready.");
unsigned timeoutCounter = 0;
while (!TerminationFlag && !_childProcesses.empty())
{
int status;
const pid_t pid = waitpid(-1, &status, WUNTRACED | WNOHANG);
if (pid > 0)
{
if ( _childProcesses.find(pid) != _childProcesses.end() )
{
if ((WIFEXITED(status) || WIFSIGNALED(status) || WTERMSIG(status) ) )
{
Log::error("Child [" + std::to_string(pid) + "] processes died.");
2015-12-29 18:59:17 -06:00
forkMutex.lock();
_childProcesses.erase(pid);
_cacheURL.clear();
forkMutex.unlock();
}
if ( WCOREDUMP(status) )
Log::error("Child [" + std::to_string(pid) + "] produced a core dump.");
if ( WIFSTOPPED(status) )
Log::error("Child [" + std::to_string(pid) + "] process was stopped by delivery of a signal.");
if ( WSTOPSIG(status) )
Log::error("Child [" + std::to_string(pid) + "] process was stopped.");
if ( WIFCONTINUED(status) )
Log::error("Child [" + std::to_string(pid) + "] process was resumed.");
}
else
{
Log::error("None of our known child processes died. PID: " + std::to_string(pid));
}
}
else if (pid < 0)
Log::error("Error: Child error.");
if (forkCounter > 0)
{
forkMutex.lock();
--forkCounter;
if (createLibreOfficeKit(sharePages, loSubPath, jailId) < 0)
2016-01-06 04:11:23 -06:00
Log::error("Error: fork failed.");
forkMutex.unlock();
}
if (timeoutCounter++ == INTERVAL_PROBES)
{
timeoutCounter = 0;
sleep(MAINTENANCE_INTERVAL);
maintenance.store( ++maintenance.load() );
}
}
// Terminate child processes
for (auto i : _childProcesses)
{
Log::info("Requesting child process " + std::to_string(i.first) + " to terminate.");
2015-12-29 18:59:17 -06:00
close(i.second);
Process::requestTermination(i.first);
if (!waitForTerminationChild(i.first))
{
Log::info("Forcing a child process " + std::to_string(i.first) + " to terminate.");
Process::kill(i.first);
}
}
2015-12-29 18:59:17 -06:00
aPipe.join();
close(readerChild);
close(readerBroker);
Log::info("Process [loolbroker] finished.");
return 0;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */