2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2014-03-28 22:58:05 +01:00
|
|
|
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "icinga/scheduleddowntime.hpp"
|
|
|
|
#include "icinga/service.hpp"
|
|
|
|
#include "config/configitembuilder.hpp"
|
|
|
|
#include "config/applyrule.hpp"
|
|
|
|
#include "base/initialize.hpp"
|
2015-08-15 20:28:05 +02:00
|
|
|
#include "base/configtype.hpp"
|
2014-10-19 14:21:12 +02:00
|
|
|
#include "base/logger.hpp"
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "base/context.hpp"
|
2014-12-18 15:11:57 +01:00
|
|
|
#include "base/exception.hpp"
|
2014-03-28 22:58:05 +01:00
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
2016-08-27 09:35:08 +02:00
|
|
|
INITIALIZE_ONCE([]() {
|
2017-11-23 09:58:05 +01:00
|
|
|
ApplyRule::RegisterType("ScheduledDowntime", { "Host", "Service" });
|
2016-08-27 09:35:08 +02:00
|
|
|
});
|
2014-03-28 22:58:05 +01:00
|
|
|
|
2015-01-29 12:38:25 +01:00
|
|
|
bool ScheduledDowntime::EvaluateApplyRuleInstance(const Checkable::Ptr& checkable, const String& name, ScriptFrame& frame, const ApplyRule& rule)
|
2014-11-04 11:01:00 +01:00
|
|
|
{
|
2015-01-29 12:38:25 +01:00
|
|
|
if (!rule.EvaluateFilter(frame))
|
|
|
|
return false;
|
|
|
|
|
2014-11-04 11:01:00 +01:00
|
|
|
DebugInfo di = rule.GetDebugInfo();
|
|
|
|
|
2016-08-20 23:46:44 +02:00
|
|
|
#ifdef _DEBUG
|
2014-11-04 11:01:00 +01:00
|
|
|
Log(LogDebug, "ScheduledDowntime")
|
|
|
|
<< "Applying scheduled downtime '" << rule.GetName() << "' to object '" << checkable->GetName() << "' for rule " << di;
|
2016-08-20 23:46:44 +02:00
|
|
|
#endif /* _DEBUG */
|
2014-11-04 11:01:00 +01:00
|
|
|
|
2018-01-10 17:20:33 +01:00
|
|
|
ConfigItemBuilder builder{di};
|
|
|
|
builder.SetType(ScheduledDowntime::TypeInstance);
|
|
|
|
builder.SetName(name);
|
|
|
|
builder.SetScope(frame.Locals->ShallowClone());
|
|
|
|
builder.SetIgnoreOnError(rule.GetIgnoreOnError());
|
2014-11-04 11:01:00 +01:00
|
|
|
|
|
|
|
Host::Ptr host;
|
|
|
|
Service::Ptr service;
|
|
|
|
tie(host, service) = GetHostService(checkable);
|
|
|
|
|
2018-01-10 17:20:33 +01:00
|
|
|
builder.AddExpression(new SetExpression(MakeIndexer(ScopeThis, "host_name"), OpSetLiteral, MakeLiteral(host->GetName()), di));
|
2014-11-09 19:48:28 +01:00
|
|
|
|
|
|
|
if (service)
|
2018-01-10 17:20:33 +01:00
|
|
|
builder.AddExpression(new SetExpression(MakeIndexer(ScopeThis, "service_name"), OpSetLiteral, MakeLiteral(service->GetShortName()), di));
|
2014-11-04 11:01:00 +01:00
|
|
|
|
2015-02-09 08:50:17 +01:00
|
|
|
String zone = checkable->GetZoneName();
|
2014-11-04 11:01:00 +01:00
|
|
|
|
2014-11-22 12:21:28 +01:00
|
|
|
if (!zone.IsEmpty())
|
2018-01-10 17:20:33 +01:00
|
|
|
builder.AddExpression(new SetExpression(MakeIndexer(ScopeThis, "zone"), OpSetLiteral, MakeLiteral(zone), di));
|
2014-11-04 11:01:00 +01:00
|
|
|
|
2018-01-10 17:20:33 +01:00
|
|
|
builder.AddExpression(new SetExpression(MakeIndexer(ScopeThis, "package"), OpSetLiteral, MakeLiteral(rule.GetPackage()), di));
|
2015-08-17 16:08:57 +02:00
|
|
|
|
2018-01-10 17:20:33 +01:00
|
|
|
builder.AddExpression(new OwnedExpression(rule.GetExpression()));
|
2014-11-04 11:01:00 +01:00
|
|
|
|
2018-01-10 17:20:33 +01:00
|
|
|
builder.AddExpression(new ImportDefaultTemplatesExpression());
|
2016-08-28 10:27:43 +02:00
|
|
|
|
2018-01-10 17:20:33 +01:00
|
|
|
ConfigItem::Ptr downtimeItem = builder.Compile();
|
2015-03-19 15:47:46 +01:00
|
|
|
downtimeItem->Register();
|
2015-01-29 12:38:25 +01:00
|
|
|
|
|
|
|
return true;
|
2014-11-04 11:01:00 +01:00
|
|
|
}
|
|
|
|
|
2014-11-16 16:20:39 +01:00
|
|
|
bool ScheduledDowntime::EvaluateApplyRule(const Checkable::Ptr& checkable, const ApplyRule& rule)
|
2014-03-28 22:58:05 +01:00
|
|
|
{
|
2014-04-05 12:56:56 +02:00
|
|
|
DebugInfo di = rule.GetDebugInfo();
|
2014-03-28 22:58:05 +01:00
|
|
|
|
2014-04-05 12:56:56 +02:00
|
|
|
std::ostringstream msgbuf;
|
|
|
|
msgbuf << "Evaluating 'apply' rule (" << di << ")";
|
|
|
|
CONTEXT(msgbuf.str());
|
|
|
|
|
|
|
|
Host::Ptr host;
|
|
|
|
Service::Ptr service;
|
|
|
|
tie(host, service) = GetHostService(checkable);
|
|
|
|
|
2018-01-03 10:19:24 +01:00
|
|
|
ScriptFrame frame(true);
|
2014-11-22 12:21:28 +01:00
|
|
|
if (rule.GetScope())
|
|
|
|
rule.GetScope()->CopyTo(frame.Locals);
|
|
|
|
frame.Locals->Set("host", host);
|
2014-04-05 12:56:56 +02:00
|
|
|
if (service)
|
2014-11-22 12:21:28 +01:00
|
|
|
frame.Locals->Set("service", service);
|
2014-03-28 22:58:05 +01:00
|
|
|
|
2014-11-04 11:01:00 +01:00
|
|
|
Value vinstances;
|
2014-03-28 22:58:05 +01:00
|
|
|
|
2014-11-02 07:22:00 +01:00
|
|
|
if (rule.GetFTerm()) {
|
2015-01-29 12:38:25 +01:00
|
|
|
try {
|
|
|
|
vinstances = rule.GetFTerm()->Evaluate(frame);
|
|
|
|
} catch (const std::exception&) {
|
|
|
|
/* Silently ignore errors here and assume there are no instances. */
|
|
|
|
return false;
|
|
|
|
}
|
2014-11-02 07:22:00 +01:00
|
|
|
} else {
|
2018-01-11 11:17:38 +01:00
|
|
|
vinstances = new Array({ "" });
|
2014-04-05 12:56:56 +02:00
|
|
|
}
|
2014-03-28 22:58:05 +01:00
|
|
|
|
2015-01-29 12:38:25 +01:00
|
|
|
bool match = false;
|
|
|
|
|
2014-11-04 11:01:00 +01:00
|
|
|
if (vinstances.IsObjectType<Array>()) {
|
|
|
|
if (!rule.GetFVVar().IsEmpty())
|
2015-09-24 08:29:13 +02:00
|
|
|
BOOST_THROW_EXCEPTION(ScriptError("Dictionary iterator requires value to be a dictionary.", di));
|
2014-05-09 10:33:22 +02:00
|
|
|
|
2014-11-04 11:01:00 +01:00
|
|
|
Array::Ptr arr = vinstances;
|
2014-03-30 10:00:11 +02:00
|
|
|
|
2016-08-20 23:46:44 +02:00
|
|
|
ObjectLock olock(arr);
|
2016-08-25 06:19:44 +02:00
|
|
|
for (const Value& instance : arr) {
|
2014-11-04 11:01:00 +01:00
|
|
|
String name = rule.GetName();
|
2014-11-02 07:22:00 +01:00
|
|
|
|
2014-11-04 11:01:00 +01:00
|
|
|
if (!rule.GetFKVar().IsEmpty()) {
|
2014-11-22 12:21:28 +01:00
|
|
|
frame.Locals->Set(rule.GetFKVar(), instance);
|
2014-11-04 11:01:00 +01:00
|
|
|
name += instance;
|
|
|
|
}
|
2014-11-02 07:22:00 +01:00
|
|
|
|
2015-01-29 12:38:25 +01:00
|
|
|
if (EvaluateApplyRuleInstance(checkable, name, frame, rule))
|
|
|
|
match = true;
|
2014-11-02 07:22:00 +01:00
|
|
|
}
|
2014-11-04 11:01:00 +01:00
|
|
|
} else if (vinstances.IsObjectType<Dictionary>()) {
|
|
|
|
if (rule.GetFVVar().IsEmpty())
|
2015-09-24 08:29:13 +02:00
|
|
|
BOOST_THROW_EXCEPTION(ScriptError("Array iterator requires value to be an array.", di));
|
2017-12-13 12:54:14 +01:00
|
|
|
|
2014-11-04 11:01:00 +01:00
|
|
|
Dictionary::Ptr dict = vinstances;
|
|
|
|
|
2016-08-25 06:19:44 +02:00
|
|
|
for (const String& key : dict->GetKeys()) {
|
2015-01-29 12:38:25 +01:00
|
|
|
frame.Locals->Set(rule.GetFKVar(), key);
|
|
|
|
frame.Locals->Set(rule.GetFVVar(), dict->Get(key));
|
2014-11-04 11:01:00 +01:00
|
|
|
|
2015-01-29 12:38:25 +01:00
|
|
|
if (EvaluateApplyRuleInstance(checkable, rule.GetName() + key, frame, rule))
|
|
|
|
match = true;
|
2014-11-02 07:22:00 +01:00
|
|
|
}
|
|
|
|
}
|
2014-04-07 13:23:27 +02:00
|
|
|
|
2015-01-29 12:38:25 +01:00
|
|
|
return match;
|
2014-04-05 12:56:56 +02:00
|
|
|
}
|
2014-03-30 10:00:11 +02:00
|
|
|
|
2014-11-16 16:20:39 +01:00
|
|
|
void ScheduledDowntime::EvaluateApplyRules(const Host::Ptr& host)
|
2014-04-05 12:56:56 +02:00
|
|
|
{
|
2014-11-16 16:20:39 +01:00
|
|
|
CONTEXT("Evaluating 'apply' rules for host '" + host->GetName() + "'");
|
|
|
|
|
2016-08-25 06:19:44 +02:00
|
|
|
for (ApplyRule& rule : ApplyRule::GetRules("ScheduledDowntime")) {
|
2014-11-16 16:20:39 +01:00
|
|
|
if (rule.GetTargetType() != "Host")
|
|
|
|
continue;
|
|
|
|
|
2014-12-18 15:11:57 +01:00
|
|
|
if (EvaluateApplyRule(host, rule))
|
|
|
|
rule.AddMatch();
|
2014-03-28 22:58:05 +01:00
|
|
|
}
|
|
|
|
}
|
2014-11-04 11:01:00 +01:00
|
|
|
|
2014-11-16 16:20:39 +01:00
|
|
|
void ScheduledDowntime::EvaluateApplyRules(const Service::Ptr& service)
|
2014-11-04 11:01:00 +01:00
|
|
|
{
|
2014-11-16 16:20:39 +01:00
|
|
|
CONTEXT("Evaluating 'apply' rules for service '" + service->GetName() + "'");
|
|
|
|
|
2016-08-25 06:19:44 +02:00
|
|
|
for (ApplyRule& rule : ApplyRule::GetRules("ScheduledDowntime")) {
|
2014-11-16 16:20:39 +01:00
|
|
|
if (rule.GetTargetType() != "Service")
|
|
|
|
continue;
|
|
|
|
|
2014-12-18 15:11:57 +01:00
|
|
|
if (EvaluateApplyRule(service, rule))
|
|
|
|
rule.AddMatch();
|
2014-11-04 11:01:00 +01:00
|
|
|
}
|
|
|
|
}
|