// // Copyright 2020 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. // // This filter reads GRPC_ARG_SERVICE_CONFIG and populates ServiceConfigCallData // in the call context per call for direct channels. #include #include #include #include #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/types/optional.h" #include #include #include "src/core/lib/channel/channel_args.h" #include "src/core/lib/channel/channel_fwd.h" #include "src/core/lib/channel/channel_stack.h" #include "src/core/lib/channel/channel_stack_builder.h" #include "src/core/lib/channel/context.h" #include "src/core/lib/config/core_configuration.h" #include "src/core/lib/gprpp/ref_counted_ptr.h" #include "src/core/lib/iomgr/closure.h" #include "src/core/lib/iomgr/error.h" #include "src/core/lib/service_config/service_config.h" #include "src/core/lib/service_config/service_config_call_data.h" #include "src/core/lib/service_config/service_config_impl.h" #include "src/core/lib/service_config/service_config_parser.h" #include "src/core/lib/surface/channel_init.h" #include "src/core/lib/surface/channel_stack_type.h" namespace grpc_core { namespace { class ServiceConfigChannelArgChannelData { public: explicit ServiceConfigChannelArgChannelData( const grpc_channel_element_args* args) { const char* service_config_str = grpc_channel_args_find_string( args->channel_args, GRPC_ARG_SERVICE_CONFIG); if (service_config_str != nullptr) { auto service_config = ServiceConfigImpl::Create( ChannelArgs::FromC(args->channel_args), service_config_str); if (!service_config.ok()) { gpr_log(GPR_ERROR, "%s", service_config.status().ToString().c_str()); } else { service_config_ = std::move(*service_config); } } } RefCountedPtr service_config() const { return service_config_; } private: RefCountedPtr service_config_; }; class ServiceConfigChannelArgCallData { public: ServiceConfigChannelArgCallData( RefCountedPtr service_config, const ServiceConfigParser::ParsedConfigVector* method_config, const grpc_call_element_args* args) : call_context_(args->context), service_config_call_data_(std::move(service_config), method_config, /*call_attributes=*/{}) { GPR_DEBUG_ASSERT(args->context != nullptr); // No need to set the destroy function, since it will be cleaned up // when this filter is destroyed in the filter stack. args->context[GRPC_CONTEXT_SERVICE_CONFIG_CALL_DATA].value = &service_config_call_data_; } ~ServiceConfigChannelArgCallData() { // Remove the entry from call context, just in case anyone above us // tries to look at it during call stack destruction. call_context_[GRPC_CONTEXT_SERVICE_CONFIG_CALL_DATA].value = nullptr; } private: grpc_call_context_element* call_context_; ServiceConfigCallData service_config_call_data_; }; grpc_error_handle ServiceConfigChannelArgInitCallElem( grpc_call_element* elem, const grpc_call_element_args* args) { auto* chand = static_cast(elem->channel_data); auto* calld = static_cast(elem->call_data); RefCountedPtr service_config = chand->service_config(); const ServiceConfigParser::ParsedConfigVector* method_config = nullptr; if (service_config != nullptr) { method_config = service_config->GetMethodParsedConfigVector(args->path); } new (calld) ServiceConfigChannelArgCallData(std::move(service_config), method_config, args); return GRPC_ERROR_NONE; } void ServiceConfigChannelArgDestroyCallElem( grpc_call_element* elem, const grpc_call_final_info* /* final_info */, grpc_closure* /* then_schedule_closure */) { ServiceConfigChannelArgCallData* calld = static_cast(elem->call_data); calld->~ServiceConfigChannelArgCallData(); } grpc_error_handle ServiceConfigChannelArgInitChannelElem( grpc_channel_element* elem, grpc_channel_element_args* args) { ServiceConfigChannelArgChannelData* chand = static_cast(elem->channel_data); new (chand) ServiceConfigChannelArgChannelData(args); return GRPC_ERROR_NONE; } void ServiceConfigChannelArgDestroyChannelElem(grpc_channel_element* elem) { ServiceConfigChannelArgChannelData* chand = static_cast(elem->channel_data); chand->~ServiceConfigChannelArgChannelData(); } const grpc_channel_filter ServiceConfigChannelArgFilter = { grpc_call_next_op, nullptr, grpc_channel_next_op, sizeof(ServiceConfigChannelArgCallData), ServiceConfigChannelArgInitCallElem, grpc_call_stack_ignore_set_pollset_or_pollset_set, ServiceConfigChannelArgDestroyCallElem, sizeof(ServiceConfigChannelArgChannelData), ServiceConfigChannelArgInitChannelElem, grpc_channel_stack_no_post_init, ServiceConfigChannelArgDestroyChannelElem, grpc_channel_next_get_info, "service_config_channel_arg"}; } // namespace void RegisterServiceConfigChannelArgFilter( CoreConfiguration::Builder* builder) { builder->channel_init()->RegisterStage( GRPC_CLIENT_DIRECT_CHANNEL, GRPC_CHANNEL_INIT_BUILTIN_PRIORITY, [](ChannelStackBuilder* builder) { auto channel_args = builder->channel_args(); if (channel_args.WantMinimalStack() || !channel_args.GetString(GRPC_ARG_SERVICE_CONFIG).has_value()) { return true; } builder->PrependFilter(&ServiceConfigChannelArgFilter); return true; }); } } // namespace grpc_core