icinga2/lib/icinga/icingaapplication.cpp

224 lines
6.5 KiB
C++
Raw Normal View History

/******************************************************************************
* 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-03-31 16:29:53 +02:00
#include <cstdio>
#include <iostream>
#include "i2-icinga.h"
#ifndef _WIN32
# include "icinga-version.h"
# define ICINGA_VERSION GIT_MESSAGE
#endif /* _WIN32 */
2012-03-31 16:29:53 +02:00
using namespace icinga;
const String IcingaApplication::DefaultPidPath = "icinga.pid";
const String IcingaApplication::DefaultStatePath = "icinga.state";
2012-07-13 08:30:20 +02:00
IcingaApplication::IcingaApplication(const Dictionary::Ptr& serializedUpdate)
: Application(serializedUpdate)
{
/* load cibsync config component */
ConfigItemBuilder::Ptr cibsyncComponentConfig = boost::make_shared<ConfigItemBuilder>();
cibsyncComponentConfig->SetType("Component");
cibsyncComponentConfig->SetName("cibsync");
cibsyncComponentConfig->SetLocal(true);
cibsyncComponentConfig->Compile()->Commit();
cibsyncComponentConfig.reset();
/* load convenience config component */
ConfigItemBuilder::Ptr convenienceComponentConfig = boost::make_shared<ConfigItemBuilder>();
convenienceComponentConfig->SetType("Component");
convenienceComponentConfig->SetName("convenience");
convenienceComponentConfig->SetLocal(true);
convenienceComponentConfig->Compile()->Commit();
convenienceComponentConfig.reset();
}
/**
* The entry point for the Icinga application.
*
* @param args Command-line arguments.
* @returns An exit status.
*/
int IcingaApplication::Main(const vector<String>& args)
2012-03-31 16:29:53 +02:00
{
Logger::Write(LogInformation, "icinga", "In IcingaApplication::Main()");
2012-08-03 18:17:47 +02:00
m_StartTime = Utility::GetTime();
2012-06-27 23:38:50 +02:00
if (args.size() == 1 && args[0] == "--help") {
2012-06-15 19:32:41 +02:00
stringstream msgbuf;
msgbuf << "Syntax: " << args[0] << " ... -d";
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;
}
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.IsEmpty())
continue;
if (arg == "--") {
parseOpts = false;
continue;
}
if (parseOpts && arg[0] == '-') {
if (arg == "-d") {
2012-07-10 16:02:45 +02:00
daemonize = true;
continue;
} else {
2012-07-17 20:41:06 +02:00
throw_exception(invalid_argument("Unknown option: " + arg));
}
}
}
m_CertificateFile = Get("cert");
m_CAFile = Get("ca");
m_Node = Get("node");
m_Service = Get("service");
2012-07-13 08:30:20 +02:00
m_PidPath = Get("pidpath");
2012-08-03 13:19:55 +02:00
if (m_PidPath.IsEmpty())
m_PidPath = DefaultPidPath;
m_StatePath = Get("statepath");
if (m_StatePath.IsEmpty())
m_StatePath = DefaultStatePath;
m_Macros = Get("macros");
2012-08-03 13:19:55 +02:00
String logpath = Get("logpath");
if (!logpath.IsEmpty()) {
ConfigItemBuilder::Ptr fileLogConfig = boost::make_shared<ConfigItemBuilder>();
fileLogConfig->SetType("Logger");
fileLogConfig->SetName("main");
fileLogConfig->SetLocal(true);
fileLogConfig->AddExpression("type", OperatorSet, "file");
fileLogConfig->AddExpression("path", OperatorSet, logpath);
fileLogConfig->Compile()->Commit();
}
2012-07-13 08:30:20 +02:00
UpdatePidFile(GetPidPath());
2012-04-27 13:12:06 +02:00
if (!GetCertificateFile().IsEmpty() && !GetCAFile().IsEmpty()) {
/* set up SSL context */
shared_ptr<X509> cert = Utility::GetX509Certificate(GetCertificateFile());
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);
m_SSLContext = Utility::MakeSSLContext(GetCertificateFile(), GetCertificateFile(), GetCAFile());
2012-09-10 14:07:32 +02:00
EndpointManager::GetInstance()->SetSSLContext(m_SSLContext);
}
2012-04-27 13:12:06 +02:00
/* create the primary RPC listener */
String service = GetService();
if (!service.IsEmpty())
2012-06-27 18:43:34 +02:00
EndpointManager::GetInstance()->AddListener(service);
if (daemonize) {
Logger::Write(LogInformation, "icinga", "Daemonizing.");
ClosePidFile();
Utility::Daemonize();
2012-07-13 08:30:20 +02:00
UpdatePidFile(GetPidPath());
}
2012-08-05 03:10:53 +02:00
/* restore the previous program state */
DynamicObject::RestoreObjects(GetStatePath());
2012-08-05 03:10:53 +02:00
/* periodically dump the program state */
m_RetentionTimer = boost::make_shared<Timer>();
m_RetentionTimer->SetInterval(300);
m_RetentionTimer->OnTimerExpired.connect(boost::bind(&IcingaApplication::DumpProgramState, this));
m_RetentionTimer->Start();
2012-03-31 16:29:53 +02:00
RunEventLoop();
2012-07-26 11:41:36 +02:00
DumpProgramState();
2012-07-24 15:38:19 +02:00
Logger::Write(LogInformation, "icinga", "Icinga shutting down.");
2012-04-02 13:09:33 +02:00
return EXIT_SUCCESS;
}
2012-07-26 11:41:36 +02:00
void IcingaApplication::DumpProgramState(void) {
DynamicObject::DumpObjects(GetStatePath());
2012-07-24 13:13:02 +02:00
}
2012-06-27 18:43:34 +02:00
IcingaApplication::Ptr IcingaApplication::GetInstance(void)
{
return static_pointer_cast<IcingaApplication>(Application::GetInstance());
}
String IcingaApplication::GetCertificateFile(void) const
2012-04-27 13:12:06 +02:00
{
return m_CertificateFile;
2012-04-27 13:12:06 +02:00
}
String IcingaApplication::GetCAFile(void) const
2012-04-27 13:12:06 +02:00
{
return m_CAFile;
2012-04-27 13:12:06 +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
String IcingaApplication::GetPidPath(void) const
2012-07-13 08:30:20 +02:00
{
return m_PidPath;
}
String IcingaApplication::GetStatePath(void) const
{
return m_StatePath;
}
2012-07-13 11:29:23 +02:00
Dictionary::Ptr IcingaApplication::GetMacros(void) const
{
return m_Macros;
}
2012-08-03 18:17:47 +02:00
double IcingaApplication::GetStartTime(void) const
2012-06-27 23:38:50 +02:00
{
return m_StartTime;
}
shared_ptr<SSL_CTX> IcingaApplication::GetSSLContext(void) const
{
return m_SSLContext;
}