mirror of
				https://github.com/Icinga/icinga2.git
				synced 2025-11-04 05:34:12 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			211 lines
		
	
	
		
			6.0 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			211 lines
		
	
	
		
			6.0 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
/******************************************************************************
 | 
						|
 * 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     *
 | 
						|
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.             *
 | 
						|
 ******************************************************************************/
 | 
						|
 | 
						|
#include <cstdio>
 | 
						|
#include <iostream>
 | 
						|
#include "i2-icinga.h"
 | 
						|
 | 
						|
using namespace icinga;
 | 
						|
 | 
						|
static AttributeDescription icingaApplicationAttributes[] = {
 | 
						|
	{ "cert_path", Attribute_Config },
 | 
						|
	{ "ca_path", Attribute_Config },
 | 
						|
	{ "node", Attribute_Config },
 | 
						|
	{ "service", Attribute_Config },
 | 
						|
	{ "pid_path", Attribute_Config },
 | 
						|
	{ "state_path", Attribute_Config },
 | 
						|
	{ "macros", Attribute_Config }
 | 
						|
};
 | 
						|
 | 
						|
REGISTER_TYPE(IcingaApplication, icingaApplicationAttributes);
 | 
						|
 | 
						|
#ifndef _WIN32
 | 
						|
#	include "icinga-version.h"
 | 
						|
#	define ICINGA_VERSION GIT_MESSAGE
 | 
						|
#endif /* _WIN32 */
 | 
						|
 | 
						|
const String IcingaApplication::DefaultPidPath = "icinga2.pid";
 | 
						|
const String IcingaApplication::DefaultStatePath = "icinga2.state";
 | 
						|
 | 
						|
IcingaApplication::IcingaApplication(const Dictionary::Ptr& serializedUpdate)
 | 
						|
	: Application(serializedUpdate)
 | 
						|
{
 | 
						|
	/* 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();
 | 
						|
}
 | 
						|
 | 
						|
/**
 | 
						|
 * The entry point for the Icinga application.
 | 
						|
 *
 | 
						|
 * @param args Command-line arguments.
 | 
						|
 * @returns An exit status.
 | 
						|
 */
 | 
						|
int IcingaApplication::Main(const vector<String>& args)
 | 
						|
{
 | 
						|
	Logger::Write(LogInformation, "icinga", "In IcingaApplication::Main()");
 | 
						|
 | 
						|
	m_StartTime = Utility::GetTime();
 | 
						|
 | 
						|
	if (args.size() == 1 && args[0] == "--help") {
 | 
						|
		stringstream msgbuf;
 | 
						|
		msgbuf << "Syntax: " << args[0] << " ... -d";
 | 
						|
		Logger::Write(LogInformation, "icinga", msgbuf.str());
 | 
						|
		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") {
 | 
						|
				daemonize = true;
 | 
						|
				continue;
 | 
						|
			} else {
 | 
						|
				throw_exception(invalid_argument("Unknown option: " + arg));
 | 
						|
			}
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	UpdatePidFile(GetPidPath());
 | 
						|
 | 
						|
	if (!GetCertificateFile().IsEmpty() && !GetCAFile().IsEmpty()) {
 | 
						|
		/* set up SSL context */
 | 
						|
		shared_ptr<X509> cert = Utility::GetX509Certificate(GetCertificateFile());
 | 
						|
		String identity = Utility::GetCertificateCN(cert);
 | 
						|
		Logger::Write(LogInformation, "icinga", "My identity: " + identity);
 | 
						|
		EndpointManager::GetInstance()->SetIdentity(identity);
 | 
						|
 | 
						|
		m_SSLContext = Utility::MakeSSLContext(GetCertificateFile(), GetCertificateFile(), GetCAFile());
 | 
						|
 | 
						|
		EndpointManager::GetInstance()->SetSSLContext(m_SSLContext);
 | 
						|
	}
 | 
						|
 | 
						|
	/* create the primary RPC listener */
 | 
						|
	if (!GetService().IsEmpty())
 | 
						|
		EndpointManager::GetInstance()->AddListener(GetService());
 | 
						|
 | 
						|
	if (daemonize) {
 | 
						|
		Logger::Write(LogInformation, "icinga", "Daemonizing.");
 | 
						|
		ClosePidFile();
 | 
						|
		Utility::Daemonize();
 | 
						|
		UpdatePidFile(GetPidPath());
 | 
						|
	}
 | 
						|
 | 
						|
	/* restore the previous program state */
 | 
						|
	DynamicObject::RestoreObjects(GetStatePath());
 | 
						|
 | 
						|
	/* 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();
 | 
						|
 | 
						|
	RunEventLoop();
 | 
						|
 | 
						|
	DumpProgramState();
 | 
						|
 | 
						|
	Logger::Write(LogInformation, "icinga", "Icinga has shut down.");
 | 
						|
 | 
						|
	return EXIT_SUCCESS;
 | 
						|
}
 | 
						|
 | 
						|
void IcingaApplication::DumpProgramState(void) {
 | 
						|
	DynamicObject::DumpObjects(GetStatePath());
 | 
						|
}
 | 
						|
 | 
						|
IcingaApplication::Ptr IcingaApplication::GetInstance(void)
 | 
						|
{
 | 
						|
	return static_pointer_cast<IcingaApplication>(Application::GetInstance());
 | 
						|
}
 | 
						|
 | 
						|
String IcingaApplication::GetCertificateFile(void) const
 | 
						|
{
 | 
						|
	return Get("cert_path");
 | 
						|
}
 | 
						|
 | 
						|
String IcingaApplication::GetCAFile(void) const
 | 
						|
{
 | 
						|
	return Get("ca_path");
 | 
						|
}
 | 
						|
 | 
						|
String IcingaApplication::GetNode(void) const
 | 
						|
{
 | 
						|
	return Get("node");
 | 
						|
}
 | 
						|
 | 
						|
String IcingaApplication::GetService(void) const
 | 
						|
{
 | 
						|
	return Get("service");
 | 
						|
}
 | 
						|
 | 
						|
String IcingaApplication::GetPidPath(void) const
 | 
						|
{
 | 
						|
	Value pidPath = Get("pid_path");
 | 
						|
 | 
						|
	if (pidPath.IsEmpty())
 | 
						|
		pidPath = DefaultPidPath;
 | 
						|
 | 
						|
	return pidPath;
 | 
						|
}
 | 
						|
 | 
						|
String IcingaApplication::GetStatePath(void) const
 | 
						|
{
 | 
						|
	Value statePath = Get("state_path");
 | 
						|
 | 
						|
	if (statePath.IsEmpty())
 | 
						|
		statePath = DefaultStatePath;
 | 
						|
 | 
						|
	return statePath;
 | 
						|
}
 | 
						|
 | 
						|
Dictionary::Ptr IcingaApplication::GetMacros(void) const
 | 
						|
{
 | 
						|
	return Get("macros");
 | 
						|
}
 | 
						|
 | 
						|
double IcingaApplication::GetStartTime(void) const
 | 
						|
{
 | 
						|
	return m_StartTime;
 | 
						|
}
 | 
						|
 | 
						|
shared_ptr<SSL_CTX> IcingaApplication::GetSSLContext(void) const
 | 
						|
{
 | 
						|
	return m_SSLContext;
 | 
						|
}
 |