#include #include #include #include #include #include #include #include #include #include #include #include #include #include namespace DB { namespace { DataTypeEnum8::Values getAuthenticationTypeEnumValues() { DataTypeEnum8::Values enum_values; for (auto type : ext::range(Authentication::MAX_TYPE)) enum_values.emplace_back(Authentication::TypeInfo::get(type).name, static_cast(type)); return enum_values; } } NamesAndTypesList StorageSystemUsers::getNamesAndTypes() { NamesAndTypesList names_and_types{ {"name", std::make_shared()}, {"id", std::make_shared()}, {"storage", std::make_shared()}, {"auth_type", std::make_shared(getAuthenticationTypeEnumValues())}, {"auth_params", std::make_shared(std::make_shared())}, {"host_ip", std::make_shared(std::make_shared())}, {"host_names", std::make_shared(std::make_shared())}, {"host_names_regexp", std::make_shared(std::make_shared())}, {"host_names_like", std::make_shared(std::make_shared())}, {"default_roles_all", std::make_shared()}, {"default_roles_list", std::make_shared(std::make_shared())}, {"default_roles_except", std::make_shared(std::make_shared())}, }; return names_and_types; } void StorageSystemUsers::fillData(MutableColumns & res_columns, const Context & context, const SelectQueryInfo &) const { context.checkAccess(AccessType::SHOW_USERS); const auto & access_control = context.getAccessControlManager(); std::vector ids = access_control.findAll(); size_t column_index = 0; auto & column_name = assert_cast(*res_columns[column_index++]); auto & column_id = assert_cast(*res_columns[column_index++]).getData(); auto & column_storage = assert_cast(*res_columns[column_index++]); auto & column_auth_type = assert_cast(*res_columns[column_index++]).getData(); auto & column_auth_params = assert_cast(assert_cast(*res_columns[column_index]).getData()); auto & column_auth_params_offsets = assert_cast(*res_columns[column_index++]).getOffsets(); auto & column_host_ip = assert_cast(assert_cast(*res_columns[column_index]).getData()); auto & column_host_ip_offsets = assert_cast(*res_columns[column_index++]).getOffsets(); auto & column_host_names = assert_cast(assert_cast(*res_columns[column_index]).getData()); auto & column_host_names_offsets = assert_cast(*res_columns[column_index++]).getOffsets(); auto & column_host_names_regexp = assert_cast(assert_cast(*res_columns[column_index]).getData()); auto & column_host_names_regexp_offsets = assert_cast(*res_columns[column_index++]).getOffsets(); auto & column_host_names_like = assert_cast(assert_cast(*res_columns[column_index]).getData()); auto & column_host_names_like_offsets = assert_cast(*res_columns[column_index++]).getOffsets(); auto & column_default_roles_all = assert_cast(*res_columns[column_index++]).getData(); auto & column_default_roles_list = assert_cast(assert_cast(*res_columns[column_index]).getData()); auto & column_default_roles_list_offsets = assert_cast(*res_columns[column_index++]).getOffsets(); auto & column_default_roles_except = assert_cast(assert_cast(*res_columns[column_index]).getData()); auto & column_default_roles_except_offsets = assert_cast(*res_columns[column_index++]).getOffsets(); auto add_row = [&](const String & name, const UUID & id, const String & storage_name, const Authentication & authentication, const AllowedClientHosts & allowed_hosts, const ExtendedRoleSet & default_roles) { column_name.insertData(name.data(), name.length()); column_id.push_back(id); column_storage.insertData(storage_name.data(), storage_name.length()); column_auth_type.push_back(static_cast(authentication.getType())); column_auth_params_offsets.push_back(column_auth_params.size()); if (allowed_hosts.containsAnyHost()) { static constexpr std::string_view str{"::/0"}; column_host_ip.insertData(str.data(), str.length()); } else { if (allowed_hosts.containsLocalHost()) { static constexpr std::string_view str{"localhost"}; column_host_names.insertData(str.data(), str.length()); } for (const auto & ip : allowed_hosts.getAddresses()) { String str = ip.toString(); column_host_ip.insertData(str.data(), str.length()); } for (const auto & subnet : allowed_hosts.getSubnets()) { String str = subnet.toString(); column_host_ip.insertData(str.data(), str.length()); } for (const auto & host_name : allowed_hosts.getNames()) column_host_names.insertData(host_name.data(), host_name.length()); for (const auto & name_regexp : allowed_hosts.getNameRegexps()) column_host_names_regexp.insertData(name_regexp.data(), name_regexp.length()); for (const auto & like_pattern : allowed_hosts.getLikePatterns()) column_host_names_like.insertData(like_pattern.data(), like_pattern.length()); } column_host_ip_offsets.push_back(column_host_ip.size()); column_host_names_offsets.push_back(column_host_names.size()); column_host_names_regexp_offsets.push_back(column_host_names_regexp.size()); column_host_names_like_offsets.push_back(column_host_names_like.size()); auto default_roles_ast = default_roles.toASTWithNames(access_control); column_default_roles_all.push_back(default_roles_ast->all); for (const auto & role_name : default_roles_ast->names) column_default_roles_list.insertData(role_name.data(), role_name.length()); column_default_roles_list_offsets.push_back(column_default_roles_list.size()); for (const auto & role_name : default_roles_ast->except_names) column_default_roles_except.insertData(role_name.data(), role_name.length()); column_default_roles_except_offsets.push_back(column_default_roles_except.size()); }; for (const auto & id : ids) { auto user = access_control.tryRead(id); if (!user) continue; const auto * storage = access_control.findStorage(id); if (!storage) continue; add_row(user->getName(), id, storage->getStorageName(), user->authentication, user->allowed_client_hosts, user->default_roles); } } }