2012-07-09 20:32:02 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2015-01-22 12:00:23 +01:00
|
|
|
* Copyright (C) 2012-2015 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/servicegroup.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"
|
|
|
|
#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"
|
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(ServiceGroup);
|
2012-07-09 17:07:20 +02:00
|
|
|
|
2014-04-23 12:44:36 +02:00
|
|
|
INITIALIZE_ONCE(&ServiceGroup::RegisterObjectRuleHandler);
|
|
|
|
|
|
|
|
void ServiceGroup::RegisterObjectRuleHandler(void)
|
|
|
|
{
|
2014-11-16 16:20:39 +01:00
|
|
|
ObjectRule::RegisterType("ServiceGroup");
|
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
|
|
|
{
|
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
|
|
|
|
|
|
|
Host::Ptr host = service->GetHost();
|
|
|
|
|
2014-12-12 15:33:02 +01:00
|
|
|
ScriptFrame frame;
|
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")
|
2014-11-16 16:20:39 +01:00
|
|
|
<< "Assigning membership for group '" << group_name << "' 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();
|
|
|
|
groups->Add(group_name);
|
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
|
|
|
{
|
2014-11-16 16:20:39 +01:00
|
|
|
CONTEXT("Evaluating group membership for service '" + service->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("ServiceGroup"))
|
|
|
|
{
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-20 11:06:04 +02:00
|
|
|
std::set<Service::Ptr> ServiceGroup::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_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());
|
|
|
|
|
2014-03-11 10:40:37 +01:00
|
|
|
boost::mutex::scoped_lock 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
|
|
|
{
|
2014-03-11 10:40:37 +01:00
|
|
|
boost::mutex::scoped_lock 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")
|
|
|
|
<< "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);
|
|
|
|
|
|
|
|
BOOST_FOREACH(const String& name, groups) {
|
|
|
|
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;
|
|
|
|
}
|