grpc 1.62.0 → 1.69.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Makefile +552 -2066
- data/include/grpc/byte_buffer.h +1 -2
- data/include/grpc/census.h +1 -2
- data/include/grpc/compression.h +2 -4
- data/include/grpc/credentials.h +1221 -0
- data/include/grpc/event_engine/README.md +1 -1
- data/include/grpc/event_engine/event_engine.h +41 -15
- data/include/grpc/event_engine/extensible.h +3 -0
- data/include/grpc/event_engine/internal/memory_allocator_impl.h +2 -3
- data/include/grpc/event_engine/internal/slice_cast.h +1 -1
- data/include/grpc/event_engine/memory_allocator.h +2 -4
- data/include/grpc/event_engine/memory_request.h +18 -1
- data/include/grpc/event_engine/slice.h +2 -5
- data/include/grpc/event_engine/slice_buffer.h +5 -8
- data/include/grpc/grpc.h +9 -10
- data/include/grpc/grpc_audit_logging.h +1 -2
- data/include/grpc/grpc_crl_provider.h +4 -3
- data/include/grpc/grpc_cronet.h +1 -2
- data/include/grpc/grpc_posix.h +2 -4
- data/include/grpc/grpc_security.h +2 -1175
- data/include/grpc/impl/call.h +1 -2
- data/include/grpc/impl/channel_arg_names.h +14 -7
- data/include/grpc/impl/grpc_types.h +2 -4
- data/include/grpc/impl/slice_type.h +0 -1
- data/include/grpc/module.modulemap +3 -0
- data/include/grpc/passive_listener.h +62 -0
- data/include/grpc/slice.h +1 -2
- data/include/grpc/slice_buffer.h +1 -2
- data/include/grpc/support/alloc.h +0 -1
- data/include/grpc/support/json.h +0 -1
- data/include/grpc/support/log.h +36 -63
- data/include/grpc/support/metrics.h +66 -0
- data/include/grpc/support/port_platform.h +31 -1
- data/include/grpc/support/string_util.h +0 -1
- data/include/grpc/support/sync.h +0 -1
- data/include/grpc/support/sync_abseil.h +0 -1
- data/include/grpc/support/sync_custom.h +0 -1
- data/include/grpc/support/sync_generic.h +3 -6
- data/include/grpc/support/sync_posix.h +1 -3
- data/include/grpc/support/time.h +0 -1
- data/src/core/channelz/channel_trace.cc +180 -0
- data/src/core/channelz/channel_trace.h +138 -0
- data/src/core/channelz/channelz.cc +670 -0
- data/src/core/channelz/channelz.h +421 -0
- data/src/core/channelz/channelz_registry.cc +281 -0
- data/src/core/channelz/channelz_registry.h +101 -0
- data/src/core/client_channel/backup_poller.cc +25 -16
- data/src/core/client_channel/client_channel.cc +1426 -0
- data/src/core/client_channel/client_channel.h +245 -0
- data/src/core/client_channel/client_channel_factory.cc +2 -2
- data/src/core/client_channel/client_channel_factory.h +1 -2
- data/src/core/client_channel/client_channel_filter.cc +437 -944
- data/src/core/client_channel/client_channel_filter.h +30 -93
- data/src/core/client_channel/client_channel_internal.h +27 -12
- data/src/core/client_channel/client_channel_plugin.cc +3 -18
- data/src/core/client_channel/client_channel_service_config.cc +2 -3
- data/src/core/client_channel/client_channel_service_config.h +12 -13
- data/src/core/client_channel/config_selector.h +26 -26
- data/src/core/client_channel/connector.h +4 -4
- data/src/core/client_channel/direct_channel.cc +83 -0
- data/src/core/client_channel/direct_channel.h +101 -0
- data/src/core/client_channel/dynamic_filters.cc +19 -16
- data/src/core/client_channel/dynamic_filters.h +10 -11
- data/src/core/client_channel/global_subchannel_pool.cc +2 -2
- data/src/core/client_channel/global_subchannel_pool.h +2 -3
- data/src/core/client_channel/lb_metadata.cc +120 -0
- data/src/core/client_channel/lb_metadata.h +55 -0
- data/src/core/client_channel/load_balanced_call_destination.cc +273 -0
- data/src/core/client_channel/load_balanced_call_destination.h +48 -0
- data/src/core/client_channel/local_subchannel_pool.cc +6 -7
- data/src/core/client_channel/local_subchannel_pool.h +1 -1
- data/src/core/client_channel/retry_filter.cc +8 -17
- data/src/core/client_channel/retry_filter.h +10 -18
- data/src/core/client_channel/retry_filter_legacy_call_data.cc +215 -324
- data/src/core/client_channel/retry_filter_legacy_call_data.h +20 -23
- data/src/core/client_channel/retry_service_config.cc +10 -13
- data/src/core/client_channel/retry_service_config.h +9 -11
- data/src/core/client_channel/retry_throttle.cc +3 -4
- data/src/core/client_channel/retry_throttle.h +7 -9
- data/src/core/client_channel/subchannel.cc +295 -176
- data/src/core/client_channel/subchannel.h +53 -46
- data/src/core/client_channel/subchannel_interface_internal.h +1 -1
- data/src/core/client_channel/subchannel_pool_interface.cc +1 -5
- data/src/core/client_channel/subchannel_pool_interface.h +5 -8
- data/src/core/client_channel/subchannel_stream_client.cc +47 -65
- data/src/core/client_channel/subchannel_stream_client.h +12 -16
- data/src/core/config/config_vars.cc +151 -0
- data/src/core/config/config_vars.h +128 -0
- data/src/core/config/config_vars_non_generated.cc +49 -0
- data/src/core/config/core_configuration.cc +111 -0
- data/src/core/config/core_configuration.h +242 -0
- data/src/core/config/load_config.cc +77 -0
- data/src/core/config/load_config.h +54 -0
- data/src/core/ext/filters/backend_metrics/backend_metric_filter.cc +30 -80
- data/src/core/ext/filters/backend_metrics/backend_metric_filter.h +5 -15
- data/src/core/ext/filters/backend_metrics/backend_metric_provider.h +7 -0
- data/src/core/ext/filters/census/grpc_context.cc +7 -10
- data/src/core/ext/filters/channel_idle/idle_filter_state.cc +1 -2
- data/src/core/ext/filters/channel_idle/idle_filter_state.h +0 -1
- data/src/core/ext/filters/channel_idle/legacy_channel_idle_filter.cc +48 -57
- data/src/core/ext/filters/channel_idle/legacy_channel_idle_filter.h +22 -19
- data/src/core/ext/filters/fault_injection/fault_injection_filter.cc +25 -29
- data/src/core/ext/filters/fault_injection/fault_injection_filter.h +8 -7
- data/src/core/ext/filters/fault_injection/fault_injection_service_config_parser.cc +2 -3
- data/src/core/ext/filters/fault_injection/fault_injection_service_config_parser.h +7 -10
- data/src/core/ext/filters/gcp_authentication/gcp_authentication_filter.cc +205 -0
- data/src/core/ext/filters/gcp_authentication/gcp_authentication_filter.h +97 -0
- data/src/core/ext/filters/gcp_authentication/gcp_authentication_service_config_parser.cc +80 -0
- data/src/core/ext/filters/gcp_authentication/gcp_authentication_service_config_parser.h +86 -0
- data/src/core/ext/filters/http/client/http_client_filter.cc +19 -12
- data/src/core/ext/filters/http/client/http_client_filter.h +8 -6
- data/src/core/ext/filters/http/client_authority_filter.cc +13 -11
- data/src/core/ext/filters/http/client_authority_filter.h +8 -5
- data/src/core/ext/filters/http/http_filters_plugin.cc +16 -37
- data/src/core/ext/filters/http/message_compress/compression_filter.cc +67 -61
- data/src/core/ext/filters/http/message_compress/compression_filter.h +18 -13
- data/src/core/ext/filters/http/server/http_server_filter.cc +19 -16
- data/src/core/ext/filters/http/server/http_server_filter.h +8 -6
- data/src/core/ext/filters/message_size/message_size_filter.cc +51 -55
- data/src/core/ext/filters/message_size/message_size_filter.h +20 -16
- data/src/core/ext/filters/rbac/rbac_filter.cc +14 -19
- data/src/core/ext/filters/rbac/rbac_filter.h +8 -7
- data/src/core/ext/filters/rbac/rbac_service_config_parser.cc +18 -12
- data/src/core/ext/filters/rbac/rbac_service_config_parser.h +3 -5
- data/src/core/ext/filters/stateful_session/stateful_session_filter.cc +26 -28
- data/src/core/ext/filters/stateful_session/stateful_session_filter.h +8 -6
- data/src/core/ext/filters/stateful_session/stateful_session_service_config_parser.cc +2 -3
- data/src/core/ext/filters/stateful_session/stateful_session_service_config_parser.h +6 -8
- data/src/core/ext/transport/chttp2/alpn/alpn.cc +4 -5
- data/src/core/ext/transport/chttp2/alpn/alpn.h +0 -1
- data/src/core/ext/transport/chttp2/client/chttp2_connector.cc +87 -124
- data/src/core/ext/transport/chttp2/client/chttp2_connector.h +5 -12
- data/src/core/ext/transport/chttp2/server/chttp2_server.cc +465 -316
- data/src/core/ext/transport/chttp2/server/chttp2_server.h +34 -1
- data/src/core/ext/transport/chttp2/transport/bin_decoder.cc +26 -38
- data/src/core/ext/transport/chttp2/transport/bin_decoder.h +1 -3
- data/src/core/ext/transport/chttp2/transport/bin_encoder.cc +10 -12
- data/src/core/ext/transport/chttp2/transport/bin_encoder.h +1 -3
- data/src/core/ext/transport/chttp2/transport/call_tracer_wrapper.cc +53 -0
- data/src/core/ext/transport/chttp2/transport/call_tracer_wrapper.h +72 -0
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +699 -622
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.h +37 -20
- data/src/core/ext/transport/chttp2/transport/context_list_entry.h +14 -12
- data/src/core/ext/transport/chttp2/transport/decode_huff.cc +2 -2
- data/src/core/ext/transport/chttp2/transport/decode_huff.h +2 -2
- data/src/core/ext/transport/chttp2/transport/flow_control.cc +11 -16
- data/src/core/ext/transport/chttp2/transport/flow_control.h +4 -9
- data/src/core/ext/transport/chttp2/transport/frame.cc +25 -8
- data/src/core/ext/transport/chttp2/transport/frame.h +11 -2
- data/src/core/ext/transport/chttp2/transport/frame_data.cc +21 -22
- data/src/core/ext/transport/chttp2/transport/frame_data.h +3 -5
- data/src/core/ext/transport/chttp2/transport/frame_goaway.cc +7 -10
- data/src/core/ext/transport/chttp2/transport/frame_goaway.h +1 -3
- data/src/core/ext/transport/chttp2/transport/frame_ping.cc +16 -21
- data/src/core/ext/transport/chttp2/transport/frame_ping.h +1 -3
- data/src/core/ext/transport/chttp2/transport/frame_rst_stream.cc +19 -20
- data/src/core/ext/transport/chttp2/transport/frame_rst_stream.h +6 -6
- data/src/core/ext/transport/chttp2/transport/frame_security.cc +82 -0
- data/src/core/ext/transport/chttp2/transport/frame_security.h +44 -0
- data/src/core/ext/transport/chttp2/transport/frame_settings.cc +36 -21
- data/src/core/ext/transport/chttp2/transport/frame_settings.h +2 -4
- data/src/core/ext/transport/chttp2/transport/frame_window_update.cc +31 -10
- data/src/core/ext/transport/chttp2/transport/frame_window_update.h +4 -4
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.cc +21 -22
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.h +18 -15
- data/src/core/ext/transport/chttp2/transport/hpack_encoder_table.cc +10 -10
- data/src/core/ext/transport/chttp2/transport/hpack_encoder_table.h +3 -4
- data/src/core/ext/transport/chttp2/transport/hpack_parse_result.cc +4 -5
- data/src/core/ext/transport/chttp2/transport/hpack_parse_result.h +5 -8
- data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +80 -123
- data/src/core/ext/transport/chttp2/transport/hpack_parser.h +5 -8
- data/src/core/ext/transport/chttp2/transport/hpack_parser_table.cc +45 -20
- data/src/core/ext/transport/chttp2/transport/hpack_parser_table.h +28 -9
- data/src/core/ext/transport/chttp2/transport/http2_settings.cc +12 -4
- data/src/core/ext/transport/chttp2/transport/http2_settings.h +10 -4
- data/src/core/ext/transport/chttp2/transport/huffsyms.cc +2 -2
- data/src/core/ext/transport/chttp2/transport/internal.h +73 -81
- data/src/core/ext/transport/chttp2/transport/legacy_frame.h +1 -0
- data/src/core/ext/transport/chttp2/transport/parsing.cc +140 -131
- data/src/core/ext/transport/chttp2/transport/ping_abuse_policy.cc +3 -4
- data/src/core/ext/transport/chttp2/transport/ping_abuse_policy.h +1 -1
- data/src/core/ext/transport/chttp2/transport/ping_callbacks.cc +4 -7
- data/src/core/ext/transport/chttp2/transport/ping_callbacks.h +2 -7
- data/src/core/ext/transport/chttp2/transport/ping_rate_policy.cc +33 -19
- data/src/core/ext/transport/chttp2/transport/ping_rate_policy.h +6 -7
- data/src/core/ext/transport/chttp2/transport/stream_lists.cc +19 -21
- data/src/core/ext/transport/chttp2/transport/stream_lists.h +65 -0
- data/src/core/ext/transport/chttp2/transport/varint.cc +2 -2
- data/src/core/ext/transport/chttp2/transport/varint.h +2 -3
- data/src/core/ext/transport/chttp2/transport/write_size_policy.cc +4 -4
- data/src/core/ext/transport/chttp2/transport/write_size_policy.h +2 -3
- data/src/core/ext/transport/chttp2/transport/writing.cc +196 -155
- data/src/core/ext/transport/inproc/inproc_transport.cc +154 -70
- data/src/core/ext/transport/inproc/inproc_transport.h +2 -5
- data/src/core/ext/transport/inproc/legacy_inproc_transport.cc +136 -137
- data/src/core/ext/transport/inproc/legacy_inproc_transport.h +1 -4
- data/src/core/ext/upb-gen/envoy/admin/v3/certs.upb.h +278 -234
- data/src/core/ext/upb-gen/envoy/admin/v3/certs.upb_minitable.c +73 -57
- data/src/core/ext/upb-gen/envoy/admin/v3/certs.upb_minitable.h +10 -4
- data/src/core/ext/upb-gen/envoy/admin/v3/clusters.upb.h +325 -269
- data/src/core/ext/upb-gen/envoy/admin/v3/clusters.upb_minitable.c +87 -77
- data/src/core/ext/upb-gen/envoy/admin/v3/clusters.upb_minitable.h +9 -4
- data/src/core/ext/upb-gen/envoy/admin/v3/config_dump.upb.h +277 -230
- data/src/core/ext/upb-gen/envoy/admin/v3/config_dump.upb_minitable.c +75 -61
- data/src/core/ext/upb-gen/envoy/admin/v3/config_dump.upb_minitable.h +10 -4
- data/src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb.h +1074 -886
- data/src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb_minitable.c +299 -247
- data/src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb_minitable.h +24 -4
- data/src/core/ext/upb-gen/envoy/admin/v3/init_dump.upb.h +87 -80
- data/src/core/ext/upb-gen/envoy/admin/v3/init_dump.upb_minitable.c +22 -12
- data/src/core/ext/upb-gen/envoy/admin/v3/init_dump.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/envoy/admin/v3/listeners.upb.h +103 -88
- data/src/core/ext/upb-gen/envoy/admin/v3/listeners.upb_minitable.c +28 -18
- data/src/core/ext/upb-gen/envoy/admin/v3/listeners.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/envoy/admin/v3/memory.upb.h +54 -46
- data/src/core/ext/upb-gen/envoy/admin/v3/memory.upb_minitable.c +20 -14
- data/src/core/ext/upb-gen/envoy/admin/v3/memory.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/admin/v3/metrics.upb.h +33 -28
- data/src/core/ext/upb-gen/envoy/admin/v3/metrics.upb_minitable.c +14 -8
- data/src/core/ext/upb-gen/envoy/admin/v3/metrics.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/admin/v3/mutex_stats.upb.h +33 -28
- data/src/core/ext/upb-gen/envoy/admin/v3/mutex_stats.upb_minitable.c +14 -8
- data/src/core/ext/upb-gen/envoy/admin/v3/mutex_stats.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/admin/v3/server_info.upb.h +407 -321
- data/src/core/ext/upb-gen/envoy/admin/v3/server_info.upb_minitable.c +104 -92
- data/src/core/ext/upb-gen/envoy/admin/v3/server_info.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/envoy/admin/v3/tap.upb.h +30 -24
- data/src/core/ext/upb-gen/envoy/admin/v3/tap.upb_minitable.c +14 -10
- data/src/core/ext/upb-gen/envoy/admin/v3/tap.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/annotations/deprecation.upb.h +45 -36
- data/src/core/ext/upb-gen/envoy/annotations/deprecation.upb_minitable.c +11 -5
- data/src/core/ext/upb-gen/envoy/annotations/deprecation.upb_minitable.h +5 -4
- data/src/core/ext/upb-gen/envoy/annotations/resource.upb.h +38 -24
- data/src/core/ext/upb-gen/envoy/annotations/resource.upb_minitable.c +17 -10
- data/src/core/ext/upb-gen/envoy/annotations/resource.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb.h +578 -477
- data/src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb_minitable.c +194 -148
- data/src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb_minitable.h +21 -4
- data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb.h +1501 -1112
- data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb_minitable.c +419 -331
- data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb_minitable.h +29 -4
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb.h +194 -156
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb_minitable.c +50 -50
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb_minitable.h +8 -4
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb.h +1627 -1141
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb_minitable.c +450 -395
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb_minitable.h +31 -4
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb.h +41 -32
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb_minitable.c +16 -12
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb.h +360 -192
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb_minitable.c +84 -73
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb.h +660 -512
- data/src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb_minitable.c +214 -160
- data/src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb_minitable.h +20 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/address.upb.h +384 -313
- data/src/core/ext/upb-gen/envoy/config/core/v3/address.upb_minitable.c +114 -94
- data/src/core/ext/upb-gen/envoy/config/core/v3/address.upb_minitable.h +13 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/backoff.upb.h +34 -26
- data/src/core/ext/upb-gen/envoy/config/core/v3/backoff.upb_minitable.c +14 -14
- data/src/core/ext/upb-gen/envoy/config/core/v3/backoff.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/base.upb.h +1473 -692
- data/src/core/ext/upb-gen/envoy/config/core/v3/base.upb_minitable.c +450 -223
- data/src/core/ext/upb-gen/envoy/config/core/v3/base.upb_minitable.h +39 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb.h +413 -347
- data/src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb_minitable.c +113 -91
- data/src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb_minitable.h +12 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/event_service_config.upb.h +26 -20
- data/src/core/ext/upb-gen/envoy/config/core/v3/event_service_config.upb_minitable.c +13 -7
- data/src/core/ext/upb-gen/envoy/config/core/v3/event_service_config.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/extension.upb.h +30 -24
- data/src/core/ext/upb-gen/envoy/config/core/v3/extension.upb_minitable.c +14 -10
- data/src/core/ext/upb-gen/envoy/config/core/v3/extension.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_method_list.upb.h +87 -80
- data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_method_list.upb_minitable.c +22 -12
- data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_method_list.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb.h +681 -474
- data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb_minitable.c +213 -162
- data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb_minitable.h +19 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb.h +808 -634
- data/src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb_minitable.c +192 -150
- data/src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb_minitable.h +14 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb.h +56 -47
- data/src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb_minitable.c +16 -10
- data/src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb.h +42 -34
- data/src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb_minitable.c +17 -11
- data/src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb.h +872 -641
- data/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb_minitable.c +266 -236
- data/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb_minitable.h +21 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb.h +72 -65
- data/src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb_minitable.c +23 -15
- data/src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb.h +77 -65
- data/src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb_minitable.c +24 -16
- data/src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb.h +101 -87
- data/src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb_minitable.c +30 -20
- data/src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb.h +118 -97
- data/src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb_minitable.c +35 -25
- data/src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/udp_socket_config.upb.h +34 -26
- data/src/core/ext/upb-gen/envoy/config/core/v3/udp_socket_config.upb_minitable.c +14 -14
- data/src/core/ext/upb-gen/envoy/config/core/v3/udp_socket_config.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb.h +197 -149
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb_minitable.c +59 -49
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb_minitable.h +9 -4
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb.h +390 -291
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb_minitable.c +118 -90
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb_minitable.h +12 -4
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb.h +578 -313
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb_minitable.c +132 -78
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb_minitable.h +12 -4
- data/src/core/ext/upb-gen/envoy/config/listener/v3/api_listener.upb.h +23 -18
- data/src/core/ext/upb-gen/envoy/config/listener/v3/api_listener.upb_minitable.c +12 -10
- data/src/core/ext/upb-gen/envoy/config/listener/v3/api_listener.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb.h +615 -482
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb_minitable.c +165 -132
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb_minitable.h +15 -4
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb.h +561 -472
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb_minitable.c +134 -116
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb_minitable.h +12 -4
- data/src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb.h +172 -82
- data/src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb_minitable.c +33 -41
- data/src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/config/listener/v3/udp_listener_config.upb.h +52 -40
- data/src/core/ext/upb-gen/envoy/config/listener/v3/udp_listener_config.upb_minitable.c +21 -29
- data/src/core/ext/upb-gen/envoy/config/listener/v3/udp_listener_config.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb.h +55 -44
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb_minitable.c +22 -16
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb.h +340 -283
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb_minitable.c +107 -77
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb_minitable.h +13 -4
- data/src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb.h +433 -362
- data/src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb_minitable.c +127 -85
- data/src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb_minitable.h +15 -4
- data/src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb.h +665 -494
- data/src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb_minitable.c +195 -161
- data/src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb_minitable.h +16 -4
- data/src/core/ext/upb-gen/envoy/config/route/v3/route.upb.h +391 -331
- data/src/core/ext/upb-gen/envoy/config/route/v3/route.upb_minitable.c +69 -77
- data/src/core/ext/upb-gen/envoy/config/route/v3/route.upb_minitable.h +8 -4
- data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb.h +3886 -3149
- data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb_minitable.c +1036 -851
- data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb_minitable.h +63 -4
- data/src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb.h +114 -95
- data/src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb_minitable.c +39 -25
- data/src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb_minitable.h +8 -4
- data/src/core/ext/upb-gen/envoy/config/tap/v3/common.upb.h +541 -434
- data/src/core/ext/upb-gen/envoy/config/tap/v3/common.upb_minitable.c +171 -135
- data/src/core/ext/upb-gen/envoy/config/tap/v3/common.upb_minitable.h +17 -4
- data/src/core/ext/upb-gen/envoy/config/trace/v3/datadog.upb.h +134 -28
- data/src/core/ext/upb-gen/envoy/config/trace/v3/datadog.upb_minitable.c +43 -12
- data/src/core/ext/upb-gen/envoy/config/trace/v3/datadog.upb_minitable.h +8 -4
- data/src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb.h +30 -24
- data/src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb_minitable.c +14 -10
- data/src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/config/trace/v3/http_tracer.upb.h +51 -40
- data/src/core/ext/upb-gen/envoy/config/trace/v3/http_tracer.upb_minitable.c +24 -18
- data/src/core/ext/upb-gen/envoy/config/trace/v3/http_tracer.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb.h +65 -59
- data/src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb_minitable.c +18 -16
- data/src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb.h +157 -140
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb_minitable.c +39 -33
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb.h +85 -69
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb_minitable.c +24 -18
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/config/trace/v3/service.upb.h +23 -18
- data/src/core/ext/upb-gen/envoy/config/trace/v3/service.upb_minitable.c +12 -10
- data/src/core/ext/upb-gen/envoy/config/trace/v3/service.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb.h +78 -62
- data/src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb_minitable.c +29 -29
- data/src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/envoy/config/trace/v3/trace.upb.h +5 -4
- data/src/core/ext/upb-gen/envoy/config/trace/v3/trace.upb_minitable.c +3 -1
- data/src/core/ext/upb-gen/envoy/config/trace/v3/trace.upb_minitable.h +5 -4
- data/src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb.h +77 -60
- data/src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb_minitable.c +29 -25
- data/src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb.h +65 -54
- data/src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb_minitable.c +25 -19
- data/src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb.h +1104 -836
- data/src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb_minitable.c +359 -304
- data/src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb_minitable.h +21 -4
- data/src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb.h +40 -39
- data/src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb_minitable.c +10 -4
- data/src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3/fault.upb.h +119 -92
- data/src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3/fault.upb_minitable.c +52 -30
- data/src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3/fault.upb_minitable.h +10 -4
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb.h +248 -208
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb_minitable.c +65 -67
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb_minitable.h +8 -4
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upb.h +444 -0
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upb_minitable.c +135 -0
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upb_minitable.h +38 -0
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb.h +113 -62
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb_minitable.c +36 -30
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb.h +181 -157
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb_minitable.c +43 -35
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb.h +60 -48
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb_minitable.c +27 -17
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h +1546 -1234
- data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb_minitable.c +422 -351
- data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb_minitable.h +26 -4
- data/src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb.h +23 -18
- data/src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb_minitable.c +12 -10
- data/src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb.h +78 -58
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb_minitable.c +22 -26
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb.h +145 -112
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb_minitable.c +60 -46
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb_minitable.h +10 -4
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb.h +19 -16
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb_minitable.c +10 -4
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb.h +81 -62
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb_minitable.c +29 -23
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb.h +23 -18
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb_minitable.c +12 -10
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/http_11_proxy/v3/upstream_http_11_connect.upb.h +106 -0
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/http_11_proxy/v3/upstream_http_11_connect.upb_minitable.c +52 -0
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/http_11_proxy/v3/upstream_http_11_connect.upb_minitable.h +32 -0
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/cert.upb.h +5 -4
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/cert.upb_minitable.c +3 -1
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/cert.upb_minitable.h +5 -4
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb.h +662 -498
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb_minitable.c +142 -122
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb_minitable.h +14 -4
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb.h +109 -84
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb_minitable.c +44 -36
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb_minitable.h +8 -4
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb.h +574 -461
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb_minitable.c +153 -137
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb_minitable.h +12 -4
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb.h +70 -59
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb_minitable.c +24 -16
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb.h +248 -189
- data/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb_minitable.c +75 -73
- data/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb_minitable.h +9 -4
- data/src/core/ext/upb-gen/envoy/service/discovery/v3/ads.upb.h +12 -10
- data/src/core/ext/upb-gen/envoy/service/discovery/v3/ads.upb_minitable.c +8 -2
- data/src/core/ext/upb-gen/envoy/service/discovery/v3/ads.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb.h +852 -714
- data/src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb_minitable.c +219 -171
- data/src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb_minitable.h +19 -4
- data/src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb.h +116 -102
- data/src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb_minitable.c +32 -22
- data/src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/envoy/service/status/v3/csds.upb.h +355 -292
- data/src/core/ext/upb-gen/envoy/service/status/v3/csds.upb_minitable.c +100 -78
- data/src/core/ext/upb-gen/envoy/service/status/v3/csds.upb_minitable.h +10 -4
- data/src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb.h +37 -30
- data/src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb_minitable.c +17 -11
- data/src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb.h +91 -75
- data/src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb_minitable.c +36 -18
- data/src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb_minitable.h +9 -4
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb.h +33 -26
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb_minitable.c +15 -9
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/http_inputs.upb.h +75 -64
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/http_inputs.upb_minitable.c +38 -16
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/http_inputs.upb_minitable.h +10 -4
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb.h +89 -75
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb_minitable.c +27 -17
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/node.upb.h +56 -47
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/node.upb_minitable.c +16 -10
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/node.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/number.upb.h +35 -28
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/number.upb_minitable.c +15 -9
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/number.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/path.upb.h +26 -20
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/path.upb_minitable.c +13 -7
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/path.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb.h +76 -60
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb_minitable.c +36 -26
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb_minitable.h +8 -4
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/status_code_input.upb.h +19 -16
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/status_code_input.upb_minitable.c +13 -3
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/status_code_input.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/string.upb.h +142 -93
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/string.upb_minitable.c +45 -24
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/string.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/struct.upb.h +75 -63
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/struct.upb_minitable.c +23 -13
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/struct.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb.h +156 -125
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb_minitable.c +54 -36
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb_minitable.h +9 -4
- data/src/core/ext/upb-gen/envoy/type/metadata/v3/metadata.upb.h +153 -125
- data/src/core/ext/upb-gen/envoy/type/metadata/v3/metadata.upb_minitable.c +61 -31
- data/src/core/ext/upb-gen/envoy/type/metadata/v3/metadata.upb_minitable.h +12 -4
- data/src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb.h +158 -126
- data/src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb_minitable.c +64 -42
- data/src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb_minitable.h +10 -4
- data/src/core/ext/upb-gen/envoy/type/v3/hash_policy.upb.h +58 -46
- data/src/core/ext/upb-gen/envoy/type/v3/hash_policy.upb_minitable.c +28 -14
- data/src/core/ext/upb-gen/envoy/type/v3/hash_policy.upb_minitable.h +8 -4
- data/src/core/ext/upb-gen/envoy/type/v3/http.upb.h +5 -4
- data/src/core/ext/upb-gen/envoy/type/v3/http.upb_minitable.c +3 -1
- data/src/core/ext/upb-gen/envoy/type/v3/http.upb_minitable.h +5 -4
- data/src/core/ext/upb-gen/envoy/type/v3/http_status.upb.h +19 -16
- data/src/core/ext/upb-gen/envoy/type/v3/http_status.upb_minitable.c +10 -4
- data/src/core/ext/upb-gen/envoy/type/v3/http_status.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/type/v3/percent.upb.h +40 -34
- data/src/core/ext/upb-gen/envoy/type/v3/percent.upb_minitable.c +19 -9
- data/src/core/ext/upb-gen/envoy/type/v3/percent.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/envoy/type/v3/range.upb.h +68 -58
- data/src/core/ext/upb-gen/envoy/type/v3/range.upb_minitable.c +30 -16
- data/src/core/ext/upb-gen/envoy/type/v3/range.upb_minitable.h +8 -4
- data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_strategy.upb.h +67 -54
- data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_strategy.upb_minitable.c +27 -17
- data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_strategy.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_unit.upb.h +5 -4
- data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_unit.upb_minitable.c +3 -1
- data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_unit.upb_minitable.h +5 -4
- data/src/core/ext/upb-gen/envoy/type/v3/semantic_version.upb.h +33 -28
- data/src/core/ext/upb-gen/envoy/type/v3/semantic_version.upb_minitable.c +14 -8
- data/src/core/ext/upb-gen/envoy/type/v3/semantic_version.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/type/v3/token_bucket.upb.h +41 -32
- data/src/core/ext/upb-gen/envoy/type/v3/token_bucket.upb_minitable.c +16 -12
- data/src/core/ext/upb-gen/envoy/type/v3/token_bucket.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/google/api/annotations.upb.h +24 -12
- data/src/core/ext/upb-gen/google/api/annotations.upb_minitable.c +6 -3
- data/src/core/ext/upb-gen/google/api/annotations.upb_minitable.h +5 -4
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb.h +684 -528
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb_minitable.c +203 -166
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb_minitable.h +18 -4
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb.h +1075 -547
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb_minitable.c +296 -178
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb_minitable.h +23 -4
- data/src/core/ext/upb-gen/google/api/http.upb.h +194 -166
- data/src/core/ext/upb-gen/google/api/http.upb_minitable.c +53 -39
- data/src/core/ext/upb-gen/google/api/http.upb_minitable.h +8 -4
- data/src/core/ext/upb-gen/google/api/httpbody.upb.h +59 -51
- data/src/core/ext/upb-gen/google/api/httpbody.upb_minitable.c +17 -11
- data/src/core/ext/upb-gen/google/api/httpbody.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/google/protobuf/any.upb.h +27 -22
- data/src/core/ext/upb-gen/google/protobuf/any.upb_minitable.c +12 -6
- data/src/core/ext/upb-gen/google/protobuf/any.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/google/protobuf/descriptor.upb.h +2875 -2375
- data/src/core/ext/upb-gen/google/protobuf/descriptor.upb_minitable.c +660 -618
- data/src/core/ext/upb-gen/google/protobuf/descriptor.upb_minitable.h +56 -21
- data/src/core/ext/upb-gen/google/protobuf/duration.upb.h +27 -22
- data/src/core/ext/upb-gen/google/protobuf/duration.upb_minitable.c +12 -6
- data/src/core/ext/upb-gen/google/protobuf/duration.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/google/protobuf/empty.upb.h +13 -10
- data/src/core/ext/upb-gen/google/protobuf/empty.upb_minitable.c +8 -2
- data/src/core/ext/upb-gen/google/protobuf/empty.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/google/protobuf/struct.upb.h +161 -120
- data/src/core/ext/upb-gen/google/protobuf/struct.upb_minitable.c +54 -38
- data/src/core/ext/upb-gen/google/protobuf/struct.upb_minitable.h +9 -4
- data/src/core/ext/upb-gen/google/protobuf/timestamp.upb.h +27 -22
- data/src/core/ext/upb-gen/google/protobuf/timestamp.upb_minitable.c +12 -6
- data/src/core/ext/upb-gen/google/protobuf/timestamp.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/google/protobuf/wrappers.upb.h +132 -112
- data/src/core/ext/upb-gen/google/protobuf/wrappers.upb_minitable.c +66 -28
- data/src/core/ext/upb-gen/google/protobuf/wrappers.upb_minitable.h +14 -4
- data/src/core/ext/upb-gen/google/rpc/status.upb.h +59 -51
- data/src/core/ext/upb-gen/google/rpc/status.upb_minitable.c +17 -11
- data/src/core/ext/upb-gen/google/rpc/status.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb.h +119 -96
- data/src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb_minitable.c +48 -30
- data/src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb_minitable.h +9 -4
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb.h +90 -65
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb_minitable.c +34 -24
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb.h +640 -522
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb_minitable.c +188 -144
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb_minitable.h +17 -4
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb.h +56 -44
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb_minitable.c +23 -19
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/src/proto/grpc/health/v1/health.upb.h +34 -28
- data/src/core/ext/upb-gen/src/proto/grpc/health/v1/health.upb_minitable.c +17 -7
- data/src/core/ext/upb-gen/src/proto/grpc/health/v1/health.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb.h +294 -242
- data/src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb_minitable.c +106 -74
- data/src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb_minitable.h +14 -4
- data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb.h +108 -86
- data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb_minitable.c +36 -22
- data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb_minitable.h +8 -4
- data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb.h +553 -470
- data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb_minitable.c +128 -94
- data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb_minitable.h +14 -4
- data/src/core/ext/upb-gen/udpa/annotations/migrate.upb.h +149 -86
- data/src/core/ext/upb-gen/udpa/annotations/migrate.upb_minitable.c +47 -28
- data/src/core/ext/upb-gen/udpa/annotations/migrate.upb_minitable.h +8 -4
- data/src/core/ext/upb-gen/udpa/annotations/security.upb.h +45 -30
- data/src/core/ext/upb-gen/udpa/annotations/security.upb_minitable.c +19 -12
- data/src/core/ext/upb-gen/udpa/annotations/security.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/udpa/annotations/sensitive.upb.h +15 -12
- data/src/core/ext/upb-gen/udpa/annotations/sensitive.upb_minitable.c +5 -2
- data/src/core/ext/upb-gen/udpa/annotations/sensitive.upb_minitable.h +5 -4
- data/src/core/ext/upb-gen/udpa/annotations/status.upb.h +45 -30
- data/src/core/ext/upb-gen/udpa/annotations/status.upb_minitable.c +19 -12
- data/src/core/ext/upb-gen/udpa/annotations/status.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/udpa/annotations/versioning.upb.h +38 -24
- data/src/core/ext/upb-gen/udpa/annotations/versioning.upb_minitable.c +17 -10
- data/src/core/ext/upb-gen/udpa/annotations/versioning.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/validate/validate.upb.h +2716 -2462
- data/src/core/ext/upb-gen/validate/validate.upb_minitable.c +505 -551
- data/src/core/ext/upb-gen/validate/validate.upb_minitable.h +29 -5
- data/src/core/ext/upb-gen/xds/annotations/v3/migrate.upb.h +149 -86
- data/src/core/ext/upb-gen/xds/annotations/v3/migrate.upb_minitable.c +47 -28
- data/src/core/ext/upb-gen/xds/annotations/v3/migrate.upb_minitable.h +8 -4
- data/src/core/ext/upb-gen/xds/annotations/v3/security.upb.h +45 -30
- data/src/core/ext/upb-gen/xds/annotations/v3/security.upb_minitable.c +19 -12
- data/src/core/ext/upb-gen/xds/annotations/v3/security.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/xds/annotations/v3/sensitive.upb.h +15 -12
- data/src/core/ext/upb-gen/xds/annotations/v3/sensitive.upb_minitable.c +5 -2
- data/src/core/ext/upb-gen/xds/annotations/v3/sensitive.upb_minitable.h +5 -4
- data/src/core/ext/upb-gen/xds/annotations/v3/status.upb.h +125 -82
- data/src/core/ext/upb-gen/xds/annotations/v3/status.upb_minitable.c +49 -28
- data/src/core/ext/upb-gen/xds/annotations/v3/status.upb_minitable.h +9 -4
- data/src/core/ext/upb-gen/xds/annotations/v3/versioning.upb.h +38 -24
- data/src/core/ext/upb-gen/xds/annotations/v3/versioning.upb_minitable.c +17 -10
- data/src/core/ext/upb-gen/xds/annotations/v3/versioning.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/xds/core/v3/authority.upb.h +19 -16
- data/src/core/ext/upb-gen/xds/core/v3/authority.upb_minitable.c +10 -4
- data/src/core/ext/upb-gen/xds/core/v3/authority.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/xds/core/v3/cidr.upb.h +30 -24
- data/src/core/ext/upb-gen/xds/core/v3/cidr.upb_minitable.c +14 -10
- data/src/core/ext/upb-gen/xds/core/v3/cidr.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/xds/core/v3/collection_entry.upb.h +69 -54
- data/src/core/ext/upb-gen/xds/core/v3/collection_entry.upb_minitable.c +30 -20
- data/src/core/ext/upb-gen/xds/core/v3/collection_entry.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/xds/core/v3/context_params.upb.h +44 -27
- data/src/core/ext/upb-gen/xds/core/v3/context_params.upb_minitable.c +21 -11
- data/src/core/ext/upb-gen/xds/core/v3/context_params.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/xds/core/v3/extension.upb.h +30 -24
- data/src/core/ext/upb-gen/xds/core/v3/extension.upb_minitable.c +14 -10
- data/src/core/ext/upb-gen/xds/core/v3/extension.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/xds/core/v3/resource.upb.h +41 -32
- data/src/core/ext/upb-gen/xds/core/v3/resource.upb_minitable.c +18 -12
- data/src/core/ext/upb-gen/xds/core/v3/resource.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/xds/core/v3/resource_locator.upb.h +117 -97
- data/src/core/ext/upb-gen/xds/core/v3/resource_locator.upb_minitable.c +36 -26
- data/src/core/ext/upb-gen/xds/core/v3/resource_locator.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/xds/core/v3/resource_name.upb.h +44 -36
- data/src/core/ext/upb-gen/xds/core/v3/resource_name.upb_minitable.c +18 -16
- data/src/core/ext/upb-gen/xds/core/v3/resource_name.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb.h +150 -97
- data/src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb_minitable.c +55 -37
- data/src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb_minitable.h +9 -4
- data/src/core/ext/upb-gen/xds/service/orca/v3/orca.upb.h +51 -47
- data/src/core/ext/upb-gen/xds/service/orca/v3/orca.upb_minitable.c +15 -9
- data/src/core/ext/upb-gen/xds/service/orca/v3/orca.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb.h +30 -24
- data/src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb_minitable.c +15 -9
- data/src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/xds/type/matcher/v3/domain.upb.h +91 -82
- data/src/core/ext/upb-gen/xds/type/matcher/v3/domain.upb_minitable.c +24 -16
- data/src/core/ext/upb-gen/xds/type/matcher/v3/domain.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/xds/type/matcher/v3/http_inputs.upb.h +12 -10
- data/src/core/ext/upb-gen/xds/type/matcher/v3/http_inputs.upb_minitable.c +8 -2
- data/src/core/ext/upb-gen/xds/type/matcher/v3/http_inputs.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb.h +103 -88
- data/src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb_minitable.c +28 -18
- data/src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb.h +387 -289
- data/src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb_minitable.c +137 -103
- data/src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb_minitable.h +15 -4
- data/src/core/ext/upb-gen/xds/type/matcher/v3/range.upb.h +278 -238
- data/src/core/ext/upb-gen/xds/type/matcher/v3/range.upb_minitable.c +69 -49
- data/src/core/ext/upb-gen/xds/type/matcher/v3/range.upb_minitable.h +11 -4
- data/src/core/ext/upb-gen/xds/type/matcher/v3/regex.upb.h +40 -32
- data/src/core/ext/upb-gen/xds/type/matcher/v3/regex.upb_minitable.c +20 -10
- data/src/core/ext/upb-gen/xds/type/matcher/v3/regex.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/xds/type/matcher/v3/string.upb.h +109 -93
- data/src/core/ext/upb-gen/xds/type/matcher/v3/string.upb_minitable.c +33 -23
- data/src/core/ext/upb-gen/xds/type/matcher/v3/string.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/xds/type/v3/cel.upb.h +66 -50
- data/src/core/ext/upb-gen/xds/type/v3/cel.upb_minitable.c +27 -23
- data/src/core/ext/upb-gen/xds/type/v3/cel.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/xds/type/v3/range.upb.h +69 -58
- data/src/core/ext/upb-gen/xds/type/v3/range.upb_minitable.c +30 -16
- data/src/core/ext/upb-gen/xds/type/v3/range.upb_minitable.h +8 -4
- data/src/core/ext/upb-gen/xds/type/v3/typed_struct.upb.h +30 -24
- data/src/core/ext/upb-gen/xds/type/v3/typed_struct.upb_minitable.c +14 -10
- data/src/core/ext/upb-gen/xds/type/v3/typed_struct.upb_minitable.h +6 -4
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/certs.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/certs.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/clusters.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/clusters.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump_shared.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump_shared.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/init_dump.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/init_dump.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/listeners.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/listeners.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/memory.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/memory.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/metrics.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/metrics.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/mutex_stats.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/mutex_stats.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/server_info.upbdefs.c +88 -82
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/server_info.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/tap.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/tap.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/annotations/deprecation.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/annotations/deprecation.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/annotations/resource.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/annotations/resource.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/config/accesslog/v3/accesslog.upbdefs.c +63 -61
- data/src/core/ext/upbdefs-gen/envoy/config/accesslog/v3/accesslog.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3/bootstrap.upbdefs.c +223 -211
- data/src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3/bootstrap.upbdefs.h +12 -9
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/circuit_breaker.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/circuit_breaker.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/cluster.upbdefs.c +319 -298
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/cluster.upbdefs.h +12 -9
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/filter.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/filter.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/outlier_detection.upbdefs.c +116 -106
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/outlier_detection.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/config/common/matcher/v3/matcher.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/common/matcher/v3/matcher.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/address.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/address.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/backoff.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/backoff.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/base.upbdefs.c +187 -141
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/base.upbdefs.h +32 -9
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/config_source.upbdefs.c +12 -12
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/config_source.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/event_service_config.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/event_service_config.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/extension.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/extension.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_method_list.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_method_list.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_service.upbdefs.c +175 -165
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_service.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/health_check.upbdefs.c +199 -188
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/health_check.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_service.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_service.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_uri.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_uri.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/protocol.upbdefs.c +231 -223
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/protocol.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/proxy_protocol.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/proxy_protocol.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/resolver.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/resolver.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/socket_option.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/socket_option.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/substitution_format_string.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/substitution_format_string.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/udp_socket_config.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/udp_socket_config.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint_components.upbdefs.c +41 -37
- data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint_components.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/load_report.upbdefs.c +124 -94
- data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/load_report.upbdefs.h +12 -9
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/api_listener.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/api_listener.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener.upbdefs.c +43 -40
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener_components.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener_components.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/quic_config.upbdefs.c +22 -13
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/quic_config.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/udp_listener_config.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/udp_listener_config.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/config/metrics/v3/metrics_service.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/metrics/v3/metrics_service.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/config/metrics/v3/stats.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/metrics/v3/stats.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/config/overload/v3/overload.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/overload/v3/overload.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/config/rbac/v3/rbac.upbdefs.c +71 -66
- data/src/core/ext/upbdefs-gen/envoy/config/rbac/v3/rbac.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route_components.upbdefs.c +613 -605
- data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route_components.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/config/route/v3/scoped_route.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/route/v3/scoped_route.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/config/tap/v3/common.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/tap/v3/common.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/datadog.upbdefs.c +32 -21
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/datadog.upbdefs.h +12 -9
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/dynamic_ot.upbdefs.c +20 -18
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/dynamic_ot.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/http_tracer.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/http_tracer.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/lightstep.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/lightstep.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opencensus.upbdefs.c +64 -60
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opencensus.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opentelemetry.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opentelemetry.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/service.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/service.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/skywalking.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/skywalking.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/trace.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/trace.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/xray.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/xray.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/zipkin.upbdefs.c +23 -21
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/zipkin.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/data/accesslog/v3/accesslog.upbdefs.c +147 -143
- data/src/core/ext/upbdefs-gen/envoy/data/accesslog/v3/accesslog.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/common/fault/v3/fault.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/common/fault/v3/fault.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/fault/v3/fault.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/fault/v3/fault.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upbdefs.c +87 -0
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upbdefs.h +48 -0
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.c +38 -34
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/router/v3/router.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/router/v3/router.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.c +292 -289
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/http_11_proxy/v3/upstream_http_11_connect.upbdefs.c +53 -0
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/http_11_proxy/v3/upstream_http_11_connect.upbdefs.h +33 -0
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.c +84 -76
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.h +12 -9
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/service/discovery/v3/ads.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/service/discovery/v3/ads.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/service/discovery/v3/discovery.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/service/discovery/v3/discovery.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/service/load_stats/v3/lrs.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/service/load_stats/v3/lrs.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/service/status/v3/csds.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/service/status/v3/csds.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/type/http/v3/cookie.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/http/v3/cookie.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/type/http/v3/path_transformation.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/http/v3/path_transformation.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/filter_state.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/filter_state.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/http_inputs.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/http_inputs.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/metadata.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/metadata.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/node.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/node.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/number.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/number.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/path.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/path.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/regex.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/regex.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/status_code_input.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/status_code_input.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/string.upbdefs.c +41 -34
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/string.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/struct.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/struct.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/value.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/value.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/type/metadata/v3/metadata.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/metadata/v3/metadata.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/type/tracing/v3/custom_tag.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/tracing/v3/custom_tag.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/type/v3/hash_policy.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/v3/hash_policy.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/type/v3/http.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/v3/http.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/type/v3/http_status.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/v3/http_status.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/type/v3/percent.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/v3/percent.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/type/v3/range.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/v3/range.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_strategy.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_strategy.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_unit.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_unit.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/type/v3/semantic_version.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/v3/semantic_version.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/envoy/type/v3/token_bucket.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/v3/token_bucket.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/google/api/annotations.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/google/api/annotations.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/checked.upbdefs.c +110 -108
- data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/checked.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/syntax.upbdefs.c +103 -79
- data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/syntax.upbdefs.h +17 -9
- data/src/core/ext/upbdefs-gen/google/api/http.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/google/api/http.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/google/api/httpbody.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/google/api/httpbody.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/google/protobuf/any.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/google/protobuf/any.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/google/protobuf/descriptor.upbdefs.c +478 -450
- data/src/core/ext/upbdefs-gen/google/protobuf/descriptor.upbdefs.h +12 -9
- data/src/core/ext/upbdefs-gen/google/protobuf/duration.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/google/protobuf/duration.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/google/protobuf/empty.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/google/protobuf/empty.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/google/protobuf/struct.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/google/protobuf/struct.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/google/protobuf/timestamp.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/google/protobuf/timestamp.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/google/protobuf/wrappers.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/google/protobuf/wrappers.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/google/rpc/status.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/google/rpc/status.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/opencensus/proto/trace/v1/trace_config.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/opencensus/proto/trace/v1/trace_config.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/src/proto/grpc/lookup/v1/rls_config.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/src/proto/grpc/lookup/v1/rls_config.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/udpa/annotations/migrate.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/udpa/annotations/migrate.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/udpa/annotations/security.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/udpa/annotations/security.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/udpa/annotations/sensitive.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/udpa/annotations/sensitive.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/udpa/annotations/status.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/udpa/annotations/status.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/udpa/annotations/versioning.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/udpa/annotations/versioning.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/validate/validate.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/validate/validate.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/migrate.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/migrate.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/security.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/security.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/sensitive.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/sensitive.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/status.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/status.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/versioning.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/versioning.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/xds/core/v3/authority.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/core/v3/authority.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/xds/core/v3/cidr.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/core/v3/cidr.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/xds/core/v3/collection_entry.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/core/v3/collection_entry.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/xds/core/v3/context_params.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/core/v3/context_params.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/xds/core/v3/extension.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/core/v3/extension.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/xds/core/v3/resource.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/core/v3/resource.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/xds/core/v3/resource_locator.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/core/v3/resource_locator.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/xds/core/v3/resource_name.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/core/v3/resource_name.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/cel.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/cel.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/domain.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/domain.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/http_inputs.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/http_inputs.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/ip.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/ip.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/matcher.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/matcher.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/range.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/range.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/regex.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/regex.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/string.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/string.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/xds/type/v3/cel.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/v3/cel.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/xds/type/v3/range.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/v3/range.upbdefs.h +7 -9
- data/src/core/ext/upbdefs-gen/xds/type/v3/typed_struct.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/v3/typed_struct.upbdefs.h +7 -9
- data/src/core/filter/blackboard.cc +33 -0
- data/src/core/filter/blackboard.h +70 -0
- data/src/core/handshaker/endpoint_info/endpoint_info_handshaker.cc +81 -0
- data/src/core/handshaker/endpoint_info/endpoint_info_handshaker.h +37 -0
- data/src/core/handshaker/handshaker.cc +199 -0
- data/src/core/handshaker/handshaker.h +170 -0
- data/src/core/handshaker/handshaker_factory.h +89 -0
- data/src/core/handshaker/handshaker_registry.cc +60 -0
- data/src/core/handshaker/handshaker_registry.h +69 -0
- data/src/core/handshaker/http_connect/http_connect_handshaker.cc +359 -0
- data/src/core/handshaker/http_connect/http_connect_handshaker.h +42 -0
- data/src/core/handshaker/http_connect/http_proxy_mapper.cc +297 -0
- data/src/core/handshaker/http_connect/http_proxy_mapper.h +52 -0
- data/src/core/handshaker/http_connect/xds_http_proxy_mapper.cc +57 -0
- data/src/core/handshaker/http_connect/xds_http_proxy_mapper.h +46 -0
- data/src/core/handshaker/proxy_mapper.h +52 -0
- data/src/core/handshaker/proxy_mapper_registry.cc +71 -0
- data/src/core/handshaker/proxy_mapper_registry.h +74 -0
- data/src/core/handshaker/security/secure_endpoint.cc +578 -0
- data/src/core/handshaker/security/secure_endpoint.h +41 -0
- data/src/core/handshaker/security/security_handshaker.cc +628 -0
- data/src/core/handshaker/security/security_handshaker.h +45 -0
- data/src/core/handshaker/tcp_connect/tcp_connect_handshaker.cc +230 -0
- data/src/core/handshaker/tcp_connect/tcp_connect_handshaker.h +39 -0
- data/src/core/lib/address_utils/parse_address.cc +41 -45
- data/src/core/lib/address_utils/parse_address.h +1 -3
- data/src/core/lib/address_utils/sockaddr_utils.cc +30 -20
- data/src/core/lib/address_utils/sockaddr_utils.h +0 -2
- data/src/core/lib/channel/call_finalization.h +1 -1
- data/src/core/lib/channel/channel_args.cc +20 -26
- data/src/core/lib/channel/channel_args.h +34 -21
- data/src/core/lib/channel/channel_args_preconditioning.cc +2 -2
- data/src/core/lib/channel/channel_args_preconditioning.h +2 -3
- data/src/core/lib/channel/channel_stack.cc +21 -74
- data/src/core/lib/channel/channel_stack.h +31 -62
- data/src/core/lib/channel/channel_stack_builder.cc +2 -2
- data/src/core/lib/channel/channel_stack_builder.h +1 -7
- data/src/core/lib/channel/channel_stack_builder_impl.cc +18 -30
- data/src/core/lib/channel/channel_stack_builder_impl.h +13 -3
- data/src/core/lib/channel/connected_channel.cc +49 -709
- data/src/core/lib/channel/promise_based_filter.cc +249 -324
- data/src/core/lib/channel/promise_based_filter.h +269 -508
- data/src/core/lib/channel/status_util.cc +2 -4
- data/src/core/lib/channel/status_util.h +1 -2
- data/src/core/lib/compression/compression.cc +7 -10
- data/src/core/lib/compression/compression_internal.cc +39 -9
- data/src/core/lib/compression/compression_internal.h +5 -5
- data/src/core/lib/compression/message_compress.cc +16 -18
- data/src/core/lib/compression/message_compress.h +1 -2
- data/src/core/lib/debug/trace.cc +48 -67
- data/src/core/lib/debug/trace.h +2 -97
- data/src/core/lib/debug/trace_flags.cc +242 -0
- data/src/core/lib/debug/trace_flags.h +131 -0
- data/src/core/lib/debug/trace_impl.h +125 -0
- data/src/core/lib/event_engine/ares_resolver.cc +165 -92
- data/src/core/lib/event_engine/ares_resolver.h +11 -18
- data/src/core/lib/event_engine/cf_engine/cf_engine.cc +14 -15
- data/src/core/lib/event_engine/cf_engine/cf_engine.h +1 -1
- data/src/core/lib/event_engine/cf_engine/cfstream_endpoint.cc +47 -34
- data/src/core/lib/event_engine/cf_engine/cfstream_endpoint.h +4 -6
- data/src/core/lib/event_engine/cf_engine/cftype_unique_ref.h +1 -1
- data/src/core/lib/event_engine/cf_engine/dns_service_resolver.cc +28 -31
- data/src/core/lib/event_engine/cf_engine/dns_service_resolver.h +5 -6
- data/src/core/lib/event_engine/channel_args_endpoint_config.cc +3 -5
- data/src/core/lib/event_engine/channel_args_endpoint_config.h +1 -3
- data/src/core/lib/event_engine/common_closures.h +1 -2
- data/src/core/lib/event_engine/default_event_engine.cc +13 -16
- data/src/core/lib/event_engine/default_event_engine.h +3 -10
- data/src/core/lib/event_engine/default_event_engine_factory.cc +3 -4
- data/src/core/lib/event_engine/default_event_engine_factory.h +1 -2
- data/src/core/lib/event_engine/event_engine.cc +35 -5
- data/src/core/lib/event_engine/event_engine_context.h +32 -0
- data/src/core/lib/event_engine/extensions/chaotic_good_extension.h +64 -0
- data/src/core/lib/event_engine/extensions/supports_fd.h +25 -2
- data/src/core/lib/event_engine/extensions/tcp_trace.h +42 -0
- data/src/core/lib/event_engine/forkable.cc +12 -13
- data/src/core/lib/event_engine/forkable.h +0 -13
- data/src/core/lib/event_engine/grpc_polled_fd.h +2 -4
- data/src/core/lib/event_engine/handle_containers.h +1 -3
- data/src/core/lib/event_engine/memory_allocator_factory.h +1 -3
- data/src/core/lib/event_engine/nameser.h +1 -1
- data/src/core/lib/event_engine/poller.h +1 -2
- data/src/core/lib/event_engine/posix.h +9 -2
- data/src/core/lib/event_engine/posix_engine/ev_epoll1_linux.cc +28 -30
- data/src/core/lib/event_engine/posix_engine/ev_epoll1_linux.h +6 -8
- data/src/core/lib/event_engine/posix_engine/ev_poll_posix.cc +27 -31
- data/src/core/lib/event_engine/posix_engine/ev_poll_posix.h +2 -4
- data/src/core/lib/event_engine/posix_engine/event_poller.h +1 -3
- data/src/core/lib/event_engine/posix_engine/event_poller_posix_default.cc +2 -3
- data/src/core/lib/event_engine/posix_engine/grpc_polled_fd_posix.h +3 -6
- data/src/core/lib/event_engine/posix_engine/internal_errqueue.cc +5 -6
- data/src/core/lib/event_engine/posix_engine/internal_errqueue.h +0 -1
- data/src/core/lib/event_engine/posix_engine/lockfree_event.cc +7 -9
- data/src/core/lib/event_engine/posix_engine/lockfree_event.h +0 -1
- data/src/core/lib/event_engine/posix_engine/native_posix_dns_resolver.cc +3 -4
- data/src/core/lib/event_engine/posix_engine/native_posix_dns_resolver.h +0 -1
- data/src/core/lib/event_engine/posix_engine/posix_endpoint.cc +96 -103
- data/src/core/lib/event_engine/posix_engine/posix_endpoint.h +22 -23
- data/src/core/lib/event_engine/posix_engine/posix_engine.cc +84 -65
- data/src/core/lib/event_engine/posix_engine/posix_engine.h +16 -13
- data/src/core/lib/event_engine/posix_engine/posix_engine_closure.h +1 -2
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener.cc +28 -31
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener.h +13 -13
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.cc +28 -33
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.h +1 -3
- data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.cc +53 -40
- data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.h +10 -10
- data/src/core/lib/event_engine/posix_engine/timer.cc +5 -6
- data/src/core/lib/event_engine/posix_engine/timer.h +4 -7
- data/src/core/lib/event_engine/posix_engine/timer_heap.cc +2 -3
- data/src/core/lib/event_engine/posix_engine/timer_manager.cc +16 -25
- data/src/core/lib/event_engine/posix_engine/timer_manager.h +4 -7
- data/src/core/lib/event_engine/posix_engine/traced_buffer_list.cc +7 -10
- data/src/core/lib/event_engine/posix_engine/traced_buffer_list.h +2 -5
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_eventfd.cc +3 -4
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_eventfd.h +0 -1
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_pipe.cc +2 -3
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_pipe.h +0 -1
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_posix_default.cc +0 -1
- data/src/core/lib/event_engine/query_extensions.h +3 -2
- data/src/core/lib/event_engine/ref_counted_dns_resolver_interface.h +2 -5
- data/src/core/lib/event_engine/resolved_address.cc +8 -7
- data/src/core/lib/event_engine/resolved_address_internal.h +1 -2
- data/src/core/lib/event_engine/shim.cc +3 -3
- data/src/core/lib/event_engine/slice.cc +5 -7
- data/src/core/lib/event_engine/slice_buffer.cc +2 -4
- data/src/core/lib/event_engine/tcp_socket_utils.cc +29 -27
- data/src/core/lib/event_engine/tcp_socket_utils.h +3 -4
- data/src/core/lib/event_engine/thread_local.cc +2 -2
- data/src/core/lib/event_engine/thread_local.h +1 -1
- data/src/core/lib/event_engine/thread_pool/thread_count.cc +5 -8
- data/src/core/lib/event_engine/thread_pool/thread_count.h +4 -6
- data/src/core/lib/event_engine/thread_pool/thread_pool.h +1 -4
- data/src/core/lib/event_engine/thread_pool/thread_pool_factory.cc +1 -2
- data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.cc +46 -53
- data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.h +9 -15
- data/src/core/lib/event_engine/thready_event_engine/thready_event_engine.cc +50 -23
- data/src/core/lib/event_engine/thready_event_engine/thready_event_engine.h +7 -7
- data/src/core/lib/event_engine/time_util.cc +3 -4
- data/src/core/lib/event_engine/time_util.h +1 -3
- data/src/core/lib/event_engine/utils.cc +19 -6
- data/src/core/lib/event_engine/utils.h +9 -4
- data/src/core/lib/event_engine/windows/grpc_polled_fd_windows.cc +158 -132
- data/src/core/lib/event_engine/windows/grpc_polled_fd_windows.h +4 -6
- data/src/core/lib/event_engine/windows/iocp.cc +24 -22
- data/src/core/lib/event_engine/windows/iocp.h +2 -3
- data/src/core/lib/event_engine/windows/native_windows_dns_resolver.cc +4 -6
- data/src/core/lib/event_engine/windows/win_socket.cc +51 -36
- data/src/core/lib/event_engine/windows/win_socket.h +11 -10
- data/src/core/lib/event_engine/windows/windows_endpoint.cc +58 -44
- data/src/core/lib/event_engine/windows/windows_engine.cc +265 -123
- data/src/core/lib/event_engine/windows/windows_engine.h +143 -33
- data/src/core/lib/event_engine/windows/windows_listener.cc +83 -49
- data/src/core/lib/event_engine/windows/windows_listener.h +18 -5
- data/src/core/lib/event_engine/work_queue/basic_work_queue.cc +3 -3
- data/src/core/lib/event_engine/work_queue/basic_work_queue.h +2 -5
- data/src/core/lib/event_engine/work_queue/work_queue.h +1 -3
- data/src/core/lib/experiments/config.cc +111 -66
- data/src/core/lib/experiments/config.h +55 -2
- data/src/core/lib/experiments/experiments.cc +308 -510
- data/src/core/lib/experiments/experiments.h +148 -240
- data/src/core/lib/iomgr/buffer_list.cc +7 -8
- data/src/core/lib/iomgr/buffer_list.h +2 -4
- data/src/core/lib/iomgr/call_combiner.cc +42 -68
- data/src/core/lib/iomgr/call_combiner.h +12 -17
- data/src/core/lib/iomgr/cfstream_handle.cc +14 -20
- data/src/core/lib/iomgr/cfstream_handle.h +1 -1
- data/src/core/lib/iomgr/closure.cc +2 -2
- data/src/core/lib/iomgr/closure.h +17 -21
- data/src/core/lib/iomgr/combiner.cc +38 -52
- data/src/core/lib/iomgr/combiner.h +2 -6
- data/src/core/lib/iomgr/endpoint.cc +1 -7
- data/src/core/lib/iomgr/endpoint.h +4 -6
- data/src/core/lib/iomgr/endpoint_cfstream.cc +45 -76
- data/src/core/lib/iomgr/endpoint_pair_posix.cc +8 -10
- data/src/core/lib/iomgr/endpoint_pair_windows.cc +16 -17
- data/src/core/lib/iomgr/error.cc +24 -34
- data/src/core/lib/iomgr/error.h +8 -11
- data/src/core/lib/iomgr/error_cfstream.cc +1 -3
- data/src/core/lib/iomgr/ev_apple.cc +16 -24
- data/src/core/lib/iomgr/ev_epoll1_linux.cc +81 -126
- data/src/core/lib/iomgr/ev_poll_posix.cc +62 -62
- data/src/core/lib/iomgr/ev_posix.cc +68 -60
- data/src/core/lib/iomgr/ev_posix.h +9 -12
- data/src/core/lib/iomgr/event_engine_shims/closure.cc +11 -15
- data/src/core/lib/iomgr/event_engine_shims/closure.h +1 -3
- data/src/core/lib/iomgr/event_engine_shims/endpoint.cc +35 -53
- data/src/core/lib/iomgr/event_engine_shims/endpoint.h +1 -2
- data/src/core/lib/iomgr/event_engine_shims/tcp_client.cc +10 -15
- data/src/core/lib/iomgr/event_engine_shims/tcp_client.h +1 -2
- data/src/core/lib/iomgr/exec_ctx.cc +14 -18
- data/src/core/lib/iomgr/exec_ctx.h +33 -23
- data/src/core/lib/iomgr/executor.cc +60 -59
- data/src/core/lib/iomgr/executor.h +2 -2
- data/src/core/lib/iomgr/fork_posix.cc +11 -15
- data/src/core/lib/iomgr/fork_windows.cc +3 -2
- data/src/core/lib/iomgr/internal_errqueue.cc +5 -6
- data/src/core/lib/iomgr/iocp_windows.cc +16 -15
- data/src/core/lib/iomgr/iocp_windows.h +0 -1
- data/src/core/lib/iomgr/iomgr.cc +19 -26
- data/src/core/lib/iomgr/iomgr.h +0 -1
- data/src/core/lib/iomgr/iomgr_internal.cc +1 -2
- data/src/core/lib/iomgr/iomgr_internal.h +0 -1
- data/src/core/lib/iomgr/iomgr_posix.cc +2 -1
- data/src/core/lib/iomgr/iomgr_windows.cc +7 -6
- data/src/core/lib/iomgr/lockfree_event.cc +12 -21
- data/src/core/lib/iomgr/lockfree_event.h +1 -2
- data/src/core/lib/iomgr/nameser.h +1 -1
- data/src/core/lib/iomgr/polling_entity.cc +17 -11
- data/src/core/lib/iomgr/pollset.cc +2 -2
- data/src/core/lib/iomgr/pollset.h +0 -3
- data/src/core/lib/iomgr/pollset_set.cc +2 -2
- data/src/core/lib/iomgr/pollset_set_windows.cc +0 -1
- data/src/core/lib/iomgr/pollset_windows.cc +2 -6
- data/src/core/lib/iomgr/pollset_windows.h +0 -1
- data/src/core/lib/iomgr/port.h +5 -2
- data/src/core/lib/iomgr/python_util.h +1 -2
- data/src/core/lib/iomgr/resolve_address.cc +4 -7
- data/src/core/lib/iomgr/resolve_address.h +3 -6
- data/src/core/lib/iomgr/resolve_address_impl.h +0 -1
- data/src/core/lib/iomgr/resolve_address_posix.cc +12 -21
- data/src/core/lib/iomgr/resolve_address_windows.cc +9 -12
- data/src/core/lib/iomgr/resolved_address.h +0 -1
- data/src/core/lib/iomgr/sockaddr_utils_posix.cc +5 -6
- data/src/core/lib/iomgr/socket_factory_posix.cc +1 -1
- data/src/core/lib/iomgr/socket_factory_posix.h +1 -2
- data/src/core/lib/iomgr/socket_mutator.cc +3 -5
- data/src/core/lib/iomgr/socket_mutator.h +2 -4
- data/src/core/lib/iomgr/socket_utils.h +0 -1
- data/src/core/lib/iomgr/socket_utils_common_posix.cc +45 -52
- data/src/core/lib/iomgr/socket_utils_linux.cc +1 -3
- data/src/core/lib/iomgr/socket_utils_posix.cc +3 -6
- data/src/core/lib/iomgr/socket_utils_posix.h +1 -2
- data/src/core/lib/iomgr/socket_utils_windows.cc +1 -3
- data/src/core/lib/iomgr/socket_windows.cc +11 -14
- data/src/core/lib/iomgr/socket_windows.h +1 -2
- data/src/core/lib/iomgr/tcp_client.cc +2 -2
- data/src/core/lib/iomgr/tcp_client.h +1 -2
- data/src/core/lib/iomgr/tcp_client_cfstream.cc +12 -20
- data/src/core/lib/iomgr/tcp_client_posix.cc +24 -36
- data/src/core/lib/iomgr/tcp_client_windows.cc +33 -17
- data/src/core/lib/iomgr/tcp_posix.cc +167 -189
- data/src/core/lib/iomgr/tcp_posix.h +1 -3
- data/src/core/lib/iomgr/tcp_server.cc +2 -2
- data/src/core/lib/iomgr/tcp_server.h +3 -4
- data/src/core/lib/iomgr/tcp_server_posix.cc +152 -156
- data/src/core/lib/iomgr/tcp_server_utils_posix.h +0 -1
- data/src/core/lib/iomgr/tcp_server_utils_posix_common.cc +13 -17
- data/src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc +13 -14
- data/src/core/lib/iomgr/tcp_server_windows.cc +94 -50
- data/src/core/lib/iomgr/tcp_windows.cc +38 -66
- data/src/core/lib/iomgr/timer.cc +2 -2
- data/src/core/lib/iomgr/timer.h +2 -3
- data/src/core/lib/iomgr/timer_generic.cc +73 -106
- data/src/core/lib/iomgr/timer_generic.h +0 -1
- data/src/core/lib/iomgr/timer_heap.cc +4 -6
- data/src/core/lib/iomgr/timer_manager.cc +27 -44
- data/src/core/lib/iomgr/timer_manager.h +0 -1
- data/src/core/lib/iomgr/unix_sockets_posix.cc +18 -6
- data/src/core/lib/iomgr/unix_sockets_posix.h +1 -3
- data/src/core/lib/iomgr/unix_sockets_posix_noop.cc +2 -4
- data/src/core/lib/iomgr/vsock.cc +5 -8
- data/src/core/lib/iomgr/vsock.h +1 -3
- data/src/core/lib/iomgr/wakeup_fd_eventfd.cc +2 -4
- data/src/core/lib/iomgr/wakeup_fd_pipe.cc +6 -7
- data/src/core/lib/promise/activity.cc +4 -5
- data/src/core/lib/promise/activity.h +54 -22
- data/src/core/lib/promise/all_ok.h +52 -9
- data/src/core/lib/promise/arena_promise.h +1 -3
- data/src/core/lib/promise/cancel_callback.h +34 -6
- data/src/core/lib/promise/context.h +20 -11
- data/src/core/lib/promise/detail/basic_seq.h +33 -20
- data/src/core/lib/promise/detail/join_state.h +555 -760
- data/src/core/lib/promise/detail/promise_factory.h +45 -29
- data/src/core/lib/promise/detail/promise_like.h +49 -11
- data/src/core/lib/promise/detail/seq_state.h +1314 -1977
- data/src/core/lib/promise/detail/status.h +36 -14
- data/src/core/lib/promise/exec_ctx_wakeup_scheduler.h +1 -2
- data/src/core/lib/promise/for_each.h +97 -39
- data/src/core/lib/promise/if.h +21 -17
- data/src/core/lib/promise/interceptor_list.h +22 -36
- data/src/core/lib/promise/latch.h +25 -40
- data/src/core/lib/promise/loop.h +23 -10
- data/src/core/lib/promise/map.h +77 -9
- data/src/core/lib/promise/observable.h +181 -0
- data/src/core/lib/promise/party.cc +263 -125
- data/src/core/lib/promise/party.h +187 -391
- data/src/core/lib/promise/pipe.h +34 -57
- data/src/core/lib/promise/poll.h +117 -39
- data/src/core/lib/promise/promise.h +12 -6
- data/src/core/lib/promise/race.h +10 -5
- data/src/core/lib/promise/seq.h +57 -64
- data/src/core/lib/promise/sleep.cc +5 -6
- data/src/core/lib/promise/sleep.h +2 -4
- data/src/core/lib/promise/status_flag.h +165 -51
- data/src/core/lib/promise/try_join.h +37 -20
- data/src/core/lib/promise/try_seq.h +113 -77
- data/src/core/lib/resource_quota/api.cc +4 -7
- data/src/core/lib/resource_quota/api.h +3 -5
- data/src/core/lib/resource_quota/arena.cc +64 -87
- data/src/core/lib/resource_quota/arena.h +145 -215
- data/src/core/lib/resource_quota/connection_quota.cc +69 -0
- data/src/core/lib/resource_quota/connection_quota.h +60 -0
- data/src/core/lib/resource_quota/memory_quota.cc +51 -52
- data/src/core/lib/resource_quota/memory_quota.h +27 -21
- data/src/core/lib/resource_quota/periodic_update.cc +5 -5
- data/src/core/lib/resource_quota/periodic_update.h +1 -3
- data/src/core/lib/resource_quota/resource_quota.cc +2 -2
- data/src/core/lib/resource_quota/resource_quota.h +6 -8
- data/src/core/lib/resource_quota/thread_quota.cc +4 -4
- data/src/core/lib/resource_quota/thread_quota.h +3 -4
- data/src/core/lib/security/authorization/audit_logging.cc +10 -12
- data/src/core/lib/security/authorization/audit_logging.h +3 -5
- data/src/core/lib/security/authorization/authorization_engine.h +1 -1
- data/src/core/lib/security/authorization/authorization_policy_provider.h +5 -7
- data/src/core/lib/security/authorization/authorization_policy_provider_vtable.cc +3 -4
- data/src/core/lib/security/authorization/evaluate_args.cc +16 -20
- data/src/core/lib/security/authorization/evaluate_args.h +4 -6
- data/src/core/lib/security/authorization/grpc_authorization_engine.cc +4 -5
- data/src/core/lib/security/authorization/grpc_authorization_engine.h +1 -3
- data/src/core/lib/security/authorization/grpc_server_authz_filter.cc +29 -41
- data/src/core/lib/security/authorization/grpc_server_authz_filter.h +11 -11
- data/src/core/lib/security/authorization/matchers.cc +5 -8
- data/src/core/lib/security/authorization/matchers.h +1 -3
- data/src/core/lib/security/authorization/rbac_policy.cc +2 -2
- data/src/core/lib/security/authorization/rbac_policy.h +2 -5
- data/src/core/lib/security/authorization/stdout_logger.cc +7 -7
- data/src/core/lib/security/authorization/stdout_logger.h +2 -3
- data/src/core/lib/security/certificate_provider/certificate_provider_factory.h +7 -8
- data/src/core/lib/security/certificate_provider/certificate_provider_registry.cc +6 -6
- data/src/core/lib/security/certificate_provider/certificate_provider_registry.h +0 -1
- data/src/core/lib/security/context/security_context.cc +51 -49
- data/src/core/lib/security/context/security_context.h +46 -17
- data/src/core/lib/security/credentials/alts/alts_credentials.cc +6 -7
- data/src/core/lib/security/credentials/alts/alts_credentials.h +11 -7
- data/src/core/lib/security/credentials/alts/check_gcp_environment.cc +4 -5
- data/src/core/lib/security/credentials/alts/check_gcp_environment_linux.cc +1 -2
- data/src/core/lib/security/credentials/alts/check_gcp_environment_no_op.cc +3 -5
- data/src/core/lib/security/credentials/alts/check_gcp_environment_windows.cc +3 -5
- data/src/core/lib/security/credentials/alts/grpc_alts_credentials_client_options.cc +5 -7
- data/src/core/lib/security/credentials/alts/grpc_alts_credentials_options.cc +4 -5
- data/src/core/lib/security/credentials/alts/grpc_alts_credentials_options.h +2 -2
- data/src/core/lib/security/credentials/alts/grpc_alts_credentials_server_options.cc +1 -2
- data/src/core/lib/security/credentials/call_creds_util.cc +8 -8
- data/src/core/lib/security/credentials/call_creds_util.h +2 -2
- data/src/core/lib/security/credentials/channel_creds_registry.h +5 -6
- data/src/core/lib/security/credentials/channel_creds_registry_init.cc +14 -13
- data/src/core/lib/security/credentials/composite/composite_credentials.cc +18 -21
- data/src/core/lib/security/credentials/composite/composite_credentials.h +9 -8
- data/src/core/lib/security/credentials/credentials.cc +20 -20
- data/src/core/lib/security/credentials/credentials.h +13 -14
- data/src/core/lib/security/credentials/external/aws_external_account_credentials.cc +336 -339
- data/src/core/lib/security/credentials/external/aws_external_account_credentials.h +58 -46
- data/src/core/lib/security/credentials/external/aws_request_signer.cc +4 -5
- data/src/core/lib/security/credentials/external/aws_request_signer.h +1 -1
- data/src/core/lib/security/credentials/external/external_account_credentials.cc +410 -374
- data/src/core/lib/security/credentials/external/external_account_credentials.h +127 -59
- data/src/core/lib/security/credentials/external/file_external_account_credentials.cc +90 -53
- data/src/core/lib/security/credentials/external/file_external_account_credentials.h +30 -9
- data/src/core/lib/security/credentials/external/url_external_account_credentials.cc +103 -129
- data/src/core/lib/security/credentials/external/url_external_account_credentials.h +20 -22
- data/src/core/lib/security/credentials/fake/fake_credentials.cc +2 -4
- data/src/core/lib/security/credentials/fake/fake_credentials.h +10 -9
- data/src/core/lib/security/credentials/gcp_service_account_identity/gcp_service_account_identity_credentials.cc +195 -0
- data/src/core/lib/security/credentials/gcp_service_account_identity/gcp_service_account_identity_credentials.h +90 -0
- data/src/core/lib/security/credentials/google_default/credentials_generic.cc +4 -6
- data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +60 -77
- data/src/core/lib/security/credentials/google_default/google_default_credentials.h +9 -7
- data/src/core/lib/security/credentials/iam/iam_credentials.cc +9 -14
- data/src/core/lib/security/credentials/iam/iam_credentials.h +6 -5
- data/src/core/lib/security/credentials/insecure/insecure_credentials.cc +2 -2
- data/src/core/lib/security/credentials/insecure/insecure_credentials.h +4 -4
- data/src/core/lib/security/credentials/jwt/json_token.cc +35 -34
- data/src/core/lib/security/credentials/jwt/json_token.h +2 -4
- data/src/core/lib/security/credentials/jwt/jwt_credentials.cc +24 -30
- data/src/core/lib/security/credentials/jwt/jwt_credentials.h +9 -9
- data/src/core/lib/security/credentials/jwt/jwt_verifier.cc +90 -102
- data/src/core/lib/security/credentials/jwt/jwt_verifier.h +3 -5
- data/src/core/lib/security/credentials/local/local_credentials.cc +3 -4
- data/src/core/lib/security/credentials/local/local_credentials.h +5 -5
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +202 -302
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.h +48 -71
- data/src/core/lib/security/credentials/plugin/plugin_credentials.cc +22 -35
- data/src/core/lib/security/credentials/plugin/plugin_credentials.h +11 -13
- data/src/core/lib/security/credentials/ssl/ssl_credentials.cc +47 -59
- data/src/core/lib/security/credentials/ssl/ssl_credentials.h +8 -9
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.cc +28 -28
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.h +2 -3
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_match.cc +0 -2
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.cc +107 -46
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.h +15 -14
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.cc +8 -12
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.h +9 -10
- data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc +27 -29
- data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h +2 -1
- data/src/core/lib/security/credentials/tls/grpc_tls_crl_provider.cc +23 -20
- data/src/core/lib/security/credentials/tls/grpc_tls_crl_provider.h +13 -12
- data/src/core/lib/security/credentials/tls/tls_credentials.cc +20 -24
- data/src/core/lib/security/credentials/tls/tls_credentials.h +7 -5
- data/src/core/lib/security/credentials/tls/tls_utils.cc +5 -7
- data/src/core/lib/security/credentials/tls/tls_utils.h +1 -2
- data/src/core/lib/security/credentials/token_fetcher/token_fetcher_credentials.cc +305 -0
- data/src/core/lib/security/credentials/token_fetcher/token_fetcher_credentials.h +181 -0
- data/src/core/lib/security/credentials/xds/xds_credentials.cc +21 -19
- data/src/core/lib/security/credentials/xds/xds_credentials.h +7 -9
- data/src/core/lib/security/security_connector/alts/alts_security_connector.cc +35 -40
- data/src/core/lib/security/security_connector/alts/alts_security_connector.h +3 -3
- data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +28 -28
- data/src/core/lib/security/security_connector/fake/fake_security_connector.h +3 -3
- data/src/core/lib/security/security_connector/insecure/insecure_security_connector.cc +8 -10
- data/src/core/lib/security/security_connector/insecure/insecure_security_connector.h +5 -6
- data/src/core/lib/security/security_connector/load_system_roots.h +4 -2
- data/src/core/lib/security/security_connector/load_system_roots_fallback.cc +3 -2
- data/src/core/lib/security/security_connector/load_system_roots_supported.cc +8 -10
- data/src/core/lib/security/security_connector/load_system_roots_supported.h +1 -2
- data/src/core/lib/security/security_connector/load_system_roots_windows.cc +85 -0
- data/src/core/lib/security/security_connector/local/local_security_connector.cc +35 -35
- data/src/core/lib/security/security_connector/local/local_security_connector.h +3 -3
- data/src/core/lib/security/security_connector/security_connector.cc +11 -15
- data/src/core/lib/security/security_connector/security_connector.h +8 -11
- data/src/core/lib/security/security_connector/ssl/ssl_security_connector.cc +28 -32
- data/src/core/lib/security/security_connector/ssl/ssl_security_connector.h +4 -5
- data/src/core/lib/security/security_connector/ssl_utils.cc +42 -42
- data/src/core/lib/security/security_connector/ssl_utils.h +6 -9
- data/src/core/lib/security/security_connector/tls/tls_security_connector.cc +49 -62
- data/src/core/lib/security/security_connector/tls/tls_security_connector.h +6 -7
- data/src/core/lib/security/transport/auth_filters.h +17 -38
- data/src/core/lib/security/transport/client_auth_filter.cc +19 -27
- data/src/core/lib/security/transport/server_auth_filter.cc +23 -32
- data/src/core/lib/security/util/json_util.cc +4 -6
- data/src/core/lib/security/util/json_util.h +1 -1
- data/src/core/lib/slice/percent_encoding.cc +4 -6
- data/src/core/lib/slice/slice.cc +44 -20
- data/src/core/lib/slice/slice.h +8 -11
- data/src/core/lib/slice/slice_buffer.cc +67 -30
- data/src/core/lib/slice/slice_buffer.h +16 -5
- data/src/core/lib/slice/slice_internal.h +11 -7
- data/src/core/lib/slice/slice_refcount.h +7 -15
- data/src/core/lib/slice/slice_string_helpers.cc +3 -3
- data/src/core/lib/slice/slice_string_helpers.h +1 -3
- data/src/core/lib/surface/byte_buffer.cc +2 -4
- data/src/core/lib/surface/byte_buffer_reader.cc +5 -7
- data/src/core/lib/surface/call.cc +205 -3997
- data/src/core/lib/surface/call.h +177 -101
- data/src/core/lib/surface/call_details.cc +5 -5
- data/src/core/lib/surface/call_log_batch.cc +7 -11
- data/src/core/lib/surface/call_test_only.h +2 -4
- data/src/core/lib/surface/call_utils.cc +231 -0
- data/src/core/lib/surface/call_utils.h +486 -0
- data/src/core/lib/surface/channel.cc +131 -340
- data/src/core/lib/surface/channel.h +100 -118
- data/src/core/lib/surface/channel_create.cc +125 -0
- data/src/core/lib/surface/channel_create.h +42 -0
- data/src/core/lib/surface/channel_init.cc +275 -271
- data/src/core/lib/surface/channel_init.h +190 -115
- data/src/core/lib/surface/channel_stack_type.cc +2 -2
- data/src/core/lib/surface/client_call.cc +441 -0
- data/src/core/lib/surface/client_call.h +187 -0
- data/src/core/lib/surface/completion_queue.cc +127 -124
- data/src/core/lib/surface/completion_queue.h +4 -14
- data/src/core/lib/surface/completion_queue_factory.cc +8 -9
- data/src/core/lib/surface/completion_queue_factory.h +1 -2
- data/src/core/lib/surface/connection_context.cc +77 -0
- data/src/core/lib/surface/connection_context.h +156 -0
- data/src/core/lib/surface/event_string.cc +2 -2
- data/src/core/lib/surface/event_string.h +1 -2
- data/src/core/lib/surface/filter_stack_call.cc +1156 -0
- data/src/core/lib/surface/filter_stack_call.h +366 -0
- data/src/core/lib/surface/init.cc +66 -32
- data/src/core/lib/surface/init.h +5 -0
- data/src/core/lib/surface/init_internally.cc +2 -2
- data/src/core/lib/surface/lame_client.cc +23 -54
- data/src/core/lib/surface/lame_client.h +16 -15
- data/src/core/lib/surface/legacy_channel.cc +428 -0
- data/src/core/lib/surface/legacy_channel.h +113 -0
- data/src/core/lib/surface/metadata_array.cc +6 -7
- data/src/core/lib/surface/server_call.cc +227 -0
- data/src/core/lib/surface/server_call.h +167 -0
- data/src/core/lib/surface/validate_metadata.cc +4 -6
- data/src/core/lib/surface/validate_metadata.h +3 -6
- data/src/core/lib/surface/version.cc +3 -4
- data/src/core/lib/transport/bdp_estimator.cc +14 -20
- data/src/core/lib/transport/bdp_estimator.h +12 -18
- data/src/core/lib/transport/call_arena_allocator.cc +27 -0
- data/src/core/lib/transport/call_arena_allocator.h +91 -0
- data/src/core/lib/transport/call_destination.h +76 -0
- data/src/core/lib/transport/call_filters.cc +79 -308
- data/src/core/lib/transport/call_filters.h +875 -476
- data/src/core/lib/transport/call_final_info.cc +2 -2
- data/src/core/lib/transport/call_final_info.h +3 -4
- data/src/core/lib/transport/call_spine.cc +99 -79
- data/src/core/lib/transport/call_spine.h +254 -248
- data/src/core/lib/transport/call_state.cc +39 -0
- data/src/core/lib/transport/call_state.h +1061 -0
- data/src/core/lib/transport/connectivity_state.cc +38 -47
- data/src/core/lib/transport/connectivity_state.h +3 -7
- data/src/core/lib/transport/error_utils.cc +3 -5
- data/src/core/lib/transport/error_utils.h +2 -4
- data/src/core/lib/transport/interception_chain.cc +147 -0
- data/src/core/lib/transport/interception_chain.h +253 -0
- data/src/core/lib/transport/message.cc +3 -4
- data/src/core/lib/transport/message.h +5 -0
- data/src/core/lib/transport/metadata.cc +29 -5
- data/src/core/lib/transport/metadata.h +37 -2
- data/src/core/lib/transport/metadata_batch.cc +76 -8
- data/src/core/lib/transport/metadata_batch.h +116 -31
- data/src/core/lib/transport/metadata_compression_traits.h +2 -3
- data/src/core/lib/transport/metadata_info.cc +55 -0
- data/src/core/lib/transport/metadata_info.h +85 -0
- data/src/core/lib/transport/parsed_metadata.cc +2 -2
- data/src/core/lib/transport/parsed_metadata.h +2 -5
- data/src/core/lib/transport/simple_slice_based_metadata.h +0 -1
- data/src/core/lib/transport/status_conversion.cc +2 -2
- data/src/core/lib/transport/status_conversion.h +2 -3
- data/src/core/lib/transport/timeout_encoding.cc +11 -12
- data/src/core/lib/transport/timeout_encoding.h +1 -3
- data/src/core/lib/transport/transport.cc +7 -13
- data/src/core/lib/transport/transport.h +94 -88
- data/src/core/lib/transport/transport_framing_endpoint_extension.h +47 -0
- data/src/core/lib/transport/transport_op_string.cc +2 -13
- data/src/core/load_balancing/address_filtering.cc +3 -5
- data/src/core/load_balancing/address_filtering.h +3 -4
- data/src/core/load_balancing/backend_metric_parser.cc +94 -0
- data/src/core/load_balancing/backend_metric_parser.h +45 -0
- data/src/core/load_balancing/child_policy_handler.cc +43 -47
- data/src/core/load_balancing/child_policy_handler.h +2 -3
- data/src/core/load_balancing/delegating_helper.h +14 -8
- data/src/core/load_balancing/endpoint_list.cc +18 -22
- data/src/core/load_balancing/endpoint_list.h +20 -16
- data/src/core/load_balancing/grpclb/client_load_reporting_filter.cc +38 -34
- data/src/core/load_balancing/grpclb/client_load_reporting_filter.h +23 -7
- data/src/core/load_balancing/grpclb/grpclb.cc +216 -255
- data/src/core/load_balancing/grpclb/grpclb_balancer_addresses.cc +2 -3
- data/src/core/load_balancing/grpclb/grpclb_balancer_addresses.h +1 -2
- data/src/core/load_balancing/grpclb/grpclb_client_stats.cc +3 -5
- data/src/core/load_balancing/grpclb/grpclb_client_stats.h +5 -8
- data/src/core/load_balancing/grpclb/load_balancer_api.cc +7 -11
- data/src/core/load_balancing/grpclb/load_balancer_api.h +3 -6
- data/src/core/load_balancing/health_check_client.cc +68 -89
- data/src/core/load_balancing/health_check_client.h +1 -1
- data/src/core/load_balancing/health_check_client_internal.h +10 -13
- data/src/core/load_balancing/lb_policy.cc +7 -10
- data/src/core/load_balancing/lb_policy.h +84 -42
- data/src/core/load_balancing/lb_policy_factory.h +3 -4
- data/src/core/load_balancing/lb_policy_registry.cc +7 -9
- data/src/core/load_balancing/lb_policy_registry.h +5 -6
- data/src/core/load_balancing/oob_backend_metric.cc +28 -35
- data/src/core/load_balancing/oob_backend_metric.h +1 -1
- data/src/core/load_balancing/oob_backend_metric_internal.h +12 -14
- data/src/core/load_balancing/outlier_detection/outlier_detection.cc +172 -217
- data/src/core/load_balancing/outlier_detection/outlier_detection.h +5 -7
- data/src/core/load_balancing/pick_first/pick_first.cc +1235 -409
- data/src/core/load_balancing/priority/priority.cc +115 -153
- data/src/core/load_balancing/ring_hash/ring_hash.cc +94 -101
- data/src/core/load_balancing/ring_hash/ring_hash.h +6 -7
- data/src/core/load_balancing/rls/rls.cc +516 -391
- data/src/core/load_balancing/rls/rls.h +26 -0
- data/src/core/load_balancing/round_robin/round_robin.cc +88 -559
- data/src/core/load_balancing/subchannel_interface.h +18 -7
- data/src/core/load_balancing/weighted_round_robin/static_stride_scheduler.cc +7 -8
- data/src/core/load_balancing/weighted_round_robin/static_stride_scheduler.h +2 -3
- data/src/core/load_balancing/weighted_round_robin/weighted_round_robin.cc +240 -1042
- data/src/core/load_balancing/weighted_target/weighted_target.cc +91 -124
- data/src/core/load_balancing/weighted_target/weighted_target.h +28 -0
- data/src/core/load_balancing/xds/cds.cc +70 -87
- data/src/core/load_balancing/xds/xds_cluster_impl.cc +257 -188
- data/src/core/load_balancing/xds/xds_cluster_manager.cc +59 -92
- data/src/core/load_balancing/xds/xds_override_host.cc +141 -203
- data/src/core/load_balancing/xds/xds_override_host.h +6 -7
- data/src/core/load_balancing/xds/xds_wrr_locality.cc +45 -55
- data/src/core/plugin_registry/grpc_plugin_registry.cc +28 -16
- data/src/core/plugin_registry/grpc_plugin_registry_extra.cc +7 -4
- data/src/core/resolver/dns/c_ares/dns_resolver_ares.cc +97 -72
- data/src/core/resolver/dns/c_ares/dns_resolver_ares.h +1 -2
- data/src/core/resolver/dns/c_ares/grpc_ares_ev_driver.h +3 -5
- data/src/core/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc +8 -11
- data/src/core/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc +156 -137
- data/src/core/resolver/dns/c_ares/grpc_ares_wrapper.cc +177 -162
- data/src/core/resolver/dns/c_ares/grpc_ares_wrapper.h +3 -18
- data/src/core/resolver/dns/c_ares/grpc_ares_wrapper_posix.cc +1 -1
- data/src/core/resolver/dns/c_ares/grpc_ares_wrapper_windows.cc +2 -2
- data/src/core/resolver/dns/dns_resolver_plugin.cc +11 -13
- data/src/core/resolver/dns/dns_resolver_plugin.h +1 -1
- data/src/core/resolver/dns/event_engine/event_engine_client_channel_resolver.cc +58 -65
- data/src/core/resolver/dns/event_engine/event_engine_client_channel_resolver.h +5 -4
- data/src/core/resolver/dns/event_engine/service_config_helper.cc +8 -10
- data/src/core/resolver/dns/native/dns_resolver.cc +24 -34
- data/src/core/resolver/dns/native/dns_resolver.h +1 -1
- data/src/core/resolver/endpoint_addresses.cc +5 -8
- data/src/core/resolver/endpoint_addresses.h +7 -5
- data/src/core/resolver/fake/fake_resolver.cc +12 -14
- data/src/core/resolver/fake/fake_resolver.h +7 -9
- data/src/core/resolver/google_c2p/google_c2p_resolver.cc +38 -35
- data/src/core/resolver/polling_resolver.cc +42 -58
- data/src/core/resolver/polling_resolver.h +6 -8
- data/src/core/resolver/resolver.cc +3 -7
- data/src/core/resolver/resolver.h +2 -8
- data/src/core/resolver/resolver_factory.h +2 -3
- data/src/core/resolver/resolver_registry.cc +12 -14
- data/src/core/resolver/resolver_registry.h +4 -5
- data/src/core/resolver/sockaddr/sockaddr_resolver.cc +12 -14
- data/src/core/resolver/xds/xds_config.cc +95 -0
- data/src/core/resolver/xds/xds_config.h +108 -0
- data/src/core/resolver/xds/xds_dependency_manager.cc +100 -183
- data/src/core/resolver/xds/xds_dependency_manager.h +16 -81
- data/src/core/resolver/xds/xds_resolver.cc +157 -142
- data/src/core/resolver/xds/xds_resolver_attributes.h +7 -4
- data/src/core/server/server.cc +1931 -0
- data/src/core/server/server.h +569 -0
- data/src/core/server/server_call_tracer_filter.cc +117 -0
- data/src/core/server/server_call_tracer_filter.h +28 -0
- data/src/core/server/server_config_selector.h +82 -0
- data/src/core/server/server_config_selector_filter.cc +175 -0
- data/src/core/server/server_config_selector_filter.h +33 -0
- data/src/core/server/server_interface.h +45 -0
- data/src/core/server/xds_channel_stack_modifier.cc +107 -0
- data/src/core/server/xds_channel_stack_modifier.h +62 -0
- data/src/core/server/xds_server_config_fetcher.cc +1384 -0
- data/src/core/service_config/service_config.h +3 -6
- data/src/core/service_config/service_config_call_data.h +20 -19
- data/src/core/service_config/service_config_channel_arg_filter.cc +139 -0
- data/src/core/service_config/service_config_impl.cc +9 -11
- data/src/core/service_config/service_config_impl.h +6 -9
- data/src/core/service_config/service_config_parser.cc +4 -9
- data/src/core/service_config/service_config_parser.h +3 -5
- data/src/core/telemetry/call_tracer.cc +386 -0
- data/src/core/telemetry/call_tracer.h +263 -0
- data/src/core/telemetry/histogram_view.cc +69 -0
- data/src/core/telemetry/histogram_view.h +36 -0
- data/src/core/telemetry/metrics.cc +180 -0
- data/src/core/telemetry/metrics.h +569 -0
- data/src/core/telemetry/stats.cc +67 -0
- data/src/core/telemetry/stats.h +62 -0
- data/src/core/telemetry/stats_data.cc +931 -0
- data/src/core/telemetry/stats_data.h +705 -0
- data/src/core/telemetry/tcp_tracer.h +143 -0
- data/src/core/tsi/alts/crypt/aes_gcm.cc +4 -8
- data/src/core/tsi/alts/crypt/gsec.cc +2 -4
- data/src/core/tsi/alts/crypt/gsec.h +3 -5
- data/src/core/tsi/alts/frame_protector/alts_counter.cc +2 -4
- data/src/core/tsi/alts/frame_protector/alts_counter.h +2 -4
- data/src/core/tsi/alts/frame_protector/alts_crypter.cc +2 -4
- data/src/core/tsi/alts/frame_protector/alts_crypter.h +1 -3
- data/src/core/tsi/alts/frame_protector/alts_frame_protector.cc +16 -19
- data/src/core/tsi/alts/frame_protector/alts_frame_protector.h +0 -1
- data/src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.cc +1 -2
- data/src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.h +1 -2
- data/src/core/tsi/alts/frame_protector/alts_seal_privacy_integrity_crypter.cc +2 -3
- data/src/core/tsi/alts/frame_protector/alts_unseal_privacy_integrity_crypter.cc +2 -3
- data/src/core/tsi/alts/frame_protector/frame_handler.cc +11 -13
- data/src/core/tsi/alts/frame_protector/frame_handler.h +0 -1
- data/src/core/tsi/alts/handshaker/alts_handshaker_client.cc +84 -86
- data/src/core/tsi/alts/handshaker/alts_handshaker_client.h +1 -2
- data/src/core/tsi/alts/handshaker/alts_shared_resource.cc +5 -6
- data/src/core/tsi/alts/handshaker/alts_shared_resource.h +2 -3
- data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc +77 -76
- data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.h +1 -2
- data/src/core/tsi/alts/handshaker/alts_tsi_utils.cc +6 -5
- data/src/core/tsi/alts/handshaker/alts_tsi_utils.h +1 -2
- data/src/core/tsi/alts/handshaker/transport_security_common_api.cc +17 -24
- data/src/core/tsi/alts/handshaker/transport_security_common_api.h +4 -6
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.cc +17 -19
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.h +0 -1
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.cc +12 -14
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.h +0 -1
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol.h +1 -2
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.cc +16 -14
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.cc +3 -6
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.h +0 -1
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc +13 -16
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.h +0 -1
- data/src/core/tsi/fake_transport_security.cc +31 -34
- data/src/core/tsi/local_transport_security.cc +9 -11
- data/src/core/tsi/local_transport_security.h +1 -2
- data/src/core/tsi/ssl/key_logging/ssl_key_logging.cc +14 -16
- data/src/core/tsi/ssl/key_logging/ssl_key_logging.h +7 -10
- data/src/core/tsi/ssl/session_cache/ssl_session.h +3 -5
- data/src/core/tsi/ssl/session_cache/ssl_session_cache.cc +16 -17
- data/src/core/tsi/ssl/session_cache/ssl_session_cache.h +8 -10
- data/src/core/tsi/ssl/session_cache/ssl_session_openssl.cc +4 -7
- data/src/core/tsi/ssl_transport_security.cc +344 -193
- data/src/core/tsi/ssl_transport_security.h +5 -8
- data/src/core/tsi/ssl_transport_security_utils.cc +208 -27
- data/src/core/tsi/ssl_transport_security_utils.h +40 -5
- data/src/core/tsi/ssl_types.h +0 -1
- data/src/core/tsi/transport_security.cc +3 -9
- data/src/core/tsi/transport_security.h +0 -3
- data/src/core/tsi/transport_security_grpc.cc +2 -2
- data/src/core/tsi/transport_security_grpc.h +1 -2
- data/src/core/tsi/transport_security_interface.h +2 -7
- data/src/core/util/alloc.cc +69 -0
- data/src/core/util/alloc.h +28 -0
- data/src/core/util/atm.cc +34 -0
- data/src/core/util/atomic_utils.h +47 -0
- data/src/core/util/avl.h +324 -0
- data/src/core/util/backoff.cc +46 -0
- data/src/core/util/backoff.h +86 -0
- data/src/core/util/bitset.h +224 -0
- data/src/core/util/chunked_vector.h +256 -0
- data/src/core/util/construct_destruct.h +41 -0
- data/src/core/util/cpp_impl_of.h +49 -0
- data/src/core/util/crash.cc +40 -0
- data/src/core/util/crash.h +36 -0
- data/src/core/util/debug_location.h +106 -0
- data/src/core/util/directory_reader.h +48 -0
- data/src/core/util/down_cast.h +48 -0
- data/src/core/util/dual_ref_counted.h +376 -0
- data/src/core/util/dump_args.cc +54 -0
- data/src/core/util/dump_args.h +122 -0
- data/src/core/util/env.h +53 -0
- data/src/core/util/event_log.cc +87 -0
- data/src/core/util/event_log.h +79 -0
- data/src/core/util/examine_stack.cc +43 -0
- data/src/core/util/examine_stack.h +45 -0
- data/src/core/util/fork.cc +241 -0
- data/src/core/util/fork.h +98 -0
- data/src/core/util/gcp_metadata_query.cc +132 -0
- data/src/core/util/gcp_metadata_query.h +86 -0
- data/src/core/util/gethostname.h +26 -0
- data/src/core/util/gethostname_fallback.cc +30 -0
- data/src/core/util/gethostname_host_name_max.cc +39 -0
- data/src/core/util/gethostname_sysconf.cc +39 -0
- data/src/core/util/glob.cc +70 -0
- data/src/core/util/glob.h +29 -0
- data/src/core/util/gpr_time.cc +268 -0
- data/src/core/util/grpc_if_nametoindex.h +29 -0
- data/src/core/util/grpc_if_nametoindex_posix.cc +41 -0
- data/src/core/util/grpc_if_nametoindex_unsupported.cc +36 -0
- data/src/core/util/host_port.cc +114 -0
- data/src/core/util/host_port.h +57 -0
- data/src/core/util/http_client/format_request.cc +134 -0
- data/src/core/util/http_client/format_request.h +37 -0
- data/src/core/util/http_client/httpcli.cc +380 -0
- data/src/core/util/http_client/httpcli.h +269 -0
- data/src/core/util/http_client/httpcli_security_connector.cc +210 -0
- data/src/core/util/http_client/httpcli_ssl_credentials.h +38 -0
- data/src/core/util/http_client/parser.cc +447 -0
- data/src/core/util/http_client/parser.h +126 -0
- data/src/core/util/if_list.h +4530 -0
- data/src/core/util/iphone/cpu.cc +43 -0
- data/src/core/util/json/json.h +29 -0
- data/src/core/util/json/json_args.h +34 -0
- data/src/core/util/json/json_channel_args.h +41 -0
- data/src/core/util/json/json_object_loader.cc +215 -0
- data/src/core/util/json/json_object_loader.h +644 -0
- data/src/core/util/json/json_reader.cc +953 -0
- data/src/core/util/json/json_reader.h +33 -0
- data/src/core/util/json/json_util.cc +101 -0
- data/src/core/util/json/json_util.h +163 -0
- data/src/core/util/json/json_writer.cc +337 -0
- data/src/core/util/json/json_writer.h +33 -0
- data/src/core/util/latent_see.cc +163 -0
- data/src/core/util/latent_see.h +334 -0
- data/src/core/util/linux/cpu.cc +86 -0
- data/src/core/util/linux/env.cc +62 -0
- data/src/core/util/load_file.cc +75 -0
- data/src/core/util/load_file.h +33 -0
- data/src/core/util/log.cc +127 -0
- data/src/core/util/lru_cache.h +122 -0
- data/src/core/util/manual_constructor.h +145 -0
- data/src/core/util/match.h +74 -0
- data/src/core/util/matchers.cc +337 -0
- data/src/core/util/matchers.h +167 -0
- data/src/core/util/memory.h +52 -0
- data/src/core/util/mpscq.cc +108 -0
- data/src/core/util/mpscq.h +98 -0
- data/src/core/util/msys/tmpfile.cc +57 -0
- data/src/core/util/no_destruct.h +95 -0
- data/src/core/util/notification.h +66 -0
- data/src/core/util/orphanable.h +153 -0
- data/src/core/util/overload.h +59 -0
- data/src/core/util/packed_table.h +40 -0
- data/src/core/util/per_cpu.cc +34 -0
- data/src/core/util/per_cpu.h +102 -0
- data/src/core/util/posix/cpu.cc +83 -0
- data/src/core/util/posix/directory_reader.cc +82 -0
- data/src/core/util/posix/env.cc +47 -0
- data/src/core/util/posix/stat.cc +54 -0
- data/src/core/util/posix/string.cc +71 -0
- data/src/core/util/posix/sync.cc +158 -0
- data/src/core/util/posix/thd.cc +243 -0
- data/src/core/util/posix/time.cc +123 -0
- data/src/core/util/posix/tmpfile.cc +71 -0
- data/src/core/util/random_early_detection.cc +33 -0
- data/src/core/util/random_early_detection.h +61 -0
- data/src/core/util/ref_counted.h +402 -0
- data/src/core/util/ref_counted_ptr.h +443 -0
- data/src/core/util/ref_counted_string.cc +42 -0
- data/src/core/util/ref_counted_string.h +159 -0
- data/src/core/util/ring_buffer.h +123 -0
- data/src/core/util/single_set_ptr.h +89 -0
- data/src/core/util/sorted_pack.h +89 -0
- data/src/core/util/spinlock.h +51 -0
- data/src/core/util/stat.h +35 -0
- data/src/core/util/status_helper.cc +431 -0
- data/src/core/util/status_helper.h +160 -0
- data/src/core/util/strerror.cc +40 -0
- data/src/core/util/strerror.h +29 -0
- data/src/core/util/string.cc +341 -0
- data/src/core/util/string.h +110 -0
- data/src/core/util/sync.cc +123 -0
- data/src/core/util/sync.h +199 -0
- data/src/core/util/sync_abseil.cc +107 -0
- data/src/core/util/table.h +486 -0
- data/src/core/util/tchar.cc +49 -0
- data/src/core/util/tchar.h +33 -0
- data/src/core/util/thd.h +193 -0
- data/src/core/util/time.cc +240 -0
- data/src/core/util/time.h +385 -0
- data/src/core/util/time_averaged_stats.cc +60 -0
- data/src/core/util/time_averaged_stats.h +79 -0
- data/src/core/util/time_precise.cc +168 -0
- data/src/core/util/time_precise.h +68 -0
- data/src/core/util/time_util.cc +80 -0
- data/src/core/util/time_util.h +41 -0
- data/src/core/util/tmpfile.h +31 -0
- data/src/core/util/type_list.h +32 -0
- data/src/core/util/unique_ptr_with_bitset.h +86 -0
- data/src/core/util/unique_type_name.h +123 -0
- data/src/core/util/upb_utils.h +43 -0
- data/src/core/util/uri.cc +376 -0
- data/src/core/util/uri.h +105 -0
- data/src/core/util/useful.h +155 -0
- data/src/core/util/uuid_v4.cc +37 -0
- data/src/core/util/uuid_v4.h +35 -0
- data/src/core/util/validation_errors.cc +73 -0
- data/src/core/util/validation_errors.h +144 -0
- data/src/core/util/windows/cpu.cc +34 -0
- data/src/core/util/windows/directory_reader.cc +79 -0
- data/src/core/util/windows/env.cc +56 -0
- data/src/core/util/windows/stat.cc +50 -0
- data/src/core/util/windows/string.cc +68 -0
- data/src/core/util/windows/string_util.cc +53 -0
- data/src/core/util/windows/sync.cc +122 -0
- data/src/core/util/windows/thd.cc +182 -0
- data/src/core/util/windows/time.cc +105 -0
- data/src/core/util/windows/tmpfile.cc +66 -0
- data/src/core/util/work_serializer.cc +538 -0
- data/src/core/util/work_serializer.h +105 -0
- data/src/core/util/xxhash_inline.h +29 -0
- data/src/core/xds/grpc/certificate_provider_store.cc +153 -0
- data/src/core/xds/grpc/certificate_provider_store.h +132 -0
- data/src/core/xds/grpc/file_watcher_certificate_provider_factory.cc +136 -0
- data/src/core/xds/grpc/file_watcher_certificate_provider_factory.h +80 -0
- data/src/core/xds/grpc/xds_audit_logger_registry.cc +123 -0
- data/src/core/xds/grpc/xds_audit_logger_registry.h +67 -0
- data/src/core/xds/grpc/xds_bootstrap_grpc.cc +238 -0
- data/src/core/xds/grpc/xds_bootstrap_grpc.h +167 -0
- data/src/core/xds/grpc/xds_certificate_provider.cc +216 -0
- data/src/core/xds/grpc/xds_certificate_provider.h +116 -0
- data/src/core/xds/grpc/xds_client_grpc.cc +445 -0
- data/src/core/xds/grpc/xds_client_grpc.h +115 -0
- data/src/core/xds/grpc/xds_cluster.cc +79 -0
- data/src/core/xds/grpc/xds_cluster.h +135 -0
- data/src/core/xds/grpc/xds_cluster_parser.cc +772 -0
- data/src/core/xds/grpc/xds_cluster_parser.h +61 -0
- data/src/core/xds/grpc/xds_cluster_specifier_plugin.cc +137 -0
- data/src/core/xds/grpc/xds_cluster_specifier_plugin.h +96 -0
- data/src/core/xds/grpc/xds_common_types.cc +103 -0
- data/src/core/xds/grpc/xds_common_types.h +90 -0
- data/src/core/xds/grpc/xds_common_types_parser.cc +503 -0
- data/src/core/xds/grpc/xds_common_types_parser.h +76 -0
- data/src/core/xds/grpc/xds_endpoint.cc +97 -0
- data/src/core/xds/grpc/xds_endpoint.h +128 -0
- data/src/core/xds/grpc/xds_endpoint_parser.cc +444 -0
- data/src/core/xds/grpc/xds_endpoint_parser.h +47 -0
- data/src/core/xds/grpc/xds_health_status.cc +73 -0
- data/src/core/xds/grpc/xds_health_status.h +88 -0
- data/src/core/xds/grpc/xds_http_fault_filter.cc +249 -0
- data/src/core/xds/grpc/xds_http_fault_filter.h +62 -0
- data/src/core/xds/grpc/xds_http_filter.h +134 -0
- data/src/core/xds/grpc/xds_http_filter_registry.cc +122 -0
- data/src/core/xds/grpc/xds_http_filter_registry.h +104 -0
- data/src/core/xds/grpc/xds_http_gcp_authn_filter.cc +141 -0
- data/src/core/xds/grpc/xds_http_gcp_authn_filter.h +60 -0
- data/src/core/xds/grpc/xds_http_rbac_filter.cc +602 -0
- data/src/core/xds/grpc/xds_http_rbac_filter.h +62 -0
- data/src/core/xds/grpc/xds_http_stateful_session_filter.cc +230 -0
- data/src/core/xds/grpc/xds_http_stateful_session_filter.h +62 -0
- data/src/core/xds/grpc/xds_lb_policy_registry.cc +365 -0
- data/src/core/xds/grpc/xds_lb_policy_registry.h +70 -0
- data/src/core/xds/grpc/xds_listener.cc +175 -0
- data/src/core/xds/grpc/xds_listener.h +203 -0
- data/src/core/xds/grpc/xds_listener_parser.cc +993 -0
- data/src/core/xds/grpc/xds_listener_parser.h +59 -0
- data/src/core/xds/grpc/xds_metadata.cc +62 -0
- data/src/core/xds/grpc/xds_metadata.h +150 -0
- data/src/core/xds/grpc/xds_metadata_parser.cc +184 -0
- data/src/core/xds/grpc/xds_metadata_parser.h +35 -0
- data/src/core/xds/grpc/xds_route_config.cc +282 -0
- data/src/core/xds/grpc/xds_route_config.h +220 -0
- data/src/core/xds/grpc/xds_route_config_parser.cc +962 -0
- data/src/core/xds/grpc/xds_route_config_parser.h +77 -0
- data/src/core/xds/grpc/xds_routing.cc +297 -0
- data/src/core/xds/grpc/xds_routing.h +112 -0
- data/src/core/xds/grpc/xds_server_grpc.cc +160 -0
- data/src/core/xds/grpc/xds_server_grpc.h +63 -0
- data/src/core/xds/grpc/xds_transport_grpc.cc +393 -0
- data/src/core/xds/grpc/xds_transport_grpc.h +149 -0
- data/src/core/xds/xds_client/lrs_client.cc +1292 -0
- data/src/core/xds/xds_client/lrs_client.h +394 -0
- data/src/core/xds/xds_client/xds_api.cc +353 -0
- data/src/core/xds/xds_client/xds_api.h +166 -0
- data/src/core/xds/xds_client/xds_backend_metric_propagation.cc +63 -0
- data/src/core/xds/xds_client/xds_backend_metric_propagation.h +59 -0
- data/src/core/xds/xds_client/xds_bootstrap.cc +37 -0
- data/src/core/xds/xds_client/xds_bootstrap.h +88 -0
- data/src/core/xds/xds_client/xds_channel_args.h +32 -0
- data/src/core/xds/xds_client/xds_client.cc +1689 -0
- data/src/core/xds/xds_client/xds_client.h +334 -0
- data/src/core/xds/xds_client/xds_locality.h +102 -0
- data/src/core/xds/xds_client/xds_metrics.h +41 -0
- data/src/core/xds/xds_client/xds_resource_type.h +97 -0
- data/src/core/xds/xds_client/xds_resource_type_impl.h +87 -0
- data/src/core/xds/xds_client/xds_transport.h +104 -0
- data/src/ruby/bin/math_pb.rb +1 -22
- data/src/ruby/ext/grpc/extconf.rb +1 -4
- data/src/ruby/ext/grpc/rb_byte_buffer.c +3 -3
- data/src/ruby/ext/grpc/rb_call.c +15 -8
- data/src/ruby/ext/grpc/rb_call_credentials.c +39 -32
- data/src/ruby/ext/grpc/rb_call_credentials.h +1 -0
- data/src/ruby/ext/grpc/rb_channel.c +42 -36
- data/src/ruby/ext/grpc/rb_channel_args.c +4 -4
- data/src/ruby/ext/grpc/rb_channel_credentials.c +5 -5
- data/src/ruby/ext/grpc/rb_channel_credentials.h +1 -2
- data/src/ruby/ext/grpc/rb_completion_queue.c +18 -36
- data/src/ruby/ext/grpc/rb_completion_queue.h +7 -1
- data/src/ruby/ext/grpc/rb_compression_options.c +9 -10
- data/src/ruby/ext/grpc/rb_event_thread.c +9 -9
- data/src/ruby/ext/grpc/rb_grpc.c +17 -16
- data/src/ruby/ext/grpc/rb_grpc.h +8 -1
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +136 -146
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +205 -219
- data/src/ruby/ext/grpc/rb_server.c +47 -27
- data/src/ruby/ext/grpc/rb_server_credentials.c +4 -3
- data/src/ruby/ext/grpc/rb_server_credentials.h +2 -2
- data/src/ruby/ext/grpc/rb_xds_channel_credentials.c +5 -5
- data/src/ruby/ext/grpc/rb_xds_channel_credentials.h +1 -2
- data/src/ruby/ext/grpc/rb_xds_server_credentials.c +5 -4
- data/src/ruby/ext/grpc/rb_xds_server_credentials.h +2 -2
- data/src/ruby/lib/grpc/generic/active_call.rb +16 -7
- data/src/ruby/lib/grpc/logconfig.rb +13 -0
- data/src/ruby/lib/grpc/version.rb +1 -1
- data/src/ruby/pb/grpc/health/v1/health_pb.rb +1 -22
- data/src/ruby/pb/grpc/testing/duplicate/echo_duplicate_services_pb.rb +5 -5
- data/src/ruby/pb/grpc/testing/metrics_pb.rb +10 -19
- data/src/ruby/pb/grpc/testing/metrics_services_pb.rb +5 -5
- data/src/ruby/pb/src/proto/grpc/testing/empty_pb.rb +1 -22
- data/src/ruby/pb/src/proto/grpc/testing/messages_pb.rb +1 -22
- data/src/ruby/pb/src/proto/grpc/testing/test_pb.rb +1 -22
- data/src/ruby/spec/call_spec.rb +53 -40
- data/src/ruby/spec/channel_spec.rb +4 -2
- data/src/ruby/spec/client_server_spec.rb +148 -507
- data/src/ruby/spec/generic/active_call_spec.rb +64 -86
- data/src/ruby/spec/generic/client_stub_spec.rb +20 -20
- data/src/ruby/spec/generic/rpc_server_spec.rb +25 -0
- data/src/ruby/spec/logconfig_spec.rb +30 -0
- data/src/ruby/spec/support/services.rb +3 -0
- data/third_party/abseil-cpp/absl/algorithm/container.h +57 -18
- data/third_party/abseil-cpp/absl/base/attributes.h +84 -0
- data/third_party/abseil-cpp/absl/base/config.h +32 -51
- data/third_party/abseil-cpp/absl/base/dynamic_annotations.h +0 -16
- data/third_party/abseil-cpp/absl/base/internal/nullability_impl.h +3 -1
- data/third_party/abseil-cpp/absl/base/internal/spinlock.h +13 -3
- data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.cc +0 -12
- data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock_config.h +4 -4
- data/third_party/abseil-cpp/absl/base/macros.h +48 -0
- data/third_party/abseil-cpp/absl/base/no_destructor.h +35 -40
- data/third_party/abseil-cpp/absl/base/nullability.h +33 -7
- data/third_party/abseil-cpp/absl/base/optimization.h +11 -0
- data/third_party/abseil-cpp/absl/base/options.h +1 -1
- data/third_party/abseil-cpp/absl/base/prefetch.h +1 -1
- data/third_party/abseil-cpp/absl/container/flat_hash_map.h +68 -12
- data/third_party/abseil-cpp/absl/container/flat_hash_set.h +60 -6
- data/third_party/abseil-cpp/absl/container/hash_container_defaults.h +45 -0
- data/third_party/abseil-cpp/absl/container/inlined_vector.h +13 -0
- data/third_party/abseil-cpp/absl/container/internal/common_policy_traits.h +20 -11
- data/third_party/abseil-cpp/absl/container/internal/compressed_tuple.h +15 -16
- data/third_party/abseil-cpp/absl/container/internal/container_memory.h +34 -1
- data/third_party/abseil-cpp/absl/container/internal/hash_function_defaults.h +68 -1
- data/third_party/abseil-cpp/absl/container/internal/hash_policy_traits.h +50 -0
- data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.cc +22 -7
- data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.h +26 -8
- data/third_party/abseil-cpp/absl/container/internal/inlined_vector.h +39 -35
- data/third_party/abseil-cpp/absl/container/internal/layout.h +190 -74
- data/third_party/abseil-cpp/absl/container/internal/raw_hash_map.h +8 -6
- data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.cc +334 -71
- data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.h +1299 -458
- data/third_party/abseil-cpp/absl/crc/internal/crc32_x86_arm_combined_simd.h +19 -17
- data/third_party/abseil-cpp/absl/crc/internal/crc_cord_state.cc +4 -3
- data/third_party/abseil-cpp/absl/crc/internal/crc_memcpy_fallback.cc +2 -1
- data/third_party/abseil-cpp/absl/crc/internal/crc_memcpy_x86_arm_combined.cc +12 -8
- data/third_party/abseil-cpp/absl/crc/internal/crc_non_temporal_memcpy.cc +1 -1
- data/third_party/abseil-cpp/absl/crc/internal/crc_x86_arm_combined.cc +11 -7
- data/third_party/abseil-cpp/absl/crc/internal/non_temporal_memcpy.h +18 -17
- data/third_party/abseil-cpp/absl/debugging/internal/bounded_utf8_length_sequence.h +126 -0
- data/third_party/abseil-cpp/absl/debugging/internal/decode_rust_punycode.cc +258 -0
- data/third_party/abseil-cpp/absl/debugging/internal/decode_rust_punycode.h +55 -0
- data/third_party/abseil-cpp/absl/debugging/internal/demangle.cc +1057 -86
- data/third_party/abseil-cpp/absl/debugging/internal/demangle.h +3 -0
- data/third_party/abseil-cpp/absl/debugging/internal/demangle_rust.cc +925 -0
- data/third_party/abseil-cpp/absl/debugging/internal/demangle_rust.h +42 -0
- data/third_party/abseil-cpp/absl/debugging/internal/elf_mem_image.cc +43 -16
- data/third_party/abseil-cpp/absl/debugging/internal/elf_mem_image.h +8 -7
- data/third_party/abseil-cpp/absl/debugging/internal/examine_stack.cc +320 -0
- data/third_party/abseil-cpp/absl/debugging/internal/examine_stack.h +64 -0
- data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_aarch64-inl.inc +10 -7
- data/third_party/abseil-cpp/absl/debugging/internal/utf8_for_code_point.cc +70 -0
- data/third_party/abseil-cpp/absl/debugging/internal/utf8_for_code_point.h +47 -0
- data/third_party/abseil-cpp/absl/flags/commandlineflag.h +11 -0
- data/third_party/abseil-cpp/absl/flags/flag.h +2 -0
- data/third_party/abseil-cpp/absl/flags/internal/flag.cc +117 -30
- data/third_party/abseil-cpp/absl/flags/internal/flag.h +192 -30
- data/third_party/abseil-cpp/absl/flags/reflection.cc +10 -0
- data/third_party/abseil-cpp/absl/functional/any_invocable.h +13 -3
- data/third_party/abseil-cpp/absl/functional/bind_front.h +3 -2
- data/third_party/abseil-cpp/absl/functional/internal/any_invocable.h +7 -7
- data/third_party/abseil-cpp/absl/functional/internal/front_binder.h +9 -9
- data/third_party/abseil-cpp/absl/hash/internal/hash.cc +1 -1
- data/third_party/abseil-cpp/absl/hash/internal/hash.h +13 -3
- data/third_party/abseil-cpp/absl/hash/internal/low_level_hash.cc +60 -28
- data/third_party/abseil-cpp/absl/hash/internal/low_level_hash.h +4 -0
- data/third_party/abseil-cpp/absl/log/absl_vlog_is_on.h +93 -0
- data/third_party/abseil-cpp/absl/log/check.h +209 -0
- data/third_party/abseil-cpp/absl/log/globals.cc +178 -0
- data/third_party/abseil-cpp/absl/log/globals.h +231 -0
- data/third_party/abseil-cpp/absl/log/internal/append_truncated.h +47 -0
- data/third_party/abseil-cpp/absl/log/internal/check_impl.h +150 -0
- data/third_party/abseil-cpp/absl/log/internal/check_op.cc +138 -0
- data/third_party/abseil-cpp/absl/log/internal/check_op.h +462 -0
- data/third_party/abseil-cpp/absl/log/internal/conditions.cc +83 -0
- data/third_party/abseil-cpp/absl/log/internal/conditions.h +239 -0
- data/third_party/abseil-cpp/absl/log/internal/config.h +45 -0
- data/third_party/abseil-cpp/absl/log/internal/fnmatch.cc +73 -0
- data/third_party/abseil-cpp/absl/log/internal/fnmatch.h +35 -0
- data/third_party/abseil-cpp/absl/log/internal/globals.cc +145 -0
- data/third_party/abseil-cpp/absl/log/internal/globals.h +101 -0
- data/third_party/abseil-cpp/absl/log/internal/log_format.cc +205 -0
- data/third_party/abseil-cpp/absl/log/internal/log_format.h +78 -0
- data/third_party/abseil-cpp/absl/log/internal/log_impl.h +282 -0
- data/third_party/abseil-cpp/absl/log/internal/log_message.cc +690 -0
- data/third_party/abseil-cpp/absl/log/internal/log_message.h +394 -0
- data/third_party/abseil-cpp/absl/log/internal/log_sink_set.cc +296 -0
- data/third_party/abseil-cpp/absl/log/internal/log_sink_set.h +54 -0
- data/third_party/abseil-cpp/absl/log/internal/nullguard.cc +35 -0
- data/third_party/abseil-cpp/absl/log/internal/nullguard.h +88 -0
- data/third_party/abseil-cpp/absl/log/internal/nullstream.h +127 -0
- data/third_party/abseil-cpp/absl/log/internal/proto.cc +220 -0
- data/third_party/abseil-cpp/absl/log/internal/proto.h +288 -0
- data/third_party/abseil-cpp/absl/log/internal/strip.h +108 -0
- data/third_party/abseil-cpp/absl/log/internal/vlog_config.cc +340 -0
- data/third_party/abseil-cpp/absl/log/internal/vlog_config.h +163 -0
- data/third_party/abseil-cpp/absl/log/internal/voidify.h +44 -0
- data/third_party/abseil-cpp/absl/log/log.h +365 -0
- data/third_party/abseil-cpp/absl/log/log_entry.cc +41 -0
- data/third_party/abseil-cpp/absl/log/log_entry.h +221 -0
- data/third_party/abseil-cpp/absl/log/log_sink.cc +23 -0
- data/third_party/abseil-cpp/absl/log/log_sink.h +71 -0
- data/third_party/abseil-cpp/absl/log/log_sink_registry.h +61 -0
- data/third_party/abseil-cpp/absl/log/vlog_is_on.h +72 -0
- data/third_party/abseil-cpp/absl/meta/type_traits.h +138 -42
- data/third_party/abseil-cpp/absl/numeric/int128.cc +0 -3
- data/third_party/abseil-cpp/absl/numeric/int128.h +35 -5
- data/third_party/abseil-cpp/absl/numeric/int128_have_intrinsic.inc +14 -0
- data/third_party/abseil-cpp/absl/numeric/int128_no_intrinsic.inc +18 -0
- data/third_party/abseil-cpp/absl/numeric/internal/bits.h +6 -2
- data/third_party/abseil-cpp/absl/random/beta_distribution.h +8 -8
- data/third_party/abseil-cpp/absl/random/bit_gen_ref.h +9 -7
- data/third_party/abseil-cpp/absl/random/distributions.h +11 -11
- data/third_party/abseil-cpp/absl/random/seed_sequences.h +2 -0
- data/third_party/abseil-cpp/absl/status/internal/statusor_internal.h +61 -2
- data/third_party/abseil-cpp/absl/status/status.cc +0 -4
- data/third_party/abseil-cpp/absl/status/status.h +4 -4
- data/third_party/abseil-cpp/absl/status/statusor.h +108 -142
- data/third_party/abseil-cpp/absl/strings/ascii.cc +32 -71
- data/third_party/abseil-cpp/absl/strings/cord.cc +20 -15
- data/third_party/abseil-cpp/absl/strings/cord.h +68 -7
- data/third_party/abseil-cpp/absl/strings/escaping.cc +96 -21
- data/third_party/abseil-cpp/absl/strings/escaping.h +25 -8
- data/third_party/abseil-cpp/absl/strings/has_absl_stringify.h +1 -0
- data/third_party/abseil-cpp/absl/strings/internal/charconv_bigint.h +10 -0
- data/third_party/abseil-cpp/absl/strings/internal/cord_internal.h +29 -9
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree.h +2 -2
- data/third_party/abseil-cpp/absl/strings/internal/cordz_functions.cc +19 -13
- data/third_party/abseil-cpp/absl/strings/internal/cordz_functions.h +23 -13
- data/third_party/abseil-cpp/absl/strings/internal/cordz_handle.cc +24 -24
- data/third_party/abseil-cpp/absl/strings/internal/cordz_info.cc +12 -7
- data/third_party/abseil-cpp/absl/strings/internal/cordz_info.h +9 -4
- data/third_party/abseil-cpp/absl/strings/internal/escaping.cc +5 -2
- data/third_party/abseil-cpp/absl/strings/internal/str_join_internal.h +23 -2
- data/third_party/abseil-cpp/absl/strings/internal/str_split_internal.h +5 -1
- data/third_party/abseil-cpp/absl/strings/numbers.cc +107 -333
- data/third_party/abseil-cpp/absl/strings/numbers.h +12 -151
- data/third_party/abseil-cpp/absl/strings/str_cat.cc +49 -142
- data/third_party/abseil-cpp/absl/strings/str_cat.h +70 -85
- data/third_party/abseil-cpp/absl/strings/str_format.h +1 -1
- data/third_party/abseil-cpp/absl/strings/str_join.h +19 -5
- data/third_party/abseil-cpp/absl/strings/str_split.h +2 -2
- data/third_party/abseil-cpp/absl/strings/string_view.h +3 -2
- data/third_party/abseil-cpp/absl/strings/substitute.cc +4 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/graphcycles.cc +11 -2
- data/third_party/abseil-cpp/absl/synchronization/internal/graphcycles.h +5 -0
- data/third_party/abseil-cpp/absl/synchronization/mutex.h +5 -4
- data/third_party/abseil-cpp/absl/time/civil_time.h +2 -2
- data/third_party/abseil-cpp/absl/time/clock.cc +15 -1
- data/third_party/abseil-cpp/absl/time/duration.cc +58 -53
- data/third_party/abseil-cpp/absl/time/format.cc +2 -1
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.cc +1 -1
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_lookup.cc +0 -29
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/tzfile.h +3 -3
- data/third_party/abseil-cpp/absl/time/time.h +73 -29
- data/third_party/abseil-cpp/absl/types/compare.h +505 -0
- data/third_party/abseil-cpp/absl/types/internal/optional.h +2 -2
- data/third_party/abseil-cpp/absl/types/internal/variant.h +55 -67
- data/third_party/abseil-cpp/absl/types/optional.h +15 -18
- data/third_party/abseil-cpp/absl/types/span.h +3 -2
- data/third_party/abseil-cpp/absl/types/variant.h +19 -24
- data/third_party/abseil-cpp/absl/utility/utility.h +3 -41
- data/third_party/boringssl-with-bazel/src/crypto/asn1/internal.h +1 -7
- data/third_party/boringssl-with-bazel/src/crypto/asn1/posix_time.c +50 -39
- data/third_party/boringssl-with-bazel/src/crypto/base64/base64.c +4 -0
- data/third_party/boringssl-with-bazel/src/crypto/bcm_support.h +113 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/bio.c +15 -20
- data/third_party/boringssl-with-bazel/src/crypto/bio/file.c +25 -10
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/cbs.c +3 -18
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/unicode.c +3 -2
- data/third_party/boringssl-with-bazel/src/crypto/chacha/chacha.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/chacha/internal.h +19 -15
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_chacha20poly1305.c +7 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_des.c +63 -94
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_null.c +7 -3
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_rc2.c +20 -28
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_rc4.c +9 -4
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/internal.h +43 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/tls_cbc.c +2 -2
- data/third_party/boringssl-with-bazel/src/crypto/conf/conf.c +66 -41
- data/third_party/boringssl-with-bazel/src/crypto/cpu_arm_linux.c +4 -1
- data/third_party/boringssl-with-bazel/src/crypto/cpu_intel.c +71 -37
- data/third_party/boringssl-with-bazel/src/crypto/crypto.c +8 -62
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519.c +7 -7
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/internal.h +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/des/des.c +45 -32
- data/third_party/boringssl-with-bazel/src/crypto/des/internal.h +24 -0
- data/third_party/boringssl-with-bazel/src/crypto/digest_extra/digest_extra.c +1 -0
- data/third_party/boringssl-with-bazel/src/crypto/dilithium/dilithium.c +1539 -0
- data/third_party/boringssl-with-bazel/src/crypto/dilithium/internal.h +58 -0
- data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa.c +36 -20
- data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa_asn1.c +3 -4
- data/third_party/boringssl-with-bazel/src/crypto/dsa/internal.h +2 -0
- data/third_party/boringssl-with-bazel/src/crypto/ecdsa_extra/ecdsa_asn1.c +160 -14
- data/third_party/boringssl-with-bazel/src/crypto/err/err.c +81 -60
- data/third_party/boringssl-with-bazel/src/crypto/evp/evp.c +41 -120
- data/third_party/boringssl-with-bazel/src/crypto/evp/evp_asn1.c +13 -13
- data/third_party/boringssl-with-bazel/src/crypto/evp/internal.h +7 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_dh.c +137 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_dh_asn1.c +120 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_dsa_asn1.c +30 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_ec.c +3 -4
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_ec_asn1.c +30 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_ed25519.c +1 -4
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_rsa_asn1.c +30 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_x25519.c +1 -4
- data/third_party/boringssl-with-bazel/src/crypto/ex_data.c +6 -7
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/aes.c.inc +127 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/internal.h +33 -7
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm.c +84 -80
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm_interface.h +89 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/bytes.c.inc +267 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div.c.inc +876 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div_extra.c.inc +87 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/exponentiation.c.inc +1320 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/gcd_extra.c.inc +331 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/internal.h +33 -23
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery_inv.c.inc +222 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/mul.c.inc +744 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/prime.c.inc +1077 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/random.c.inc +354 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/sqrt.c.inc +499 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/e_aes.c.inc +1464 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/internal.h +0 -3
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_key.c.inc +561 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-nistz.c.inc +734 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-nistz.h +65 -8
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/scalar.c.inc +173 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/ecdsa.c.inc +317 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/internal.h +28 -11
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/fips_shared_support.c +3 -6
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/internal.h +1 -80
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/rand.c.inc +479 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/padding.c.inc +420 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa.c.inc +1038 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa_impl.c.inc +1351 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/fips.c.inc +121 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/self_check.c.inc +1038 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/service_indicator/internal.h +2 -2
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/service_indicator/service_indicator.c.inc +328 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/internal.h +78 -29
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha1.c.inc +439 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha256.c.inc +359 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha512.c.inc +543 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/tls/kdf.c.inc +218 -0
- data/third_party/boringssl-with-bazel/src/crypto/hpke/hpke.c +295 -2
- data/third_party/boringssl-with-bazel/src/crypto/internal.h +143 -45
- data/third_party/boringssl-with-bazel/src/crypto/kyber/internal.h +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/kyber/kyber.c +2 -1
- data/third_party/boringssl-with-bazel/src/crypto/mem.c +25 -12
- data/third_party/boringssl-with-bazel/src/crypto/mldsa/internal.h +73 -0
- data/third_party/boringssl-with-bazel/src/crypto/mldsa/mldsa.c +1687 -0
- data/third_party/boringssl-with-bazel/src/crypto/mlkem/internal.h +90 -0
- data/third_party/boringssl-with-bazel/src/crypto/mlkem/mlkem.cc +1097 -0
- data/third_party/boringssl-with-bazel/src/crypto/obj/obj_dat.h +4 -1
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_lib.c +19 -19
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pk8.c +43 -41
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pkey.c +13 -12
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/internal.h +1 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/deterministic.c +9 -1
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/fork_detect.c +195 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/getentropy.c +9 -1
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/ios.c +9 -1
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/passive.c +19 -3
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/rand_extra.c +26 -23
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/sysrand_internal.h +37 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/trusty.c +9 -1
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/urandom.c +328 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/windows.c +8 -1
- data/third_party/boringssl-with-bazel/src/crypto/rsa_extra/internal.h +2 -0
- data/third_party/boringssl-with-bazel/src/crypto/spx/spx.c +7 -6
- data/third_party/boringssl-with-bazel/src/crypto/x509/by_dir.c +26 -33
- data/third_party/boringssl-with-bazel/src/crypto/x509/by_file.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/x509/internal.h +8 -5
- data/third_party/boringssl-with-bazel/src/crypto/x509/rsa_pss.c +5 -1
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_cpols.c +9 -4
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_crld.c +2 -2
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_info.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_lib.c +2 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_purp.c +40 -61
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_utl.c +49 -16
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_lu.c +24 -17
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_trs.c +51 -78
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vfy.c +12 -29
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vpm.c +13 -2
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_algor.c +2 -2
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_x509.c +1 -6
- data/third_party/boringssl-with-bazel/src/gen/crypto/err_data.c +1514 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/asn1.h +24 -11
- data/third_party/boringssl-with-bazel/src/include/openssl/base.h +10 -2
- data/third_party/boringssl-with-bazel/src/include/openssl/bio.h +88 -45
- data/third_party/boringssl-with-bazel/src/include/openssl/bn.h +14 -9
- data/third_party/boringssl-with-bazel/src/include/openssl/bytestring.h +12 -4
- data/third_party/boringssl-with-bazel/src/include/openssl/crypto.h +10 -11
- data/third_party/boringssl-with-bazel/src/include/openssl/dh.h +17 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/dsa.h +10 -3
- data/third_party/boringssl-with-bazel/src/include/openssl/err.h +13 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/evp.h +25 -14
- data/third_party/boringssl-with-bazel/src/include/openssl/evp_errors.h +1 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/ex_data.h +15 -3
- data/third_party/boringssl-with-bazel/src/include/openssl/experimental/dilithium.h +129 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/experimental/kyber.h +146 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/experimental/spx.h +90 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/hpke.h +8 -6
- data/third_party/boringssl-with-bazel/src/include/openssl/mldsa.h +136 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/mlkem.h +246 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/nid.h +3 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/obj.h +2 -2
- data/third_party/boringssl-with-bazel/src/include/openssl/pem.h +66 -57
- data/third_party/boringssl-with-bazel/src/include/openssl/posix_time.h +6 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/rand.h +19 -10
- data/third_party/boringssl-with-bazel/src/include/openssl/rsa.h +19 -10
- data/third_party/boringssl-with-bazel/src/include/openssl/service_indicator.h +2 -2
- data/third_party/boringssl-with-bazel/src/include/openssl/span.h +62 -12
- data/third_party/boringssl-with-bazel/src/include/openssl/ssl.h +409 -111
- data/third_party/boringssl-with-bazel/src/include/openssl/stack.h +10 -3
- data/third_party/boringssl-with-bazel/src/include/openssl/target.h +13 -10
- data/third_party/boringssl-with-bazel/src/include/openssl/tls1.h +2 -2
- data/third_party/boringssl-with-bazel/src/include/openssl/x509.h +2927 -2394
- data/third_party/boringssl-with-bazel/src/ssl/d1_both.cc +9 -12
- data/third_party/boringssl-with-bazel/src/ssl/d1_lib.cc +6 -0
- data/third_party/boringssl-with-bazel/src/ssl/d1_pkt.cc +10 -5
- data/third_party/boringssl-with-bazel/src/ssl/dtls_method.cc +14 -2
- data/third_party/boringssl-with-bazel/src/ssl/dtls_record.cc +301 -66
- data/third_party/boringssl-with-bazel/src/ssl/encrypted_client_hello.cc +3 -9
- data/third_party/boringssl-with-bazel/src/ssl/extensions.cc +66 -58
- data/third_party/boringssl-with-bazel/src/ssl/handoff.cc +1 -1
- data/third_party/boringssl-with-bazel/src/ssl/handshake.cc +17 -7
- data/third_party/boringssl-with-bazel/src/ssl/handshake_client.cc +138 -54
- data/third_party/boringssl-with-bazel/src/ssl/handshake_server.cc +159 -117
- data/third_party/boringssl-with-bazel/src/ssl/internal.h +349 -202
- data/third_party/boringssl-with-bazel/src/ssl/s3_both.cc +45 -17
- data/third_party/boringssl-with-bazel/src/ssl/s3_lib.cc +0 -1
- data/third_party/boringssl-with-bazel/src/ssl/s3_pkt.cc +21 -1
- data/third_party/boringssl-with-bazel/src/ssl/ssl_aead_ctx.cc +86 -1
- data/third_party/boringssl-with-bazel/src/ssl/ssl_buffer.cc +7 -4
- data/third_party/boringssl-with-bazel/src/ssl/ssl_cert.cc +66 -385
- data/third_party/boringssl-with-bazel/src/ssl/ssl_cipher.cc +21 -19
- data/third_party/boringssl-with-bazel/src/ssl/ssl_credential.cc +423 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_file.cc +2 -2
- data/third_party/boringssl-with-bazel/src/ssl/ssl_key_share.cc +99 -4
- data/third_party/boringssl-with-bazel/src/ssl/ssl_lib.cc +139 -83
- data/third_party/boringssl-with-bazel/src/ssl/ssl_privkey.cc +116 -93
- data/third_party/boringssl-with-bazel/src/ssl/ssl_session.cc +6 -14
- data/third_party/boringssl-with-bazel/src/ssl/ssl_versions.cc +7 -1
- data/third_party/boringssl-with-bazel/src/ssl/ssl_x509.cc +48 -116
- data/third_party/boringssl-with-bazel/src/ssl/tls13_both.cc +21 -27
- data/third_party/boringssl-with-bazel/src/ssl/tls13_client.cc +54 -7
- data/third_party/boringssl-with-bazel/src/ssl/tls13_enc.cc +96 -34
- data/third_party/boringssl-with-bazel/src/ssl/tls13_server.cc +68 -23
- data/third_party/boringssl-with-bazel/src/ssl/tls_record.cc +4 -24
- data/third_party/upb/upb/base/descriptor_constants.h +29 -2
- data/third_party/upb/upb/base/internal/endian.h +46 -0
- data/third_party/upb/upb/base/status.h +1 -1
- data/third_party/upb/upb/base/status.hpp +5 -1
- data/third_party/upb/upb/base/string_view.h +7 -5
- data/third_party/upb/upb/base/upcast.h +29 -0
- data/third_party/upb/upb/generated_code_support.h +2 -1
- data/third_party/upb/upb/json/decode.c +161 -64
- data/third_party/upb/upb/json/decode.h +29 -29
- data/third_party/upb/upb/json/encode.c +5 -28
- data/third_party/upb/upb/json/encode.h +3 -26
- data/third_party/upb/upb/lex/round_trip.c +10 -0
- data/third_party/upb/upb/mem/arena.c +312 -109
- data/third_party/upb/upb/mem/arena.h +27 -68
- data/third_party/upb/upb/mem/arena.hpp +13 -5
- data/third_party/upb/upb/mem/internal/arena.h +78 -57
- data/third_party/upb/upb/message/accessors.c +17 -45
- data/third_party/upb/upb/message/accessors.h +209 -314
- data/third_party/upb/upb/message/array.c +78 -83
- data/third_party/upb/upb/message/array.h +26 -30
- data/third_party/upb/upb/message/compat.c +39 -0
- data/third_party/upb/upb/message/compat.h +41 -0
- data/third_party/upb/upb/message/copy.c +325 -0
- data/third_party/upb/upb/message/copy.h +56 -0
- data/third_party/upb/upb/message/internal/accessors.h +738 -176
- data/third_party/upb/upb/message/internal/array.h +86 -79
- data/third_party/upb/upb/message/internal/compare_unknown.c +289 -0
- data/third_party/upb/upb/message/internal/compare_unknown.h +49 -0
- data/third_party/upb/upb/message/internal/extension.c +63 -0
- data/third_party/upb/upb/message/internal/extension.h +14 -17
- data/third_party/upb/upb/message/internal/map.h +43 -41
- data/third_party/upb/upb/message/internal/map_entry.h +14 -39
- data/third_party/upb/upb/message/internal/map_sorter.h +19 -39
- data/third_party/upb/upb/message/internal/message.c +75 -0
- data/third_party/upb/upb/message/internal/message.h +36 -41
- data/third_party/upb/upb/message/internal/tagged_ptr.h +56 -0
- data/third_party/upb/upb/message/internal/types.h +46 -11
- data/third_party/upb/upb/message/map.c +28 -26
- data/third_party/upb/upb/message/map.h +16 -40
- data/third_party/upb/upb/message/map_gencode_util.h +3 -26
- data/third_party/upb/upb/message/map_sorter.c +22 -34
- data/third_party/upb/upb/message/merge.c +38 -0
- data/third_party/upb/upb/message/merge.h +26 -0
- data/third_party/upb/upb/message/message.c +106 -103
- data/third_party/upb/upb/message/message.h +19 -8
- data/third_party/upb/upb/message/tagged_ptr.h +15 -36
- data/third_party/upb/upb/message/value.h +29 -5
- data/third_party/upb/upb/mini_descriptor/build_enum.c +23 -14
- data/third_party/upb/upb/mini_descriptor/build_enum.h +6 -14
- data/third_party/upb/upb/mini_descriptor/decode.c +145 -109
- data/third_party/upb/upb/mini_descriptor/decode.h +3 -8
- data/third_party/upb/upb/mini_descriptor/link.c +47 -33
- data/third_party/upb/upb/mini_descriptor/link.h +1 -1
- data/third_party/upb/upb/mini_table/enum.h +4 -8
- data/third_party/upb/upb/mini_table/extension.h +29 -0
- data/third_party/upb/upb/mini_table/extension_registry.c +27 -2
- data/third_party/upb/upb/mini_table/extension_registry.h +17 -0
- data/third_party/upb/upb/mini_table/field.h +28 -68
- data/third_party/upb/upb/mini_table/file.h +31 -0
- data/third_party/upb/upb/mini_table/internal/enum.h +19 -20
- data/third_party/upb/upb/mini_table/internal/extension.h +43 -3
- data/third_party/upb/upb/mini_table/internal/field.h +137 -28
- data/third_party/upb/upb/mini_table/internal/file.h +47 -10
- data/third_party/upb/upb/mini_table/internal/message.c +37 -9
- data/third_party/upb/upb/mini_table/internal/message.h +138 -23
- data/third_party/upb/upb/mini_table/internal/size_log2.h +77 -0
- data/third_party/upb/upb/mini_table/internal/sub.h +44 -4
- data/third_party/upb/upb/mini_table/message.c +18 -19
- data/third_party/upb/upb/mini_table/message.h +35 -25
- data/third_party/upb/upb/mini_table/sub.h +32 -1
- data/third_party/upb/upb/port/def.inc +125 -11
- data/third_party/upb/upb/port/undef.inc +11 -1
- data/third_party/upb/upb/reflection/common.h +1 -11
- data/third_party/upb/upb/reflection/def.hpp +42 -3
- data/third_party/upb/upb/reflection/def_pool.c +81 -2
- data/third_party/upb/upb/reflection/def_pool.h +10 -2
- data/third_party/upb/upb/reflection/descriptor_bootstrap.h +19 -0
- data/third_party/upb/upb/reflection/enum_def.c +46 -19
- data/third_party/upb/upb/reflection/enum_def.h +2 -0
- data/third_party/upb/upb/reflection/enum_value_def.c +38 -14
- data/third_party/upb/upb/reflection/enum_value_def.h +2 -0
- data/third_party/upb/upb/reflection/extension_range.c +13 -5
- data/third_party/upb/upb/reflection/extension_range.h +2 -0
- data/third_party/upb/upb/reflection/field_def.c +214 -141
- data/third_party/upb/upb/reflection/field_def.h +14 -1
- data/third_party/upb/upb/reflection/file_def.c +124 -9
- data/third_party/upb/upb/reflection/file_def.h +6 -0
- data/third_party/upb/upb/reflection/internal/def_builder.c +85 -7
- data/third_party/upb/upb/reflection/internal/def_builder.h +23 -0
- data/third_party/upb/upb/reflection/internal/enum_def.h +5 -4
- data/third_party/upb/upb/reflection/internal/enum_reserved_range.h +1 -1
- data/third_party/upb/upb/reflection/internal/enum_value_def.h +2 -1
- data/third_party/upb/upb/reflection/internal/extension_range.h +2 -2
- data/third_party/upb/upb/reflection/internal/field_def.h +11 -10
- data/third_party/upb/upb/reflection/internal/message_def.h +6 -3
- data/third_party/upb/upb/reflection/internal/method_def.h +5 -3
- data/third_party/upb/upb/reflection/internal/oneof_def.h +5 -3
- data/third_party/upb/upb/reflection/internal/service_def.h +5 -3
- data/third_party/upb/upb/reflection/internal/upb_edition_defaults.h +20 -0
- data/third_party/upb/upb/reflection/message.c +52 -20
- data/third_party/upb/upb/reflection/message.h +7 -7
- data/third_party/upb/upb/reflection/message_def.c +68 -34
- data/third_party/upb/upb/reflection/message_def.h +2 -0
- data/third_party/upb/upb/reflection/method_def.c +20 -9
- data/third_party/upb/upb/reflection/method_def.h +10 -7
- data/third_party/upb/upb/reflection/oneof_def.c +20 -11
- data/third_party/upb/upb/reflection/oneof_def.h +3 -1
- data/third_party/upb/upb/reflection/service_def.c +25 -13
- data/third_party/upb/upb/reflection/service_def.h +8 -5
- data/third_party/upb/upb/text/encode.c +65 -311
- data/third_party/upb/upb/text/encode.h +1 -11
- data/third_party/upb/upb/text/internal/encode.c +180 -0
- data/third_party/upb/upb/text/internal/encode.h +240 -0
- data/third_party/upb/upb/text/options.h +22 -0
- data/third_party/upb/upb/wire/decode.c +353 -269
- data/third_party/upb/upb/wire/decode.h +25 -2
- data/third_party/upb/upb/wire/encode.c +160 -105
- data/third_party/upb/upb/wire/encode.h +16 -4
- data/third_party/upb/upb/wire/eps_copy_input_stream.h +3 -3
- data/third_party/upb/upb/wire/internal/decode_fast.c +1000 -0
- data/third_party/upb/upb/wire/internal/decode_fast.h +148 -0
- data/third_party/upb/upb/wire/internal/decoder.h +127 -0
- data/third_party/upb/upb/wire/internal/reader.h +61 -0
- data/third_party/upb/upb/wire/reader.c +10 -8
- data/third_party/upb/upb/wire/reader.h +20 -53
- data/third_party/utf8_range/utf8_range.c +467 -0
- data/third_party/utf8_range/utf8_range.h +9 -8
- metadata +541 -399
- data/src/core/client_channel/backend_metric.cc +0 -95
- data/src/core/client_channel/backend_metric.h +0 -47
- data/src/core/client_channel/channel_connectivity.cc +0 -265
- data/src/core/client_channel/client_channel_channelz.cc +0 -93
- data/src/core/client_channel/client_channel_channelz.h +0 -85
- data/src/core/client_channel/config_selector.cc +0 -60
- data/src/core/client_channel/http_proxy_mapper.cc +0 -305
- data/src/core/client_channel/http_proxy_mapper.h +0 -53
- data/src/core/client_channel/service_config_channel_arg_filter.cc +0 -136
- data/src/core/ext/filters/channel_idle/channel_idle_filter.cc +0 -318
- data/src/core/ext/filters/channel_idle/channel_idle_filter.h +0 -150
- data/src/core/ext/filters/deadline/deadline_filter.cc +0 -407
- data/src/core/ext/filters/deadline/deadline_filter.h +0 -85
- data/src/core/ext/filters/http/message_compress/legacy_compression_filter.cc +0 -325
- data/src/core/ext/filters/http/message_compress/legacy_compression_filter.h +0 -139
- data/src/core/ext/filters/server_config_selector/server_config_selector.h +0 -83
- data/src/core/ext/filters/server_config_selector/server_config_selector_filter.cc +0 -170
- data/src/core/ext/filters/server_config_selector/server_config_selector_filter.h +0 -33
- data/src/core/ext/gcp/metadata_query.cc +0 -136
- data/src/core/ext/gcp/metadata_query.h +0 -87
- data/src/core/ext/transport/chttp2/transport/http_trace.cc +0 -19
- data/src/core/ext/transport/chttp2/transport/http_trace.h +0 -24
- data/src/core/ext/transport/chttp2/transport/max_concurrent_streams_policy.cc +0 -44
- data/src/core/ext/transport/chttp2/transport/max_concurrent_streams_policy.h +0 -67
- data/src/core/ext/transport/inproc/inproc_plugin.cc +0 -23
- data/src/core/ext/xds/certificate_provider_store.cc +0 -155
- data/src/core/ext/xds/certificate_provider_store.h +0 -133
- data/src/core/ext/xds/file_watcher_certificate_provider_factory.cc +0 -138
- data/src/core/ext/xds/file_watcher_certificate_provider_factory.h +0 -82
- data/src/core/ext/xds/upb_utils.h +0 -45
- data/src/core/ext/xds/xds_api.cc +0 -572
- data/src/core/ext/xds/xds_api.h +0 -189
- data/src/core/ext/xds/xds_audit_logger_registry.cc +0 -122
- data/src/core/ext/xds/xds_audit_logger_registry.h +0 -68
- data/src/core/ext/xds/xds_bootstrap.cc +0 -38
- data/src/core/ext/xds/xds_bootstrap.h +0 -90
- data/src/core/ext/xds/xds_bootstrap_grpc.cc +0 -365
- data/src/core/ext/xds/xds_bootstrap_grpc.h +0 -182
- data/src/core/ext/xds/xds_certificate_provider.cc +0 -217
- data/src/core/ext/xds/xds_certificate_provider.h +0 -116
- data/src/core/ext/xds/xds_channel_args.h +0 -32
- data/src/core/ext/xds/xds_channel_stack_modifier.cc +0 -107
- data/src/core/ext/xds/xds_channel_stack_modifier.h +0 -63
- data/src/core/ext/xds/xds_client.cc +0 -2123
- data/src/core/ext/xds/xds_client.h +0 -358
- data/src/core/ext/xds/xds_client_grpc.cc +0 -281
- data/src/core/ext/xds/xds_client_grpc.h +0 -96
- data/src/core/ext/xds/xds_client_stats.cc +0 -173
- data/src/core/ext/xds/xds_client_stats.h +0 -251
- data/src/core/ext/xds/xds_cluster.cc +0 -795
- data/src/core/ext/xds/xds_cluster.h +0 -142
- data/src/core/ext/xds/xds_cluster_specifier_plugin.cc +0 -140
- data/src/core/ext/xds/xds_cluster_specifier_plugin.h +0 -97
- data/src/core/ext/xds/xds_common_types.cc +0 -509
- data/src/core/ext/xds/xds_common_types.h +0 -108
- data/src/core/ext/xds/xds_endpoint.cc +0 -516
- data/src/core/ext/xds/xds_endpoint.h +0 -150
- data/src/core/ext/xds/xds_health_status.cc +0 -75
- data/src/core/ext/xds/xds_health_status.h +0 -91
- data/src/core/ext/xds/xds_http_fault_filter.cc +0 -238
- data/src/core/ext/xds/xds_http_fault_filter.h +0 -58
- data/src/core/ext/xds/xds_http_filters.cc +0 -117
- data/src/core/ext/xds/xds_http_filters.h +0 -182
- data/src/core/ext/xds/xds_http_rbac_filter.cc +0 -588
- data/src/core/ext/xds/xds_http_rbac_filter.h +0 -58
- data/src/core/ext/xds/xds_http_stateful_session_filter.cc +0 -218
- data/src/core/ext/xds/xds_http_stateful_session_filter.h +0 -58
- data/src/core/ext/xds/xds_lb_policy_registry.cc +0 -371
- data/src/core/ext/xds/xds_lb_policy_registry.h +0 -71
- data/src/core/ext/xds/xds_listener.cc +0 -1142
- data/src/core/ext/xds/xds_listener.h +0 -236
- data/src/core/ext/xds/xds_resource_type.h +0 -98
- data/src/core/ext/xds/xds_resource_type_impl.h +0 -88
- data/src/core/ext/xds/xds_route_config.cc +0 -1198
- data/src/core/ext/xds/xds_route_config.h +0 -253
- data/src/core/ext/xds/xds_routing.cc +0 -264
- data/src/core/ext/xds/xds_routing.h +0 -106
- data/src/core/ext/xds/xds_server_config_fetcher.cc +0 -1392
- data/src/core/ext/xds/xds_transport.h +0 -89
- data/src/core/ext/xds/xds_transport_grpc.cc +0 -365
- data/src/core/ext/xds/xds_transport_grpc.h +0 -139
- data/src/core/lib/avl/avl.h +0 -325
- data/src/core/lib/backoff/backoff.cc +0 -47
- data/src/core/lib/backoff/backoff.h +0 -89
- data/src/core/lib/backoff/random_early_detection.cc +0 -33
- data/src/core/lib/backoff/random_early_detection.h +0 -62
- data/src/core/lib/channel/call_tracer.cc +0 -365
- data/src/core/lib/channel/call_tracer.h +0 -225
- data/src/core/lib/channel/channel_stack_trace.cc +0 -19
- data/src/core/lib/channel/channel_stack_trace.h +0 -24
- data/src/core/lib/channel/channel_trace.cc +0 -187
- data/src/core/lib/channel/channel_trace.h +0 -138
- data/src/core/lib/channel/channelz.cc +0 -610
- data/src/core/lib/channel/channelz.h +0 -381
- data/src/core/lib/channel/channelz_registry.cc +0 -281
- data/src/core/lib/channel/channelz_registry.h +0 -102
- data/src/core/lib/channel/context.h +0 -77
- data/src/core/lib/channel/server_call_tracer_filter.cc +0 -111
- data/src/core/lib/channel/tcp_tracer.h +0 -140
- data/src/core/lib/config/config_vars.cc +0 -152
- data/src/core/lib/config/config_vars.h +0 -127
- data/src/core/lib/config/config_vars_non_generated.cc +0 -49
- data/src/core/lib/config/core_configuration.cc +0 -111
- data/src/core/lib/config/core_configuration.h +0 -244
- data/src/core/lib/config/load_config.cc +0 -79
- data/src/core/lib/config/load_config.h +0 -55
- data/src/core/lib/debug/event_log.cc +0 -88
- data/src/core/lib/debug/event_log.h +0 -81
- data/src/core/lib/debug/histogram_view.cc +0 -69
- data/src/core/lib/debug/histogram_view.h +0 -37
- data/src/core/lib/debug/stats.cc +0 -68
- data/src/core/lib/debug/stats.h +0 -64
- data/src/core/lib/debug/stats_data.cc +0 -509
- data/src/core/lib/debug/stats_data.h +0 -403
- data/src/core/lib/event_engine/trace.cc +0 -25
- data/src/core/lib/event_engine/trace.h +0 -49
- data/src/core/lib/gpr/alloc.cc +0 -71
- data/src/core/lib/gpr/alloc.h +0 -28
- data/src/core/lib/gpr/android/log.cc +0 -79
- data/src/core/lib/gpr/atm.cc +0 -35
- data/src/core/lib/gpr/iphone/cpu.cc +0 -44
- data/src/core/lib/gpr/linux/cpu.cc +0 -87
- data/src/core/lib/gpr/linux/log.cc +0 -114
- data/src/core/lib/gpr/log.cc +0 -140
- data/src/core/lib/gpr/log_internal.h +0 -55
- data/src/core/lib/gpr/msys/tmpfile.cc +0 -59
- data/src/core/lib/gpr/posix/cpu.cc +0 -84
- data/src/core/lib/gpr/posix/log.cc +0 -111
- data/src/core/lib/gpr/posix/string.cc +0 -72
- data/src/core/lib/gpr/posix/sync.cc +0 -159
- data/src/core/lib/gpr/posix/time.cc +0 -182
- data/src/core/lib/gpr/posix/tmpfile.cc +0 -71
- data/src/core/lib/gpr/spinlock.h +0 -53
- data/src/core/lib/gpr/string.cc +0 -344
- data/src/core/lib/gpr/string.h +0 -112
- data/src/core/lib/gpr/sync.cc +0 -124
- data/src/core/lib/gpr/sync_abseil.cc +0 -110
- data/src/core/lib/gpr/time.cc +0 -269
- data/src/core/lib/gpr/time_precise.cc +0 -168
- data/src/core/lib/gpr/time_precise.h +0 -69
- data/src/core/lib/gpr/tmpfile.h +0 -32
- data/src/core/lib/gpr/useful.h +0 -184
- data/src/core/lib/gpr/windows/cpu.cc +0 -35
- data/src/core/lib/gpr/windows/log.cc +0 -116
- data/src/core/lib/gpr/windows/string.cc +0 -69
- data/src/core/lib/gpr/windows/string_util.cc +0 -55
- data/src/core/lib/gpr/windows/sync.cc +0 -122
- data/src/core/lib/gpr/windows/time.cc +0 -105
- data/src/core/lib/gpr/windows/tmpfile.cc +0 -68
- data/src/core/lib/gpr/wrap_memcpy.cc +0 -43
- data/src/core/lib/gprpp/atomic_utils.h +0 -47
- data/src/core/lib/gprpp/bitset.h +0 -225
- data/src/core/lib/gprpp/chunked_vector.h +0 -257
- data/src/core/lib/gprpp/construct_destruct.h +0 -40
- data/src/core/lib/gprpp/cpp_impl_of.h +0 -49
- data/src/core/lib/gprpp/crash.cc +0 -43
- data/src/core/lib/gprpp/crash.h +0 -37
- data/src/core/lib/gprpp/debug_location.h +0 -99
- data/src/core/lib/gprpp/directory_reader.h +0 -48
- data/src/core/lib/gprpp/down_cast.h +0 -49
- data/src/core/lib/gprpp/dual_ref_counted.h +0 -356
- data/src/core/lib/gprpp/env.h +0 -53
- data/src/core/lib/gprpp/examine_stack.cc +0 -43
- data/src/core/lib/gprpp/examine_stack.h +0 -45
- data/src/core/lib/gprpp/fork.cc +0 -242
- data/src/core/lib/gprpp/fork.h +0 -98
- data/src/core/lib/gprpp/host_port.cc +0 -114
- data/src/core/lib/gprpp/host_port.h +0 -57
- data/src/core/lib/gprpp/if_list.h +0 -4530
- data/src/core/lib/gprpp/linux/env.cc +0 -62
- data/src/core/lib/gprpp/load_file.cc +0 -76
- data/src/core/lib/gprpp/load_file.h +0 -34
- data/src/core/lib/gprpp/manual_constructor.h +0 -146
- data/src/core/lib/gprpp/match.h +0 -75
- data/src/core/lib/gprpp/memory.h +0 -53
- data/src/core/lib/gprpp/mpscq.cc +0 -108
- data/src/core/lib/gprpp/mpscq.h +0 -99
- data/src/core/lib/gprpp/no_destruct.h +0 -95
- data/src/core/lib/gprpp/notification.h +0 -67
- data/src/core/lib/gprpp/orphanable.h +0 -150
- data/src/core/lib/gprpp/overload.h +0 -59
- data/src/core/lib/gprpp/packed_table.h +0 -40
- data/src/core/lib/gprpp/per_cpu.cc +0 -35
- data/src/core/lib/gprpp/per_cpu.h +0 -104
- data/src/core/lib/gprpp/posix/directory_reader.cc +0 -82
- data/src/core/lib/gprpp/posix/env.cc +0 -47
- data/src/core/lib/gprpp/posix/stat.cc +0 -54
- data/src/core/lib/gprpp/posix/thd.cc +0 -247
- data/src/core/lib/gprpp/ref_counted.h +0 -391
- data/src/core/lib/gprpp/ref_counted_ptr.h +0 -444
- data/src/core/lib/gprpp/ref_counted_string.cc +0 -44
- data/src/core/lib/gprpp/ref_counted_string.h +0 -161
- data/src/core/lib/gprpp/single_set_ptr.h +0 -87
- data/src/core/lib/gprpp/sorted_pack.h +0 -89
- data/src/core/lib/gprpp/stat.h +0 -36
- data/src/core/lib/gprpp/status_helper.cc +0 -453
- data/src/core/lib/gprpp/status_helper.h +0 -190
- data/src/core/lib/gprpp/strerror.cc +0 -41
- data/src/core/lib/gprpp/strerror.h +0 -29
- data/src/core/lib/gprpp/sync.h +0 -200
- data/src/core/lib/gprpp/table.h +0 -452
- data/src/core/lib/gprpp/tchar.cc +0 -49
- data/src/core/lib/gprpp/tchar.h +0 -33
- data/src/core/lib/gprpp/thd.h +0 -195
- data/src/core/lib/gprpp/time.cc +0 -242
- data/src/core/lib/gprpp/time.h +0 -379
- data/src/core/lib/gprpp/time_averaged_stats.cc +0 -60
- data/src/core/lib/gprpp/time_averaged_stats.h +0 -79
- data/src/core/lib/gprpp/time_util.cc +0 -81
- data/src/core/lib/gprpp/time_util.h +0 -42
- data/src/core/lib/gprpp/type_list.h +0 -32
- data/src/core/lib/gprpp/unique_type_name.h +0 -104
- data/src/core/lib/gprpp/validation_errors.cc +0 -65
- data/src/core/lib/gprpp/validation_errors.h +0 -134
- data/src/core/lib/gprpp/windows/directory_reader.cc +0 -81
- data/src/core/lib/gprpp/windows/env.cc +0 -56
- data/src/core/lib/gprpp/windows/stat.cc +0 -50
- data/src/core/lib/gprpp/windows/thd.cc +0 -182
- data/src/core/lib/gprpp/work_serializer.cc +0 -558
- data/src/core/lib/gprpp/work_serializer.h +0 -107
- data/src/core/lib/gprpp/xxhash_inline.h +0 -29
- data/src/core/lib/handshaker/proxy_mapper.h +0 -53
- data/src/core/lib/handshaker/proxy_mapper_registry.cc +0 -71
- data/src/core/lib/handshaker/proxy_mapper_registry.h +0 -75
- data/src/core/lib/http/format_request.cc +0 -137
- data/src/core/lib/http/format_request.h +0 -38
- data/src/core/lib/http/httpcli.cc +0 -392
- data/src/core/lib/http/httpcli.h +0 -268
- data/src/core/lib/http/httpcli_security_connector.cc +0 -213
- data/src/core/lib/http/httpcli_ssl_credentials.h +0 -39
- data/src/core/lib/http/parser.cc +0 -451
- data/src/core/lib/http/parser.h +0 -130
- data/src/core/lib/iomgr/ev_windows.cc +0 -30
- data/src/core/lib/iomgr/gethostname.h +0 -26
- data/src/core/lib/iomgr/gethostname_fallback.cc +0 -30
- data/src/core/lib/iomgr/gethostname_host_name_max.cc +0 -40
- data/src/core/lib/iomgr/gethostname_sysconf.cc +0 -40
- data/src/core/lib/iomgr/grpc_if_nametoindex.h +0 -30
- data/src/core/lib/iomgr/grpc_if_nametoindex_posix.cc +0 -43
- data/src/core/lib/iomgr/grpc_if_nametoindex_unsupported.cc +0 -39
- data/src/core/lib/json/json.h +0 -30
- data/src/core/lib/json/json_args.h +0 -34
- data/src/core/lib/json/json_channel_args.h +0 -42
- data/src/core/lib/json/json_object_loader.cc +0 -216
- data/src/core/lib/json/json_object_loader.h +0 -645
- data/src/core/lib/json/json_reader.cc +0 -956
- data/src/core/lib/json/json_reader.h +0 -34
- data/src/core/lib/json/json_util.cc +0 -101
- data/src/core/lib/json/json_util.h +0 -164
- data/src/core/lib/json/json_writer.cc +0 -339
- data/src/core/lib/json/json_writer.h +0 -33
- data/src/core/lib/matchers/matchers.cc +0 -330
- data/src/core/lib/matchers/matchers.h +0 -163
- data/src/core/lib/promise/trace.cc +0 -20
- data/src/core/lib/promise/trace.h +0 -24
- data/src/core/lib/resource_quota/trace.cc +0 -19
- data/src/core/lib/resource_quota/trace.h +0 -24
- data/src/core/lib/security/transport/legacy_server_auth_filter.cc +0 -244
- data/src/core/lib/security/transport/secure_endpoint.cc +0 -565
- data/src/core/lib/security/transport/secure_endpoint.h +0 -43
- data/src/core/lib/security/transport/security_handshaker.cc +0 -673
- data/src/core/lib/security/transport/security_handshaker.h +0 -45
- data/src/core/lib/security/transport/tsi_error.cc +0 -31
- data/src/core/lib/security/transport/tsi_error.h +0 -30
- data/src/core/lib/slice/b64.cc +0 -239
- data/src/core/lib/slice/b64.h +0 -52
- data/src/core/lib/slice/slice_refcount.cc +0 -20
- data/src/core/lib/surface/api_trace.cc +0 -25
- data/src/core/lib/surface/api_trace.h +0 -53
- data/src/core/lib/surface/builtins.cc +0 -37
- data/src/core/lib/surface/builtins.h +0 -26
- data/src/core/lib/surface/call_trace.cc +0 -163
- data/src/core/lib/surface/call_trace.h +0 -30
- data/src/core/lib/surface/channel_ping.cc +0 -69
- data/src/core/lib/surface/server.cc +0 -2045
- data/src/core/lib/surface/server.h +0 -551
- data/src/core/lib/surface/wait_for_cq_end_op.cc +0 -75
- data/src/core/lib/surface/wait_for_cq_end_op.h +0 -72
- data/src/core/lib/transport/batch_builder.cc +0 -179
- data/src/core/lib/transport/batch_builder.h +0 -478
- data/src/core/lib/transport/call_factory.cc +0 -41
- data/src/core/lib/transport/call_factory.h +0 -56
- data/src/core/lib/transport/call_size_estimator.cc +0 -41
- data/src/core/lib/transport/call_size_estimator.h +0 -52
- data/src/core/lib/transport/handshaker.cc +0 -229
- data/src/core/lib/transport/handshaker.h +0 -165
- data/src/core/lib/transport/handshaker_factory.h +0 -74
- data/src/core/lib/transport/handshaker_registry.cc +0 -61
- data/src/core/lib/transport/handshaker_registry.h +0 -69
- data/src/core/lib/transport/http_connect_handshaker.cc +0 -400
- data/src/core/lib/transport/http_connect_handshaker.h +0 -42
- data/src/core/lib/transport/tcp_connect_handshaker.cc +0 -244
- data/src/core/lib/transport/tcp_connect_handshaker.h +0 -39
- data/src/core/lib/uri/uri_parser.cc +0 -372
- data/src/core/lib/uri/uri_parser.h +0 -101
- data/src/core/load_balancing/subchannel_list.h +0 -455
- data/src/core/resolver/binder/binder_resolver.cc +0 -147
- data/src/core/resolver/xds/xds_resolver_trace.cc +0 -25
- data/src/core/resolver/xds/xds_resolver_trace.h +0 -30
- data/third_party/abseil-cpp/absl/strings/internal/has_absl_stringify.h +0 -44
- data/third_party/boringssl-with-bazel/err_data.c +0 -1512
- data/third_party/boringssl-with-bazel/src/crypto/conf/conf_def.h +0 -122
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/aes.c +0 -106
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/bytes.c +0 -267
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div.c +0 -909
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div_extra.c +0 -87
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/exponentiation.c +0 -1276
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/gcd_extra.c +0 -328
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery_inv.c +0 -222
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/mul.c +0 -744
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/prime.c +0 -1070
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/random.c +0 -355
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/sqrt.c +0 -499
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/e_aes.c +0 -1463
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_key.c +0 -553
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-nistz.c +0 -637
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/scalar.c +0 -169
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/ecdsa.c +0 -372
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/fork_detect.c +0 -197
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/fork_detect.h +0 -67
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/rand.c +0 -493
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/urandom.c +0 -328
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/padding.c +0 -423
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa.c +0 -1038
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa_impl.c +0 -1337
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/fips.c +0 -119
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/self_check.c +0 -1064
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/service_indicator/service_indicator.c +0 -331
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha1.c +0 -439
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha256.c +0 -359
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha512.c +0 -537
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/tls/kdf.c +0 -211
- data/third_party/boringssl-with-bazel/src/crypto/spx/internal.h +0 -79
- data/third_party/boringssl-with-bazel/src/include/openssl/kyber.h +0 -136
- data/third_party/upb/upb/message/types.h +0 -15
- data/third_party/upb/upb/wire/decode_fast.c +0 -996
- data/third_party/upb/upb/wire/decode_fast.h +0 -147
- data/third_party/upb/upb/wire/internal/decode.h +0 -143
- data/third_party/upb/upb/wire/internal/swap.h +0 -45
- data/third_party/utf8_range/naive.c +0 -92
- data/third_party/utf8_range/range2-neon.c +0 -157
- data/third_party/utf8_range/range2-sse.c +0 -170
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/{aes_nohw.c → aes_nohw.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/{key_wrap.c → key_wrap.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/{mode_wrappers.c → mode_wrappers.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{add.c → add.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/asm/{x86_64-gcc.c → x86_64-gcc.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{bn.c → bn.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{cmp.c → cmp.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{ctx.c → ctx.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{gcd.c → gcd.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{generic.c → generic.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{jacobi.c → jacobi.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{montgomery.c → montgomery.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{rsaz_exp.c → rsaz_exp.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{shift.c → shift.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/{aead.c → aead.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/{cipher.c → cipher.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/{e_aesccm.c → e_aesccm.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cmac/{cmac.c → cmac.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/{check.c → check.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/{dh.c → dh.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/{digest.c → digest.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/{digests.c → digests.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digestsign/{digestsign.c → digestsign.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{ec.c → ec.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{ec_montgomery.c → ec_montgomery.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{felem.c → felem.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{oct.c → oct.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{p224-64.c → p224-64.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{p256.c → p256.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{simple.c → simple.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{simple_mul.c → simple_mul.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{util.c → util.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{wnaf.c → wnaf.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdh/{ecdh.c → ecdh.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/hkdf/{hkdf.c → hkdf.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/hmac/{hmac.c → hmac.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/md4/{md4.c → md4.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/md5/{md5.c → md5.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{cbc.c → cbc.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{cfb.c → cfb.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{ctr.c → ctr.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{gcm.c → gcm.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{gcm_nohw.c → gcm_nohw.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{ofb.c → ofb.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{polyval.c → polyval.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/{ctrdrbg.c → ctrdrbg.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/{blinding.c → blinding.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/{fipsmodule/rand → rand_extra}/getrandom_fillin.h +0 -0
@@ -14,10 +14,12 @@
|
|
14
14
|
// limitations under the License.
|
15
15
|
//
|
16
16
|
|
17
|
-
#include <grpc/support/port_platform.h>
|
18
|
-
|
19
17
|
#include "src/core/load_balancing/pick_first/pick_first.h"
|
20
18
|
|
19
|
+
#include <grpc/event_engine/event_engine.h>
|
20
|
+
#include <grpc/impl/channel_arg_names.h>
|
21
|
+
#include <grpc/impl/connectivity_state.h>
|
22
|
+
#include <grpc/support/port_platform.h>
|
21
23
|
#include <inttypes.h>
|
22
24
|
#include <string.h>
|
23
25
|
|
@@ -29,76 +31,1068 @@
|
|
29
31
|
#include <vector>
|
30
32
|
|
31
33
|
#include "absl/algorithm/container.h"
|
34
|
+
#include "absl/log/check.h"
|
35
|
+
#include "absl/log/log.h"
|
32
36
|
#include "absl/random/random.h"
|
33
37
|
#include "absl/status/status.h"
|
34
38
|
#include "absl/status/statusor.h"
|
35
39
|
#include "absl/strings/str_cat.h"
|
36
40
|
#include "absl/strings/string_view.h"
|
37
41
|
#include "absl/types/optional.h"
|
38
|
-
|
39
|
-
#include <grpc/event_engine/event_engine.h>
|
40
|
-
#include <grpc/impl/channel_arg_names.h>
|
41
|
-
#include <grpc/impl/connectivity_state.h>
|
42
|
-
#include <grpc/support/log.h>
|
43
|
-
|
44
|
-
#include "src/core/load_balancing/health_check_client.h"
|
42
|
+
#include "src/core/config/core_configuration.h"
|
45
43
|
#include "src/core/lib/address_utils/sockaddr_utils.h"
|
46
44
|
#include "src/core/lib/channel/channel_args.h"
|
47
|
-
#include "src/core/lib/config/core_configuration.h"
|
48
45
|
#include "src/core/lib/debug/trace.h"
|
49
46
|
#include "src/core/lib/experiments/experiments.h"
|
50
|
-
#include "src/core/lib/gpr/useful.h"
|
51
|
-
#include "src/core/lib/gprpp/crash.h"
|
52
|
-
#include "src/core/lib/gprpp/debug_location.h"
|
53
|
-
#include "src/core/lib/gprpp/orphanable.h"
|
54
|
-
#include "src/core/lib/gprpp/ref_counted_ptr.h"
|
55
|
-
#include "src/core/lib/gprpp/time.h"
|
56
|
-
#include "src/core/lib/gprpp/work_serializer.h"
|
57
47
|
#include "src/core/lib/iomgr/exec_ctx.h"
|
58
48
|
#include "src/core/lib/iomgr/iomgr_fwd.h"
|
59
49
|
#include "src/core/lib/iomgr/resolved_address.h"
|
60
|
-
#include "src/core/lib/json/json.h"
|
61
|
-
#include "src/core/lib/json/json_args.h"
|
62
|
-
#include "src/core/lib/json/json_object_loader.h"
|
63
50
|
#include "src/core/lib/transport/connectivity_state.h"
|
51
|
+
#include "src/core/load_balancing/health_check_client.h"
|
64
52
|
#include "src/core/load_balancing/lb_policy.h"
|
65
53
|
#include "src/core/load_balancing/lb_policy_factory.h"
|
66
54
|
#include "src/core/load_balancing/subchannel_interface.h"
|
67
55
|
#include "src/core/resolver/endpoint_addresses.h"
|
56
|
+
#include "src/core/telemetry/metrics.h"
|
57
|
+
#include "src/core/util/crash.h"
|
58
|
+
#include "src/core/util/debug_location.h"
|
59
|
+
#include "src/core/util/json/json.h"
|
60
|
+
#include "src/core/util/json/json_args.h"
|
61
|
+
#include "src/core/util/json/json_object_loader.h"
|
62
|
+
#include "src/core/util/orphanable.h"
|
63
|
+
#include "src/core/util/ref_counted_ptr.h"
|
64
|
+
#include "src/core/util/time.h"
|
65
|
+
#include "src/core/util/useful.h"
|
66
|
+
#include "src/core/util/work_serializer.h"
|
68
67
|
|
69
68
|
namespace grpc_core {
|
70
69
|
|
71
|
-
|
70
|
+
namespace {
|
71
|
+
|
72
|
+
//
|
73
|
+
// pick_first LB policy
|
74
|
+
//
|
75
|
+
|
76
|
+
constexpr absl::string_view kPickFirst = "pick_first";
|
77
|
+
|
78
|
+
const auto kMetricDisconnections =
|
79
|
+
GlobalInstrumentsRegistry::RegisterUInt64Counter(
|
80
|
+
"grpc.lb.pick_first.disconnections",
|
81
|
+
"EXPERIMENTAL. Number of times the selected subchannel becomes "
|
82
|
+
"disconnected.",
|
83
|
+
"{disconnection}", false)
|
84
|
+
.Labels(kMetricLabelTarget)
|
85
|
+
.Build();
|
86
|
+
|
87
|
+
const auto kMetricConnectionAttemptsSucceeded =
|
88
|
+
GlobalInstrumentsRegistry::RegisterUInt64Counter(
|
89
|
+
"grpc.lb.pick_first.connection_attempts_succeeded",
|
90
|
+
"EXPERIMENTAL. Number of successful connection attempts.", "{attempt}",
|
91
|
+
false)
|
92
|
+
.Labels(kMetricLabelTarget)
|
93
|
+
.Build();
|
94
|
+
|
95
|
+
const auto kMetricConnectionAttemptsFailed =
|
96
|
+
GlobalInstrumentsRegistry::RegisterUInt64Counter(
|
97
|
+
"grpc.lb.pick_first.connection_attempts_failed",
|
98
|
+
"EXPERIMENTAL. Number of failed connection attempts.", "{attempt}",
|
99
|
+
false)
|
100
|
+
.Labels(kMetricLabelTarget)
|
101
|
+
.Build();
|
102
|
+
|
103
|
+
class PickFirstConfig final : public LoadBalancingPolicy::Config {
|
104
|
+
public:
|
105
|
+
absl::string_view name() const override { return kPickFirst; }
|
106
|
+
bool shuffle_addresses() const { return shuffle_addresses_; }
|
107
|
+
|
108
|
+
static const JsonLoaderInterface* JsonLoader(const JsonArgs&) {
|
109
|
+
static const auto kJsonLoader =
|
110
|
+
JsonObjectLoader<PickFirstConfig>()
|
111
|
+
.OptionalField("shuffleAddressList",
|
112
|
+
&PickFirstConfig::shuffle_addresses_)
|
113
|
+
.Finish();
|
114
|
+
return kJsonLoader;
|
115
|
+
}
|
116
|
+
|
117
|
+
private:
|
118
|
+
bool shuffle_addresses_ = false;
|
119
|
+
};
|
120
|
+
|
121
|
+
class PickFirst final : public LoadBalancingPolicy {
|
122
|
+
public:
|
123
|
+
explicit PickFirst(Args args);
|
124
|
+
|
125
|
+
absl::string_view name() const override { return kPickFirst; }
|
126
|
+
|
127
|
+
absl::Status UpdateLocked(UpdateArgs args) override;
|
128
|
+
void ExitIdleLocked() override;
|
129
|
+
void ResetBackoffLocked() override;
|
130
|
+
|
131
|
+
private:
|
132
|
+
~PickFirst() override;
|
133
|
+
|
134
|
+
// A list of subchannels that we will attempt connections on.
|
135
|
+
class SubchannelList final : public InternallyRefCounted<SubchannelList> {
|
136
|
+
public:
|
137
|
+
// Data about the subchannel that is needed only while attempting to
|
138
|
+
// connect.
|
139
|
+
class SubchannelData final {
|
140
|
+
public:
|
141
|
+
// Stores the subchannel and its watcher. This is the state that
|
142
|
+
// is retained once a subchannel is chosen.
|
143
|
+
class SubchannelState final
|
144
|
+
: public InternallyRefCounted<SubchannelState> {
|
145
|
+
public:
|
146
|
+
SubchannelState(SubchannelData* subchannel_data,
|
147
|
+
RefCountedPtr<SubchannelInterface> subchannel);
|
148
|
+
|
149
|
+
void Orphan() override;
|
150
|
+
|
151
|
+
SubchannelInterface* subchannel() const { return subchannel_.get(); }
|
152
|
+
|
153
|
+
void RequestConnection() { subchannel_->RequestConnection(); }
|
154
|
+
|
155
|
+
void ResetBackoffLocked() { subchannel_->ResetBackoff(); }
|
156
|
+
|
157
|
+
private:
|
158
|
+
// Watcher for subchannel connectivity state.
|
159
|
+
class Watcher
|
160
|
+
: public SubchannelInterface::ConnectivityStateWatcherInterface {
|
161
|
+
public:
|
162
|
+
explicit Watcher(RefCountedPtr<SubchannelState> subchannel_state)
|
163
|
+
: subchannel_state_(std::move(subchannel_state)) {}
|
164
|
+
|
165
|
+
~Watcher() override {
|
166
|
+
subchannel_state_.reset(DEBUG_LOCATION, "Watcher dtor");
|
167
|
+
}
|
168
|
+
|
169
|
+
void OnConnectivityStateChange(grpc_connectivity_state new_state,
|
170
|
+
absl::Status status) override {
|
171
|
+
subchannel_state_->OnConnectivityStateChange(new_state,
|
172
|
+
std::move(status));
|
173
|
+
}
|
174
|
+
|
175
|
+
grpc_pollset_set* interested_parties() override {
|
176
|
+
return subchannel_state_->pick_first_->interested_parties();
|
177
|
+
}
|
178
|
+
|
179
|
+
private:
|
180
|
+
RefCountedPtr<SubchannelState> subchannel_state_;
|
181
|
+
};
|
182
|
+
|
183
|
+
// Selects this subchannel. Called when the subchannel reports READY.
|
184
|
+
void Select();
|
185
|
+
|
186
|
+
// This method will be invoked once soon after instantiation to report
|
187
|
+
// the current connectivity state, and it will then be invoked again
|
188
|
+
// whenever the connectivity state changes.
|
189
|
+
void OnConnectivityStateChange(grpc_connectivity_state new_state,
|
190
|
+
absl::Status status);
|
191
|
+
|
192
|
+
// If non-null, then we are still part of a subchannel list
|
193
|
+
// trying to connect.
|
194
|
+
SubchannelData* subchannel_data_;
|
195
|
+
|
196
|
+
// TODO(roth): Once we remove pollset_set, we should no longer
|
197
|
+
// need to hold a ref to PickFirst. Instead, we can make this a
|
198
|
+
// raw pointer and put it in an absl::variant with subchannel_data_.
|
199
|
+
RefCountedPtr<PickFirst> pick_first_;
|
200
|
+
|
201
|
+
RefCountedPtr<SubchannelInterface> subchannel_;
|
202
|
+
SubchannelInterface::ConnectivityStateWatcherInterface* watcher_ =
|
203
|
+
nullptr;
|
204
|
+
};
|
205
|
+
|
206
|
+
SubchannelData(SubchannelList* subchannel_list, size_t index,
|
207
|
+
RefCountedPtr<SubchannelInterface> subchannel);
|
208
|
+
|
209
|
+
absl::optional<grpc_connectivity_state> connectivity_state() const {
|
210
|
+
return connectivity_state_;
|
211
|
+
}
|
212
|
+
const absl::Status& connectivity_status() const {
|
213
|
+
return connectivity_status_;
|
214
|
+
}
|
215
|
+
|
216
|
+
void RequestConnection() { subchannel_state_->RequestConnection(); }
|
217
|
+
|
218
|
+
// Resets the connection backoff.
|
219
|
+
void ResetBackoffLocked() { subchannel_state_->ResetBackoffLocked(); }
|
220
|
+
|
221
|
+
// Requests a connection attempt to start on this subchannel,
|
222
|
+
// with appropriate Connection Attempt Delay.
|
223
|
+
// Used only during the Happy Eyeballs pass.
|
224
|
+
void RequestConnectionWithTimer();
|
225
|
+
|
226
|
+
bool seen_transient_failure() const { return seen_transient_failure_; }
|
227
|
+
|
228
|
+
private:
|
229
|
+
// This method will be invoked once soon after instantiation to report
|
230
|
+
// the current connectivity state, and it will then be invoked again
|
231
|
+
// whenever the connectivity state changes.
|
232
|
+
void OnConnectivityStateChange(grpc_connectivity_state new_state,
|
233
|
+
absl::Status status);
|
234
|
+
|
235
|
+
// Backpointer to owning subchannel list. Not owned.
|
236
|
+
SubchannelList* subchannel_list_;
|
237
|
+
// Our index within subchannel_list_.
|
238
|
+
const size_t index_;
|
239
|
+
// Subchannel state.
|
240
|
+
OrphanablePtr<SubchannelState> subchannel_state_;
|
241
|
+
// Data updated by the watcher.
|
242
|
+
absl::optional<grpc_connectivity_state> connectivity_state_;
|
243
|
+
absl::Status connectivity_status_;
|
244
|
+
bool seen_transient_failure_ = false;
|
245
|
+
};
|
246
|
+
|
247
|
+
SubchannelList(RefCountedPtr<PickFirst> policy,
|
248
|
+
EndpointAddressesIterator* addresses,
|
249
|
+
const ChannelArgs& args);
|
250
|
+
|
251
|
+
~SubchannelList() override;
|
252
|
+
|
253
|
+
void Orphan() override;
|
254
|
+
|
255
|
+
// The number of subchannels in the list.
|
256
|
+
size_t size() const { return subchannels_.size(); }
|
257
|
+
|
258
|
+
// Resets connection backoff of all subchannels.
|
259
|
+
void ResetBackoffLocked();
|
260
|
+
|
261
|
+
bool IsHappyEyeballsPassComplete() const {
|
262
|
+
// Checking attempting_index_ here is just an optimization -- if
|
263
|
+
// we haven't actually tried all subchannels yet, then we don't
|
264
|
+
// need to iterate.
|
265
|
+
if (attempting_index_ < size()) return false;
|
266
|
+
for (const auto& sd : subchannels_) {
|
267
|
+
if (!sd->seen_transient_failure()) return false;
|
268
|
+
}
|
269
|
+
return true;
|
270
|
+
}
|
271
|
+
|
272
|
+
private:
|
273
|
+
// Returns true if all subchannels have seen their initial
|
274
|
+
// connectivity state notifications.
|
275
|
+
bool AllSubchannelsSeenInitialState() const {
|
276
|
+
return num_subchannels_seen_initial_notification_ == size();
|
277
|
+
}
|
278
|
+
|
279
|
+
// Looks through subchannels_ starting from attempting_index_ to
|
280
|
+
// find the first one not currently in TRANSIENT_FAILURE, then
|
281
|
+
// triggers a connection attempt for that subchannel. If there are
|
282
|
+
// no more subchannels not in TRANSIENT_FAILURE, calls
|
283
|
+
// MaybeFinishHappyEyeballsPass().
|
284
|
+
void StartConnectingNextSubchannel();
|
285
|
+
|
286
|
+
// Checks to see if the initial Happy Eyeballs pass is complete --
|
287
|
+
// i.e., all subchannels have seen TRANSIENT_FAILURE state at least once.
|
288
|
+
// If so, transitions to a mode where we try to connect to all subchannels
|
289
|
+
// in parallel and returns true.
|
290
|
+
void MaybeFinishHappyEyeballsPass();
|
291
|
+
|
292
|
+
// Backpointer to owning policy.
|
293
|
+
RefCountedPtr<PickFirst> policy_;
|
294
|
+
|
295
|
+
ChannelArgs args_;
|
296
|
+
|
297
|
+
// The list of subchannels.
|
298
|
+
std::vector<std::unique_ptr<SubchannelData>> subchannels_;
|
299
|
+
|
300
|
+
// Is this list shutting down? This may be true due to the shutdown of the
|
301
|
+
// policy itself or because a newer update has arrived while this one hadn't
|
302
|
+
// finished processing.
|
303
|
+
bool shutting_down_ = false;
|
304
|
+
|
305
|
+
size_t num_subchannels_seen_initial_notification_ = 0;
|
306
|
+
|
307
|
+
// The index into subchannels_ to which we are currently attempting
|
308
|
+
// to connect during the initial Happy Eyeballs pass. Once the
|
309
|
+
// initial pass is over, this will be equal to size().
|
310
|
+
size_t attempting_index_ = 0;
|
311
|
+
// Happy Eyeballs timer handle.
|
312
|
+
absl::optional<grpc_event_engine::experimental::EventEngine::TaskHandle>
|
313
|
+
timer_handle_;
|
314
|
+
|
315
|
+
// After the initial Happy Eyeballs pass, the number of failures
|
316
|
+
// we've seen. Every size() failures, we trigger re-resolution.
|
317
|
+
size_t num_failures_ = 0;
|
318
|
+
|
319
|
+
// The status from the last subchannel that reported TRANSIENT_FAILURE.
|
320
|
+
absl::Status last_failure_;
|
321
|
+
};
|
322
|
+
|
323
|
+
class HealthWatcher final
|
324
|
+
: public SubchannelInterface::ConnectivityStateWatcherInterface {
|
325
|
+
public:
|
326
|
+
explicit HealthWatcher(RefCountedPtr<PickFirst> policy)
|
327
|
+
: policy_(std::move(policy)) {}
|
328
|
+
|
329
|
+
~HealthWatcher() override {
|
330
|
+
policy_.reset(DEBUG_LOCATION, "HealthWatcher dtor");
|
331
|
+
}
|
332
|
+
|
333
|
+
void OnConnectivityStateChange(grpc_connectivity_state new_state,
|
334
|
+
absl::Status status) override;
|
335
|
+
|
336
|
+
grpc_pollset_set* interested_parties() override {
|
337
|
+
return policy_->interested_parties();
|
338
|
+
}
|
339
|
+
|
340
|
+
private:
|
341
|
+
RefCountedPtr<PickFirst> policy_;
|
342
|
+
};
|
343
|
+
|
344
|
+
class Picker final : public SubchannelPicker {
|
345
|
+
public:
|
346
|
+
explicit Picker(RefCountedPtr<SubchannelInterface> subchannel)
|
347
|
+
: subchannel_(std::move(subchannel)) {}
|
348
|
+
|
349
|
+
PickResult Pick(PickArgs /*args*/) override {
|
350
|
+
return PickResult::Complete(subchannel_);
|
351
|
+
}
|
352
|
+
|
353
|
+
private:
|
354
|
+
RefCountedPtr<SubchannelInterface> subchannel_;
|
355
|
+
};
|
356
|
+
|
357
|
+
void ShutdownLocked() override;
|
358
|
+
|
359
|
+
void UpdateState(grpc_connectivity_state state, const absl::Status& status,
|
360
|
+
RefCountedPtr<SubchannelPicker> picker);
|
361
|
+
|
362
|
+
void AttemptToConnectUsingLatestUpdateArgsLocked();
|
363
|
+
|
364
|
+
void UnsetSelectedSubchannel();
|
365
|
+
|
366
|
+
void GoIdle();
|
367
|
+
|
368
|
+
// When ExitIdleLocked() is called, we create a subchannel_list_ and start
|
369
|
+
// trying to connect, but we don't actually change state_ until the first
|
370
|
+
// subchannel reports CONNECTING. So in order to know if we're really
|
371
|
+
// idle, we need to check both state_ and subchannel_list_.
|
372
|
+
bool IsIdle() const {
|
373
|
+
return state_ == GRPC_CHANNEL_IDLE && subchannel_list_ == nullptr;
|
374
|
+
}
|
375
|
+
|
376
|
+
// Whether we should enable health watching.
|
377
|
+
const bool enable_health_watch_;
|
378
|
+
// Whether we should omit our status message prefix.
|
379
|
+
const bool omit_status_message_prefix_;
|
380
|
+
// Connection Attempt Delay for Happy Eyeballs.
|
381
|
+
const Duration connection_attempt_delay_;
|
382
|
+
|
383
|
+
// Lateset update args.
|
384
|
+
UpdateArgs latest_update_args_;
|
385
|
+
// The list of subchannels that we're currently trying to connect to.
|
386
|
+
// Will generally be null when selected_ is set, except when we get a
|
387
|
+
// resolver update and need to check initial connectivity states for
|
388
|
+
// the new list to decide whether we keep using the existing
|
389
|
+
// connection or go IDLE.
|
390
|
+
OrphanablePtr<SubchannelList> subchannel_list_;
|
391
|
+
// Selected subchannel. Will generally be null when subchannel_list_
|
392
|
+
// is non-null, with the exception mentioned above.
|
393
|
+
OrphanablePtr<SubchannelList::SubchannelData::SubchannelState> selected_;
|
394
|
+
// Health watcher for the selected subchannel.
|
395
|
+
SubchannelInterface::ConnectivityStateWatcherInterface* health_watcher_ =
|
396
|
+
nullptr;
|
397
|
+
SubchannelInterface::DataWatcherInterface* health_data_watcher_ = nullptr;
|
398
|
+
// Current connectivity state.
|
399
|
+
grpc_connectivity_state state_ = GRPC_CHANNEL_CONNECTING;
|
400
|
+
// Are we shut down?
|
401
|
+
bool shutdown_ = false;
|
402
|
+
// Random bit generator used for shuffling addresses if configured
|
403
|
+
absl::BitGen bit_gen_;
|
404
|
+
};
|
405
|
+
|
406
|
+
PickFirst::PickFirst(Args args)
|
407
|
+
: LoadBalancingPolicy(std::move(args)),
|
408
|
+
enable_health_watch_(
|
409
|
+
channel_args()
|
410
|
+
.GetBool(GRPC_ARG_INTERNAL_PICK_FIRST_ENABLE_HEALTH_CHECKING)
|
411
|
+
.value_or(false)),
|
412
|
+
omit_status_message_prefix_(
|
413
|
+
channel_args()
|
414
|
+
.GetBool(GRPC_ARG_INTERNAL_PICK_FIRST_OMIT_STATUS_MESSAGE_PREFIX)
|
415
|
+
.value_or(false)),
|
416
|
+
connection_attempt_delay_(Duration::Milliseconds(
|
417
|
+
Clamp(channel_args()
|
418
|
+
.GetInt(GRPC_ARG_HAPPY_EYEBALLS_CONNECTION_ATTEMPT_DELAY_MS)
|
419
|
+
.value_or(250),
|
420
|
+
100, 2000))) {
|
421
|
+
GRPC_TRACE_LOG(pick_first, INFO) << "Pick First " << this << " created.";
|
422
|
+
}
|
423
|
+
|
424
|
+
PickFirst::~PickFirst() {
|
425
|
+
GRPC_TRACE_LOG(pick_first, INFO) << "Destroying Pick First " << this;
|
426
|
+
CHECK_EQ(subchannel_list_.get(), nullptr);
|
427
|
+
}
|
428
|
+
|
429
|
+
void PickFirst::ShutdownLocked() {
|
430
|
+
GRPC_TRACE_LOG(pick_first, INFO) << "Pick First " << this << " Shutting down";
|
431
|
+
shutdown_ = true;
|
432
|
+
UnsetSelectedSubchannel();
|
433
|
+
subchannel_list_.reset();
|
434
|
+
}
|
435
|
+
|
436
|
+
void PickFirst::ExitIdleLocked() {
|
437
|
+
if (shutdown_) return;
|
438
|
+
if (IsIdle()) {
|
439
|
+
GRPC_TRACE_LOG(pick_first, INFO)
|
440
|
+
<< "Pick First " << this << " exiting idle";
|
441
|
+
AttemptToConnectUsingLatestUpdateArgsLocked();
|
442
|
+
}
|
443
|
+
}
|
444
|
+
|
445
|
+
void PickFirst::ResetBackoffLocked() {
|
446
|
+
if (subchannel_list_ != nullptr) subchannel_list_->ResetBackoffLocked();
|
447
|
+
}
|
448
|
+
|
449
|
+
void PickFirst::AttemptToConnectUsingLatestUpdateArgsLocked() {
|
450
|
+
// Create a subchannel list from latest_update_args_.
|
451
|
+
EndpointAddressesIterator* addresses = nullptr;
|
452
|
+
if (latest_update_args_.addresses.ok()) {
|
453
|
+
addresses = latest_update_args_.addresses->get();
|
454
|
+
}
|
455
|
+
// Replace subchannel_list_.
|
456
|
+
if (GRPC_TRACE_FLAG_ENABLED(pick_first) && subchannel_list_ != nullptr) {
|
457
|
+
LOG(INFO) << "[PF " << this << "] Shutting down previous subchannel list "
|
458
|
+
<< subchannel_list_.get();
|
459
|
+
}
|
460
|
+
subchannel_list_ = MakeOrphanable<SubchannelList>(
|
461
|
+
RefAsSubclass<PickFirst>(DEBUG_LOCATION, "SubchannelList"), addresses,
|
462
|
+
latest_update_args_.args);
|
463
|
+
// Empty update or no valid subchannels. Put the channel in
|
464
|
+
// TRANSIENT_FAILURE and request re-resolution. Also unset the
|
465
|
+
// current selected subchannel.
|
466
|
+
if (subchannel_list_->size() == 0) {
|
467
|
+
channel_control_helper()->RequestReresolution();
|
468
|
+
absl::Status status =
|
469
|
+
latest_update_args_.addresses.ok()
|
470
|
+
? absl::UnavailableError(absl::StrCat(
|
471
|
+
"empty address list: ", latest_update_args_.resolution_note))
|
472
|
+
: latest_update_args_.addresses.status();
|
473
|
+
UpdateState(GRPC_CHANNEL_TRANSIENT_FAILURE, status,
|
474
|
+
MakeRefCounted<TransientFailurePicker>(status));
|
475
|
+
UnsetSelectedSubchannel();
|
476
|
+
}
|
477
|
+
}
|
478
|
+
|
479
|
+
absl::string_view GetAddressFamily(const grpc_resolved_address& address) {
|
480
|
+
const char* uri_scheme = grpc_sockaddr_get_uri_scheme(&address);
|
481
|
+
return absl::string_view(uri_scheme == nullptr ? "other" : uri_scheme);
|
482
|
+
};
|
483
|
+
|
484
|
+
// An endpoint list iterator that returns only entries for a specific
|
485
|
+
// address family, as indicated by the URI scheme.
|
486
|
+
class AddressFamilyIterator final {
|
487
|
+
public:
|
488
|
+
AddressFamilyIterator(absl::string_view scheme, size_t index)
|
489
|
+
: scheme_(scheme), index_(index) {}
|
490
|
+
|
491
|
+
EndpointAddresses* Next(EndpointAddressesList& endpoints,
|
492
|
+
std::vector<bool>* endpoints_moved) {
|
493
|
+
for (; index_ < endpoints.size(); ++index_) {
|
494
|
+
if (!(*endpoints_moved)[index_] &&
|
495
|
+
GetAddressFamily(endpoints[index_].address()) == scheme_) {
|
496
|
+
(*endpoints_moved)[index_] = true;
|
497
|
+
return &endpoints[index_++];
|
498
|
+
}
|
499
|
+
}
|
500
|
+
return nullptr;
|
501
|
+
}
|
502
|
+
|
503
|
+
private:
|
504
|
+
absl::string_view scheme_;
|
505
|
+
size_t index_;
|
506
|
+
};
|
507
|
+
|
508
|
+
absl::Status PickFirst::UpdateLocked(UpdateArgs args) {
|
509
|
+
if (GRPC_TRACE_FLAG_ENABLED(pick_first)) {
|
510
|
+
if (args.addresses.ok()) {
|
511
|
+
LOG(INFO) << "Pick First " << this << " received update";
|
512
|
+
} else {
|
513
|
+
LOG(INFO) << "Pick First " << this
|
514
|
+
<< " received update with address error: "
|
515
|
+
<< args.addresses.status();
|
516
|
+
}
|
517
|
+
}
|
518
|
+
// Set return status based on the address list.
|
519
|
+
absl::Status status;
|
520
|
+
if (!args.addresses.ok()) {
|
521
|
+
status = args.addresses.status();
|
522
|
+
} else {
|
523
|
+
EndpointAddressesList endpoints;
|
524
|
+
(*args.addresses)->ForEach([&](const EndpointAddresses& endpoint) {
|
525
|
+
endpoints.push_back(endpoint);
|
526
|
+
});
|
527
|
+
if (endpoints.empty()) {
|
528
|
+
status = absl::UnavailableError("address list must not be empty");
|
529
|
+
} else {
|
530
|
+
// Shuffle the list if needed.
|
531
|
+
auto config = static_cast<PickFirstConfig*>(args.config.get());
|
532
|
+
if (config->shuffle_addresses()) {
|
533
|
+
absl::c_shuffle(endpoints, bit_gen_);
|
534
|
+
}
|
535
|
+
// Flatten the list so that we have one address per endpoint.
|
536
|
+
// While we're iterating, also determine the desired address family
|
537
|
+
// order and the index of the first element of each family, for use in
|
538
|
+
// the interleaving below.
|
539
|
+
std::set<absl::string_view> address_families;
|
540
|
+
std::vector<AddressFamilyIterator> address_family_order;
|
541
|
+
EndpointAddressesList flattened_endpoints;
|
542
|
+
for (const auto& endpoint : endpoints) {
|
543
|
+
for (const auto& address : endpoint.addresses()) {
|
544
|
+
flattened_endpoints.emplace_back(address, endpoint.args());
|
545
|
+
absl::string_view scheme = GetAddressFamily(address);
|
546
|
+
bool inserted = address_families.insert(scheme).second;
|
547
|
+
if (inserted) {
|
548
|
+
address_family_order.emplace_back(scheme,
|
549
|
+
flattened_endpoints.size() - 1);
|
550
|
+
}
|
551
|
+
}
|
552
|
+
}
|
553
|
+
endpoints = std::move(flattened_endpoints);
|
554
|
+
// Interleave addresses as per RFC-8305 section 4.
|
555
|
+
EndpointAddressesList interleaved_endpoints;
|
556
|
+
interleaved_endpoints.reserve(endpoints.size());
|
557
|
+
std::vector<bool> endpoints_moved(endpoints.size());
|
558
|
+
size_t scheme_index = 0;
|
559
|
+
for (size_t i = 0; i < endpoints.size(); ++i) {
|
560
|
+
EndpointAddresses* endpoint;
|
561
|
+
do {
|
562
|
+
auto& iterator = address_family_order[scheme_index++ %
|
563
|
+
address_family_order.size()];
|
564
|
+
endpoint = iterator.Next(endpoints, &endpoints_moved);
|
565
|
+
} while (endpoint == nullptr);
|
566
|
+
interleaved_endpoints.emplace_back(std::move(*endpoint));
|
567
|
+
}
|
568
|
+
endpoints = std::move(interleaved_endpoints);
|
569
|
+
args.addresses =
|
570
|
+
std::make_shared<EndpointAddressesListIterator>(std::move(endpoints));
|
571
|
+
}
|
572
|
+
}
|
573
|
+
// If the update contains a resolver error and we have a previous update
|
574
|
+
// that was not a resolver error, keep using the previous addresses.
|
575
|
+
if (!args.addresses.ok() && latest_update_args_.config != nullptr) {
|
576
|
+
args.addresses = std::move(latest_update_args_.addresses);
|
577
|
+
}
|
578
|
+
// Update latest_update_args_.
|
579
|
+
latest_update_args_ = std::move(args);
|
580
|
+
// If we are not in idle, start connection attempt immediately.
|
581
|
+
// Otherwise, we defer the attempt into ExitIdleLocked().
|
582
|
+
if (!IsIdle()) {
|
583
|
+
AttemptToConnectUsingLatestUpdateArgsLocked();
|
584
|
+
}
|
585
|
+
return status;
|
586
|
+
}
|
587
|
+
|
588
|
+
void PickFirst::UpdateState(grpc_connectivity_state state,
|
589
|
+
const absl::Status& status,
|
590
|
+
RefCountedPtr<SubchannelPicker> picker) {
|
591
|
+
state_ = state;
|
592
|
+
channel_control_helper()->UpdateState(state, status, std::move(picker));
|
593
|
+
}
|
594
|
+
|
595
|
+
void PickFirst::UnsetSelectedSubchannel() {
|
596
|
+
if (selected_ != nullptr && health_data_watcher_ != nullptr) {
|
597
|
+
selected_->subchannel()->CancelDataWatcher(health_data_watcher_);
|
598
|
+
}
|
599
|
+
selected_.reset();
|
600
|
+
health_watcher_ = nullptr;
|
601
|
+
health_data_watcher_ = nullptr;
|
602
|
+
}
|
603
|
+
|
604
|
+
void PickFirst::GoIdle() {
|
605
|
+
// Unset the selected subchannel.
|
606
|
+
UnsetSelectedSubchannel();
|
607
|
+
// Drop the current subchannel list, if any.
|
608
|
+
subchannel_list_.reset();
|
609
|
+
// Request a re-resolution.
|
610
|
+
// TODO(qianchengz): We may want to request re-resolution in
|
611
|
+
// ExitIdleLocked() instead.
|
612
|
+
channel_control_helper()->RequestReresolution();
|
613
|
+
// Enter idle.
|
614
|
+
UpdateState(GRPC_CHANNEL_IDLE, absl::Status(),
|
615
|
+
MakeRefCounted<QueuePicker>(Ref(DEBUG_LOCATION, "QueuePicker")));
|
616
|
+
}
|
617
|
+
|
618
|
+
//
|
619
|
+
// PickFirst::HealthWatcher
|
620
|
+
//
|
621
|
+
|
622
|
+
void PickFirst::HealthWatcher::OnConnectivityStateChange(
|
623
|
+
grpc_connectivity_state new_state, absl::Status status) {
|
624
|
+
if (policy_->health_watcher_ != this) return;
|
625
|
+
GRPC_TRACE_LOG(pick_first, INFO)
|
626
|
+
<< "[PF " << policy_.get()
|
627
|
+
<< "] health watch state update: " << ConnectivityStateName(new_state)
|
628
|
+
<< " (" << status << ")";
|
629
|
+
switch (new_state) {
|
630
|
+
case GRPC_CHANNEL_READY:
|
631
|
+
policy_->channel_control_helper()->UpdateState(
|
632
|
+
GRPC_CHANNEL_READY, absl::OkStatus(),
|
633
|
+
MakeRefCounted<Picker>(policy_->selected_->subchannel()->Ref()));
|
634
|
+
break;
|
635
|
+
case GRPC_CHANNEL_IDLE:
|
636
|
+
// If the subchannel becomes disconnected, the health watcher
|
637
|
+
// might happen to see the change before the raw connectivity
|
638
|
+
// state watcher does. In this case, ignore it, since the raw
|
639
|
+
// connectivity state watcher will handle it shortly.
|
640
|
+
break;
|
641
|
+
case GRPC_CHANNEL_CONNECTING:
|
642
|
+
policy_->channel_control_helper()->UpdateState(
|
643
|
+
new_state, absl::OkStatus(),
|
644
|
+
MakeRefCounted<QueuePicker>(policy_->Ref()));
|
645
|
+
break;
|
646
|
+
case GRPC_CHANNEL_TRANSIENT_FAILURE:
|
647
|
+
policy_->channel_control_helper()->UpdateState(
|
648
|
+
GRPC_CHANNEL_TRANSIENT_FAILURE, status,
|
649
|
+
MakeRefCounted<TransientFailurePicker>(absl::UnavailableError(
|
650
|
+
absl::StrCat("health watch: ", status.message()))));
|
651
|
+
break;
|
652
|
+
case GRPC_CHANNEL_SHUTDOWN:
|
653
|
+
Crash("health watcher reported state SHUTDOWN");
|
654
|
+
}
|
655
|
+
}
|
656
|
+
|
657
|
+
//
|
658
|
+
// PickFirst::SubchannelList::SubchannelData::SubchannelState
|
659
|
+
//
|
660
|
+
|
661
|
+
PickFirst::SubchannelList::SubchannelData::SubchannelState::SubchannelState(
|
662
|
+
SubchannelData* subchannel_data,
|
663
|
+
RefCountedPtr<SubchannelInterface> subchannel)
|
664
|
+
: subchannel_data_(subchannel_data),
|
665
|
+
pick_first_(subchannel_data_->subchannel_list_->policy_),
|
666
|
+
subchannel_(std::move(subchannel)) {
|
667
|
+
GRPC_TRACE_LOG(pick_first, INFO)
|
668
|
+
<< "[PF " << pick_first_.get() << "] subchannel state " << this
|
669
|
+
<< " (subchannel " << subchannel_.get() << "): starting watch";
|
670
|
+
auto watcher = std::make_unique<Watcher>(Ref(DEBUG_LOCATION, "Watcher"));
|
671
|
+
watcher_ = watcher.get();
|
672
|
+
subchannel_->WatchConnectivityState(std::move(watcher));
|
673
|
+
}
|
674
|
+
|
675
|
+
void PickFirst::SubchannelList::SubchannelData::SubchannelState::Orphan() {
|
676
|
+
GRPC_TRACE_LOG(pick_first, INFO)
|
677
|
+
<< "[PF " << pick_first_.get() << "] subchannel state " << this
|
678
|
+
<< " (subchannel " << subchannel_.get()
|
679
|
+
<< "): cancelling watch and unreffing subchannel";
|
680
|
+
subchannel_data_ = nullptr;
|
681
|
+
subchannel_->CancelConnectivityStateWatch(watcher_);
|
682
|
+
watcher_ = nullptr;
|
683
|
+
subchannel_.reset();
|
684
|
+
pick_first_.reset();
|
685
|
+
Unref();
|
686
|
+
}
|
687
|
+
|
688
|
+
void PickFirst::SubchannelList::SubchannelData::SubchannelState::Select() {
|
689
|
+
GRPC_TRACE_LOG(pick_first, INFO)
|
690
|
+
<< "Pick First " << pick_first_.get() << " selected subchannel "
|
691
|
+
<< subchannel_.get();
|
692
|
+
CHECK_NE(subchannel_data_, nullptr);
|
693
|
+
pick_first_->UnsetSelectedSubchannel(); // Cancel health watch, if any.
|
694
|
+
pick_first_->selected_ = std::move(subchannel_data_->subchannel_state_);
|
695
|
+
// If health checking is enabled, start the health watch, but don't
|
696
|
+
// report a new picker -- we want to stay in CONNECTING while we wait
|
697
|
+
// for the health status notification.
|
698
|
+
// If health checking is NOT enabled, report READY.
|
699
|
+
if (pick_first_->enable_health_watch_) {
|
700
|
+
GRPC_TRACE_LOG(pick_first, INFO)
|
701
|
+
<< "[PF " << pick_first_.get() << "] starting health watch";
|
702
|
+
auto watcher = std::make_unique<HealthWatcher>(
|
703
|
+
pick_first_.Ref(DEBUG_LOCATION, "HealthWatcher"));
|
704
|
+
pick_first_->health_watcher_ = watcher.get();
|
705
|
+
auto health_data_watcher = MakeHealthCheckWatcher(
|
706
|
+
pick_first_->work_serializer(),
|
707
|
+
subchannel_data_->subchannel_list_->args_, std::move(watcher));
|
708
|
+
pick_first_->health_data_watcher_ = health_data_watcher.get();
|
709
|
+
subchannel_->AddDataWatcher(std::move(health_data_watcher));
|
710
|
+
} else {
|
711
|
+
pick_first_->UpdateState(GRPC_CHANNEL_READY, absl::Status(),
|
712
|
+
MakeRefCounted<Picker>(subchannel_));
|
713
|
+
}
|
714
|
+
// Report successful connection.
|
715
|
+
// We consider it a successful connection attempt only if the
|
716
|
+
// previous state was CONNECTING. In particular, we don't want to
|
717
|
+
// increment this counter if we got a new address list and found the
|
718
|
+
// existing connection already in state READY.
|
719
|
+
if (subchannel_data_->connectivity_state_ == GRPC_CHANNEL_CONNECTING) {
|
720
|
+
auto& stats_plugins =
|
721
|
+
pick_first_->channel_control_helper()->GetStatsPluginGroup();
|
722
|
+
stats_plugins.AddCounter(
|
723
|
+
kMetricConnectionAttemptsSucceeded, 1,
|
724
|
+
{pick_first_->channel_control_helper()->GetTarget()}, {});
|
725
|
+
}
|
726
|
+
// Drop our pointer to subchannel_data_, so that we know not to
|
727
|
+
// interact with it on subsequent connectivity state updates.
|
728
|
+
subchannel_data_ = nullptr;
|
729
|
+
// Clean up subchannel list.
|
730
|
+
pick_first_->subchannel_list_.reset();
|
731
|
+
}
|
732
|
+
|
733
|
+
void PickFirst::SubchannelList::SubchannelData::SubchannelState::
|
734
|
+
OnConnectivityStateChange(grpc_connectivity_state new_state,
|
735
|
+
absl::Status status) {
|
736
|
+
if (watcher_ == nullptr) return;
|
737
|
+
GRPC_TRACE_LOG(pick_first, INFO)
|
738
|
+
<< "[PF " << pick_first_.get() << "] subchannel state " << this
|
739
|
+
<< " (subchannel " << subchannel_.get()
|
740
|
+
<< "): connectivity changed: new_state="
|
741
|
+
<< ConnectivityStateName(new_state) << ", status=" << status
|
742
|
+
<< ", watcher=" << watcher_ << ", subchannel_data_=" << subchannel_data_
|
743
|
+
<< ", pick_first_->selected_=" << pick_first_->selected_.get();
|
744
|
+
// If we're still part of a subchannel list trying to connect, check
|
745
|
+
// if we're connected.
|
746
|
+
if (subchannel_data_ != nullptr) {
|
747
|
+
CHECK_EQ(pick_first_->subchannel_list_.get(),
|
748
|
+
subchannel_data_->subchannel_list_);
|
749
|
+
// If the subchannel is READY, use it.
|
750
|
+
// Otherwise, tell the subchannel list to keep trying.
|
751
|
+
if (new_state == GRPC_CHANNEL_READY) {
|
752
|
+
Select();
|
753
|
+
} else {
|
754
|
+
subchannel_data_->OnConnectivityStateChange(new_state, std::move(status));
|
755
|
+
}
|
756
|
+
return;
|
757
|
+
}
|
758
|
+
// We aren't trying to connect, so we must be the selected subchannel.
|
759
|
+
CHECK_EQ(pick_first_->selected_.get(), this);
|
760
|
+
GRPC_TRACE_LOG(pick_first, INFO)
|
761
|
+
<< "Pick First " << pick_first_.get()
|
762
|
+
<< " selected subchannel connectivity changed to "
|
763
|
+
<< ConnectivityStateName(new_state);
|
764
|
+
// Any state change is considered to be a failure of the existing
|
765
|
+
// connection. Report the failure.
|
766
|
+
auto& stats_plugins =
|
767
|
+
pick_first_->channel_control_helper()->GetStatsPluginGroup();
|
768
|
+
stats_plugins.AddCounter(kMetricDisconnections, 1,
|
769
|
+
{pick_first_->channel_control_helper()->GetTarget()},
|
770
|
+
{});
|
771
|
+
// Report IDLE.
|
772
|
+
pick_first_->GoIdle();
|
773
|
+
}
|
774
|
+
|
775
|
+
//
|
776
|
+
// PickFirst::SubchannelList::SubchannelData
|
777
|
+
//
|
778
|
+
|
779
|
+
PickFirst::SubchannelList::SubchannelData::SubchannelData(
|
780
|
+
SubchannelList* subchannel_list, size_t index,
|
781
|
+
RefCountedPtr<SubchannelInterface> subchannel)
|
782
|
+
: subchannel_list_(subchannel_list), index_(index) {
|
783
|
+
GRPC_TRACE_LOG(pick_first, INFO)
|
784
|
+
<< "[PF " << subchannel_list_->policy_.get() << "] subchannel list "
|
785
|
+
<< subchannel_list_ << " index " << index_
|
786
|
+
<< ": creating subchannel data";
|
787
|
+
subchannel_state_ =
|
788
|
+
MakeOrphanable<SubchannelState>(this, std::move(subchannel));
|
789
|
+
}
|
790
|
+
|
791
|
+
void PickFirst::SubchannelList::SubchannelData::OnConnectivityStateChange(
|
792
|
+
grpc_connectivity_state new_state, absl::Status status) {
|
793
|
+
PickFirst* p = subchannel_list_->policy_.get();
|
794
|
+
GRPC_TRACE_LOG(pick_first, INFO)
|
795
|
+
<< "[PF " << p << "] subchannel list " << subchannel_list_ << " index "
|
796
|
+
<< index_ << " of " << subchannel_list_->size() << " (subchannel_state "
|
797
|
+
<< subchannel_state_.get() << "): connectivity changed: old_state="
|
798
|
+
<< (connectivity_state_.has_value()
|
799
|
+
? ConnectivityStateName(*connectivity_state_)
|
800
|
+
: "N/A")
|
801
|
+
<< ", new_state=" << ConnectivityStateName(new_state)
|
802
|
+
<< ", status=" << status
|
803
|
+
<< ", seen_transient_failure=" << seen_transient_failure_
|
804
|
+
<< ", p->selected_=" << p->selected_.get()
|
805
|
+
<< ", p->subchannel_list_=" << p->subchannel_list_.get()
|
806
|
+
<< ", p->subchannel_list_->shutting_down_="
|
807
|
+
<< p->subchannel_list_->shutting_down_;
|
808
|
+
if (subchannel_list_->shutting_down_) return;
|
809
|
+
// The notification must be for a subchannel in the current list.
|
810
|
+
CHECK_EQ(subchannel_list_, p->subchannel_list_.get());
|
811
|
+
// SHUTDOWN should never happen.
|
812
|
+
CHECK_NE(new_state, GRPC_CHANNEL_SHUTDOWN);
|
813
|
+
// READY should be caught by SubchannelState, in which case it will
|
814
|
+
// not call us in the first place.
|
815
|
+
CHECK_NE(new_state, GRPC_CHANNEL_READY);
|
816
|
+
// Update state.
|
817
|
+
absl::optional<grpc_connectivity_state> old_state = connectivity_state_;
|
818
|
+
connectivity_state_ = new_state;
|
819
|
+
connectivity_status_ = std::move(status);
|
820
|
+
// Make sure we note when a subchannel has seen TRANSIENT_FAILURE.
|
821
|
+
bool prev_seen_transient_failure = seen_transient_failure_;
|
822
|
+
if (new_state == GRPC_CHANNEL_TRANSIENT_FAILURE) {
|
823
|
+
seen_transient_failure_ = true;
|
824
|
+
subchannel_list_->last_failure_ = connectivity_status_;
|
825
|
+
}
|
826
|
+
// If this is the initial connectivity state update for this subchannel,
|
827
|
+
// increment the counter in the subchannel list.
|
828
|
+
if (!old_state.has_value()) {
|
829
|
+
++subchannel_list_->num_subchannels_seen_initial_notification_;
|
830
|
+
}
|
831
|
+
// If we haven't yet seen the initial connectivity state notification
|
832
|
+
// for all subchannels, do nothing.
|
833
|
+
if (!subchannel_list_->AllSubchannelsSeenInitialState()) return;
|
834
|
+
// If we're still here and this is the initial connectivity state
|
835
|
+
// notification for this subchannel, that means it was the last one to
|
836
|
+
// see its initial notification. So we now have enough state to
|
837
|
+
// figure out how to proceed.
|
838
|
+
if (!old_state.has_value()) {
|
839
|
+
// If we already have a selected subchannel and we got here, that
|
840
|
+
// means that none of the subchannels on the new list are in READY
|
841
|
+
// state, which means that the address we're currently connected to
|
842
|
+
// is not in the new list. In that case, we drop the current
|
843
|
+
// connection and report IDLE.
|
844
|
+
if (p->selected_ != nullptr) {
|
845
|
+
GRPC_TRACE_LOG(pick_first, INFO)
|
846
|
+
<< "[PF " << p << "] subchannel list " << subchannel_list_
|
847
|
+
<< ": new update has no subchannels in state READY; dropping "
|
848
|
+
"existing connection and going IDLE";
|
849
|
+
p->GoIdle();
|
850
|
+
} else {
|
851
|
+
// Start trying to connect, starting with the first subchannel.
|
852
|
+
subchannel_list_->StartConnectingNextSubchannel();
|
853
|
+
}
|
854
|
+
return;
|
855
|
+
}
|
856
|
+
// We've already started trying to connect. Any subchannel that
|
857
|
+
// reports TF is a connection attempt failure.
|
858
|
+
if (new_state == GRPC_CHANNEL_TRANSIENT_FAILURE) {
|
859
|
+
auto& stats_plugins = subchannel_list_->policy_->channel_control_helper()
|
860
|
+
->GetStatsPluginGroup();
|
861
|
+
stats_plugins.AddCounter(
|
862
|
+
kMetricConnectionAttemptsFailed, 1,
|
863
|
+
{subchannel_list_->policy_->channel_control_helper()->GetTarget()}, {});
|
864
|
+
}
|
865
|
+
// Otherwise, process connectivity state change.
|
866
|
+
switch (*connectivity_state_) {
|
867
|
+
case GRPC_CHANNEL_TRANSIENT_FAILURE: {
|
868
|
+
// If this is the first failure we've seen on this subchannel,
|
869
|
+
// then we're still in the Happy Eyeballs pass.
|
870
|
+
if (!prev_seen_transient_failure && seen_transient_failure_) {
|
871
|
+
// If a connection attempt fails before the timer fires, then
|
872
|
+
// cancel the timer and start connecting on the next subchannel.
|
873
|
+
if (index_ == subchannel_list_->attempting_index_) {
|
874
|
+
if (subchannel_list_->timer_handle_.has_value()) {
|
875
|
+
p->channel_control_helper()->GetEventEngine()->Cancel(
|
876
|
+
*subchannel_list_->timer_handle_);
|
877
|
+
}
|
878
|
+
++subchannel_list_->attempting_index_;
|
879
|
+
subchannel_list_->StartConnectingNextSubchannel();
|
880
|
+
} else {
|
881
|
+
// If this was the last subchannel to fail, check if the Happy
|
882
|
+
// Eyeballs pass is complete.
|
883
|
+
subchannel_list_->MaybeFinishHappyEyeballsPass();
|
884
|
+
}
|
885
|
+
} else if (subchannel_list_->IsHappyEyeballsPassComplete()) {
|
886
|
+
// We're done with the initial Happy Eyeballs pass and in a mode
|
887
|
+
// where we're attempting to connect to every subchannel in
|
888
|
+
// parallel. We count the number of failed connection attempts,
|
889
|
+
// and when that is equal to the number of subchannels, request
|
890
|
+
// re-resolution and report TRANSIENT_FAILURE again, so that the
|
891
|
+
// caller has the most recent status message. Note that this
|
892
|
+
// isn't necessarily the same as saying that we've seen one
|
893
|
+
// failure for each subchannel in the list, because the backoff
|
894
|
+
// state may be different in each subchannel, so we may have seen
|
895
|
+
// one subchannel fail more than once and another subchannel not
|
896
|
+
// fail at all. But it's a good enough heuristic.
|
897
|
+
++subchannel_list_->num_failures_;
|
898
|
+
if (subchannel_list_->num_failures_ % subchannel_list_->size() == 0) {
|
899
|
+
p->channel_control_helper()->RequestReresolution();
|
900
|
+
status = absl::UnavailableError(absl::StrCat(
|
901
|
+
(p->omit_status_message_prefix_
|
902
|
+
? ""
|
903
|
+
: "failed to connect to all addresses; last error: "),
|
904
|
+
connectivity_status_.ToString()));
|
905
|
+
p->UpdateState(GRPC_CHANNEL_TRANSIENT_FAILURE, status,
|
906
|
+
MakeRefCounted<TransientFailurePicker>(status));
|
907
|
+
}
|
908
|
+
}
|
909
|
+
break;
|
910
|
+
}
|
911
|
+
case GRPC_CHANNEL_IDLE:
|
912
|
+
// If we've finished the first Happy Eyeballs pass, then we go
|
913
|
+
// into a mode where we immediately try to connect to every
|
914
|
+
// subchannel in parallel.
|
915
|
+
if (subchannel_list_->IsHappyEyeballsPassComplete()) {
|
916
|
+
subchannel_state_->RequestConnection();
|
917
|
+
}
|
918
|
+
break;
|
919
|
+
case GRPC_CHANNEL_CONNECTING:
|
920
|
+
// Only update connectivity state only if we're not already in
|
921
|
+
// TRANSIENT_FAILURE.
|
922
|
+
// TODO(roth): Squelch duplicate CONNECTING updates.
|
923
|
+
if (p->state_ != GRPC_CHANNEL_TRANSIENT_FAILURE) {
|
924
|
+
p->UpdateState(GRPC_CHANNEL_CONNECTING, absl::Status(),
|
925
|
+
MakeRefCounted<QueuePicker>(nullptr));
|
926
|
+
}
|
927
|
+
break;
|
928
|
+
default:
|
929
|
+
// We handled READY above, and we should never see SHUTDOWN.
|
930
|
+
GPR_UNREACHABLE_CODE(break);
|
931
|
+
}
|
932
|
+
}
|
72
933
|
|
73
|
-
|
934
|
+
void PickFirst::SubchannelList::SubchannelData::RequestConnectionWithTimer() {
|
935
|
+
CHECK(connectivity_state_.has_value());
|
936
|
+
if (connectivity_state_ == GRPC_CHANNEL_IDLE) {
|
937
|
+
subchannel_state_->RequestConnection();
|
938
|
+
} else {
|
939
|
+
CHECK_EQ(connectivity_state_.value(), GRPC_CHANNEL_CONNECTING);
|
940
|
+
}
|
941
|
+
// If this is not the last subchannel in the list, start the timer.
|
942
|
+
if (index_ != subchannel_list_->size() - 1) {
|
943
|
+
PickFirst* p = subchannel_list_->policy_.get();
|
944
|
+
GRPC_TRACE_LOG(pick_first, INFO)
|
945
|
+
<< "Pick First " << p << " subchannel list " << subchannel_list_
|
946
|
+
<< ": starting Connection Attempt Delay timer for "
|
947
|
+
<< p->connection_attempt_delay_.millis() << "ms for index " << index_;
|
948
|
+
subchannel_list_->timer_handle_ =
|
949
|
+
p->channel_control_helper()->GetEventEngine()->RunAfter(
|
950
|
+
p->connection_attempt_delay_,
|
951
|
+
[subchannel_list =
|
952
|
+
subchannel_list_->Ref(DEBUG_LOCATION, "timer")]() mutable {
|
953
|
+
ApplicationCallbackExecCtx application_exec_ctx;
|
954
|
+
ExecCtx exec_ctx;
|
955
|
+
auto* sl = subchannel_list.get();
|
956
|
+
sl->policy_->work_serializer()->Run(
|
957
|
+
[subchannel_list = std::move(subchannel_list)]() {
|
958
|
+
GRPC_TRACE_LOG(pick_first, INFO)
|
959
|
+
<< "Pick First " << subchannel_list->policy_.get()
|
960
|
+
<< " subchannel list " << subchannel_list.get()
|
961
|
+
<< ": Connection Attempt Delay timer fired "
|
962
|
+
"(shutting_down="
|
963
|
+
<< subchannel_list->shutting_down_ << ", selected="
|
964
|
+
<< subchannel_list->policy_->selected_.get() << ")";
|
965
|
+
if (subchannel_list->shutting_down_) return;
|
966
|
+
if (subchannel_list->policy_->selected_ != nullptr) return;
|
967
|
+
++subchannel_list->attempting_index_;
|
968
|
+
subchannel_list->StartConnectingNextSubchannel();
|
969
|
+
},
|
970
|
+
DEBUG_LOCATION);
|
971
|
+
});
|
972
|
+
}
|
973
|
+
}
|
74
974
|
|
75
975
|
//
|
76
|
-
//
|
976
|
+
// PickFirst::SubchannelList
|
77
977
|
//
|
78
978
|
|
79
|
-
|
979
|
+
PickFirst::SubchannelList::SubchannelList(RefCountedPtr<PickFirst> policy,
|
980
|
+
EndpointAddressesIterator* addresses,
|
981
|
+
const ChannelArgs& args)
|
982
|
+
: InternallyRefCounted<SubchannelList>(
|
983
|
+
GRPC_TRACE_FLAG_ENABLED(pick_first) ? "SubchannelList" : nullptr),
|
984
|
+
policy_(std::move(policy)),
|
985
|
+
args_(args.Remove(GRPC_ARG_INTERNAL_PICK_FIRST_ENABLE_HEALTH_CHECKING)
|
986
|
+
.Remove(
|
987
|
+
GRPC_ARG_INTERNAL_PICK_FIRST_OMIT_STATUS_MESSAGE_PREFIX)) {
|
988
|
+
GRPC_TRACE_LOG(pick_first, INFO)
|
989
|
+
<< "[PF " << policy_.get() << "] Creating subchannel list " << this
|
990
|
+
<< " - channel args: " << args_.ToString();
|
991
|
+
if (addresses == nullptr) return;
|
992
|
+
// Create a subchannel for each address.
|
993
|
+
addresses->ForEach([&](const EndpointAddresses& address) {
|
994
|
+
CHECK_EQ(address.addresses().size(), 1u);
|
995
|
+
RefCountedPtr<SubchannelInterface> subchannel =
|
996
|
+
policy_->channel_control_helper()->CreateSubchannel(
|
997
|
+
address.address(), address.args(), args_);
|
998
|
+
if (subchannel == nullptr) {
|
999
|
+
// Subchannel could not be created.
|
1000
|
+
GRPC_TRACE_LOG(pick_first, INFO)
|
1001
|
+
<< "[PF " << policy_.get()
|
1002
|
+
<< "] could not create subchannel for address " << address.ToString()
|
1003
|
+
<< ", ignoring";
|
1004
|
+
return;
|
1005
|
+
}
|
1006
|
+
GRPC_TRACE_LOG(pick_first, INFO)
|
1007
|
+
<< "[PF " << policy_.get() << "] subchannel list " << this << " index "
|
1008
|
+
<< subchannels_.size() << ": Created subchannel " << subchannel.get()
|
1009
|
+
<< " for address " << address.ToString();
|
1010
|
+
subchannels_.emplace_back(std::make_unique<SubchannelData>(
|
1011
|
+
this, subchannels_.size(), std::move(subchannel)));
|
1012
|
+
});
|
1013
|
+
}
|
80
1014
|
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
1015
|
+
PickFirst::SubchannelList::~SubchannelList() {
|
1016
|
+
GRPC_TRACE_LOG(pick_first, INFO)
|
1017
|
+
<< "[PF " << policy_.get() << "] Destroying subchannel_list " << this;
|
1018
|
+
}
|
85
1019
|
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
1020
|
+
void PickFirst::SubchannelList::Orphan() {
|
1021
|
+
GRPC_TRACE_LOG(pick_first, INFO)
|
1022
|
+
<< "[PF " << policy_.get() << "] Shutting down subchannel_list " << this;
|
1023
|
+
CHECK(!shutting_down_);
|
1024
|
+
shutting_down_ = true;
|
1025
|
+
// Shut down subchannels.
|
1026
|
+
subchannels_.clear();
|
1027
|
+
// Cancel Happy Eyeballs timer, if any.
|
1028
|
+
if (timer_handle_.has_value()) {
|
1029
|
+
policy_->channel_control_helper()->GetEventEngine()->Cancel(*timer_handle_);
|
1030
|
+
}
|
1031
|
+
Unref();
|
1032
|
+
}
|
1033
|
+
|
1034
|
+
void PickFirst::SubchannelList::ResetBackoffLocked() {
|
1035
|
+
for (auto& sd : subchannels_) {
|
1036
|
+
sd->ResetBackoffLocked();
|
93
1037
|
}
|
1038
|
+
}
|
94
1039
|
|
95
|
-
|
96
|
-
|
97
|
-
|
1040
|
+
void PickFirst::SubchannelList::StartConnectingNextSubchannel() {
|
1041
|
+
// Find the next subchannel not in state TRANSIENT_FAILURE.
|
1042
|
+
// We skip subchannels in state TRANSIENT_FAILURE to avoid a
|
1043
|
+
// large recursion that could overflow the stack.
|
1044
|
+
for (; attempting_index_ < size(); ++attempting_index_) {
|
1045
|
+
SubchannelData* sc = subchannels_[attempting_index_].get();
|
1046
|
+
CHECK(sc->connectivity_state().has_value());
|
1047
|
+
if (sc->connectivity_state() != GRPC_CHANNEL_TRANSIENT_FAILURE) {
|
1048
|
+
// Found a subchannel not in TRANSIENT_FAILURE, so trigger a
|
1049
|
+
// connection attempt.
|
1050
|
+
sc->RequestConnectionWithTimer();
|
1051
|
+
return;
|
1052
|
+
}
|
1053
|
+
}
|
1054
|
+
// If we didn't find a subchannel to request a connection on, check to
|
1055
|
+
// see if the Happy Eyeballs pass is complete.
|
1056
|
+
MaybeFinishHappyEyeballsPass();
|
1057
|
+
}
|
1058
|
+
|
1059
|
+
void PickFirst::SubchannelList::MaybeFinishHappyEyeballsPass() {
|
1060
|
+
// Make sure all subchannels have finished a connection attempt before
|
1061
|
+
// we consider the Happy Eyeballs pass complete.
|
1062
|
+
if (!IsHappyEyeballsPassComplete()) return;
|
1063
|
+
// We didn't find another subchannel not in state TRANSIENT_FAILURE,
|
1064
|
+
// so report TRANSIENT_FAILURE and switch to a mode in which we try to
|
1065
|
+
// connect to all addresses in parallel.
|
1066
|
+
GRPC_TRACE_LOG(pick_first, INFO)
|
1067
|
+
<< "Pick First " << policy_.get() << " subchannel list " << this
|
1068
|
+
<< " failed to connect to all subchannels";
|
1069
|
+
// Re-resolve and report TRANSIENT_FAILURE.
|
1070
|
+
policy_->channel_control_helper()->RequestReresolution();
|
1071
|
+
absl::Status status = absl::UnavailableError(
|
1072
|
+
absl::StrCat((policy_->omit_status_message_prefix_
|
1073
|
+
? ""
|
1074
|
+
: "failed to connect to all addresses; last error: "),
|
1075
|
+
last_failure_.ToString()));
|
1076
|
+
policy_->UpdateState(GRPC_CHANNEL_TRANSIENT_FAILURE, status,
|
1077
|
+
MakeRefCounted<TransientFailurePicker>(status));
|
1078
|
+
// Drop the existing (working) connection, if any. This may be
|
1079
|
+
// sub-optimal, but we can't ignore what the control plane told us.
|
1080
|
+
policy_->UnsetSelectedSubchannel();
|
1081
|
+
// We now transition into a mode where we try to connect to all
|
1082
|
+
// subchannels in parallel. For any subchannel currently in IDLE,
|
1083
|
+
// trigger a connection attempt. For any subchannel not currently in
|
1084
|
+
// IDLE, we will trigger a connection attempt when it does report IDLE.
|
1085
|
+
for (auto& sd : subchannels_) {
|
1086
|
+
if (sd->connectivity_state() == GRPC_CHANNEL_IDLE) {
|
1087
|
+
sd->RequestConnection();
|
1088
|
+
}
|
1089
|
+
}
|
1090
|
+
}
|
98
1091
|
|
99
|
-
|
1092
|
+
// TODO(roth): Remove this when the pick_first_new experiment is removed.
|
1093
|
+
class OldPickFirst final : public LoadBalancingPolicy {
|
100
1094
|
public:
|
101
|
-
explicit
|
1095
|
+
explicit OldPickFirst(Args args);
|
102
1096
|
|
103
1097
|
absl::string_view name() const override { return kPickFirst; }
|
104
1098
|
|
@@ -107,11 +1101,11 @@ class PickFirst : public LoadBalancingPolicy {
|
|
107
1101
|
void ResetBackoffLocked() override;
|
108
1102
|
|
109
1103
|
private:
|
110
|
-
~
|
1104
|
+
~OldPickFirst() override;
|
111
1105
|
|
112
|
-
class SubchannelList : public InternallyRefCounted<SubchannelList> {
|
1106
|
+
class SubchannelList final : public InternallyRefCounted<SubchannelList> {
|
113
1107
|
public:
|
114
|
-
class SubchannelData {
|
1108
|
+
class SubchannelData final {
|
115
1109
|
public:
|
116
1110
|
SubchannelData(SubchannelList* subchannel_list, size_t index,
|
117
1111
|
RefCountedPtr<SubchannelInterface> subchannel);
|
@@ -143,7 +1137,7 @@ class PickFirst : public LoadBalancingPolicy {
|
|
143
1137
|
|
144
1138
|
private:
|
145
1139
|
// Watcher for subchannel connectivity state.
|
146
|
-
class Watcher
|
1140
|
+
class Watcher final
|
147
1141
|
: public SubchannelInterface::ConnectivityStateWatcherInterface {
|
148
1142
|
public:
|
149
1143
|
Watcher(RefCountedPtr<SubchannelList> subchannel_list, size_t index)
|
@@ -178,10 +1172,6 @@ class PickFirst : public LoadBalancingPolicy {
|
|
178
1172
|
// subchannel.
|
179
1173
|
void ProcessUnselectedReadyLocked();
|
180
1174
|
|
181
|
-
// Reacts to the current connectivity state while trying to connect.
|
182
|
-
// TODO(roth): Remove this when we remove the Happy Eyeballs experiment.
|
183
|
-
void ReactToConnectivityStateLocked();
|
184
|
-
|
185
1175
|
// Backpointer to owning subchannel list. Not owned.
|
186
1176
|
SubchannelList* subchannel_list_;
|
187
1177
|
const size_t index_;
|
@@ -196,7 +1186,7 @@ class PickFirst : public LoadBalancingPolicy {
|
|
196
1186
|
bool seen_transient_failure_ = false;
|
197
1187
|
};
|
198
1188
|
|
199
|
-
SubchannelList(RefCountedPtr<
|
1189
|
+
SubchannelList(RefCountedPtr<OldPickFirst> policy,
|
200
1190
|
EndpointAddressesIterator* addresses,
|
201
1191
|
const ChannelArgs& args);
|
202
1192
|
|
@@ -242,7 +1232,7 @@ class PickFirst : public LoadBalancingPolicy {
|
|
242
1232
|
void MaybeFinishHappyEyeballsPass();
|
243
1233
|
|
244
1234
|
// Backpointer to owning policy.
|
245
|
-
RefCountedPtr<
|
1235
|
+
RefCountedPtr<OldPickFirst> policy_;
|
246
1236
|
|
247
1237
|
ChannelArgs args_;
|
248
1238
|
|
@@ -254,9 +1244,6 @@ class PickFirst : public LoadBalancingPolicy {
|
|
254
1244
|
// finished processing.
|
255
1245
|
bool shutting_down_ = false;
|
256
1246
|
|
257
|
-
// TODO(roth): Remove this when we remove the Happy Eyeballs experiment.
|
258
|
-
bool in_transient_failure_ = false;
|
259
|
-
|
260
1247
|
size_t num_subchannels_seen_initial_notification_ = 0;
|
261
1248
|
|
262
1249
|
// The index into subchannels_ to which we are currently attempting
|
@@ -275,10 +1262,10 @@ class PickFirst : public LoadBalancingPolicy {
|
|
275
1262
|
absl::Status last_failure_;
|
276
1263
|
};
|
277
1264
|
|
278
|
-
class HealthWatcher
|
1265
|
+
class HealthWatcher final
|
279
1266
|
: public SubchannelInterface::ConnectivityStateWatcherInterface {
|
280
1267
|
public:
|
281
|
-
explicit HealthWatcher(RefCountedPtr<
|
1268
|
+
explicit HealthWatcher(RefCountedPtr<OldPickFirst> policy)
|
282
1269
|
: policy_(std::move(policy)) {}
|
283
1270
|
|
284
1271
|
~HealthWatcher() override {
|
@@ -293,10 +1280,10 @@ class PickFirst : public LoadBalancingPolicy {
|
|
293
1280
|
}
|
294
1281
|
|
295
1282
|
private:
|
296
|
-
RefCountedPtr<
|
1283
|
+
RefCountedPtr<OldPickFirst> policy_;
|
297
1284
|
};
|
298
1285
|
|
299
|
-
class Picker : public SubchannelPicker {
|
1286
|
+
class Picker final : public SubchannelPicker {
|
300
1287
|
public:
|
301
1288
|
explicit Picker(RefCountedPtr<SubchannelInterface> subchannel)
|
302
1289
|
: subchannel_(std::move(subchannel)) {}
|
@@ -353,7 +1340,7 @@ class PickFirst : public LoadBalancingPolicy {
|
|
353
1340
|
absl::BitGen bit_gen_;
|
354
1341
|
};
|
355
1342
|
|
356
|
-
|
1343
|
+
OldPickFirst::OldPickFirst(Args args)
|
357
1344
|
: LoadBalancingPolicy(std::move(args)),
|
358
1345
|
enable_health_watch_(
|
359
1346
|
channel_args()
|
@@ -368,61 +1355,54 @@ PickFirst::PickFirst(Args args)
|
|
368
1355
|
.GetInt(GRPC_ARG_HAPPY_EYEBALLS_CONNECTION_ATTEMPT_DELAY_MS)
|
369
1356
|
.value_or(250),
|
370
1357
|
100, 2000))) {
|
371
|
-
|
372
|
-
gpr_log(GPR_INFO, "Pick First %p created.", this);
|
373
|
-
}
|
1358
|
+
GRPC_TRACE_LOG(pick_first, INFO) << "Pick First " << this << " created.";
|
374
1359
|
}
|
375
1360
|
|
376
|
-
|
377
|
-
|
378
|
-
|
379
|
-
|
380
|
-
GPR_ASSERT(subchannel_list_ == nullptr);
|
381
|
-
GPR_ASSERT(latest_pending_subchannel_list_ == nullptr);
|
1361
|
+
OldPickFirst::~OldPickFirst() {
|
1362
|
+
GRPC_TRACE_LOG(pick_first, INFO) << "Destroying Pick First " << this;
|
1363
|
+
CHECK(subchannel_list_ == nullptr);
|
1364
|
+
CHECK(latest_pending_subchannel_list_ == nullptr);
|
382
1365
|
}
|
383
1366
|
|
384
|
-
void
|
385
|
-
|
386
|
-
gpr_log(GPR_INFO, "Pick First %p Shutting down", this);
|
387
|
-
}
|
1367
|
+
void OldPickFirst::ShutdownLocked() {
|
1368
|
+
GRPC_TRACE_LOG(pick_first, INFO) << "Pick First " << this << " Shutting down";
|
388
1369
|
shutdown_ = true;
|
389
1370
|
UnsetSelectedSubchannel();
|
390
1371
|
subchannel_list_.reset();
|
391
1372
|
latest_pending_subchannel_list_.reset();
|
392
1373
|
}
|
393
1374
|
|
394
|
-
void
|
1375
|
+
void OldPickFirst::ExitIdleLocked() {
|
395
1376
|
if (shutdown_) return;
|
396
1377
|
if (IsIdle()) {
|
397
|
-
|
398
|
-
|
399
|
-
}
|
1378
|
+
GRPC_TRACE_LOG(pick_first, INFO)
|
1379
|
+
<< "Pick First " << this << " exiting idle";
|
400
1380
|
AttemptToConnectUsingLatestUpdateArgsLocked();
|
401
1381
|
}
|
402
1382
|
}
|
403
1383
|
|
404
|
-
void
|
1384
|
+
void OldPickFirst::ResetBackoffLocked() {
|
405
1385
|
if (subchannel_list_ != nullptr) subchannel_list_->ResetBackoffLocked();
|
406
1386
|
if (latest_pending_subchannel_list_ != nullptr) {
|
407
1387
|
latest_pending_subchannel_list_->ResetBackoffLocked();
|
408
1388
|
}
|
409
1389
|
}
|
410
1390
|
|
411
|
-
void
|
1391
|
+
void OldPickFirst::AttemptToConnectUsingLatestUpdateArgsLocked() {
|
412
1392
|
// Create a subchannel list from latest_update_args_.
|
413
1393
|
EndpointAddressesIterator* addresses = nullptr;
|
414
1394
|
if (latest_update_args_.addresses.ok()) {
|
415
1395
|
addresses = latest_update_args_.addresses->get();
|
416
1396
|
}
|
417
1397
|
// Replace latest_pending_subchannel_list_.
|
418
|
-
if (GRPC_TRACE_FLAG_ENABLED(
|
1398
|
+
if (GRPC_TRACE_FLAG_ENABLED(pick_first) &&
|
419
1399
|
latest_pending_subchannel_list_ != nullptr) {
|
420
|
-
|
421
|
-
|
422
|
-
|
1400
|
+
LOG(INFO) << "[PF " << this
|
1401
|
+
<< "] Shutting down previous pending subchannel list "
|
1402
|
+
<< latest_pending_subchannel_list_.get();
|
423
1403
|
}
|
424
1404
|
latest_pending_subchannel_list_ = MakeOrphanable<SubchannelList>(
|
425
|
-
RefAsSubclass<
|
1405
|
+
RefAsSubclass<OldPickFirst>(), addresses, latest_update_args_.args);
|
426
1406
|
// Empty update or no valid subchannels. Put the channel in
|
427
1407
|
// TRANSIENT_FAILURE and request re-resolution.
|
428
1408
|
if (latest_pending_subchannel_list_->size() == 0) {
|
@@ -439,51 +1419,22 @@ void PickFirst::AttemptToConnectUsingLatestUpdateArgsLocked() {
|
|
439
1419
|
// the current list, replace the current subchannel list immediately.
|
440
1420
|
if (latest_pending_subchannel_list_->size() == 0 || selected_ == nullptr) {
|
441
1421
|
UnsetSelectedSubchannel();
|
442
|
-
if (GRPC_TRACE_FLAG_ENABLED(
|
443
|
-
|
444
|
-
|
445
|
-
this, subchannel_list_.get());
|
1422
|
+
if (GRPC_TRACE_FLAG_ENABLED(pick_first) && subchannel_list_ != nullptr) {
|
1423
|
+
LOG(INFO) << "[PF " << this << "] Shutting down previous subchannel list "
|
1424
|
+
<< subchannel_list_.get();
|
446
1425
|
}
|
447
1426
|
subchannel_list_ = std::move(latest_pending_subchannel_list_);
|
448
1427
|
}
|
449
1428
|
}
|
450
1429
|
|
451
|
-
absl::
|
452
|
-
|
453
|
-
return absl::string_view(uri_scheme == nullptr ? "other" : uri_scheme);
|
454
|
-
};
|
455
|
-
|
456
|
-
// An endpoint list iterator that returns only entries for a specific
|
457
|
-
// address family, as indicated by the URI scheme.
|
458
|
-
class AddressFamilyIterator {
|
459
|
-
public:
|
460
|
-
AddressFamilyIterator(absl::string_view scheme, size_t index)
|
461
|
-
: scheme_(scheme), index_(index) {}
|
462
|
-
|
463
|
-
EndpointAddresses* Next(EndpointAddressesList& endpoints,
|
464
|
-
std::vector<bool>* endpoints_moved) {
|
465
|
-
for (; index_ < endpoints.size(); ++index_) {
|
466
|
-
if (!(*endpoints_moved)[index_] &&
|
467
|
-
GetAddressFamily(endpoints[index_].address()) == scheme_) {
|
468
|
-
(*endpoints_moved)[index_] = true;
|
469
|
-
return &endpoints[index_++];
|
470
|
-
}
|
471
|
-
}
|
472
|
-
return nullptr;
|
473
|
-
}
|
474
|
-
|
475
|
-
private:
|
476
|
-
absl::string_view scheme_;
|
477
|
-
size_t index_;
|
478
|
-
};
|
479
|
-
|
480
|
-
absl::Status PickFirst::UpdateLocked(UpdateArgs args) {
|
481
|
-
if (GRPC_TRACE_FLAG_ENABLED(grpc_lb_pick_first_trace)) {
|
1430
|
+
absl::Status OldPickFirst::UpdateLocked(UpdateArgs args) {
|
1431
|
+
if (GRPC_TRACE_FLAG_ENABLED(pick_first)) {
|
482
1432
|
if (args.addresses.ok()) {
|
483
|
-
|
1433
|
+
LOG(INFO) << "Pick First " << this << " received update";
|
484
1434
|
} else {
|
485
|
-
|
486
|
-
|
1435
|
+
LOG(INFO) << "Pick First " << this
|
1436
|
+
<< " received update with address error: "
|
1437
|
+
<< args.addresses.status();
|
487
1438
|
}
|
488
1439
|
}
|
489
1440
|
// Set return status based on the address list.
|
@@ -513,34 +1464,30 @@ absl::Status PickFirst::UpdateLocked(UpdateArgs args) {
|
|
513
1464
|
for (const auto& endpoint : endpoints) {
|
514
1465
|
for (const auto& address : endpoint.addresses()) {
|
515
1466
|
flattened_endpoints.emplace_back(address, endpoint.args());
|
516
|
-
|
517
|
-
|
518
|
-
|
519
|
-
|
520
|
-
|
521
|
-
flattened_endpoints.size() - 1);
|
522
|
-
}
|
1467
|
+
absl::string_view scheme = GetAddressFamily(address);
|
1468
|
+
bool inserted = address_families.insert(scheme).second;
|
1469
|
+
if (inserted) {
|
1470
|
+
address_family_order.emplace_back(scheme,
|
1471
|
+
flattened_endpoints.size() - 1);
|
523
1472
|
}
|
524
1473
|
}
|
525
1474
|
}
|
526
1475
|
endpoints = std::move(flattened_endpoints);
|
527
1476
|
// Interleave addresses as per RFC-8305 section 4.
|
528
|
-
|
529
|
-
|
530
|
-
|
531
|
-
|
532
|
-
|
533
|
-
|
534
|
-
|
535
|
-
|
536
|
-
|
537
|
-
|
538
|
-
|
539
|
-
|
540
|
-
interleaved_endpoints.emplace_back(std::move(*endpoint));
|
541
|
-
}
|
542
|
-
endpoints = std::move(interleaved_endpoints);
|
1477
|
+
EndpointAddressesList interleaved_endpoints;
|
1478
|
+
interleaved_endpoints.reserve(endpoints.size());
|
1479
|
+
std::vector<bool> endpoints_moved(endpoints.size());
|
1480
|
+
size_t scheme_index = 0;
|
1481
|
+
for (size_t i = 0; i < endpoints.size(); ++i) {
|
1482
|
+
EndpointAddresses* endpoint;
|
1483
|
+
do {
|
1484
|
+
auto& iterator = address_family_order[scheme_index++ %
|
1485
|
+
address_family_order.size()];
|
1486
|
+
endpoint = iterator.Next(endpoints, &endpoints_moved);
|
1487
|
+
} while (endpoint == nullptr);
|
1488
|
+
interleaved_endpoints.emplace_back(std::move(*endpoint));
|
543
1489
|
}
|
1490
|
+
endpoints = std::move(interleaved_endpoints);
|
544
1491
|
args.addresses =
|
545
1492
|
std::make_shared<EndpointAddressesListIterator>(std::move(endpoints));
|
546
1493
|
}
|
@@ -560,14 +1507,14 @@ absl::Status PickFirst::UpdateLocked(UpdateArgs args) {
|
|
560
1507
|
return status;
|
561
1508
|
}
|
562
1509
|
|
563
|
-
void
|
564
|
-
|
565
|
-
|
1510
|
+
void OldPickFirst::UpdateState(grpc_connectivity_state state,
|
1511
|
+
const absl::Status& status,
|
1512
|
+
RefCountedPtr<SubchannelPicker> picker) {
|
566
1513
|
state_ = state;
|
567
1514
|
channel_control_helper()->UpdateState(state, status, std::move(picker));
|
568
1515
|
}
|
569
1516
|
|
570
|
-
void
|
1517
|
+
void OldPickFirst::UnsetSelectedSubchannel() {
|
571
1518
|
if (selected_ != nullptr && health_data_watcher_ != nullptr) {
|
572
1519
|
selected_->subchannel()->CancelDataWatcher(health_data_watcher_);
|
573
1520
|
}
|
@@ -577,17 +1524,16 @@ void PickFirst::UnsetSelectedSubchannel() {
|
|
577
1524
|
}
|
578
1525
|
|
579
1526
|
//
|
580
|
-
//
|
1527
|
+
// OldPickFirst::HealthWatcher
|
581
1528
|
//
|
582
1529
|
|
583
|
-
void
|
1530
|
+
void OldPickFirst::HealthWatcher::OnConnectivityStateChange(
|
584
1531
|
grpc_connectivity_state new_state, absl::Status status) {
|
585
1532
|
if (policy_->health_watcher_ != this) return;
|
586
|
-
|
587
|
-
|
588
|
-
|
589
|
-
|
590
|
-
}
|
1533
|
+
GRPC_TRACE_LOG(pick_first, INFO)
|
1534
|
+
<< "[PF " << policy_.get()
|
1535
|
+
<< "] health watch state update: " << ConnectivityStateName(new_state)
|
1536
|
+
<< " (" << status << ")";
|
591
1537
|
switch (new_state) {
|
592
1538
|
case GRPC_CHANNEL_READY:
|
593
1539
|
policy_->channel_control_helper()->UpdateState(
|
@@ -608,7 +1554,8 @@ void PickFirst::HealthWatcher::OnConnectivityStateChange(
|
|
608
1554
|
case GRPC_CHANNEL_TRANSIENT_FAILURE:
|
609
1555
|
policy_->channel_control_helper()->UpdateState(
|
610
1556
|
GRPC_CHANNEL_TRANSIENT_FAILURE, status,
|
611
|
-
MakeRefCounted<TransientFailurePicker>(
|
1557
|
+
MakeRefCounted<TransientFailurePicker>(absl::UnavailableError(
|
1558
|
+
absl::StrCat("health watch: ", status.message()))));
|
612
1559
|
break;
|
613
1560
|
case GRPC_CHANNEL_SHUTDOWN:
|
614
1561
|
Crash("health watcher reported state SHUTDOWN");
|
@@ -616,83 +1563,80 @@ void PickFirst::HealthWatcher::OnConnectivityStateChange(
|
|
616
1563
|
}
|
617
1564
|
|
618
1565
|
//
|
619
|
-
//
|
1566
|
+
// OldPickFirst::SubchannelList::SubchannelData
|
620
1567
|
//
|
621
1568
|
|
622
|
-
|
1569
|
+
OldPickFirst::SubchannelList::SubchannelData::SubchannelData(
|
623
1570
|
SubchannelList* subchannel_list, size_t index,
|
624
1571
|
RefCountedPtr<SubchannelInterface> subchannel)
|
625
1572
|
: subchannel_list_(subchannel_list),
|
626
1573
|
index_(index),
|
627
1574
|
subchannel_(std::move(subchannel)) {
|
628
|
-
|
629
|
-
|
630
|
-
|
631
|
-
|
632
|
-
subchannel_list_->policy_.get(), subchannel_list_, index_,
|
633
|
-
subchannel_.get());
|
634
|
-
}
|
1575
|
+
GRPC_TRACE_LOG(pick_first, INFO)
|
1576
|
+
<< "[PF " << subchannel_list_->policy_.get() << "] subchannel list "
|
1577
|
+
<< subchannel_list_ << " index " << index_ << " (subchannel "
|
1578
|
+
<< subchannel_.get() << "): starting watch";
|
635
1579
|
auto watcher = std::make_unique<Watcher>(
|
636
1580
|
subchannel_list_->Ref(DEBUG_LOCATION, "Watcher"), index_);
|
637
1581
|
pending_watcher_ = watcher.get();
|
638
1582
|
subchannel_->WatchConnectivityState(std::move(watcher));
|
639
1583
|
}
|
640
1584
|
|
641
|
-
void
|
1585
|
+
void OldPickFirst::SubchannelList::SubchannelData::ShutdownLocked() {
|
642
1586
|
if (subchannel_ != nullptr) {
|
643
|
-
|
644
|
-
|
645
|
-
|
646
|
-
|
647
|
-
|
648
|
-
subchannel_list_->size(), subchannel_.get());
|
649
|
-
}
|
1587
|
+
GRPC_TRACE_LOG(pick_first, INFO)
|
1588
|
+
<< "[PF " << subchannel_list_->policy_.get() << "] subchannel list "
|
1589
|
+
<< subchannel_list_ << " index " << index_ << " of "
|
1590
|
+
<< subchannel_list_->size() << " (subchannel " << subchannel_.get()
|
1591
|
+
<< "): cancelling watch and unreffing subchannel";
|
650
1592
|
subchannel_->CancelConnectivityStateWatch(pending_watcher_);
|
651
1593
|
pending_watcher_ = nullptr;
|
652
1594
|
subchannel_.reset();
|
653
1595
|
}
|
654
1596
|
}
|
655
1597
|
|
656
|
-
void
|
1598
|
+
void OldPickFirst::SubchannelList::SubchannelData::OnConnectivityStateChange(
|
657
1599
|
grpc_connectivity_state new_state, absl::Status status) {
|
658
|
-
|
659
|
-
|
660
|
-
|
661
|
-
|
662
|
-
|
663
|
-
|
664
|
-
|
665
|
-
|
666
|
-
|
667
|
-
|
668
|
-
|
669
|
-
|
670
|
-
|
671
|
-
|
672
|
-
|
673
|
-
|
674
|
-
|
675
|
-
|
676
|
-
}
|
1600
|
+
OldPickFirst* p = subchannel_list_->policy_.get();
|
1601
|
+
GRPC_TRACE_LOG(pick_first, INFO)
|
1602
|
+
<< "[PF " << p << "] subchannel list " << subchannel_list_ << " index "
|
1603
|
+
<< index_ << " of " << subchannel_list_->size() << " (subchannel "
|
1604
|
+
<< subchannel_.get() << "): connectivity changed: old_state="
|
1605
|
+
<< (connectivity_state_.has_value()
|
1606
|
+
? ConnectivityStateName(*connectivity_state_)
|
1607
|
+
: "N/A")
|
1608
|
+
<< ", new_state=" << ConnectivityStateName(new_state)
|
1609
|
+
<< ", status=" << status
|
1610
|
+
<< ", shutting_down=" << subchannel_list_->shutting_down_
|
1611
|
+
<< ", pending_watcher=" << pending_watcher_
|
1612
|
+
<< ", seen_transient_failure=" << seen_transient_failure_
|
1613
|
+
<< ", p->selected_=" << p->selected_
|
1614
|
+
<< ", p->subchannel_list_=" << p->subchannel_list_.get()
|
1615
|
+
<< ", p->latest_pending_subchannel_list_="
|
1616
|
+
<< p->latest_pending_subchannel_list_.get();
|
1617
|
+
|
677
1618
|
if (subchannel_list_->shutting_down_ || pending_watcher_ == nullptr) return;
|
1619
|
+
auto& stats_plugins = subchannel_list_->policy_->channel_control_helper()
|
1620
|
+
->GetStatsPluginGroup();
|
678
1621
|
// The notification must be for a subchannel in either the current or
|
679
1622
|
// latest pending subchannel lists.
|
680
|
-
|
681
|
-
|
682
|
-
|
1623
|
+
CHECK(subchannel_list_ == p->subchannel_list_.get() ||
|
1624
|
+
subchannel_list_ == p->latest_pending_subchannel_list_.get());
|
1625
|
+
CHECK(new_state != GRPC_CHANNEL_SHUTDOWN);
|
683
1626
|
absl::optional<grpc_connectivity_state> old_state = connectivity_state_;
|
684
1627
|
connectivity_state_ = new_state;
|
685
1628
|
connectivity_status_ = std::move(status);
|
686
1629
|
// Handle updates for the currently selected subchannel.
|
687
1630
|
if (p->selected_ == this) {
|
688
|
-
|
689
|
-
|
690
|
-
|
691
|
-
|
692
|
-
ConnectivityStateName(new_state));
|
693
|
-
}
|
1631
|
+
CHECK(subchannel_list_ == p->subchannel_list_.get());
|
1632
|
+
GRPC_TRACE_LOG(pick_first, INFO)
|
1633
|
+
<< "Pick First " << p << " selected subchannel connectivity changed to "
|
1634
|
+
<< ConnectivityStateName(new_state);
|
694
1635
|
// Any state change is considered to be a failure of the existing
|
695
1636
|
// connection.
|
1637
|
+
stats_plugins.AddCounter(
|
1638
|
+
kMetricDisconnections, 1,
|
1639
|
+
{subchannel_list_->policy_->channel_control_helper()->GetTarget()}, {});
|
696
1640
|
// TODO(roth): We could check the connectivity states of all the
|
697
1641
|
// subchannels here, just in case one of them happens to be READY,
|
698
1642
|
// and we could switch to that rather than going IDLE.
|
@@ -702,19 +1646,14 @@ void PickFirst::SubchannelList::SubchannelData::OnConnectivityStateChange(
|
|
702
1646
|
p->channel_control_helper()->RequestReresolution();
|
703
1647
|
// If there is a pending update, switch to the pending update.
|
704
1648
|
if (p->latest_pending_subchannel_list_ != nullptr) {
|
705
|
-
|
706
|
-
|
707
|
-
|
708
|
-
|
709
|
-
p, p->latest_pending_subchannel_list_.get(),
|
710
|
-
p->subchannel_list_.get());
|
711
|
-
}
|
1649
|
+
GRPC_TRACE_LOG(pick_first, INFO)
|
1650
|
+
<< "Pick First " << p << " promoting pending subchannel list "
|
1651
|
+
<< p->latest_pending_subchannel_list_.get() << " to replace "
|
1652
|
+
<< p->subchannel_list_.get();
|
712
1653
|
p->UnsetSelectedSubchannel();
|
713
1654
|
p->subchannel_list_ = std::move(p->latest_pending_subchannel_list_);
|
714
1655
|
// Set our state to that of the pending subchannel list.
|
715
|
-
if (
|
716
|
-
? p->subchannel_list_->IsHappyEyeballsPassComplete()
|
717
|
-
: p->subchannel_list_->in_transient_failure_) {
|
1656
|
+
if (p->subchannel_list_->IsHappyEyeballsPassComplete()) {
|
718
1657
|
status = absl::UnavailableError(absl::StrCat(
|
719
1658
|
"selected subchannel failed; switching to pending update; "
|
720
1659
|
"last failure: ",
|
@@ -746,8 +1685,15 @@ void PickFirst::SubchannelList::SubchannelData::OnConnectivityStateChange(
|
|
746
1685
|
// select in place of the current one.
|
747
1686
|
// If the subchannel is READY, use it.
|
748
1687
|
if (new_state == GRPC_CHANNEL_READY) {
|
749
|
-
if
|
750
|
-
|
1688
|
+
// We consider it a successful connection attempt only if the
|
1689
|
+
// previous state was CONNECTING. In particular, we don't want to
|
1690
|
+
// increment this counter if we got a new address list and found the
|
1691
|
+
// existing connection already in state READY.
|
1692
|
+
if (old_state == GRPC_CHANNEL_CONNECTING) {
|
1693
|
+
stats_plugins.AddCounter(
|
1694
|
+
kMetricConnectionAttemptsSucceeded, 1,
|
1695
|
+
{subchannel_list_->policy_->channel_control_helper()->GetTarget()},
|
1696
|
+
{});
|
751
1697
|
}
|
752
1698
|
ProcessUnselectedReadyLocked();
|
753
1699
|
return;
|
@@ -771,20 +1717,15 @@ void PickFirst::SubchannelList::SubchannelData::OnConnectivityStateChange(
|
|
771
1717
|
// see its initial notification. Start trying to connect, starting
|
772
1718
|
// with the first subchannel.
|
773
1719
|
if (!old_state.has_value()) {
|
774
|
-
if (!IsPickFirstHappyEyeballsEnabled()) {
|
775
|
-
subchannel_list_->subchannels_.front().ReactToConnectivityStateLocked();
|
776
|
-
return;
|
777
|
-
}
|
778
1720
|
subchannel_list_->StartConnectingNextSubchannel();
|
779
1721
|
return;
|
780
1722
|
}
|
781
|
-
|
782
|
-
|
783
|
-
|
784
|
-
|
785
|
-
|
786
|
-
|
787
|
-
return;
|
1723
|
+
// We've already started trying to connect. Any subchannel that
|
1724
|
+
// reports TF is a connection attempt failure.
|
1725
|
+
if (new_state == GRPC_CHANNEL_TRANSIENT_FAILURE) {
|
1726
|
+
stats_plugins.AddCounter(
|
1727
|
+
kMetricConnectionAttemptsFailed, 1,
|
1728
|
+
{subchannel_list_->policy_->channel_control_helper()->GetTarget()}, {});
|
788
1729
|
}
|
789
1730
|
// Otherwise, process connectivity state change.
|
790
1731
|
switch (*connectivity_state_) {
|
@@ -855,116 +1796,21 @@ void PickFirst::SubchannelList::SubchannelData::OnConnectivityStateChange(
|
|
855
1796
|
}
|
856
1797
|
}
|
857
1798
|
|
858
|
-
void
|
859
|
-
|
860
|
-
|
861
|
-
// Otherwise, process connectivity state.
|
862
|
-
switch (connectivity_state_.value()) {
|
863
|
-
case GRPC_CHANNEL_READY:
|
864
|
-
// Already handled this case above, so this should not happen.
|
865
|
-
GPR_UNREACHABLE_CODE(break);
|
866
|
-
case GRPC_CHANNEL_TRANSIENT_FAILURE: {
|
867
|
-
// Find the next subchannel not in state TRANSIENT_FAILURE.
|
868
|
-
// We skip subchannels in state TRANSIENT_FAILURE to avoid a
|
869
|
-
// large recursion that could overflow the stack.
|
870
|
-
SubchannelData* found_subchannel = nullptr;
|
871
|
-
for (size_t next_index = index_ + 1;
|
872
|
-
next_index < subchannel_list_->size(); ++next_index) {
|
873
|
-
SubchannelData* sc = &subchannel_list_->subchannels_[next_index];
|
874
|
-
GPR_ASSERT(sc->connectivity_state_.has_value());
|
875
|
-
if (sc->connectivity_state_ != GRPC_CHANNEL_TRANSIENT_FAILURE) {
|
876
|
-
subchannel_list_->attempting_index_ = next_index;
|
877
|
-
found_subchannel = sc;
|
878
|
-
break;
|
879
|
-
}
|
880
|
-
}
|
881
|
-
// If we found another subchannel in the list not in state
|
882
|
-
// TRANSIENT_FAILURE, trigger the right behavior for that subchannel.
|
883
|
-
if (found_subchannel != nullptr) {
|
884
|
-
found_subchannel->ReactToConnectivityStateLocked();
|
885
|
-
break;
|
886
|
-
}
|
887
|
-
// We didn't find another subchannel not in state TRANSIENT_FAILURE,
|
888
|
-
// so report TRANSIENT_FAILURE and wait for the first subchannel
|
889
|
-
// in the list to report IDLE before continuing.
|
890
|
-
if (GRPC_TRACE_FLAG_ENABLED(grpc_lb_pick_first_trace)) {
|
891
|
-
gpr_log(GPR_INFO,
|
892
|
-
"Pick First %p subchannel list %p failed to connect to "
|
893
|
-
"all subchannels",
|
894
|
-
p, subchannel_list_);
|
895
|
-
}
|
896
|
-
subchannel_list_->attempting_index_ = 0;
|
897
|
-
subchannel_list_->in_transient_failure_ = true;
|
898
|
-
// In case 2, swap to the new subchannel list. This means reporting
|
899
|
-
// TRANSIENT_FAILURE and dropping the existing (working) connection,
|
900
|
-
// but we can't ignore what the control plane has told us.
|
901
|
-
if (subchannel_list_ == p->latest_pending_subchannel_list_.get()) {
|
902
|
-
if (GRPC_TRACE_FLAG_ENABLED(grpc_lb_pick_first_trace)) {
|
903
|
-
gpr_log(GPR_INFO,
|
904
|
-
"Pick First %p promoting pending subchannel list %p to "
|
905
|
-
"replace %p",
|
906
|
-
p, p->latest_pending_subchannel_list_.get(),
|
907
|
-
p->subchannel_list_.get());
|
908
|
-
}
|
909
|
-
p->UnsetSelectedSubchannel();
|
910
|
-
p->subchannel_list_ = std::move(p->latest_pending_subchannel_list_);
|
911
|
-
}
|
912
|
-
// If this is the current subchannel list (either because we were
|
913
|
-
// in case 1 or because we were in case 2 and just promoted it to
|
914
|
-
// be the current list), re-resolve and report new state.
|
915
|
-
if (subchannel_list_ == p->subchannel_list_.get()) {
|
916
|
-
p->channel_control_helper()->RequestReresolution();
|
917
|
-
absl::Status status = absl::UnavailableError(absl::StrCat(
|
918
|
-
(p->omit_status_message_prefix_
|
919
|
-
? ""
|
920
|
-
: "failed to connect to all addresses; last error: "),
|
921
|
-
connectivity_status_.ToString()));
|
922
|
-
p->UpdateState(GRPC_CHANNEL_TRANSIENT_FAILURE, status,
|
923
|
-
MakeRefCounted<TransientFailurePicker>(status));
|
924
|
-
}
|
925
|
-
// If the first subchannel is already IDLE, trigger the next connection
|
926
|
-
// attempt immediately. Otherwise, we'll wait for it to report
|
927
|
-
// its own connectivity state change.
|
928
|
-
auto& subchannel0 = subchannel_list_->subchannels_.front();
|
929
|
-
if (subchannel0.connectivity_state_ == GRPC_CHANNEL_IDLE) {
|
930
|
-
subchannel0.subchannel_->RequestConnection();
|
931
|
-
}
|
932
|
-
break;
|
933
|
-
}
|
934
|
-
case GRPC_CHANNEL_IDLE:
|
935
|
-
subchannel_->RequestConnection();
|
936
|
-
break;
|
937
|
-
case GRPC_CHANNEL_CONNECTING:
|
938
|
-
// Only update connectivity state in case 1, and only if we're not
|
939
|
-
// already in TRANSIENT_FAILURE.
|
940
|
-
if (subchannel_list_ == p->subchannel_list_.get() &&
|
941
|
-
p->state_ != GRPC_CHANNEL_TRANSIENT_FAILURE) {
|
942
|
-
p->UpdateState(GRPC_CHANNEL_CONNECTING, absl::Status(),
|
943
|
-
MakeRefCounted<QueuePicker>(nullptr));
|
944
|
-
}
|
945
|
-
break;
|
946
|
-
case GRPC_CHANNEL_SHUTDOWN:
|
947
|
-
GPR_UNREACHABLE_CODE(break);
|
948
|
-
}
|
949
|
-
}
|
950
|
-
|
951
|
-
void PickFirst::SubchannelList::SubchannelData::RequestConnectionWithTimer() {
|
952
|
-
GPR_ASSERT(connectivity_state_.has_value());
|
1799
|
+
void OldPickFirst::SubchannelList::SubchannelData::
|
1800
|
+
RequestConnectionWithTimer() {
|
1801
|
+
CHECK(connectivity_state_.has_value());
|
953
1802
|
if (connectivity_state_ == GRPC_CHANNEL_IDLE) {
|
954
1803
|
subchannel_->RequestConnection();
|
955
1804
|
} else {
|
956
|
-
|
1805
|
+
CHECK(connectivity_state_ == GRPC_CHANNEL_CONNECTING);
|
957
1806
|
}
|
958
1807
|
// If this is not the last subchannel in the list, start the timer.
|
959
1808
|
if (index_ != subchannel_list_->size() - 1) {
|
960
|
-
|
961
|
-
|
962
|
-
|
963
|
-
|
964
|
-
|
965
|
-
p, subchannel_list_, p->connection_attempt_delay_.millis(),
|
966
|
-
index_);
|
967
|
-
}
|
1809
|
+
OldPickFirst* p = subchannel_list_->policy_.get();
|
1810
|
+
GRPC_TRACE_LOG(pick_first, INFO)
|
1811
|
+
<< "Pick First " << p << " subchannel list " << subchannel_list_
|
1812
|
+
<< ": starting Connection Attempt Delay timer for "
|
1813
|
+
<< p->connection_attempt_delay_.millis() << "ms for index " << index_;
|
968
1814
|
subchannel_list_->timer_handle_ =
|
969
1815
|
p->channel_control_helper()->GetEventEngine()->RunAfter(
|
970
1816
|
p->connection_attempt_delay_,
|
@@ -975,16 +1821,13 @@ void PickFirst::SubchannelList::SubchannelData::RequestConnectionWithTimer() {
|
|
975
1821
|
auto* sl = subchannel_list.get();
|
976
1822
|
sl->policy_->work_serializer()->Run(
|
977
1823
|
[subchannel_list = std::move(subchannel_list)]() {
|
978
|
-
|
979
|
-
|
980
|
-
|
981
|
-
|
982
|
-
|
983
|
-
|
984
|
-
|
985
|
-
subchannel_list->shutting_down_,
|
986
|
-
subchannel_list->policy_->selected_);
|
987
|
-
}
|
1824
|
+
GRPC_TRACE_LOG(pick_first, INFO)
|
1825
|
+
<< "Pick First " << subchannel_list->policy_.get()
|
1826
|
+
<< " subchannel list " << subchannel_list.get()
|
1827
|
+
<< ": Connection Attempt Delay timer fired "
|
1828
|
+
<< "(shutting_down=" << subchannel_list->shutting_down_
|
1829
|
+
<< ", selected=" << subchannel_list->policy_->selected_
|
1830
|
+
<< ")";
|
988
1831
|
if (subchannel_list->shutting_down_) return;
|
989
1832
|
if (subchannel_list->policy_->selected_ != nullptr) return;
|
990
1833
|
++subchannel_list->attempting_index_;
|
@@ -995,8 +1838,9 @@ void PickFirst::SubchannelList::SubchannelData::RequestConnectionWithTimer() {
|
|
995
1838
|
}
|
996
1839
|
}
|
997
1840
|
|
998
|
-
void
|
999
|
-
|
1841
|
+
void OldPickFirst::SubchannelList::SubchannelData::
|
1842
|
+
ProcessUnselectedReadyLocked() {
|
1843
|
+
OldPickFirst* p = subchannel_list_->policy_.get();
|
1000
1844
|
// Cancel Happy Eyeballs timer, if any.
|
1001
1845
|
if (subchannel_list_->timer_handle_.has_value()) {
|
1002
1846
|
p->channel_control_helper()->GetEventEngine()->Cancel(
|
@@ -1011,35 +1855,30 @@ void PickFirst::SubchannelList::SubchannelData::ProcessUnselectedReadyLocked() {
|
|
1011
1855
|
// for a subchannel in p->latest_pending_subchannel_list_. The
|
1012
1856
|
// goal here is to find a subchannel from the update that we can
|
1013
1857
|
// select in place of the current one.
|
1014
|
-
|
1015
|
-
|
1858
|
+
CHECK(subchannel_list_ == p->subchannel_list_.get() ||
|
1859
|
+
subchannel_list_ == p->latest_pending_subchannel_list_.get());
|
1016
1860
|
// Case 2. Promote p->latest_pending_subchannel_list_ to p->subchannel_list_.
|
1017
1861
|
if (subchannel_list_ == p->latest_pending_subchannel_list_.get()) {
|
1018
|
-
|
1019
|
-
|
1020
|
-
|
1021
|
-
|
1022
|
-
|
1023
|
-
p->subchannel_list_.get());
|
1024
|
-
}
|
1862
|
+
GRPC_TRACE_LOG(pick_first, INFO)
|
1863
|
+
<< "Pick First " << p << " promoting pending subchannel list "
|
1864
|
+
<< p->latest_pending_subchannel_list_.get() << " to replace "
|
1865
|
+
<< p->subchannel_list_.get();
|
1866
|
+
p->UnsetSelectedSubchannel();
|
1025
1867
|
p->subchannel_list_ = std::move(p->latest_pending_subchannel_list_);
|
1026
1868
|
}
|
1027
1869
|
// Cases 1 and 2.
|
1028
|
-
|
1029
|
-
|
1030
|
-
subchannel_.get());
|
1031
|
-
}
|
1870
|
+
GRPC_TRACE_LOG(pick_first, INFO)
|
1871
|
+
<< "Pick First " << p << " selected subchannel " << subchannel_.get();
|
1032
1872
|
p->selected_ = this;
|
1033
1873
|
// If health checking is enabled, start the health watch, but don't
|
1034
1874
|
// report a new picker -- we want to stay in CONNECTING while we wait
|
1035
1875
|
// for the health status notification.
|
1036
1876
|
// If health checking is NOT enabled, report READY.
|
1037
1877
|
if (p->enable_health_watch_) {
|
1038
|
-
|
1039
|
-
|
1040
|
-
}
|
1878
|
+
GRPC_TRACE_LOG(pick_first, INFO)
|
1879
|
+
<< "[PF " << p << "] starting health watch";
|
1041
1880
|
auto watcher = std::make_unique<HealthWatcher>(
|
1042
|
-
p->RefAsSubclass<
|
1881
|
+
p->RefAsSubclass<OldPickFirst>(DEBUG_LOCATION, "HealthWatcher"));
|
1043
1882
|
p->health_watcher_ = watcher.get();
|
1044
1883
|
auto health_data_watcher = MakeHealthCheckWatcher(
|
1045
1884
|
p->work_serializer(), subchannel_list_->args_, std::move(watcher));
|
@@ -1058,63 +1897,53 @@ void PickFirst::SubchannelList::SubchannelData::ProcessUnselectedReadyLocked() {
|
|
1058
1897
|
}
|
1059
1898
|
|
1060
1899
|
//
|
1061
|
-
//
|
1900
|
+
// OldPickFirst::SubchannelList
|
1062
1901
|
//
|
1063
1902
|
|
1064
|
-
|
1065
|
-
|
1066
|
-
|
1903
|
+
OldPickFirst::SubchannelList::SubchannelList(
|
1904
|
+
RefCountedPtr<OldPickFirst> policy, EndpointAddressesIterator* addresses,
|
1905
|
+
const ChannelArgs& args)
|
1067
1906
|
: InternallyRefCounted<SubchannelList>(
|
1068
|
-
GRPC_TRACE_FLAG_ENABLED(
|
1069
|
-
: nullptr),
|
1907
|
+
GRPC_TRACE_FLAG_ENABLED(pick_first) ? "SubchannelList" : nullptr),
|
1070
1908
|
policy_(std::move(policy)),
|
1071
1909
|
args_(args.Remove(GRPC_ARG_INTERNAL_PICK_FIRST_ENABLE_HEALTH_CHECKING)
|
1072
1910
|
.Remove(
|
1073
1911
|
GRPC_ARG_INTERNAL_PICK_FIRST_OMIT_STATUS_MESSAGE_PREFIX)) {
|
1074
|
-
|
1075
|
-
|
1076
|
-
|
1077
|
-
}
|
1912
|
+
GRPC_TRACE_LOG(pick_first, INFO)
|
1913
|
+
<< "[PF " << policy_.get() << "] Creating subchannel list " << this
|
1914
|
+
<< " - channel args: " << args_.ToString();
|
1078
1915
|
if (addresses == nullptr) return;
|
1079
1916
|
// Create a subchannel for each address.
|
1080
1917
|
addresses->ForEach([&](const EndpointAddresses& address) {
|
1081
|
-
|
1918
|
+
CHECK_EQ(address.addresses().size(), 1u);
|
1082
1919
|
RefCountedPtr<SubchannelInterface> subchannel =
|
1083
1920
|
policy_->channel_control_helper()->CreateSubchannel(
|
1084
1921
|
address.address(), address.args(), args_);
|
1085
1922
|
if (subchannel == nullptr) {
|
1086
1923
|
// Subchannel could not be created.
|
1087
|
-
|
1088
|
-
|
1089
|
-
|
1090
|
-
|
1091
|
-
}
|
1924
|
+
GRPC_TRACE_LOG(pick_first, INFO)
|
1925
|
+
<< "[PF " << policy_.get()
|
1926
|
+
<< "] could not create subchannel for address " << address.ToString()
|
1927
|
+
<< ", ignoring";
|
1092
1928
|
return;
|
1093
1929
|
}
|
1094
|
-
|
1095
|
-
|
1096
|
-
|
1097
|
-
|
1098
|
-
policy_.get(), this, subchannels_.size(), subchannel.get(),
|
1099
|
-
address.ToString().c_str());
|
1100
|
-
}
|
1930
|
+
GRPC_TRACE_LOG(pick_first, INFO)
|
1931
|
+
<< "[PF " << policy_.get() << "] subchannel list " << this << " index "
|
1932
|
+
<< subchannels_.size() << ": Created subchannel " << subchannel.get()
|
1933
|
+
<< " for address " << address.ToString();
|
1101
1934
|
subchannels_.emplace_back(this, subchannels_.size(), std::move(subchannel));
|
1102
1935
|
});
|
1103
1936
|
}
|
1104
1937
|
|
1105
|
-
|
1106
|
-
|
1107
|
-
|
1108
|
-
this);
|
1109
|
-
}
|
1938
|
+
OldPickFirst::SubchannelList::~SubchannelList() {
|
1939
|
+
GRPC_TRACE_LOG(pick_first, INFO)
|
1940
|
+
<< "[PF " << policy_.get() << "] Destroying subchannel_list " << this;
|
1110
1941
|
}
|
1111
1942
|
|
1112
|
-
void
|
1113
|
-
|
1114
|
-
|
1115
|
-
|
1116
|
-
}
|
1117
|
-
GPR_ASSERT(!shutting_down_);
|
1943
|
+
void OldPickFirst::SubchannelList::Orphan() {
|
1944
|
+
GRPC_TRACE_LOG(pick_first, INFO)
|
1945
|
+
<< "[PF " << policy_.get() << "] Shutting down subchannel_list " << this;
|
1946
|
+
CHECK(!shutting_down_);
|
1118
1947
|
shutting_down_ = true;
|
1119
1948
|
for (auto& sd : subchannels_) {
|
1120
1949
|
sd.ShutdownLocked();
|
@@ -1125,19 +1954,19 @@ void PickFirst::SubchannelList::Orphan() {
|
|
1125
1954
|
Unref();
|
1126
1955
|
}
|
1127
1956
|
|
1128
|
-
void
|
1957
|
+
void OldPickFirst::SubchannelList::ResetBackoffLocked() {
|
1129
1958
|
for (auto& sd : subchannels_) {
|
1130
1959
|
sd.ResetBackoffLocked();
|
1131
1960
|
}
|
1132
1961
|
}
|
1133
1962
|
|
1134
|
-
void
|
1963
|
+
void OldPickFirst::SubchannelList::StartConnectingNextSubchannel() {
|
1135
1964
|
// Find the next subchannel not in state TRANSIENT_FAILURE.
|
1136
1965
|
// We skip subchannels in state TRANSIENT_FAILURE to avoid a
|
1137
1966
|
// large recursion that could overflow the stack.
|
1138
1967
|
for (; attempting_index_ < size(); ++attempting_index_) {
|
1139
1968
|
SubchannelData* sc = &subchannels_[attempting_index_];
|
1140
|
-
|
1969
|
+
CHECK(sc->connectivity_state().has_value());
|
1141
1970
|
if (sc->connectivity_state() != GRPC_CHANNEL_TRANSIENT_FAILURE) {
|
1142
1971
|
// Found a subchannel not in TRANSIENT_FAILURE, so trigger a
|
1143
1972
|
// connection attempt.
|
@@ -1150,30 +1979,25 @@ void PickFirst::SubchannelList::StartConnectingNextSubchannel() {
|
|
1150
1979
|
MaybeFinishHappyEyeballsPass();
|
1151
1980
|
}
|
1152
1981
|
|
1153
|
-
void
|
1982
|
+
void OldPickFirst::SubchannelList::MaybeFinishHappyEyeballsPass() {
|
1154
1983
|
// Make sure all subchannels have finished a connection attempt before
|
1155
1984
|
// we consider the Happy Eyeballs pass complete.
|
1156
1985
|
if (!IsHappyEyeballsPassComplete()) return;
|
1157
1986
|
// We didn't find another subchannel not in state TRANSIENT_FAILURE,
|
1158
1987
|
// so report TRANSIENT_FAILURE and switch to a mode in which we try to
|
1159
1988
|
// connect to all addresses in parallel.
|
1160
|
-
|
1161
|
-
|
1162
|
-
|
1163
|
-
"all subchannels",
|
1164
|
-
policy_.get(), this);
|
1165
|
-
}
|
1989
|
+
GRPC_TRACE_LOG(pick_first, INFO)
|
1990
|
+
<< "Pick First " << policy_.get() << " subchannel list " << this
|
1991
|
+
<< " failed to connect to all subchannels";
|
1166
1992
|
// In case 2, swap to the new subchannel list. This means reporting
|
1167
1993
|
// TRANSIENT_FAILURE and dropping the existing (working) connection,
|
1168
1994
|
// but we can't ignore what the control plane has told us.
|
1169
1995
|
if (policy_->latest_pending_subchannel_list_.get() == this) {
|
1170
|
-
|
1171
|
-
|
1172
|
-
|
1173
|
-
|
1174
|
-
|
1175
|
-
this);
|
1176
|
-
}
|
1996
|
+
GRPC_TRACE_LOG(pick_first, INFO)
|
1997
|
+
<< "Pick First " << policy_.get()
|
1998
|
+
<< " promoting pending subchannel list "
|
1999
|
+
<< policy_->latest_pending_subchannel_list_.get() << " to replace "
|
2000
|
+
<< this;
|
1177
2001
|
policy_->UnsetSelectedSubchannel();
|
1178
2002
|
policy_->subchannel_list_ =
|
1179
2003
|
std::move(policy_->latest_pending_subchannel_list_);
|
@@ -1201,15 +2025,17 @@ void PickFirst::SubchannelList::MaybeFinishHappyEyeballsPass() {
|
|
1201
2025
|
}
|
1202
2026
|
}
|
1203
2027
|
}
|
1204
|
-
|
1205
2028
|
//
|
1206
2029
|
// factory
|
1207
2030
|
//
|
1208
2031
|
|
1209
|
-
class PickFirstFactory : public LoadBalancingPolicyFactory {
|
2032
|
+
class PickFirstFactory final : public LoadBalancingPolicyFactory {
|
1210
2033
|
public:
|
1211
2034
|
OrphanablePtr<LoadBalancingPolicy> CreateLoadBalancingPolicy(
|
1212
2035
|
LoadBalancingPolicy::Args args) const override {
|
2036
|
+
if (!IsPickFirstNewEnabled()) {
|
2037
|
+
return MakeOrphanable<OldPickFirst>(std::move(args));
|
2038
|
+
}
|
1213
2039
|
return MakeOrphanable<PickFirst>(std::move(args));
|
1214
2040
|
}
|
1215
2041
|
|