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-12-04 08:42:24 +01:00
|
|
|
using namespace icinga;
|
|
|
|
|
2013-02-02 20:00:02 +01:00
|
|
|
REGISTER_TYPE(IcingaApplication, NULL);
|
2012-12-04 08:42:24 +01:00
|
|
|
|
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-08-14 12:51:51 +02:00
|
|
|
IcingaApplication::IcingaApplication(const Dictionary::Ptr& serializedUpdate)
|
|
|
|
: Application(serializedUpdate)
|
|
|
|
{
|
2012-09-17 13:32:59 +02:00
|
|
|
/* load replication config component */
|
|
|
|
ConfigItemBuilder::Ptr replicationComponentConfig = boost::make_shared<ConfigItemBuilder>();
|
|
|
|
replicationComponentConfig->SetType("Component");
|
|
|
|
replicationComponentConfig->SetName("replication");
|
|
|
|
replicationComponentConfig->SetLocal(true);
|
|
|
|
replicationComponentConfig->Compile()->Commit();
|
|
|
|
replicationComponentConfig.reset();
|
2012-08-14 12:51:51 +02:00
|
|
|
}
|
2012-07-12 17:03:34 +02:00
|
|
|
|
2012-05-15 16:24:04 +02:00
|
|
|
/**
|
|
|
|
* The entry point for the Icinga application.
|
|
|
|
*
|
|
|
|
* @returns An exit status.
|
|
|
|
*/
|
2013-02-02 23:22:27 +01:00
|
|
|
int IcingaApplication::Main(void)
|
2012-03-31 16:29:53 +02:00
|
|
|
{
|
2013-02-03 01:21:11 +01:00
|
|
|
Logger::Write(LogDebug, "icinga", "In IcingaApplication::Main()");
|
2012-04-01 20:04:30 +02:00
|
|
|
|
2012-08-03 18:17:47 +02:00
|
|
|
m_StartTime = Utility::GetTime();
|
2012-06-27 23:38:50 +02:00
|
|
|
|
2012-07-13 08:30:20 +02:00
|
|
|
UpdatePidFile(GetPidPath());
|
2012-04-27 13:12:06 +02:00
|
|
|
|
2012-08-02 09:38:08 +02:00
|
|
|
if (!GetCertificateFile().IsEmpty() && !GetCAFile().IsEmpty()) {
|
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-08-02 09:38:08 +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-09-03 10:28:14 +02:00
|
|
|
m_SSLContext = Utility::MakeSSLContext(GetCertificateFile(), GetCertificateFile(), GetCAFile());
|
2012-09-10 14:07:32 +02:00
|
|
|
|
|
|
|
EndpointManager::GetInstance()->SetSSLContext(m_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 */
|
2012-11-26 08:30:52 +01:00
|
|
|
if (!GetService().IsEmpty())
|
|
|
|
EndpointManager::GetInstance()->AddListener(GetService());
|
2012-06-27 18:43:34 +02:00
|
|
|
|
2012-08-05 03:10:53 +02:00
|
|
|
/* restore the previous program state */
|
2012-08-07 09:44:36 +02:00
|
|
|
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-09-24 08:29:39 +02:00
|
|
|
Logger::Write(LogInformation, "icinga", "Icinga has shut down.");
|
2012-07-24 15:38:19 +02:00
|
|
|
|
2012-04-02 13:09:33 +02:00
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2012-07-26 11:41:36 +02:00
|
|
|
void IcingaApplication::DumpProgramState(void) {
|
2012-08-07 14:17:36 +02:00
|
|
|
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());
|
|
|
|
}
|
|
|
|
|
2012-08-02 09:38:08 +02:00
|
|
|
String IcingaApplication::GetCertificateFile(void) const
|
2012-04-27 13:12:06 +02:00
|
|
|
{
|
2012-11-26 08:30:52 +01:00
|
|
|
return Get("cert_path");
|
2012-04-27 13:12:06 +02:00
|
|
|
}
|
|
|
|
|
2012-08-02 09:38:08 +02:00
|
|
|
String IcingaApplication::GetCAFile(void) const
|
2012-04-27 13:12:06 +02:00
|
|
|
{
|
2012-11-26 08:30:52 +01:00
|
|
|
return Get("ca_path");
|
2012-04-27 13:12:06 +02:00
|
|
|
}
|
2012-04-30 15:30:45 +02:00
|
|
|
|
2012-08-02 09:38:08 +02:00
|
|
|
String IcingaApplication::GetNode(void) const
|
2012-04-30 15:30:45 +02:00
|
|
|
{
|
2012-11-26 08:30:52 +01:00
|
|
|
return Get("node");
|
2012-04-30 15:30:45 +02:00
|
|
|
}
|
|
|
|
|
2012-08-02 09:38:08 +02:00
|
|
|
String IcingaApplication::GetService(void) const
|
2012-04-30 15:30:45 +02:00
|
|
|
{
|
2012-11-26 08:30:52 +01:00
|
|
|
return Get("service");
|
2012-04-30 15:30:45 +02:00
|
|
|
}
|
2012-06-27 23:38:50 +02:00
|
|
|
|
2012-08-02 09:38:08 +02:00
|
|
|
String IcingaApplication::GetPidPath(void) const
|
2012-07-13 08:30:20 +02:00
|
|
|
{
|
2012-11-26 08:30:52 +01:00
|
|
|
Value pidPath = Get("pid_path");
|
|
|
|
|
|
|
|
if (pidPath.IsEmpty())
|
2013-02-04 09:48:37 +01:00
|
|
|
pidPath = Application::GetLocalStateDir() + "/run/icinga2.pid";
|
2012-11-26 08:30:52 +01:00
|
|
|
|
|
|
|
return pidPath;
|
2012-07-13 08:30:20 +02:00
|
|
|
}
|
|
|
|
|
2012-08-07 09:44:36 +02:00
|
|
|
String IcingaApplication::GetStatePath(void) const
|
|
|
|
{
|
2012-11-26 08:30:52 +01:00
|
|
|
Value statePath = Get("state_path");
|
|
|
|
|
|
|
|
if (statePath.IsEmpty())
|
2013-02-05 15:39:20 +01:00
|
|
|
statePath = Application::GetLocalStateDir() + "/lib/icinga2/icinga2.state";
|
2012-11-26 08:30:52 +01:00
|
|
|
|
|
|
|
return statePath;
|
2012-08-07 09:44:36 +02:00
|
|
|
}
|
|
|
|
|
2012-07-13 11:29:23 +02:00
|
|
|
Dictionary::Ptr IcingaApplication::GetMacros(void) const
|
|
|
|
{
|
2012-11-26 08:30:52 +01:00
|
|
|
return Get("macros");
|
2012-07-13 11:29:23 +02:00
|
|
|
}
|
|
|
|
|
2012-08-03 18:17:47 +02:00
|
|
|
double IcingaApplication::GetStartTime(void) const
|
2012-06-27 23:38:50 +02:00
|
|
|
{
|
|
|
|
return m_StartTime;
|
|
|
|
}
|
2012-09-03 10:28:14 +02:00
|
|
|
|
|
|
|
shared_ptr<SSL_CTX> IcingaApplication::GetSSLContext(void) const
|
|
|
|
{
|
|
|
|
return m_SSLContext;
|
|
|
|
}
|