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;
|
|
|
|
|
|
|
|
int IcingaApplication::Main(const vector<string>& args)
|
|
|
|
{
|
2012-04-01 20:04:30 +02:00
|
|
|
#ifdef _WIN32
|
2012-04-26 16:45:00 +02:00
|
|
|
Application::Log("Icinga component loader");
|
2012-04-01 20:04:30 +02:00
|
|
|
#else /* _WIN32 */
|
2012-04-26 16:45:00 +02:00
|
|
|
Application::Log("Icinga component loader (version: " ICINGA_VERSION ")");
|
2012-04-01 20:04:30 +02:00
|
|
|
#endif /* _WIN32 */
|
|
|
|
|
2012-04-02 13:09:33 +02:00
|
|
|
if (args.size() < 2) {
|
|
|
|
PrintUsage(args[0]);
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
|
2012-04-27 13:12:06 +02:00
|
|
|
m_EndpointManager = make_shared<EndpointManager>();
|
2012-04-24 14:02:15 +02:00
|
|
|
|
2012-04-02 13:43:47 +02:00
|
|
|
string componentDirectory = GetExeDirectory() + "/../lib/icinga";
|
2012-04-02 13:09:33 +02:00
|
|
|
AddComponentSearchDir(componentDirectory);
|
|
|
|
|
2012-04-27 13:12:06 +02:00
|
|
|
/* register handler for 'icinga' config objects */
|
|
|
|
ConfigCollection::Ptr icingaCollection = GetConfigHive()->GetCollection("icinga");
|
|
|
|
function<int (const EventArgs&)> NewIcingaConfigHandler = bind_weak(&IcingaApplication::NewIcingaConfigHandler, shared_from_this());
|
2012-05-09 10:15:51 +02:00
|
|
|
icingaCollection->OnObjectCommitted += NewIcingaConfigHandler;
|
2012-04-27 13:12:06 +02:00
|
|
|
icingaCollection->ForEachObject(NewIcingaConfigHandler);
|
|
|
|
icingaCollection->OnObjectRemoved += bind_weak(&IcingaApplication::DeletedIcingaConfigHandler, shared_from_this());
|
|
|
|
|
2012-05-08 12:03:24 +02:00
|
|
|
/* register handler for 'component' config objects */
|
|
|
|
ConfigCollection::Ptr componentCollection = GetConfigHive()->GetCollection("component");
|
|
|
|
function<int (const EventArgs&)> NewComponentHandler = bind_weak(&IcingaApplication::NewComponentHandler, shared_from_this());
|
2012-05-09 10:15:51 +02:00
|
|
|
componentCollection->OnObjectCommitted += NewComponentHandler;
|
2012-05-08 12:03:24 +02:00
|
|
|
componentCollection->ForEachObject(NewComponentHandler);
|
|
|
|
componentCollection->OnObjectRemoved += bind_weak(&IcingaApplication::DeletedComponentHandler, shared_from_this());
|
|
|
|
|
2012-04-27 13:12:06 +02:00
|
|
|
/* load config file */
|
|
|
|
ConfigObject::Ptr fileComponentConfig = make_shared<ConfigObject>("component", "configfile");
|
|
|
|
fileComponentConfig->SetPropertyString("configFilename", args[1]);
|
|
|
|
fileComponentConfig->SetPropertyInteger("replicate", 0);
|
|
|
|
GetConfigHive()->AddObject(fileComponentConfig);
|
|
|
|
|
|
|
|
if (GetPrivateKeyFile().empty())
|
|
|
|
throw InvalidArgumentException("No private key was specified.");
|
|
|
|
|
|
|
|
if (GetPublicKeyFile().empty())
|
|
|
|
throw InvalidArgumentException("No public certificate was specified.");
|
|
|
|
|
|
|
|
if (GetCAKeyFile().empty())
|
|
|
|
throw InvalidArgumentException("No CA certificate was specified.");
|
|
|
|
|
|
|
|
/* set up SSL context */
|
|
|
|
shared_ptr<X509> cert = Utility::GetX509Certificate(GetPublicKeyFile());
|
|
|
|
string identity = Utility::GetCertificateCN(cert);
|
|
|
|
Application::Log("My identity: " + identity);
|
|
|
|
m_EndpointManager->SetIdentity(identity);
|
2012-04-04 12:22:46 +02:00
|
|
|
|
2012-04-27 13:12:06 +02:00
|
|
|
shared_ptr<SSL_CTX> sslContext = Utility::MakeSSLContext(GetPublicKeyFile(), GetPrivateKeyFile(), GetCAKeyFile());
|
|
|
|
m_EndpointManager->SetSSLContext(sslContext);
|
|
|
|
|
2012-05-08 12:03:24 +02:00
|
|
|
/* create the primary RPC listener */
|
|
|
|
string service = GetService();
|
|
|
|
if (!service.empty())
|
|
|
|
GetEndpointManager()->AddListener(service);
|
2012-04-04 10:04:38 +02:00
|
|
|
|
2012-03-31 16:29:53 +02:00
|
|
|
RunEventLoop();
|
|
|
|
|
2012-04-02 13:09:33 +02:00
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
void IcingaApplication::PrintUsage(const string& programPath)
|
|
|
|
{
|
|
|
|
cout << "Syntax: " << programPath << " <config-file>" << endl;
|
2012-03-31 16:29:53 +02:00
|
|
|
}
|
|
|
|
|
2012-04-06 08:56:52 +02:00
|
|
|
EndpointManager::Ptr IcingaApplication::GetEndpointManager(void)
|
2012-03-31 16:29:53 +02:00
|
|
|
{
|
2012-04-06 08:56:52 +02:00
|
|
|
return m_EndpointManager;
|
2012-03-31 16:29:53 +02:00
|
|
|
}
|
|
|
|
|
2012-04-20 13:49:04 +02:00
|
|
|
int IcingaApplication::NewComponentHandler(const EventArgs& ea)
|
2012-04-01 09:30:38 +02:00
|
|
|
{
|
2012-04-18 15:22:25 +02:00
|
|
|
ConfigObject::Ptr object = static_pointer_cast<ConfigObject>(ea.Source);
|
2012-04-20 13:49:04 +02:00
|
|
|
|
2012-04-20 14:20:25 +02:00
|
|
|
/* don't allow replicated config objects */
|
|
|
|
if (object->GetReplicated())
|
|
|
|
return 0;
|
|
|
|
|
2012-04-27 13:12:06 +02:00
|
|
|
string path;
|
2012-04-20 13:49:04 +02:00
|
|
|
if (!object->GetPropertyString("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
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-04-20 13:49:04 +02:00
|
|
|
int IcingaApplication::DeletedComponentHandler(const EventArgs& ea)
|
2012-04-01 09:30:38 +02:00
|
|
|
{
|
2012-04-18 15:22:25 +02:00
|
|
|
ConfigObject::Ptr object = static_pointer_cast<ConfigObject>(ea.Source);
|
2012-04-20 14:20:25 +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
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-04-27 13:12:06 +02:00
|
|
|
int IcingaApplication::NewIcingaConfigHandler(const EventArgs& ea)
|
|
|
|
{
|
|
|
|
ConfigObject::Ptr object = static_pointer_cast<ConfigObject>(ea.Source);
|
|
|
|
|
|
|
|
/* don't allow replicated config objects */
|
|
|
|
if (object->GetReplicated())
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
string privkey;
|
|
|
|
if (object->GetPropertyString("privkey", &privkey))
|
|
|
|
SetPrivateKeyFile(privkey);
|
|
|
|
|
|
|
|
string pubkey;
|
|
|
|
if (object->GetPropertyString("pubkey", &pubkey))
|
|
|
|
SetPublicKeyFile(pubkey);
|
|
|
|
|
|
|
|
string cakey;
|
|
|
|
if (object->GetPropertyString("cakey", &cakey))
|
|
|
|
SetCAKeyFile(cakey);
|
|
|
|
|
2012-04-30 15:30:45 +02:00
|
|
|
string node;
|
|
|
|
if (object->GetPropertyString("node", &node))
|
|
|
|
SetNode(node);
|
|
|
|
|
|
|
|
string service;
|
|
|
|
if (object->GetPropertyString("service", &service))
|
|
|
|
SetService(service);
|
|
|
|
|
2012-04-27 13:12:06 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-05-10 13:46:04 +02:00
|
|
|
int IcingaApplication::DeletedIcingaConfigHandler(const EventArgs&)
|
2012-04-27 13:12:06 +02:00
|
|
|
{
|
|
|
|
throw Exception("Unsupported operation.");
|
|
|
|
}
|
|
|
|
|
|
|
|
void IcingaApplication::SetPrivateKeyFile(string privkey)
|
|
|
|
{
|
|
|
|
m_PrivateKeyFile = privkey;
|
|
|
|
}
|
|
|
|
|
|
|
|
string IcingaApplication::GetPrivateKeyFile(void) const
|
|
|
|
{
|
|
|
|
return m_PrivateKeyFile;
|
|
|
|
}
|
|
|
|
|
|
|
|
void IcingaApplication::SetPublicKeyFile(string pubkey)
|
|
|
|
{
|
|
|
|
m_PublicKeyFile = pubkey;
|
|
|
|
}
|
|
|
|
|
|
|
|
string IcingaApplication::GetPublicKeyFile(void) const
|
|
|
|
{
|
|
|
|
return m_PublicKeyFile;
|
|
|
|
}
|
|
|
|
|
|
|
|
void IcingaApplication::SetCAKeyFile(string cakey)
|
|
|
|
{
|
|
|
|
m_CAKeyFile = cakey;
|
|
|
|
}
|
|
|
|
|
|
|
|
string IcingaApplication::GetCAKeyFile(void) const
|
|
|
|
{
|
|
|
|
return m_CAKeyFile;
|
|
|
|
}
|
2012-04-30 15:30:45 +02:00
|
|
|
|
|
|
|
void IcingaApplication::SetNode(string node)
|
|
|
|
{
|
|
|
|
m_Node = node;
|
|
|
|
}
|
|
|
|
|
|
|
|
string IcingaApplication::GetNode(void) const
|
|
|
|
{
|
|
|
|
return m_Node;
|
|
|
|
}
|
|
|
|
|
|
|
|
void IcingaApplication::SetService(string service)
|
|
|
|
{
|
|
|
|
m_Service = service;
|
|
|
|
}
|
|
|
|
|
|
|
|
string IcingaApplication::GetService(void) const
|
|
|
|
{
|
|
|
|
return m_Service;
|
|
|
|
}
|