2019-10-30 21:37:28 +00:00
|
|
|
#include <Access/SettingsConstraints.h>
|
2019-04-18 23:29:32 +00:00
|
|
|
#include <Core/Settings.h>
|
2019-04-19 00:45:15 +00:00
|
|
|
#include <Common/FieldVisitors.h>
|
|
|
|
#include <IO/WriteHelpers.h>
|
|
|
|
#include <Poco/Util/AbstractConfiguration.h>
|
2019-04-18 23:29:32 +00:00
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
namespace ErrorCodes
|
|
|
|
{
|
|
|
|
extern const int READONLY;
|
|
|
|
extern const int QUERY_IS_PROHIBITED;
|
|
|
|
extern const int NO_ELEMENTS_IN_CONFIG;
|
2019-04-19 00:45:15 +00:00
|
|
|
extern const int SETTING_CONSTRAINT_VIOLATION;
|
2019-04-18 23:29:32 +00:00
|
|
|
}
|
|
|
|
|
2019-04-19 00:45:15 +00:00
|
|
|
SettingsConstraints::SettingsConstraints() = default;
|
|
|
|
SettingsConstraints::SettingsConstraints(const SettingsConstraints & src) = default;
|
|
|
|
SettingsConstraints & SettingsConstraints::operator=(const SettingsConstraints & src) = default;
|
|
|
|
SettingsConstraints::SettingsConstraints(SettingsConstraints && src) = default;
|
|
|
|
SettingsConstraints & SettingsConstraints::operator=(SettingsConstraints && src) = default;
|
|
|
|
SettingsConstraints::~SettingsConstraints() = default;
|
|
|
|
|
|
|
|
|
2019-04-24 15:03:15 +00:00
|
|
|
void SettingsConstraints::clear()
|
2019-04-19 00:45:15 +00:00
|
|
|
{
|
2019-04-24 15:03:15 +00:00
|
|
|
constraints_by_index.clear();
|
2019-04-19 00:45:15 +00:00
|
|
|
}
|
|
|
|
|
2019-04-24 15:03:15 +00:00
|
|
|
|
2019-10-30 21:37:28 +00:00
|
|
|
void SettingsConstraints::setMinValue(const StringRef & name, const Field & min_value)
|
|
|
|
{
|
|
|
|
size_t setting_index = Settings::findIndexStrict(name);
|
|
|
|
getConstraintRef(setting_index).min_value = Settings::valueToCorrespondingType(setting_index, min_value);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Field SettingsConstraints::getMinValue(const StringRef & name) const
|
|
|
|
{
|
|
|
|
size_t setting_index = Settings::findIndexStrict(name);
|
|
|
|
const auto * ptr = tryGetConstraint(setting_index);
|
|
|
|
if (ptr)
|
|
|
|
return ptr->min_value;
|
|
|
|
else
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void SettingsConstraints::setMaxValue(const StringRef & name, const Field & max_value)
|
|
|
|
{
|
|
|
|
size_t setting_index = Settings::findIndexStrict(name);
|
|
|
|
getConstraintRef(setting_index).max_value = Settings::valueToCorrespondingType(setting_index, max_value);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Field SettingsConstraints::getMaxValue(const StringRef & name) const
|
|
|
|
{
|
|
|
|
size_t setting_index = Settings::findIndexStrict(name);
|
|
|
|
const auto * ptr = tryGetConstraint(setting_index);
|
|
|
|
if (ptr)
|
|
|
|
return ptr->max_value;
|
|
|
|
else
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void SettingsConstraints::setReadOnly(const StringRef & name, bool read_only)
|
2019-04-19 00:45:15 +00:00
|
|
|
{
|
2019-04-24 15:03:15 +00:00
|
|
|
size_t setting_index = Settings::findIndexStrict(name);
|
|
|
|
getConstraintRef(setting_index).read_only = read_only;
|
2019-04-18 23:29:32 +00:00
|
|
|
}
|
|
|
|
|
2019-10-30 21:37:28 +00:00
|
|
|
|
|
|
|
bool SettingsConstraints::isReadOnly(const StringRef & name) const
|
|
|
|
{
|
|
|
|
size_t setting_index = Settings::findIndexStrict(name);
|
|
|
|
const auto * ptr = tryGetConstraint(setting_index);
|
|
|
|
if (ptr)
|
|
|
|
return ptr->read_only;
|
|
|
|
else
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void SettingsConstraints::set(const StringRef & name, const Field & min_value, const Field & max_value, bool read_only)
|
2019-04-18 23:29:32 +00:00
|
|
|
{
|
2019-04-24 15:03:15 +00:00
|
|
|
size_t setting_index = Settings::findIndexStrict(name);
|
2019-10-30 21:37:28 +00:00
|
|
|
auto & ref = getConstraintRef(setting_index);
|
|
|
|
ref.min_value = min_value;
|
|
|
|
ref.max_value = max_value;
|
|
|
|
ref.read_only = read_only;
|
2019-04-24 15:03:15 +00:00
|
|
|
}
|
2019-04-18 23:29:32 +00:00
|
|
|
|
2019-10-30 21:37:28 +00:00
|
|
|
|
|
|
|
void SettingsConstraints::get(const StringRef & name, Field & min_value, Field & max_value, bool & read_only) const
|
2019-04-18 23:29:32 +00:00
|
|
|
{
|
2019-04-24 15:03:15 +00:00
|
|
|
size_t setting_index = Settings::findIndexStrict(name);
|
2019-10-30 21:37:28 +00:00
|
|
|
const auto * ptr = tryGetConstraint(setting_index);
|
|
|
|
if (ptr)
|
|
|
|
{
|
|
|
|
min_value = ptr->min_value;
|
|
|
|
max_value = ptr->max_value;
|
|
|
|
read_only = ptr->read_only;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
min_value = Field{};
|
|
|
|
max_value = Field{};
|
|
|
|
read_only = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void SettingsConstraints::merge(const SettingsConstraints & other)
|
|
|
|
{
|
|
|
|
for (const auto & [setting_index, other_constraint] : other.constraints_by_index)
|
|
|
|
{
|
|
|
|
auto & constraint = constraints_by_index[setting_index];
|
|
|
|
if (!other_constraint.min_value.isNull())
|
|
|
|
constraint.min_value = other_constraint.min_value;
|
|
|
|
if (!other_constraint.max_value.isNull())
|
|
|
|
constraint.max_value = other_constraint.max_value;
|
|
|
|
if (other_constraint.read_only)
|
|
|
|
constraint.read_only = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
SettingsConstraints::Infos SettingsConstraints::getInfo() const
|
|
|
|
{
|
|
|
|
Infos result;
|
|
|
|
result.reserve(constraints_by_index.size());
|
|
|
|
for (const auto & [setting_index, constraint] : constraints_by_index)
|
|
|
|
{
|
|
|
|
result.emplace_back();
|
|
|
|
Info & info = result.back();
|
|
|
|
info.name = Settings::getName(setting_index);
|
|
|
|
info.min = constraint.min_value;
|
|
|
|
info.max = constraint.max_value;
|
|
|
|
info.read_only = constraint.read_only;
|
|
|
|
}
|
|
|
|
return result;
|
2019-04-18 23:29:32 +00:00
|
|
|
}
|
|
|
|
|
2019-04-19 00:45:15 +00:00
|
|
|
|
2019-04-24 15:03:15 +00:00
|
|
|
void SettingsConstraints::check(const Settings & current_settings, const SettingChange & change) const
|
2019-04-19 00:45:15 +00:00
|
|
|
{
|
2019-04-24 15:03:15 +00:00
|
|
|
const String & name = change.name;
|
|
|
|
size_t setting_index = Settings::findIndex(name);
|
|
|
|
if (setting_index == Settings::npos)
|
|
|
|
return;
|
2019-04-19 00:45:15 +00:00
|
|
|
|
2019-10-30 21:37:28 +00:00
|
|
|
Field new_value = Settings::valueToCorrespondingType(setting_index, change.value);
|
2019-04-24 15:03:15 +00:00
|
|
|
Field current_value = current_settings.get(setting_index);
|
2019-04-19 00:45:15 +00:00
|
|
|
|
|
|
|
/// Setting isn't checked if value wasn't changed.
|
|
|
|
if (current_value == new_value)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (!current_settings.allow_ddl && name == "allow_ddl")
|
|
|
|
throw Exception("Cannot modify 'allow_ddl' setting when DDL queries are prohibited for the user", ErrorCodes::QUERY_IS_PROHIBITED);
|
|
|
|
|
|
|
|
/** The `readonly` value is understood as follows:
|
|
|
|
* 0 - everything allowed.
|
|
|
|
* 1 - only read queries can be made; you can not change the settings.
|
|
|
|
* 2 - You can only do read queries and you can change the settings, except for the `readonly` setting.
|
|
|
|
*/
|
|
|
|
if (current_settings.readonly == 1)
|
2019-04-24 15:03:15 +00:00
|
|
|
throw Exception("Cannot modify '" + name + "' setting in readonly mode", ErrorCodes::READONLY);
|
2019-04-19 00:45:15 +00:00
|
|
|
|
|
|
|
if (current_settings.readonly > 1 && name == "readonly")
|
|
|
|
throw Exception("Cannot modify 'readonly' setting in readonly mode", ErrorCodes::READONLY);
|
|
|
|
|
2019-04-24 15:03:15 +00:00
|
|
|
const Constraint * constraint = tryGetConstraint(setting_index);
|
|
|
|
if (constraint)
|
2019-04-19 00:45:15 +00:00
|
|
|
{
|
2019-04-24 15:03:15 +00:00
|
|
|
if (constraint->read_only)
|
|
|
|
throw Exception("Setting " + name + " should not be changed", ErrorCodes::SETTING_CONSTRAINT_VIOLATION);
|
|
|
|
|
|
|
|
if (!constraint->min_value.isNull() && (new_value < constraint->min_value))
|
|
|
|
throw Exception(
|
|
|
|
"Setting " + name + " shouldn't be less than " + applyVisitor(FieldVisitorToString(), constraint->min_value),
|
|
|
|
ErrorCodes::SETTING_CONSTRAINT_VIOLATION);
|
|
|
|
|
|
|
|
if (!constraint->max_value.isNull() && (new_value > constraint->max_value))
|
2019-04-19 00:45:15 +00:00
|
|
|
throw Exception(
|
2019-04-24 15:03:15 +00:00
|
|
|
"Setting " + name + " shouldn't be greater than " + applyVisitor(FieldVisitorToString(), constraint->max_value),
|
2019-04-19 00:45:15 +00:00
|
|
|
ErrorCodes::SETTING_CONSTRAINT_VIOLATION);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-04-24 15:03:15 +00:00
|
|
|
void SettingsConstraints::check(const Settings & current_settings, const SettingsChanges & changes) const
|
|
|
|
{
|
|
|
|
for (const auto & change : changes)
|
|
|
|
check(current_settings, change);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
SettingsConstraints::Constraint & SettingsConstraints::getConstraintRef(size_t index)
|
|
|
|
{
|
|
|
|
auto it = constraints_by_index.find(index);
|
|
|
|
if (it == constraints_by_index.end())
|
|
|
|
it = constraints_by_index.emplace(index, Constraint{}).first;
|
|
|
|
return it->second;
|
|
|
|
}
|
|
|
|
|
|
|
|
const SettingsConstraints::Constraint * SettingsConstraints::tryGetConstraint(size_t index) const
|
|
|
|
{
|
|
|
|
auto it = constraints_by_index.find(index);
|
|
|
|
if (it == constraints_by_index.end())
|
|
|
|
return nullptr;
|
|
|
|
return &it->second;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-04-19 00:45:15 +00:00
|
|
|
void SettingsConstraints::setProfile(const String & profile_name, const Poco::Util::AbstractConfiguration & config)
|
|
|
|
{
|
|
|
|
String parent_profile = "profiles." + profile_name + ".profile";
|
|
|
|
if (config.has(parent_profile))
|
|
|
|
setProfile(parent_profile, config); // Inheritance of one profile from another.
|
|
|
|
|
|
|
|
String path_to_constraints = "profiles." + profile_name + ".constraints";
|
|
|
|
if (config.has(path_to_constraints))
|
|
|
|
loadFromConfig(path_to_constraints, config);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void SettingsConstraints::loadFromConfig(const String & path_to_constraints, const Poco::Util::AbstractConfiguration & config)
|
|
|
|
{
|
|
|
|
if (!config.has(path_to_constraints))
|
|
|
|
throw Exception("There is no path '" + path_to_constraints + "' in configuration file.", ErrorCodes::NO_ELEMENTS_IN_CONFIG);
|
|
|
|
|
|
|
|
Poco::Util::AbstractConfiguration::Keys names;
|
|
|
|
config.keys(path_to_constraints, names);
|
|
|
|
|
|
|
|
for (const String & name : names)
|
|
|
|
{
|
|
|
|
String path_to_name = path_to_constraints + "." + name;
|
|
|
|
Poco::Util::AbstractConfiguration::Keys constraint_types;
|
|
|
|
config.keys(path_to_name, constraint_types);
|
|
|
|
for (const String & constraint_type : constraint_types)
|
|
|
|
{
|
2019-04-24 15:03:15 +00:00
|
|
|
auto get_constraint_value = [&]{ return config.getString(path_to_name + "." + constraint_type); };
|
|
|
|
if (constraint_type == "min")
|
|
|
|
setMinValue(name, get_constraint_value());
|
|
|
|
else if (constraint_type == "max")
|
|
|
|
setMaxValue(name, get_constraint_value());
|
|
|
|
else if (constraint_type == "readonly")
|
|
|
|
setReadOnly(name, true);
|
2019-04-19 00:45:15 +00:00
|
|
|
else
|
|
|
|
throw Exception("Setting " + constraint_type + " value for " + name + " isn't supported", ErrorCodes::NOT_IMPLEMENTED);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-30 21:37:28 +00:00
|
|
|
|
|
|
|
bool SettingsConstraints::Constraint::operator==(const Constraint & rhs) const
|
|
|
|
{
|
|
|
|
return (read_only == rhs.read_only) && (min_value == rhs.min_value) && (max_value == rhs.max_value);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool operator ==(const SettingsConstraints & lhs, const SettingsConstraints & rhs)
|
|
|
|
{
|
|
|
|
return lhs.constraints_by_index == rhs.constraints_by_index;
|
|
|
|
}
|
2019-04-18 23:29:32 +00:00
|
|
|
}
|