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