/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ /* * Copyright (C) 2016-present ScyllaDB * * Modified by ScyllaDB */ /* * This file is part of Scylla. * * Scylla is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Scylla is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Scylla. If not, see . */ #pragma once #include #include #include "auth/authorizer.hh" #include "service/migration_manager.hh" namespace cql3 { class query_processor; } // namespace cql3 namespace auth { class default_authorizer : public authorizer { cql3::query_processor& _qp; ::service::migration_manager& _migration_manager; abort_source _as{}; future<> _finished{make_ready_future<>()}; public: default_authorizer(cql3::query_processor&, ::service::migration_manager&); ~default_authorizer(); virtual future<> start() override; virtual future<> stop() override; virtual std::string_view qualified_java_name() const override; virtual future authorize(const role_or_anonymous&, const resource&) const override; virtual future<> grant(std::string_view, permission_set, const resource&) const override; virtual future<> revoke( std::string_view, permission_set, const resource&) const override; virtual future> list_all() const override; virtual future<> revoke_all(std::string_view) const override; virtual future<> revoke_all(const resource&) const override; virtual const resource_set& protected_resources() const override; private: bool legacy_metadata_exists() const; future any_granted() const; future<> migrate_legacy_metadata() const; future<> modify(std::string_view, permission_set, const resource&, std::string_view) const; }; } /* namespace auth */