2014-05-03 20:02:22 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
|
|
|
* Copyright (C) 2012-2014 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. *
|
|
|
|
******************************************************************************/
|
|
|
|
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "remote/apilistener.hpp"
|
|
|
|
#include "remote/apiclient.hpp"
|
|
|
|
#include "remote/endpoint.hpp"
|
|
|
|
#include "base/convert.hpp"
|
|
|
|
#include "base/netstring.hpp"
|
|
|
|
#include "base/dynamictype.hpp"
|
|
|
|
#include "base/logger_fwd.hpp"
|
|
|
|
#include "base/objectlock.hpp"
|
|
|
|
#include "base/stdiostream.hpp"
|
|
|
|
#include "base/application.hpp"
|
|
|
|
#include "base/context.hpp"
|
|
|
|
#include "base/statsfunction.hpp"
|
2014-05-03 20:02:22 +02:00
|
|
|
#include <fstream>
|
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
|
|
|
REGISTER_TYPE(ApiListener);
|
|
|
|
|
|
|
|
boost::signals2::signal<void(bool)> ApiListener::OnMasterChanged;
|
|
|
|
|
|
|
|
REGISTER_STATSFUNCTION(ApiListenerStats, &ApiListener::StatsFunc);
|
|
|
|
|
|
|
|
void ApiListener::OnConfigLoaded(void)
|
|
|
|
{
|
|
|
|
/* set up SSL context */
|
2014-06-05 15:03:56 +02:00
|
|
|
shared_ptr<X509> cert = make_shared<X509>();
|
|
|
|
try {
|
|
|
|
cert = GetX509Certificate(GetCertPath());
|
2014-08-25 08:35:35 +02:00
|
|
|
} catch (const std::exception&) {
|
2014-06-05 15:03:56 +02:00
|
|
|
Log(LogCritical, "ApiListener", "Cannot get certificate from cert path: '" + GetCertPath() + "'.");
|
2014-08-05 12:14:24 +02:00
|
|
|
Application::Exit(EXIT_FAILURE);
|
2014-06-05 15:03:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
SetIdentity(GetCertificateCN(cert));
|
2014-08-25 08:35:35 +02:00
|
|
|
} catch (const std::exception&) {
|
2014-06-05 15:03:56 +02:00
|
|
|
Log(LogCritical, "ApiListener", "Cannot get certificate common name from cert path: '" + GetCertPath() + "'.");
|
2014-08-05 12:14:24 +02:00
|
|
|
Application::Exit(EXIT_FAILURE);
|
2014-06-05 15:03:56 +02:00
|
|
|
}
|
|
|
|
|
2014-05-28 13:58:56 +02:00
|
|
|
Log(LogInformation, "ApiListener", "My API identity: " + GetIdentity());
|
2014-05-03 20:02:22 +02:00
|
|
|
|
2014-06-05 15:03:56 +02:00
|
|
|
try {
|
|
|
|
m_SSLContext = MakeSSLContext(GetCertPath(), GetKeyPath(), GetCaPath());
|
2014-08-25 08:35:35 +02:00
|
|
|
} catch (const std::exception&) {
|
2014-06-05 15:03:56 +02:00
|
|
|
Log(LogCritical, "ApiListener", "Cannot make SSL context for cert path: '" + GetCertPath() + "' key path: '" + GetKeyPath() + "' ca path: '" + GetCaPath() + "'.");
|
2014-08-05 12:14:24 +02:00
|
|
|
Application::Exit(EXIT_FAILURE);
|
2014-06-05 15:03:56 +02:00
|
|
|
}
|
2014-05-03 20:02:22 +02:00
|
|
|
|
2014-06-05 15:03:56 +02:00
|
|
|
if (!GetCrlPath().IsEmpty()) {
|
|
|
|
try {
|
|
|
|
AddCRLToSSLContext(m_SSLContext, GetCrlPath());
|
2014-08-25 08:35:35 +02:00
|
|
|
} catch (const std::exception&) {
|
2014-06-05 15:03:56 +02:00
|
|
|
Log(LogCritical, "ApiListener", "Cannot add certificate revocation list to SSL context for crl path: '" + GetCrlPath() + "'.");
|
2014-08-05 12:14:24 +02:00
|
|
|
Application::Exit(EXIT_FAILURE);
|
2014-06-05 15:03:56 +02:00
|
|
|
}
|
|
|
|
}
|
2014-05-03 20:02:22 +02:00
|
|
|
|
2014-06-05 14:36:57 +02:00
|
|
|
if (!Endpoint::GetByName(GetIdentity())) {
|
|
|
|
Log(LogCritical, "ApiListener", "Endpoint object for '" + GetIdentity() + "' is missing.");
|
2014-08-05 12:14:24 +02:00
|
|
|
Application::Exit(EXIT_FAILURE);
|
2014-06-05 14:36:57 +02:00
|
|
|
}
|
2014-05-13 13:18:27 +02:00
|
|
|
|
|
|
|
SyncZoneDirs();
|
2014-05-03 20:02:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Starts the component.
|
|
|
|
*/
|
|
|
|
void ApiListener::Start(void)
|
|
|
|
{
|
2014-06-05 14:36:57 +02:00
|
|
|
if (std::distance(DynamicType::GetObjects<ApiListener>().first, DynamicType::GetObjects<ApiListener>().second) > 1) {
|
|
|
|
Log(LogCritical, "ApiListener", "Only one ApiListener object is allowed.");
|
|
|
|
return;
|
|
|
|
}
|
2014-05-03 20:02:22 +02:00
|
|
|
|
|
|
|
DynamicObject::Start();
|
|
|
|
|
|
|
|
{
|
|
|
|
boost::mutex::scoped_lock(m_LogLock);
|
|
|
|
RotateLogFile();
|
|
|
|
OpenLogFile();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* create the primary JSON-RPC listener */
|
2014-08-25 08:27:19 +02:00
|
|
|
if (!AddListener(GetBindHost(), GetBindPort())) {
|
|
|
|
Log(LogCritical, "ApiListener", "Cannot add listener on host '" + GetBindHost() + "' for port '" + GetBindPort() + "'.");
|
2014-08-04 16:34:17 +02:00
|
|
|
Application::Exit(EXIT_FAILURE);
|
|
|
|
}
|
2014-05-03 20:02:22 +02:00
|
|
|
|
|
|
|
m_Timer = make_shared<Timer>();
|
|
|
|
m_Timer->OnTimerExpired.connect(boost::bind(&ApiListener::ApiTimerHandler, this));
|
|
|
|
m_Timer->SetInterval(5);
|
|
|
|
m_Timer->Start();
|
|
|
|
m_Timer->Reschedule(0);
|
|
|
|
|
|
|
|
OnMasterChanged(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
ApiListener::Ptr ApiListener::GetInstance(void)
|
|
|
|
{
|
|
|
|
BOOST_FOREACH(const ApiListener::Ptr& listener, DynamicType::GetObjects<ApiListener>())
|
|
|
|
return listener;
|
|
|
|
|
|
|
|
return ApiListener::Ptr();
|
|
|
|
}
|
|
|
|
|
|
|
|
shared_ptr<SSL_CTX> ApiListener::GetSSLContext(void) const
|
|
|
|
{
|
|
|
|
return m_SSLContext;
|
|
|
|
}
|
|
|
|
|
|
|
|
Endpoint::Ptr ApiListener::GetMaster(void) const
|
|
|
|
{
|
|
|
|
Zone::Ptr zone = Zone::GetLocalZone();
|
2014-08-04 16:34:17 +02:00
|
|
|
|
|
|
|
if (!zone)
|
|
|
|
return Endpoint::Ptr();
|
|
|
|
|
2014-05-03 20:02:22 +02:00
|
|
|
std::vector<String> names;
|
|
|
|
|
|
|
|
BOOST_FOREACH(const Endpoint::Ptr& endpoint, zone->GetEndpoints())
|
|
|
|
if (endpoint->IsConnected() || endpoint->GetName() == GetIdentity())
|
|
|
|
names.push_back(endpoint->GetName());
|
|
|
|
|
|
|
|
std::sort(names.begin(), names.end());
|
|
|
|
|
|
|
|
return Endpoint::GetByName(*names.begin());
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ApiListener::IsMaster(void) const
|
|
|
|
{
|
2014-08-04 16:34:17 +02:00
|
|
|
Endpoint::Ptr master = GetMaster();
|
|
|
|
|
|
|
|
if (!master)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return master->GetName() == GetIdentity();
|
2014-05-03 20:02:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a new JSON-RPC listener on the specified port.
|
|
|
|
*
|
2014-08-25 08:27:19 +02:00
|
|
|
* @param node The host the listener should be bound to.
|
2014-05-03 20:02:22 +02:00
|
|
|
* @param service The port to listen on.
|
|
|
|
*/
|
2014-08-25 08:27:19 +02:00
|
|
|
bool ApiListener::AddListener(const String& node, const String& service)
|
2014-05-03 20:02:22 +02:00
|
|
|
{
|
|
|
|
ObjectLock olock(this);
|
|
|
|
|
|
|
|
shared_ptr<SSL_CTX> sslContext = m_SSLContext;
|
|
|
|
|
2014-06-05 14:36:57 +02:00
|
|
|
if (!sslContext) {
|
|
|
|
Log(LogCritical, "ApiListener", "SSL context is required for AddListener()");
|
2014-08-04 16:34:17 +02:00
|
|
|
return false;
|
2014-06-05 14:36:57 +02:00
|
|
|
}
|
2014-05-03 20:02:22 +02:00
|
|
|
|
|
|
|
std::ostringstream s;
|
|
|
|
s << "Adding new listener: port " << service;
|
2014-05-28 13:58:56 +02:00
|
|
|
Log(LogInformation, "ApiListener", s.str());
|
2014-05-03 20:02:22 +02:00
|
|
|
|
|
|
|
TcpSocket::Ptr server = make_shared<TcpSocket>();
|
2014-06-05 14:36:57 +02:00
|
|
|
|
|
|
|
try {
|
2014-08-25 08:27:19 +02:00
|
|
|
server->Bind(node, service, AF_UNSPEC);
|
|
|
|
} catch (const std::exception&) {
|
|
|
|
Log(LogCritical, "ApiListener", "Cannot bind TCP socket for host '" + node + "' on port '" + service + "'.");
|
2014-08-04 16:34:17 +02:00
|
|
|
return false;
|
2014-06-05 14:36:57 +02:00
|
|
|
}
|
2014-05-03 20:02:22 +02:00
|
|
|
|
|
|
|
boost::thread thread(boost::bind(&ApiListener::ListenerThreadProc, this, server));
|
|
|
|
thread.detach();
|
|
|
|
|
|
|
|
m_Servers.insert(server);
|
2014-08-04 16:34:17 +02:00
|
|
|
|
|
|
|
return true;
|
2014-05-03 20:02:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void ApiListener::ListenerThreadProc(const Socket::Ptr& server)
|
|
|
|
{
|
|
|
|
Utility::SetThreadName("API Listener");
|
|
|
|
|
|
|
|
server->Listen();
|
|
|
|
|
|
|
|
for (;;) {
|
2014-06-05 16:17:53 +02:00
|
|
|
try {
|
|
|
|
Socket::Ptr client = server->Accept();
|
|
|
|
Utility::QueueAsyncCallback(boost::bind(&ApiListener::NewClientHandler, this, client, RoleServer));
|
2014-08-25 08:35:35 +02:00
|
|
|
} catch (const std::exception&) {
|
2014-06-05 16:17:53 +02:00
|
|
|
Log(LogCritical, "ApiListener", "Cannot accept new connection.");
|
|
|
|
}
|
2014-05-03 20:02:22 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-06-23 10:00:02 +02:00
|
|
|
* Creates a new JSON-RPC client and connects to the specified endpoint.
|
2014-05-03 20:02:22 +02:00
|
|
|
*
|
2014-06-23 10:00:02 +02:00
|
|
|
* @param endpoint The endpoint.
|
2014-05-03 20:02:22 +02:00
|
|
|
*/
|
2014-06-23 10:00:02 +02:00
|
|
|
void ApiListener::AddConnection(const Endpoint::Ptr& endpoint)
|
2014-05-22 13:45:42 +02:00
|
|
|
{
|
2014-05-03 20:02:22 +02:00
|
|
|
{
|
|
|
|
ObjectLock olock(this);
|
|
|
|
|
|
|
|
shared_ptr<SSL_CTX> sslContext = m_SSLContext;
|
|
|
|
|
2014-06-05 14:36:57 +02:00
|
|
|
if (!sslContext) {
|
2014-08-04 16:34:17 +02:00
|
|
|
Log(LogCritical, "ApiListener", "SSL context is required for AddConnection()");
|
2014-06-05 14:36:57 +02:00
|
|
|
return;
|
|
|
|
}
|
2014-05-03 20:02:22 +02:00
|
|
|
}
|
|
|
|
|
2014-06-23 10:00:02 +02:00
|
|
|
String host = endpoint->GetHost();
|
|
|
|
String port = endpoint->GetPort();
|
|
|
|
|
2014-08-22 16:00:38 +02:00
|
|
|
Log(LogInformation, "ApiClient", "Reconnecting to API endpoint '" + endpoint->GetName() + "' via host '" + host + "' and port " + port);
|
2014-08-22 15:39:34 +02:00
|
|
|
|
2014-05-03 20:02:22 +02:00
|
|
|
TcpSocket::Ptr client = make_shared<TcpSocket>();
|
|
|
|
|
2014-05-22 13:45:42 +02:00
|
|
|
try {
|
2014-06-23 10:00:02 +02:00
|
|
|
endpoint->SetConnecting(true);
|
|
|
|
client->Connect(host, port);
|
|
|
|
NewClientHandler(client, RoleClient);
|
|
|
|
endpoint->SetConnecting(false);
|
2014-05-22 13:45:42 +02:00
|
|
|
} catch (const std::exception& ex) {
|
2014-06-23 10:00:02 +02:00
|
|
|
endpoint->SetConnecting(false);
|
2014-08-04 13:35:12 +02:00
|
|
|
client->Close();
|
2014-06-23 10:00:02 +02:00
|
|
|
|
2014-05-22 13:45:42 +02:00
|
|
|
std::ostringstream info, debug;
|
2014-06-23 10:00:02 +02:00
|
|
|
info << "Cannot connect to host '" << host << "' on port '" << port << "'";
|
2014-05-22 21:20:18 +02:00
|
|
|
debug << info.str() << std::endl << DiagnosticInformation(ex);
|
2014-06-05 14:36:57 +02:00
|
|
|
Log(LogCritical, "ApiListener", info.str());
|
2014-05-28 13:58:56 +02:00
|
|
|
Log(LogDebug, "ApiListener", debug.str());
|
2014-05-22 13:45:42 +02:00
|
|
|
}
|
2014-05-03 20:02:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Processes a new client connection.
|
|
|
|
*
|
|
|
|
* @param client The new client.
|
|
|
|
*/
|
|
|
|
void ApiListener::NewClientHandler(const Socket::Ptr& client, ConnectionRole role)
|
|
|
|
{
|
|
|
|
CONTEXT("Handling new API client connection");
|
|
|
|
|
|
|
|
TlsStream::Ptr tlsStream;
|
|
|
|
|
|
|
|
{
|
|
|
|
ObjectLock olock(this);
|
2014-06-05 15:03:56 +02:00
|
|
|
try {
|
|
|
|
tlsStream = make_shared<TlsStream>(client, role, m_SSLContext);
|
2014-08-25 08:35:35 +02:00
|
|
|
} catch (const std::exception&) {
|
2014-06-05 15:03:56 +02:00
|
|
|
Log(LogCritical, "ApiListener", "Cannot create tls stream from client connection.");
|
|
|
|
return;
|
|
|
|
}
|
2014-05-03 20:02:22 +02:00
|
|
|
}
|
|
|
|
|
2014-06-05 15:03:56 +02:00
|
|
|
try {
|
|
|
|
tlsStream->Handshake();
|
2014-08-25 08:35:35 +02:00
|
|
|
} catch (const std::exception&) {
|
2014-06-05 15:03:56 +02:00
|
|
|
Log(LogCritical, "ApiListener", "Client TLS handshake failed.");
|
|
|
|
return;
|
|
|
|
}
|
2014-05-03 20:02:22 +02:00
|
|
|
|
|
|
|
shared_ptr<X509> cert = tlsStream->GetPeerCertificate();
|
2014-06-05 15:03:56 +02:00
|
|
|
String identity;
|
|
|
|
|
|
|
|
try {
|
|
|
|
identity = GetCertificateCN(cert);
|
2014-08-25 08:35:35 +02:00
|
|
|
} catch (const std::exception&) {
|
2014-06-05 15:03:56 +02:00
|
|
|
Log(LogCritical, "ApiListener", "Cannot get certificate common name from cert path: '" + GetCertPath() + "'.");
|
|
|
|
return;
|
|
|
|
}
|
2014-05-03 20:02:22 +02:00
|
|
|
|
2014-05-28 13:58:56 +02:00
|
|
|
Log(LogInformation, "ApiListener", "New client connection for identity '" + identity + "'");
|
2014-05-08 15:00:09 +02:00
|
|
|
|
2014-05-03 20:02:22 +02:00
|
|
|
Endpoint::Ptr endpoint = Endpoint::GetByName(identity);
|
|
|
|
|
2014-05-22 09:02:44 +02:00
|
|
|
bool need_sync = false;
|
2014-05-08 15:12:56 +02:00
|
|
|
|
|
|
|
if (endpoint)
|
|
|
|
need_sync = !endpoint->IsConnected();
|
2014-05-03 20:02:22 +02:00
|
|
|
|
2014-05-08 15:12:56 +02:00
|
|
|
ApiClient::Ptr aclient = make_shared<ApiClient>(identity, tlsStream, role);
|
|
|
|
aclient->Start();
|
2014-05-03 20:02:22 +02:00
|
|
|
|
2014-05-08 15:12:56 +02:00
|
|
|
if (endpoint) {
|
2014-08-05 09:10:59 +02:00
|
|
|
endpoint->AddClient(aclient);
|
|
|
|
|
2014-05-08 15:00:09 +02:00
|
|
|
if (need_sync) {
|
|
|
|
{
|
|
|
|
ObjectLock olock(endpoint);
|
2014-05-03 20:02:22 +02:00
|
|
|
|
2014-05-08 15:00:09 +02:00
|
|
|
endpoint->SetSyncing(true);
|
|
|
|
}
|
2014-05-03 20:02:22 +02:00
|
|
|
|
2014-05-08 15:00:09 +02:00
|
|
|
ReplayLog(aclient);
|
2014-05-03 20:02:22 +02:00
|
|
|
}
|
|
|
|
|
2014-05-13 15:57:02 +02:00
|
|
|
SendConfigUpdate(aclient);
|
2014-05-08 15:12:56 +02:00
|
|
|
} else
|
|
|
|
AddAnonymousClient(aclient);
|
2014-05-03 20:02:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void ApiListener::ApiTimerHandler(void)
|
|
|
|
{
|
|
|
|
double now = Utility::GetTime();
|
|
|
|
|
|
|
|
std::vector<int> files;
|
|
|
|
Utility::Glob(GetApiDir() + "log/*", boost::bind(&ApiListener::LogGlobHandler, boost::ref(files), _1), GlobFile);
|
|
|
|
std::sort(files.begin(), files.end());
|
|
|
|
|
|
|
|
BOOST_FOREACH(int ts, files) {
|
|
|
|
bool need = false;
|
|
|
|
|
|
|
|
BOOST_FOREACH(const Endpoint::Ptr& endpoint, DynamicType::GetObjects<Endpoint>()) {
|
|
|
|
if (endpoint->GetName() == GetIdentity())
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (endpoint->GetLogDuration() >= 0 && ts < now - endpoint->GetLogDuration())
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (ts > endpoint->GetLocalLogPosition()) {
|
|
|
|
need = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!need) {
|
|
|
|
String path = GetApiDir() + "log/" + Convert::ToString(ts);
|
2014-05-28 13:58:56 +02:00
|
|
|
Log(LogNotice, "ApiListener", "Removing old log file: " + path);
|
2014-05-03 20:02:22 +02:00
|
|
|
(void)unlink(path.CStr());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (IsMaster()) {
|
|
|
|
Zone::Ptr my_zone = Zone::GetLocalZone();
|
|
|
|
|
2014-05-08 15:00:09 +02:00
|
|
|
BOOST_FOREACH(const Zone::Ptr& zone, DynamicType::GetObjects<Zone>()) {
|
|
|
|
/* only connect to endpoints in a) the same zone b) our parent zone c) immediate child zones */
|
|
|
|
if (my_zone != zone && my_zone != zone->GetParent() && zone != my_zone->GetParent())
|
2014-05-03 20:02:22 +02:00
|
|
|
continue;
|
|
|
|
|
2014-05-08 15:00:09 +02:00
|
|
|
bool connected = false;
|
2014-05-03 20:02:22 +02:00
|
|
|
|
2014-05-08 15:00:09 +02:00
|
|
|
BOOST_FOREACH(const Endpoint::Ptr& endpoint, zone->GetEndpoints()) {
|
|
|
|
if (endpoint->IsConnected()) {
|
|
|
|
connected = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2014-05-03 20:02:22 +02:00
|
|
|
|
2014-05-08 15:00:09 +02:00
|
|
|
/* don't connect to an endpoint if we already have a connection to the zone */
|
|
|
|
if (connected)
|
2014-05-03 20:02:22 +02:00
|
|
|
continue;
|
|
|
|
|
2014-05-08 15:00:09 +02:00
|
|
|
BOOST_FOREACH(const Endpoint::Ptr& endpoint, zone->GetEndpoints()) {
|
|
|
|
/* don't connect to ourselves */
|
|
|
|
if (endpoint->GetName() == GetIdentity())
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/* don't try to connect to endpoints which don't have a host and port */
|
|
|
|
if (endpoint->GetHost().IsEmpty() || endpoint->GetPort().IsEmpty())
|
|
|
|
continue;
|
|
|
|
|
2014-07-01 09:38:22 +02:00
|
|
|
/* don't try to connect if there's already a connection attempt */
|
|
|
|
if (endpoint->GetConnecting())
|
|
|
|
continue;
|
|
|
|
|
2014-06-23 10:00:02 +02:00
|
|
|
Utility::QueueAsyncCallback(boost::bind(&ApiListener::AddConnection, this, endpoint));
|
2014-05-08 15:00:09 +02:00
|
|
|
}
|
2014-05-03 20:02:22 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_FOREACH(const Endpoint::Ptr& endpoint, DynamicType::GetObjects<Endpoint>()) {
|
|
|
|
if (!endpoint->IsConnected())
|
|
|
|
continue;
|
|
|
|
|
|
|
|
double ts = endpoint->GetRemoteLogPosition();
|
|
|
|
|
|
|
|
if (ts == 0)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
Dictionary::Ptr lparams = make_shared<Dictionary>();
|
|
|
|
lparams->Set("log_position", ts);
|
|
|
|
|
|
|
|
Dictionary::Ptr lmessage = make_shared<Dictionary>();
|
|
|
|
lmessage->Set("jsonrpc", "2.0");
|
|
|
|
lmessage->Set("method", "log::SetLogPosition");
|
|
|
|
lmessage->Set("params", lparams);
|
|
|
|
|
|
|
|
BOOST_FOREACH(const ApiClient::Ptr& client, endpoint->GetClients())
|
|
|
|
client->SendMessage(lmessage);
|
|
|
|
|
2014-05-28 13:58:56 +02:00
|
|
|
Log(LogNotice, "ApiListener", "Setting log position for identity '" + endpoint->GetName() + "': " +
|
2014-05-03 20:02:22 +02:00
|
|
|
Utility::FormatDateTime("%Y/%m/%d %H:%M:%S", ts));
|
|
|
|
}
|
|
|
|
|
2014-08-04 16:34:17 +02:00
|
|
|
Endpoint::Ptr master = GetMaster();
|
|
|
|
|
|
|
|
if (master)
|
|
|
|
Log(LogNotice, "ApiListener", "Current zone master: " + master->GetName());
|
2014-05-03 20:02:22 +02:00
|
|
|
|
|
|
|
std::vector<String> names;
|
|
|
|
BOOST_FOREACH(const Endpoint::Ptr& endpoint, DynamicType::GetObjects<Endpoint>())
|
|
|
|
if (endpoint->IsConnected())
|
|
|
|
names.push_back(endpoint->GetName() + " (" + Convert::ToString(endpoint->GetClients().size()) + ")");
|
|
|
|
|
2014-05-28 13:58:56 +02:00
|
|
|
Log(LogNotice, "ApiListener", "Connected endpoints: " + Utility::NaturalJoin(names));
|
2014-05-03 20:02:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void ApiListener::RelayMessage(const MessageOrigin& origin, const DynamicObject::Ptr& secobj, const Dictionary::Ptr& message, bool log)
|
|
|
|
{
|
|
|
|
m_RelayQueue.Enqueue(boost::bind(&ApiListener::SyncRelayMessage, this, origin, secobj, message, log));
|
|
|
|
}
|
|
|
|
|
2014-08-26 10:24:04 +02:00
|
|
|
void ApiListener::PersistMessage(const Dictionary::Ptr& message, const DynamicObject::Ptr& secobj)
|
2014-05-03 20:02:22 +02:00
|
|
|
{
|
|
|
|
double ts = message->Get("ts");
|
|
|
|
|
|
|
|
ASSERT(ts != 0);
|
|
|
|
|
|
|
|
Dictionary::Ptr pmessage = make_shared<Dictionary>();
|
|
|
|
pmessage->Set("timestamp", ts);
|
|
|
|
|
|
|
|
pmessage->Set("message", JsonSerialize(message));
|
2014-08-26 10:24:04 +02:00
|
|
|
|
|
|
|
Dictionary::Ptr secname = make_shared<Dictionary>();
|
|
|
|
secname->Set("type", secobj->GetType()->GetName());
|
|
|
|
secname->Set("name", secobj->GetName());
|
|
|
|
pmessage->Set("secobj", secname);
|
2014-05-03 20:02:22 +02:00
|
|
|
|
|
|
|
boost::mutex::scoped_lock lock(m_LogLock);
|
|
|
|
if (m_LogFile) {
|
|
|
|
NetString::WriteStringToStream(m_LogFile, JsonSerialize(pmessage));
|
|
|
|
m_LogMessageCount++;
|
|
|
|
SetLogMessageTimestamp(ts);
|
|
|
|
|
|
|
|
if (m_LogMessageCount > 50000) {
|
|
|
|
CloseLogFile();
|
|
|
|
RotateLogFile();
|
|
|
|
OpenLogFile();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ApiListener::SyncRelayMessage(const MessageOrigin& origin, const DynamicObject::Ptr& secobj, const Dictionary::Ptr& message, bool log)
|
|
|
|
{
|
|
|
|
double ts = Utility::GetTime();
|
|
|
|
message->Set("ts", ts);
|
|
|
|
|
2014-05-28 13:58:56 +02:00
|
|
|
Log(LogNotice, "ApiListener", "Relaying '" + message->Get("method") + "' message");
|
2014-05-03 20:02:22 +02:00
|
|
|
|
|
|
|
if (log)
|
2014-08-26 10:24:04 +02:00
|
|
|
PersistMessage(message, secobj);
|
2014-05-03 20:02:22 +02:00
|
|
|
|
|
|
|
if (origin.FromZone)
|
|
|
|
message->Set("originZone", origin.FromZone->GetName());
|
|
|
|
|
|
|
|
bool is_master = IsMaster();
|
|
|
|
Endpoint::Ptr master = GetMaster();
|
|
|
|
Zone::Ptr my_zone = Zone::GetLocalZone();
|
|
|
|
|
|
|
|
std::vector<Endpoint::Ptr> skippedEndpoints;
|
|
|
|
std::set<Zone::Ptr> finishedZones;
|
|
|
|
|
|
|
|
BOOST_FOREACH(const Endpoint::Ptr& endpoint, DynamicType::GetObjects<Endpoint>()) {
|
|
|
|
/* don't relay messages to ourselves or disconnected endpoints */
|
|
|
|
if (endpoint->GetName() == GetIdentity() || !endpoint->IsConnected())
|
|
|
|
continue;
|
|
|
|
|
|
|
|
Zone::Ptr target_zone = endpoint->GetZone();
|
|
|
|
|
|
|
|
/* don't relay the message to the zone through more than one endpoint */
|
|
|
|
if (finishedZones.find(target_zone) != finishedZones.end()) {
|
|
|
|
skippedEndpoints.push_back(endpoint);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* don't relay messages back to the endpoint which we got the message from */
|
|
|
|
if (origin.FromClient && endpoint == origin.FromClient->GetEndpoint()) {
|
|
|
|
skippedEndpoints.push_back(endpoint);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* don't relay messages back to the zone which we got the message from */
|
|
|
|
if (origin.FromZone && target_zone == origin.FromZone) {
|
|
|
|
skippedEndpoints.push_back(endpoint);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* only relay message to the master if we're not currently the master */
|
|
|
|
if (!is_master && master != endpoint) {
|
|
|
|
skippedEndpoints.push_back(endpoint);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* only relay the message to a) the same zone, b) the parent zone and c) direct child zones */
|
|
|
|
if (target_zone != my_zone && target_zone != my_zone->GetParent() &&
|
|
|
|
secobj->GetZone() != target_zone->GetName()) {
|
|
|
|
skippedEndpoints.push_back(endpoint);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* only relay messages to zones which have access to the object */
|
|
|
|
if (!target_zone->CanAccessObject(secobj))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
finishedZones.insert(target_zone);
|
|
|
|
|
|
|
|
{
|
|
|
|
ObjectLock olock(endpoint);
|
|
|
|
|
|
|
|
if (!endpoint->GetSyncing()) {
|
2014-05-28 13:58:56 +02:00
|
|
|
Log(LogNotice, "ApiListener", "Sending message to '" + endpoint->GetName() + "'");
|
2014-05-03 20:02:22 +02:00
|
|
|
|
|
|
|
BOOST_FOREACH(const ApiClient::Ptr& client, endpoint->GetClients())
|
|
|
|
client->SendMessage(message);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_FOREACH(const Endpoint::Ptr& endpoint, skippedEndpoints)
|
|
|
|
endpoint->SetLocalLogPosition(ts);
|
|
|
|
}
|
|
|
|
|
|
|
|
String ApiListener::GetApiDir(void)
|
|
|
|
{
|
|
|
|
return Application::GetLocalStateDir() + "/lib/icinga2/api/";
|
|
|
|
}
|
|
|
|
|
|
|
|
/* must hold m_LogLock */
|
|
|
|
void ApiListener::OpenLogFile(void)
|
|
|
|
{
|
|
|
|
String path = GetApiDir() + "log/current";
|
|
|
|
|
|
|
|
std::fstream *fp = new std::fstream(path.CStr(), std::fstream::out | std::ofstream::app);
|
|
|
|
|
|
|
|
if (!fp->good()) {
|
2014-05-28 13:58:56 +02:00
|
|
|
Log(LogWarning, "ApiListener", "Could not open spool file: " + path);
|
2014-05-03 20:02:22 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-05-09 10:23:54 +02:00
|
|
|
m_LogFile = make_shared<StdioStream>(fp, true);
|
2014-05-03 20:02:22 +02:00
|
|
|
m_LogMessageCount = 0;
|
|
|
|
SetLogMessageTimestamp(Utility::GetTime());
|
|
|
|
}
|
|
|
|
|
|
|
|
/* must hold m_LogLock */
|
|
|
|
void ApiListener::CloseLogFile(void)
|
|
|
|
{
|
|
|
|
if (!m_LogFile)
|
|
|
|
return;
|
|
|
|
|
|
|
|
m_LogFile->Close();
|
|
|
|
m_LogFile.reset();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* must hold m_LogLock */
|
|
|
|
void ApiListener::RotateLogFile(void)
|
|
|
|
{
|
|
|
|
double ts = GetLogMessageTimestamp();
|
|
|
|
|
|
|
|
if (ts == 0)
|
|
|
|
ts = Utility::GetTime();
|
|
|
|
|
|
|
|
String oldpath = GetApiDir() + "log/current";
|
|
|
|
String newpath = GetApiDir() + "log/" + Convert::ToString(static_cast<int>(ts)+1);
|
|
|
|
(void) rename(oldpath.CStr(), newpath.CStr());
|
|
|
|
}
|
|
|
|
|
|
|
|
void ApiListener::LogGlobHandler(std::vector<int>& files, const String& file)
|
|
|
|
{
|
|
|
|
String name = Utility::BaseName(file);
|
|
|
|
|
|
|
|
int ts;
|
|
|
|
|
|
|
|
try {
|
|
|
|
ts = Convert::ToLong(name);
|
|
|
|
}
|
|
|
|
catch (const std::exception&) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
files.push_back(ts);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ApiListener::ReplayLog(const ApiClient::Ptr& client)
|
|
|
|
{
|
|
|
|
Endpoint::Ptr endpoint = client->GetEndpoint();
|
|
|
|
|
|
|
|
CONTEXT("Replaying log for Endpoint '" + endpoint->GetName() + "'");
|
|
|
|
|
|
|
|
int count = -1;
|
|
|
|
double peer_ts = endpoint->GetLocalLogPosition();
|
|
|
|
bool last_sync = false;
|
2014-08-26 10:24:04 +02:00
|
|
|
|
|
|
|
Endpoint::Ptr target_endpoint = client->GetEndpoint();
|
|
|
|
ASSERT(target_endpoint);
|
|
|
|
|
|
|
|
Zone::Ptr target_zone = target_endpoint->GetZone();
|
|
|
|
|
|
|
|
if (!target_zone)
|
|
|
|
return;
|
2014-05-03 20:02:22 +02:00
|
|
|
|
|
|
|
for (;;) {
|
|
|
|
boost::mutex::scoped_lock lock(m_LogLock);
|
|
|
|
|
|
|
|
CloseLogFile();
|
|
|
|
RotateLogFile();
|
|
|
|
|
|
|
|
if (count == -1 || count > 50000) {
|
|
|
|
OpenLogFile();
|
|
|
|
lock.unlock();
|
|
|
|
} else {
|
|
|
|
last_sync = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
count = 0;
|
|
|
|
|
|
|
|
std::vector<int> files;
|
|
|
|
Utility::Glob(GetApiDir() + "log/*", boost::bind(&ApiListener::LogGlobHandler, boost::ref(files), _1), GlobFile);
|
|
|
|
std::sort(files.begin(), files.end());
|
|
|
|
|
|
|
|
BOOST_FOREACH(int ts, files) {
|
|
|
|
String path = GetApiDir() + "log/" + Convert::ToString(ts);
|
|
|
|
|
|
|
|
if (ts < peer_ts)
|
|
|
|
continue;
|
|
|
|
|
2014-05-28 13:58:56 +02:00
|
|
|
Log(LogNotice, "ApiListener", "Replaying log: " + path);
|
2014-05-03 20:02:22 +02:00
|
|
|
|
|
|
|
std::fstream *fp = new std::fstream(path.CStr(), std::fstream::in);
|
|
|
|
StdioStream::Ptr logStream = make_shared<StdioStream>(fp, true);
|
|
|
|
|
|
|
|
String message;
|
|
|
|
while (true) {
|
|
|
|
Dictionary::Ptr pmessage;
|
|
|
|
|
|
|
|
try {
|
2014-05-09 10:23:54 +02:00
|
|
|
if (!NetString::ReadStringFromStream(logStream, &message))
|
2014-05-03 20:02:22 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
pmessage = JsonDeserialize(message);
|
|
|
|
} catch (const std::exception&) {
|
2014-05-28 13:58:56 +02:00
|
|
|
Log(LogWarning, "ApiListener", "Unexpected end-of-file for cluster log: " + path);
|
2014-05-03 20:02:22 +02:00
|
|
|
|
|
|
|
/* Log files may be incomplete or corrupted. This is perfectly OK. */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pmessage->Get("timestamp") <= peer_ts)
|
|
|
|
continue;
|
|
|
|
|
2014-08-26 10:24:04 +02:00
|
|
|
Dictionary::Ptr secname = pmessage->Get("secname");
|
|
|
|
|
|
|
|
if (secname) {
|
|
|
|
DynamicType::Ptr dtype = DynamicType::GetByName(secname->Get("type"));
|
|
|
|
|
|
|
|
if (!dtype)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
DynamicObject::Ptr secobj = dtype->GetObject(secname->Get("name"));
|
|
|
|
|
|
|
|
if (!secobj)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (!target_zone->CanAccessObject(secobj))
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2014-05-03 20:02:22 +02:00
|
|
|
NetString::WriteStringToStream(client->GetStream(), pmessage->Get("message"));
|
|
|
|
count++;
|
|
|
|
|
|
|
|
peer_ts = pmessage->Get("timestamp");
|
|
|
|
}
|
|
|
|
|
2014-05-09 10:23:54 +02:00
|
|
|
logStream->Close();
|
2014-05-03 20:02:22 +02:00
|
|
|
}
|
|
|
|
|
2014-05-28 13:58:56 +02:00
|
|
|
Log(LogNotice, "ApiListener", "Replayed " + Convert::ToString(count) + " messages.");
|
2014-05-03 20:02:22 +02:00
|
|
|
|
|
|
|
if (last_sync) {
|
|
|
|
{
|
|
|
|
ObjectLock olock2(endpoint);
|
|
|
|
endpoint->SetSyncing(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
OpenLogFile();
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Value ApiListener::StatsFunc(Dictionary::Ptr& status, Dictionary::Ptr& perfdata)
|
|
|
|
{
|
|
|
|
Dictionary::Ptr nodes = make_shared<Dictionary>();
|
|
|
|
std::pair<Dictionary::Ptr, Dictionary::Ptr> stats;
|
|
|
|
|
|
|
|
ApiListener::Ptr listener = ApiListener::GetInstance();
|
|
|
|
|
|
|
|
if (!listener)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
stats = listener->GetStatus();
|
|
|
|
|
|
|
|
BOOST_FOREACH(Dictionary::Pair const& kv, stats.second)
|
|
|
|
perfdata->Set("api_" + kv.first, kv.second);
|
|
|
|
|
|
|
|
status->Set("api", stats.first);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::pair<Dictionary::Ptr, Dictionary::Ptr> ApiListener::GetStatus(void)
|
|
|
|
{
|
|
|
|
Dictionary::Ptr status = make_shared<Dictionary>();
|
|
|
|
Dictionary::Ptr perfdata = make_shared<Dictionary>();
|
|
|
|
|
|
|
|
/* cluster stats */
|
|
|
|
status->Set("identity", GetIdentity());
|
|
|
|
|
|
|
|
double count_endpoints = 0;
|
|
|
|
Array::Ptr not_connected_endpoints = make_shared<Array>();
|
|
|
|
Array::Ptr connected_endpoints = make_shared<Array>();
|
|
|
|
|
|
|
|
BOOST_FOREACH(const Endpoint::Ptr& endpoint, DynamicType::GetObjects<Endpoint>()) {
|
|
|
|
if (endpoint->GetName() == GetIdentity())
|
|
|
|
continue;
|
|
|
|
|
|
|
|
count_endpoints++;
|
|
|
|
|
|
|
|
if (!endpoint->IsConnected())
|
|
|
|
not_connected_endpoints->Add(endpoint->GetName());
|
|
|
|
else
|
|
|
|
connected_endpoints->Add(endpoint->GetName());
|
|
|
|
}
|
|
|
|
|
|
|
|
status->Set("num_endpoints", count_endpoints);
|
|
|
|
status->Set("num_conn_endpoints", connected_endpoints->GetLength());
|
|
|
|
status->Set("num_not_conn_endpoints", not_connected_endpoints->GetLength());
|
|
|
|
status->Set("conn_endpoints", connected_endpoints);
|
|
|
|
status->Set("not_conn_endpoints", not_connected_endpoints);
|
|
|
|
|
|
|
|
perfdata->Set("num_endpoints", count_endpoints);
|
|
|
|
perfdata->Set("num_conn_endpoints", Convert::ToDouble(connected_endpoints->GetLength()));
|
|
|
|
perfdata->Set("num_not_conn_endpoints", Convert::ToDouble(not_connected_endpoints->GetLength()));
|
|
|
|
|
|
|
|
return std::make_pair(status, perfdata);
|
|
|
|
}
|
2014-05-08 15:12:56 +02:00
|
|
|
|
|
|
|
void ApiListener::AddAnonymousClient(const ApiClient::Ptr& aclient)
|
|
|
|
{
|
|
|
|
ObjectLock olock(this);
|
|
|
|
m_AnonymousClients.insert(aclient);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ApiListener::RemoveAnonymousClient(const ApiClient::Ptr& aclient)
|
|
|
|
{
|
|
|
|
ObjectLock olock(this);
|
|
|
|
m_AnonymousClients.erase(aclient);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::set<ApiClient::Ptr> ApiListener::GetAnonymousClients(void) const
|
|
|
|
{
|
|
|
|
ObjectLock olock(this);
|
|
|
|
return m_AnonymousClients;
|
2014-05-09 10:23:54 +02:00
|
|
|
}
|