2012-05-10 06:06:41 -04: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 *
|
2012-05-11 07:33:57 -04:00
|
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
|
2012-05-10 06:06:41 -04:00
|
|
|
******************************************************************************/
|
|
|
|
|
|
2012-03-31 10:29:53 -04:00
|
|
|
#include <cstdio>
|
|
|
|
|
#include <iostream>
|
|
|
|
|
#include "i2-icinga.h"
|
|
|
|
|
|
2012-04-01 14:04:30 -04:00
|
|
|
#ifndef _WIN32
|
2012-04-01 13:45:30 -04:00
|
|
|
# include "icinga-version.h"
|
|
|
|
|
# define ICINGA_VERSION GIT_MESSAGE
|
|
|
|
|
#endif /* _WIN32 */
|
|
|
|
|
|
2012-03-31 10:29:53 -04:00
|
|
|
using namespace icinga;
|
|
|
|
|
|
2012-08-02 03:38:08 -04:00
|
|
|
const String IcingaApplication::DefaultPidPath = "icinga.pid";
|
2012-07-13 02:30:20 -04:00
|
|
|
|
|
|
|
|
IcingaApplication::IcingaApplication(void)
|
|
|
|
|
{ }
|
2012-07-12 11:03:34 -04:00
|
|
|
|
2012-05-15 10:24:04 -04:00
|
|
|
/**
|
|
|
|
|
* The entry point for the Icinga application.
|
|
|
|
|
*
|
|
|
|
|
* @param args Command-line arguments.
|
|
|
|
|
* @returns An exit status.
|
|
|
|
|
*/
|
2012-08-02 03:38:08 -04:00
|
|
|
int IcingaApplication::Main(const vector<String>& args)
|
2012-03-31 10:29:53 -04:00
|
|
|
{
|
2012-07-13 03:03:22 -04:00
|
|
|
/* create console logger */
|
|
|
|
|
ConfigItemBuilder::Ptr consoleLogConfig = boost::make_shared<ConfigItemBuilder>();
|
2012-07-27 10:05:02 -04:00
|
|
|
consoleLogConfig->SetType("Logger");
|
2012-07-13 03:03:22 -04:00
|
|
|
consoleLogConfig->SetName("console");
|
|
|
|
|
consoleLogConfig->SetLocal(true);
|
|
|
|
|
consoleLogConfig->AddExpression("type", OperatorSet, "console");
|
|
|
|
|
consoleLogConfig->Compile()->Commit();
|
2012-08-03 07:19:55 -04:00
|
|
|
consoleLogConfig.reset();
|
2012-07-10 06:21:19 -04:00
|
|
|
|
2012-07-30 04:17:29 -04:00
|
|
|
/* restore the previous program state */
|
|
|
|
|
DynamicObject::RestoreObjects("retention.dat");
|
|
|
|
|
|
|
|
|
|
/* periodically dump the program state */
|
|
|
|
|
m_RetentionTimer = boost::make_shared<Timer>();
|
2012-08-03 07:19:55 -04:00
|
|
|
m_RetentionTimer->SetInterval(60);
|
2012-07-30 04:17:29 -04:00
|
|
|
m_RetentionTimer->OnTimerExpired.connect(boost::bind(&IcingaApplication::DumpProgramState, this));
|
|
|
|
|
m_RetentionTimer->Start();
|
|
|
|
|
|
2012-04-01 14:04:30 -04:00
|
|
|
#ifdef _WIN32
|
2012-07-10 06:21:19 -04:00
|
|
|
Logger::Write(LogInformation, "icinga", "Icinga component loader");
|
2012-04-01 14:04:30 -04:00
|
|
|
#else /* _WIN32 */
|
2012-07-10 06:21:19 -04:00
|
|
|
Logger::Write(LogInformation, "icinga", "Icinga component loader (version: " ICINGA_VERSION ")");
|
2012-04-01 14:04:30 -04:00
|
|
|
#endif /* _WIN32 */
|
|
|
|
|
|
2012-08-03 12:17:47 -04:00
|
|
|
m_StartTime = Utility::GetTime();
|
2012-06-27 17:38:50 -04:00
|
|
|
|
2012-04-02 07:09:33 -04:00
|
|
|
if (args.size() < 2) {
|
2012-06-15 13:32:41 -04:00
|
|
|
stringstream msgbuf;
|
2012-07-10 09:14:45 -04:00
|
|
|
msgbuf << "Syntax: " << args[0] << " [-S] [-L logfile] [-d] [--] <config-file>";
|
2012-07-10 06:21:19 -04:00
|
|
|
Logger::Write(LogInformation, "icinga", msgbuf.str());
|
2012-04-02 07:09:33 -04:00
|
|
|
return EXIT_FAILURE;
|
|
|
|
|
}
|
|
|
|
|
|
2012-07-10 09:14:45 -04:00
|
|
|
bool daemonize = false;
|
|
|
|
|
bool parseOpts = true;
|
2012-08-02 03:38:08 -04:00
|
|
|
String configFile;
|
2012-07-10 09:14:45 -04:00
|
|
|
|
|
|
|
|
/* TODO: clean up this mess; for now it will just have to do */
|
2012-08-02 03:38:08 -04:00
|
|
|
vector<String>::const_iterator it;
|
2012-07-10 09:14:45 -04:00
|
|
|
for (it = args.begin() + 1 ; it != args.end(); it++) {
|
2012-08-02 03:38:08 -04:00
|
|
|
String arg = *it;
|
2012-07-10 09:14:45 -04:00
|
|
|
|
|
|
|
|
/* ignore empty arguments */
|
2012-08-02 03:38:08 -04:00
|
|
|
if (arg.IsEmpty())
|
2012-07-10 09:14:45 -04:00
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
if (arg == "--") {
|
|
|
|
|
parseOpts = false;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (parseOpts && arg[0] == '-') {
|
2012-07-27 10:05:02 -04:00
|
|
|
if (arg == "-d") {
|
2012-07-10 10:02:45 -04:00
|
|
|
daemonize = true;
|
2012-07-10 09:14:45 -04:00
|
|
|
continue;
|
|
|
|
|
} else {
|
2012-07-17 14:41:06 -04:00
|
|
|
throw_exception(invalid_argument("Unknown option: " + arg));
|
2012-07-10 09:14:45 -04:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
configFile = arg;
|
|
|
|
|
|
|
|
|
|
if (it + 1 != args.end())
|
2012-07-17 14:41:06 -04:00
|
|
|
throw_exception(invalid_argument("Trailing command line arguments after config filename."));
|
2012-07-10 09:14:45 -04:00
|
|
|
}
|
|
|
|
|
|
2012-08-02 03:38:08 -04:00
|
|
|
if (configFile.IsEmpty())
|
2012-07-17 14:41:06 -04:00
|
|
|
throw_exception(invalid_argument("No config file was specified on the command line."));
|
2012-07-10 09:14:45 -04:00
|
|
|
|
2012-08-02 03:38:08 -04:00
|
|
|
String componentDirectory = Utility::DirName(GetExePath()) + "/../lib/icinga2";
|
2012-07-23 04:24:27 -04:00
|
|
|
Component::AddSearchDir(componentDirectory);
|
2012-04-02 07:09:33 -04:00
|
|
|
|
2012-07-24 07:26:56 -04:00
|
|
|
/* load cibsync config component */
|
|
|
|
|
ConfigItemBuilder::Ptr cibsyncComponentConfig = boost::make_shared<ConfigItemBuilder>();
|
2012-07-27 10:05:02 -04:00
|
|
|
cibsyncComponentConfig->SetType("Component");
|
2012-07-24 07:26:56 -04:00
|
|
|
cibsyncComponentConfig->SetName("cibsync");
|
|
|
|
|
cibsyncComponentConfig->SetLocal(true);
|
|
|
|
|
cibsyncComponentConfig->Compile()->Commit();
|
2012-08-03 07:19:55 -04:00
|
|
|
cibsyncComponentConfig.reset();
|
2012-07-24 07:26:56 -04:00
|
|
|
|
2012-07-06 05:22:38 -04:00
|
|
|
/* load convenience config component */
|
2012-07-06 08:33:10 -04:00
|
|
|
ConfigItemBuilder::Ptr convenienceComponentConfig = boost::make_shared<ConfigItemBuilder>();
|
2012-07-27 10:05:02 -04:00
|
|
|
convenienceComponentConfig->SetType("Component");
|
2012-07-06 08:33:10 -04:00
|
|
|
convenienceComponentConfig->SetName("convenience");
|
2012-07-06 05:22:38 -04:00
|
|
|
convenienceComponentConfig->SetLocal(true);
|
2012-08-03 07:19:55 -04:00
|
|
|
convenienceComponentConfig->Compile()->Commit();
|
|
|
|
|
convenienceComponentConfig.reset();
|
2012-07-06 05:22:38 -04:00
|
|
|
|
2012-06-12 04:49:30 -04:00
|
|
|
/* load config file */
|
2012-07-26 06:41:57 -04:00
|
|
|
vector<ConfigItem::Ptr> configItems = ConfigCompiler::CompileFile(configFile);
|
|
|
|
|
|
2012-07-26 10:45:12 -04:00
|
|
|
Logger::Write(LogInformation, "icinga", "Executing config items...");
|
2012-07-26 06:41:57 -04:00
|
|
|
|
|
|
|
|
BOOST_FOREACH(const ConfigItem::Ptr& item, configItems) {
|
|
|
|
|
item->Commit();
|
|
|
|
|
}
|
2012-06-12 04:49:30 -04:00
|
|
|
|
2012-07-30 04:17:29 -04:00
|
|
|
DynamicObject::Ptr icingaConfig = DynamicObject::GetObject("Application", "icinga");
|
2012-06-12 03:36:18 -04:00
|
|
|
|
|
|
|
|
if (!icingaConfig)
|
2012-07-27 10:05:02 -04:00
|
|
|
throw_exception(runtime_error("Configuration must contain an 'Application' object named 'icinga'."));
|
2012-06-12 03:36:18 -04:00
|
|
|
|
|
|
|
|
if (!icingaConfig->IsLocal())
|
2012-07-17 14:41:06 -04:00
|
|
|
throw_exception(runtime_error("'icinga' application object must be 'local'."));
|
2012-06-12 03:36:18 -04:00
|
|
|
|
2012-08-03 07:19:55 -04:00
|
|
|
m_CertificateFile = icingaConfig->Get("cert");
|
|
|
|
|
m_CAFile = icingaConfig->Get("ca");
|
|
|
|
|
m_Node = icingaConfig->Get("node");
|
|
|
|
|
m_Service = icingaConfig->Get("service");
|
|
|
|
|
m_PidPath = icingaConfig->Get("pidpath");
|
2012-07-13 02:30:20 -04:00
|
|
|
|
2012-08-03 07:19:55 -04:00
|
|
|
if (m_PidPath.IsEmpty())
|
|
|
|
|
m_PidPath = DefaultPidPath;
|
|
|
|
|
|
|
|
|
|
m_Macros = icingaConfig->Get("macros");
|
|
|
|
|
|
|
|
|
|
String logpath = icingaConfig->Get("logpath");
|
2012-08-02 03:38:08 -04:00
|
|
|
if (!logpath.IsEmpty()) {
|
2012-07-13 03:03:22 -04:00
|
|
|
ConfigItemBuilder::Ptr fileLogConfig = boost::make_shared<ConfigItemBuilder>();
|
2012-07-27 10:05:02 -04:00
|
|
|
fileLogConfig->SetType("Logger");
|
2012-07-13 03:03:22 -04:00
|
|
|
fileLogConfig->SetName("main");
|
|
|
|
|
fileLogConfig->SetLocal(true);
|
|
|
|
|
fileLogConfig->AddExpression("type", OperatorSet, "file");
|
|
|
|
|
fileLogConfig->AddExpression("path", OperatorSet, logpath);
|
|
|
|
|
fileLogConfig->Compile()->Commit();
|
|
|
|
|
}
|
|
|
|
|
|
2012-07-13 02:30:20 -04:00
|
|
|
UpdatePidFile(GetPidPath());
|
2012-04-27 07:12:06 -04:00
|
|
|
|
2012-08-02 03:38:08 -04:00
|
|
|
if (!GetCertificateFile().IsEmpty() && !GetCAFile().IsEmpty()) {
|
2012-05-15 05:08:04 -04:00
|
|
|
/* set up SSL context */
|
2012-06-27 03:10:37 -04:00
|
|
|
shared_ptr<X509> cert = Utility::GetX509Certificate(GetCertificateFile());
|
2012-08-02 03:38:08 -04:00
|
|
|
String identity = Utility::GetCertificateCN(cert);
|
2012-07-10 06:21:19 -04:00
|
|
|
Logger::Write(LogInformation, "icinga", "My identity: " + identity);
|
2012-06-27 12:43:34 -04:00
|
|
|
EndpointManager::GetInstance()->SetIdentity(identity);
|
2012-05-15 05:08:04 -04:00
|
|
|
|
2012-06-27 03:10:37 -04:00
|
|
|
shared_ptr<SSL_CTX> sslContext = Utility::MakeSSLContext(GetCertificateFile(), GetCertificateFile(), GetCAFile());
|
2012-06-27 12:43:34 -04:00
|
|
|
EndpointManager::GetInstance()->SetSSLContext(sslContext);
|
2012-05-15 05:08:04 -04:00
|
|
|
}
|
2012-04-27 07:12:06 -04:00
|
|
|
|
2012-05-08 06:03:24 -04:00
|
|
|
/* create the primary RPC listener */
|
2012-08-02 03:38:08 -04:00
|
|
|
String service = GetService();
|
|
|
|
|
if (!service.IsEmpty())
|
2012-06-27 12:43:34 -04:00
|
|
|
EndpointManager::GetInstance()->AddListener(service);
|
|
|
|
|
|
2012-07-10 09:14:45 -04:00
|
|
|
if (daemonize) {
|
|
|
|
|
Logger::Write(LogInformation, "icinga", "Daemonizing.");
|
2012-07-12 11:03:34 -04:00
|
|
|
ClosePidFile();
|
2012-07-10 09:14:45 -04:00
|
|
|
Utility::Daemonize();
|
2012-07-13 02:30:20 -04:00
|
|
|
UpdatePidFile(GetPidPath());
|
2012-07-10 09:14:45 -04:00
|
|
|
}
|
|
|
|
|
|
2012-03-31 10:29:53 -04:00
|
|
|
RunEventLoop();
|
|
|
|
|
|
2012-07-26 05:41:36 -04:00
|
|
|
DumpProgramState();
|
|
|
|
|
|
2012-07-24 09:38:19 -04:00
|
|
|
Logger::Write(LogInformation, "icinga", "Icinga shutting down.");
|
|
|
|
|
|
2012-04-02 07:09:33 -04:00
|
|
|
return EXIT_SUCCESS;
|
|
|
|
|
}
|
|
|
|
|
|
2012-07-26 05:41:36 -04:00
|
|
|
void IcingaApplication::DumpProgramState(void) {
|
2012-07-30 04:17:29 -04:00
|
|
|
DynamicObject::DumpObjects("retention.dat.tmp");
|
2012-07-26 05:41:36 -04:00
|
|
|
rename("retention.dat.tmp", "retention.dat");
|
2012-07-24 07:13:02 -04:00
|
|
|
}
|
|
|
|
|
|
2012-06-27 12:43:34 -04:00
|
|
|
IcingaApplication::Ptr IcingaApplication::GetInstance(void)
|
|
|
|
|
{
|
|
|
|
|
return static_pointer_cast<IcingaApplication>(Application::GetInstance());
|
|
|
|
|
}
|
|
|
|
|
|
2012-08-02 03:38:08 -04:00
|
|
|
String IcingaApplication::GetCertificateFile(void) const
|
2012-04-27 07:12:06 -04:00
|
|
|
{
|
2012-06-27 03:10:37 -04:00
|
|
|
return m_CertificateFile;
|
2012-04-27 07:12:06 -04:00
|
|
|
}
|
|
|
|
|
|
2012-08-02 03:38:08 -04:00
|
|
|
String IcingaApplication::GetCAFile(void) const
|
2012-04-27 07:12:06 -04:00
|
|
|
{
|
2012-06-27 03:10:37 -04:00
|
|
|
return m_CAFile;
|
2012-04-27 07:12:06 -04:00
|
|
|
}
|
2012-04-30 09:30:45 -04:00
|
|
|
|
2012-08-02 03:38:08 -04:00
|
|
|
String IcingaApplication::GetNode(void) const
|
2012-04-30 09:30:45 -04:00
|
|
|
{
|
|
|
|
|
return m_Node;
|
|
|
|
|
}
|
|
|
|
|
|
2012-08-02 03:38:08 -04:00
|
|
|
String IcingaApplication::GetService(void) const
|
2012-04-30 09:30:45 -04:00
|
|
|
{
|
|
|
|
|
return m_Service;
|
|
|
|
|
}
|
2012-06-27 17:38:50 -04:00
|
|
|
|
2012-08-02 03:38:08 -04:00
|
|
|
String IcingaApplication::GetPidPath(void) const
|
2012-07-13 02:30:20 -04:00
|
|
|
{
|
|
|
|
|
return m_PidPath;
|
|
|
|
|
}
|
|
|
|
|
|
2012-07-13 05:29:23 -04:00
|
|
|
Dictionary::Ptr IcingaApplication::GetMacros(void) const
|
|
|
|
|
{
|
|
|
|
|
return m_Macros;
|
|
|
|
|
}
|
|
|
|
|
|
2012-08-03 12:17:47 -04:00
|
|
|
double IcingaApplication::GetStartTime(void) const
|
2012-06-27 17:38:50 -04:00
|
|
|
{
|
|
|
|
|
return m_StartTime;
|
|
|
|
|
}
|