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/hostgroup.hpp"
|
2018-01-18 07:50:38 -05:00
|
|
|
#include "icinga/hostgroup-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-10-19 08:21:12 -04:00
|
|
|
#include "base/logger.hpp"
|
2014-05-25 10:23:35 -04:00
|
|
|
#include "base/objectlock.hpp"
|
|
|
|
|
#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(HostGroup);
|
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("HostGroup");
|
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 HostGroup::EvaluateObjectRule(const Host::Ptr& host, 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
|
|
|
|
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);
|
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, "HostGroup")
|
2018-05-09 11:15:44 -04:00
|
|
|
<< "Assigning membership for group '" << groupName << "' to host '" << host->GetName() << "'";
|
2014-04-23 06:44:36 -04:00
|
|
|
|
2014-11-21 12:31:37 -05:00
|
|
|
Array::Ptr groups = host->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 HostGroup::EvaluateObjectRules(const Host::Ptr& host)
|
2014-05-17 14:13:25 -04:00
|
|
|
{
|
2022-11-24 06:40:36 -05:00
|
|
|
CONTEXT("Evaluating group memberships for host '" << host->GetName() << "'");
|
2014-05-17 14:13:25 -04:00
|
|
|
|
2017-05-11 08:21:30 -04:00
|
|
|
for (const ConfigItem::Ptr& group : ConfigItem::GetItems(HostGroup::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(host, group);
|
2014-04-23 06:44:36 -04:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-01-03 22:25:35 -05:00
|
|
|
std::set<Host::Ptr> HostGroup::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_HostGroupMutex);
|
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 HostGroup::AddMember(const Host::Ptr& host)
|
2013-01-24 07:21:35 -05:00
|
|
|
{
|
2014-10-28 13:58:22 -04:00
|
|
|
host->AddGroup(GetName());
|
|
|
|
|
|
2021-02-02 04:16:04 -05:00
|
|
|
std::unique_lock<std::mutex> lock(m_HostGroupMutex);
|
2013-08-20 05:06:04 -04:00
|
|
|
m_Members.insert(host);
|
2013-01-24 07:21:35 -05:00
|
|
|
}
|
|
|
|
|
|
2013-08-20 05:06:04 -04:00
|
|
|
void HostGroup::RemoveMember(const Host::Ptr& host)
|
2013-02-27 09:23:25 -05:00
|
|
|
{
|
2021-02-02 04:16:04 -05:00
|
|
|
std::unique_lock<std::mutex> lock(m_HostGroupMutex);
|
2013-08-20 05:06:04 -04:00
|
|
|
m_Members.erase(host);
|
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 HostGroup::ResolveGroupMembership(const Host::Ptr& host, 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, "HostGroup")
|
2017-12-19 09:50:05 -05:00
|
|
|
<< "Too many nested groups for group '" << GetName() << "': Host '"
|
|
|
|
|
<< host->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
|
|
|
HostGroup::Ptr group = HostGroup::GetByName(name);
|
|
|
|
|
|
|
|
|
|
if (group && !group->ResolveGroupMembership(host, add, rstack + 1))
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (add)
|
|
|
|
|
AddMember(host);
|
|
|
|
|
else
|
|
|
|
|
RemoveMember(host);
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|