grpc 1.45.0 → 1.47.0
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 +69 -110
- data/include/grpc/event_engine/event_engine.h +42 -7
- data/include/grpc/event_engine/memory_allocator.h +0 -15
- data/include/grpc/event_engine/port.h +1 -1
- data/include/grpc/event_engine/slice.h +286 -0
- data/include/grpc/event_engine/slice_buffer.h +112 -0
- data/include/grpc/grpc_security.h +11 -0
- data/include/grpc/impl/codegen/grpc_types.h +7 -13
- data/include/grpc/impl/codegen/port_platform.h +100 -36
- data/include/grpc/impl/codegen/slice.h +1 -1
- data/src/core/ext/filters/channel_idle/channel_idle_filter.cc +297 -0
- data/src/core/ext/filters/channel_idle/channel_idle_filter.h +125 -0
- data/src/core/ext/filters/{client_idle → channel_idle}/idle_filter_state.cc +1 -1
- data/src/core/ext/filters/{client_idle → channel_idle}/idle_filter_state.h +3 -3
- data/src/core/ext/filters/client_channel/backend_metric.cc +17 -12
- data/src/core/ext/filters/client_channel/backend_metric.h +19 -9
- data/src/core/ext/filters/client_channel/backup_poller.cc +5 -5
- data/src/core/ext/filters/client_channel/backup_poller.h +2 -4
- data/src/core/ext/filters/client_channel/channel_connectivity.cc +42 -20
- data/src/core/ext/filters/client_channel/client_channel.cc +223 -113
- data/src/core/ext/filters/client_channel/client_channel.h +28 -6
- data/src/core/ext/filters/client_channel/client_channel_channelz.cc +3 -5
- data/src/core/ext/filters/client_channel/client_channel_channelz.h +12 -2
- data/src/core/ext/filters/client_channel/client_channel_factory.cc +5 -0
- data/src/core/ext/filters/client_channel/client_channel_factory.h +8 -0
- data/src/core/ext/filters/client_channel/client_channel_plugin.cc +4 -13
- data/src/core/ext/filters/client_channel/config_selector.cc +1 -0
- data/src/core/ext/filters/client_channel/config_selector.h +7 -5
- data/src/core/ext/filters/client_channel/connector.h +8 -2
- data/src/core/ext/filters/client_channel/dynamic_filters.cc +13 -2
- data/src/core/ext/filters/client_channel/dynamic_filters.h +11 -1
- data/src/core/ext/filters/client_channel/global_subchannel_pool.cc +2 -0
- data/src/core/ext/filters/client_channel/global_subchannel_pool.h +3 -0
- data/src/core/ext/filters/client_channel/health/health_check_client.cc +138 -582
- data/src/core/ext/filters/client_channel/health/health_check_client.h +26 -160
- data/src/core/ext/filters/client_channel/http_proxy.cc +98 -112
- data/src/core/ext/filters/client_channel/http_proxy.h +20 -0
- data/src/core/ext/filters/client_channel/lb_policy/address_filtering.cc +6 -2
- data/src/core/ext/filters/client_channel/lb_policy/address_filtering.h +1 -0
- data/src/core/ext/filters/client_channel/lb_policy/backend_metric_data.h +49 -0
- data/src/core/ext/filters/client_channel/lb_policy/child_policy_handler.cc +12 -0
- data/src/core/ext/filters/client_channel/lb_policy/child_policy_handler.h +5 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.cc +9 -3
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc +59 -19
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.cc +4 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.h +6 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.cc +10 -1
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h +6 -3
- data/src/core/ext/filters/client_channel/lb_policy/oob_backend_metric.cc +408 -0
- data/src/core/ext/filters/client_channel/lb_policy/oob_backend_metric.h +57 -0
- data/src/core/ext/filters/client_channel/lb_policy/outlier_detection/outlier_detection.cc +1038 -0
- data/src/core/ext/filters/client_channel/lb_policy/outlier_detection/outlier_detection.h +54 -0
- data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc +60 -52
- data/src/core/ext/filters/client_channel/lb_policy/priority/priority.cc +277 -195
- data/src/core/ext/filters/client_channel/lb_policy/ring_hash/ring_hash.cc +158 -101
- data/src/core/ext/filters/client_channel/lb_policy/ring_hash/ring_hash.h +2 -0
- data/src/core/ext/filters/client_channel/lb_policy/rls/rls.cc +46 -20
- data/src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc +182 -171
- data/src/core/ext/filters/client_channel/lb_policy/subchannel_list.h +39 -36
- data/src/core/ext/filters/client_channel/lb_policy/weighted_target/weighted_target.cc +117 -63
- data/src/core/ext/filters/client_channel/lb_policy/xds/cds.cc +142 -63
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds.h +6 -0
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_impl.cc +30 -4
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_manager.cc +37 -10
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_resolver.cc +300 -291
- data/src/core/ext/filters/client_channel/lb_policy.cc +4 -2
- data/src/core/ext/filters/client_channel/lb_policy.h +18 -24
- data/src/core/ext/filters/client_channel/lb_policy_factory.h +2 -0
- data/src/core/ext/filters/client_channel/lb_policy_registry.cc +8 -1
- data/src/core/ext/filters/client_channel/lb_policy_registry.h +6 -1
- data/src/core/ext/filters/client_channel/local_subchannel_pool.cc +4 -0
- data/src/core/ext/filters/client_channel/local_subchannel_pool.h +1 -0
- data/src/core/ext/filters/client_channel/proxy_mapper.h +1 -1
- data/src/core/ext/filters/client_channel/proxy_mapper_registry.cc +2 -0
- data/src/core/ext/filters/client_channel/proxy_mapper_registry.h +5 -0
- data/src/core/ext/filters/client_channel/resolver/binder/binder_resolver.cc +23 -5
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc +226 -300
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.h +8 -1
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc +10 -8
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc +1 -1
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc +26 -9
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h +13 -4
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_windows.cc +2 -1
- data/src/core/ext/filters/client_channel/resolver/dns/dns_resolver_selection.cc +2 -0
- data/src/core/ext/filters/client_channel/resolver/dns/dns_resolver_selection.h +2 -1
- data/src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc +73 -220
- data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.cc +13 -14
- data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.h +5 -2
- data/src/core/ext/filters/client_channel/resolver/google_c2p/google_c2p_resolver.cc +59 -13
- data/src/core/ext/filters/client_channel/resolver/polling_resolver.cc +213 -0
- data/src/core/ext/filters/client_channel/resolver/polling_resolver.h +113 -0
- data/src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc +15 -11
- data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.cc +182 -79
- data/src/core/ext/filters/client_channel/resolver_result_parsing.cc +5 -11
- data/src/core/ext/filters/client_channel/resolver_result_parsing.h +11 -5
- data/src/core/ext/filters/client_channel/retry_filter.cc +60 -5
- data/src/core/ext/filters/client_channel/retry_service_config.cc +8 -9
- data/src/core/ext/filters/client_channel/retry_service_config.h +10 -1
- data/src/core/ext/filters/client_channel/retry_throttle.cc +1 -8
- data/src/core/ext/filters/client_channel/retry_throttle.h +7 -1
- data/src/core/ext/filters/client_channel/service_config_channel_arg_filter.cc +22 -5
- data/src/core/ext/filters/client_channel/subchannel.cc +161 -165
- data/src/core/ext/filters/client_channel/subchannel.h +80 -20
- data/src/core/ext/filters/client_channel/subchannel_interface.h +41 -23
- data/src/core/ext/filters/client_channel/subchannel_interface_internal.h +38 -0
- data/src/core/ext/filters/client_channel/subchannel_pool_interface.cc +12 -2
- data/src/core/ext/filters/client_channel/subchannel_pool_interface.h +6 -3
- data/src/core/ext/filters/client_channel/subchannel_stream_client.cc +558 -0
- data/src/core/ext/filters/client_channel/subchannel_stream_client.h +226 -0
- data/src/core/ext/filters/deadline/deadline_filter.cc +6 -2
- data/src/core/ext/filters/fault_injection/fault_injection_filter.cc +123 -366
- data/src/core/ext/filters/fault_injection/fault_injection_filter.h +24 -1
- data/src/core/ext/filters/http/client/http_client_filter.cc +87 -458
- data/src/core/ext/filters/http/client/http_client_filter.h +27 -4
- data/src/core/ext/filters/http/client_authority_filter.cc +21 -31
- data/src/core/ext/filters/http/client_authority_filter.h +6 -5
- data/src/core/ext/filters/http/http_filters_plugin.cc +16 -14
- data/src/core/ext/filters/http/message_compress/message_compress_filter.cc +1 -0
- data/src/core/ext/filters/http/message_compress/message_decompress_filter.cc +3 -1
- data/src/core/ext/filters/http/server/http_server_filter.cc +80 -361
- data/src/core/ext/filters/http/server/http_server_filter.h +31 -2
- data/src/core/ext/filters/message_size/message_size_filter.cc +20 -26
- data/src/core/ext/filters/message_size/message_size_filter.h +2 -2
- data/src/core/ext/filters/rbac/rbac_filter.cc +1 -0
- data/src/core/ext/filters/server_config_selector/server_config_selector.cc +2 -8
- data/src/core/ext/filters/server_config_selector/server_config_selector.h +2 -2
- data/src/core/ext/filters/server_config_selector/server_config_selector_filter.cc +73 -201
- data/src/core/ext/transport/chttp2/client/chttp2_connector.cc +102 -135
- data/src/core/ext/transport/chttp2/client/chttp2_connector.h +9 -7
- data/src/core/ext/transport/chttp2/server/chttp2_server.cc +49 -19
- data/src/core/ext/transport/chttp2/server/chttp2_server.h +2 -0
- data/src/core/ext/transport/chttp2/transport/bin_decoder.cc +3 -3
- data/src/core/ext/transport/chttp2/transport/bin_decoder.h +2 -1
- data/src/core/ext/transport/chttp2/transport/bin_encoder.cc +1 -0
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +205 -45
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.h +5 -0
- data/src/core/ext/transport/chttp2/transport/context_list.cc +4 -0
- data/src/core/ext/transport/chttp2/transport/context_list.h +4 -1
- data/src/core/ext/transport/chttp2/transport/flow_control.cc +6 -2
- data/src/core/ext/transport/chttp2/transport/flow_control.h +6 -2
- data/src/core/ext/transport/chttp2/transport/frame.h +0 -4
- data/src/core/ext/transport/chttp2/transport/frame_data.cc +7 -1
- data/src/core/ext/transport/chttp2/transport/frame_data.h +4 -1
- data/src/core/ext/transport/chttp2/transport/frame_goaway.cc +3 -0
- data/src/core/ext/transport/chttp2/transport/frame_goaway.h +3 -1
- data/src/core/ext/transport/chttp2/transport/frame_ping.cc +5 -0
- data/src/core/ext/transport/chttp2/transport/frame_ping.h +3 -0
- data/src/core/ext/transport/chttp2/transport/frame_rst_stream.cc +6 -2
- data/src/core/ext/transport/chttp2/transport/frame_rst_stream.h +3 -0
- data/src/core/ext/transport/chttp2/transport/frame_settings.cc +14 -3
- data/src/core/ext/transport/chttp2/transport/frame_settings.h +4 -0
- data/src/core/ext/transport/chttp2/transport/frame_window_update.cc +4 -1
- data/src/core/ext/transport/chttp2/transport/frame_window_update.h +3 -0
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.cc +13 -15
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.h +15 -2
- data/src/core/ext/transport/chttp2/transport/hpack_encoder_table.cc +3 -0
- data/src/core/ext/transport/chttp2/transport/hpack_encoder_table.h +3 -0
- data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +25 -7
- data/src/core/ext/transport/chttp2/transport/hpack_parser.h +8 -1
- data/src/core/ext/transport/chttp2/transport/hpack_parser_table.cc +55 -37
- data/src/core/ext/transport/chttp2/transport/hpack_parser_table.h +38 -21
- data/src/core/ext/transport/chttp2/transport/http2_settings.h +0 -1
- data/src/core/ext/transport/chttp2/transport/internal.h +28 -5
- data/src/core/ext/transport/chttp2/transport/parsing.cc +35 -6
- data/src/core/ext/transport/chttp2/transport/stream_lists.cc +13 -9
- data/src/core/ext/transport/chttp2/transport/stream_map.cc +1 -1
- data/src/core/ext/transport/chttp2/transport/stream_map.h +1 -0
- data/src/core/ext/transport/chttp2/transport/varint.h +2 -0
- data/src/core/ext/transport/chttp2/transport/writing.cc +62 -15
- data/src/core/ext/transport/inproc/inproc_transport.cc +8 -5
- data/src/core/ext/upb-generated/envoy/admin/v3/certs.upb.c +27 -24
- data/src/core/ext/upb-generated/envoy/admin/v3/certs.upb.h +143 -63
- data/src/core/ext/upb-generated/envoy/admin/v3/clusters.upb.c +37 -35
- data/src/core/ext/upb-generated/envoy/admin/v3/clusters.upb.h +177 -77
- data/src/core/ext/upb-generated/envoy/admin/v3/config_dump.upb.c +115 -111
- data/src/core/ext/upb-generated/envoy/admin/v3/config_dump.upb.h +547 -207
- data/src/core/ext/upb-generated/envoy/admin/v3/init_dump.upb.c +5 -5
- data/src/core/ext/upb-generated/envoy/admin/v3/init_dump.upb.h +26 -13
- data/src/core/ext/upb-generated/envoy/admin/v3/listeners.upb.c +5 -5
- data/src/core/ext/upb-generated/envoy/admin/v3/listeners.upb.h +23 -9
- data/src/core/ext/upb-generated/envoy/admin/v3/memory.upb.c +7 -7
- data/src/core/ext/upb-generated/envoy/admin/v3/memory.upb.h +18 -0
- data/src/core/ext/upb-generated/envoy/admin/v3/metrics.upb.c +4 -4
- data/src/core/ext/upb-generated/envoy/admin/v3/metrics.upb.h +13 -4
- data/src/core/ext/upb-generated/envoy/admin/v3/mutex_stats.upb.c +4 -4
- data/src/core/ext/upb-generated/envoy/admin/v3/mutex_stats.upb.h +9 -0
- data/src/core/ext/upb-generated/envoy/admin/v3/server_info.upb.c +49 -46
- data/src/core/ext/upb-generated/envoy/admin/v3/server_info.upb.h +217 -78
- data/src/core/ext/upb-generated/envoy/admin/v3/tap.upb.c +3 -3
- data/src/core/ext/upb-generated/envoy/admin/v3/tap.upb.h +10 -2
- data/src/core/ext/upb-generated/envoy/annotations/deprecation.upb.c +12 -12
- data/src/core/ext/upb-generated/envoy/annotations/deprecation.upb.h +40 -8
- data/src/core/ext/upb-generated/envoy/annotations/resource.upb.c +5 -5
- data/src/core/ext/upb-generated/envoy/annotations/resource.upb.h +20 -2
- data/src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.c +55 -55
- data/src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.h +289 -110
- data/src/core/ext/upb-generated/envoy/config/bootstrap/v3/bootstrap.upb.c +133 -125
- data/src/core/ext/upb-generated/envoy/config/bootstrap/v3/bootstrap.upb.h +656 -267
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/circuit_breaker.upb.c +24 -18
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/circuit_breaker.upb.h +96 -23
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.c +185 -173
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.h +860 -309
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/filter.upb.c +3 -3
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/filter.upb.h +10 -2
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/outlier_detection.upb.c +44 -24
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/outlier_detection.upb.h +165 -40
- data/src/core/ext/upb-generated/envoy/config/common/matcher/v3/matcher.upb.c +72 -63
- data/src/core/ext/upb-generated/envoy/config/common/matcher/v3/matcher.upb.h +433 -174
- data/src/core/ext/upb-generated/envoy/config/core/v3/address.upb.c +33 -31
- data/src/core/ext/upb-generated/envoy/config/core/v3/address.upb.h +154 -52
- data/src/core/ext/upb-generated/envoy/config/core/v3/backoff.upb.c +5 -4
- data/src/core/ext/upb-generated/envoy/config/core/v3/backoff.upb.h +14 -4
- data/src/core/ext/upb-generated/envoy/config/core/v3/base.upb.c +89 -89
- data/src/core/ext/upb-generated/envoy/config/core/v3/base.upb.h +460 -166
- data/src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.c +76 -33
- data/src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.h +379 -69
- data/src/core/ext/upb-generated/envoy/config/core/v3/event_service_config.upb.c +2 -2
- data/src/core/ext/upb-generated/envoy/config/core/v3/event_service_config.upb.h +14 -6
- data/src/core/ext/upb-generated/envoy/config/core/v3/extension.upb.c +5 -25
- data/src/core/ext/upb-generated/envoy/config/core/v3/extension.upb.h +10 -91
- data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_method_list.upb.c +5 -5
- data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_method_list.upb.h +26 -13
- data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.c +70 -68
- data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.h +369 -131
- data/src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.c +94 -65
- data/src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.h +447 -161
- data/src/core/ext/upb-generated/envoy/config/core/v3/http_uri.upb.c +4 -4
- data/src/core/ext/upb-generated/envoy/config/core/v3/http_uri.upb.h +27 -11
- data/src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.c +104 -85
- data/src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.h +378 -113
- data/src/core/ext/upb-generated/envoy/config/core/v3/proxy_protocol.upb.c +2 -2
- data/src/core/ext/upb-generated/envoy/config/core/v3/proxy_protocol.upb.h +3 -0
- data/src/core/ext/upb-generated/envoy/config/core/v3/resolver.upb.c +6 -6
- data/src/core/ext/upb-generated/envoy/config/core/v3/resolver.upb.h +30 -13
- data/src/core/ext/upb-generated/envoy/config/core/v3/socket_option.upb.c +7 -7
- data/src/core/ext/upb-generated/envoy/config/core/v3/socket_option.upb.h +43 -16
- data/src/core/ext/upb-generated/envoy/config/core/v3/substitution_format_string.upb.c +8 -8
- data/src/core/ext/upb-generated/envoy/config/core/v3/substitution_format_string.upb.h +58 -24
- data/src/core/ext/upb-generated/envoy/config/core/v3/udp_socket_config.upb.c +4 -4
- data/src/core/ext/upb-generated/envoy/config/core/v3/udp_socket_config.upb.h +14 -4
- data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint.upb.c +18 -18
- data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint.upb.h +100 -43
- data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint_components.upb.c +31 -30
- data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint_components.upb.h +171 -71
- data/src/core/ext/upb-generated/envoy/config/endpoint/v3/load_report.upb.c +32 -32
- data/src/core/ext/upb-generated/envoy/config/endpoint/v3/load_report.upb.h +196 -95
- data/src/core/ext/upb-generated/envoy/config/listener/v3/api_listener.upb.c +2 -2
- data/src/core/ext/upb-generated/envoy/config/listener/v3/api_listener.upb.h +7 -2
- data/src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.c +53 -46
- data/src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.h +284 -129
- data/src/core/ext/upb-generated/envoy/config/listener/v3/listener_components.upb.c +56 -50
- data/src/core/ext/upb-generated/envoy/config/listener/v3/listener_components.upb.h +337 -146
- data/src/core/ext/upb-generated/envoy/config/listener/v3/quic_config.upb.c +13 -11
- data/src/core/ext/upb-generated/envoy/config/listener/v3/quic_config.upb.h +49 -14
- data/src/core/ext/upb-generated/envoy/config/listener/v3/udp_listener_config.upb.c +4 -4
- data/src/core/ext/upb-generated/envoy/config/listener/v3/udp_listener_config.upb.h +14 -4
- data/src/core/ext/upb-generated/envoy/config/metrics/v3/metrics_service.upb.c +5 -5
- data/src/core/ext/upb-generated/envoy/config/metrics/v3/metrics_service.upb.h +20 -4
- data/src/core/ext/upb-generated/envoy/config/metrics/v3/stats.upb.c +33 -32
- data/src/core/ext/upb-generated/envoy/config/metrics/v3/stats.upb.h +205 -86
- data/src/core/ext/upb-generated/envoy/config/overload/v3/overload.upb.c +34 -34
- data/src/core/ext/upb-generated/envoy/config/overload/v3/overload.upb.h +175 -74
- data/src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.c +56 -52
- data/src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.h +370 -146
- data/src/core/ext/upb-generated/envoy/config/route/v3/route.upb.c +27 -23
- data/src/core/ext/upb-generated/envoy/config/route/v3/route.upb.h +173 -74
- data/src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.c +362 -341
- data/src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.h +2056 -845
- data/src/core/ext/upb-generated/envoy/config/route/v3/scoped_route.upb.c +11 -11
- data/src/core/ext/upb-generated/envoy/config/route/v3/scoped_route.upb.h +49 -16
- data/src/core/ext/upb-generated/envoy/config/tap/v3/common.upb.c +56 -50
- data/src/core/ext/upb-generated/envoy/config/tap/v3/common.upb.h +293 -111
- data/src/core/ext/upb-generated/envoy/config/trace/v3/datadog.upb.c +3 -3
- data/src/core/ext/upb-generated/envoy/config/trace/v3/datadog.upb.h +6 -0
- data/src/core/ext/upb-generated/envoy/config/trace/v3/dynamic_ot.upb.c +3 -3
- data/src/core/ext/upb-generated/envoy/config/trace/v3/dynamic_ot.upb.h +10 -2
- data/src/core/ext/upb-generated/envoy/config/trace/v3/http_tracer.upb.c +5 -5
- data/src/core/ext/upb-generated/envoy/config/trace/v3/http_tracer.upb.h +26 -10
- data/src/core/ext/upb-generated/envoy/config/trace/v3/lightstep.upb.c +5 -5
- data/src/core/ext/upb-generated/envoy/config/trace/v3/lightstep.upb.h +27 -12
- data/src/core/ext/upb-generated/envoy/config/trace/v3/opencensus.upb.c +17 -16
- data/src/core/ext/upb-generated/envoy/config/trace/v3/opencensus.upb.h +83 -36
- data/src/core/ext/upb-generated/envoy/config/trace/v3/service.upb.c +2 -2
- data/src/core/ext/upb-generated/envoy/config/trace/v3/service.upb.h +7 -2
- data/src/core/ext/upb-generated/envoy/config/trace/v3/skywalking.upb.c +8 -8
- data/src/core/ext/upb-generated/envoy/config/trace/v3/skywalking.upb.h +46 -17
- data/src/core/ext/upb-generated/envoy/config/trace/v3/xray.upb.c +9 -9
- data/src/core/ext/upb-generated/envoy/config/trace/v3/xray.upb.h +38 -12
- data/src/core/ext/upb-generated/envoy/config/trace/v3/zipkin.upb.c +7 -7
- data/src/core/ext/upb-generated/envoy/config/trace/v3/zipkin.upb.h +30 -10
- data/src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3/cluster.upb.c +2 -2
- data/src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3/cluster.upb.h +10 -6
- data/src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3/fault.upb.c +15 -15
- data/src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3/fault.upb.h +71 -28
- data/src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3/fault.upb.c +25 -25
- data/src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3/fault.upb.h +149 -65
- data/src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3/rbac.upb.c +8 -7
- data/src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3/rbac.upb.h +30 -12
- data/src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3/router.upb.c +9 -9
- data/src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3/router.upb.h +42 -15
- data/src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.c +173 -144
- data/src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h +898 -323
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/common.upb.c +51 -45
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/common.upb.h +261 -116
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/secret.upb.c +13 -13
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/secret.upb.h +70 -25
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls.upb.c +80 -55
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls.upb.h +410 -124
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb.c +5 -5
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb.h +23 -9
- data/src/core/ext/upb-generated/envoy/service/discovery/v3/ads.upb.c +1 -1
- data/src/core/ext/upb-generated/envoy/service/discovery/v3/discovery.upb.c +44 -44
- data/src/core/ext/upb-generated/envoy/service/discovery/v3/discovery.upb.h +261 -122
- data/src/core/ext/upb-generated/envoy/service/load_stats/v3/lrs.upb.c +8 -8
- data/src/core/ext/upb-generated/envoy/service/load_stats/v3/lrs.upb.h +47 -21
- data/src/core/ext/upb-generated/envoy/service/status/v3/csds.upb.c +32 -32
- data/src/core/ext/upb-generated/envoy/service/status/v3/csds.upb.h +175 -66
- data/src/core/ext/upb-generated/envoy/type/http/v3/cookie.upb.c +4 -4
- data/src/core/ext/upb-generated/envoy/type/http/v3/cookie.upb.h +17 -6
- data/src/core/ext/upb-generated/envoy/type/http/v3/path_transformation.upb.c +8 -8
- data/src/core/ext/upb-generated/envoy/type/http/v3/path_transformation.upb.h +38 -17
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/http_inputs.upb.c +8 -8
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/http_inputs.upb.h +12 -0
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/metadata.upb.c +7 -7
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/metadata.upb.h +43 -18
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/node.upb.c +3 -3
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/node.upb.h +20 -9
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/number.upb.c +3 -3
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/number.upb.h +24 -9
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/path.upb.c +2 -2
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/path.upb.h +14 -6
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/regex.upb.c +8 -8
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/regex.upb.h +40 -16
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/string.upb.c +9 -9
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/string.upb.h +70 -25
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/struct.upb.c +5 -5
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/struct.upb.h +37 -18
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/value.upb.c +12 -12
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/value.upb.h +81 -30
- data/src/core/ext/upb-generated/envoy/type/metadata/v3/metadata.upb.c +16 -16
- data/src/core/ext/upb-generated/envoy/type/metadata/v3/metadata.upb.h +76 -30
- data/src/core/ext/upb-generated/envoy/type/tracing/v3/custom_tag.upb.c +20 -20
- data/src/core/ext/upb-generated/envoy/type/tracing/v3/custom_tag.upb.h +90 -30
- data/src/core/ext/upb-generated/envoy/type/v3/hash_policy.upb.c +7 -7
- data/src/core/ext/upb-generated/envoy/type/v3/hash_policy.upb.h +28 -10
- data/src/core/ext/upb-generated/envoy/type/v3/http_status.upb.c +2 -2
- data/src/core/ext/upb-generated/envoy/type/v3/http_status.upb.h +3 -0
- data/src/core/ext/upb-generated/envoy/type/v3/percent.upb.c +5 -5
- data/src/core/ext/upb-generated/envoy/type/v3/percent.upb.h +13 -4
- data/src/core/ext/upb-generated/envoy/type/v3/range.upb.c +9 -9
- data/src/core/ext/upb-generated/envoy/type/v3/range.upb.h +18 -0
- data/src/core/ext/upb-generated/envoy/type/v3/semantic_version.upb.c +4 -4
- data/src/core/ext/upb-generated/envoy/type/v3/semantic_version.upb.h +9 -0
- data/src/core/ext/upb-generated/envoy/type/v3/token_bucket.upb.c +5 -5
- data/src/core/ext/upb-generated/envoy/type/v3/token_bucket.upb.h +17 -4
- data/src/core/ext/upb-generated/google/api/annotations.upb.c +3 -3
- data/src/core/ext/upb-generated/google/api/annotations.upb.h +17 -2
- data/src/core/ext/upb-generated/google/api/expr/v1alpha1/checked.upb.c +70 -66
- data/src/core/ext/upb-generated/google/api/expr/v1alpha1/checked.upb.h +410 -162
- data/src/core/ext/upb-generated/google/api/expr/v1alpha1/syntax.upb.c +80 -74
- data/src/core/ext/upb-generated/google/api/expr/v1alpha1/syntax.upb.h +440 -158
- data/src/core/ext/upb-generated/google/api/http.upb.c +17 -17
- data/src/core/ext/upb-generated/google/api/http.upb.h +116 -43
- data/src/core/ext/upb-generated/google/api/httpbody.upb.c +4 -4
- data/src/core/ext/upb-generated/google/api/httpbody.upb.h +19 -7
- data/src/core/ext/upb-generated/google/protobuf/any.upb.c +3 -3
- data/src/core/ext/upb-generated/google/protobuf/any.upb.h +6 -0
- data/src/core/ext/upb-generated/google/protobuf/descriptor.upb.c +163 -162
- data/src/core/ext/upb-generated/google/protobuf/descriptor.upb.h +1157 -435
- data/src/core/ext/upb-generated/google/protobuf/duration.upb.c +3 -3
- data/src/core/ext/upb-generated/google/protobuf/duration.upb.h +10 -4
- data/src/core/ext/upb-generated/google/protobuf/empty.upb.c +1 -1
- data/src/core/ext/upb-generated/google/protobuf/struct.upb.c +15 -15
- data/src/core/ext/upb-generated/google/protobuf/struct.upb.h +108 -40
- data/src/core/ext/upb-generated/google/protobuf/timestamp.upb.c +3 -3
- data/src/core/ext/upb-generated/google/protobuf/timestamp.upb.h +10 -4
- data/src/core/ext/upb-generated/google/protobuf/wrappers.upb.c +18 -18
- data/src/core/ext/upb-generated/google/protobuf/wrappers.upb.h +27 -0
- data/src/core/ext/upb-generated/google/rpc/status.upb.c +4 -4
- data/src/core/ext/upb-generated/google/rpc/status.upb.h +19 -7
- data/src/core/ext/upb-generated/opencensus/proto/trace/v1/trace_config.upb.c +15 -15
- data/src/core/ext/upb-generated/opencensus/proto/trace/v1/trace_config.upb.h +65 -22
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.c +12 -12
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.h +49 -12
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.c +69 -65
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.h +364 -149
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.c +8 -7
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.h +20 -4
- data/src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.c +4 -4
- data/src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.h +6 -0
- data/src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.c +31 -31
- data/src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.h +150 -58
- data/src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls.upb.c +11 -11
- data/src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls.upb.h +51 -18
- data/src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls_config.upb.c +175 -0
- data/src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls_config.upb.h +764 -0
- data/src/core/ext/upb-generated/udpa/annotations/migrate.upb.c +22 -22
- data/src/core/ext/upb-generated/udpa/annotations/migrate.upb.h +97 -10
- data/src/core/ext/upb-generated/udpa/annotations/security.upb.c +6 -6
- data/src/core/ext/upb-generated/udpa/annotations/security.upb.h +23 -2
- data/src/core/ext/upb-generated/udpa/annotations/sensitive.upb.c +3 -3
- data/src/core/ext/upb-generated/udpa/annotations/sensitive.upb.h +10 -2
- data/src/core/ext/upb-generated/udpa/annotations/status.upb.c +6 -6
- data/src/core/ext/upb-generated/udpa/annotations/status.upb.h +27 -6
- data/src/core/ext/upb-generated/udpa/annotations/versioning.upb.c +5 -5
- data/src/core/ext/upb-generated/udpa/annotations/versioning.upb.h +20 -2
- data/src/core/ext/upb-generated/validate/validate.upb.c +261 -250
- data/src/core/ext/upb-generated/validate/validate.upb.h +1836 -663
- data/src/core/ext/upb-generated/xds/annotations/v3/migrate.upb.c +22 -22
- data/src/core/ext/upb-generated/xds/annotations/v3/migrate.upb.h +97 -10
- data/src/core/ext/upb-generated/xds/annotations/v3/security.upb.c +6 -6
- data/src/core/ext/upb-generated/xds/annotations/v3/security.upb.h +23 -2
- data/src/core/ext/upb-generated/xds/annotations/v3/sensitive.upb.c +3 -3
- data/src/core/ext/upb-generated/xds/annotations/v3/sensitive.upb.h +10 -2
- data/src/core/ext/upb-generated/xds/annotations/v3/status.upb.c +18 -18
- data/src/core/ext/upb-generated/xds/annotations/v3/status.upb.h +70 -10
- data/src/core/ext/upb-generated/xds/annotations/v3/versioning.upb.c +5 -5
- data/src/core/ext/upb-generated/xds/annotations/v3/versioning.upb.h +20 -2
- data/src/core/ext/upb-generated/xds/core/v3/authority.upb.c +2 -2
- data/src/core/ext/upb-generated/xds/core/v3/authority.upb.h +3 -0
- data/src/core/ext/upb-generated/xds/core/v3/collection_entry.upb.c +8 -8
- data/src/core/ext/upb-generated/xds/core/v3/collection_entry.upb.h +38 -12
- data/src/core/ext/upb-generated/xds/core/v3/context_params.upb.c +5 -5
- data/src/core/ext/upb-generated/xds/core/v3/context_params.upb.h +27 -10
- data/src/core/ext/upb-generated/xds/core/v3/extension.upb.c +3 -3
- data/src/core/ext/upb-generated/xds/core/v3/extension.upb.h +10 -2
- data/src/core/ext/upb-generated/xds/core/v3/resource.upb.c +5 -5
- data/src/core/ext/upb-generated/xds/core/v3/resource.upb.h +21 -8
- data/src/core/ext/upb-generated/xds/core/v3/resource_locator.upb.c +10 -10
- data/src/core/ext/upb-generated/xds/core/v3/resource_locator.upb.h +71 -30
- data/src/core/ext/upb-generated/xds/core/v3/resource_name.upb.c +5 -5
- data/src/core/ext/upb-generated/xds/core/v3/resource_name.upb.h +16 -2
- data/src/core/ext/upb-generated/xds/data/orca/v3/orca_load_report.upb.c +12 -12
- data/src/core/ext/upb-generated/xds/data/orca/v3/orca_load_report.upb.h +69 -26
- data/src/core/ext/upb-generated/xds/service/orca/v3/orca.upb.c +47 -0
- data/src/core/ext/upb-generated/xds/service/orca/v3/orca.upb.h +109 -0
- data/src/core/ext/upb-generated/xds/type/matcher/v3/matcher.upb.c +43 -39
- data/src/core/ext/upb-generated/xds/type/matcher/v3/matcher.upb.h +255 -103
- data/src/core/ext/upb-generated/xds/type/matcher/v3/regex.upb.c +4 -4
- data/src/core/ext/upb-generated/xds/type/matcher/v3/regex.upb.h +19 -8
- data/src/core/ext/upb-generated/xds/type/matcher/v3/string.upb.c +9 -9
- data/src/core/ext/upb-generated/xds/type/matcher/v3/string.upb.h +70 -25
- data/src/core/ext/upb-generated/xds/type/v3/typed_struct.upb.c +3 -3
- data/src/core/ext/upb-generated/xds/type/v3/typed_struct.upb.h +10 -2
- data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/circuit_breaker.upbdefs.c +50 -46
- data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/cluster.upbdefs.c +195 -185
- data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/outlier_detection.upbdefs.c +16 -12
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/config_source.upbdefs.c +129 -94
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/config_source.upbdefs.h +10 -0
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/extension.upbdefs.c +18 -33
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/extension.upbdefs.h +0 -5
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/health_check.upbdefs.c +163 -155
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/health_check.upbdefs.h +5 -0
- data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener_components.upbdefs.c +141 -138
- data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route.upbdefs.c +26 -20
- data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route_components.upbdefs.c +738 -730
- data/src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.c +271 -251
- data/src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.h +5 -0
- data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.c +207 -193
- data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.h +5 -0
- data/src/core/ext/upbdefs-generated/src/proto/grpc/lookup/v1/rls_config.upbdefs.c +99 -0
- data/src/core/ext/upbdefs-generated/src/proto/grpc/lookup/v1/rls_config.upbdefs.h +75 -0
- data/src/core/ext/xds/certificate_provider_store.cc +10 -0
- data/src/core/ext/xds/certificate_provider_store.h +9 -0
- data/src/core/ext/xds/xds_api.cc +20 -0
- data/src/core/ext/xds/xds_bootstrap.cc +2 -2
- data/src/core/ext/xds/xds_bootstrap.h +2 -0
- data/src/core/ext/xds/xds_certificate_provider.cc +5 -0
- data/src/core/ext/xds/xds_certificate_provider.h +8 -0
- data/src/core/ext/xds/xds_channel_stack_modifier.cc +5 -5
- data/src/core/ext/xds/xds_client.cc +125 -109
- data/src/core/ext/xds/xds_client.h +13 -5
- data/src/core/ext/xds/xds_cluster.cc +106 -16
- data/src/core/ext/xds/xds_cluster.h +3 -0
- data/src/core/ext/xds/xds_cluster_specifier_plugin.cc +142 -0
- data/src/core/ext/xds/xds_cluster_specifier_plugin.h +79 -0
- data/src/core/ext/xds/xds_common_types.cc +9 -9
- data/src/core/ext/xds/xds_common_types.h +3 -3
- data/src/core/ext/xds/xds_endpoint.cc +12 -5
- data/src/core/ext/xds/xds_http_fault_filter.cc +4 -4
- data/src/core/ext/xds/xds_listener.cc +20 -10
- data/src/core/ext/xds/xds_route_config.cc +162 -25
- data/src/core/ext/xds/xds_route_config.h +13 -10
- data/src/core/ext/xds/xds_server_config_fetcher.cc +19 -23
- data/src/core/lib/address_utils/sockaddr_utils.cc +56 -23
- data/src/core/lib/address_utils/sockaddr_utils.h +7 -4
- data/src/core/lib/avl/avl.h +71 -6
- data/src/core/lib/channel/call_finalization.h +4 -0
- data/src/core/lib/channel/call_tracer.h +12 -3
- data/src/core/lib/channel/channel_args.cc +179 -81
- data/src/core/lib/channel/channel_args.h +242 -11
- data/src/core/lib/channel/channel_args_preconditioning.cc +5 -11
- data/src/core/lib/channel/channel_args_preconditioning.h +4 -4
- data/src/core/lib/channel/channel_stack.cc +41 -3
- data/src/core/lib/channel/channel_stack.h +51 -8
- data/src/core/lib/channel/channel_stack_builder.cc +9 -84
- data/src/core/lib/channel/channel_stack_builder.h +35 -26
- data/src/core/lib/channel/channel_stack_builder_impl.cc +97 -0
- data/src/core/lib/channel/channel_stack_builder_impl.h +45 -0
- data/src/core/lib/channel/channel_trace.cc +8 -13
- data/src/core/lib/channel/channel_trace.h +6 -3
- data/src/core/lib/channel/channelz.cc +8 -13
- data/src/core/lib/channel/channelz.h +13 -4
- data/src/core/lib/channel/channelz_registry.cc +7 -14
- data/src/core/lib/channel/channelz_registry.h +10 -9
- data/src/core/lib/channel/connected_channel.cc +21 -31
- data/src/core/lib/channel/connected_channel.h +2 -0
- data/src/core/lib/channel/promise_based_filter.cc +848 -260
- data/src/core/lib/channel/promise_based_filter.h +215 -68
- data/src/core/lib/channel/status_util.cc +2 -0
- data/src/core/lib/channel/status_util.h +0 -3
- data/src/core/lib/compression/compression_internal.cc +46 -17
- data/src/core/lib/compression/compression_internal.h +1 -1
- data/src/core/lib/config/core_configuration.cc +3 -0
- data/src/core/lib/config/core_configuration.h +2 -1
- data/src/core/lib/debug/stats_data.cc +2 -6
- data/src/core/lib/debug/stats_data.h +18 -21
- data/src/core/lib/event_engine/channel_args_endpoint_config.cc +4 -2
- data/src/core/lib/event_engine/channel_args_endpoint_config.h +3 -2
- data/src/core/lib/event_engine/default_event_engine_factory.cc +8 -2
- data/src/core/lib/event_engine/event_engine.cc +12 -2
- data/src/core/lib/event_engine/event_engine_factory.h +5 -0
- data/src/core/lib/event_engine/handle_containers.h +67 -0
- data/src/core/lib/event_engine/iomgr_engine.cc +206 -0
- data/src/core/lib/event_engine/iomgr_engine.h +118 -0
- data/src/core/lib/event_engine/memory_allocator.cc +12 -4
- data/src/core/lib/event_engine/resolved_address.cc +4 -2
- data/src/core/lib/event_engine/slice.cc +102 -0
- data/src/core/lib/event_engine/slice_buffer.cc +50 -0
- data/src/core/{ext/filters/max_age/max_age_filter.h → lib/event_engine/trace.cc} +3 -11
- data/src/core/lib/{iomgr/endpoint_pair_event_engine.cc → event_engine/trace.h} +12 -14
- data/src/core/lib/gpr/log.cc +5 -0
- data/src/core/lib/gpr/tls.h +4 -5
- data/src/core/lib/gprpp/bitset.h +17 -1
- data/src/core/lib/gprpp/chunked_vector.h +4 -0
- data/src/core/lib/gprpp/construct_destruct.h +1 -0
- data/src/core/lib/gprpp/cpp_impl_of.h +4 -0
- data/src/core/lib/gprpp/dual_ref_counted.h +1 -4
- data/src/core/lib/gprpp/examine_stack.h +0 -1
- data/src/core/lib/gprpp/fork.cc +3 -6
- data/src/core/lib/gprpp/global_config.h +2 -4
- data/src/core/lib/gprpp/global_config_env.cc +3 -2
- data/src/core/lib/gprpp/global_config_env.h +3 -1
- data/src/core/lib/gprpp/global_config_generic.h +0 -4
- data/src/core/lib/gprpp/host_port.cc +2 -0
- data/src/core/lib/gprpp/manual_constructor.h +0 -1
- data/src/core/lib/gprpp/match.h +75 -0
- data/src/core/lib/gprpp/memory.h +1 -5
- data/src/core/lib/gprpp/orphanable.h +1 -4
- data/src/core/lib/gprpp/overload.h +59 -0
- data/src/core/lib/gprpp/ref_counted.h +3 -3
- data/src/core/lib/gprpp/ref_counted_ptr.h +1 -1
- data/src/core/lib/gprpp/single_set_ptr.h +87 -0
- data/src/core/lib/gprpp/stat.h +0 -2
- data/src/core/lib/gprpp/stat_posix.cc +7 -2
- data/src/core/lib/gprpp/status_helper.cc +25 -5
- data/src/core/lib/gprpp/status_helper.h +4 -0
- data/src/core/lib/gprpp/sync.h +3 -1
- data/src/core/lib/gprpp/table.h +10 -0
- data/src/core/lib/gprpp/thd.h +2 -5
- data/src/core/lib/gprpp/thd_posix.cc +4 -2
- data/src/core/lib/gprpp/thd_windows.cc +2 -0
- data/src/core/lib/gprpp/time.cc +20 -0
- data/src/core/lib/gprpp/time.h +7 -2
- data/src/core/lib/gprpp/time_util.cc +4 -0
- data/src/core/lib/gprpp/time_util.h +1 -1
- data/src/core/lib/gprpp/unique_type_name.h +104 -0
- data/src/core/lib/http/format_request.cc +30 -2
- data/src/core/lib/http/format_request.h +2 -0
- data/src/core/lib/http/httpcli.cc +88 -81
- data/src/core/lib/http/httpcli.h +39 -7
- data/src/core/lib/http/httpcli_security_connector.cc +6 -7
- data/src/core/lib/http/parser.cc +80 -9
- data/src/core/lib/http/parser.h +14 -1
- data/src/core/lib/iomgr/endpoint.cc +4 -4
- data/src/core/lib/iomgr/endpoint.h +6 -4
- data/src/core/lib/iomgr/endpoint_cfstream.cc +7 -4
- data/src/core/lib/iomgr/endpoint_pair_posix.cc +2 -1
- data/src/core/lib/iomgr/ev_posix.cc +7 -11
- data/src/core/lib/iomgr/exec_ctx.h +1 -2
- data/src/core/lib/iomgr/fork_posix.cc +1 -1
- data/src/core/lib/iomgr/internal_errqueue.cc +38 -47
- data/src/core/lib/iomgr/internal_errqueue.h +1 -6
- data/src/core/lib/iomgr/iomgr.cc +0 -1
- data/src/core/lib/iomgr/{event_engine/pollset.h → iomgr_fwd.h} +9 -9
- data/src/core/lib/iomgr/pollset_set.h +1 -2
- data/src/core/lib/iomgr/port.h +25 -8
- data/src/core/lib/iomgr/resolve_address.cc +8 -0
- data/src/core/lib/iomgr/resolve_address.h +21 -14
- data/src/core/lib/iomgr/resolve_address_impl.h +2 -3
- data/src/core/lib/iomgr/resolve_address_posix.cc +8 -14
- data/src/core/lib/iomgr/resolve_address_posix.h +5 -2
- data/src/core/lib/iomgr/resolve_address_windows.cc +7 -14
- data/src/core/lib/iomgr/resolve_address_windows.h +5 -2
- data/src/core/lib/iomgr/sockaddr.h +2 -3
- data/src/core/lib/iomgr/sockaddr_posix.h +2 -0
- data/src/core/lib/iomgr/sockaddr_windows.h +2 -0
- data/src/core/lib/iomgr/socket_utils_common_posix.cc +3 -2
- data/src/core/lib/iomgr/tcp_client_cfstream.cc +10 -2
- data/src/core/lib/iomgr/tcp_client_posix.cc +14 -7
- data/src/core/lib/iomgr/tcp_client_windows.cc +13 -6
- data/src/core/lib/iomgr/tcp_posix.cc +77 -37
- data/src/core/lib/iomgr/tcp_server_posix.cc +50 -27
- data/src/core/lib/iomgr/tcp_server_utils_posix_common.cc +30 -27
- data/src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc +7 -4
- data/src/core/lib/iomgr/tcp_server_windows.cc +13 -5
- data/src/core/lib/iomgr/tcp_windows.cc +7 -4
- data/src/core/lib/json/json.h +1 -2
- data/src/core/lib/json/json_reader.cc +9 -1
- data/src/core/lib/json/json_util.cc +7 -0
- data/src/core/lib/json/json_util.h +13 -4
- data/src/core/lib/json/json_writer.cc +6 -1
- data/src/core/lib/promise/activity.cc +1 -1
- data/src/core/lib/promise/activity.h +6 -6
- data/src/core/lib/promise/arena_promise.h +11 -1
- data/src/core/lib/promise/call_push_pull.h +148 -0
- data/src/core/lib/promise/context.h +1 -1
- data/src/core/lib/promise/detail/basic_seq.h +2 -2
- data/src/core/lib/promise/detail/promise_factory.h +0 -1
- data/src/core/lib/promise/detail/status.h +2 -1
- data/src/core/lib/promise/intra_activity_waiter.h +49 -0
- data/src/core/lib/promise/latch.h +103 -0
- data/src/core/lib/promise/loop.h +1 -0
- data/src/core/lib/promise/race.h +0 -1
- data/src/core/lib/promise/seq.h +0 -2
- data/src/core/lib/promise/sleep.cc +2 -0
- data/src/core/lib/promise/sleep.h +10 -0
- data/src/core/lib/promise/try_seq.h +2 -2
- data/src/core/lib/resolver/resolver_factory.h +1 -2
- data/src/core/lib/resolver/server_address.cc +9 -3
- data/src/core/lib/resolver/server_address.h +4 -4
- data/src/core/lib/resource_quota/api.cc +19 -31
- data/src/core/lib/resource_quota/api.h +5 -2
- data/src/core/lib/resource_quota/arena.cc +0 -6
- data/src/core/lib/resource_quota/arena.h +1 -2
- data/src/core/lib/resource_quota/memory_quota.cc +47 -5
- data/src/core/lib/resource_quota/memory_quota.h +24 -5
- data/src/core/lib/resource_quota/resource_quota.h +16 -0
- data/src/core/lib/resource_quota/thread_quota.cc +2 -0
- data/src/core/lib/resource_quota/thread_quota.h +4 -0
- data/src/core/lib/security/authorization/authorization_policy_provider.h +7 -0
- data/src/core/lib/security/authorization/grpc_server_authz_filter.cc +12 -12
- data/src/core/lib/security/authorization/grpc_server_authz_filter.h +5 -6
- data/src/core/lib/security/context/security_context.h +8 -1
- data/src/core/lib/security/credentials/alts/alts_credentials.cc +12 -5
- data/src/core/lib/security/credentials/alts/alts_credentials.h +4 -0
- data/src/core/lib/security/credentials/call_creds_util.cc +5 -3
- data/src/core/lib/security/credentials/call_creds_util.h +2 -2
- data/src/core/lib/security/credentials/channel_creds_registry.h +1 -0
- data/src/core/lib/security/credentials/composite/composite_credentials.cc +19 -10
- data/src/core/lib/security/credentials/composite/composite_credentials.h +11 -9
- data/src/core/lib/security/credentials/credentials.h +29 -39
- data/src/core/lib/security/credentials/external/aws_external_account_credentials.cc +81 -0
- data/src/core/lib/security/credentials/external/aws_external_account_credentials.h +8 -0
- data/src/core/lib/security/credentials/external/external_account_credentials.cc +3 -0
- data/src/core/lib/security/credentials/external/url_external_account_credentials.cc +2 -0
- data/src/core/lib/security/credentials/fake/fake_credentials.cc +18 -12
- data/src/core/lib/security/credentials/fake/fake_credentials.h +8 -5
- data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +27 -13
- data/src/core/lib/security/credentials/google_default/google_default_credentials.h +4 -4
- data/src/core/lib/security/credentials/iam/iam_credentials.cc +8 -4
- data/src/core/lib/security/credentials/iam/iam_credentials.h +6 -2
- data/src/core/lib/security/credentials/insecure/insecure_credentials.cc +28 -29
- data/src/core/lib/security/credentials/insecure/insecure_credentials.h +57 -0
- data/src/core/lib/security/credentials/jwt/jwt_credentials.cc +8 -3
- data/src/core/lib/security/credentials/jwt/jwt_credentials.h +6 -2
- data/src/core/lib/security/credentials/local/local_credentials.cc +12 -6
- data/src/core/lib/security/credentials/local/local_credentials.h +4 -0
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +22 -10
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.h +14 -6
- data/src/core/lib/security/credentials/plugin/plugin_credentials.cc +11 -6
- data/src/core/lib/security/credentials/plugin/plugin_credentials.h +8 -6
- data/src/core/lib/security/credentials/ssl/ssl_credentials.cc +12 -4
- data/src/core/lib/security/credentials/ssl/ssl_credentials.h +8 -0
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.cc +10 -0
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.h +47 -0
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.cc +34 -1
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.h +66 -3
- data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h +66 -95
- data/src/core/lib/security/credentials/tls/tls_credentials.cc +19 -6
- data/src/core/lib/security/credentials/tls/tls_credentials.h +5 -5
- data/src/core/lib/security/credentials/xds/xds_credentials.cc +57 -50
- data/src/core/lib/security/credentials/xds/xds_credentials.h +31 -5
- data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +1 -1
- data/src/core/lib/security/security_connector/fake/fake_security_connector.h +1 -1
- data/src/core/lib/security/security_connector/local/local_security_connector.cc +2 -2
- data/src/core/lib/security/security_connector/security_connector.cc +1 -1
- data/src/core/lib/security/security_connector/security_connector.h +10 -1
- data/src/core/lib/security/security_connector/ssl/ssl_security_connector.cc +5 -3
- data/src/core/lib/security/security_connector/tls/tls_security_connector.cc +4 -2
- data/src/core/lib/security/transport/auth_filters.h +7 -7
- data/src/core/lib/security/transport/client_auth_filter.cc +26 -20
- data/src/core/lib/security/transport/secure_endpoint.cc +213 -133
- data/src/core/lib/security/transport/secure_endpoint.h +1 -1
- data/src/core/lib/security/transport/security_handshaker.cc +11 -9
- data/src/core/lib/security/transport/security_handshaker.h +1 -1
- data/src/core/lib/security/transport/server_auth_filter.cc +3 -2
- data/src/core/lib/service_config/service_config.h +4 -8
- data/src/core/lib/service_config/service_config_call_data.h +4 -1
- data/src/core/lib/service_config/service_config_impl.cc +7 -0
- data/src/core/lib/service_config/service_config_impl.h +9 -2
- data/src/core/lib/service_config/service_config_parser.cc +8 -0
- data/src/core/lib/service_config/service_config_parser.h +7 -0
- data/src/core/lib/slice/b64.cc +1 -1
- data/src/core/lib/slice/b64.h +2 -0
- data/src/core/lib/slice/percent_encoding.cc +4 -1
- data/src/core/lib/slice/percent_encoding.h +0 -6
- data/src/core/lib/slice/slice.cc +2 -1
- data/src/core/lib/slice/slice.h +10 -5
- data/src/core/lib/slice/slice_api.cc +1 -1
- data/src/core/lib/slice/slice_buffer.cc +50 -23
- data/src/core/lib/slice/slice_buffer.h +106 -0
- data/src/core/lib/{iomgr/is_epollexclusive_available.h → slice/slice_buffer_api.cc} +11 -12
- data/src/core/lib/slice/slice_internal.h +4 -3
- data/src/core/lib/slice/slice_refcount.h +2 -3
- data/src/core/lib/slice/slice_refcount_base.h +2 -3
- data/src/core/lib/slice/slice_split.cc +3 -0
- data/src/core/lib/slice/slice_split.h +0 -4
- data/src/core/lib/slice/slice_string_helpers.cc +4 -0
- data/src/core/lib/slice/slice_string_helpers.h +1 -4
- data/src/core/lib/surface/builtins.cc +7 -2
- data/src/core/lib/surface/byte_buffer.cc +7 -1
- data/src/core/lib/surface/byte_buffer_reader.cc +4 -4
- data/src/core/lib/surface/call.cc +1052 -917
- data/src/core/lib/surface/call.h +16 -16
- data/src/core/lib/surface/call_details.cc +4 -4
- data/src/core/lib/surface/call_log_batch.cc +7 -1
- data/src/core/lib/surface/call_test_only.h +4 -1
- data/src/core/lib/surface/channel.cc +181 -243
- data/src/core/lib/surface/channel.h +94 -57
- data/src/core/lib/surface/channel_init.cc +2 -3
- data/src/core/lib/surface/channel_init.h +3 -5
- data/src/core/lib/surface/channel_ping.cc +8 -2
- data/src/core/lib/surface/channel_stack_type.cc +0 -2
- data/src/core/lib/surface/channel_stack_type.h +0 -2
- data/src/core/lib/surface/completion_queue.cc +14 -6
- data/src/core/lib/surface/completion_queue.h +5 -1
- data/src/core/lib/surface/completion_queue_factory.cc +1 -0
- data/src/core/lib/surface/completion_queue_factory.h +1 -3
- data/src/core/lib/surface/event_string.cc +1 -7
- data/src/core/lib/surface/event_string.h +1 -1
- data/src/core/lib/surface/init.cc +17 -45
- data/src/core/lib/surface/init.h +0 -8
- data/src/core/lib/surface/lame_client.cc +64 -110
- data/src/core/lib/surface/lame_client.h +40 -2
- data/src/core/lib/surface/metadata_array.cc +2 -0
- data/src/core/lib/surface/server.cc +72 -70
- data/src/core/lib/surface/server.h +40 -11
- data/src/core/lib/surface/validate_metadata.cc +2 -5
- data/src/core/lib/surface/validate_metadata.h +3 -0
- data/src/core/lib/surface/version.cc +2 -2
- data/src/core/lib/transport/bdp_estimator.cc +3 -1
- data/src/core/lib/transport/bdp_estimator.h +2 -3
- data/src/core/lib/transport/byte_stream.cc +6 -3
- data/src/core/lib/transport/byte_stream.h +5 -1
- data/src/core/lib/transport/connectivity_state.cc +6 -4
- data/src/core/lib/transport/connectivity_state.h +2 -3
- data/src/core/lib/transport/error_utils.cc +4 -2
- data/src/core/lib/transport/error_utils.h +5 -1
- data/src/core/lib/{channel → transport}/handshaker.cc +9 -4
- data/src/core/lib/{channel → transport}/handshaker.h +13 -6
- data/src/core/lib/{channel → transport}/handshaker_factory.h +9 -10
- data/src/core/lib/{channel → transport}/handshaker_registry.cc +5 -1
- data/src/core/lib/{channel → transport}/handshaker_registry.h +5 -4
- data/src/core/{ext/filters/client_channel → lib/transport}/http_connect_handshaker.cc +24 -10
- data/src/core/{ext/filters/client_channel → lib/transport}/http_connect_handshaker.h +3 -3
- data/src/core/lib/transport/metadata_batch.cc +287 -0
- data/src/core/lib/transport/metadata_batch.h +142 -269
- data/src/core/lib/transport/parsed_metadata.cc +2 -0
- data/src/core/lib/transport/parsed_metadata.h +10 -3
- data/src/core/lib/transport/status_conversion.cc +2 -0
- data/src/core/lib/transport/status_conversion.h +2 -2
- data/src/core/lib/transport/tcp_connect_handshaker.cc +253 -0
- data/src/core/lib/transport/tcp_connect_handshaker.h +39 -0
- data/src/core/lib/transport/timeout_encoding.cc +2 -6
- data/src/core/lib/transport/timeout_encoding.h +5 -1
- data/src/core/lib/transport/transport.cc +18 -17
- data/src/core/lib/transport/transport.h +48 -7
- data/src/core/lib/transport/transport_impl.h +14 -3
- data/src/core/lib/transport/transport_op_string.cc +9 -10
- data/src/core/lib/uri/uri_parser.cc +11 -3
- data/src/core/lib/uri/uri_parser.h +0 -2
- data/src/core/plugin_registry/grpc_plugin_registry.cc +13 -4
- data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc +2 -2
- data/src/core/tsi/ssl/session_cache/ssl_session.h +2 -0
- data/src/core/tsi/ssl/session_cache/ssl_session_boringssl.cc +2 -0
- data/src/core/tsi/ssl/session_cache/ssl_session_openssl.cc +2 -0
- data/src/core/tsi/ssl_transport_security.cc +75 -38
- data/src/core/tsi/ssl_transport_security.h +8 -2
- data/src/core/tsi/transport_security_interface.h +2 -0
- data/src/ruby/ext/grpc/extconf.rb +2 -2
- data/src/ruby/lib/grpc/generic/active_call.rb +7 -1
- data/src/ruby/lib/grpc/grpc.rb +1 -1
- data/src/ruby/lib/grpc/version.rb +1 -1
- data/src/ruby/pb/generate_proto_ruby.sh +1 -0
- data/src/ruby/pb/test/client.rb +769 -0
- data/src/ruby/pb/test/server.rb +252 -0
- data/src/ruby/pb/test/xds_client.rb +415 -0
- data/third_party/abseil-cpp/absl/cleanup/cleanup.h +140 -0
- data/third_party/abseil-cpp/absl/cleanup/internal/cleanup.h +100 -0
- data/third_party/abseil-cpp/absl/container/flat_hash_set.h +504 -0
- data/third_party/upb/third_party/utf8_range/utf8_range.h +1 -1
- data/third_party/upb/upb/decode.c +32 -16
- data/third_party/upb/upb/def.c +118 -55
- data/third_party/upb/upb/def.h +12 -3
- data/third_party/upb/upb/encode.c +14 -8
- data/third_party/upb/upb/json_encode.c +776 -0
- data/third_party/upb/upb/json_encode.h +62 -0
- data/third_party/upb/upb/msg.c +5 -7
- data/third_party/upb/upb/msg.h +1 -2
- data/third_party/upb/upb/msg_internal.h +49 -36
- data/third_party/upb/upb/port_def.inc +8 -0
- data/third_party/upb/upb/port_undef.inc +1 -0
- data/third_party/upb/upb/table.c +10 -6
- data/third_party/upb/upb/table_internal.h +2 -0
- data/third_party/upb/upb/upb.h +41 -11
- data/third_party/zlib/crc32.c +966 -292
- data/third_party/zlib/crc32.h +9441 -436
- data/third_party/zlib/deflate.c +78 -30
- data/third_party/zlib/deflate.h +12 -15
- data/third_party/zlib/gzguts.h +3 -2
- data/third_party/zlib/gzlib.c +5 -3
- data/third_party/zlib/gzread.c +5 -7
- data/third_party/zlib/gzwrite.c +25 -13
- data/third_party/zlib/infback.c +2 -1
- data/third_party/zlib/inffast.c +14 -14
- data/third_party/zlib/inflate.c +39 -8
- data/third_party/zlib/inflate.h +3 -2
- data/third_party/zlib/inftrees.c +3 -3
- data/third_party/zlib/trees.c +27 -48
- data/third_party/zlib/zlib.h +123 -100
- data/third_party/zlib/zutil.c +2 -2
- data/third_party/zlib/zutil.h +12 -9
- metadata +100 -72
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_event_engine.cc +0 -31
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_event_engine.cc +0 -28
- data/src/core/ext/filters/client_idle/client_idle_filter.cc +0 -201
- data/src/core/ext/filters/max_age/max_age_filter.cc +0 -566
- data/src/core/lib/event_engine/sockaddr.cc +0 -40
- data/src/core/lib/event_engine/sockaddr.h +0 -44
- data/src/core/lib/gprpp/capture.h +0 -76
- data/src/core/lib/iomgr/ev_epollex_linux.cc +0 -1657
- data/src/core/lib/iomgr/ev_epollex_linux.h +0 -30
- data/src/core/lib/iomgr/event_engine/closure.cc +0 -77
- data/src/core/lib/iomgr/event_engine/closure.h +0 -42
- data/src/core/lib/iomgr/event_engine/endpoint.cc +0 -172
- data/src/core/lib/iomgr/event_engine/endpoint.h +0 -52
- data/src/core/lib/iomgr/event_engine/iomgr.cc +0 -85
- data/src/core/lib/iomgr/event_engine/pollset.cc +0 -87
- data/src/core/lib/iomgr/event_engine/promise.h +0 -51
- data/src/core/lib/iomgr/event_engine/resolved_address_internal.cc +0 -47
- data/src/core/lib/iomgr/event_engine/resolved_address_internal.h +0 -37
- data/src/core/lib/iomgr/event_engine/resolver.cc +0 -133
- data/src/core/lib/iomgr/event_engine/resolver.h +0 -56
- data/src/core/lib/iomgr/event_engine/tcp.cc +0 -296
- data/src/core/lib/iomgr/event_engine/timer.cc +0 -62
- data/src/core/lib/iomgr/is_epollexclusive_available.cc +0 -119
- data/src/core/lib/iomgr/sys_epoll_wrapper.h +0 -30
@@ -1,48 +1,94 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
*
|
17
|
-
*/
|
1
|
+
//
|
2
|
+
// Copyright 2019 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
|
+
//
|
18
16
|
|
19
17
|
#include <grpc/support/port_platform.h>
|
20
18
|
|
19
|
+
#include <stdlib.h>
|
20
|
+
#include <string.h>
|
21
|
+
|
22
|
+
#include <algorithm>
|
23
|
+
#include <cstdint>
|
24
|
+
#include <map>
|
25
|
+
#include <memory>
|
26
|
+
#include <string>
|
27
|
+
#include <type_traits>
|
28
|
+
#include <utility>
|
29
|
+
#include <vector>
|
30
|
+
|
31
|
+
#include "absl/container/inlined_vector.h"
|
32
|
+
#include "absl/memory/memory.h"
|
33
|
+
#include "absl/meta/type_traits.h"
|
21
34
|
#include "absl/random/random.h"
|
35
|
+
#include "absl/status/status.h"
|
36
|
+
#include "absl/status/statusor.h"
|
22
37
|
#include "absl/strings/match.h"
|
38
|
+
#include "absl/strings/str_cat.h"
|
39
|
+
#include "absl/strings/str_format.h"
|
23
40
|
#include "absl/strings/str_join.h"
|
24
41
|
#include "absl/strings/str_replace.h"
|
25
|
-
#include "absl/strings/
|
42
|
+
#include "absl/strings/string_view.h"
|
43
|
+
#include "absl/strings/strip.h"
|
44
|
+
#include "absl/types/optional.h"
|
45
|
+
#include "absl/types/variant.h"
|
26
46
|
#include "re2/re2.h"
|
47
|
+
|
27
48
|
#define XXH_INLINE_ALL
|
28
49
|
#include "xxhash.h"
|
29
50
|
|
51
|
+
#include <grpc/impl/codegen/grpc_types.h>
|
52
|
+
#include <grpc/slice.h>
|
53
|
+
#include <grpc/status.h>
|
54
|
+
#include <grpc/support/log.h>
|
55
|
+
|
30
56
|
#include "src/core/ext/filters/client_channel/config_selector.h"
|
31
57
|
#include "src/core/ext/filters/client_channel/lb_policy/ring_hash/ring_hash.h"
|
32
|
-
#include "src/core/ext/xds/
|
58
|
+
#include "src/core/ext/xds/xds_bootstrap.h"
|
33
59
|
#include "src/core/ext/xds/xds_client.h"
|
34
60
|
#include "src/core/ext/xds/xds_http_filters.h"
|
35
61
|
#include "src/core/ext/xds/xds_listener.h"
|
62
|
+
#include "src/core/ext/xds/xds_resource_type_impl.h"
|
36
63
|
#include "src/core/ext/xds/xds_route_config.h"
|
37
64
|
#include "src/core/ext/xds/xds_routing.h"
|
38
65
|
#include "src/core/lib/channel/channel_args.h"
|
66
|
+
#include "src/core/lib/channel/channel_stack_builder.h"
|
67
|
+
#include "src/core/lib/channel/status_util.h"
|
39
68
|
#include "src/core/lib/config/core_configuration.h"
|
40
|
-
#include "src/core/lib/
|
41
|
-
#include "src/core/lib/
|
69
|
+
#include "src/core/lib/debug/trace.h"
|
70
|
+
#include "src/core/lib/gpr/useful.h"
|
71
|
+
#include "src/core/lib/gprpp/debug_location.h"
|
72
|
+
#include "src/core/lib/gprpp/dual_ref_counted.h"
|
73
|
+
#include "src/core/lib/gprpp/orphanable.h"
|
74
|
+
#include "src/core/lib/gprpp/ref_counted_ptr.h"
|
75
|
+
#include "src/core/lib/gprpp/time.h"
|
76
|
+
#include "src/core/lib/iomgr/error.h"
|
77
|
+
#include "src/core/lib/iomgr/iomgr_fwd.h"
|
78
|
+
#include "src/core/lib/iomgr/pollset_set.h"
|
79
|
+
#include "src/core/lib/iomgr/work_serializer.h"
|
80
|
+
#include "src/core/lib/resolver/resolver.h"
|
81
|
+
#include "src/core/lib/resolver/resolver_factory.h"
|
42
82
|
#include "src/core/lib/resolver/resolver_registry.h"
|
83
|
+
#include "src/core/lib/resolver/server_address.h"
|
84
|
+
#include "src/core/lib/resource_quota/arena.h"
|
85
|
+
#include "src/core/lib/service_config/service_config.h"
|
86
|
+
#include "src/core/lib/service_config/service_config_call_data.h"
|
43
87
|
#include "src/core/lib/service_config/service_config_impl.h"
|
88
|
+
#include "src/core/lib/slice/slice_internal.h"
|
44
89
|
#include "src/core/lib/transport/error_utils.h"
|
45
|
-
#include "src/core/lib/transport/
|
90
|
+
#include "src/core/lib/transport/metadata_batch.h"
|
91
|
+
#include "src/core/lib/uri/uri_parser.h"
|
46
92
|
|
47
93
|
namespace grpc_core {
|
48
94
|
|
@@ -123,11 +169,11 @@ class XdsResolver : public Resolver {
|
|
123
169
|
},
|
124
170
|
DEBUG_LOCATION);
|
125
171
|
}
|
126
|
-
void OnError(
|
172
|
+
void OnError(absl::Status status) override {
|
127
173
|
Ref().release(); // ref held by lambda
|
128
174
|
resolver_->work_serializer_->Run(
|
129
|
-
[this,
|
130
|
-
resolver_->OnError(
|
175
|
+
[this, status]() {
|
176
|
+
resolver_->OnError(resolver_->lds_resource_name_, status);
|
131
177
|
Unref();
|
132
178
|
},
|
133
179
|
DEBUG_LOCATION);
|
@@ -162,11 +208,11 @@ class XdsResolver : public Resolver {
|
|
162
208
|
},
|
163
209
|
DEBUG_LOCATION);
|
164
210
|
}
|
165
|
-
void OnError(
|
211
|
+
void OnError(absl::Status status) override {
|
166
212
|
Ref().release(); // ref held by lambda
|
167
213
|
resolver_->work_serializer_->Run(
|
168
|
-
[this,
|
169
|
-
resolver_->OnError(
|
214
|
+
[this, status]() {
|
215
|
+
resolver_->OnError(resolver_->route_config_name_, status);
|
170
216
|
Unref();
|
171
217
|
},
|
172
218
|
DEBUG_LOCATION);
|
@@ -305,7 +351,7 @@ class XdsResolver : public Resolver {
|
|
305
351
|
|
306
352
|
void OnListenerUpdate(XdsListenerResource listener);
|
307
353
|
void OnRouteConfigUpdate(XdsRouteConfigResource rds_update);
|
308
|
-
void OnError(
|
354
|
+
void OnError(absl::string_view context, absl::Status status);
|
309
355
|
void OnResourceDoesNotExist();
|
310
356
|
|
311
357
|
absl::StatusOr<RefCountedPtr<ServiceConfig>> CreateServiceConfig();
|
@@ -332,6 +378,9 @@ class XdsResolver : public Resolver {
|
|
332
378
|
std::string route_config_name_;
|
333
379
|
RouteConfigWatcher* route_config_watcher_ = nullptr;
|
334
380
|
XdsRouteConfigResource::VirtualHost current_virtual_host_;
|
381
|
+
std::map<std::string /*cluster_specifier_plugin_name*/,
|
382
|
+
std::string /*LB policy config*/>
|
383
|
+
cluster_specifier_plugin_map_;
|
335
384
|
|
336
385
|
ClusterState::ClusterStateMap cluster_state_map_;
|
337
386
|
};
|
@@ -418,13 +467,23 @@ XdsResolver::XdsConfigSelector::XdsConfigSelector(
|
|
418
467
|
resolver_->current_listener_.http_connection_manager
|
419
468
|
.http_max_stream_duration;
|
420
469
|
}
|
421
|
-
if (route_action->
|
470
|
+
if (route_action->action.index() ==
|
471
|
+
XdsRouteConfigResource::Route::RouteAction::kClusterIndex) {
|
422
472
|
*error = CreateMethodConfig(route_entry.route, nullptr,
|
423
473
|
&route_entry.method_config);
|
424
|
-
MaybeAddCluster(
|
425
|
-
|
474
|
+
MaybeAddCluster(absl::StrCat(
|
475
|
+
"cluster:",
|
476
|
+
absl::get<
|
477
|
+
XdsRouteConfigResource::Route::RouteAction::kClusterIndex>(
|
478
|
+
route_action->action)));
|
479
|
+
} else if (route_action->action.index() ==
|
480
|
+
XdsRouteConfigResource::Route::RouteAction::
|
481
|
+
kWeightedClustersIndex) {
|
482
|
+
auto& action_weighted_clusters = absl::get<
|
483
|
+
XdsRouteConfigResource::Route::RouteAction::kWeightedClustersIndex>(
|
484
|
+
route_action->action);
|
426
485
|
uint32_t end = 0;
|
427
|
-
for (const auto& weighted_cluster :
|
486
|
+
for (const auto& weighted_cluster : action_weighted_clusters) {
|
428
487
|
Route::ClusterWeightState cluster_weight_state;
|
429
488
|
*error = CreateMethodConfig(route_entry.route, &weighted_cluster,
|
430
489
|
&cluster_weight_state.method_config);
|
@@ -434,8 +493,18 @@ XdsResolver::XdsConfigSelector::XdsConfigSelector(
|
|
434
493
|
cluster_weight_state.cluster = weighted_cluster.name;
|
435
494
|
route_entry.weighted_cluster_state.push_back(
|
436
495
|
std::move(cluster_weight_state));
|
437
|
-
MaybeAddCluster(weighted_cluster.name);
|
496
|
+
MaybeAddCluster(absl::StrCat("cluster:", weighted_cluster.name));
|
438
497
|
}
|
498
|
+
} else if (route_action->action.index() ==
|
499
|
+
XdsRouteConfigResource::Route::RouteAction::
|
500
|
+
kClusterSpecifierPluginIndex) {
|
501
|
+
// cluster_specifier_plugin case:
|
502
|
+
*error = CreateMethodConfig(route_entry.route, nullptr,
|
503
|
+
&route_entry.method_config);
|
504
|
+
MaybeAddCluster(absl::StrCat(
|
505
|
+
"cluster_specifier_plugin:",
|
506
|
+
absl::get<XdsRouteConfigResource::Route::RouteAction::
|
507
|
+
kClusterSpecifierPluginIndex>(route_action->action)));
|
439
508
|
}
|
440
509
|
}
|
441
510
|
}
|
@@ -476,18 +545,15 @@ grpc_error_handle XdsResolver::XdsConfigSelector::CreateMethodConfig(
|
|
476
545
|
if (route_action.retry_policy.has_value() &&
|
477
546
|
!route_action.retry_policy->retry_on.Empty()) {
|
478
547
|
std::vector<std::string> retry_parts;
|
479
|
-
const auto base_interval =
|
480
|
-
route_action.retry_policy->retry_back_off.base_interval.as_timespec();
|
481
|
-
const auto max_interval =
|
482
|
-
route_action.retry_policy->retry_back_off.max_interval.as_timespec();
|
483
548
|
retry_parts.push_back(absl::StrFormat(
|
484
549
|
"\"retryPolicy\": {\n"
|
485
550
|
" \"maxAttempts\": %d,\n"
|
486
|
-
" \"initialBackoff\": \"%
|
487
|
-
" \"maxBackoff\": \"%
|
551
|
+
" \"initialBackoff\": \"%s\",\n"
|
552
|
+
" \"maxBackoff\": \"%s\",\n"
|
488
553
|
" \"backoffMultiplier\": 2,\n",
|
489
|
-
route_action.retry_policy->num_retries + 1,
|
490
|
-
|
554
|
+
route_action.retry_policy->num_retries + 1,
|
555
|
+
route_action.retry_policy->retry_back_off.base_interval.ToJsonString(),
|
556
|
+
route_action.retry_policy->retry_back_off.max_interval.ToJsonString()));
|
491
557
|
std::vector<std::string> code_parts;
|
492
558
|
if (route_action.retry_policy->retry_on.Contains(GRPC_STATUS_CANCELLED)) {
|
493
559
|
code_parts.push_back(" \"CANCELLED\"");
|
@@ -515,9 +581,9 @@ grpc_error_handle XdsResolver::XdsConfigSelector::CreateMethodConfig(
|
|
515
581
|
// Set timeout.
|
516
582
|
if (route_action.max_stream_duration.has_value() &&
|
517
583
|
(route_action.max_stream_duration != Duration::Zero())) {
|
518
|
-
|
519
|
-
|
520
|
-
|
584
|
+
fields.emplace_back(
|
585
|
+
absl::StrFormat(" \"timeout\": \"%s\"",
|
586
|
+
route_action.max_stream_duration->ToJsonString()));
|
521
587
|
}
|
522
588
|
// Handle xDS HTTP filters.
|
523
589
|
XdsRouting::GeneratePerHttpFilterConfigsResult result =
|
@@ -614,12 +680,18 @@ ConfigSelector::CallConfig XdsResolver::XdsConfigSelector::GetCallConfig(
|
|
614
680
|
GRPC_ERROR_INT_GRPC_STATUS, GRPC_STATUS_UNAVAILABLE);
|
615
681
|
return call_config;
|
616
682
|
}
|
617
|
-
|
683
|
+
std::string cluster_name;
|
618
684
|
RefCountedPtr<ServiceConfig> method_config;
|
619
|
-
if (route_action->
|
620
|
-
|
685
|
+
if (route_action->action.index() ==
|
686
|
+
XdsRouteConfigResource::Route::RouteAction::kClusterIndex) {
|
687
|
+
cluster_name = absl::StrCat(
|
688
|
+
"cluster:",
|
689
|
+
absl::get<XdsRouteConfigResource::Route::RouteAction::kClusterIndex>(
|
690
|
+
route_action->action));
|
621
691
|
method_config = entry.method_config;
|
622
|
-
} else
|
692
|
+
} else if (route_action->action.index() ==
|
693
|
+
XdsRouteConfigResource::Route::RouteAction::
|
694
|
+
kWeightedClustersIndex) {
|
623
695
|
const uint32_t key =
|
624
696
|
rand() %
|
625
697
|
entry.weighted_cluster_state[entry.weighted_cluster_state.size() - 1]
|
@@ -642,8 +714,17 @@ ConfigSelector::CallConfig XdsResolver::XdsConfigSelector::GetCallConfig(
|
|
642
714
|
}
|
643
715
|
if (index == 0) index = start_index;
|
644
716
|
GPR_ASSERT(entry.weighted_cluster_state[index].range_end > key);
|
645
|
-
cluster_name =
|
717
|
+
cluster_name =
|
718
|
+
absl::StrCat("cluster:", entry.weighted_cluster_state[index].cluster);
|
646
719
|
method_config = entry.weighted_cluster_state[index].method_config;
|
720
|
+
} else if (route_action->action.index() ==
|
721
|
+
XdsRouteConfigResource::Route::RouteAction::
|
722
|
+
kClusterSpecifierPluginIndex) {
|
723
|
+
cluster_name = absl::StrCat(
|
724
|
+
"cluster_specifier_plugin:",
|
725
|
+
absl::get<XdsRouteConfigResource::Route::RouteAction::
|
726
|
+
kClusterSpecifierPluginIndex>(route_action->action));
|
727
|
+
method_config = entry.method_config;
|
647
728
|
}
|
648
729
|
auto it = clusters_.find(cluster_name);
|
649
730
|
GPR_ASSERT(it != clusters_.end());
|
@@ -709,9 +790,12 @@ void XdsResolver::StartLocked() {
|
|
709
790
|
grpc_error_std_string(error).c_str());
|
710
791
|
std::string error_message;
|
711
792
|
grpc_error_get_str(error, GRPC_ERROR_STR_DESCRIPTION, &error_message);
|
712
|
-
|
713
|
-
result.service_config = absl::UnavailableError(
|
793
|
+
absl::Status status = absl::UnavailableError(
|
714
794
|
absl::StrCat("Failed to create XdsClient: ", error_message));
|
795
|
+
Result result;
|
796
|
+
result.addresses = status;
|
797
|
+
result.service_config = std::move(status);
|
798
|
+
result.args = grpc_channel_args_copy(args_);
|
715
799
|
result_handler_->ReportResult(std::move(result));
|
716
800
|
GRPC_ERROR_UNREF(error);
|
717
801
|
return;
|
@@ -722,10 +806,13 @@ void XdsResolver::StartLocked() {
|
|
722
806
|
const auto* authority_config =
|
723
807
|
xds_client_->bootstrap().LookupAuthority(uri_.authority());
|
724
808
|
if (authority_config == nullptr) {
|
725
|
-
|
726
|
-
|
727
|
-
absl::StrCat("Invalid target URI -- authority not found for %s.",
|
809
|
+
absl::Status status = absl::UnavailableError(
|
810
|
+
absl::StrCat("Invalid target URI -- authority not found for ",
|
728
811
|
uri_.authority().c_str()));
|
812
|
+
Result result;
|
813
|
+
result.addresses = status;
|
814
|
+
result.service_config = std::move(status);
|
815
|
+
result.args = grpc_channel_args_copy(args_);
|
729
816
|
result_handler_->ReportResult(std::move(result));
|
730
817
|
return;
|
731
818
|
}
|
@@ -856,31 +943,33 @@ void XdsResolver::OnRouteConfigUpdate(XdsRouteConfigResource rds_update) {
|
|
856
943
|
VirtualHostListIterator(&rds_update.virtual_hosts),
|
857
944
|
data_plane_authority_);
|
858
945
|
if (!vhost_index.has_value()) {
|
859
|
-
OnError(
|
860
|
-
|
861
|
-
|
946
|
+
OnError(
|
947
|
+
route_config_name_.empty() ? lds_resource_name_ : route_config_name_,
|
948
|
+
absl::UnavailableError(absl::StrCat("could not find VirtualHost for ",
|
949
|
+
data_plane_authority_,
|
950
|
+
" in RouteConfiguration")));
|
862
951
|
return;
|
863
952
|
}
|
864
953
|
// Save the virtual host in the resolver.
|
865
954
|
current_virtual_host_ = std::move(rds_update.virtual_hosts[*vhost_index]);
|
955
|
+
cluster_specifier_plugin_map_ =
|
956
|
+
std::move(rds_update.cluster_specifier_plugin_map);
|
866
957
|
// Send a new result to the channel.
|
867
958
|
GenerateResult();
|
868
959
|
}
|
869
960
|
|
870
|
-
void XdsResolver::OnError(
|
871
|
-
gpr_log(GPR_ERROR, "[xds_resolver %p] received error from XdsClient: %s",
|
872
|
-
this,
|
873
|
-
if (xds_client_ == nullptr)
|
874
|
-
|
875
|
-
|
876
|
-
}
|
961
|
+
void XdsResolver::OnError(absl::string_view context, absl::Status status) {
|
962
|
+
gpr_log(GPR_ERROR, "[xds_resolver %p] received error from XdsClient: %s: %s",
|
963
|
+
this, std::string(context).c_str(), status.ToString().c_str());
|
964
|
+
if (xds_client_ == nullptr) return;
|
965
|
+
status =
|
966
|
+
absl::UnavailableError(absl::StrCat(context, ": ", status.ToString()));
|
877
967
|
Result result;
|
968
|
+
result.addresses = status;
|
969
|
+
result.service_config = std::move(status);
|
878
970
|
grpc_arg new_arg = xds_client_->MakeChannelArg();
|
879
971
|
result.args = grpc_channel_args_copy_and_add(args_, &new_arg, 1);
|
880
|
-
result.service_config = absl::UnavailableError(absl::StrCat(
|
881
|
-
"error obtaining xDS resources: ", grpc_error_std_string(error)));
|
882
972
|
result_handler_->ReportResult(std::move(result));
|
883
|
-
GRPC_ERROR_UNREF(error);
|
884
973
|
}
|
885
974
|
|
886
975
|
void XdsResolver::OnResourceDoesNotExist() {
|
@@ -893,6 +982,7 @@ void XdsResolver::OnResourceDoesNotExist() {
|
|
893
982
|
}
|
894
983
|
current_virtual_host_.routes.clear();
|
895
984
|
Result result;
|
985
|
+
result.addresses.emplace();
|
896
986
|
grpc_error_handle error = GRPC_ERROR_NONE;
|
897
987
|
result.service_config = ServiceConfigImpl::Create(args_, "{}", &error);
|
898
988
|
GPR_ASSERT(*result.service_config != nullptr);
|
@@ -904,15 +994,26 @@ absl::StatusOr<RefCountedPtr<ServiceConfig>>
|
|
904
994
|
XdsResolver::CreateServiceConfig() {
|
905
995
|
std::vector<std::string> clusters;
|
906
996
|
for (const auto& cluster : cluster_state_map_) {
|
907
|
-
|
908
|
-
|
909
|
-
|
910
|
-
|
911
|
-
|
912
|
-
|
913
|
-
|
914
|
-
|
915
|
-
|
997
|
+
absl::string_view child_name = cluster.first;
|
998
|
+
if (absl::ConsumePrefix(&child_name, "cluster_specifier_plugin:")) {
|
999
|
+
clusters.push_back(absl::StrFormat(
|
1000
|
+
" \"%s\":{\n"
|
1001
|
+
" \"childPolicy\": %s\n"
|
1002
|
+
" }",
|
1003
|
+
cluster.first,
|
1004
|
+
cluster_specifier_plugin_map_[std::string(child_name)]));
|
1005
|
+
} else {
|
1006
|
+
absl::ConsumePrefix(&child_name, "cluster:");
|
1007
|
+
clusters.push_back(
|
1008
|
+
absl::StrFormat(" \"%s\":{\n"
|
1009
|
+
" \"childPolicy\":[ {\n"
|
1010
|
+
" \"cds_experimental\":{\n"
|
1011
|
+
" \"cluster\": \"%s\"\n"
|
1012
|
+
" }\n"
|
1013
|
+
" } ]\n"
|
1014
|
+
" }",
|
1015
|
+
cluster.first, child_name));
|
1016
|
+
}
|
916
1017
|
}
|
917
1018
|
std::vector<std::string> config_parts;
|
918
1019
|
config_parts.push_back(
|
@@ -944,11 +1045,13 @@ void XdsResolver::GenerateResult() {
|
|
944
1045
|
grpc_error_handle error = GRPC_ERROR_NONE;
|
945
1046
|
auto config_selector = MakeRefCounted<XdsConfigSelector>(Ref(), &error);
|
946
1047
|
if (error != GRPC_ERROR_NONE) {
|
947
|
-
OnError(
|
948
|
-
|
1048
|
+
OnError("could not create ConfigSelector",
|
1049
|
+
absl::UnavailableError(grpc_error_std_string(error)));
|
1050
|
+
GRPC_ERROR_UNREF(error);
|
949
1051
|
return;
|
950
1052
|
}
|
951
1053
|
Result result;
|
1054
|
+
result.addresses.emplace();
|
952
1055
|
result.service_config = CreateServiceConfig();
|
953
1056
|
if (GRPC_TRACE_FLAG_ENABLED(grpc_xds_resolver_trace)) {
|
954
1057
|
gpr_log(GPR_INFO, "[xds_resolver %p] generated service config: %s", this,
|
@@ -19,25 +19,19 @@
|
|
19
19
|
#include "src/core/ext/filters/client_channel/resolver_result_parsing.h"
|
20
20
|
|
21
21
|
#include <ctype.h>
|
22
|
-
#include <stdio.h>
|
23
|
-
#include <string.h>
|
24
22
|
|
23
|
+
#include <algorithm>
|
24
|
+
#include <map>
|
25
|
+
#include <vector>
|
26
|
+
|
27
|
+
#include "absl/memory/memory.h"
|
25
28
|
#include "absl/strings/str_cat.h"
|
26
29
|
#include "absl/types/optional.h"
|
27
30
|
|
28
|
-
#include <grpc/support/alloc.h>
|
29
31
|
#include <grpc/support/log.h>
|
30
|
-
#include <grpc/support/string_util.h>
|
31
32
|
|
32
|
-
#include "src/core/ext/filters/client_channel/client_channel.h"
|
33
33
|
#include "src/core/ext/filters/client_channel/lb_policy_registry.h"
|
34
|
-
#include "src/core/lib/channel/channel_args.h"
|
35
|
-
#include "src/core/lib/channel/status_util.h"
|
36
|
-
#include "src/core/lib/gpr/string.h"
|
37
|
-
#include "src/core/lib/gprpp/memory.h"
|
38
34
|
#include "src/core/lib/json/json_util.h"
|
39
|
-
#include "src/core/lib/resolver/server_address.h"
|
40
|
-
#include "src/core/lib/uri/uri_parser.h"
|
41
35
|
|
42
36
|
// As per the retry design, we do not allow more than 5 retry attempts.
|
43
37
|
#define MAX_MAX_RETRY_ATTEMPTS 5
|
@@ -19,17 +19,23 @@
|
|
19
19
|
|
20
20
|
#include <grpc/support/port_platform.h>
|
21
21
|
|
22
|
+
#include <stddef.h>
|
23
|
+
|
24
|
+
#include <memory>
|
25
|
+
#include <string>
|
26
|
+
#include <utility>
|
27
|
+
|
28
|
+
#include "absl/strings/string_view.h"
|
22
29
|
#include "absl/types/optional.h"
|
23
30
|
|
31
|
+
#include <grpc/impl/codegen/grpc_types.h>
|
32
|
+
|
24
33
|
#include "src/core/ext/filters/client_channel/lb_policy.h"
|
25
|
-
#include "src/core/ext/filters/client_channel/lb_policy_factory.h"
|
26
|
-
#include "src/core/lib/channel/status_util.h"
|
27
34
|
#include "src/core/lib/config/core_configuration.h"
|
28
|
-
#include "src/core/lib/gprpp/ref_counted.h"
|
29
35
|
#include "src/core/lib/gprpp/ref_counted_ptr.h"
|
30
|
-
#include "src/core/lib/
|
36
|
+
#include "src/core/lib/gprpp/time.h"
|
37
|
+
#include "src/core/lib/iomgr/error.h"
|
31
38
|
#include "src/core/lib/json/json.h"
|
32
|
-
#include "src/core/lib/resolver/resolver.h"
|
33
39
|
#include "src/core/lib/service_config/service_config_parser.h"
|
34
40
|
|
35
41
|
namespace grpc_core {
|
@@ -18,28 +18,60 @@
|
|
18
18
|
|
19
19
|
#include "src/core/ext/filters/client_channel/retry_filter.h"
|
20
20
|
|
21
|
+
#include <inttypes.h>
|
22
|
+
#include <limits.h>
|
23
|
+
#include <stddef.h>
|
24
|
+
|
25
|
+
#include <memory>
|
26
|
+
#include <new>
|
27
|
+
#include <string>
|
28
|
+
#include <utility>
|
29
|
+
|
21
30
|
#include "absl/container/inlined_vector.h"
|
22
31
|
#include "absl/status/statusor.h"
|
32
|
+
#include "absl/strings/str_cat.h"
|
33
|
+
#include "absl/strings/string_view.h"
|
23
34
|
#include "absl/strings/strip.h"
|
35
|
+
#include "absl/types/optional.h"
|
24
36
|
|
37
|
+
#include <grpc/impl/codegen/grpc_types.h>
|
38
|
+
#include <grpc/slice.h>
|
25
39
|
#include <grpc/status.h>
|
40
|
+
#include <grpc/support/atm.h>
|
26
41
|
#include <grpc/support/log.h>
|
27
42
|
|
28
43
|
#include "src/core/ext/filters/client_channel/client_channel.h"
|
44
|
+
#include "src/core/ext/filters/client_channel/config_selector.h"
|
29
45
|
#include "src/core/ext/filters/client_channel/retry_service_config.h"
|
30
46
|
#include "src/core/ext/filters/client_channel/retry_throttle.h"
|
31
47
|
#include "src/core/lib/backoff/backoff.h"
|
32
48
|
#include "src/core/lib/channel/channel_args.h"
|
33
49
|
#include "src/core/lib/channel/channel_stack.h"
|
50
|
+
#include "src/core/lib/channel/channel_stack_builder.h"
|
51
|
+
#include "src/core/lib/channel/context.h"
|
34
52
|
#include "src/core/lib/channel/status_util.h"
|
53
|
+
#include "src/core/lib/debug/trace.h"
|
54
|
+
#include "src/core/lib/gpr/useful.h"
|
55
|
+
#include "src/core/lib/gprpp/debug_location.h"
|
35
56
|
#include "src/core/lib/gprpp/manual_constructor.h"
|
57
|
+
#include "src/core/lib/gprpp/orphanable.h"
|
58
|
+
#include "src/core/lib/gprpp/ref_counted.h"
|
59
|
+
#include "src/core/lib/gprpp/ref_counted_ptr.h"
|
60
|
+
#include "src/core/lib/gprpp/time.h"
|
61
|
+
#include "src/core/lib/iomgr/call_combiner.h"
|
62
|
+
#include "src/core/lib/iomgr/closure.h"
|
63
|
+
#include "src/core/lib/iomgr/error.h"
|
64
|
+
#include "src/core/lib/iomgr/exec_ctx.h"
|
36
65
|
#include "src/core/lib/iomgr/polling_entity.h"
|
66
|
+
#include "src/core/lib/iomgr/timer.h"
|
67
|
+
#include "src/core/lib/resource_quota/arena.h"
|
37
68
|
#include "src/core/lib/service_config/service_config.h"
|
38
69
|
#include "src/core/lib/service_config/service_config_call_data.h"
|
39
|
-
#include "src/core/lib/slice/
|
40
|
-
#include "src/core/lib/
|
70
|
+
#include "src/core/lib/slice/slice_refcount.h"
|
71
|
+
#include "src/core/lib/transport/byte_stream.h"
|
41
72
|
#include "src/core/lib/transport/error_utils.h"
|
42
73
|
#include "src/core/lib/transport/metadata_batch.h"
|
74
|
+
#include "src/core/lib/transport/transport.h"
|
43
75
|
#include "src/core/lib/uri/uri_parser.h"
|
44
76
|
|
45
77
|
//
|
@@ -685,7 +717,8 @@ RetryFilter::CallData::CallAttempt::CallAttempt(CallData* calld,
|
|
685
717
|
lb_call_ = calld->CreateLoadBalancedCall(&attempt_dispatch_controller_,
|
686
718
|
is_transparent_retry);
|
687
719
|
if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
|
688
|
-
gpr_log(GPR_INFO,
|
720
|
+
gpr_log(GPR_INFO,
|
721
|
+
"chand=%p calld=%p attempt=%p: created attempt, lb_call=%p",
|
689
722
|
calld->chand_, calld, this, lb_call_.get());
|
690
723
|
}
|
691
724
|
// If per_attempt_recv_timeout is set, start a timer.
|
@@ -926,7 +959,16 @@ void RetryFilter::CallData::CallAttempt::AddBatchesForPendingBatches(
|
|
926
959
|
has_send_ops = true;
|
927
960
|
}
|
928
961
|
if (batch->send_message) {
|
929
|
-
|
962
|
+
// Cases where we can't start this send_message op:
|
963
|
+
// - We are currently replaying a previous cached send_message op.
|
964
|
+
// - We have already replayed all send_message ops, including this
|
965
|
+
// one. (This can happen if a send_message op is in the same
|
966
|
+
// batch as a recv op, the send_message op has already completed
|
967
|
+
// but the recv op hasn't, and then a subsequent batch with another
|
968
|
+
// recv op is started from the surface.)
|
969
|
+
if (completed_send_message_count_ < started_send_message_count_ ||
|
970
|
+
completed_send_message_count_ ==
|
971
|
+
(calld_->send_messages_.size() + !pending->send_ops_cached)) {
|
930
972
|
continue;
|
931
973
|
}
|
932
974
|
has_send_ops = true;
|
@@ -1498,6 +1540,10 @@ void RetryFilter::CallData::CallAttempt::BatchData::RecvMessageReady(
|
|
1498
1540
|
// If this attempt has been abandoned, then we're not going to use the
|
1499
1541
|
// result of this recv_message op, so do nothing.
|
1500
1542
|
if (call_attempt->abandoned_) {
|
1543
|
+
// The transport will not invoke recv_trailing_metadata_ready until the byte
|
1544
|
+
// stream for any recv_message op is orphaned, so we do that here to ensure
|
1545
|
+
// that any pending recv_trailing_metadata op can complete.
|
1546
|
+
call_attempt->recv_message_.reset();
|
1501
1547
|
GRPC_CALL_COMBINER_STOP(calld->call_combiner_,
|
1502
1548
|
"recv_message_ready for abandoned attempt");
|
1503
1549
|
return;
|
@@ -1679,6 +1725,13 @@ void RetryFilter::CallData::CallAttempt::BatchData::RunClosuresForCompletedCall(
|
|
1679
1725
|
|
1680
1726
|
void RetryFilter::CallData::CallAttempt::BatchData::RecvTrailingMetadataReady(
|
1681
1727
|
void* arg, grpc_error_handle error) {
|
1728
|
+
// Add a ref to the outer call stack. This works around a TSAN reported
|
1729
|
+
// failure that we do not understand, but since we expect the lifetime of
|
1730
|
+
// this code to be relatively short we think it's OK to work around for now.
|
1731
|
+
// TSAN failure:
|
1732
|
+
// https://source.cloud.google.com/results/invocations/5b122974-4977-4862-beb1-dc1af9fbbd1d/targets/%2F%2Ftest%2Fcore%2Fend2end:h2_census_test@max_concurrent_streams@poller%3Dpoll/log
|
1733
|
+
RefCountedPtr<grpc_call_stack> owning_call_stack =
|
1734
|
+
static_cast<BatchData*>(arg)->call_attempt_->calld_->owning_call_->Ref();
|
1682
1735
|
RefCountedPtr<BatchData> batch_data(static_cast<BatchData*>(arg));
|
1683
1736
|
CallAttempt* call_attempt = batch_data->call_attempt_.get();
|
1684
1737
|
CallData* calld = call_attempt->calld_;
|
@@ -2153,7 +2206,8 @@ RetryFilter::CallData::~CallData() {
|
|
2153
2206
|
|
2154
2207
|
void RetryFilter::CallData::StartTransportStreamOpBatch(
|
2155
2208
|
grpc_transport_stream_op_batch* batch) {
|
2156
|
-
if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)
|
2209
|
+
if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace) &&
|
2210
|
+
!GRPC_TRACE_FLAG_ENABLED(grpc_trace_channel)) {
|
2157
2211
|
gpr_log(GPR_INFO, "chand=%p calld=%p: batch started from surface: %s",
|
2158
2212
|
chand_, this, grpc_transport_stream_op_batch_string(batch).c_str());
|
2159
2213
|
}
|
@@ -2632,6 +2686,7 @@ const grpc_channel_filter kRetryFilterVtable = {
|
|
2632
2686
|
RetryFilter::CallData::Destroy,
|
2633
2687
|
sizeof(RetryFilter),
|
2634
2688
|
RetryFilter::Init,
|
2689
|
+
grpc_channel_stack_no_post_init,
|
2635
2690
|
RetryFilter::Destroy,
|
2636
2691
|
RetryFilter::GetChannelInfo,
|
2637
2692
|
"retry_filter",
|
@@ -18,27 +18,26 @@
|
|
18
18
|
|
19
19
|
#include "src/core/ext/filters/client_channel/retry_service_config.h"
|
20
20
|
|
21
|
-
#include <ctype.h>
|
22
21
|
#include <stdio.h>
|
23
22
|
#include <string.h>
|
24
23
|
|
25
|
-
#include
|
24
|
+
#include <algorithm>
|
25
|
+
#include <map>
|
26
|
+
#include <string>
|
27
|
+
#include <utility>
|
28
|
+
#include <vector>
|
29
|
+
|
30
|
+
#include "absl/memory/memory.h"
|
26
31
|
#include "absl/types/optional.h"
|
27
32
|
|
28
|
-
#include <grpc/
|
33
|
+
#include <grpc/status.h>
|
29
34
|
#include <grpc/support/log.h>
|
30
|
-
#include <grpc/support/string_util.h>
|
31
35
|
|
32
|
-
#include "src/core/ext/filters/client_channel/client_channel.h"
|
33
|
-
#include "src/core/ext/filters/client_channel/lb_policy_registry.h"
|
34
36
|
#include "src/core/lib/channel/channel_args.h"
|
35
37
|
#include "src/core/lib/channel/status_util.h"
|
36
38
|
#include "src/core/lib/config/core_configuration.h"
|
37
39
|
#include "src/core/lib/gpr/string.h"
|
38
|
-
#include "src/core/lib/gprpp/memory.h"
|
39
40
|
#include "src/core/lib/json/json_util.h"
|
40
|
-
#include "src/core/lib/resolver/server_address.h"
|
41
|
-
#include "src/core/lib/uri/uri_parser.h"
|
42
41
|
|
43
42
|
// As per the retry design, we do not allow more than 5 retry attempts.
|
44
43
|
#define MAX_MAX_RETRY_ATTEMPTS 5
|