icinga2/lib/icinga/host.cpp

550 lines
14 KiB
C++
Raw Normal View History

/******************************************************************************
* 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. *
******************************************************************************/
2012-09-10 14:07:32 +02:00
#include "i2-icinga.h"
using namespace icinga;
map<String, map<String, weak_ptr<Service> > > Host::m_ServicesCache;
bool Host::m_ServicesCacheValid = true;
REGISTER_SCRIPTFUNCTION("ValidateServiceDictionary", &Host::ValidateServiceDictionary);
static AttributeDescription hostAttributes[] = {
{ "slave_services", Attribute_Transient }
};
REGISTER_TYPE(Host, hostAttributes);
Host::Host(const Dictionary::Ptr& properties)
: DynamicObject(properties)
2013-02-20 19:52:25 +01:00
{ }
void Host::OnRegistrationCompleted(void)
2013-02-19 23:02:08 +01:00
{
2013-02-20 19:52:25 +01:00
DynamicObject::OnRegistrationCompleted();
2013-02-19 23:02:08 +01:00
HostGroup::InvalidateMembersCache();
2013-02-20 19:52:25 +01:00
{
ObjectLock olock(this);
UpdateSlaveServices();
}
2013-02-19 23:02:08 +01:00
}
Host::~Host(void)
{
HostGroup::InvalidateMembersCache();
Dictionary::Ptr services = Get("slave_services");
if (services) {
ConfigItem::Ptr service;
BOOST_FOREACH(tie(tuples::ignore, service), services) {
service->Unregister();
}
}
}
String Host::GetDisplayName(void) const
{
String value = Get("display_name");
2012-08-03 13:19:55 +02:00
if (!value.IsEmpty())
return value;
else
return GetName();
}
2013-02-17 19:14:34 +01:00
/**
* @threadsafety Always.
*/
bool Host::Exists(const String& name)
2012-06-30 13:39:55 +02:00
{
2012-07-30 10:17:29 +02:00
return (DynamicObject::GetObject("Host", name));
2012-06-30 13:39:55 +02:00
}
2013-02-17 19:14:34 +01:00
/**
* @threadsafety Always.
*/
Host::Ptr Host::GetByName(const String& name)
{
2012-07-30 10:17:29 +02:00
DynamicObject::Ptr configObject = DynamicObject::GetObject("Host", name);
if (!configObject)
BOOST_THROW_EXCEPTION(invalid_argument("Host '" + name + "' does not exist."));
return dynamic_pointer_cast<Host>(configObject);
}
2012-06-30 13:39:55 +02:00
Dictionary::Ptr Host::GetGroups(void) const
{
2012-08-03 13:19:55 +02:00
return Get("hostgroups");
2012-06-30 13:39:55 +02:00
}
2012-07-09 10:09:53 +02:00
2012-07-13 11:29:23 +02:00
Dictionary::Ptr Host::GetMacros(void) const
{
2012-08-03 13:19:55 +02:00
return Get("macros");
2012-07-13 11:29:23 +02:00
}
2013-02-07 20:29:35 +01:00
Dictionary::Ptr Host::GetHostDependencies(void) const
{
return Get("hostdependencies");
}
Dictionary::Ptr Host::GetServiceDependencies(void) const
{
return Get("servicedependencies");
}
String Host::GetHostCheck(void) const
{
return Get("hostcheck");
}
2013-02-19 23:02:08 +01:00
bool Host::IsReachable(const Host::Ptr& self)
{
2013-02-19 23:02:08 +01:00
set<Service::Ptr> parentServices;
{
ObjectLock olock(self);
parentServices = self->GetParentServices();
}
BOOST_FOREACH(const Service::Ptr& service, parentServices) {
ObjectLock olock(service);
2013-02-07 20:29:35 +01:00
/* ignore pending services */
if (!service->GetLastCheckResult())
continue;
2013-02-07 20:29:35 +01:00
/* ignore soft states */
if (service->GetStateType() == StateTypeSoft)
continue;
2013-02-07 20:29:35 +01:00
/* ignore services states OK and Warning */
if (service->GetState() == StateOK ||
service->GetState() == StateWarning)
continue;
return false;
}
2013-02-19 23:02:08 +01:00
set<Host::Ptr> parentHosts;
2013-02-07 20:29:35 +01:00
2013-02-19 23:02:08 +01:00
{
ObjectLock olock(self);
parentHosts = self->GetParentHosts();
}
2013-02-19 23:02:08 +01:00
BOOST_FOREACH(const Host::Ptr& host, parentHosts) {
Service::Ptr hc;
2013-02-19 12:17:31 +01:00
2013-02-19 23:02:08 +01:00
{
ObjectLock olock(host);
hc = host->GetHostCheckService();
}
2013-01-29 14:19:54 +01:00
ObjectLock olock(hc);
2013-02-19 23:02:08 +01:00
/* ignore hosts that are up */
if (hc && hc->GetState() == StateOK)
continue;
2013-02-19 12:17:31 +01:00
2013-02-19 23:02:08 +01:00
return false;
}
2013-02-19 12:17:31 +01:00
2013-02-19 23:02:08 +01:00
return true;
}
template<bool copyServiceAttrs, typename TDict>
static void CopyServiceAttributes(TDict serviceDesc, const ConfigItemBuilder::Ptr& builder)
{
/* TODO: we only need to copy macros if this is an inline definition,
* i.e. "typeid(serviceDesc)" != Service, however for now we just
* copy them anyway. */
Value macros = serviceDesc->Get("macros");
if (!macros.IsEmpty())
builder->AddExpression("macros", OperatorPlus, macros);
Value checkInterval = serviceDesc->Get("check_interval");
if (!checkInterval.IsEmpty())
builder->AddExpression("check_interval", OperatorSet, checkInterval);
Value retryInterval = serviceDesc->Get("retry_interval");
if (!retryInterval.IsEmpty())
builder->AddExpression("retry_interval", OperatorSet, retryInterval);
Value sgroups = serviceDesc->Get("servicegroups");
if (!sgroups.IsEmpty())
builder->AddExpression("servicegroups", OperatorPlus, sgroups);
Value checkers = serviceDesc->Get("checkers");
if (!checkers.IsEmpty())
builder->AddExpression("checkers", OperatorSet, checkers);
Value short_name = serviceDesc->Get("short_name");
if (!short_name.IsEmpty())
builder->AddExpression("short_name", OperatorSet, short_name);
if (copyServiceAttrs) {
Value servicedependencies = serviceDesc->Get("servicedependencies");
if (!servicedependencies.IsEmpty())
builder->AddExpression("servicedependencies", OperatorPlus, servicedependencies);
Value hostdependencies = serviceDesc->Get("hostdependencies");
if (!hostdependencies.IsEmpty())
builder->AddExpression("hostdependencies", OperatorPlus, hostdependencies);
}
}
void Host::UpdateSlaveServices(void)
{
ConfigItem::Ptr item = ConfigItem::GetObject("Host", GetName());
/* Don't create slave services unless we own this object
* and it's not a template. */
if (!item || IsAbstract())
return;
Dictionary::Ptr oldServices = Get("slave_services");
Dictionary::Ptr newServices;
newServices = boost::make_shared<Dictionary>();
Dictionary::Ptr serviceDescs = Get("services");
if (serviceDescs) {
String svcname;
Value svcdesc;
BOOST_FOREACH(tie(svcname, svcdesc), serviceDescs) {
if (svcdesc.IsScalar())
svcname = svcdesc;
stringstream namebuf;
namebuf << GetName() << "-" << svcname;
String name = namebuf.str();
ConfigItemBuilder::Ptr builder = boost::make_shared<ConfigItemBuilder>(item->GetDebugInfo());
builder->SetType("Service");
builder->SetName(name);
builder->AddExpression("host_name", OperatorSet, GetName());
builder->AddExpression("display_name", OperatorSet, svcname);
builder->AddExpression("short_name", OperatorSet, svcname);
CopyServiceAttributes<false>(this, builder);
if (svcdesc.IsScalar()) {
builder->AddParent(svcdesc);
} else if (svcdesc.IsObjectType<Dictionary>()) {
Dictionary::Ptr service = svcdesc;
Dictionary::Ptr templates = service->Get("templates");
if (templates) {
String tmpl;
BOOST_FOREACH(tie(tuples::ignore, tmpl), templates) {
builder->AddParent(tmpl);
}
} else {
builder->AddParent(svcname);
}
CopyServiceAttributes<true>(service, builder);
} else {
BOOST_THROW_EXCEPTION(invalid_argument("Service description must be either a string or a dictionary."));
}
ConfigItem::Ptr serviceItem = builder->Compile();
2013-02-20 19:52:25 +01:00
ConfigItem::Commit(serviceItem);
newServices->Set(name, serviceItem);
}
}
if (oldServices) {
ConfigItem::Ptr service;
BOOST_FOREACH(tie(tuples::ignore, service), oldServices) {
if (!service)
continue;
if (!newServices->Contains(service->GetName()))
service->Unregister();
}
}
2013-02-24 01:10:34 +01:00
newServices->Seal();
Set("slave_services", newServices);
}
2013-02-02 22:13:11 +01:00
void Host::OnAttributeChanged(const String& name, const Value&)
{
if (name == "hostgroups")
HostGroup::InvalidateMembersCache();
2013-02-19 23:02:08 +01:00
else if (name == "services") {
ObjectLock olock(this);
UpdateSlaveServices();
2013-02-19 23:02:08 +01:00
} else if (name == "notifications") {
set<Service::Ptr> services;
{
ObjectLock olock(this);
services = GetServices();
}
BOOST_FOREACH(const Service::Ptr& service, services) {
ObjectLock olock(service);
service->UpdateSlaveNotifications();
}
}
}
set<Service::Ptr> Host::GetServices(void) const
{
set<Service::Ptr> services;
ValidateServicesCache();
Service::WeakPtr wservice;
BOOST_FOREACH(tie(tuples::ignore, wservice), m_ServicesCache[GetName()]) {
Service::Ptr service = wservice.lock();
if (!service)
continue;
services.insert(service);
}
return services;
}
void Host::InvalidateServicesCache(void)
{
m_ServicesCacheValid = false;
m_ServicesCache.clear();
}
void Host::ValidateServicesCache(void)
{
if (m_ServicesCacheValid)
return;
m_ServicesCache.clear();
2013-02-18 23:44:24 +01:00
BOOST_FOREACH(const DynamicObject::Ptr& object, DynamicType::GetObjects("Service")) {
const Service::Ptr& service = static_pointer_cast<Service>(object);
// TODO: assert for duplicate short_names
m_ServicesCache[service->GetHost()->GetName()][service->GetShortName()] = service;
}
m_ServicesCacheValid = true;
}
void Host::ValidateServiceDictionary(const ScriptTask::Ptr& task, const vector<Value>& arguments)
{
if (arguments.size() < 1)
BOOST_THROW_EXCEPTION(invalid_argument("Missing argument: Location must be specified."));
if (arguments.size() < 2)
BOOST_THROW_EXCEPTION(invalid_argument("Missing argument: Attribute dictionary must be specified."));
String location = arguments[0];
Dictionary::Ptr attrs = arguments[1];
String key;
Value value;
BOOST_FOREACH(tie(key, value), attrs) {
String name;
if (value.IsScalar()) {
name = value;
} else if (value.IsObjectType<Dictionary>()) {
Dictionary::Ptr serviceDesc = value;
if (serviceDesc->Contains("service"))
name = serviceDesc->Get("service");
else
name = key;
} else {
continue;
}
2013-02-18 14:40:24 +01:00
ConfigItem::Ptr item;
ConfigCompilerContext *context = ConfigCompilerContext::GetContext();
if (context)
item = context->GetItem("Service", name);
/* ignore already active objects while we're in the compiler
* context and linking to existing items is disabled. */
if (!item && (!context || (context->GetFlags() & CompilerLinkExisting)))
item = ConfigItem::GetObject("Service", name);
if (!item) {
ConfigCompilerContext::GetContext()->AddError(false, "Validation failed for " +
location + ": Service '" + name + "' not found.");
}
}
task->FinishResult(Empty);
}
2013-02-07 20:29:35 +01:00
Service::Ptr Host::GetServiceByShortName(const Value& name) const
2013-02-07 20:29:35 +01:00
{
if (name.IsScalar()) {
ValidateServicesCache();
2013-02-07 20:29:35 +01:00
map<String, weak_ptr<Service> >& services = m_ServicesCache[GetName()];
map<String, weak_ptr<Service> >::iterator it = services.find(name);
if (it != services.end()) {
Service::Ptr service = it->second.lock();
assert(service);
return service;
}
return Service::GetByName(name);
} else if (name.IsObjectType<Dictionary>()) {
Dictionary::Ptr dict = name;
return GetByName(dict->Get("host"))->GetServiceByShortName(dict->Get("service"));
} else {
BOOST_THROW_EXCEPTION(invalid_argument("Host/Service name pair is invalid."));
}
2013-02-07 20:29:35 +01:00
}
set<Host::Ptr> Host::GetParentHosts(void) const
{
set<Host::Ptr> parents;
Dictionary::Ptr dependencies = GetHostDependencies();
if (dependencies) {
Value value;
BOOST_FOREACH(tie(tuples::ignore, value), dependencies) {
if (value == GetName())
2013-02-07 20:29:35 +01:00
continue;
parents.insert(Host::GetByName(value));
2013-02-07 20:29:35 +01:00
}
}
return parents;
}
Service::Ptr Host::GetHostCheckService(void) const
{
String hostcheck = GetHostCheck();
if (hostcheck.IsEmpty())
return Service::Ptr();
2013-02-09 11:42:22 +01:00
Service::Ptr service = GetServiceByShortName(hostcheck);
if (service->GetHost()->GetName() != GetName())
BOOST_THROW_EXCEPTION(runtime_error("Hostcheck service refers to another host's service."));
return service;
2013-02-07 20:29:35 +01:00
}
set<Service::Ptr> Host::GetParentServices(void) const
{
set<Service::Ptr> parents;
Dictionary::Ptr dependencies = GetServiceDependencies();
if (dependencies) {
Value value;
BOOST_FOREACH(tie(tuples::ignore, value), dependencies) {
parents.insert(GetServiceByShortName(value));
2013-02-07 20:29:35 +01:00
}
}
return parents;
}
2013-02-24 01:10:34 +01:00
Dictionary::Ptr Host::CalculateDynamicMacros(const Host::Ptr& self)
{
Dictionary::Ptr macros = boost::make_shared<Dictionary>();
2013-02-24 01:10:34 +01:00
Service::Ptr hc;
{
ObjectLock olock(self);
macros->Set("HOSTNAME", self->GetName());
macros->Set("HOSTDISPLAYNAME", self->GetDisplayName());
macros->Set("HOSTALIAS", self->GetName());
hc = self->GetHostCheckService();
}
bool reachable = Host::IsReachable(self);
Dictionary::Ptr cr;
if (hc) {
ObjectLock olock(hc);
String state;
int stateid;
switch (hc->GetState()) {
case StateOK:
case StateWarning:
state = "UP";
stateid = 0;
break;
default:
state = "DOWN";
stateid = 1;
break;
}
if (!reachable) {
state = "UNREACHABLE";
stateid = 2;
}
2013-02-24 01:10:34 +01:00
macros->Set("HOSTSTATE", state);
macros->Set("HOSTSTATEID", stateid);
macros->Set("HOSTSTATETYPE", Service::StateTypeToString(hc->GetStateType()));
macros->Set("HOSTATTEMPT", hc->GetCurrentCheckAttempt());
macros->Set("MAXHOSTATTEMPT", hc->GetMaxCheckAttempts());
2013-02-24 01:10:34 +01:00
cr = hc->GetLastCheckResult();
}
2013-02-24 01:10:34 +01:00
if (cr) {
macros->Set("HOSTLATENCY", Service::CalculateLatency(cr));
macros->Set("HOSTEXECUTIONTIME", Service::CalculateExecutionTime(cr));
ObjectLock olock(cr);
macros->Set("HOSTOUTPUT", cr->Get("output"));
macros->Set("HOSTPERFDATA", cr->Get("performance_data_raw"));
}
macros->Seal();
return macros;
}