2012-05-10 12:06:41 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2014-03-19 01:02:29 +01:00
|
|
|
* Copyright (C) 2012-2014 Icinga Development Team (http://www.icinga.org) *
|
2012-05-10 12:06:41 +02:00
|
|
|
* *
|
|
|
|
* 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 *
|
2012-05-11 13:33:57 +02:00
|
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
|
2012-05-10 12:06:41 +02:00
|
|
|
******************************************************************************/
|
|
|
|
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "config/configcompilercontext.hpp"
|
|
|
|
#include "config/configcompiler.hpp"
|
|
|
|
#include "config/configitembuilder.hpp"
|
|
|
|
#include "base/application.hpp"
|
|
|
|
#include "base/logger.hpp"
|
|
|
|
#include "base/timer.hpp"
|
|
|
|
#include "base/utility.hpp"
|
|
|
|
#include "base/exception.hpp"
|
|
|
|
#include "base/convert.hpp"
|
|
|
|
#include "base/scriptvariable.hpp"
|
|
|
|
#include "base/context.hpp"
|
2013-11-03 13:45:26 +01:00
|
|
|
#include "config.h"
|
2013-03-15 18:21:29 +01:00
|
|
|
#include <boost/program_options.hpp>
|
|
|
|
#include <boost/tuple/tuple.hpp>
|
2013-03-16 21:18:53 +01:00
|
|
|
#include <boost/foreach.hpp>
|
2014-06-05 16:36:03 +02:00
|
|
|
#include <iostream>
|
2012-04-13 11:32:19 +02:00
|
|
|
|
2012-05-28 10:41:21 +02:00
|
|
|
#ifndef _WIN32
|
2013-09-15 10:28:54 +02:00
|
|
|
# include <sys/types.h>
|
|
|
|
# include <pwd.h>
|
|
|
|
# include <grp.h>
|
2012-05-28 10:41:21 +02:00
|
|
|
#endif /* _WIN32 */
|
|
|
|
|
2012-04-13 13:10:35 +02:00
|
|
|
using namespace icinga;
|
2013-02-02 23:22:27 +01:00
|
|
|
namespace po = boost::program_options;
|
2012-04-13 13:10:35 +02:00
|
|
|
|
2013-02-03 11:46:17 +01:00
|
|
|
static po::variables_map g_AppParams;
|
2013-02-03 16:00:53 +01:00
|
|
|
|
2014-04-16 15:05:50 +02:00
|
|
|
#ifdef _WIN32
|
|
|
|
SERVICE_STATUS l_SvcStatus;
|
|
|
|
SERVICE_STATUS_HANDLE l_SvcStatusHandle;
|
|
|
|
#endif /* _WIN32 */
|
|
|
|
|
2013-11-04 15:28:21 +01:00
|
|
|
static String LoadAppType(const String& typeSpec)
|
|
|
|
{
|
|
|
|
Log(LogInformation, "icinga-app", "Loading application type: " + typeSpec);
|
|
|
|
|
2014-05-11 06:30:50 +02:00
|
|
|
String::SizeType index = typeSpec.FindFirstOf('/');
|
2013-11-04 15:28:21 +01:00
|
|
|
|
|
|
|
if (index == String::NPos)
|
|
|
|
return typeSpec;
|
|
|
|
|
|
|
|
String library = typeSpec.SubStr(0, index);
|
|
|
|
|
|
|
|
(void) Utility::LoadExtensionLibrary(library);
|
|
|
|
|
|
|
|
return typeSpec.SubStr(index + 1);
|
|
|
|
}
|
|
|
|
|
2014-05-13 14:40:12 +02:00
|
|
|
static void IncludeZoneDirRecursive(const String& path)
|
2014-05-13 13:18:27 +02:00
|
|
|
{
|
2014-05-13 14:40:12 +02:00
|
|
|
String zoneName = Utility::BaseName(path);
|
|
|
|
Utility::GlobRecursive(path, "*.conf", boost::bind(&ConfigCompiler::CompileFile, _1, zoneName), GlobFile);
|
2014-05-13 13:18:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void IncludeNonLocalZone(const String& zonePath)
|
|
|
|
{
|
|
|
|
String etcPath = Application::GetZonesDir() + "/" + Utility::BaseName(zonePath);
|
|
|
|
|
2014-05-13 14:40:12 +02:00
|
|
|
if (Utility::PathExists(etcPath))
|
2014-05-13 13:18:27 +02:00
|
|
|
return;
|
|
|
|
|
2014-05-13 14:40:12 +02:00
|
|
|
IncludeZoneDirRecursive(zonePath);
|
2014-05-13 13:18:27 +02:00
|
|
|
}
|
|
|
|
|
2014-08-12 13:46:54 +02:00
|
|
|
static bool LoadConfigFiles(const String& appType, const String& objectsFile = String())
|
2013-02-03 11:46:17 +01:00
|
|
|
{
|
2013-08-20 11:06:04 +02:00
|
|
|
ConfigCompilerContext::GetInstance()->Reset();
|
2013-02-05 13:06:42 +01:00
|
|
|
|
2013-11-05 09:13:43 +01:00
|
|
|
if (g_AppParams.count("config") > 0) {
|
2014-03-31 02:08:15 +02:00
|
|
|
BOOST_FOREACH(const String& configPath, g_AppParams["config"].as<std::vector<std::string> >()) {
|
2013-11-05 09:13:43 +01:00
|
|
|
ConfigCompiler::CompileFile(configPath);
|
|
|
|
}
|
2014-08-17 13:48:55 +02:00
|
|
|
} else if (!g_AppParams.count("no-config"))
|
|
|
|
ConfigCompiler::CompileFile(Application::GetSysconfDir() + "/icinga2/icinga2.conf");
|
2013-07-02 09:58:26 +02:00
|
|
|
|
2014-05-13 13:18:27 +02:00
|
|
|
/* Load cluster config files - this should probably be in libremote but
|
2014-05-17 12:52:31 +02:00
|
|
|
* unfortunately moving it there is somewhat non-trivial. */
|
|
|
|
String zonesEtcDir = Application::GetZonesDir();
|
|
|
|
if (!zonesEtcDir.IsEmpty() && Utility::PathExists(zonesEtcDir))
|
|
|
|
Utility::Glob(zonesEtcDir + "/*", &IncludeZoneDirRecursive, GlobDirectory);
|
|
|
|
|
|
|
|
String zonesVarDir = Application::GetLocalStateDir() + "/lib/icinga2/api/zones";
|
|
|
|
if (Utility::PathExists(zonesVarDir))
|
|
|
|
Utility::Glob(zonesVarDir + "/*", &IncludeNonLocalZone, GlobDirectory);
|
2014-05-13 13:18:27 +02:00
|
|
|
|
2013-03-12 13:45:54 +01:00
|
|
|
String name, fragment;
|
2013-03-15 18:21:29 +01:00
|
|
|
BOOST_FOREACH(boost::tie(name, fragment), ConfigFragmentRegistry::GetInstance()->GetItems()) {
|
2013-03-12 13:45:54 +01:00
|
|
|
ConfigCompiler::CompileText(name, fragment);
|
|
|
|
}
|
|
|
|
|
2013-11-06 08:51:56 +01:00
|
|
|
ConfigItemBuilder::Ptr builder = make_shared<ConfigItemBuilder>();
|
2013-11-04 15:28:21 +01:00
|
|
|
builder->SetType(appType);
|
2013-09-10 16:53:11 +02:00
|
|
|
builder->SetName("application");
|
|
|
|
ConfigItem::Ptr item = builder->Compile();
|
|
|
|
item->Register();
|
|
|
|
|
2014-08-12 13:46:54 +02:00
|
|
|
bool result = ConfigItem::ValidateItems(objectsFile);
|
2013-09-24 13:13:14 +02:00
|
|
|
|
2013-09-24 13:30:23 +02:00
|
|
|
int warnings = 0, errors = 0;
|
|
|
|
|
2013-09-24 13:13:14 +02:00
|
|
|
BOOST_FOREACH(const ConfigCompilerMessage& message, ConfigCompilerContext::GetInstance()->GetMessages()) {
|
2014-03-21 15:39:25 +01:00
|
|
|
std::ostringstream locbuf;
|
2014-03-29 13:48:04 +01:00
|
|
|
ShowCodeFragment(locbuf, message.Location, true);
|
2014-03-21 15:39:25 +01:00
|
|
|
String location = locbuf.str();
|
|
|
|
|
|
|
|
String logmsg;
|
|
|
|
|
|
|
|
if (!location.IsEmpty())
|
|
|
|
logmsg = "Location:\n" + location;
|
|
|
|
|
|
|
|
logmsg += String("\nConfig ") + (message.Error ? "error" : "warning") + ": " + message.Text;
|
|
|
|
|
2013-09-24 13:30:23 +02:00
|
|
|
if (message.Error) {
|
2014-03-21 15:39:25 +01:00
|
|
|
Log(LogCritical, "config", logmsg);
|
2013-09-24 13:30:23 +02:00
|
|
|
errors++;
|
|
|
|
} else {
|
2014-03-21 15:39:25 +01:00
|
|
|
Log(LogWarning, "config", logmsg);
|
2013-09-24 13:30:23 +02:00
|
|
|
warnings++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (warnings > 0 || errors > 0) {
|
|
|
|
LogSeverity severity;
|
|
|
|
|
|
|
|
if (errors == 0)
|
|
|
|
severity = LogWarning;
|
|
|
|
else
|
|
|
|
severity = LogCritical;
|
|
|
|
|
|
|
|
Log(severity, "config", Convert::ToString(errors) + " errors, " + Convert::ToString(warnings) + " warnings.");
|
2013-09-24 13:13:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!result)
|
|
|
|
return false;
|
2013-02-03 11:46:17 +01:00
|
|
|
|
2013-02-05 13:06:42 +01:00
|
|
|
return true;
|
2013-02-03 11:46:17 +01:00
|
|
|
}
|
|
|
|
|
2013-11-05 08:29:08 +01:00
|
|
|
#ifndef _WIN32
|
2013-08-30 14:27:24 +02:00
|
|
|
static void SigHupHandler(int)
|
|
|
|
{
|
|
|
|
Application::RequestRestart();
|
|
|
|
}
|
2013-11-05 08:29:08 +01:00
|
|
|
#endif /* _WIN32 */
|
2013-08-30 14:27:24 +02:00
|
|
|
|
2014-05-18 16:23:16 +02:00
|
|
|
static bool Daemonize(void)
|
2013-05-03 13:39:31 +02:00
|
|
|
{
|
|
|
|
#ifndef _WIN32
|
|
|
|
pid_t pid = fork();
|
|
|
|
if (pid == -1) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-05-17 23:07:10 +02:00
|
|
|
if (pid) {
|
2014-05-18 16:23:16 +02:00
|
|
|
// systemd requires that the pidfile of the daemon is written before the forking
|
|
|
|
// process terminates. So wait till either the forked daemon has written a pidfile or died.
|
|
|
|
|
|
|
|
int status;
|
|
|
|
int ret;
|
|
|
|
pid_t readpid;
|
|
|
|
do {
|
|
|
|
Utility::Sleep(0.1);
|
|
|
|
|
|
|
|
readpid = Application::ReadPidFile(Application::GetPidPath());
|
|
|
|
ret = waitpid(pid, &status, WNOHANG);
|
|
|
|
} while (readpid != pid && ret == 0);
|
|
|
|
|
|
|
|
if (ret == pid) {
|
2014-06-24 13:04:07 +02:00
|
|
|
Log(LogCritical, "icinga-app", "The daemon could not be started. See log output for details.");
|
2014-05-18 16:23:16 +02:00
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
} else if (ret == -1) {
|
2014-06-05 16:36:03 +02:00
|
|
|
std::ostringstream msgbuf;
|
|
|
|
msgbuf << "waitpid() failed with error code " << errno << ", \"" << Utility::FormatErrorNumber(errno) << "\"";
|
|
|
|
Log(LogCritical, "icinga-app", msgbuf.str());
|
|
|
|
exit(EXIT_FAILURE);
|
2014-05-18 16:23:16 +02:00
|
|
|
}
|
|
|
|
|
2013-05-03 13:39:31 +02:00
|
|
|
exit(0);
|
2014-05-17 23:07:10 +02:00
|
|
|
}
|
2014-05-18 16:23:16 +02:00
|
|
|
#endif /* _WIN32 */
|
2013-05-03 13:39:31 +02:00
|
|
|
|
2014-05-18 16:23:16 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool SetDaemonIO(const String& stderrFile)
|
|
|
|
{
|
|
|
|
#ifndef _WIN32
|
2013-05-03 13:39:31 +02:00
|
|
|
int fdnull = open("/dev/null", O_RDWR);
|
2014-04-29 22:37:42 +02:00
|
|
|
if (fdnull >= 0) {
|
2013-05-03 13:39:31 +02:00
|
|
|
if (fdnull != 0)
|
|
|
|
dup2(fdnull, 0);
|
|
|
|
|
|
|
|
if (fdnull != 1)
|
|
|
|
dup2(fdnull, 1);
|
|
|
|
|
2014-04-29 22:37:42 +02:00
|
|
|
if (fdnull > 1)
|
2013-05-03 13:39:31 +02:00
|
|
|
close(fdnull);
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *errPath = "/dev/null";
|
|
|
|
|
|
|
|
if (!stderrFile.IsEmpty())
|
|
|
|
errPath = stderrFile.CStr();
|
|
|
|
|
|
|
|
int fderr = open(errPath, O_WRONLY | O_APPEND);
|
|
|
|
|
|
|
|
if (fderr < 0 && errno == ENOENT)
|
|
|
|
fderr = open(errPath, O_CREAT | O_WRONLY | O_APPEND, 0600);
|
|
|
|
|
|
|
|
if (fderr > 0) {
|
|
|
|
if (fderr != 2)
|
|
|
|
dup2(fderr, 2);
|
|
|
|
|
|
|
|
if (fderr > 2)
|
|
|
|
close(fderr);
|
|
|
|
}
|
|
|
|
|
|
|
|
pid_t sid = setsid();
|
|
|
|
if (sid == -1) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-04-14 00:16:48 +02:00
|
|
|
/**
|
|
|
|
* Terminate another process and wait till it has ended
|
|
|
|
*
|
|
|
|
* @params target PID of the process to end
|
|
|
|
*/
|
|
|
|
static void TerminateAndWaitForEnd(pid_t target)
|
|
|
|
{
|
|
|
|
#ifndef _WIN32
|
2014-04-29 00:05:39 +02:00
|
|
|
// allow 30 seconds timeout
|
|
|
|
double timeout = Utility::GetTime() + 30;
|
2014-04-14 00:16:48 +02:00
|
|
|
|
|
|
|
int ret = kill(target, SIGTERM);
|
|
|
|
|
2014-04-27 23:40:37 +02:00
|
|
|
while (Utility::GetTime() < timeout && (ret == 0 || errno != ESRCH)) {
|
2014-04-14 00:16:48 +02:00
|
|
|
Utility::Sleep(0.1);
|
2014-04-27 23:40:37 +02:00
|
|
|
ret = kill(target, 0);
|
2014-04-14 00:16:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// timeout and the process still seems to live: kill it
|
|
|
|
if (ret == 0 || errno != ESRCH)
|
|
|
|
kill(target, SIGKILL);
|
|
|
|
|
|
|
|
#else
|
|
|
|
// TODO: implement this for Win32
|
|
|
|
#endif /* _WIN32 */
|
|
|
|
}
|
|
|
|
|
2014-04-16 15:01:15 +02:00
|
|
|
int Main(void)
|
2012-05-14 19:14:23 +02:00
|
|
|
{
|
2014-04-16 15:01:15 +02:00
|
|
|
int argc = Application::GetArgC();
|
|
|
|
char **argv = Application::GetArgV();
|
|
|
|
|
2013-10-26 09:41:45 +02:00
|
|
|
Application::SetStartTime(Utility::GetTime());
|
|
|
|
|
2013-12-05 11:04:47 +01:00
|
|
|
Application::SetResourceLimits();
|
|
|
|
|
2013-03-25 18:36:15 +01:00
|
|
|
/* Set thread title. */
|
2013-09-03 15:44:31 +02:00
|
|
|
Utility::SetThreadName("Main Thread", false);
|
2013-03-25 18:36:15 +01:00
|
|
|
|
2013-01-30 11:51:15 +01:00
|
|
|
/* Install exception handlers to make debugging easier. */
|
|
|
|
Application::InstallExceptionHandlers();
|
|
|
|
|
2014-04-18 16:15:34 +02:00
|
|
|
#ifdef _WIN32
|
|
|
|
bool builtinPaths = true;
|
|
|
|
|
|
|
|
HKEY hKey;
|
|
|
|
if (RegOpenKeyEx(HKEY_LOCAL_MACHINE, "SOFTWARE\\Icinga Development Team\\ICINGA2", 0,
|
|
|
|
KEY_QUERY_VALUE, &hKey) == ERROR_SUCCESS) {
|
|
|
|
BYTE pvData[MAX_PATH];
|
|
|
|
DWORD cbData = sizeof(pvData)-1;
|
|
|
|
DWORD lType;
|
|
|
|
if (RegQueryValueEx(hKey, NULL, NULL, &lType, pvData, &cbData) == ERROR_SUCCESS && lType == REG_SZ) {
|
|
|
|
pvData[cbData] = '\0';
|
|
|
|
|
|
|
|
String prefix = (char *)pvData;
|
|
|
|
Application::DeclarePrefixDir(prefix);
|
|
|
|
Application::DeclareSysconfDir(prefix + "\\etc");
|
2014-07-22 13:18:41 +02:00
|
|
|
Application::DeclareRunDir(prefix + "\\var\\run");
|
2014-04-18 16:15:34 +02:00
|
|
|
Application::DeclareLocalStateDir(prefix + "\\var");
|
2014-04-18 16:21:31 +02:00
|
|
|
Application::DeclarePkgDataDir(prefix + "\\share\\icinga2");
|
2014-05-10 18:23:08 +02:00
|
|
|
Application::DeclareIncludeConfDir(prefix + "\\share\\icinga2\\include");
|
2014-04-18 16:15:34 +02:00
|
|
|
|
|
|
|
builtinPaths = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
RegCloseKey(hKey);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (builtinPaths) {
|
|
|
|
Log(LogWarning, "icinga-app", "Registry key could not be read. Falling back to built-in paths.");
|
|
|
|
|
2014-04-20 07:22:04 +02:00
|
|
|
#endif /* _WIN32 */
|
2014-04-18 16:15:34 +02:00
|
|
|
Application::DeclarePrefixDir(ICINGA_PREFIX);
|
|
|
|
Application::DeclareSysconfDir(ICINGA_SYSCONFDIR);
|
2014-07-22 13:18:41 +02:00
|
|
|
Application::DeclareRunDir(ICINGA_RUNDIR);
|
2014-04-18 16:15:34 +02:00
|
|
|
Application::DeclareLocalStateDir(ICINGA_LOCALSTATEDIR);
|
|
|
|
Application::DeclarePkgDataDir(ICINGA_PKGDATADIR);
|
2014-05-10 18:23:08 +02:00
|
|
|
Application::DeclareIncludeConfDir(ICINGA_INCLUDECONFDIR);
|
2014-04-18 16:15:34 +02:00
|
|
|
#ifdef _WIN32
|
|
|
|
}
|
|
|
|
#endif /* _WIN32 */
|
2012-09-28 13:16:08 +02:00
|
|
|
|
2014-05-13 13:18:27 +02:00
|
|
|
Application::DeclareZonesDir(Application::GetSysconfDir() + "/icinga2/zones.d");
|
2013-11-04 15:28:21 +01:00
|
|
|
Application::DeclareApplicationType("icinga/IcingaApplication");
|
2013-08-30 12:04:24 +02:00
|
|
|
|
2013-02-02 23:22:27 +01:00
|
|
|
po::options_description desc("Supported options");
|
|
|
|
desc.add_options()
|
2013-02-06 09:45:44 +01:00
|
|
|
("help", "show this help message")
|
2013-02-03 01:21:11 +01:00
|
|
|
("version,V", "show version information")
|
2014-03-31 02:08:15 +02:00
|
|
|
("library,l", po::value<std::vector<std::string> >(), "load a library")
|
|
|
|
("include,I", po::value<std::vector<std::string> >(), "add include search directory")
|
|
|
|
("define,D", po::value<std::vector<std::string> >(), "define a constant")
|
|
|
|
("config,c", po::value<std::vector<std::string> >(), "parse a configuration file")
|
2013-11-05 09:13:43 +01:00
|
|
|
("no-config,z", "start without a configuration file")
|
2013-09-25 09:48:45 +02:00
|
|
|
("validate,C", "exit after validating the configuration")
|
2014-05-23 18:05:04 +02:00
|
|
|
("log-level,x", po::value<std::string>(), "specify the log level for the console log")
|
2014-03-31 02:08:15 +02:00
|
|
|
("errorlog,e", po::value<std::string>(), "log fatal errors to the specified log file (only works in combination with --daemonize)")
|
2013-09-15 10:28:54 +02:00
|
|
|
#ifndef _WIN32
|
2014-04-29 00:05:39 +02:00
|
|
|
("reload-internal", po::value<int>(), "used internally to implement config reload: do not call manually, send SIGHUP instead")
|
2014-04-16 15:01:15 +02:00
|
|
|
("daemonize,d", "detach from the controlling terminal")
|
2014-03-31 02:08:15 +02:00
|
|
|
("user,u", po::value<std::string>(), "user to run Icinga as")
|
|
|
|
("group,g", po::value<std::string>(), "group to run Icinga as")
|
2014-04-22 19:47:19 +02:00
|
|
|
# ifdef RLIMIT_STACK
|
|
|
|
("no-stack-rlimit", "don't attempt to set RLIMIT_STACK")
|
|
|
|
# endif /* RLIMIT_STACK */
|
2014-04-16 15:01:15 +02:00
|
|
|
#else /* _WIN32 */
|
|
|
|
("scm", "run as a Windows service (must be the first argument if specified)")
|
|
|
|
("scm-install", "installs Icinga 2 as a Windows service (must be the first argument if specified")
|
|
|
|
("scm-uninstall", "uninstalls the Icinga 2 Windows service (must be the first argument if specified")
|
2014-04-13 23:35:42 +02:00
|
|
|
#endif /* _WIN32 */
|
2013-02-02 23:22:27 +01:00
|
|
|
;
|
|
|
|
|
2013-02-02 23:29:02 +01:00
|
|
|
try {
|
2013-02-03 11:46:17 +01:00
|
|
|
po::store(po::parse_command_line(argc, argv, desc), g_AppParams);
|
2013-03-16 21:18:53 +01:00
|
|
|
} catch (const std::exception& ex) {
|
|
|
|
std::ostringstream msgbuf;
|
2013-02-02 23:29:02 +01:00
|
|
|
msgbuf << "Error while parsing command-line options: " << ex.what();
|
2013-03-16 21:18:53 +01:00
|
|
|
Log(LogCritical, "icinga-app", msgbuf.str());
|
2013-02-02 23:29:02 +01:00
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
|
2013-02-03 11:46:17 +01:00
|
|
|
po::notify(g_AppParams);
|
2013-02-02 23:22:27 +01:00
|
|
|
|
2014-04-13 23:35:42 +02:00
|
|
|
if (g_AppParams.count("define")) {
|
|
|
|
BOOST_FOREACH(const String& define, g_AppParams["define"].as<std::vector<std::string> >()) {
|
|
|
|
String key, value;
|
|
|
|
size_t pos = define.FindFirstOf('=');
|
|
|
|
if (pos != String::NPos) {
|
|
|
|
key = define.SubStr(0, pos);
|
|
|
|
value = define.SubStr(pos + 1);
|
|
|
|
} else {
|
|
|
|
key = define;
|
|
|
|
value = "1";
|
|
|
|
}
|
|
|
|
ScriptVariable::Set(key, value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Application::DeclareStatePath(Application::GetLocalStateDir() + "/lib/icinga2/icinga2.state");
|
2014-08-12 13:46:54 +02:00
|
|
|
Application::DeclareObjectsPath(Application::GetLocalStateDir() + "/cache/icinga2/icinga2.debug");
|
2014-07-22 13:18:41 +02:00
|
|
|
Application::DeclarePidPath(Application::GetRunDir() + "/icinga2/icinga2.pid");
|
2014-04-13 23:35:42 +02:00
|
|
|
|
2013-09-15 10:28:54 +02:00
|
|
|
#ifndef _WIN32
|
2013-09-15 10:32:55 +02:00
|
|
|
if (g_AppParams.count("group")) {
|
2014-03-31 02:08:15 +02:00
|
|
|
String group = g_AppParams["group"].as<std::string>();
|
2013-09-15 10:28:54 +02:00
|
|
|
|
|
|
|
errno = 0;
|
2013-09-15 10:32:55 +02:00
|
|
|
struct group *gr = getgrnam(group.CStr());
|
2013-09-15 10:28:54 +02:00
|
|
|
|
2013-09-15 10:32:55 +02:00
|
|
|
if (!gr) {
|
2013-10-10 11:28:07 +02:00
|
|
|
if (errno == 0) {
|
2014-06-05 16:36:03 +02:00
|
|
|
std::ostringstream msgbuf;
|
|
|
|
msgbuf << "Invalid group specified: " + group;
|
|
|
|
Log(LogCritical, "icinga-app", msgbuf.str());
|
|
|
|
return EXIT_FAILURE;
|
2013-10-10 11:28:07 +02:00
|
|
|
} else {
|
2014-06-05 16:36:03 +02:00
|
|
|
std::ostringstream msgbuf;
|
|
|
|
msgbuf << "getgrnam() failed with error code " << errno << ", \"" << Utility::FormatErrorNumber(errno) << "\"";
|
|
|
|
Log(LogCritical, "icinga-app", msgbuf.str());
|
|
|
|
return EXIT_FAILURE;
|
2013-10-10 11:28:07 +02:00
|
|
|
}
|
2013-09-15 10:28:54 +02:00
|
|
|
}
|
|
|
|
|
2014-07-29 11:31:55 +02:00
|
|
|
if (!g_AppParams.count("reload-internal") && setgroups(0, NULL) < 0) {
|
2014-07-11 14:26:21 +02:00
|
|
|
std::ostringstream msgbuf;
|
|
|
|
msgbuf << "setgroups() failed with error code " << errno << ", \"" << Utility::FormatErrorNumber(errno) << "\"";
|
|
|
|
Log(LogCritical, "icinga-app", msgbuf.str());
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
|
2013-09-15 10:32:55 +02:00
|
|
|
if (setgid(gr->gr_gid) < 0) {
|
2014-06-05 16:36:03 +02:00
|
|
|
std::ostringstream msgbuf;
|
|
|
|
msgbuf << "setgid() failed with error code " << errno << ", \"" << Utility::FormatErrorNumber(errno) << "\"";
|
|
|
|
Log(LogCritical, "icinga-app", msgbuf.str());
|
|
|
|
return EXIT_FAILURE;
|
2013-09-15 10:28:54 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-15 10:32:55 +02:00
|
|
|
if (g_AppParams.count("user")) {
|
2014-03-31 02:08:15 +02:00
|
|
|
String user = g_AppParams["user"].as<std::string>();
|
2013-09-15 10:28:54 +02:00
|
|
|
|
|
|
|
errno = 0;
|
2013-09-15 10:32:55 +02:00
|
|
|
struct passwd *pw = getpwnam(user.CStr());
|
2013-09-15 10:28:54 +02:00
|
|
|
|
2013-09-15 10:32:55 +02:00
|
|
|
if (!pw) {
|
2013-10-10 11:28:07 +02:00
|
|
|
if (errno == 0) {
|
2014-06-05 16:36:03 +02:00
|
|
|
std::ostringstream msgbuf;
|
|
|
|
msgbuf << "Invalid user specified: " + user;
|
|
|
|
Log(LogCritical, "icinga-app", msgbuf.str());
|
|
|
|
return EXIT_FAILURE;
|
2013-10-10 11:28:07 +02:00
|
|
|
} else {
|
2014-06-05 16:36:03 +02:00
|
|
|
std::ostringstream msgbuf;
|
|
|
|
msgbuf << "getpwnam() failed with error code " << errno << ", \"" << Utility::FormatErrorNumber(errno) << "\"";
|
|
|
|
Log(LogCritical, "icinga-app", msgbuf.str());
|
|
|
|
return EXIT_FAILURE;
|
2013-10-10 11:28:07 +02:00
|
|
|
}
|
2013-09-15 10:28:54 +02:00
|
|
|
}
|
|
|
|
|
2014-07-30 00:25:19 +02:00
|
|
|
// also activate the additional groups the configured user is member of
|
|
|
|
if (!g_AppParams.count("reload-internal") && initgroups(user.CStr(), pw->pw_gid) < 0) {
|
|
|
|
std::ostringstream msgbuf;
|
|
|
|
msgbuf << "initgroups() failed with error code " << errno << ", \"" << Utility::FormatErrorNumber(errno) << "\"";
|
|
|
|
Log(LogCritical, "icinga-app", msgbuf.str());
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
|
2013-09-15 10:32:55 +02:00
|
|
|
if (setuid(pw->pw_uid) < 0) {
|
2014-06-05 16:36:03 +02:00
|
|
|
std::ostringstream msgbuf;
|
|
|
|
msgbuf << "setuid() failed with error code " << errno << ", \"" << Utility::FormatErrorNumber(errno) << "\"";
|
|
|
|
Log(LogCritical, "icinga-app", msgbuf.str());
|
|
|
|
return EXIT_FAILURE;
|
2013-09-15 10:28:54 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif /* _WIN32 */
|
|
|
|
|
2014-05-23 18:05:04 +02:00
|
|
|
if (g_AppParams.count("log-level")) {
|
2014-06-05 15:35:30 +02:00
|
|
|
String severity = g_AppParams["log-level"].as<std::string>();
|
|
|
|
|
|
|
|
LogSeverity logLevel = LogInformation;
|
|
|
|
try {
|
|
|
|
logLevel = Logger::StringToSeverity(severity);
|
|
|
|
} catch (std::exception&) {
|
|
|
|
/* use the default */
|
|
|
|
Log(LogWarning, "icinga", "Invalid log level set. Using default 'information'.");
|
|
|
|
}
|
|
|
|
|
2014-05-23 18:05:04 +02:00
|
|
|
Logger::SetConsoleLogSeverity(logLevel);
|
2014-05-23 11:56:30 +02:00
|
|
|
}
|
|
|
|
|
2013-02-03 11:46:17 +01:00
|
|
|
if (g_AppParams.count("help") || g_AppParams.count("version")) {
|
2013-02-06 17:49:11 +01:00
|
|
|
String appName = Utility::BaseName(argv[0]);
|
|
|
|
|
|
|
|
if (appName.GetLength() > 3 && appName.SubStr(0, 3) == "lt-")
|
|
|
|
appName = appName.SubStr(3, appName.GetLength() - 3);
|
|
|
|
|
2013-08-28 17:19:34 +02:00
|
|
|
std::cout << appName << " " << "- The Icinga 2 network monitoring daemon.";
|
2013-02-06 17:49:11 +01:00
|
|
|
|
|
|
|
if (g_AppParams.count("version")) {
|
2014-04-16 15:01:15 +02:00
|
|
|
std::cout << " (Version: " << Application::GetVersion() << ")";
|
2013-02-06 17:49:11 +01:00
|
|
|
std::cout << std::endl
|
2014-04-16 15:01:15 +02:00
|
|
|
<< "Copyright (c) 2012-2014 Icinga Development Team (http://www.icinga.org)" << std::endl
|
|
|
|
<< "License GPLv2+: GNU GPL version 2 or later <http://gnu.org/licenses/gpl2.html>" << std::endl
|
|
|
|
<< "This is free software: you are free to change and redistribute it." << std::endl
|
|
|
|
<< "There is NO WARRANTY, to the extent permitted by law.";
|
2013-02-06 17:49:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
std::cout << std::endl;
|
2013-02-03 01:21:11 +01:00
|
|
|
|
2014-07-23 09:30:56 +02:00
|
|
|
if (g_AppParams.count("version")) {
|
|
|
|
std::cout << std::endl;
|
|
|
|
|
|
|
|
Application::DisplayInfoMessage(true);
|
|
|
|
|
2013-02-03 01:21:11 +01:00
|
|
|
return EXIT_SUCCESS;
|
2014-07-23 09:30:56 +02:00
|
|
|
}
|
2013-02-03 01:21:11 +01:00
|
|
|
}
|
|
|
|
|
2013-02-03 11:46:17 +01:00
|
|
|
if (g_AppParams.count("help")) {
|
2013-02-03 01:21:11 +01:00
|
|
|
std::cout << std::endl
|
2014-04-16 15:01:15 +02:00
|
|
|
<< desc << std::endl
|
|
|
|
<< "Report bugs at <https://dev.icinga.org/>" << std::endl
|
|
|
|
<< "Icinga home page: <http://www.icinga.org/>" << std::endl;
|
2013-02-02 23:22:27 +01:00
|
|
|
return EXIT_SUCCESS;
|
2012-08-14 12:51:51 +02:00
|
|
|
}
|
|
|
|
|
2014-04-07 21:30:27 +02:00
|
|
|
ScriptVariable::Set("UseVfork", true, false, true);
|
2014-02-05 14:32:56 +01:00
|
|
|
|
2013-12-04 11:04:36 +01:00
|
|
|
Application::MakeVariablesConstant();
|
|
|
|
|
2013-10-09 15:09:17 +02:00
|
|
|
Log(LogInformation, "icinga-app", "Icinga application loader (version: " + Application::GetVersion() + ")");
|
2013-02-03 01:21:11 +01:00
|
|
|
|
2013-11-04 15:28:21 +01:00
|
|
|
String appType = LoadAppType(Application::GetApplicationType());
|
2013-01-17 15:05:34 +01:00
|
|
|
|
2013-02-03 11:46:17 +01:00
|
|
|
if (g_AppParams.count("library")) {
|
2014-03-31 02:08:15 +02:00
|
|
|
BOOST_FOREACH(const String& libraryName, g_AppParams["library"].as<std::vector<std::string> >()) {
|
2014-04-16 15:01:15 +02:00
|
|
|
(void)Utility::LoadExtensionLibrary(libraryName);
|
2013-02-02 23:22:27 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-10 18:23:08 +02:00
|
|
|
ConfigCompiler::AddIncludeSearchDir(Application::GetIncludeConfDir());
|
2013-02-01 22:44:58 +01:00
|
|
|
|
2013-02-03 11:46:17 +01:00
|
|
|
if (g_AppParams.count("include")) {
|
2014-03-31 02:08:15 +02:00
|
|
|
BOOST_FOREACH(const String& includePath, g_AppParams["include"].as<std::vector<std::string> >()) {
|
2013-02-02 23:22:27 +01:00
|
|
|
ConfigCompiler::AddIncludeSearchDir(includePath);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-27 21:47:25 +02:00
|
|
|
if (!g_AppParams.count("validate") && !g_AppParams.count("reload-internal")) {
|
|
|
|
pid_t runningpid = Application::ReadPidFile(Application::GetPidPath());
|
2014-05-01 18:42:36 +02:00
|
|
|
if (runningpid > 0) {
|
2014-04-27 21:47:25 +02:00
|
|
|
Log(LogCritical, "icinga-app", "Another instance of Icinga already running with PID " + Convert::ToString(runningpid));
|
2014-04-14 00:16:48 +02:00
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-12 13:46:54 +02:00
|
|
|
if (!LoadConfigFiles(appType, Application::GetObjectsPath()))
|
2014-04-13 21:12:18 +02:00
|
|
|
return EXIT_FAILURE;
|
|
|
|
|
|
|
|
if (g_AppParams.count("validate")) {
|
|
|
|
Log(LogInformation, "icinga-app", "Finished validating the configuration file(s).");
|
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2014-04-27 21:47:25 +02:00
|
|
|
if(g_AppParams.count("reload-internal")) {
|
2014-04-29 00:05:39 +02:00
|
|
|
int parentpid = g_AppParams["reload-internal"].as<int>();
|
|
|
|
Log(LogInformation, "icinga-app", "Terminating previous instance of Icinga (PID " + Convert::ToString(parentpid) + ")");
|
|
|
|
TerminateAndWaitForEnd(parentpid);
|
2014-04-14 00:16:48 +02:00
|
|
|
Log(LogInformation, "icinga-app", "Previous instance has ended, taking over now.");
|
|
|
|
}
|
|
|
|
|
2014-05-18 16:23:16 +02:00
|
|
|
if (g_AppParams.count("daemonize")) {
|
|
|
|
if (!g_AppParams.count("reload-internal")) {
|
|
|
|
// no additional fork neccessary on reload
|
2014-06-05 16:36:03 +02:00
|
|
|
try {
|
|
|
|
Daemonize();
|
|
|
|
} catch (std::exception&) {
|
|
|
|
Log(LogCritical, "icinga-app", "Daemonize failed. Exiting.");
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
2014-05-18 16:23:16 +02:00
|
|
|
}
|
2014-06-24 13:04:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// activate config only after daemonization: it starts threads and that is not compatible with fork()
|
|
|
|
if (!ConfigItem::ActivateItems()) {
|
|
|
|
Log(LogCritical, "icinga-app", "Error activating configuration.");
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
2013-05-03 13:39:31 +02:00
|
|
|
|
2014-06-24 13:04:07 +02:00
|
|
|
if (g_AppParams.count("daemonize")) {
|
2014-05-18 16:23:16 +02:00
|
|
|
String errorLog;
|
2013-05-03 13:39:31 +02:00
|
|
|
if (g_AppParams.count("errorlog"))
|
2014-03-31 02:08:15 +02:00
|
|
|
errorLog = g_AppParams["errorlog"].as<std::string>();
|
2013-05-03 13:39:31 +02:00
|
|
|
|
2014-05-18 16:23:16 +02:00
|
|
|
SetDaemonIO(errorLog);
|
2013-12-16 17:05:23 +01:00
|
|
|
Logger::DisableConsoleLog();
|
2013-05-03 13:39:31 +02:00
|
|
|
}
|
2014-04-13 21:12:18 +02:00
|
|
|
|
2013-08-30 14:27:24 +02:00
|
|
|
#ifndef _WIN32
|
|
|
|
struct sigaction sa;
|
|
|
|
memset(&sa, 0, sizeof(sa));
|
|
|
|
sa.sa_handler = &SigHupHandler;
|
|
|
|
sigaction(SIGHUP, &sa, NULL);
|
|
|
|
#endif /* _WIN32 */
|
|
|
|
|
2013-10-17 10:56:42 +02:00
|
|
|
int rc = Application::GetInstance()->Run();
|
|
|
|
|
2014-04-16 15:01:15 +02:00
|
|
|
#ifndef _DEBUG
|
2014-08-04 16:43:34 +02:00
|
|
|
Application::Exit(rc);
|
2013-10-17 10:56:42 +02:00
|
|
|
#endif /* _DEBUG */
|
2014-04-16 15:01:15 +02:00
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2014-04-16 15:05:50 +02:00
|
|
|
#ifdef _WIN32
|
2014-04-16 15:01:15 +02:00
|
|
|
static int SetupService(bool install, int argc, char **argv)
|
|
|
|
{
|
2014-04-18 12:14:21 +02:00
|
|
|
SC_HANDLE schSCManager = OpenSCManager(
|
2014-04-16 15:05:50 +02:00
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
SC_MANAGER_ALL_ACCESS);
|
2014-04-16 15:01:15 +02:00
|
|
|
|
|
|
|
if (NULL == schSCManager) {
|
|
|
|
printf("OpenSCManager failed (%d)\n", GetLastError());
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2014-04-18 12:14:21 +02:00
|
|
|
TCHAR szPath[MAX_PATH];
|
2014-04-16 15:01:15 +02:00
|
|
|
|
2014-04-18 12:14:21 +02:00
|
|
|
if (!GetModuleFileName(NULL, szPath, MAX_PATH)) {
|
|
|
|
printf("Cannot install service (%d)\n", GetLastError());
|
|
|
|
return 1;
|
2014-04-16 15:01:15 +02:00
|
|
|
}
|
|
|
|
|
2014-04-18 12:14:21 +02:00
|
|
|
String szArgs;
|
|
|
|
szArgs = Utility::EscapeShellArg(szPath) + " --scm";
|
|
|
|
|
|
|
|
for (int i = 0; i < argc; i++)
|
|
|
|
szArgs += " " + Utility::EscapeShellArg(argv[i]);
|
|
|
|
|
2014-04-20 15:47:57 +02:00
|
|
|
SC_HANDLE schService = OpenService(schSCManager, "icinga2", DELETE | SERVICE_STOP | SERVICE_QUERY_STATUS);
|
2014-04-16 15:01:15 +02:00
|
|
|
|
|
|
|
if (schService != NULL) {
|
2014-04-20 15:35:51 +02:00
|
|
|
SERVICE_STATUS status;
|
|
|
|
ControlService(schService, SERVICE_CONTROL_STOP, &status);
|
|
|
|
|
2014-04-20 15:47:57 +02:00
|
|
|
double start = Utility::GetTime();
|
|
|
|
while (status.dwCurrentState != SERVICE_STOPPED) {
|
|
|
|
double end = Utility::GetTime();
|
|
|
|
|
|
|
|
if (end - start > 30) {
|
|
|
|
printf("Could not stop the service.\n");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
Utility::Sleep(5);
|
|
|
|
|
|
|
|
if (!QueryServiceStatus(schService, &status)) {
|
|
|
|
printf("QueryServiceStatus failed (%d)\n", GetLastError());
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-16 15:01:15 +02:00
|
|
|
if (!DeleteService(schService)) {
|
|
|
|
printf("DeleteService failed (%d)\n", GetLastError());
|
|
|
|
CloseServiceHandle(schService);
|
|
|
|
CloseServiceHandle(schSCManager);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!install)
|
|
|
|
printf("Service uninstalled successfully\n");
|
|
|
|
|
|
|
|
CloseServiceHandle(schService);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (install) {
|
|
|
|
schService = CreateService(
|
2014-04-16 15:05:50 +02:00
|
|
|
schSCManager,
|
|
|
|
"icinga2",
|
|
|
|
"Icinga 2",
|
|
|
|
SERVICE_ALL_ACCESS,
|
|
|
|
SERVICE_WIN32_OWN_PROCESS,
|
|
|
|
SERVICE_DEMAND_START,
|
|
|
|
SERVICE_ERROR_NORMAL,
|
2014-04-18 12:14:21 +02:00
|
|
|
szArgs.CStr(),
|
2014-04-16 15:05:50 +02:00
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
2014-04-17 13:46:21 +02:00
|
|
|
"NT AUTHORITY\\NetworkService",
|
2014-04-16 15:05:50 +02:00
|
|
|
NULL);
|
2014-04-16 15:01:15 +02:00
|
|
|
|
|
|
|
if (schService == NULL) {
|
|
|
|
printf("CreateService failed (%d)\n", GetLastError());
|
|
|
|
CloseServiceHandle(schSCManager);
|
|
|
|
return 1;
|
|
|
|
} else
|
|
|
|
printf("Service installed successfully\n");
|
|
|
|
|
2014-04-26 23:22:12 +02:00
|
|
|
ChangeServiceConfig(schService, SERVICE_NO_CHANGE, SERVICE_AUTO_START,
|
|
|
|
SERVICE_ERROR_NORMAL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
2014-04-16 15:01:15 +02:00
|
|
|
SERVICE_DESCRIPTION sdDescription = { "The Icinga 2 monitoring application" };
|
|
|
|
ChangeServiceConfig2(schService, SERVICE_CONFIG_DESCRIPTION, &sdDescription);
|
|
|
|
|
2014-04-20 15:35:51 +02:00
|
|
|
if (!StartService(schService, 0, NULL)) {
|
|
|
|
printf("StartService failed (%d)\n", GetLastError());
|
|
|
|
CloseServiceHandle(schService);
|
|
|
|
CloseServiceHandle(schSCManager);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2014-04-16 15:01:15 +02:00
|
|
|
CloseServiceHandle(schService);
|
|
|
|
}
|
|
|
|
|
|
|
|
CloseServiceHandle(schSCManager);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
VOID ReportSvcStatus(DWORD dwCurrentState,
|
|
|
|
DWORD dwWin32ExitCode,
|
|
|
|
DWORD dwWaitHint)
|
|
|
|
{
|
|
|
|
static DWORD dwCheckPoint = 1;
|
|
|
|
|
|
|
|
l_SvcStatus.dwCurrentState = dwCurrentState;
|
|
|
|
l_SvcStatus.dwWin32ExitCode = dwWin32ExitCode;
|
|
|
|
l_SvcStatus.dwWaitHint = dwWaitHint;
|
|
|
|
|
|
|
|
if (dwCurrentState == SERVICE_START_PENDING)
|
|
|
|
l_SvcStatus.dwControlsAccepted = 0;
|
|
|
|
else
|
|
|
|
l_SvcStatus.dwControlsAccepted = SERVICE_ACCEPT_STOP;
|
|
|
|
|
|
|
|
if ((dwCurrentState == SERVICE_RUNNING) ||
|
|
|
|
(dwCurrentState == SERVICE_STOPPED))
|
|
|
|
l_SvcStatus.dwCheckPoint = 0;
|
|
|
|
else
|
|
|
|
l_SvcStatus.dwCheckPoint = dwCheckPoint++;
|
|
|
|
|
|
|
|
SetServiceStatus(l_SvcStatusHandle, &l_SvcStatus);
|
|
|
|
}
|
|
|
|
|
|
|
|
VOID WINAPI ServiceControlHandler(DWORD dwCtrl)
|
|
|
|
{
|
|
|
|
if (dwCtrl == SERVICE_CONTROL_STOP) {
|
|
|
|
ReportSvcStatus(SERVICE_STOP_PENDING, NO_ERROR, 0);
|
|
|
|
Application::RequestShutdown();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
VOID WINAPI ServiceMain(DWORD argc, LPSTR *argv)
|
|
|
|
{
|
|
|
|
l_SvcStatusHandle = RegisterServiceCtrlHandler(
|
|
|
|
"icinga2",
|
|
|
|
ServiceControlHandler);
|
|
|
|
|
|
|
|
l_SvcStatus.dwServiceType = SERVICE_WIN32_OWN_PROCESS;
|
|
|
|
l_SvcStatus.dwServiceSpecificExitCode = 0;
|
|
|
|
|
|
|
|
ReportSvcStatus(SERVICE_RUNNING, NO_ERROR, 0);
|
|
|
|
|
|
|
|
int rc = Main();
|
|
|
|
|
|
|
|
ReportSvcStatus(SERVICE_STOPPED, NO_ERROR, rc);
|
|
|
|
}
|
|
|
|
#endif /* _WIN32 */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Entry point for the Icinga application.
|
|
|
|
*
|
|
|
|
* @params argc Number of command line arguments.
|
|
|
|
* @params argv Command line arguments.
|
|
|
|
* @returns The application's exit status.
|
|
|
|
*/
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
2014-05-03 20:02:22 +02:00
|
|
|
/* must be called before using any other libbase functions */
|
|
|
|
Application::InitializeBase();
|
|
|
|
|
2014-04-16 15:01:15 +02:00
|
|
|
/* Set command-line arguments. */
|
|
|
|
Application::SetArgC(argc);
|
|
|
|
Application::SetArgV(argv);
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
if (argc > 1 && strcmp(argv[1], "--scm-install") == 0) {
|
|
|
|
return SetupService(true, argc - 2, &argv[2]);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (argc > 1 && strcmp(argv[1], "--scm-uninstall") == 0) {
|
|
|
|
return SetupService(false, argc - 2, &argv[2]);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (argc > 1 && strcmp(argv[1], "--scm") == 0) {
|
|
|
|
SERVICE_TABLE_ENTRY dispatchTable[] = {
|
|
|
|
{ "icinga2", ServiceMain },
|
|
|
|
{ NULL, NULL }
|
|
|
|
};
|
|
|
|
|
|
|
|
StartServiceCtrlDispatcher(dispatchTable);
|
2014-08-04 16:43:34 +02:00
|
|
|
Application::Exit(1);
|
2014-04-16 15:01:15 +02:00
|
|
|
}
|
|
|
|
#endif /* _WIN32 */
|
|
|
|
|
|
|
|
int rc = Main();
|
2014-06-05 16:36:03 +02:00
|
|
|
|
2014-08-04 16:43:34 +02:00
|
|
|
Application::Exit(rc);
|
2012-05-14 19:14:23 +02:00
|
|
|
}
|