mirror of https://github.com/grpc/grpc.git
Merge pull request #23271 from grpc/revert-23177-checksizebeforedecompress
Revert "Add message-size check before message decompression"pull/23268/head
commit
3a09a95f0e
24 changed files with 93 additions and 622 deletions
@ -1,142 +0,0 @@ |
|||||||
//
|
|
||||||
// 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 <grpc/support/port_platform.h> |
|
||||||
|
|
||||||
#include "src/core/ext/filters/client_channel/service_config_call_data.h" |
|
||||||
#include "src/core/lib/channel/channel_args.h" |
|
||||||
#include "src/core/lib/channel/channel_stack.h" |
|
||||||
#include "src/core/lib/channel/channel_stack_builder.h" |
|
||||||
#include "src/core/lib/surface/channel_init.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) { |
|
||||||
grpc_error* service_config_error = GRPC_ERROR_NONE; |
|
||||||
auto service_config = |
|
||||||
ServiceConfig::Create(service_config_str, &service_config_error); |
|
||||||
if (service_config_error == GRPC_ERROR_NONE) { |
|
||||||
service_config_ = std::move(service_config); |
|
||||||
} else { |
|
||||||
gpr_log(GPR_ERROR, "%s", grpc_error_string(service_config_error)); |
|
||||||
} |
|
||||||
GRPC_ERROR_UNREF(service_config_error); |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
RefCountedPtr<ServiceConfig> service_config() const { |
|
||||||
return service_config_; |
|
||||||
} |
|
||||||
|
|
||||||
private: |
|
||||||
RefCountedPtr<ServiceConfig> service_config_; |
|
||||||
}; |
|
||||||
|
|
||||||
class ServiceConfigChannelArgCallData { |
|
||||||
public: |
|
||||||
ServiceConfigChannelArgCallData(grpc_call_element* elem, |
|
||||||
const grpc_call_element_args* args) { |
|
||||||
ServiceConfigChannelArgChannelData* chand = |
|
||||||
static_cast<ServiceConfigChannelArgChannelData*>(elem->channel_data); |
|
||||||
RefCountedPtr<ServiceConfig> service_config = chand->service_config(); |
|
||||||
if (service_config != nullptr) { |
|
||||||
GPR_DEBUG_ASSERT(args->context != nullptr); |
|
||||||
const auto* method_params_vector = |
|
||||||
service_config->GetMethodParsedConfigVector(args->path); |
|
||||||
args->arena->New<ServiceConfigCallData>( |
|
||||||
std::move(service_config), method_params_vector, args->context); |
|
||||||
} |
|
||||||
} |
|
||||||
}; |
|
||||||
|
|
||||||
grpc_error* ServiceConfigChannelArgInitCallElem( |
|
||||||
grpc_call_element* elem, const grpc_call_element_args* args) { |
|
||||||
ServiceConfigChannelArgCallData* calld = |
|
||||||
static_cast<ServiceConfigChannelArgCallData*>(elem->call_data); |
|
||||||
new (calld) ServiceConfigChannelArgCallData(elem, 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<ServiceConfigChannelArgCallData*>(elem->call_data); |
|
||||||
calld->~ServiceConfigChannelArgCallData(); |
|
||||||
} |
|
||||||
|
|
||||||
grpc_error* ServiceConfigChannelArgInitChannelElem( |
|
||||||
grpc_channel_element* elem, grpc_channel_element_args* args) { |
|
||||||
ServiceConfigChannelArgChannelData* chand = |
|
||||||
static_cast<ServiceConfigChannelArgChannelData*>(elem->channel_data); |
|
||||||
new (chand) ServiceConfigChannelArgChannelData(args); |
|
||||||
return GRPC_ERROR_NONE; |
|
||||||
} |
|
||||||
|
|
||||||
void ServiceConfigChannelArgDestroyChannelElem(grpc_channel_element* elem) { |
|
||||||
ServiceConfigChannelArgChannelData* chand = |
|
||||||
static_cast<ServiceConfigChannelArgChannelData*>(elem->channel_data); |
|
||||||
chand->~ServiceConfigChannelArgChannelData(); |
|
||||||
} |
|
||||||
|
|
||||||
const grpc_channel_filter ServiceConfigChannelArgFilter = { |
|
||||||
grpc_call_next_op, |
|
||||||
grpc_channel_next_op, |
|
||||||
sizeof(ServiceConfigChannelArgCallData), |
|
||||||
ServiceConfigChannelArgInitCallElem, |
|
||||||
grpc_call_stack_ignore_set_pollset_or_pollset_set, |
|
||||||
ServiceConfigChannelArgDestroyCallElem, |
|
||||||
sizeof(ServiceConfigChannelArgChannelData), |
|
||||||
ServiceConfigChannelArgInitChannelElem, |
|
||||||
ServiceConfigChannelArgDestroyChannelElem, |
|
||||||
grpc_channel_next_get_info, |
|
||||||
"service_config_channel_arg"}; |
|
||||||
|
|
||||||
bool maybe_add_service_config_channel_arg_filter( |
|
||||||
grpc_channel_stack_builder* builder, void* /* arg */) { |
|
||||||
const grpc_channel_args* channel_args = |
|
||||||
grpc_channel_stack_builder_get_channel_arguments(builder); |
|
||||||
if (grpc_channel_args_want_minimal_stack(channel_args) || |
|
||||||
grpc_channel_args_find_string(channel_args, GRPC_ARG_SERVICE_CONFIG) == |
|
||||||
nullptr) { |
|
||||||
return true; |
|
||||||
} |
|
||||||
return grpc_channel_stack_builder_prepend_filter( |
|
||||||
builder, &ServiceConfigChannelArgFilter, nullptr, nullptr); |
|
||||||
} |
|
||||||
|
|
||||||
} // namespace
|
|
||||||
|
|
||||||
} // namespace grpc_core
|
|
||||||
|
|
||||||
void grpc_service_config_channel_arg_filter_init(void) { |
|
||||||
grpc_channel_init_register_stage( |
|
||||||
GRPC_CLIENT_DIRECT_CHANNEL, GRPC_CHANNEL_INIT_BUILTIN_PRIORITY, |
|
||||||
grpc_core::maybe_add_service_config_channel_arg_filter, nullptr); |
|
||||||
} |
|
||||||
|
|
||||||
void grpc_service_config_channel_arg_filter_shutdown(void) {} |
|
Loading…
Reference in new issue