// // // Copyright 2015 gRPC authors. // // Licensed 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. // // #include "src/core/lib/security/security_connector/security_connector.h" #include #include #include "absl/log/check.h" #include "absl/log/log.h" #include #include "src/core/lib/channel/channel_args.h" #include "src/core/lib/gprpp/debug_location.h" #include "src/core/lib/security/credentials/credentials.h" #include "src/core/util/useful.h" grpc_channel_security_connector::grpc_channel_security_connector( absl::string_view url_scheme, grpc_core::RefCountedPtr channel_creds, grpc_core::RefCountedPtr request_metadata_creds) : grpc_security_connector(url_scheme), channel_creds_(std::move(channel_creds)), request_metadata_creds_(std::move(request_metadata_creds)) {} int grpc_channel_security_connector::channel_security_connector_cmp( const grpc_channel_security_connector* other) const { const grpc_channel_security_connector* other_sc = static_cast(other); CHECK_NE(channel_creds(), nullptr); CHECK_NE(other_sc->channel_creds(), nullptr); int c = channel_creds()->cmp(other_sc->channel_creds()); if (c != 0) return c; return grpc_core::QsortCompare(request_metadata_creds(), other_sc->request_metadata_creds()); } grpc_core::UniqueTypeName grpc_channel_security_connector::type() const { return channel_creds_->type(); } grpc_server_security_connector::grpc_server_security_connector( absl::string_view url_scheme, grpc_core::RefCountedPtr server_creds) : grpc_security_connector(url_scheme), server_creds_(std::move(server_creds)) {} int grpc_server_security_connector::server_security_connector_cmp( const grpc_server_security_connector* other) const { const grpc_server_security_connector* other_sc = static_cast(other); CHECK_NE(server_creds(), nullptr); CHECK_NE(other_sc->server_creds(), nullptr); return grpc_core::QsortCompare(server_creds(), other_sc->server_creds()); } grpc_core::UniqueTypeName grpc_server_security_connector::type() const { return server_creds_->type(); } static void connector_arg_destroy(void* p) { if (p == nullptr) return; static_cast(p)->Unref(DEBUG_LOCATION, "connector_arg_destroy"); } static void* connector_arg_copy(void* p) { if (p == nullptr) return nullptr; return static_cast(p) ->Ref(DEBUG_LOCATION, "connector_arg_copy") .release(); } static int connector_cmp(void* a, void* b) { return static_cast(a)->cmp( static_cast(b)); } static const grpc_arg_pointer_vtable connector_arg_vtable = { connector_arg_copy, connector_arg_destroy, connector_cmp}; grpc_arg grpc_security_connector_to_arg(grpc_security_connector* sc) { return grpc_channel_arg_pointer_create( const_cast(GRPC_ARG_SECURITY_CONNECTOR), sc, &connector_arg_vtable); } grpc_security_connector* grpc_security_connector_from_arg(const grpc_arg* arg) { if (strcmp(arg->key, GRPC_ARG_SECURITY_CONNECTOR) != 0) return nullptr; if (arg->type != GRPC_ARG_POINTER) { LOG(ERROR) << "Invalid type " << arg->type << " for arg " << GRPC_ARG_SECURITY_CONNECTOR; return nullptr; } return static_cast(arg->value.pointer.p); } grpc_security_connector* grpc_security_connector_find_in_args( const grpc_channel_args* args) { size_t i; if (args == nullptr) return nullptr; for (i = 0; i < args->num_args; i++) { grpc_security_connector* sc = grpc_security_connector_from_arg(&args->args[i]); if (sc != nullptr) return sc; } return nullptr; }