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
163 lines
8.9 KiB
C++
163 lines
8.9 KiB
C++
#pragma once
|
|
|
|
#include <Access/AccessRights.h>
|
|
#include <Access/RowPolicy.h>
|
|
#include <Interpreters/ClientInfo.h>
|
|
#include <Core/UUID.h>
|
|
#include <ext/scope_guard.h>
|
|
#include <ext/shared_ptr_helper.h>
|
|
#include <boost/smart_ptr/atomic_shared_ptr.hpp>
|
|
#include <boost/container/flat_set.hpp>
|
|
#include <mutex>
|
|
|
|
|
|
namespace Poco { class Logger; }
|
|
|
|
namespace DB
|
|
{
|
|
struct User;
|
|
using UserPtr = std::shared_ptr<const User>;
|
|
struct EnabledRolesInfo;
|
|
class EnabledRoles;
|
|
class EnabledRowPolicies;
|
|
class EnabledQuota;
|
|
class EnabledSettings;
|
|
struct Settings;
|
|
class SettingsConstraints;
|
|
class AccessControlManager;
|
|
class IAST;
|
|
using ASTPtr = std::shared_ptr<IAST>;
|
|
|
|
|
|
class ContextAccess
|
|
{
|
|
public:
|
|
struct Params
|
|
{
|
|
std::optional<UUID> user_id;
|
|
std::vector<UUID> current_roles;
|
|
bool use_default_roles = false;
|
|
UInt64 readonly = 0;
|
|
bool allow_ddl = false;
|
|
bool allow_introspection = false;
|
|
String current_database;
|
|
ClientInfo::Interface interface = ClientInfo::Interface::TCP;
|
|
ClientInfo::HTTPMethod http_method = ClientInfo::HTTPMethod::UNKNOWN;
|
|
Poco::Net::IPAddress address;
|
|
String quota_key;
|
|
|
|
auto toTuple() const { return std::tie(user_id, current_roles, use_default_roles, readonly, allow_ddl, allow_introspection, current_database, interface, http_method, address, quota_key); }
|
|
friend bool operator ==(const Params & lhs, const Params & rhs) { return lhs.toTuple() == rhs.toTuple(); }
|
|
friend bool operator !=(const Params & lhs, const Params & rhs) { return !(lhs == rhs); }
|
|
friend bool operator <(const Params & lhs, const Params & rhs) { return lhs.toTuple() < rhs.toTuple(); }
|
|
friend bool operator >(const Params & lhs, const Params & rhs) { return rhs < lhs; }
|
|
friend bool operator <=(const Params & lhs, const Params & rhs) { return !(rhs < lhs); }
|
|
friend bool operator >=(const Params & lhs, const Params & rhs) { return !(lhs < rhs); }
|
|
};
|
|
|
|
const Params & getParams() const { return params; }
|
|
UserPtr getUser() const;
|
|
String getUserName() const;
|
|
|
|
bool isCorrectPassword(const String & password) const;
|
|
bool isClientHostAllowed() const;
|
|
|
|
std::shared_ptr<const EnabledRolesInfo> getRolesInfo() const;
|
|
std::vector<UUID> getCurrentRoles() const;
|
|
Strings getCurrentRolesNames() const;
|
|
std::vector<UUID> getEnabledRoles() const;
|
|
Strings getEnabledRolesNames() const;
|
|
|
|
std::shared_ptr<const EnabledRowPolicies> getRowPolicies() const;
|
|
ASTPtr getRowPolicyCondition(const String & database, const String & table_name, RowPolicy::ConditionType index, const ASTPtr & extra_condition = nullptr) const;
|
|
std::shared_ptr<const EnabledQuota> getQuota() const;
|
|
std::shared_ptr<const Settings> getDefaultSettings() const;
|
|
std::shared_ptr<const SettingsConstraints> getSettingsConstraints() const;
|
|
|
|
/// Checks if a specified access is granted, and throws an exception if not.
|
|
/// Empty database means the current database.
|
|
void checkAccess(const AccessFlags & flags) const;
|
|
void checkAccess(const AccessFlags & flags, const std::string_view & database) const;
|
|
void checkAccess(const AccessFlags & flags, const std::string_view & database, const std::string_view & table) const;
|
|
void checkAccess(const AccessFlags & flags, const std::string_view & database, const std::string_view & table, const std::string_view & column) const;
|
|
void checkAccess(const AccessFlags & flags, const std::string_view & database, const std::string_view & table, const std::vector<std::string_view> & columns) const;
|
|
void checkAccess(const AccessFlags & flags, const std::string_view & database, const std::string_view & table, const Strings & columns) const;
|
|
void checkAccess(const AccessRightsElement & element) const;
|
|
void checkAccess(const AccessRightsElements & elements) const;
|
|
|
|
/// Checks if a specified access is granted.
|
|
bool isGranted(const AccessFlags & flags) const;
|
|
bool isGranted(const AccessFlags & flags, const std::string_view & database) const;
|
|
bool isGranted(const AccessFlags & flags, const std::string_view & database, const std::string_view & table) const;
|
|
bool isGranted(const AccessFlags & flags, const std::string_view & database, const std::string_view & table, const std::string_view & column) const;
|
|
bool isGranted(const AccessFlags & flags, const std::string_view & database, const std::string_view & table, const std::vector<std::string_view> & columns) const;
|
|
bool isGranted(const AccessFlags & flags, const std::string_view & database, const std::string_view & table, const Strings & columns) const;
|
|
bool isGranted(const AccessRightsElement & element) const;
|
|
bool isGranted(const AccessRightsElements & elements) const;
|
|
|
|
/// Checks if a specified access is granted, and logs a warning if not.
|
|
bool isGranted(Poco::Logger * log_, const AccessFlags & flags) const;
|
|
bool isGranted(Poco::Logger * log_, const AccessFlags & flags, const std::string_view & database) const;
|
|
bool isGranted(Poco::Logger * log_, const AccessFlags & flags, const std::string_view & database, const std::string_view & table) const;
|
|
bool isGranted(Poco::Logger * log_, const AccessFlags & flags, const std::string_view & database, const std::string_view & table, const std::string_view & column) const;
|
|
bool isGranted(Poco::Logger * log_, const AccessFlags & flags, const std::string_view & database, const std::string_view & table, const std::vector<std::string_view> & columns) const;
|
|
bool isGranted(Poco::Logger * log_, const AccessFlags & flags, const std::string_view & database, const std::string_view & table, const Strings & columns) const;
|
|
bool isGranted(Poco::Logger * log_, const AccessRightsElement & element) const;
|
|
bool isGranted(Poco::Logger * log_, const AccessRightsElements & elements) const;
|
|
|
|
/// Checks if a specified access is granted with grant option, and throws an exception if not.
|
|
void checkGrantOption(const AccessFlags & flags) const;
|
|
void checkGrantOption(const AccessFlags & flags, const std::string_view & database) const;
|
|
void checkGrantOption(const AccessFlags & flags, const std::string_view & database, const std::string_view & table) const;
|
|
void checkGrantOption(const AccessFlags & flags, const std::string_view & database, const std::string_view & table, const std::string_view & column) const;
|
|
void checkGrantOption(const AccessFlags & flags, const std::string_view & database, const std::string_view & table, const std::vector<std::string_view> & columns) const;
|
|
void checkGrantOption(const AccessFlags & flags, const std::string_view & database, const std::string_view & table, const Strings & columns) const;
|
|
void checkGrantOption(const AccessRightsElement & element) const;
|
|
void checkGrantOption(const AccessRightsElements & elements) const;
|
|
|
|
/// Checks if a specified role is granted with admin option, and throws an exception if not.
|
|
void checkAdminOption(const UUID & role_id) const;
|
|
|
|
/// Returns an instance of ContextAccess which has full access to everything.
|
|
static std::shared_ptr<const ContextAccess> getFullAccess();
|
|
|
|
private:
|
|
friend class AccessControlManager;
|
|
ContextAccess() {}
|
|
ContextAccess(const AccessControlManager & manager_, const Params & params_);
|
|
|
|
void setUser(const UserPtr & user_) const;
|
|
void setRolesInfo(const std::shared_ptr<const EnabledRolesInfo> & roles_info_) const;
|
|
void setSettingsAndConstraints() const;
|
|
|
|
template <int mode, bool grant_option, typename... Args>
|
|
bool checkAccessImpl(Poco::Logger * log_, const AccessFlags & flags, const Args &... args) const;
|
|
|
|
template <int mode, bool grant_option>
|
|
bool checkAccessImpl(Poco::Logger * log_, const AccessRightsElement & element) const;
|
|
|
|
template <int mode, bool grant_option>
|
|
bool checkAccessImpl(Poco::Logger * log_, const AccessRightsElements & elements) const;
|
|
|
|
boost::shared_ptr<const AccessRights> calculateResultAccess(bool grant_option) const;
|
|
boost::shared_ptr<const AccessRights> calculateResultAccess(bool grant_option, UInt64 readonly_, bool allow_ddl_, bool allow_introspection_) const;
|
|
|
|
const AccessControlManager * manager = nullptr;
|
|
const Params params;
|
|
mutable Poco::Logger * trace_log = nullptr;
|
|
mutable UserPtr user;
|
|
mutable String user_name;
|
|
mutable ext::scope_guard subscription_for_user_change;
|
|
mutable std::shared_ptr<const EnabledRoles> enabled_roles;
|
|
mutable ext::scope_guard subscription_for_roles_changes;
|
|
mutable std::shared_ptr<const EnabledRolesInfo> roles_info;
|
|
mutable boost::atomic_shared_ptr<const boost::container::flat_set<UUID>> roles_with_admin_option;
|
|
mutable boost::atomic_shared_ptr<const AccessRights> result_access[7];
|
|
mutable std::shared_ptr<const EnabledRowPolicies> enabled_row_policies;
|
|
mutable std::shared_ptr<const EnabledQuota> enabled_quota;
|
|
mutable std::shared_ptr<const EnabledSettings> enabled_settings;
|
|
mutable std::mutex mutex;
|
|
};
|
|
|
|
}
|