2012-05-10 12:06:41 +02: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 13:33:57 +02:00
|
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
|
2012-05-10 12:06:41 +02:00
|
|
|
******************************************************************************/
|
|
|
|
|
2012-03-31 16:29:53 +02:00
|
|
|
#include <cstdio>
|
|
|
|
#include <iostream>
|
|
|
|
#include "i2-icinga.h"
|
|
|
|
|
2012-04-01 20:04:30 +02:00
|
|
|
#ifndef _WIN32
|
2012-04-01 19:45:30 +02:00
|
|
|
# include "icinga-version.h"
|
|
|
|
# define ICINGA_VERSION GIT_MESSAGE
|
|
|
|
#endif /* _WIN32 */
|
|
|
|
|
2012-03-31 16:29:53 +02:00
|
|
|
using namespace icinga;
|
|
|
|
|
2012-05-15 16:24:04 +02:00
|
|
|
/**
|
|
|
|
* The entry point for the Icinga application.
|
|
|
|
*
|
|
|
|
* @param args Command-line arguments.
|
|
|
|
* @returns An exit status.
|
|
|
|
*/
|
2012-03-31 16:29:53 +02:00
|
|
|
int IcingaApplication::Main(const vector<string>& args)
|
|
|
|
{
|
2012-07-10 15:14:45 +02:00
|
|
|
StreamLogger::Ptr consoleLogger = boost::make_shared<StreamLogger>(&std::cout, LogInformation);
|
2012-07-10 12:21:19 +02:00
|
|
|
Logger::RegisterLogger(consoleLogger);
|
|
|
|
|
2012-04-01 20:04:30 +02:00
|
|
|
#ifdef _WIN32
|
2012-07-10 12:21:19 +02:00
|
|
|
Logger::Write(LogInformation, "icinga", "Icinga component loader");
|
2012-04-01 20:04:30 +02:00
|
|
|
#else /* _WIN32 */
|
2012-07-10 12:21:19 +02:00
|
|
|
Logger::Write(LogInformation, "icinga", "Icinga component loader (version: " ICINGA_VERSION ")");
|
2012-04-01 20:04:30 +02:00
|
|
|
#endif /* _WIN32 */
|
|
|
|
|
2012-06-27 23:38:50 +02:00
|
|
|
time(&m_StartTime);
|
|
|
|
|
2012-04-02 13:09:33 +02:00
|
|
|
if (args.size() < 2) {
|
2012-06-15 19:32:41 +02:00
|
|
|
stringstream msgbuf;
|
2012-07-10 15:14:45 +02:00
|
|
|
msgbuf << "Syntax: " << args[0] << " [-S] [-L logfile] [-d] [--] <config-file>";
|
2012-07-10 12:21:19 +02:00
|
|
|
Logger::Write(LogInformation, "icinga", msgbuf.str());
|
2012-04-02 13:09:33 +02:00
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
|
2012-07-10 15:14:45 +02:00
|
|
|
bool enableSyslog = false;
|
|
|
|
bool daemonize = false;
|
|
|
|
bool parseOpts = true;
|
|
|
|
string configFile;
|
|
|
|
|
|
|
|
/* TODO: clean up this mess; for now it will just have to do */
|
|
|
|
vector<string>::const_iterator it;
|
|
|
|
for (it = args.begin() + 1 ; it != args.end(); it++) {
|
|
|
|
string arg = *it;
|
|
|
|
|
|
|
|
/* ignore empty arguments */
|
|
|
|
if (arg.empty())
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (arg == "--") {
|
|
|
|
parseOpts = false;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (parseOpts && arg[0] == '-') {
|
|
|
|
if (arg == "-S") {
|
|
|
|
enableSyslog = true;
|
|
|
|
continue;
|
|
|
|
} else if (arg == "-L") {
|
|
|
|
if (it + 1 == args.end())
|
|
|
|
throw invalid_argument("Option -L requires a parameter");
|
|
|
|
|
|
|
|
StreamLogger::Ptr fileLogger = boost::make_shared<StreamLogger>(LogInformation);
|
|
|
|
fileLogger->OpenFile(*(it + 1));
|
|
|
|
Logger::RegisterLogger(fileLogger);
|
|
|
|
|
|
|
|
it++;
|
|
|
|
|
|
|
|
continue;
|
|
|
|
} else {
|
|
|
|
throw invalid_argument("Unknown option: " + arg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
configFile = arg;
|
|
|
|
|
|
|
|
if (it + 1 != args.end())
|
|
|
|
throw invalid_argument("Trailing command line arguments after config filename.");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (configFile.empty())
|
|
|
|
throw invalid_argument("No config file was specified on the command line.");
|
|
|
|
|
|
|
|
if (enableSyslog) {
|
|
|
|
SyslogLogger::Ptr syslogLogger = boost::make_shared<SyslogLogger>(LogInformation);
|
|
|
|
Logger::RegisterLogger(syslogLogger);
|
|
|
|
}
|
|
|
|
|
2012-07-10 13:31:17 +02:00
|
|
|
string componentDirectory = Utility::DirName(GetExePath()) + "/../lib/icinga2";
|
2012-04-02 13:09:33 +02:00
|
|
|
AddComponentSearchDir(componentDirectory);
|
|
|
|
|
2012-06-12 10:49:30 +02:00
|
|
|
/* register handler for 'component' config objects */
|
2012-06-15 19:32:41 +02:00
|
|
|
static ConfigObject::Set::Ptr componentObjects = boost::make_shared<ConfigObject::Set>(ConfigObject::GetAllObjects(), ConfigObject::MakeTypePredicate("component"));
|
2012-06-16 03:42:54 +02:00
|
|
|
componentObjects->OnObjectAdded.connect(boost::bind(&IcingaApplication::NewComponentHandler, this, _2));
|
|
|
|
componentObjects->OnObjectCommitted.connect(boost::bind(&IcingaApplication::NewComponentHandler, this, _2));
|
|
|
|
componentObjects->OnObjectRemoved.connect(boost::bind(&IcingaApplication::DeletedComponentHandler, this, _2));
|
2012-06-12 10:49:30 +02:00
|
|
|
componentObjects->Start();
|
|
|
|
|
2012-07-06 11:22:38 +02:00
|
|
|
/* load convenience config component */
|
2012-07-06 14:33:10 +02:00
|
|
|
ConfigItemBuilder::Ptr convenienceComponentConfig = boost::make_shared<ConfigItemBuilder>();
|
|
|
|
convenienceComponentConfig->SetType("component");
|
|
|
|
convenienceComponentConfig->SetName("convenience");
|
2012-07-06 11:22:38 +02:00
|
|
|
convenienceComponentConfig->SetLocal(true);
|
2012-07-06 14:33:10 +02:00
|
|
|
convenienceComponentConfig->Compile()->Commit();
|
2012-07-06 11:22:38 +02:00
|
|
|
|
2012-06-12 10:49:30 +02:00
|
|
|
/* load config file */
|
2012-07-06 14:33:10 +02:00
|
|
|
ConfigItemBuilder::Ptr fileComponentConfig = boost::make_shared<ConfigItemBuilder>();
|
|
|
|
fileComponentConfig->SetType("component");
|
|
|
|
fileComponentConfig->SetName("configfile");
|
2012-06-12 11:24:02 +02:00
|
|
|
fileComponentConfig->SetLocal(true);
|
2012-07-10 15:14:45 +02:00
|
|
|
fileComponentConfig->AddExpression("configFilename", OperatorSet, configFile);
|
2012-07-06 14:33:10 +02:00
|
|
|
fileComponentConfig->Compile()->Commit();
|
2012-06-12 10:49:30 +02:00
|
|
|
|
2012-06-12 09:36:18 +02:00
|
|
|
ConfigObject::Ptr icingaConfig = ConfigObject::GetObject("application", "icinga");
|
|
|
|
|
|
|
|
if (!icingaConfig)
|
|
|
|
throw runtime_error("Configuration must contain an 'application' object named 'icinga'.");
|
|
|
|
|
|
|
|
if (!icingaConfig->IsLocal())
|
|
|
|
throw runtime_error("'icinga' application object must be 'local'.");
|
|
|
|
|
2012-06-27 09:10:37 +02:00
|
|
|
icingaConfig->GetProperty("cert", &m_CertificateFile);
|
|
|
|
icingaConfig->GetProperty("ca", &m_CAFile);
|
2012-06-12 09:36:18 +02:00
|
|
|
icingaConfig->GetProperty("node", &m_Node);
|
|
|
|
icingaConfig->GetProperty("service", &m_Service);
|
2012-04-27 13:12:06 +02:00
|
|
|
|
2012-06-27 09:10:37 +02:00
|
|
|
if (!GetCertificateFile().empty() && !GetCAFile().empty()) {
|
2012-05-15 11:08:04 +02:00
|
|
|
/* set up SSL context */
|
2012-06-27 09:10:37 +02:00
|
|
|
shared_ptr<X509> cert = Utility::GetX509Certificate(GetCertificateFile());
|
2012-05-15 11:08:04 +02:00
|
|
|
string identity = Utility::GetCertificateCN(cert);
|
2012-07-10 12:21:19 +02:00
|
|
|
Logger::Write(LogInformation, "icinga", "My identity: " + identity);
|
2012-06-27 18:43:34 +02:00
|
|
|
EndpointManager::GetInstance()->SetIdentity(identity);
|
2012-05-15 11:08:04 +02:00
|
|
|
|
2012-06-27 09:10:37 +02:00
|
|
|
shared_ptr<SSL_CTX> sslContext = Utility::MakeSSLContext(GetCertificateFile(), GetCertificateFile(), GetCAFile());
|
2012-06-27 18:43:34 +02:00
|
|
|
EndpointManager::GetInstance()->SetSSLContext(sslContext);
|
2012-05-15 11:08:04 +02:00
|
|
|
}
|
2012-04-27 13:12:06 +02:00
|
|
|
|
2012-05-08 12:03:24 +02:00
|
|
|
/* create the primary RPC listener */
|
|
|
|
string service = GetService();
|
|
|
|
if (!service.empty())
|
2012-06-27 18:43:34 +02:00
|
|
|
EndpointManager::GetInstance()->AddListener(service);
|
|
|
|
|
2012-07-10 15:14:45 +02:00
|
|
|
if (daemonize) {
|
|
|
|
Logger::Write(LogInformation, "icinga", "Daemonizing.");
|
|
|
|
Utility::Daemonize();
|
|
|
|
Logger::UnregisterLogger(consoleLogger);
|
|
|
|
}
|
|
|
|
|
2012-03-31 16:29:53 +02:00
|
|
|
RunEventLoop();
|
|
|
|
|
2012-04-02 13:09:33 +02:00
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2012-06-16 03:42:54 +02:00
|
|
|
void IcingaApplication::NewComponentHandler(const ConfigObject::Ptr& object)
|
2012-04-01 09:30:38 +02:00
|
|
|
{
|
2012-04-20 14:20:25 +02:00
|
|
|
/* don't allow replicated config objects */
|
2012-06-12 09:36:18 +02:00
|
|
|
if (!object->IsLocal())
|
2012-06-13 13:42:55 +02:00
|
|
|
throw runtime_error("'component' objects must be 'local'");
|
2012-04-20 14:20:25 +02:00
|
|
|
|
2012-04-27 13:12:06 +02:00
|
|
|
string path;
|
2012-05-16 11:30:54 +02:00
|
|
|
if (!object->GetProperty("path", &path)) {
|
2012-04-02 08:56:30 +02:00
|
|
|
#ifdef _WIN32
|
2012-04-04 10:04:38 +02:00
|
|
|
path = object->GetName() + ".dll";
|
2012-04-02 08:56:30 +02:00
|
|
|
#else /* _WIN32 */
|
2012-04-13 11:32:19 +02:00
|
|
|
path = object->GetName() + ".la";
|
2012-04-02 08:56:30 +02:00
|
|
|
#endif /* _WIN32 */
|
2012-04-01 09:30:38 +02:00
|
|
|
}
|
|
|
|
|
2012-04-04 10:04:38 +02:00
|
|
|
LoadComponent(path, object);
|
2012-04-01 09:30:38 +02:00
|
|
|
}
|
|
|
|
|
2012-06-27 18:43:34 +02:00
|
|
|
IcingaApplication::Ptr IcingaApplication::GetInstance(void)
|
|
|
|
{
|
|
|
|
return static_pointer_cast<IcingaApplication>(Application::GetInstance());
|
|
|
|
}
|
|
|
|
|
2012-06-16 03:42:54 +02:00
|
|
|
void IcingaApplication::DeletedComponentHandler(const ConfigObject::Ptr& object)
|
2012-04-01 09:30:38 +02:00
|
|
|
{
|
2012-04-18 15:22:25 +02:00
|
|
|
Component::Ptr component = GetComponent(object->GetName());
|
|
|
|
UnregisterComponent(component);
|
2012-04-04 10:04:38 +02:00
|
|
|
}
|
|
|
|
|
2012-06-27 09:10:37 +02:00
|
|
|
string IcingaApplication::GetCertificateFile(void) const
|
2012-04-27 13:12:06 +02:00
|
|
|
{
|
2012-06-27 09:10:37 +02:00
|
|
|
return m_CertificateFile;
|
2012-04-27 13:12:06 +02:00
|
|
|
}
|
|
|
|
|
2012-06-27 09:10:37 +02:00
|
|
|
string IcingaApplication::GetCAFile(void) const
|
2012-04-27 13:12:06 +02:00
|
|
|
{
|
2012-06-27 09:10:37 +02:00
|
|
|
return m_CAFile;
|
2012-04-27 13:12:06 +02:00
|
|
|
}
|
2012-04-30 15:30:45 +02:00
|
|
|
|
|
|
|
string IcingaApplication::GetNode(void) const
|
|
|
|
{
|
|
|
|
return m_Node;
|
|
|
|
}
|
|
|
|
|
|
|
|
string IcingaApplication::GetService(void) const
|
|
|
|
{
|
|
|
|
return m_Service;
|
|
|
|
}
|
2012-06-27 23:38:50 +02:00
|
|
|
|
|
|
|
time_t IcingaApplication::GetStartTime(void) const
|
|
|
|
{
|
|
|
|
return m_StartTime;
|
|
|
|
}
|