2022-06-15 18:25:13 +00:00
|
|
|
#include <Access/AccessBackup.h>
|
|
|
|
#include <Access/AccessControl.h>
|
|
|
|
#include <Access/AccessEntityIO.h>
|
2022-06-18 22:01:08 +00:00
|
|
|
#include <Access/Common/AccessRightsElement.h>
|
|
|
|
#include <Access/User.h>
|
|
|
|
#include <Access/Role.h>
|
|
|
|
#include <Access/SettingsProfile.h>
|
|
|
|
#include <Access/RowPolicy.h>
|
|
|
|
#include <Access/Quota.h>
|
2022-06-15 18:25:13 +00:00
|
|
|
#include <Backups/BackupEntriesCollector.h>
|
|
|
|
#include <Backups/BackupEntryFromMemory.h>
|
|
|
|
#include <Backups/IBackup.h>
|
2022-06-29 20:44:05 +00:00
|
|
|
#include <Backups/RestoreSettings.h>
|
2022-06-15 18:25:13 +00:00
|
|
|
#include <IO/WriteHelpers.h>
|
|
|
|
#include <IO/ReadHelpers.h>
|
|
|
|
#include <IO/ReadBufferFromString.h>
|
|
|
|
#include <Poco/UUIDGenerator.h>
|
|
|
|
#include <base/insertAtEnd.h>
|
|
|
|
#include <boost/range/algorithm/copy.hpp>
|
|
|
|
|
|
|
|
namespace fs = std::filesystem;
|
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
namespace ErrorCodes
|
|
|
|
{
|
2022-06-29 12:42:23 +00:00
|
|
|
extern const int CANNOT_RESTORE_TABLE;
|
2022-06-19 13:48:52 +00:00
|
|
|
extern const int LOGICAL_ERROR;
|
2022-06-15 18:25:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
namespace
|
|
|
|
{
|
|
|
|
/// Represents a list of access entities as they're stored in a backup.
|
|
|
|
struct AccessEntitiesInBackup
|
|
|
|
{
|
|
|
|
std::unordered_map<UUID, AccessEntityPtr> entities;
|
|
|
|
std::unordered_map<UUID, std::pair<String, AccessEntityType>> dependencies;
|
|
|
|
|
|
|
|
BackupEntryPtr toBackupEntry() const
|
|
|
|
{
|
|
|
|
WriteBufferFromOwnString buf;
|
|
|
|
|
|
|
|
for (const auto & [id, entity] : entities)
|
|
|
|
{
|
|
|
|
writeText(id, buf);
|
|
|
|
writeChar('\t', buf);
|
|
|
|
writeText(entity->getTypeInfo().name, buf);
|
|
|
|
writeChar('\t', buf);
|
|
|
|
writeText(entity->getName(), buf);
|
|
|
|
writeChar('\n', buf);
|
|
|
|
writeText(serializeAccessEntity(*entity), buf);
|
|
|
|
writeChar('\n', buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!dependencies.empty())
|
|
|
|
{
|
|
|
|
writeText("DEPENDENCIES\n", buf);
|
|
|
|
for (const auto & [id, name_and_type] : dependencies)
|
|
|
|
{
|
|
|
|
writeText(id, buf);
|
|
|
|
writeChar('\t', buf);
|
|
|
|
writeText(AccessEntityTypeInfo::get(name_and_type.second).name, buf);
|
|
|
|
writeChar('\t', buf);
|
|
|
|
writeText(name_and_type.first, buf);
|
|
|
|
writeChar('\n', buf);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return std::make_shared<BackupEntryFromMemory>(buf.str());
|
|
|
|
}
|
|
|
|
|
|
|
|
static AccessEntitiesInBackup fromBackupEntry(const IBackupEntry & backup_entry, const String & file_path)
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
AccessEntitiesInBackup res;
|
|
|
|
std::unique_ptr<ReadBuffer> buf = backup_entry.getReadBuffer();
|
|
|
|
|
|
|
|
bool dependencies_found = false;
|
|
|
|
|
|
|
|
while (!buf->eof())
|
|
|
|
{
|
|
|
|
String line;
|
|
|
|
readStringUntilNewlineInto(line, *buf);
|
|
|
|
buf->ignore();
|
|
|
|
if (line == "DEPENDENCIES")
|
|
|
|
{
|
|
|
|
dependencies_found = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t id_endpos = line.find('\t');
|
|
|
|
String id_as_string = line.substr(0, id_endpos);
|
|
|
|
UUID id = parse<UUID>(line);
|
|
|
|
line.clear();
|
|
|
|
|
|
|
|
String queries;
|
|
|
|
while (!buf->eof())
|
|
|
|
{
|
|
|
|
String query;
|
|
|
|
readStringUntilNewlineInto(query, *buf);
|
|
|
|
buf->ignore();
|
|
|
|
if (query.empty())
|
|
|
|
break;
|
|
|
|
if (!queries.empty())
|
|
|
|
queries.append("\n");
|
|
|
|
queries.append(query);
|
|
|
|
}
|
|
|
|
|
|
|
|
AccessEntityPtr entity = deserializeAccessEntity(queries);
|
|
|
|
res.entities.emplace(id, entity);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (dependencies_found)
|
|
|
|
{
|
|
|
|
while (!buf->eof())
|
|
|
|
{
|
|
|
|
String id_as_string;
|
|
|
|
readStringInto(id_as_string, *buf);
|
|
|
|
buf->ignore();
|
|
|
|
UUID id = parse<UUID>(id_as_string);
|
|
|
|
|
|
|
|
String type_as_string;
|
|
|
|
readStringInto(type_as_string, *buf);
|
|
|
|
buf->ignore();
|
|
|
|
AccessEntityType type = AccessEntityTypeInfo::parseType(type_as_string);
|
|
|
|
|
|
|
|
String name;
|
|
|
|
readStringInto(name, *buf);
|
|
|
|
buf->ignore();
|
2022-06-19 13:48:52 +00:00
|
|
|
|
2022-06-15 18:25:13 +00:00
|
|
|
if (!res.entities.contains(id))
|
|
|
|
res.dependencies.emplace(id, std::pair{name, type});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
catch (Exception & e)
|
|
|
|
{
|
2022-06-27 13:39:12 +00:00
|
|
|
e.addMessage("While parsing " + file_path + " from backup");
|
2022-06-15 18:25:13 +00:00
|
|
|
throw;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
std::vector<UUID> findDependencies(const std::vector<std::pair<UUID, AccessEntityPtr>> & entities)
|
|
|
|
{
|
|
|
|
std::vector<UUID> res;
|
|
|
|
for (const auto & entity : entities | boost::adaptors::map_values)
|
|
|
|
insertAtEnd(res, entity->findDependencies());
|
|
|
|
|
|
|
|
/// Remove duplicates in the list of dependencies (some entities can refer to other entities).
|
|
|
|
::sort(res.begin(), res.end());
|
|
|
|
res.erase(std::unique(res.begin(), res.end()), res.end());
|
|
|
|
for (const auto & id : entities | boost::adaptors::map_keys)
|
|
|
|
{
|
|
|
|
auto it = std::lower_bound(res.begin(), res.end(), id);
|
2022-06-18 22:01:08 +00:00
|
|
|
if ((it != res.end()) && (*it == id))
|
2022-06-15 18:25:13 +00:00
|
|
|
res.erase(it);
|
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::unordered_map<UUID, std::pair<String, AccessEntityType>> readDependenciesNamesAndTypes(const std::vector<UUID> & dependencies, const AccessControl & access_control)
|
|
|
|
{
|
|
|
|
std::unordered_map<UUID, std::pair<String, AccessEntityType>> res;
|
|
|
|
for (const auto & id : dependencies)
|
|
|
|
{
|
|
|
|
if (auto name_and_type = access_control.tryReadNameWithType(id))
|
|
|
|
res.emplace(id, name_and_type.value());
|
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::unordered_map<UUID, UUID> resolveDependencies(const std::unordered_map<UUID, std::pair<String, AccessEntityType>> & dependencies, const AccessControl & access_control, bool allow_unresolved_dependencies)
|
|
|
|
{
|
|
|
|
std::unordered_map<UUID, UUID> old_to_new_ids;
|
|
|
|
for (const auto & [id, name_and_type] : dependencies)
|
|
|
|
{
|
|
|
|
std::optional<UUID> new_id;
|
|
|
|
if (allow_unresolved_dependencies)
|
|
|
|
new_id = access_control.find(name_and_type.second, name_and_type.first);
|
|
|
|
else
|
|
|
|
new_id = access_control.getID(name_and_type.second, name_and_type.first);
|
|
|
|
if (new_id)
|
|
|
|
old_to_new_ids.emplace(id, *new_id);
|
|
|
|
}
|
|
|
|
return old_to_new_ids;
|
|
|
|
}
|
|
|
|
|
|
|
|
void generateRandomIDs(std::vector<std::pair<UUID, AccessEntityPtr>> & entities, std::unordered_map<UUID, UUID> & old_to_new_ids)
|
|
|
|
{
|
|
|
|
Poco::UUIDGenerator generator;
|
|
|
|
for (auto & [id, entity] : entities)
|
|
|
|
{
|
|
|
|
UUID new_id;
|
|
|
|
generator.createRandom().copyTo(reinterpret_cast<char *>(&new_id));
|
|
|
|
old_to_new_ids.emplace(id, new_id);
|
|
|
|
id = new_id;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void replaceDependencies(std::vector<std::pair<UUID, AccessEntityPtr>> & entities, const std::unordered_map<UUID, UUID> & old_to_new_ids)
|
|
|
|
{
|
|
|
|
for (auto & entity : entities | boost::adaptors::map_values)
|
|
|
|
{
|
|
|
|
bool need_replace = false;
|
|
|
|
for (const auto & dependency : entity->findDependencies())
|
|
|
|
{
|
|
|
|
if (old_to_new_ids.contains(dependency))
|
|
|
|
{
|
|
|
|
need_replace = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!need_replace)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
auto new_entity = entity->clone();
|
|
|
|
new_entity->replaceDependencies(old_to_new_ids);
|
|
|
|
entity = new_entity;
|
|
|
|
}
|
|
|
|
}
|
2022-06-18 22:01:08 +00:00
|
|
|
|
2022-06-29 20:44:05 +00:00
|
|
|
AccessRightsElements getRequiredAccessToRestore(const std::vector<std::pair<UUID, AccessEntityPtr>> & entities)
|
2022-06-18 22:01:08 +00:00
|
|
|
{
|
|
|
|
AccessRightsElements res;
|
|
|
|
for (const auto & entity : entities | boost::adaptors::map_values)
|
|
|
|
{
|
|
|
|
auto entity_type = entity->getType();
|
|
|
|
switch (entity_type)
|
|
|
|
{
|
|
|
|
case User::TYPE:
|
|
|
|
{
|
|
|
|
const auto & user = typeid_cast<const User &>(*entity);
|
|
|
|
res.emplace_back(AccessType::CREATE_USER);
|
|
|
|
auto elements = user.access.getElements();
|
|
|
|
for (auto & element : elements)
|
|
|
|
{
|
|
|
|
if (element.is_partial_revoke)
|
|
|
|
continue;
|
|
|
|
element.grant_option = true;
|
|
|
|
res.emplace_back(element);
|
|
|
|
}
|
|
|
|
if (!user.granted_roles.isEmpty())
|
|
|
|
res.emplace_back(AccessType::ROLE_ADMIN);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case Role::TYPE:
|
|
|
|
{
|
|
|
|
const auto & role = typeid_cast<const Role &>(*entity);
|
|
|
|
res.emplace_back(AccessType::CREATE_ROLE);
|
|
|
|
auto elements = role.access.getElements();
|
|
|
|
for (auto & element : elements)
|
|
|
|
{
|
|
|
|
if (element.is_partial_revoke)
|
|
|
|
continue;
|
|
|
|
element.grant_option = true;
|
|
|
|
res.emplace_back(element);
|
|
|
|
}
|
|
|
|
if (!role.granted_roles.isEmpty())
|
|
|
|
res.emplace_back(AccessType::ROLE_ADMIN);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SettingsProfile::TYPE:
|
|
|
|
{
|
|
|
|
res.emplace_back(AccessType::CREATE_SETTINGS_PROFILE);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case RowPolicy::TYPE:
|
|
|
|
{
|
|
|
|
const auto & policy = typeid_cast<const RowPolicy &>(*entity);
|
|
|
|
res.emplace_back(AccessType::CREATE_ROW_POLICY, policy.getDatabase(), policy.getTableName());
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case Quota::TYPE:
|
|
|
|
{
|
|
|
|
res.emplace_back(AccessType::CREATE_QUOTA);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
default:
|
2023-01-23 21:13:58 +00:00
|
|
|
throw Exception(ErrorCodes::LOGICAL_ERROR, "Unknown type: {}", toString(entity_type));
|
2022-06-18 22:01:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
2022-06-15 18:25:13 +00:00
|
|
|
}
|
|
|
|
|
2022-06-29 20:44:05 +00:00
|
|
|
|
|
|
|
std::pair<String, BackupEntryPtr> makeBackupEntryForAccess(
|
|
|
|
const std::vector<std::pair<UUID, AccessEntityPtr>> access_entities,
|
2022-06-15 18:25:13 +00:00
|
|
|
const String & data_path_in_backup,
|
2022-06-29 20:44:05 +00:00
|
|
|
size_t counter,
|
|
|
|
const AccessControl & access_control)
|
2022-06-15 18:25:13 +00:00
|
|
|
{
|
2022-06-29 20:44:05 +00:00
|
|
|
auto dependencies = readDependenciesNamesAndTypes(findDependencies(access_entities), access_control);
|
2022-06-15 18:25:13 +00:00
|
|
|
AccessEntitiesInBackup ab;
|
2022-06-29 20:44:05 +00:00
|
|
|
boost::range::copy(access_entities, std::inserter(ab.entities, ab.entities.end()));
|
2022-06-15 18:25:13 +00:00
|
|
|
ab.dependencies = std::move(dependencies);
|
2022-06-29 20:44:05 +00:00
|
|
|
String filename = fmt::format("access{:02}.txt", counter + 1); /// access01.txt, access02.txt, ...
|
|
|
|
String file_path_in_backup = fs::path{data_path_in_backup} / filename;
|
|
|
|
return {file_path_in_backup, ab.toBackupEntry()};
|
2022-06-15 18:25:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-06-29 20:44:05 +00:00
|
|
|
AccessRestorerFromBackup::AccessRestorerFromBackup(
|
|
|
|
const BackupPtr & backup_, const RestoreSettings & restore_settings_)
|
|
|
|
: backup(backup_), allow_unresolved_access_dependencies(restore_settings_.allow_unresolved_access_dependencies)
|
2022-06-15 18:25:13 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2022-06-29 20:44:05 +00:00
|
|
|
AccessRestorerFromBackup::~AccessRestorerFromBackup() = default;
|
2022-06-15 18:25:13 +00:00
|
|
|
|
2022-07-02 16:26:08 +00:00
|
|
|
void AccessRestorerFromBackup::addDataPath(const String & data_path)
|
2022-06-15 18:25:13 +00:00
|
|
|
{
|
2022-06-18 22:01:08 +00:00
|
|
|
if (!data_paths.emplace(data_path).second)
|
|
|
|
return;
|
|
|
|
|
2022-06-29 20:44:05 +00:00
|
|
|
fs::path data_path_in_backup_fs = data_path;
|
|
|
|
Strings filenames = backup->listFiles(data_path);
|
|
|
|
if (filenames.empty())
|
2022-06-29 12:42:23 +00:00
|
|
|
return;
|
|
|
|
|
2022-06-29 20:44:05 +00:00
|
|
|
for (const String & filename : filenames)
|
2022-06-29 12:42:23 +00:00
|
|
|
{
|
2022-06-29 20:44:05 +00:00
|
|
|
if (!filename.starts_with("access") || !filename.ends_with(".txt"))
|
2022-07-02 16:26:08 +00:00
|
|
|
throw Exception(ErrorCodes::CANNOT_RESTORE_TABLE, "File name {} doesn't match the wildcard \"access*.txt\"",
|
|
|
|
String{data_path_in_backup_fs / filename});
|
2022-06-29 12:42:23 +00:00
|
|
|
}
|
|
|
|
|
2022-06-29 20:44:05 +00:00
|
|
|
::sort(filenames.begin(), filenames.end());
|
|
|
|
|
|
|
|
for (const String & filename : filenames)
|
|
|
|
{
|
|
|
|
String filepath_in_backup = data_path_in_backup_fs / filename;
|
|
|
|
auto backup_entry = backup->readFile(filepath_in_backup);
|
|
|
|
auto ab = AccessEntitiesInBackup::fromBackupEntry(*backup_entry, filepath_in_backup);
|
|
|
|
|
|
|
|
boost::range::copy(ab.entities, std::back_inserter(entities));
|
|
|
|
boost::range::copy(ab.dependencies, std::inserter(dependencies, dependencies.end()));
|
|
|
|
}
|
2022-06-15 18:25:13 +00:00
|
|
|
|
|
|
|
for (const auto & id : entities | boost::adaptors::map_keys)
|
|
|
|
dependencies.erase(id);
|
|
|
|
}
|
|
|
|
|
2022-06-29 20:44:05 +00:00
|
|
|
AccessRightsElements AccessRestorerFromBackup::getRequiredAccess() const
|
2022-06-18 22:01:08 +00:00
|
|
|
{
|
|
|
|
return getRequiredAccessToRestore(entities);
|
|
|
|
}
|
|
|
|
|
2022-06-29 20:44:05 +00:00
|
|
|
std::vector<std::pair<UUID, AccessEntityPtr>> AccessRestorerFromBackup::getAccessEntities(const AccessControl & access_control) const
|
2022-06-15 18:25:13 +00:00
|
|
|
{
|
2022-06-29 20:44:05 +00:00
|
|
|
auto new_entities = entities;
|
2022-06-15 18:25:13 +00:00
|
|
|
|
2022-06-29 20:44:05 +00:00
|
|
|
auto old_to_new_ids = resolveDependencies(dependencies, access_control, allow_unresolved_access_dependencies);
|
2022-06-15 18:25:13 +00:00
|
|
|
generateRandomIDs(new_entities, old_to_new_ids);
|
|
|
|
replaceDependencies(new_entities, old_to_new_ids);
|
|
|
|
|
2022-06-29 20:44:05 +00:00
|
|
|
return new_entities;
|
2022-06-15 18:25:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|