2012-07-09 20:32:02 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2014-03-19 01:02:29 +01:00
|
|
|
* Copyright (C) 2012-2014 Icinga Development Team (http://www.icinga.org) *
|
2012-07-09 20:32:02 +02:00
|
|
|
* *
|
|
|
|
* 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. *
|
|
|
|
******************************************************************************/
|
|
|
|
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "icinga/hostgroup.hpp"
|
|
|
|
#include "config/objectrule.hpp"
|
2014-11-16 16:20:39 +01:00
|
|
|
#include "config/configitem.hpp"
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "base/dynamictype.hpp"
|
2014-10-19 14:21:12 +02:00
|
|
|
#include "base/logger.hpp"
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "base/objectlock.hpp"
|
|
|
|
#include "base/context.hpp"
|
|
|
|
#include "base/workqueue.hpp"
|
2013-03-16 21:18:53 +01:00
|
|
|
#include <boost/foreach.hpp>
|
2012-07-01 13:08:07 +02:00
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
2013-03-01 12:07:52 +01:00
|
|
|
REGISTER_TYPE(HostGroup);
|
2012-07-09 17:07:20 +02:00
|
|
|
|
2014-04-23 12:44:36 +02:00
|
|
|
INITIALIZE_ONCE(&HostGroup::RegisterObjectRuleHandler);
|
|
|
|
|
|
|
|
void HostGroup::RegisterObjectRuleHandler(void)
|
|
|
|
{
|
2014-11-16 16:20:39 +01:00
|
|
|
ObjectRule::RegisterType("HostGroup");
|
2014-04-23 12:44:36 +02:00
|
|
|
}
|
|
|
|
|
2014-11-16 16:20:39 +01:00
|
|
|
bool HostGroup::EvaluateObjectRule(const Host::Ptr& host, const ConfigItem::Ptr& group)
|
2014-04-23 12:44:36 +02:00
|
|
|
{
|
2014-11-16 16:20:39 +01:00
|
|
|
String group_name = group->GetName();
|
2014-04-23 12:44:36 +02:00
|
|
|
|
2014-11-16 16:20:39 +01:00
|
|
|
CONTEXT("Evaluating rule for group '" + group_name + "'");
|
2014-04-23 12:44:36 +02:00
|
|
|
|
2014-11-08 21:17:16 +01:00
|
|
|
Dictionary::Ptr locals = new Dictionary();
|
2014-11-16 16:20:39 +01:00
|
|
|
locals->Set("__parent", group->GetScope());
|
2014-04-23 12:44:36 +02:00
|
|
|
locals->Set("host", host);
|
|
|
|
|
2014-11-16 16:20:39 +01:00
|
|
|
if (!group->GetFilter()->Evaluate(locals))
|
2014-04-23 12:44:36 +02:00
|
|
|
return false;
|
|
|
|
|
2014-10-19 17:52:17 +02:00
|
|
|
Log(LogDebug, "HostGroup")
|
2014-11-16 16:20:39 +01:00
|
|
|
<< "Assigning membership for group '" << group_name << "' to host '" << host->GetName() << "'";
|
2014-04-23 12:44:36 +02:00
|
|
|
|
2014-11-16 16:20:39 +01:00
|
|
|
HostGroup::Ptr groupObject = HostGroup::GetByName(group_name);
|
2014-04-23 12:44:36 +02:00
|
|
|
|
2014-11-16 16:20:39 +01:00
|
|
|
if (!groupObject) {
|
2014-10-19 17:52:17 +02:00
|
|
|
Log(LogCritical, "HostGroup")
|
|
|
|
<< "Invalid membership assignment. Group '" << group_name << "' does not exist.";
|
2014-04-23 12:44:36 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* assign host group membership */
|
2014-11-16 16:20:39 +01:00
|
|
|
groupObject->ResolveGroupMembership(host, true);
|
2014-04-23 12:44:36 +02:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-11-16 16:20:39 +01:00
|
|
|
void HostGroup::EvaluateObjectRules(const Host::Ptr& host)
|
2014-05-17 20:13:25 +02:00
|
|
|
{
|
2014-11-16 16:20:39 +01:00
|
|
|
CONTEXT("Evaluating group memberships for host '" + host->GetName() + "'");
|
2014-05-17 20:13:25 +02:00
|
|
|
|
2014-11-16 16:20:39 +01:00
|
|
|
BOOST_FOREACH(const ConfigItem::Ptr& group, ConfigItem::GetItems("HostGroup"))
|
|
|
|
{
|
|
|
|
if (!group->GetFilter())
|
|
|
|
continue;
|
2014-05-17 20:13:25 +02:00
|
|
|
|
2014-11-16 16:20:39 +01:00
|
|
|
EvaluateObjectRule(host, group);
|
2014-04-23 12:44:36 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-20 11:06:04 +02:00
|
|
|
std::set<Host::Ptr> HostGroup::GetMembers(void) const
|
2012-07-01 13:08:07 +02:00
|
|
|
{
|
2014-03-11 10:40:37 +01:00
|
|
|
boost::mutex::scoped_lock lock(m_HostGroupMutex);
|
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 HostGroup::AddMember(const Host::Ptr& host)
|
2013-01-24 13:21:35 +01:00
|
|
|
{
|
2014-10-28 18:58:22 +01:00
|
|
|
host->AddGroup(GetName());
|
|
|
|
|
2014-03-11 10:40:37 +01:00
|
|
|
boost::mutex::scoped_lock lock(m_HostGroupMutex);
|
2013-08-20 11:06:04 +02:00
|
|
|
m_Members.insert(host);
|
2013-01-24 13:21:35 +01:00
|
|
|
}
|
|
|
|
|
2013-08-20 11:06:04 +02:00
|
|
|
void HostGroup::RemoveMember(const Host::Ptr& host)
|
2013-02-27 15:23:25 +01:00
|
|
|
{
|
2014-03-11 10:40:37 +01:00
|
|
|
boost::mutex::scoped_lock lock(m_HostGroupMutex);
|
2013-08-20 11:06:04 +02:00
|
|
|
m_Members.erase(host);
|
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 HostGroup::ResolveGroupMembership(const Host::Ptr& host, 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, "HostGroup")
|
|
|
|
<< "Too many nested groups for group '" << GetName() << "': Host '"
|
|
|
|
<< host->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);
|
|
|
|
|
|
|
|
BOOST_FOREACH(const String& name, groups) {
|
|
|
|
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;
|
|
|
|
}
|