/* */ /* * Copyright 2016-present ScyllaDB * * Modified by ScyllaDB */ /* * SPDX-License-Identifier: (AGPL-3.0-or-later and Apache-2.0) */ #include "list_users_statement.hh" #include "cql3/query_processor.hh" #include "cql3/query_options.hh" #include "cql3/column_identifier.hh" #include "auth/common.hh" #include "transport/messages/result_message.hh" std::unique_ptr cql3::statements::list_users_statement::prepare( data_dictionary::database db, cql_stats& stats) { return std::make_unique(::make_shared(*this)); } void cql3::statements::list_users_statement::validate(query_processor& qp, const service::client_state& state) const { } future<> cql3::statements::list_users_statement::check_access(query_processor& qp, const service::client_state& state) const { state.ensure_not_anonymous(); return make_ready_future(); } future<::shared_ptr> cql3::statements::list_users_statement::execute(query_processor& qp, service::query_state& state, const query_options& options) const { static const sstring virtual_table_name("users"); static const auto make_column_spec = [](const sstring& name, const ::shared_ptr& ty) { return make_lw_shared( auth::meta::AUTH_KS, virtual_table_name, ::make_shared(name, true), ty); }; static thread_local const auto metadata = ::make_shared( std::vector>{ make_column_spec("name", utf8_type), make_column_spec("super", boolean_type)}); static const auto make_results = [](const auth::service& as, std::unordered_set&& roles) { using cql_transport::messages::result_message; auto results = std::make_unique(metadata); std::vector sorted_roles(roles.cbegin(), roles.cend()); std::sort(sorted_roles.begin(), sorted_roles.end()); return do_with( std::move(sorted_roles), std::move(results), [&as](const std::vector& sorted_roles, std::unique_ptr& results) { return do_for_each(sorted_roles, [&as, &results](const sstring& role) { return when_all_succeed( as.has_superuser(role), as.underlying_role_manager().can_login(role)).then_unpack([&results, &role](bool super, bool login) { if (login) { results->add_column_value(utf8_type->decompose(role)); results->add_column_value(boolean_type->decompose(super)); } }); }).then([&results] { return make_ready_future<::shared_ptr>(::make_shared( result(std::move(results)))); }); }); }; const auto& cs = state.get_client_state(); const auto& as = *cs.get_auth_service(); return auth::has_superuser(as, *cs.user()).then([&cs, &as](bool has_superuser) { if (has_superuser) { return as.underlying_role_manager().query_all().then([&as](std::unordered_set roles) { return make_results(as, std::move(roles)); }); } return auth::get_roles(as, *cs.user()).then([&as](std::unordered_set granted_roles) { return make_results(as, std::move(granted_roles)); }); }); }