mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-02 12:32:04 +00:00
272 lines
8.6 KiB
C++
272 lines
8.6 KiB
C++
#include <Access/LDAPAccessStorage.h>
|
|
#include <Access/AccessControlManager.h>
|
|
#include <Access/User.h>
|
|
#include <Access/Role.h>
|
|
#include <Common/Exception.h>
|
|
#include <common/logger_useful.h>
|
|
#include <ext/scope_guard.h>
|
|
#include <Poco/Util/AbstractConfiguration.h>
|
|
#include <Poco/JSON/JSON.h>
|
|
#include <Poco/JSON/Object.h>
|
|
#include <Poco/JSON/Stringifier.h>
|
|
#include <sstream>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
namespace ErrorCodes
|
|
{
|
|
extern const int BAD_ARGUMENTS;
|
|
}
|
|
|
|
|
|
LDAPAccessStorage::LDAPAccessStorage(const String & storage_name_, AccessControlManager * access_control_manager_, const Poco::Util::AbstractConfiguration & config, const String & prefix)
|
|
: IAccessStorage(storage_name_)
|
|
{
|
|
setConfiguration(access_control_manager_, config, prefix);
|
|
}
|
|
|
|
|
|
void LDAPAccessStorage::setConfiguration(AccessControlManager * access_control_manager_, const Poco::Util::AbstractConfiguration & config, const String & prefix)
|
|
{
|
|
std::scoped_lock lock(mutex);
|
|
|
|
// TODO: switch to passing config as a ConfigurationView and remove this extra prefix once a version of Poco with proper implementation is available.
|
|
const String prefix_str = (prefix.empty() ? "" : prefix + ".");
|
|
|
|
const bool has_server = config.has(prefix_str + "server");
|
|
const bool has_roles = config.has(prefix_str + "roles");
|
|
|
|
if (!has_server)
|
|
throw Exception("Missing 'server' field for LDAP user directory.", ErrorCodes::BAD_ARGUMENTS);
|
|
|
|
const auto ldap_server_cfg = config.getString(prefix_str + "server");
|
|
if (ldap_server_cfg.empty())
|
|
throw Exception("Empty 'server' field for LDAP user directory.", ErrorCodes::BAD_ARGUMENTS);
|
|
|
|
std::set<String> roles_cfg;
|
|
if (has_roles)
|
|
{
|
|
Poco::Util::AbstractConfiguration::Keys role_names;
|
|
config.keys(prefix_str + "roles", role_names);
|
|
|
|
// Currently, we only extract names of roles from the section names and assign them directly and unconditionally.
|
|
roles_cfg.insert(role_names.begin(), role_names.end());
|
|
}
|
|
|
|
access_control_manager = access_control_manager_;
|
|
ldap_server = ldap_server_cfg;
|
|
default_role_names.swap(roles_cfg);
|
|
roles_of_interest.clear();
|
|
role_change_subscription = access_control_manager->subscribeForChanges<Role>(
|
|
[this] (const UUID & id, const AccessEntityPtr & entity)
|
|
{
|
|
return this->processRoleChange(id, entity);
|
|
}
|
|
);
|
|
}
|
|
|
|
|
|
void LDAPAccessStorage::processRoleChange(const UUID & id, const AccessEntityPtr & entity)
|
|
{
|
|
std::scoped_lock lock(mutex);
|
|
auto role_ptr = typeid_cast<std::shared_ptr<const Role>>(entity);
|
|
if (role_ptr)
|
|
{
|
|
if (default_role_names.find(role_ptr->getName()) != default_role_names.end())
|
|
{
|
|
auto update_func = [&id](const AccessEntityPtr & cached_entity) -> AccessEntityPtr
|
|
{
|
|
auto user_ptr = typeid_cast<std::shared_ptr<const User>>(cached_entity);
|
|
if (user_ptr && user_ptr->granted_roles.roles.find(id) == user_ptr->granted_roles.roles.end())
|
|
{
|
|
auto clone = user_ptr->clone();
|
|
auto user_clone_ptr = typeid_cast<std::shared_ptr<User>>(clone);
|
|
user_clone_ptr->granted_roles.grant(id);
|
|
return user_clone_ptr;
|
|
}
|
|
return cached_entity;
|
|
};
|
|
|
|
memory_storage.update(memory_storage.findAll<User>(), update_func);
|
|
roles_of_interest.insert(id);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if (roles_of_interest.find(id) != roles_of_interest.end())
|
|
{
|
|
auto update_func = [&id](const AccessEntityPtr & cached_entity) -> AccessEntityPtr
|
|
{
|
|
auto user_ptr = typeid_cast<std::shared_ptr<const User>>(cached_entity);
|
|
if (user_ptr && user_ptr->granted_roles.roles.find(id) != user_ptr->granted_roles.roles.end())
|
|
{
|
|
auto clone = user_ptr->clone();
|
|
auto user_clone_ptr = typeid_cast<std::shared_ptr<User>>(clone);
|
|
user_clone_ptr->granted_roles.revoke(id);
|
|
return user_clone_ptr;
|
|
}
|
|
return cached_entity;
|
|
};
|
|
|
|
memory_storage.update(memory_storage.findAll<User>(), update_func);
|
|
roles_of_interest.erase(id);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
const char * LDAPAccessStorage::getStorageType() const
|
|
{
|
|
return STORAGE_TYPE;
|
|
}
|
|
|
|
|
|
String LDAPAccessStorage::getStorageParamsJSON() const
|
|
{
|
|
std::scoped_lock lock(mutex);
|
|
Poco::JSON::Object params_json;
|
|
|
|
params_json.set("server", ldap_server);
|
|
params_json.set("roles", default_role_names);
|
|
|
|
std::ostringstream oss;
|
|
Poco::JSON::Stringifier::stringify(params_json, oss);
|
|
|
|
return oss.str();
|
|
}
|
|
|
|
|
|
std::optional<UUID> LDAPAccessStorage::findImpl(EntityType type, const String & name) const
|
|
{
|
|
std::scoped_lock lock(mutex);
|
|
return memory_storage.find(type, name);
|
|
}
|
|
|
|
|
|
std::vector<UUID> LDAPAccessStorage::findAllImpl(EntityType type) const
|
|
{
|
|
std::scoped_lock lock(mutex);
|
|
return memory_storage.findAll(type);
|
|
}
|
|
|
|
|
|
bool LDAPAccessStorage::existsImpl(const UUID & id) const
|
|
{
|
|
std::scoped_lock lock(mutex);
|
|
return memory_storage.exists(id);
|
|
}
|
|
|
|
|
|
AccessEntityPtr LDAPAccessStorage::readImpl(const UUID & id) const
|
|
{
|
|
std::scoped_lock lock(mutex);
|
|
return memory_storage.read(id);
|
|
}
|
|
|
|
|
|
String LDAPAccessStorage::readNameImpl(const UUID & id) const
|
|
{
|
|
std::scoped_lock lock(mutex);
|
|
return memory_storage.readName(id);
|
|
}
|
|
|
|
|
|
bool LDAPAccessStorage::canInsertImpl(const AccessEntityPtr &) const
|
|
{
|
|
return false;
|
|
}
|
|
|
|
|
|
UUID LDAPAccessStorage::insertImpl(const AccessEntityPtr & entity, bool)
|
|
{
|
|
throwReadonlyCannotInsert(entity->getType(), entity->getName());
|
|
}
|
|
|
|
|
|
void LDAPAccessStorage::removeImpl(const UUID & id)
|
|
{
|
|
std::scoped_lock lock(mutex);
|
|
auto entity = read(id);
|
|
throwReadonlyCannotRemove(entity->getType(), entity->getName());
|
|
}
|
|
|
|
|
|
void LDAPAccessStorage::updateImpl(const UUID & id, const UpdateFunc &)
|
|
{
|
|
std::scoped_lock lock(mutex);
|
|
auto entity = read(id);
|
|
throwReadonlyCannotUpdate(entity->getType(), entity->getName());
|
|
}
|
|
|
|
|
|
ext::scope_guard LDAPAccessStorage::subscribeForChangesImpl(const UUID & id, const OnChangedHandler & handler) const
|
|
{
|
|
std::scoped_lock lock(mutex);
|
|
return memory_storage.subscribeForChanges(id, handler);
|
|
}
|
|
|
|
|
|
ext::scope_guard LDAPAccessStorage::subscribeForChangesImpl(EntityType type, const OnChangedHandler & handler) const
|
|
{
|
|
std::scoped_lock lock(mutex);
|
|
return memory_storage.subscribeForChanges(type, handler);
|
|
}
|
|
|
|
|
|
bool LDAPAccessStorage::hasSubscriptionImpl(const UUID & id) const
|
|
{
|
|
std::scoped_lock lock(mutex);
|
|
return memory_storage.hasSubscription(id);
|
|
}
|
|
|
|
|
|
bool LDAPAccessStorage::hasSubscriptionImpl(EntityType type) const
|
|
{
|
|
std::scoped_lock lock(mutex);
|
|
return memory_storage.hasSubscription(type);
|
|
}
|
|
|
|
UUID LDAPAccessStorage::loginImpl(const String & user_name, const String & password, const Poco::Net::IPAddress & address, const ExternalAuthenticators & external_authenticators) const
|
|
{
|
|
std::scoped_lock lock(mutex);
|
|
try
|
|
{
|
|
auto id = memory_storage.find<User>(user_name);
|
|
if (id)
|
|
{
|
|
auto user = memory_storage.tryRead<User>(*id);
|
|
if (user && isAddressAllowedImpl(*user, address) && isPasswordCorrectImpl(*user, password, external_authenticators))
|
|
return *id;
|
|
}
|
|
else
|
|
{
|
|
// User does not exist, so we create one, and will add it if authentication is successful.
|
|
auto user = std::make_shared<User>();
|
|
user->setName(user_name);
|
|
user->authentication = Authentication(Authentication::Type::LDAP_SERVER);
|
|
user->authentication.setServerName(ldap_server);
|
|
|
|
if (isAddressAllowedImpl(*user, address) && isPasswordCorrectImpl(*user, password, external_authenticators))
|
|
{
|
|
for (const auto& role_name : default_role_names)
|
|
{
|
|
std::optional<UUID> role_id = access_control_manager->find<Role>(role_name);
|
|
if (!role_id)
|
|
throw Exception("One of the default roles, the role '" + role_name + "', is not found", IAccessEntity::TypeInfo::get(IAccessEntity::Type::ROLE).not_found_error_code);
|
|
roles_of_interest.insert(role_id.value());
|
|
user->granted_roles.grant(role_id.value());
|
|
}
|
|
return memory_storage.insert(user);
|
|
}
|
|
}
|
|
}
|
|
catch (...)
|
|
{
|
|
tryLogCurrentException(getLogger(), "Authentication failed for user '" + user_name + "' from access storage '" + getStorageName() + "'");
|
|
}
|
|
throwCannotAuthenticate(user_name);
|
|
}
|
|
|
|
}
|