2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2012-07-09 20:32:02 +02:00
|
|
|
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "icinga/servicegroup.hpp"
|
2018-01-18 13:50:38 +01:00
|
|
|
#include "icinga/servicegroup-ti.cpp"
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "config/objectrule.hpp"
|
2014-11-16 16:20:39 +01:00
|
|
|
#include "config/configitem.hpp"
|
2015-08-15 20:28:05 +02:00
|
|
|
#include "base/configtype.hpp"
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "base/objectlock.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"
|
|
|
|
#include "base/workqueue.hpp"
|
2012-07-01 13:08:07 +02:00
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
2013-03-01 12:07:52 +01:00
|
|
|
REGISTER_TYPE(ServiceGroup);
|
2012-07-09 17:07:20 +02:00
|
|
|
|
2016-08-27 09:35:08 +02:00
|
|
|
INITIALIZE_ONCE([]() {
|
2014-11-16 16:20:39 +01:00
|
|
|
ObjectRule::RegisterType("ServiceGroup");
|
2016-08-27 09:35:08 +02:00
|
|
|
});
|
2014-04-23 12:44:36 +02:00
|
|
|
|
2014-11-16 16:20:39 +01:00
|
|
|
bool ServiceGroup::EvaluateObjectRule(const Service::Ptr& service, const ConfigItem::Ptr& group)
|
2014-04-23 12:44:36 +02:00
|
|
|
{
|
2018-05-09 17:15:44 +02:00
|
|
|
String groupName = group->GetName();
|
2014-04-23 12:44:36 +02:00
|
|
|
|
2022-11-24 12:40:36 +01:00
|
|
|
CONTEXT("Evaluating rule for group '" << groupName << "'");
|
2014-04-23 12:44:36 +02:00
|
|
|
|
|
|
|
Host::Ptr host = service->GetHost();
|
|
|
|
|
2018-01-03 10:19:24 +01:00
|
|
|
ScriptFrame frame(true);
|
2014-11-22 12:21:28 +01:00
|
|
|
if (group->GetScope())
|
|
|
|
group->GetScope()->CopyTo(frame.Locals);
|
|
|
|
frame.Locals->Set("host", host);
|
|
|
|
frame.Locals->Set("service", service);
|
2014-04-23 12:44:36 +02:00
|
|
|
|
2015-02-19 12:57:52 +01:00
|
|
|
if (!group->GetFilter()->Evaluate(frame).GetValue().ToBool())
|
2014-04-23 12:44:36 +02:00
|
|
|
return false;
|
|
|
|
|
2014-10-19 17:52:17 +02:00
|
|
|
Log(LogDebug, "ServiceGroup")
|
2018-05-09 17:15:44 +02:00
|
|
|
<< "Assigning membership for group '" << groupName << "' to service '" << service->GetName() << "'";
|
2014-04-23 12:44:36 +02:00
|
|
|
|
2014-11-21 18:31:37 +01:00
|
|
|
Array::Ptr groups = service->GetGroups();
|
2018-05-09 17:15:44 +02:00
|
|
|
|
|
|
|
if (groups && !groups->Contains(groupName))
|
|
|
|
groups->Add(groupName);
|
2014-04-23 12:44:36 +02:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-11-16 16:20:39 +01:00
|
|
|
void ServiceGroup::EvaluateObjectRules(const Service::Ptr& service)
|
2014-05-17 20:13:25 +02:00
|
|
|
{
|
2022-11-24 12:40:36 +01:00
|
|
|
CONTEXT("Evaluating group membership for service '" << service->GetName() << "'");
|
2014-05-17 20:13:25 +02:00
|
|
|
|
2017-05-11 14:21:30 +02:00
|
|
|
for (const ConfigItem::Ptr& group : ConfigItem::GetItems(ServiceGroup::TypeInstance))
|
2014-11-16 16:20:39 +01:00
|
|
|
{
|
|
|
|
if (!group->GetFilter())
|
|
|
|
continue;
|
2014-05-17 20:13:25 +02:00
|
|
|
|
2014-11-16 16:20:39 +01:00
|
|
|
EvaluateObjectRule(service, group);
|
2014-04-23 12:44:36 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
std::set<Service::Ptr> ServiceGroup::GetMembers() const
|
2012-07-01 13:08:07 +02:00
|
|
|
{
|
2021-02-02 10:16:04 +01:00
|
|
|
std::unique_lock<std::mutex> lock(m_ServiceGroupMutex);
|
2013-08-20 11:06:04 +02:00
|
|
|
return m_Members;
|
2012-07-01 13:08:07 +02:00
|
|
|
}
|
|
|
|
|
2013-08-20 11:06:04 +02:00
|
|
|
void ServiceGroup::AddMember(const Service::Ptr& service)
|
2013-01-24 13:21:35 +01:00
|
|
|
{
|
2014-10-28 18:58:22 +01:00
|
|
|
service->AddGroup(GetName());
|
|
|
|
|
2021-02-02 10:16:04 +01:00
|
|
|
std::unique_lock<std::mutex> lock(m_ServiceGroupMutex);
|
2013-08-20 11:06:04 +02:00
|
|
|
m_Members.insert(service);
|
2013-01-24 13:21:35 +01:00
|
|
|
}
|
|
|
|
|
2013-08-20 11:06:04 +02:00
|
|
|
void ServiceGroup::RemoveMember(const Service::Ptr& service)
|
2013-02-27 15:23:25 +01:00
|
|
|
{
|
2021-02-02 10:16:04 +01:00
|
|
|
std::unique_lock<std::mutex> lock(m_ServiceGroupMutex);
|
2013-08-20 11:06:04 +02:00
|
|
|
m_Members.erase(service);
|
2013-02-27 15:23:25 +01:00
|
|
|
}
|
2014-04-14 20:59:41 +02:00
|
|
|
|
2014-10-28 18:04:51 +01:00
|
|
|
bool ServiceGroup::ResolveGroupMembership(const Service::Ptr& service, bool add, int rstack) {
|
2014-04-14 20:59:41 +02:00
|
|
|
|
|
|
|
if (add && rstack > 20) {
|
2014-10-19 17:52:17 +02:00
|
|
|
Log(LogWarning, "ServiceGroup")
|
2017-12-19 15:50:05 +01:00
|
|
|
<< "Too many nested groups for group '" << GetName() << "': Service '"
|
|
|
|
<< service->GetName() << "' membership assignment failed.";
|
2014-04-14 20:59:41 +02:00
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
Array::Ptr groups = GetGroups();
|
|
|
|
|
|
|
|
if (groups && groups->GetLength() > 0) {
|
|
|
|
ObjectLock olock(groups);
|
|
|
|
|
2016-08-25 06:19:44 +02:00
|
|
|
for (const String& name : groups) {
|
2014-04-14 20:59:41 +02:00
|
|
|
ServiceGroup::Ptr group = ServiceGroup::GetByName(name);
|
|
|
|
|
|
|
|
if (group && !group->ResolveGroupMembership(service, add, rstack + 1))
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (add)
|
|
|
|
AddMember(service);
|
|
|
|
else
|
|
|
|
RemoveMember(service);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|