grpc 1.41.1 → 1.42.0.pre1
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of grpc might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/Makefile +55 -43
- data/include/grpc/event_engine/event_engine.h +82 -42
- data/include/grpc/event_engine/internal/memory_allocator_impl.h +98 -0
- data/include/grpc/event_engine/memory_allocator.h +210 -0
- data/include/grpc/grpc.h +4 -0
- data/include/grpc/grpc_security.h +18 -0
- data/include/grpc/grpc_security_constants.h +1 -0
- data/include/grpc/impl/codegen/port_platform.h +7 -0
- data/src/core/ext/filters/client_channel/backend_metric.cc +18 -19
- data/src/core/ext/filters/client_channel/backup_poller.cc +2 -1
- data/src/core/ext/filters/client_channel/channel_connectivity.cc +71 -89
- data/src/core/ext/filters/client_channel/client_channel.cc +187 -252
- data/src/core/ext/filters/client_channel/client_channel.h +74 -27
- data/src/core/ext/filters/client_channel/client_channel_factory.cc +1 -1
- data/src/core/ext/filters/client_channel/client_channel_factory.h +17 -19
- data/src/core/ext/filters/client_channel/client_channel_plugin.cc +8 -14
- data/src/core/ext/filters/client_channel/config_selector.cc +1 -1
- data/src/core/ext/filters/client_channel/config_selector.h +4 -5
- data/src/core/ext/filters/client_channel/connector.h +18 -18
- data/src/core/ext/filters/client_channel/dynamic_filters.cc +1 -1
- data/src/core/ext/filters/client_channel/global_subchannel_pool.h +0 -1
- data/src/core/ext/filters/client_channel/health/health_check_client.cc +12 -11
- data/src/core/ext/filters/client_channel/http_connect_handshaker.h +1 -1
- data/src/core/ext/filters/client_channel/lb_policy/child_policy_handler.cc +4 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.cc +6 -15
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc +166 -82
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.h +4 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.cc +1 -1
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.cc +2 -4
- data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc +23 -7
- data/src/core/ext/filters/client_channel/lb_policy/priority/priority.cc +15 -10
- data/src/core/ext/filters/client_channel/lb_policy/ring_hash/ring_hash.cc +2 -3
- data/src/core/ext/filters/client_channel/lb_policy/rls/rls.cc +2502 -0
- data/src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc +6 -1
- data/src/core/ext/filters/client_channel/lb_policy/weighted_target/weighted_target.cc +7 -1
- data/src/core/ext/filters/client_channel/lb_policy/xds/cds.cc +6 -2
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_channel_args.h +1 -1
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_impl.cc +5 -0
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_manager.cc +8 -1
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_resolver.cc +7 -16
- data/src/core/ext/filters/client_channel/lb_policy.h +11 -1
- data/src/core/ext/filters/client_channel/lb_policy_factory.h +1 -0
- data/src/core/ext/filters/client_channel/resolver/binder/binder_resolver.cc +139 -0
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc +11 -5
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc +3 -3
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc +12 -39
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h +21 -1
- data/src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc +6 -2
- data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.cc +3 -1
- data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.cc +77 -68
- data/src/core/ext/filters/client_channel/resolver.h +1 -1
- data/src/core/ext/filters/client_channel/resolver_factory.h +2 -0
- data/src/core/ext/filters/client_channel/resolver_registry.cc +6 -8
- data/src/core/ext/filters/client_channel/resolver_result_parsing.cc +1 -1
- data/src/core/ext/filters/client_channel/resolver_result_parsing.h +1 -1
- data/src/core/ext/filters/client_channel/retry_filter.cc +48 -86
- data/src/core/ext/filters/client_channel/retry_service_config.h +1 -1
- data/src/core/ext/filters/client_channel/retry_throttle.cc +17 -48
- data/src/core/ext/filters/client_channel/server_address.h +1 -1
- data/src/core/ext/filters/client_channel/service_config_channel_arg_filter.cc +49 -36
- data/src/core/ext/filters/client_channel/subchannel.cc +85 -143
- data/src/core/ext/filters/client_channel/subchannel.h +29 -49
- data/src/core/ext/filters/client_channel/subchannel_pool_interface.cc +22 -7
- data/src/core/ext/filters/client_channel/subchannel_pool_interface.h +11 -2
- data/src/core/ext/filters/client_idle/client_idle_filter.cc +27 -210
- data/src/core/ext/filters/client_idle/idle_filter_state.cc +96 -0
- data/src/core/ext/filters/client_idle/idle_filter_state.h +66 -0
- data/src/core/ext/filters/deadline/deadline_filter.cc +23 -26
- data/src/core/ext/filters/fault_injection/fault_injection_filter.cc +19 -19
- data/src/core/ext/filters/fault_injection/service_config_parser.cc +0 -1
- data/src/core/ext/filters/fault_injection/service_config_parser.h +1 -1
- data/src/core/ext/filters/http/client/http_client_filter.cc +41 -44
- data/src/core/ext/filters/http/client_authority_filter.cc +14 -15
- data/src/core/ext/filters/http/http_filters_plugin.cc +53 -71
- data/src/core/ext/filters/http/message_compress/message_compress_filter.cc +17 -12
- data/src/core/ext/filters/http/message_compress/message_decompress_filter.cc +1 -1
- data/src/core/ext/filters/http/server/http_server_filter.cc +72 -69
- data/src/core/ext/filters/max_age/max_age_filter.cc +24 -26
- data/src/core/ext/filters/message_size/message_size_filter.cc +19 -16
- data/src/core/ext/filters/message_size/message_size_filter.h +1 -1
- data/src/core/ext/{filters/client_channel → service_config}/service_config.cc +2 -2
- data/src/core/ext/{filters/client_channel → service_config}/service_config.h +4 -4
- data/src/core/ext/service_config/service_config_call_data.h +72 -0
- data/src/core/ext/{filters/client_channel → service_config}/service_config_parser.cc +3 -3
- data/src/core/ext/{filters/client_channel → service_config}/service_config_parser.h +8 -6
- data/src/core/ext/transport/chttp2/client/chttp2_connector.cc +2 -5
- data/src/core/ext/transport/chttp2/client/insecure/channel_create.cc +19 -24
- data/src/core/ext/transport/chttp2/client/secure/secure_channel_create.cc +27 -50
- data/src/core/ext/transport/chttp2/server/chttp2_server.cc +14 -16
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +59 -58
- data/src/core/ext/transport/chttp2/transport/flow_control.cc +19 -16
- data/src/core/ext/transport/chttp2/transport/flow_control.h +4 -4
- data/src/core/ext/transport/chttp2/transport/frame_data.cc +4 -4
- data/src/core/ext/transport/chttp2/transport/frame_goaway.cc +2 -1
- data/src/core/ext/transport/chttp2/transport/frame_ping.cc +2 -1
- data/src/core/ext/transport/chttp2/transport/frame_rst_stream.cc +2 -3
- data/src/core/ext/transport/chttp2/transport/frame_settings.cc +2 -2
- data/src/core/ext/transport/chttp2/transport/hpack_constants.h +1 -1
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.cc +41 -1
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.h +8 -4
- data/src/core/ext/transport/chttp2/transport/hpack_encoder_index.h +1 -1
- data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +136 -98
- data/src/core/ext/transport/chttp2/transport/hpack_parser.h +27 -8
- data/src/core/ext/transport/chttp2/transport/hpack_parser_table.cc +12 -25
- data/src/core/ext/transport/chttp2/transport/hpack_parser_table.h +37 -30
- data/src/core/ext/transport/chttp2/transport/internal.h +4 -3
- data/src/core/ext/transport/chttp2/transport/parsing.cc +30 -173
- data/src/core/ext/transport/chttp2/transport/popularity_count.h +1 -1
- data/src/core/ext/transport/chttp2/transport/writing.cc +29 -22
- data/src/core/ext/transport/inproc/inproc_transport.cc +105 -109
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.c +68 -34
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.h +139 -1
- data/src/core/ext/upb-generated/envoy/config/core/v3/base.upb.c +16 -4
- data/src/core/ext/upb-generated/envoy/config/core/v3/base.upb.h +53 -4
- data/src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.c +3 -2
- data/src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.h +15 -0
- data/src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.c +13 -8
- data/src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.h +23 -0
- data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint_components.upb.c +0 -1
- data/src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.c +14 -11
- data/src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.h +17 -0
- data/src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.c +15 -12
- data/src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.h +49 -19
- data/src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls.upb.c +55 -0
- data/src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls.upb.h +154 -0
- data/src/core/ext/upb-generated/udpa/annotations/security.upb.c +0 -2
- data/src/core/ext/upb-generated/xds/annotations/v3/status.upb.c +58 -0
- data/src/core/ext/upb-generated/xds/annotations/v3/status.upb.h +182 -0
- data/src/core/ext/upb-generated/xds/core/v3/authority.upb.c +1 -1
- data/src/core/ext/upb-generated/xds/core/v3/collection_entry.upb.c +1 -1
- data/src/core/ext/upb-generated/xds/core/v3/context_params.upb.c +1 -1
- data/src/core/ext/upb-generated/xds/core/v3/resource.upb.c +1 -1
- data/src/core/ext/upb-generated/xds/core/v3/resource_locator.upb.c +1 -1
- data/src/core/ext/upb-generated/xds/core/v3/resource_name.upb.c +1 -1
- data/src/core/ext/upb-generated/xds/data/orca/v3/orca_load_report.upb.c +58 -0
- data/src/core/ext/upb-generated/xds/data/orca/v3/orca_load_report.upb.h +130 -0
- data/src/core/ext/upb-generated/{udpa/type/v1 → xds/type/v3}/typed_struct.upb.c +7 -7
- data/src/core/ext/upb-generated/xds/type/v3/typed_struct.upb.h +83 -0
- data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/cluster.upbdefs.c +310 -286
- data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/cluster.upbdefs.h +10 -0
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/base.upbdefs.c +101 -88
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/base.upbdefs.h +5 -0
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/health_check.upbdefs.c +59 -56
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/protocol.upbdefs.c +59 -46
- data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint_components.upbdefs.c +78 -82
- data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route_components.upbdefs.c +323 -316
- data/src/core/ext/upbdefs-generated/udpa/annotations/migrate.upbdefs.c +5 -4
- data/src/core/ext/upbdefs-generated/udpa/annotations/security.upbdefs.c +19 -23
- data/src/core/ext/upbdefs-generated/udpa/annotations/sensitive.upbdefs.c +4 -3
- data/src/core/ext/upbdefs-generated/udpa/annotations/status.upbdefs.c +5 -3
- data/src/core/ext/upbdefs-generated/udpa/annotations/versioning.upbdefs.c +5 -4
- data/src/core/ext/upbdefs-generated/xds/annotations/v3/status.upbdefs.c +75 -0
- data/src/core/ext/upbdefs-generated/xds/annotations/v3/status.upbdefs.h +50 -0
- data/src/core/ext/upbdefs-generated/xds/core/v3/authority.upbdefs.c +13 -12
- data/src/core/ext/upbdefs-generated/xds/core/v3/collection_entry.upbdefs.c +25 -24
- data/src/core/ext/upbdefs-generated/xds/core/v3/context_params.upbdefs.c +16 -15
- data/src/core/ext/upbdefs-generated/xds/core/v3/resource.upbdefs.c +17 -16
- data/src/core/ext/upbdefs-generated/xds/core/v3/resource_locator.upbdefs.c +33 -32
- data/src/core/ext/upbdefs-generated/xds/core/v3/resource_name.upbdefs.c +19 -18
- data/src/core/ext/upbdefs-generated/xds/type/v3/typed_struct.upbdefs.c +45 -0
- data/src/core/ext/upbdefs-generated/xds/type/v3/typed_struct.upbdefs.h +35 -0
- data/src/core/ext/xds/xds_api.cc +325 -362
- data/src/core/ext/xds/xds_api.h +134 -82
- data/src/core/ext/xds/xds_bootstrap.h +10 -0
- data/src/core/ext/xds/xds_certificate_provider.cc +3 -3
- data/src/core/ext/xds/xds_channel_stack_modifier.cc +113 -0
- data/src/core/ext/xds/xds_channel_stack_modifier.h +52 -0
- data/src/core/ext/xds/xds_client.cc +527 -314
- data/src/core/ext/xds/xds_client.h +42 -37
- data/src/core/ext/xds/xds_client_stats.h +1 -1
- data/src/core/ext/xds/xds_server_config_fetcher.cc +5 -7
- data/src/core/lib/address_utils/parse_address.cc +2 -0
- data/src/core/lib/avl/avl.cc +5 -5
- data/src/core/lib/backoff/backoff.cc +1 -1
- data/src/core/lib/channel/channel_args.cc +24 -6
- data/src/core/lib/channel/channel_args.h +9 -0
- data/src/core/lib/channel/channel_stack_builder.cc +3 -3
- data/src/core/lib/channel/channel_trace.cc +1 -1
- data/src/core/lib/channel/channel_trace.h +1 -1
- data/src/core/lib/channel/channelz.cc +3 -3
- data/src/core/lib/channel/channelz.h +2 -2
- data/src/core/lib/channel/channelz_registry.cc +1 -1
- data/src/core/lib/channel/channelz_registry.h +1 -1
- data/src/core/lib/channel/connected_channel.cc +1 -3
- data/src/core/lib/channel/connected_channel.h +1 -2
- data/src/core/lib/compression/compression.cc +2 -2
- data/src/core/lib/compression/compression_args.cc +6 -4
- data/src/core/lib/compression/compression_internal.cc +2 -2
- data/src/core/lib/compression/compression_internal.h +1 -1
- data/src/core/lib/config/core_configuration.cc +44 -2
- data/src/core/lib/config/core_configuration.h +39 -1
- data/src/core/lib/debug/stats.cc +1 -1
- data/src/core/lib/debug/stats_data.cc +13 -13
- data/src/core/lib/gpr/atm.cc +1 -1
- data/src/core/lib/gpr/cpu_posix.cc +1 -1
- data/src/core/lib/gpr/string.cc +2 -2
- data/src/core/lib/gpr/tls.h +1 -1
- data/src/core/lib/gpr/useful.h +79 -32
- data/src/core/lib/gprpp/arena.h +10 -0
- data/src/core/lib/gprpp/bitset.h +38 -16
- data/src/core/lib/gprpp/chunked_vector.h +211 -0
- data/src/core/lib/gprpp/construct_destruct.h +1 -1
- data/src/core/lib/gprpp/match.h +1 -1
- data/src/core/lib/gprpp/memory.h +6 -0
- data/src/core/lib/gprpp/overload.h +1 -1
- data/src/core/lib/gprpp/status_helper.cc +23 -3
- data/src/core/lib/gprpp/status_helper.h +12 -1
- data/src/core/lib/gprpp/table.h +411 -0
- data/src/core/lib/http/httpcli.cc +200 -182
- data/src/core/lib/http/parser.cc +2 -2
- data/src/core/lib/iomgr/call_combiner.cc +28 -10
- data/src/core/lib/iomgr/combiner.cc +6 -21
- data/src/core/lib/iomgr/endpoint_cfstream.cc +7 -6
- data/src/core/lib/iomgr/error.cc +113 -52
- data/src/core/lib/iomgr/error.h +50 -9
- data/src/core/lib/iomgr/error_cfstream.cc +5 -0
- data/src/core/lib/iomgr/ev_epoll1_linux.cc +3 -2
- data/src/core/lib/iomgr/ev_epollex_linux.cc +7 -7
- data/src/core/lib/iomgr/ev_poll_posix.cc +29 -20
- data/src/core/lib/iomgr/event_engine/closure.cc +41 -18
- data/src/core/lib/iomgr/event_engine/closure.h +10 -1
- data/src/core/lib/iomgr/event_engine/endpoint.cc +3 -3
- data/src/core/lib/iomgr/event_engine/iomgr.cc +1 -1
- data/src/core/lib/iomgr/event_engine/pollset.cc +5 -4
- data/src/core/lib/iomgr/event_engine/resolver.cc +10 -7
- data/src/core/lib/iomgr/event_engine/tcp.cc +9 -8
- data/src/core/lib/iomgr/event_engine/timer.cc +7 -2
- data/src/core/lib/iomgr/exec_ctx.cc +1 -9
- data/src/core/lib/iomgr/executor/mpmcqueue.cc +5 -7
- data/src/core/lib/iomgr/executor/mpmcqueue.h +3 -8
- data/src/core/lib/iomgr/executor.cc +6 -20
- data/src/core/lib/iomgr/iomgr.cc +3 -1
- data/src/core/lib/iomgr/iomgr_internal.cc +4 -9
- data/src/core/lib/iomgr/iomgr_internal.h +3 -2
- data/src/core/lib/iomgr/load_file.cc +2 -2
- data/src/core/lib/iomgr/lockfree_event.cc +18 -0
- data/src/core/lib/iomgr/pollset_custom.cc +1 -1
- data/src/core/lib/iomgr/pollset_custom.h +1 -1
- data/src/core/lib/iomgr/resolve_address_posix.cc +5 -7
- data/src/core/lib/iomgr/resource_quota.cc +13 -11
- data/src/core/lib/iomgr/socket_factory_posix.cc +2 -2
- data/src/core/lib/iomgr/socket_mutator.cc +2 -2
- data/src/core/lib/iomgr/socket_utils_common_posix.cc +1 -2
- data/src/core/lib/iomgr/tcp_client_cfstream.cc +5 -3
- data/src/core/lib/iomgr/tcp_client_custom.cc +1 -1
- data/src/core/lib/iomgr/tcp_client_posix.cc +9 -18
- data/src/core/lib/iomgr/tcp_client_windows.cc +2 -3
- data/src/core/lib/iomgr/tcp_posix.cc +4 -5
- data/src/core/lib/iomgr/tcp_server_custom.cc +2 -1
- data/src/core/lib/iomgr/tcp_server_posix.cc +3 -4
- data/src/core/lib/iomgr/tcp_server_windows.cc +4 -5
- data/src/core/lib/iomgr/tcp_windows.cc +2 -2
- data/src/core/lib/iomgr/timer_generic.cc +13 -13
- data/src/core/lib/iomgr/timer_heap.cc +1 -1
- data/src/core/lib/json/json_util.cc +68 -0
- data/src/core/lib/json/json_util.h +57 -99
- data/src/core/lib/json/json_writer.cc +0 -3
- data/src/core/lib/security/authorization/authorization_policy_provider.h +1 -1
- data/src/core/lib/security/authorization/authorization_policy_provider_vtable.cc +1 -1
- data/src/core/lib/security/authorization/evaluate_args.cc +14 -12
- data/src/core/lib/security/authorization/sdk_server_authz_filter.cc +13 -1
- data/src/core/lib/security/context/security_context.cc +4 -2
- data/src/core/lib/security/credentials/composite/composite_credentials.cc +1 -1
- data/src/core/lib/security/credentials/credentials.cc +4 -2
- data/src/core/lib/security/credentials/credentials.h +6 -1
- data/src/core/lib/security/credentials/external/external_account_credentials.cc +47 -11
- data/src/core/lib/security/credentials/external/external_account_credentials.h +1 -0
- data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +1 -1
- data/src/core/lib/security/credentials/jwt/jwt_verifier.cc +5 -9
- data/src/core/lib/security/credentials/plugin/plugin_credentials.cc +2 -2
- data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +2 -2
- data/src/core/lib/security/security_connector/security_connector.cc +9 -4
- data/src/core/lib/security/security_connector/security_connector.h +1 -1
- data/src/core/lib/security/security_connector/ssl_utils.cc +1 -1
- data/src/core/lib/security/security_connector/tls/tls_security_connector.cc +1 -0
- data/src/core/lib/security/security_connector/tls/tls_security_connector.h +0 -2
- data/src/core/lib/security/transport/client_auth_filter.cc +5 -5
- data/src/core/lib/security/transport/security_handshaker.cc +73 -43
- data/src/core/lib/security/transport/server_auth_filter.cc +3 -5
- data/src/core/lib/security/transport/tsi_error.cc +3 -5
- data/src/core/lib/slice/slice.cc +0 -16
- data/src/core/lib/slice/slice_api.cc +39 -0
- data/src/core/lib/slice/slice_buffer.cc +5 -5
- data/src/core/lib/slice/slice_intern.cc +8 -13
- data/src/core/lib/slice/slice_internal.h +1 -244
- data/src/core/lib/slice/slice_refcount.cc +17 -0
- data/src/core/lib/slice/slice_refcount.h +121 -0
- data/src/core/lib/slice/slice_refcount_base.h +173 -0
- data/src/core/lib/slice/slice_split.cc +100 -0
- data/src/core/lib/slice/slice_split.h +40 -0
- data/src/core/lib/slice/slice_string_helpers.cc +0 -83
- data/src/core/lib/slice/slice_string_helpers.h +0 -11
- data/src/core/lib/slice/static_slice.cc +529 -0
- data/src/core/lib/slice/static_slice.h +331 -0
- data/src/core/lib/surface/builtins.cc +49 -0
- data/src/core/{ext/filters/workarounds/workaround_cronet_compression_filter.h → lib/surface/builtins.h} +8 -9
- data/src/core/lib/surface/call.cc +103 -120
- data/src/core/lib/surface/call.h +0 -6
- data/src/core/lib/surface/channel.cc +19 -32
- data/src/core/lib/surface/channel.h +0 -9
- data/src/core/lib/surface/channel_init.cc +23 -76
- data/src/core/lib/surface/channel_init.h +52 -44
- data/src/core/lib/surface/completion_queue.cc +6 -5
- data/src/core/lib/surface/init.cc +0 -39
- data/src/core/lib/surface/init_secure.cc +17 -14
- data/src/core/lib/surface/lame_client.cc +18 -11
- data/src/core/lib/surface/lame_client.h +1 -1
- data/src/core/lib/surface/server.cc +25 -17
- data/src/core/lib/surface/server.h +17 -10
- data/src/core/lib/surface/validate_metadata.cc +5 -2
- data/src/core/lib/surface/version.cc +2 -2
- data/src/core/lib/transport/bdp_estimator.cc +1 -1
- data/src/core/lib/transport/error_utils.cc +42 -17
- data/src/core/lib/transport/error_utils.h +1 -1
- data/src/core/lib/transport/metadata.cc +31 -10
- data/src/core/lib/transport/metadata.h +2 -1
- data/src/core/lib/transport/metadata_batch.cc +35 -371
- data/src/core/lib/transport/metadata_batch.h +905 -71
- data/src/core/lib/transport/parsed_metadata.h +263 -0
- data/src/core/lib/transport/pid_controller.cc +4 -4
- data/src/core/lib/transport/static_metadata.cc +714 -846
- data/src/core/lib/transport/static_metadata.h +115 -379
- data/src/core/lib/transport/status_metadata.cc +1 -0
- data/src/core/lib/transport/transport.cc +4 -5
- data/src/core/lib/transport/transport_op_string.cc +40 -20
- data/src/core/plugin_registry/grpc_plugin_registry.cc +64 -43
- data/src/core/tsi/alts/crypt/aes_gcm.cc +3 -1
- data/src/core/tsi/alts/frame_protector/alts_frame_protector.cc +13 -12
- data/src/core/tsi/alts/frame_protector/frame_handler.cc +10 -11
- data/src/core/tsi/alts/handshaker/alts_handshaker_client.cc +1 -2
- data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc +12 -2
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.cc +1 -1
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc +2 -2
- data/src/core/tsi/fake_transport_security.cc +15 -7
- data/src/core/tsi/local_transport_security.cc +36 -73
- data/src/core/tsi/ssl/session_cache/ssl_session_cache.cc +16 -50
- data/src/core/tsi/ssl/session_cache/ssl_session_cache.h +4 -3
- data/src/core/tsi/ssl_transport_security.cc +10 -2
- data/src/core/tsi/transport_security.cc +12 -0
- data/src/core/tsi/transport_security.h +16 -1
- data/src/core/tsi/transport_security_interface.h +26 -0
- data/src/ruby/ext/grpc/extconf.rb +12 -9
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +4 -0
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +6 -0
- data/src/ruby/lib/grpc/version.rb +1 -1
- data/src/ruby/pb/src/proto/grpc/testing/test_pb.rb +2 -2
- data/src/ruby/spec/client_server_spec.rb +1 -1
- data/third_party/abseil-cpp/absl/base/internal/thread_identity.cc +4 -4
- data/third_party/abseil-cpp/absl/base/internal/thread_identity.h +11 -6
- data/third_party/address_sorting/address_sorting_posix.c +1 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_bool.c +20 -21
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_strnid.c +104 -114
- data/third_party/boringssl-with-bazel/src/crypto/asn1/internal.h +13 -0
- data/third_party/boringssl-with-bazel/src/crypto/blake2/blake2.c +4 -6
- data/third_party/boringssl-with-bazel/src/crypto/chacha/chacha.c +38 -47
- data/third_party/boringssl-with-bazel/src/crypto/evp/scrypt.c +32 -34
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/sqrt.c +5 -9
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/des/des.c +10 -11
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/des/internal.h +1 -3
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/md4/md4.c +3 -6
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/md5/md5.c +4 -7
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha1.c +35 -35
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha256.c +11 -10
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha512.c +10 -37
- data/third_party/boringssl-with-bazel/src/crypto/internal.h +39 -0
- data/third_party/boringssl-with-bazel/src/crypto/siphash/siphash.c +6 -6
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_purp.c +0 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/asn1.h +72 -45
- data/third_party/boringssl-with-bazel/src/include/openssl/base.h +5 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/ssl.h +2 -2
- data/third_party/boringssl-with-bazel/src/include/openssl/x509.h +479 -15
- data/third_party/boringssl-with-bazel/src/include/openssl/x509_vfy.h +16 -564
- data/third_party/boringssl-with-bazel/src/ssl/ssl_x509.cc +0 -1
- data/third_party/re2/re2/compile.cc +91 -109
- data/third_party/re2/re2/dfa.cc +27 -39
- data/third_party/re2/re2/filtered_re2.cc +18 -2
- data/third_party/re2/re2/filtered_re2.h +10 -5
- data/third_party/re2/re2/nfa.cc +1 -1
- data/third_party/re2/re2/parse.cc +42 -23
- data/third_party/re2/re2/perl_groups.cc +34 -34
- data/third_party/re2/re2/prefilter.cc +3 -2
- data/third_party/re2/re2/prog.cc +182 -4
- data/third_party/re2/re2/prog.h +28 -9
- data/third_party/re2/re2/re2.cc +87 -118
- data/third_party/re2/re2/re2.h +156 -141
- data/third_party/re2/re2/regexp.cc +12 -5
- data/third_party/re2/re2/regexp.h +8 -2
- data/third_party/re2/re2/set.cc +31 -9
- data/third_party/re2/re2/set.h +9 -4
- data/third_party/re2/re2/simplify.cc +11 -3
- data/third_party/re2/re2/tostring.cc +1 -1
- data/third_party/re2/re2/walker-inl.h +1 -1
- data/third_party/re2/util/mutex.h +2 -2
- data/third_party/re2/util/pcre.h +3 -3
- metadata +78 -66
- data/include/grpc/event_engine/slice_allocator.h +0 -71
- data/src/core/ext/filters/client_channel/service_config_call_data.h +0 -126
- data/src/core/ext/filters/workarounds/workaround_cronet_compression_filter.cc +0 -211
- data/src/core/ext/filters/workarounds/workaround_utils.cc +0 -53
- data/src/core/ext/filters/workarounds/workaround_utils.h +0 -39
- data/src/core/ext/transport/chttp2/client/authority.cc +0 -42
- data/src/core/ext/transport/chttp2/client/authority.h +0 -36
- data/src/core/ext/transport/chttp2/transport/chttp2_slice_allocator.cc +0 -67
- data/src/core/ext/transport/chttp2/transport/chttp2_slice_allocator.h +0 -74
- data/src/core/ext/transport/chttp2/transport/incoming_metadata.cc +0 -66
- data/src/core/ext/transport/chttp2/transport/incoming_metadata.h +0 -58
- data/src/core/ext/upb-generated/udpa/data/orca/v1/orca_load_report.upb.c +0 -58
- data/src/core/ext/upb-generated/udpa/data/orca/v1/orca_load_report.upb.h +0 -130
- data/src/core/ext/upb-generated/udpa/type/v1/typed_struct.upb.h +0 -83
- data/src/core/ext/upbdefs-generated/udpa/type/v1/typed_struct.upbdefs.c +0 -44
- data/src/core/ext/upbdefs-generated/udpa/type/v1/typed_struct.upbdefs.h +0 -35
- data/src/core/lib/iomgr/udp_server.cc +0 -747
- data/src/core/lib/iomgr/udp_server.h +0 -103
- data/src/core/lib/transport/authority_override.cc +0 -40
- data/src/core/lib/transport/authority_override.h +0 -37
@@ -1,211 +0,0 @@
|
|
1
|
-
//
|
2
|
-
// Copyright 2017 gRPC authors.
|
3
|
-
//
|
4
|
-
// Licensed under the Apache License, Version 2.0 (the "License");
|
5
|
-
// you may not use this file except in compliance with the License.
|
6
|
-
// You may obtain a copy of the License at
|
7
|
-
//
|
8
|
-
// http://www.apache.org/licenses/LICENSE-2.0
|
9
|
-
//
|
10
|
-
// Unless required by applicable law or agreed to in writing, software
|
11
|
-
// distributed under the License is distributed on an "AS IS" BASIS,
|
12
|
-
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
13
|
-
// See the License for the specific language governing permissions and
|
14
|
-
// limitations under the License.
|
15
|
-
//
|
16
|
-
|
17
|
-
#include <grpc/support/port_platform.h>
|
18
|
-
|
19
|
-
#include "src/core/ext/filters/workarounds/workaround_cronet_compression_filter.h"
|
20
|
-
|
21
|
-
#include <string.h>
|
22
|
-
|
23
|
-
#include <grpc/support/alloc.h>
|
24
|
-
|
25
|
-
#include "src/core/ext/filters/workarounds/workaround_utils.h"
|
26
|
-
#include "src/core/lib/channel/channel_stack_builder.h"
|
27
|
-
#include "src/core/lib/surface/channel_init.h"
|
28
|
-
#include "src/core/lib/transport/metadata.h"
|
29
|
-
|
30
|
-
namespace {
|
31
|
-
struct call_data {
|
32
|
-
// Receive closures are chained: we inject this closure as the
|
33
|
-
// recv_initial_metadata_ready up-call on transport_stream_op, and remember to
|
34
|
-
// call our next_recv_initial_metadata_ready member after handling it.
|
35
|
-
grpc_closure recv_initial_metadata_ready;
|
36
|
-
// Used by recv_initial_metadata_ready.
|
37
|
-
grpc_metadata_batch* recv_initial_metadata;
|
38
|
-
// Original recv_initial_metadata_ready callback, invoked after our own.
|
39
|
-
grpc_closure* next_recv_initial_metadata_ready;
|
40
|
-
|
41
|
-
// Marks whether the workaround is active
|
42
|
-
bool workaround_active;
|
43
|
-
};
|
44
|
-
} // namespace
|
45
|
-
|
46
|
-
// Find the user agent metadata element in the batch
|
47
|
-
static bool get_user_agent_mdelem(const grpc_metadata_batch* batch,
|
48
|
-
grpc_mdelem* md) {
|
49
|
-
if (batch->idx.named.user_agent != nullptr) {
|
50
|
-
*md = batch->idx.named.user_agent->md;
|
51
|
-
return true;
|
52
|
-
}
|
53
|
-
return false;
|
54
|
-
}
|
55
|
-
|
56
|
-
// Callback invoked when we receive an initial metadata.
|
57
|
-
static void recv_initial_metadata_ready(void* user_data,
|
58
|
-
grpc_error_handle error) {
|
59
|
-
grpc_call_element* elem = static_cast<grpc_call_element*>(user_data);
|
60
|
-
call_data* calld = static_cast<call_data*>(elem->call_data);
|
61
|
-
|
62
|
-
if (GRPC_ERROR_NONE == error) {
|
63
|
-
grpc_mdelem md;
|
64
|
-
if (get_user_agent_mdelem(calld->recv_initial_metadata, &md)) {
|
65
|
-
grpc_workaround_user_agent_md* user_agent_md = grpc_parse_user_agent(md);
|
66
|
-
if (user_agent_md
|
67
|
-
->workaround_active[GRPC_WORKAROUND_ID_CRONET_COMPRESSION]) {
|
68
|
-
calld->workaround_active = true;
|
69
|
-
}
|
70
|
-
}
|
71
|
-
}
|
72
|
-
|
73
|
-
// Invoke the next callback.
|
74
|
-
grpc_core::Closure::Run(DEBUG_LOCATION,
|
75
|
-
calld->next_recv_initial_metadata_ready,
|
76
|
-
GRPC_ERROR_REF(error));
|
77
|
-
}
|
78
|
-
|
79
|
-
// Start transport stream op.
|
80
|
-
static void cronet_compression_start_transport_stream_op_batch(
|
81
|
-
grpc_call_element* elem, grpc_transport_stream_op_batch* op) {
|
82
|
-
call_data* calld = static_cast<call_data*>(elem->call_data);
|
83
|
-
|
84
|
-
// Inject callback for receiving initial metadata
|
85
|
-
if (op->recv_initial_metadata) {
|
86
|
-
calld->next_recv_initial_metadata_ready =
|
87
|
-
op->payload->recv_initial_metadata.recv_initial_metadata_ready;
|
88
|
-
op->payload->recv_initial_metadata.recv_initial_metadata_ready =
|
89
|
-
&calld->recv_initial_metadata_ready;
|
90
|
-
calld->recv_initial_metadata =
|
91
|
-
op->payload->recv_initial_metadata.recv_initial_metadata;
|
92
|
-
}
|
93
|
-
|
94
|
-
if (op->send_message) {
|
95
|
-
/* Send message happens after client's user-agent (initial metadata) is
|
96
|
-
* received, so workaround_active must be set already */
|
97
|
-
if (calld->workaround_active) {
|
98
|
-
op->payload->send_message.send_message->set_flags(
|
99
|
-
op->payload->send_message.send_message->flags() |
|
100
|
-
GRPC_WRITE_NO_COMPRESS);
|
101
|
-
}
|
102
|
-
}
|
103
|
-
|
104
|
-
// Chain to the next filter.
|
105
|
-
grpc_call_next_op(elem, op);
|
106
|
-
}
|
107
|
-
|
108
|
-
// Constructor for call_data.
|
109
|
-
static grpc_error_handle cronet_compression_init_call_elem(
|
110
|
-
grpc_call_element* elem, const grpc_call_element_args* /*args*/) {
|
111
|
-
call_data* calld = static_cast<call_data*>(elem->call_data);
|
112
|
-
calld->next_recv_initial_metadata_ready = nullptr;
|
113
|
-
calld->workaround_active = false;
|
114
|
-
GRPC_CLOSURE_INIT(&calld->recv_initial_metadata_ready,
|
115
|
-
recv_initial_metadata_ready, elem,
|
116
|
-
grpc_schedule_on_exec_ctx);
|
117
|
-
return GRPC_ERROR_NONE;
|
118
|
-
}
|
119
|
-
|
120
|
-
// Destructor for call_data.
|
121
|
-
static void cronet_compression_destroy_call_elem(
|
122
|
-
grpc_call_element* /*elem*/, const grpc_call_final_info* /*final_info*/,
|
123
|
-
grpc_closure* /*ignored*/) {}
|
124
|
-
|
125
|
-
// Constructor for channel_data.
|
126
|
-
static grpc_error_handle cronet_compression_init_channel_elem(
|
127
|
-
grpc_channel_element* /*elem*/, grpc_channel_element_args* /*args*/) {
|
128
|
-
return GRPC_ERROR_NONE;
|
129
|
-
}
|
130
|
-
|
131
|
-
// Destructor for channel_data.
|
132
|
-
static void cronet_compression_destroy_channel_elem(
|
133
|
-
grpc_channel_element* /*elem*/) {}
|
134
|
-
|
135
|
-
// Parse the user agent
|
136
|
-
static bool parse_user_agent(grpc_mdelem md) {
|
137
|
-
const char grpc_objc_specifier[] = "grpc-objc/";
|
138
|
-
const size_t grpc_objc_specifier_len = sizeof(grpc_objc_specifier) - 1;
|
139
|
-
const char cronet_specifier[] = "cronet_http";
|
140
|
-
const size_t cronet_specifier_len = sizeof(cronet_specifier) - 1;
|
141
|
-
|
142
|
-
char* user_agent_str = grpc_slice_to_c_string(GRPC_MDVALUE(md));
|
143
|
-
bool grpc_objc_specifier_seen = false;
|
144
|
-
bool cronet_specifier_seen = false;
|
145
|
-
char *major_version_str = user_agent_str, *minor_version_str;
|
146
|
-
long major_version = 0, minor_version = 0;
|
147
|
-
|
148
|
-
char* head = strtok(user_agent_str, " ");
|
149
|
-
while (head != nullptr) {
|
150
|
-
if (!grpc_objc_specifier_seen &&
|
151
|
-
0 == strncmp(head, grpc_objc_specifier, grpc_objc_specifier_len)) {
|
152
|
-
major_version_str = head + grpc_objc_specifier_len;
|
153
|
-
grpc_objc_specifier_seen = true;
|
154
|
-
} else if (grpc_objc_specifier_seen &&
|
155
|
-
0 == strncmp(head, cronet_specifier, cronet_specifier_len)) {
|
156
|
-
cronet_specifier_seen = true;
|
157
|
-
break;
|
158
|
-
}
|
159
|
-
|
160
|
-
head = strtok(nullptr, " ");
|
161
|
-
}
|
162
|
-
if (grpc_objc_specifier_seen) {
|
163
|
-
major_version_str = strtok(major_version_str, ".");
|
164
|
-
minor_version_str = strtok(nullptr, ".");
|
165
|
-
major_version = atol(major_version_str);
|
166
|
-
minor_version = atol(minor_version_str);
|
167
|
-
}
|
168
|
-
|
169
|
-
gpr_free(user_agent_str);
|
170
|
-
return (grpc_objc_specifier_seen && cronet_specifier_seen &&
|
171
|
-
(major_version < 1 || (major_version == 1 && minor_version <= 3)));
|
172
|
-
}
|
173
|
-
|
174
|
-
const grpc_channel_filter grpc_workaround_cronet_compression_filter = {
|
175
|
-
cronet_compression_start_transport_stream_op_batch,
|
176
|
-
grpc_channel_next_op,
|
177
|
-
sizeof(call_data),
|
178
|
-
cronet_compression_init_call_elem,
|
179
|
-
grpc_call_stack_ignore_set_pollset_or_pollset_set,
|
180
|
-
cronet_compression_destroy_call_elem,
|
181
|
-
0,
|
182
|
-
cronet_compression_init_channel_elem,
|
183
|
-
cronet_compression_destroy_channel_elem,
|
184
|
-
grpc_channel_next_get_info,
|
185
|
-
"workaround_cronet_compression"};
|
186
|
-
|
187
|
-
static bool register_workaround_cronet_compression(
|
188
|
-
grpc_channel_stack_builder* builder, void* /*arg*/) {
|
189
|
-
const grpc_channel_args* channel_args =
|
190
|
-
grpc_channel_stack_builder_get_channel_arguments(builder);
|
191
|
-
const grpc_arg* a = grpc_channel_args_find(
|
192
|
-
channel_args, GRPC_ARG_WORKAROUND_CRONET_COMPRESSION);
|
193
|
-
if (a == nullptr) {
|
194
|
-
return true;
|
195
|
-
}
|
196
|
-
if (!grpc_channel_arg_get_bool(a, false)) {
|
197
|
-
return true;
|
198
|
-
}
|
199
|
-
return grpc_channel_stack_builder_prepend_filter(
|
200
|
-
builder, &grpc_workaround_cronet_compression_filter, nullptr, nullptr);
|
201
|
-
}
|
202
|
-
|
203
|
-
void grpc_workaround_cronet_compression_filter_init(void) {
|
204
|
-
grpc_channel_init_register_stage(
|
205
|
-
GRPC_SERVER_CHANNEL, GRPC_WORKAROUND_PRIORITY_HIGH,
|
206
|
-
register_workaround_cronet_compression, nullptr);
|
207
|
-
grpc_register_workaround(GRPC_WORKAROUND_ID_CRONET_COMPRESSION,
|
208
|
-
parse_user_agent);
|
209
|
-
}
|
210
|
-
|
211
|
-
void grpc_workaround_cronet_compression_filter_shutdown(void) {}
|
@@ -1,53 +0,0 @@
|
|
1
|
-
//
|
2
|
-
// Copyright 2017 gRPC authors.
|
3
|
-
//
|
4
|
-
// Licensed under the Apache License, Version 2.0 (the "License");
|
5
|
-
// you may not use this file except in compliance with the License.
|
6
|
-
// You may obtain a copy of the License at
|
7
|
-
//
|
8
|
-
// http://www.apache.org/licenses/LICENSE-2.0
|
9
|
-
//
|
10
|
-
// Unless required by applicable law or agreed to in writing, software
|
11
|
-
// distributed under the License is distributed on an "AS IS" BASIS,
|
12
|
-
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
13
|
-
// See the License for the specific language governing permissions and
|
14
|
-
// limitations under the License.
|
15
|
-
//
|
16
|
-
|
17
|
-
#include <grpc/support/port_platform.h>
|
18
|
-
|
19
|
-
#include "src/core/ext/filters/workarounds/workaround_utils.h"
|
20
|
-
|
21
|
-
#include <grpc/support/alloc.h>
|
22
|
-
#include <grpc/support/log.h>
|
23
|
-
|
24
|
-
user_agent_parser ua_parser[GRPC_MAX_WORKAROUND_ID];
|
25
|
-
|
26
|
-
static void destroy_user_agent_md(void* user_agent_md) {
|
27
|
-
gpr_free(user_agent_md);
|
28
|
-
}
|
29
|
-
|
30
|
-
grpc_workaround_user_agent_md* grpc_parse_user_agent(grpc_mdelem md) {
|
31
|
-
grpc_workaround_user_agent_md* user_agent_md =
|
32
|
-
static_cast<grpc_workaround_user_agent_md*>(
|
33
|
-
grpc_mdelem_get_user_data(md, destroy_user_agent_md));
|
34
|
-
|
35
|
-
if (nullptr != user_agent_md) {
|
36
|
-
return user_agent_md;
|
37
|
-
}
|
38
|
-
user_agent_md = static_cast<grpc_workaround_user_agent_md*>(
|
39
|
-
gpr_malloc(sizeof(grpc_workaround_user_agent_md)));
|
40
|
-
for (int i = 0; i < GRPC_MAX_WORKAROUND_ID; i++) {
|
41
|
-
if (ua_parser[i]) {
|
42
|
-
user_agent_md->workaround_active[i] = ua_parser[i](md);
|
43
|
-
}
|
44
|
-
}
|
45
|
-
grpc_mdelem_set_user_data(md, destroy_user_agent_md, user_agent_md);
|
46
|
-
|
47
|
-
return user_agent_md;
|
48
|
-
}
|
49
|
-
|
50
|
-
void grpc_register_workaround(uint32_t id, user_agent_parser parser) {
|
51
|
-
GPR_ASSERT(id < GRPC_MAX_WORKAROUND_ID);
|
52
|
-
ua_parser[id] = parser;
|
53
|
-
}
|
@@ -1,39 +0,0 @@
|
|
1
|
-
//
|
2
|
-
// Copyright 2017 gRPC authors.
|
3
|
-
//
|
4
|
-
// Licensed under the Apache License, Version 2.0 (the "License");
|
5
|
-
// you may not use this file except in compliance with the License.
|
6
|
-
// You may obtain a copy of the License at
|
7
|
-
//
|
8
|
-
// http://www.apache.org/licenses/LICENSE-2.0
|
9
|
-
//
|
10
|
-
// Unless required by applicable law or agreed to in writing, software
|
11
|
-
// distributed under the License is distributed on an "AS IS" BASIS,
|
12
|
-
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
13
|
-
// See the License for the specific language governing permissions and
|
14
|
-
// limitations under the License.
|
15
|
-
//
|
16
|
-
|
17
|
-
#ifndef GRPC_CORE_EXT_FILTERS_WORKAROUNDS_WORKAROUND_UTILS_H
|
18
|
-
#define GRPC_CORE_EXT_FILTERS_WORKAROUNDS_WORKAROUND_UTILS_H
|
19
|
-
|
20
|
-
#include <grpc/support/port_platform.h>
|
21
|
-
|
22
|
-
#include <grpc/support/workaround_list.h>
|
23
|
-
|
24
|
-
#include "src/core/lib/transport/metadata.h"
|
25
|
-
|
26
|
-
#define GRPC_WORKAROUND_PRIORITY_HIGH 10001
|
27
|
-
#define GRPC_WORKAROUND_PROIRITY_LOW 9999
|
28
|
-
|
29
|
-
typedef struct grpc_workaround_user_agent_md {
|
30
|
-
bool workaround_active[GRPC_MAX_WORKAROUND_ID];
|
31
|
-
} grpc_workaround_user_agent_md;
|
32
|
-
|
33
|
-
grpc_workaround_user_agent_md* grpc_parse_user_agent(grpc_mdelem md);
|
34
|
-
|
35
|
-
typedef bool (*user_agent_parser)(grpc_mdelem);
|
36
|
-
|
37
|
-
void grpc_register_workaround(uint32_t id, user_agent_parser parser);
|
38
|
-
|
39
|
-
#endif /* GRPC_CORE_EXT_FILTERS_WORKAROUNDS_WORKAROUND_UTILS_H */
|
@@ -1,42 +0,0 @@
|
|
1
|
-
/*
|
2
|
-
*
|
3
|
-
* Copyright 2018 gRPC authors.
|
4
|
-
*
|
5
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
-
* you may not use this file except in compliance with the License.
|
7
|
-
* You may obtain a copy of the License at
|
8
|
-
*
|
9
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
10
|
-
*
|
11
|
-
* Unless required by applicable law or agreed to in writing, software
|
12
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
-
* See the License for the specific language governing permissions and
|
15
|
-
* limitations under the License.
|
16
|
-
*
|
17
|
-
*/
|
18
|
-
|
19
|
-
#include <grpc/support/port_platform.h>
|
20
|
-
|
21
|
-
#include "src/core/ext/transport/chttp2/client/authority.h"
|
22
|
-
|
23
|
-
grpc_channel_args* grpc_default_authority_add_if_not_present(
|
24
|
-
const grpc_channel_args* args) {
|
25
|
-
const bool has_default_authority =
|
26
|
-
grpc_channel_args_find(args, GRPC_ARG_DEFAULT_AUTHORITY) != nullptr;
|
27
|
-
grpc_arg new_args[1];
|
28
|
-
size_t num_new_args = 0;
|
29
|
-
std::string default_authority;
|
30
|
-
if (!has_default_authority) {
|
31
|
-
const grpc_arg* server_uri_arg =
|
32
|
-
grpc_channel_args_find(args, GRPC_ARG_SERVER_URI);
|
33
|
-
const char* server_uri_str = grpc_channel_arg_get_string(server_uri_arg);
|
34
|
-
GPR_ASSERT(server_uri_str != nullptr);
|
35
|
-
default_authority =
|
36
|
-
grpc_core::ResolverRegistry::GetDefaultAuthority(server_uri_str);
|
37
|
-
new_args[num_new_args++] = grpc_channel_arg_string_create(
|
38
|
-
const_cast<char*>(GRPC_ARG_DEFAULT_AUTHORITY),
|
39
|
-
const_cast<char*>(default_authority.c_str()));
|
40
|
-
}
|
41
|
-
return grpc_channel_args_copy_and_add(args, new_args, num_new_args);
|
42
|
-
}
|
@@ -1,36 +0,0 @@
|
|
1
|
-
/*
|
2
|
-
*
|
3
|
-
* Copyright 2018 gRPC authors.
|
4
|
-
*
|
5
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
-
* you may not use this file except in compliance with the License.
|
7
|
-
* You may obtain a copy of the License at
|
8
|
-
*
|
9
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
10
|
-
*
|
11
|
-
* Unless required by applicable law or agreed to in writing, software
|
12
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
-
* See the License for the specific language governing permissions and
|
15
|
-
* limitations under the License.
|
16
|
-
*
|
17
|
-
*/
|
18
|
-
|
19
|
-
#ifndef GRPC_CORE_EXT_TRANSPORT_CHTTP2_CLIENT_AUTHORITY_H
|
20
|
-
#define GRPC_CORE_EXT_TRANSPORT_CHTTP2_CLIENT_AUTHORITY_H
|
21
|
-
|
22
|
-
#include <grpc/support/port_platform.h>
|
23
|
-
|
24
|
-
#include <grpc/grpc.h>
|
25
|
-
|
26
|
-
#include "src/core/ext/filters/client_channel/client_channel.h"
|
27
|
-
#include "src/core/ext/filters/client_channel/resolver_registry.h"
|
28
|
-
#include "src/core/lib/channel/channel_args.h"
|
29
|
-
#include "src/core/lib/gprpp/memory.h"
|
30
|
-
|
31
|
-
/// Returns a copy of \a args with the default authority channel arg set if it
|
32
|
-
/// wasn't already present.
|
33
|
-
grpc_channel_args* grpc_default_authority_add_if_not_present(
|
34
|
-
const grpc_channel_args* args);
|
35
|
-
|
36
|
-
#endif /* GRPC_CORE_EXT_TRANSPORT_CHTTP2_CLIENT_AUTHORITY_H */
|
@@ -1,67 +0,0 @@
|
|
1
|
-
// Copyright 2021 The gRPC Authors
|
2
|
-
//
|
3
|
-
// Licensed under the Apache License, Version 2.0 (the "License");
|
4
|
-
// you may not use this file except in compliance with the License.
|
5
|
-
// You may obtain a copy of the License at
|
6
|
-
//
|
7
|
-
// http://www.apache.org/licenses/LICENSE-2.0
|
8
|
-
//
|
9
|
-
// Unless required by applicable law or agreed to in writing, software
|
10
|
-
// distributed under the License is distributed on an "AS IS" BASIS,
|
11
|
-
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
12
|
-
// See the License for the specific language governing permissions and
|
13
|
-
// limitations under the License.
|
14
|
-
#include <grpc/support/port_platform.h>
|
15
|
-
|
16
|
-
#include "src/core/ext/transport/chttp2/transport/chttp2_slice_allocator.h"
|
17
|
-
|
18
|
-
#include <functional>
|
19
|
-
|
20
|
-
#include "absl/memory/memory.h"
|
21
|
-
#include "absl/status/status.h"
|
22
|
-
|
23
|
-
#include <grpc/event_engine/slice_allocator.h>
|
24
|
-
|
25
|
-
#include "src/core/lib/iomgr/resource_quota.h"
|
26
|
-
|
27
|
-
namespace grpc_event_engine {
|
28
|
-
namespace experimental {
|
29
|
-
|
30
|
-
Chttp2SliceAllocator::Chttp2SliceAllocator(grpc_resource_user* user)
|
31
|
-
: resource_user_(user) {}
|
32
|
-
|
33
|
-
Chttp2SliceAllocator::~Chttp2SliceAllocator() {
|
34
|
-
if (resource_user_ != nullptr) {
|
35
|
-
grpc_resource_user_unref(resource_user_);
|
36
|
-
}
|
37
|
-
}
|
38
|
-
|
39
|
-
absl::Status Chttp2SliceAllocator::Allocate(
|
40
|
-
size_t size, SliceBuffer* dest, SliceAllocator::AllocateCallback cb) {
|
41
|
-
// TODO(hork): merge the implementation from the uv-ee branch.
|
42
|
-
(void)size;
|
43
|
-
(void)dest;
|
44
|
-
(void)cb;
|
45
|
-
return absl::OkStatus();
|
46
|
-
}
|
47
|
-
|
48
|
-
Chttp2SliceAllocatorFactory::Chttp2SliceAllocatorFactory(
|
49
|
-
grpc_resource_quota* quota)
|
50
|
-
: resource_quota_(quota) {
|
51
|
-
grpc_resource_quota_ref_internal(resource_quota_);
|
52
|
-
}
|
53
|
-
|
54
|
-
Chttp2SliceAllocatorFactory::~Chttp2SliceAllocatorFactory() {
|
55
|
-
if (resource_quota_ != nullptr) {
|
56
|
-
grpc_resource_quota_unref_internal(resource_quota_);
|
57
|
-
}
|
58
|
-
}
|
59
|
-
|
60
|
-
std::unique_ptr<SliceAllocator>
|
61
|
-
Chttp2SliceAllocatorFactory::CreateSliceAllocator(absl::string_view peer_name) {
|
62
|
-
return absl::make_unique<Chttp2SliceAllocator>(
|
63
|
-
grpc_resource_user_create(resource_quota_, peer_name));
|
64
|
-
}
|
65
|
-
|
66
|
-
} // namespace experimental
|
67
|
-
} // namespace grpc_event_engine
|
@@ -1,74 +0,0 @@
|
|
1
|
-
// Copyright 2021 The gRPC Authors
|
2
|
-
//
|
3
|
-
// Licensed under the Apache License, Version 2.0 (the "License");
|
4
|
-
// you may not use this file except in compliance with the License.
|
5
|
-
// You may obtain a copy of the License at
|
6
|
-
//
|
7
|
-
// http://www.apache.org/licenses/LICENSE-2.0
|
8
|
-
//
|
9
|
-
// Unless required by applicable law or agreed to in writing, software
|
10
|
-
// distributed under the License is distributed on an "AS IS" BASIS,
|
11
|
-
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
12
|
-
// See the License for the specific language governing permissions and
|
13
|
-
// limitations under the License.
|
14
|
-
#ifndef GRPC_CORE_EXT_TRANSPORT_CHTTP2_TRANSPORT_CHTTP2_SLICE_ALLOCATOR_H
|
15
|
-
#define GRPC_CORE_EXT_TRANSPORT_CHTTP2_TRANSPORT_CHTTP2_SLICE_ALLOCATOR_H
|
16
|
-
|
17
|
-
#include <grpc/support/port_platform.h>
|
18
|
-
|
19
|
-
#include <functional>
|
20
|
-
|
21
|
-
#include "absl/status/status.h"
|
22
|
-
|
23
|
-
#include <grpc/event_engine/slice_allocator.h>
|
24
|
-
|
25
|
-
#include "src/core/lib/iomgr/resource_quota.h"
|
26
|
-
|
27
|
-
namespace grpc_event_engine {
|
28
|
-
namespace experimental {
|
29
|
-
|
30
|
-
class Chttp2SliceAllocator
|
31
|
-
: public grpc_event_engine::experimental::SliceAllocator {
|
32
|
-
public:
|
33
|
-
/// gRPC-internal constructor. Takes ownership of a resource_user ref from the
|
34
|
-
/// caller.
|
35
|
-
explicit Chttp2SliceAllocator(grpc_resource_user* user);
|
36
|
-
// Not copyable
|
37
|
-
Chttp2SliceAllocator(Chttp2SliceAllocator& other) = delete;
|
38
|
-
Chttp2SliceAllocator& operator=(const Chttp2SliceAllocator& other) = delete;
|
39
|
-
// Not Moveable
|
40
|
-
Chttp2SliceAllocator(Chttp2SliceAllocator&& other) = delete;
|
41
|
-
Chttp2SliceAllocator& operator=(Chttp2SliceAllocator&& other) = delete;
|
42
|
-
~Chttp2SliceAllocator() override;
|
43
|
-
absl::Status Allocate(size_t size, SliceBuffer* dest,
|
44
|
-
SliceAllocator::AllocateCallback cb) override;
|
45
|
-
|
46
|
-
private:
|
47
|
-
grpc_resource_user* resource_user_;
|
48
|
-
};
|
49
|
-
|
50
|
-
class Chttp2SliceAllocatorFactory
|
51
|
-
: public grpc_event_engine::experimental::SliceAllocatorFactory {
|
52
|
-
public:
|
53
|
-
// gRPC-internal constructor
|
54
|
-
explicit Chttp2SliceAllocatorFactory(grpc_resource_quota* quota);
|
55
|
-
// Not copyable
|
56
|
-
Chttp2SliceAllocatorFactory(Chttp2SliceAllocatorFactory& other) = delete;
|
57
|
-
Chttp2SliceAllocatorFactory& operator=(
|
58
|
-
const Chttp2SliceAllocatorFactory& other) = delete;
|
59
|
-
// Not Moveable
|
60
|
-
Chttp2SliceAllocatorFactory(Chttp2SliceAllocatorFactory&& other) = delete;
|
61
|
-
Chttp2SliceAllocatorFactory& operator=(Chttp2SliceAllocatorFactory&& other) =
|
62
|
-
delete;
|
63
|
-
~Chttp2SliceAllocatorFactory() override;
|
64
|
-
std::unique_ptr<SliceAllocator> CreateSliceAllocator(
|
65
|
-
absl::string_view peer_name) override;
|
66
|
-
|
67
|
-
private:
|
68
|
-
grpc_resource_quota* resource_quota_;
|
69
|
-
};
|
70
|
-
|
71
|
-
} // namespace experimental
|
72
|
-
} // namespace grpc_event_engine
|
73
|
-
|
74
|
-
#endif // GRPC_CORE_EXT_TRANSPORT_CHTTP2_TRANSPORT_CHTTP2_SLICE_ALLOCATOR_H
|
@@ -1,66 +0,0 @@
|
|
1
|
-
/*
|
2
|
-
*
|
3
|
-
* Copyright 2015 gRPC authors.
|
4
|
-
*
|
5
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
-
* you may not use this file except in compliance with the License.
|
7
|
-
* You may obtain a copy of the License at
|
8
|
-
*
|
9
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
10
|
-
*
|
11
|
-
* Unless required by applicable law or agreed to in writing, software
|
12
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
-
* See the License for the specific language governing permissions and
|
15
|
-
* limitations under the License.
|
16
|
-
*
|
17
|
-
*/
|
18
|
-
|
19
|
-
#include <grpc/support/port_platform.h>
|
20
|
-
|
21
|
-
#include "src/core/ext/transport/chttp2/transport/incoming_metadata.h"
|
22
|
-
|
23
|
-
#include <string.h>
|
24
|
-
|
25
|
-
#include <grpc/support/alloc.h>
|
26
|
-
#include <grpc/support/log.h>
|
27
|
-
|
28
|
-
#include "src/core/ext/transport/chttp2/transport/internal.h"
|
29
|
-
|
30
|
-
grpc_error_handle grpc_chttp2_incoming_metadata_buffer_add(
|
31
|
-
grpc_chttp2_incoming_metadata_buffer* buffer, grpc_mdelem elem) {
|
32
|
-
buffer->size += GRPC_MDELEM_LENGTH(elem);
|
33
|
-
grpc_linked_mdelem* storage;
|
34
|
-
if (buffer->count < buffer->kPreallocatedMDElem) {
|
35
|
-
storage = &buffer->preallocated_mdelems[buffer->count];
|
36
|
-
buffer->count++;
|
37
|
-
} else {
|
38
|
-
storage = static_cast<grpc_linked_mdelem*>(
|
39
|
-
buffer->arena->Alloc(sizeof(grpc_linked_mdelem)));
|
40
|
-
}
|
41
|
-
storage->md = elem;
|
42
|
-
return grpc_metadata_batch_link_tail(&buffer->batch, storage);
|
43
|
-
}
|
44
|
-
|
45
|
-
grpc_error_handle grpc_chttp2_incoming_metadata_buffer_replace_or_add(
|
46
|
-
grpc_chttp2_incoming_metadata_buffer* buffer, grpc_mdelem elem) {
|
47
|
-
for (grpc_linked_mdelem* l = buffer->batch.list.head; l != nullptr;
|
48
|
-
l = l->next) {
|
49
|
-
if (grpc_slice_eq(GRPC_MDKEY(l->md), GRPC_MDKEY(elem))) {
|
50
|
-
GRPC_MDELEM_UNREF(l->md);
|
51
|
-
l->md = elem;
|
52
|
-
return GRPC_ERROR_NONE;
|
53
|
-
}
|
54
|
-
}
|
55
|
-
return grpc_chttp2_incoming_metadata_buffer_add(buffer, elem);
|
56
|
-
}
|
57
|
-
|
58
|
-
void grpc_chttp2_incoming_metadata_buffer_set_deadline(
|
59
|
-
grpc_chttp2_incoming_metadata_buffer* buffer, grpc_millis deadline) {
|
60
|
-
buffer->batch.deadline = deadline;
|
61
|
-
}
|
62
|
-
|
63
|
-
void grpc_chttp2_incoming_metadata_buffer_publish(
|
64
|
-
grpc_chttp2_incoming_metadata_buffer* buffer, grpc_metadata_batch* batch) {
|
65
|
-
grpc_metadata_batch_move(&buffer->batch, batch);
|
66
|
-
}
|
@@ -1,58 +0,0 @@
|
|
1
|
-
/*
|
2
|
-
*
|
3
|
-
* Copyright 2015 gRPC authors.
|
4
|
-
*
|
5
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
-
* you may not use this file except in compliance with the License.
|
7
|
-
* You may obtain a copy of the License at
|
8
|
-
*
|
9
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
10
|
-
*
|
11
|
-
* Unless required by applicable law or agreed to in writing, software
|
12
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
-
* See the License for the specific language governing permissions and
|
15
|
-
* limitations under the License.
|
16
|
-
*
|
17
|
-
*/
|
18
|
-
|
19
|
-
#ifndef GRPC_CORE_EXT_TRANSPORT_CHTTP2_TRANSPORT_INCOMING_METADATA_H
|
20
|
-
#define GRPC_CORE_EXT_TRANSPORT_CHTTP2_TRANSPORT_INCOMING_METADATA_H
|
21
|
-
|
22
|
-
#include <grpc/support/port_platform.h>
|
23
|
-
|
24
|
-
#include "src/core/lib/transport/transport.h"
|
25
|
-
|
26
|
-
struct grpc_chttp2_incoming_metadata_buffer {
|
27
|
-
explicit grpc_chttp2_incoming_metadata_buffer(grpc_core::Arena* arena)
|
28
|
-
: arena(arena) {
|
29
|
-
grpc_metadata_batch_init(&batch);
|
30
|
-
batch.deadline = GRPC_MILLIS_INF_FUTURE;
|
31
|
-
}
|
32
|
-
~grpc_chttp2_incoming_metadata_buffer() {
|
33
|
-
grpc_metadata_batch_destroy(&batch);
|
34
|
-
}
|
35
|
-
|
36
|
-
static constexpr size_t kPreallocatedMDElem = 10;
|
37
|
-
|
38
|
-
grpc_core::Arena* arena;
|
39
|
-
size_t size = 0; // total size of metadata.
|
40
|
-
size_t count = 0; // minimum of count of metadata and kPreallocatedMDElem.
|
41
|
-
// These preallocated mdelems are used while count < kPreallocatedMDElem.
|
42
|
-
grpc_linked_mdelem preallocated_mdelems[kPreallocatedMDElem];
|
43
|
-
grpc_metadata_batch batch;
|
44
|
-
};
|
45
|
-
|
46
|
-
void grpc_chttp2_incoming_metadata_buffer_publish(
|
47
|
-
grpc_chttp2_incoming_metadata_buffer* buffer, grpc_metadata_batch* batch);
|
48
|
-
|
49
|
-
grpc_error_handle grpc_chttp2_incoming_metadata_buffer_add(
|
50
|
-
grpc_chttp2_incoming_metadata_buffer* buffer,
|
51
|
-
grpc_mdelem elem) GRPC_MUST_USE_RESULT;
|
52
|
-
grpc_error_handle grpc_chttp2_incoming_metadata_buffer_replace_or_add(
|
53
|
-
grpc_chttp2_incoming_metadata_buffer* buffer,
|
54
|
-
grpc_mdelem elem) GRPC_MUST_USE_RESULT;
|
55
|
-
void grpc_chttp2_incoming_metadata_buffer_set_deadline(
|
56
|
-
grpc_chttp2_incoming_metadata_buffer* buffer, grpc_millis deadline);
|
57
|
-
|
58
|
-
#endif /* GRPC_CORE_EXT_TRANSPORT_CHTTP2_TRANSPORT_INCOMING_METADATA_H */
|