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 "i2-icinga.h"
|
|
|
|
|
|
2012-12-04 02:42:24 -05:00
|
|
|
using namespace icinga;
|
|
|
|
|
|
2013-03-01 06:07:52 -05:00
|
|
|
REGISTER_TYPE(IcingaApplication);
|
2012-12-04 02:42:24 -05:00
|
|
|
|
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-08-14 06:51:51 -04:00
|
|
|
IcingaApplication::IcingaApplication(const Dictionary::Ptr& serializedUpdate)
|
|
|
|
|
: Application(serializedUpdate)
|
2013-02-26 04:13:54 -05:00
|
|
|
{
|
|
|
|
|
RegisterAttribute("cert_path", Attribute_Config, &m_CertPath);
|
|
|
|
|
RegisterAttribute("ca_path", Attribute_Config, &m_CAPath);
|
|
|
|
|
RegisterAttribute("node", Attribute_Config, &m_Node);
|
|
|
|
|
RegisterAttribute("service", Attribute_Config, &m_Service);
|
|
|
|
|
RegisterAttribute("pid_path", Attribute_Config, &m_PidPath);
|
|
|
|
|
RegisterAttribute("state_path", Attribute_Config, &m_StatePath);
|
|
|
|
|
RegisterAttribute("macros", Attribute_Config, &m_Macros);
|
|
|
|
|
}
|
2012-07-12 11:03:34 -04:00
|
|
|
|
2012-05-15 10:24:04 -04:00
|
|
|
/**
|
|
|
|
|
* The entry point for the Icinga application.
|
|
|
|
|
*
|
|
|
|
|
* @returns An exit status.
|
|
|
|
|
*/
|
2013-02-02 17:22:27 -05:00
|
|
|
int IcingaApplication::Main(void)
|
2012-03-31 10:29:53 -04:00
|
|
|
{
|
2013-02-02 19:21:11 -05:00
|
|
|
Logger::Write(LogDebug, "icinga", "In IcingaApplication::Main()");
|
2012-04-01 14:04:30 -04:00
|
|
|
|
2012-08-03 12:17:47 -04:00
|
|
|
m_StartTime = Utility::GetTime();
|
2012-06-27 17:38:50 -04:00
|
|
|
|
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-09-03 04:28:14 -04:00
|
|
|
m_SSLContext = Utility::MakeSSLContext(GetCertificateFile(), GetCertificateFile(), GetCAFile());
|
2012-09-10 08:07:32 -04:00
|
|
|
|
|
|
|
|
EndpointManager::GetInstance()->SetSSLContext(m_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-11-26 02:30:52 -05:00
|
|
|
if (!GetService().IsEmpty())
|
|
|
|
|
EndpointManager::GetInstance()->AddListener(GetService());
|
2012-06-27 12:43:34 -04:00
|
|
|
|
2012-08-04 21:10:53 -04:00
|
|
|
/* restore the previous program state */
|
2012-08-07 03:44:36 -04:00
|
|
|
DynamicObject::RestoreObjects(GetStatePath());
|
2012-08-04 21:10:53 -04:00
|
|
|
|
|
|
|
|
/* periodically dump the program state */
|
|
|
|
|
m_RetentionTimer = boost::make_shared<Timer>();
|
2013-03-07 09:19:26 -05:00
|
|
|
m_RetentionTimer->SetInterval(300);
|
2012-08-04 21:10:53 -04:00
|
|
|
m_RetentionTimer->OnTimerExpired.connect(boost::bind(&IcingaApplication::DumpProgramState, this));
|
|
|
|
|
m_RetentionTimer->Start();
|
|
|
|
|
|
2012-03-31 10:29:53 -04:00
|
|
|
RunEventLoop();
|
|
|
|
|
|
2012-09-24 02:29:39 -04:00
|
|
|
Logger::Write(LogInformation, "icinga", "Icinga has shut down.");
|
2012-07-24 09:38:19 -04:00
|
|
|
|
2012-04-02 07:09:33 -04:00
|
|
|
return EXIT_SUCCESS;
|
|
|
|
|
}
|
|
|
|
|
|
2013-03-02 03:07:47 -05:00
|
|
|
/**
|
|
|
|
|
* @threadsafety Always.
|
|
|
|
|
*/
|
2013-02-23 19:10:34 -05:00
|
|
|
void IcingaApplication::OnShutdown(void)
|
|
|
|
|
{
|
2013-03-07 10:00:10 -05:00
|
|
|
ASSERT(!OwnsLock());
|
2013-03-02 03:07:47 -05:00
|
|
|
|
|
|
|
|
{
|
|
|
|
|
ObjectLock olock(this);
|
|
|
|
|
m_RetentionTimer->Stop();
|
|
|
|
|
}
|
2013-02-23 19:10:34 -05:00
|
|
|
|
|
|
|
|
DumpProgramState();
|
|
|
|
|
}
|
|
|
|
|
|
2013-03-02 03:07:47 -05:00
|
|
|
/**
|
|
|
|
|
* @threadsafety Always.
|
|
|
|
|
*/
|
2013-02-23 19:10:34 -05:00
|
|
|
void IcingaApplication::DumpProgramState(void)
|
|
|
|
|
{
|
2012-08-07 08:17:36 -04:00
|
|
|
DynamicObject::DumpObjects(GetStatePath());
|
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());
|
|
|
|
|
}
|
|
|
|
|
|
2013-03-02 03:07:47 -05:00
|
|
|
/**
|
|
|
|
|
* @threadsafety Always.
|
|
|
|
|
*/
|
2012-08-02 03:38:08 -04:00
|
|
|
String IcingaApplication::GetCertificateFile(void) const
|
2012-04-27 07:12:06 -04:00
|
|
|
{
|
2013-03-02 03:07:47 -05:00
|
|
|
ObjectLock olock(this);
|
|
|
|
|
|
2013-02-26 04:13:54 -05:00
|
|
|
return m_CertPath;
|
2012-04-27 07:12:06 -04:00
|
|
|
}
|
|
|
|
|
|
2013-03-02 03:07:47 -05:00
|
|
|
/**
|
|
|
|
|
* @threadsafety Always.
|
|
|
|
|
*/
|
2012-08-02 03:38:08 -04:00
|
|
|
String IcingaApplication::GetCAFile(void) const
|
2012-04-27 07:12:06 -04:00
|
|
|
{
|
2013-03-02 03:07:47 -05:00
|
|
|
ObjectLock olock(this);
|
|
|
|
|
|
2013-02-26 04:13:54 -05:00
|
|
|
return m_CAPath;
|
2012-04-27 07:12:06 -04:00
|
|
|
}
|
2012-04-30 09:30:45 -04:00
|
|
|
|
2013-03-02 03:07:47 -05:00
|
|
|
/**
|
|
|
|
|
* @threadsafety Always.
|
|
|
|
|
*/
|
2012-08-02 03:38:08 -04:00
|
|
|
String IcingaApplication::GetNode(void) const
|
2012-04-30 09:30:45 -04:00
|
|
|
{
|
2013-03-02 03:07:47 -05:00
|
|
|
ObjectLock olock(this);
|
|
|
|
|
|
2013-02-26 04:13:54 -05:00
|
|
|
return m_Node;
|
2012-04-30 09:30:45 -04:00
|
|
|
}
|
|
|
|
|
|
2013-03-02 03:07:47 -05:00
|
|
|
/**
|
|
|
|
|
* @threadsafety Always.
|
|
|
|
|
*/
|
2012-08-02 03:38:08 -04:00
|
|
|
String IcingaApplication::GetService(void) const
|
2012-04-30 09:30:45 -04:00
|
|
|
{
|
2013-03-02 03:07:47 -05:00
|
|
|
ObjectLock olock(this);
|
|
|
|
|
|
2013-02-26 04:13:54 -05:00
|
|
|
return m_Service;
|
2012-04-30 09:30:45 -04:00
|
|
|
}
|
2012-06-27 17:38:50 -04:00
|
|
|
|
2013-03-02 03:07:47 -05:00
|
|
|
/**
|
|
|
|
|
* @threadsafety Always.
|
|
|
|
|
*/
|
2012-08-02 03:38:08 -04:00
|
|
|
String IcingaApplication::GetPidPath(void) const
|
2012-07-13 02:30:20 -04:00
|
|
|
{
|
2013-03-02 03:07:47 -05:00
|
|
|
ObjectLock olock(this);
|
|
|
|
|
|
2013-02-26 04:13:54 -05:00
|
|
|
if (m_PidPath.IsEmpty())
|
2013-03-07 06:23:43 -05:00
|
|
|
return Application::GetLocalStateDir() + "/run/icinga2/icinga2.pid";
|
2013-02-26 04:13:54 -05:00
|
|
|
else
|
|
|
|
|
return m_PidPath;
|
2012-07-13 02:30:20 -04:00
|
|
|
}
|
|
|
|
|
|
2013-03-02 03:07:47 -05:00
|
|
|
/**
|
|
|
|
|
* @threadsafety Always.
|
|
|
|
|
*/
|
2012-08-07 03:44:36 -04:00
|
|
|
String IcingaApplication::GetStatePath(void) const
|
|
|
|
|
{
|
2013-03-02 03:07:47 -05:00
|
|
|
ObjectLock olock(this);
|
|
|
|
|
|
2013-02-26 04:13:54 -05:00
|
|
|
if (m_PidPath.IsEmpty())
|
|
|
|
|
return Application::GetLocalStateDir() + "/lib/icinga2/icinga2.state";
|
|
|
|
|
else
|
|
|
|
|
return m_PidPath;
|
2012-08-07 03:44:36 -04:00
|
|
|
}
|
|
|
|
|
|
2013-03-02 03:07:47 -05:00
|
|
|
/**
|
|
|
|
|
* @threadsafety Always.
|
|
|
|
|
*/
|
2012-07-13 05:29:23 -04:00
|
|
|
Dictionary::Ptr IcingaApplication::GetMacros(void) const
|
|
|
|
|
{
|
2013-03-02 03:07:47 -05:00
|
|
|
ObjectLock olock(this);
|
|
|
|
|
|
2013-02-26 04:13:54 -05:00
|
|
|
return m_Macros;
|
2012-07-13 05:29:23 -04:00
|
|
|
}
|
|
|
|
|
|
2013-03-02 03:07:47 -05:00
|
|
|
/**
|
|
|
|
|
* @threadsafety Always.
|
|
|
|
|
*/
|
2012-08-03 12:17:47 -04:00
|
|
|
double IcingaApplication::GetStartTime(void) const
|
2012-06-27 17:38:50 -04:00
|
|
|
{
|
2013-03-02 03:07:47 -05:00
|
|
|
ObjectLock olock(this);
|
|
|
|
|
|
2012-06-27 17:38:50 -04:00
|
|
|
return m_StartTime;
|
|
|
|
|
}
|
2012-09-03 04:28:14 -04:00
|
|
|
|
2013-03-02 03:07:47 -05:00
|
|
|
/**
|
|
|
|
|
* @threadsafety Always.
|
|
|
|
|
*/
|
2012-09-03 04:28:14 -04:00
|
|
|
shared_ptr<SSL_CTX> IcingaApplication::GetSSLContext(void) const
|
|
|
|
|
{
|
2013-03-02 03:07:47 -05:00
|
|
|
ObjectLock olock(this);
|
|
|
|
|
|
2012-09-03 04:28:14 -04:00
|
|
|
return m_SSLContext;
|
|
|
|
|
}
|
2013-02-23 19:10:34 -05:00
|
|
|
|
2013-03-02 03:07:47 -05:00
|
|
|
/**
|
|
|
|
|
* @threadsafety Always.
|
|
|
|
|
*/
|
|
|
|
|
Dictionary::Ptr IcingaApplication::CalculateDynamicMacros(void)
|
2013-02-23 19:10:34 -05:00
|
|
|
{
|
|
|
|
|
Dictionary::Ptr macros = boost::make_shared<Dictionary>();
|
|
|
|
|
|
2013-02-28 04:27:33 -05:00
|
|
|
double now = Utility::GetTime();
|
|
|
|
|
|
|
|
|
|
macros->Set("TIMET", (long)now);
|
|
|
|
|
macros->Set("LONGDATETIME", Utility::FormatDateTime("%Y-%m-%d %H:%M:%S %z", now));
|
|
|
|
|
macros->Set("SHORTDATETIME", Utility::FormatDateTime("%Y-%m-%d %H:%M:%S", now));
|
|
|
|
|
macros->Set("DATE", Utility::FormatDateTime("%Y-%m-%d", now));
|
|
|
|
|
macros->Set("TIME", Utility::FormatDateTime("%H:%M:%S %z", now));
|
2013-02-23 19:10:34 -05:00
|
|
|
|
|
|
|
|
return macros;
|
|
|
|
|
}
|