2019-02-25 08:48:22 -05:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2013-02-27 15:49:03 -05:00
|
|
|
|
2014-05-25 10:23:35 -04:00
|
|
|
#include "icinga/usergroup.hpp"
|
2018-01-18 07:50:38 -05:00
|
|
|
#include "icinga/usergroup-ti.cpp"
|
2021-11-17 10:11:15 -05:00
|
|
|
#include "icinga/notification.hpp"
|
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"
|
2013-02-27 15:49:03 -05:00
|
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
|
2013-03-01 06:07:52 -05:00
|
|
|
REGISTER_TYPE(UserGroup);
|
2013-02-27 15:49:03 -05:00
|
|
|
|
2016-08-27 03:35:08 -04:00
|
|
|
INITIALIZE_ONCE([]() {
|
2014-11-16 10:20:39 -05:00
|
|
|
ObjectRule::RegisterType("UserGroup");
|
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 UserGroup::EvaluateObjectRule(const User::Ptr& user, 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("user", user);
|
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, "UserGroup")
|
2018-05-09 11:15:44 -04:00
|
|
|
<< "Assigning membership for group '" << groupName << "' to user '" << user->GetName() << "'";
|
2014-04-23 06:44:36 -04:00
|
|
|
|
2014-11-21 12:31:37 -05:00
|
|
|
Array::Ptr groups = user->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 UserGroup::EvaluateObjectRules(const User::Ptr& user)
|
2014-05-17 14:13:25 -04:00
|
|
|
{
|
2022-11-24 06:40:36 -05:00
|
|
|
CONTEXT("Evaluating group membership for user '" << user->GetName() << "'");
|
2014-05-17 14:13:25 -04:00
|
|
|
|
2017-05-11 08:21:30 -04:00
|
|
|
for (const ConfigItem::Ptr& group : ConfigItem::GetItems(UserGroup::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(user, group);
|
2014-04-23 06:44:36 -04:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-01-03 22:25:35 -05:00
|
|
|
std::set<User::Ptr> UserGroup::GetMembers() const
|
2013-02-27 15:49:03 -05:00
|
|
|
{
|
2021-02-02 04:16:04 -05:00
|
|
|
std::unique_lock<std::mutex> lock(m_UserGroupMutex);
|
2013-08-20 05:06:04 -04:00
|
|
|
return m_Members;
|
2013-02-27 15:49:03 -05:00
|
|
|
}
|
|
|
|
|
|
2013-08-20 05:06:04 -04:00
|
|
|
void UserGroup::AddMember(const User::Ptr& user)
|
2013-02-27 15:49:03 -05:00
|
|
|
{
|
2014-10-28 13:58:22 -04:00
|
|
|
user->AddGroup(GetName());
|
|
|
|
|
|
2021-02-02 04:16:04 -05:00
|
|
|
std::unique_lock<std::mutex> lock(m_UserGroupMutex);
|
2013-08-20 05:06:04 -04:00
|
|
|
m_Members.insert(user);
|
2013-02-27 15:49:03 -05:00
|
|
|
}
|
|
|
|
|
|
2013-08-20 05:06:04 -04:00
|
|
|
void UserGroup::RemoveMember(const User::Ptr& user)
|
2013-02-27 15:49:03 -05:00
|
|
|
{
|
2021-02-02 04:16:04 -05:00
|
|
|
std::unique_lock<std::mutex> lock(m_UserGroupMutex);
|
2013-08-20 05:06:04 -04:00
|
|
|
m_Members.erase(user);
|
2013-02-27 15:49:03 -05:00
|
|
|
}
|
2014-04-14 14:59:41 -04:00
|
|
|
|
2021-10-08 10:43:09 -04:00
|
|
|
std::set<Notification::Ptr> UserGroup::GetNotifications() const
|
|
|
|
|
{
|
|
|
|
|
std::unique_lock<std::mutex> lock(m_UserGroupMutex);
|
|
|
|
|
return m_Notifications;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void UserGroup::AddNotification(const Notification::Ptr& notification)
|
|
|
|
|
{
|
|
|
|
|
std::unique_lock<std::mutex> lock(m_UserGroupMutex);
|
|
|
|
|
m_Notifications.insert(notification);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void UserGroup::RemoveNotification(const Notification::Ptr& notification)
|
|
|
|
|
{
|
|
|
|
|
std::unique_lock<std::mutex> lock(m_UserGroupMutex);
|
|
|
|
|
m_Notifications.erase(notification);
|
|
|
|
|
}
|
|
|
|
|
|
2014-10-28 13:04:51 -04:00
|
|
|
bool UserGroup::ResolveGroupMembership(const User::Ptr& user, 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, "UserGroup")
|
2017-12-19 09:50:05 -05:00
|
|
|
<< "Too many nested groups for group '" << GetName() << "': User '"
|
|
|
|
|
<< user->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
|
|
|
UserGroup::Ptr group = UserGroup::GetByName(name);
|
|
|
|
|
|
|
|
|
|
if (group && !group->ResolveGroupMembership(user, add, rstack + 1))
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (add)
|
|
|
|
|
AddMember(user);
|
|
|
|
|
else
|
|
|
|
|
RemoveMember(user);
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|