mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 13:42:02 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
299 lines
9.3 KiB
C++
299 lines
9.3 KiB
C++
#include <Access/EnabledQuota.h>
|
|
#include <Access/QuotaCache.h>
|
|
#include <Access/QuotaUsageInfo.h>
|
|
#include <Access/AccessControlManager.h>
|
|
#include <Common/Exception.h>
|
|
#include <Common/thread_local_rng.h>
|
|
#include <ext/range.h>
|
|
#include <boost/range/adaptor/map.hpp>
|
|
#include <boost/range/algorithm/copy.hpp>
|
|
#include <boost/range/algorithm/lower_bound.hpp>
|
|
#include <boost/range/algorithm/stable_sort.hpp>
|
|
#include <boost/smart_ptr/make_shared.hpp>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
namespace ErrorCodes
|
|
{
|
|
extern const int QUOTA_REQUIRES_CLIENT_KEY;
|
|
}
|
|
|
|
|
|
namespace
|
|
{
|
|
std::chrono::system_clock::duration randomDuration(std::chrono::seconds max)
|
|
{
|
|
auto count = std::chrono::duration_cast<std::chrono::system_clock::duration>(max).count();
|
|
std::uniform_int_distribution<Int64> distribution{0, count - 1};
|
|
return std::chrono::system_clock::duration(distribution(thread_local_rng));
|
|
}
|
|
}
|
|
|
|
|
|
void QuotaCache::QuotaInfo::setQuota(const QuotaPtr & quota_, const UUID & quota_id_)
|
|
{
|
|
quota = quota_;
|
|
quota_id = quota_id_;
|
|
roles = "a->to_roles;
|
|
rebuildAllIntervals();
|
|
}
|
|
|
|
|
|
String QuotaCache::QuotaInfo::calculateKey(const EnabledQuota & enabled) const
|
|
{
|
|
const auto & params = enabled.params;
|
|
using KeyType = Quota::KeyType;
|
|
switch (quota->key_type)
|
|
{
|
|
case KeyType::NONE:
|
|
return "";
|
|
case KeyType::USER_NAME:
|
|
return params.user_name;
|
|
case KeyType::IP_ADDRESS:
|
|
return params.client_address.toString();
|
|
case KeyType::CLIENT_KEY:
|
|
{
|
|
if (!params.client_key.empty())
|
|
return params.client_key;
|
|
throw Exception(
|
|
"Quota " + quota->getName() + " (for user " + params.user_name + ") requires a client supplied key.",
|
|
ErrorCodes::QUOTA_REQUIRES_CLIENT_KEY);
|
|
}
|
|
case KeyType::CLIENT_KEY_OR_USER_NAME:
|
|
{
|
|
if (!params.client_key.empty())
|
|
return params.client_key;
|
|
return params.user_name;
|
|
}
|
|
case KeyType::CLIENT_KEY_OR_IP_ADDRESS:
|
|
{
|
|
if (!params.client_key.empty())
|
|
return params.client_key;
|
|
return params.client_address.toString();
|
|
}
|
|
}
|
|
__builtin_unreachable();
|
|
}
|
|
|
|
|
|
boost::shared_ptr<const EnabledQuota::Intervals> QuotaCache::QuotaInfo::getOrBuildIntervals(const String & key)
|
|
{
|
|
auto it = key_to_intervals.find(key);
|
|
if (it != key_to_intervals.end())
|
|
return it->second;
|
|
return rebuildIntervals(key);
|
|
}
|
|
|
|
|
|
void QuotaCache::QuotaInfo::rebuildAllIntervals()
|
|
{
|
|
for (const String & key : key_to_intervals | boost::adaptors::map_keys)
|
|
rebuildIntervals(key);
|
|
}
|
|
|
|
|
|
boost::shared_ptr<const EnabledQuota::Intervals> QuotaCache::QuotaInfo::rebuildIntervals(const String & key)
|
|
{
|
|
auto new_intervals = boost::make_shared<Intervals>();
|
|
new_intervals->quota_name = quota->getName();
|
|
new_intervals->quota_id = quota_id;
|
|
new_intervals->quota_key = key;
|
|
auto & intervals = new_intervals->intervals;
|
|
intervals.reserve(quota->all_limits.size());
|
|
static constexpr size_t MAX_RESOURCE_TYPE = Quota::MAX_RESOURCE_TYPE;
|
|
for (const auto & limits : quota->all_limits)
|
|
{
|
|
intervals.emplace_back();
|
|
auto & interval = intervals.back();
|
|
interval.duration = limits.duration;
|
|
std::chrono::system_clock::time_point end_of_interval{};
|
|
interval.randomize_interval = limits.randomize_interval;
|
|
if (limits.randomize_interval)
|
|
end_of_interval += randomDuration(limits.duration);
|
|
interval.end_of_interval = end_of_interval.time_since_epoch();
|
|
for (auto resource_type : ext::range(MAX_RESOURCE_TYPE))
|
|
{
|
|
interval.max[resource_type] = limits.max[resource_type];
|
|
interval.used[resource_type] = 0;
|
|
}
|
|
}
|
|
|
|
/// Order intervals by durations from largest to smallest.
|
|
/// To report first about largest interval on what quota was exceeded.
|
|
struct GreaterByDuration
|
|
{
|
|
bool operator()(const Interval & lhs, const Interval & rhs) const { return lhs.duration > rhs.duration; }
|
|
};
|
|
boost::range::stable_sort(intervals, GreaterByDuration{});
|
|
|
|
auto it = key_to_intervals.find(key);
|
|
if (it == key_to_intervals.end())
|
|
{
|
|
/// Just put new intervals into the map.
|
|
key_to_intervals.try_emplace(key, new_intervals);
|
|
}
|
|
else
|
|
{
|
|
/// We need to keep usage information from the old intervals.
|
|
const auto & old_intervals = it->second->intervals;
|
|
for (auto & new_interval : new_intervals->intervals)
|
|
{
|
|
/// Check if an interval with the same duration is already in use.
|
|
auto lower_bound = boost::range::lower_bound(old_intervals, new_interval, GreaterByDuration{});
|
|
if ((lower_bound == old_intervals.end()) || (lower_bound->duration != new_interval.duration))
|
|
continue;
|
|
|
|
/// Found an interval with the same duration, we need to copy its usage information to `result`.
|
|
auto & current_interval = *lower_bound;
|
|
for (auto resource_type : ext::range(MAX_RESOURCE_TYPE))
|
|
{
|
|
new_interval.used[resource_type].store(current_interval.used[resource_type].load());
|
|
new_interval.end_of_interval.store(current_interval.end_of_interval.load());
|
|
}
|
|
}
|
|
it->second = new_intervals;
|
|
}
|
|
|
|
return new_intervals;
|
|
}
|
|
|
|
|
|
QuotaCache::QuotaCache(const AccessControlManager & access_control_manager_)
|
|
: access_control_manager(access_control_manager_)
|
|
{
|
|
}
|
|
|
|
QuotaCache::~QuotaCache() = default;
|
|
|
|
|
|
std::shared_ptr<const EnabledQuota> QuotaCache::getEnabledQuota(const UUID & user_id, const String & user_name, const std::vector<UUID> & enabled_roles, const Poco::Net::IPAddress & client_address, const String & client_key)
|
|
{
|
|
std::lock_guard lock{mutex};
|
|
ensureAllQuotasRead();
|
|
|
|
EnabledQuota::Params params;
|
|
params.user_id = user_id;
|
|
params.user_name = user_name;
|
|
params.enabled_roles = enabled_roles;
|
|
params.client_address = client_address;
|
|
params.client_key = client_key;
|
|
auto it = enabled_quotas.find(params);
|
|
if (it != enabled_quotas.end())
|
|
{
|
|
auto from_cache = it->second.lock();
|
|
if (from_cache)
|
|
return from_cache;
|
|
enabled_quotas.erase(it);
|
|
}
|
|
|
|
auto res = std::shared_ptr<EnabledQuota>(new EnabledQuota(params));
|
|
enabled_quotas.emplace(std::move(params), res);
|
|
chooseQuotaToConsumeFor(*res);
|
|
return res;
|
|
}
|
|
|
|
|
|
void QuotaCache::ensureAllQuotasRead()
|
|
{
|
|
/// `mutex` is already locked.
|
|
if (all_quotas_read)
|
|
return;
|
|
all_quotas_read = true;
|
|
|
|
subscription = access_control_manager.subscribeForChanges<Quota>(
|
|
[&](const UUID & id, const AccessEntityPtr & entity)
|
|
{
|
|
if (entity)
|
|
quotaAddedOrChanged(id, typeid_cast<QuotaPtr>(entity));
|
|
else
|
|
quotaRemoved(id);
|
|
});
|
|
|
|
for (const UUID & quota_id : access_control_manager.findAll<Quota>())
|
|
{
|
|
auto quota = access_control_manager.tryRead<Quota>(quota_id);
|
|
if (quota)
|
|
all_quotas.emplace(quota_id, QuotaInfo(quota, quota_id));
|
|
}
|
|
}
|
|
|
|
|
|
void QuotaCache::quotaAddedOrChanged(const UUID & quota_id, const std::shared_ptr<const Quota> & new_quota)
|
|
{
|
|
std::lock_guard lock{mutex};
|
|
auto it = all_quotas.find(quota_id);
|
|
if (it == all_quotas.end())
|
|
{
|
|
it = all_quotas.emplace(quota_id, QuotaInfo(new_quota, quota_id)).first;
|
|
}
|
|
else
|
|
{
|
|
if (it->second.quota == new_quota)
|
|
return;
|
|
}
|
|
|
|
auto & info = it->second;
|
|
info.setQuota(new_quota, quota_id);
|
|
chooseQuotaToConsume();
|
|
}
|
|
|
|
|
|
void QuotaCache::quotaRemoved(const UUID & quota_id)
|
|
{
|
|
std::lock_guard lock{mutex};
|
|
all_quotas.erase(quota_id);
|
|
chooseQuotaToConsume();
|
|
}
|
|
|
|
|
|
void QuotaCache::chooseQuotaToConsume()
|
|
{
|
|
/// `mutex` is already locked.
|
|
std::erase_if(
|
|
enabled_quotas,
|
|
[&](const std::pair<EnabledQuota::Params, std::weak_ptr<EnabledQuota>> & pr)
|
|
{
|
|
auto elem = pr.second.lock();
|
|
if (!elem)
|
|
return true; // remove from the `enabled_quotas` list.
|
|
chooseQuotaToConsumeFor(*elem);
|
|
return false; // keep in the `enabled_quotas` list.
|
|
});
|
|
}
|
|
|
|
void QuotaCache::chooseQuotaToConsumeFor(EnabledQuota & enabled)
|
|
{
|
|
/// `mutex` is already locked.
|
|
boost::shared_ptr<const Intervals> intervals;
|
|
for (auto & info : all_quotas | boost::adaptors::map_values)
|
|
{
|
|
if (info.roles->match(enabled.params.user_id, enabled.params.enabled_roles))
|
|
{
|
|
String key = info.calculateKey(enabled);
|
|
intervals = info.getOrBuildIntervals(key);
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (!intervals)
|
|
intervals = boost::make_shared<Intervals>(); /// No quota == no limits.
|
|
|
|
enabled.intervals.store(intervals);
|
|
}
|
|
|
|
|
|
std::vector<QuotaUsageInfo> QuotaCache::getUsageInfo() const
|
|
{
|
|
std::lock_guard lock{mutex};
|
|
std::vector<QuotaUsageInfo> all_infos;
|
|
auto current_time = std::chrono::system_clock::now();
|
|
for (const auto & info : all_quotas | boost::adaptors::map_values)
|
|
{
|
|
for (const auto & intervals : info.key_to_intervals | boost::adaptors::map_values)
|
|
all_infos.push_back(intervals->getUsageInfo(current_time));
|
|
}
|
|
return all_infos;
|
|
}
|
|
}
|