grpc 1.64.0 → 1.68.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Makefile +127 -99
- data/include/grpc/compression.h +1 -2
- data/include/grpc/credentials.h +2 -3
- data/include/grpc/event_engine/README.md +1 -1
- data/include/grpc/event_engine/endpoint_config.h +2 -2
- data/include/grpc/event_engine/event_engine.h +33 -12
- data/include/grpc/event_engine/extensible.h +5 -2
- data/include/grpc/event_engine/internal/memory_allocator_impl.h +4 -4
- data/include/grpc/event_engine/internal/slice_cast.h +1 -1
- data/include/grpc/event_engine/memory_allocator.h +3 -4
- data/include/grpc/event_engine/memory_request.h +19 -2
- data/include/grpc/event_engine/slice.h +3 -5
- data/include/grpc/event_engine/slice_buffer.h +6 -8
- data/include/grpc/grpc.h +1 -2
- data/include/grpc/grpc_audit_logging.h +3 -3
- data/include/grpc/grpc_crl_provider.h +5 -5
- data/include/grpc/grpc_posix.h +1 -2
- data/include/grpc/grpc_security.h +1 -2
- data/include/grpc/impl/call.h +2 -2
- data/include/grpc/impl/channel_arg_names.h +8 -4
- data/include/grpc/impl/grpc_types.h +1 -2
- data/include/grpc/impl/slice_type.h +1 -2
- data/include/grpc/module.modulemap +1 -0
- data/include/grpc/passive_listener.h +62 -0
- data/include/grpc/support/alloc.h +1 -2
- data/include/grpc/support/json.h +1 -2
- data/include/grpc/support/log.h +37 -64
- data/include/grpc/support/metrics.h +21 -6
- data/include/grpc/support/port_platform.h +31 -1
- data/include/grpc/support/sync_generic.h +2 -4
- data/include/grpc/support/sync_posix.h +1 -2
- data/include/grpc/support/time.h +1 -2
- data/src/core/channelz/channel_trace.cc +6 -7
- data/src/core/channelz/channel_trace.h +6 -8
- data/src/core/channelz/channelz.cc +8 -10
- data/src/core/channelz/channelz.h +15 -17
- data/src/core/channelz/channelz_registry.cc +10 -11
- data/src/core/channelz/channelz_registry.h +4 -5
- data/src/core/client_channel/backup_poller.cc +24 -15
- 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 +348 -861
- data/src/core/client_channel/client_channel_filter.h +23 -76
- data/src/core/client_channel/client_channel_internal.h +23 -9
- data/src/core/client_channel/client_channel_plugin.cc +2 -17
- data/src/core/client_channel/client_channel_service_config.cc +2 -3
- data/src/core/client_channel/client_channel_service_config.h +6 -8
- data/src/core/client_channel/config_selector.h +21 -22
- data/src/core/client_channel/connector.h +3 -3
- 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 +16 -14
- data/src/core/client_channel/dynamic_filters.h +9 -10
- 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 +2 -5
- 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 +6 -15
- data/src/core/client_channel/retry_filter_legacy_call_data.cc +206 -318
- data/src/core/client_channel/retry_filter_legacy_call_data.h +9 -14
- data/src/core/client_channel/retry_service_config.cc +9 -12
- data/src/core/client_channel/retry_service_config.h +5 -7
- data/src/core/client_channel/retry_throttle.cc +3 -4
- data/src/core/client_channel/retry_throttle.h +4 -7
- data/src/core/client_channel/subchannel.cc +282 -164
- data/src/core/client_channel/subchannel.h +48 -40
- 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 +4 -7
- data/src/core/client_channel/subchannel_stream_client.cc +43 -59
- data/src/core/client_channel/subchannel_stream_client.h +10 -14
- data/src/core/ext/filters/backend_metrics/backend_metric_filter.cc +22 -27
- data/src/core/ext/filters/backend_metrics/backend_metric_filter.h +3 -1
- 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 +34 -45
- data/src/core/ext/filters/channel_idle/legacy_channel_idle_filter.h +12 -8
- data/src/core/ext/filters/fault_injection/fault_injection_filter.cc +16 -19
- data/src/core/ext/filters/fault_injection/fault_injection_filter.h +4 -3
- 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 +6 -9
- 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 +14 -8
- data/src/core/ext/filters/http/client/http_client_filter.h +3 -1
- data/src/core/ext/filters/http/client_authority_filter.cc +8 -7
- data/src/core/ext/filters/http/client_authority_filter.h +3 -1
- data/src/core/ext/filters/http/http_filters_plugin.cc +0 -1
- data/src/core/ext/filters/http/message_compress/compression_filter.cc +48 -44
- data/src/core/ext/filters/http/message_compress/compression_filter.h +8 -4
- data/src/core/ext/filters/http/server/http_server_filter.cc +16 -13
- data/src/core/ext/filters/http/server/http_server_filter.h +3 -1
- data/src/core/ext/filters/message_size/message_size_filter.cc +32 -32
- data/src/core/ext/filters/message_size/message_size_filter.h +11 -9
- data/src/core/ext/filters/rbac/rbac_filter.cc +8 -11
- data/src/core/ext/filters/rbac/rbac_filter.h +3 -2
- data/src/core/ext/filters/rbac/rbac_service_config_parser.cc +16 -10
- data/src/core/ext/filters/rbac/rbac_service_config_parser.h +2 -4
- data/src/core/ext/filters/stateful_session/stateful_session_filter.cc +13 -15
- data/src/core/ext/filters/stateful_session/stateful_session_filter.h +5 -4
- 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 +5 -7
- data/src/core/ext/transport/chttp2/alpn/alpn.cc +2 -4
- data/src/core/ext/transport/chttp2/alpn/alpn.h +1 -2
- data/src/core/ext/transport/chttp2/client/chttp2_connector.cc +71 -101
- data/src/core/ext/transport/chttp2/client/chttp2_connector.h +5 -11
- data/src/core/ext/transport/chttp2/server/chttp2_server.cc +426 -314
- data/src/core/ext/transport/chttp2/server/chttp2_server.h +35 -2
- data/src/core/ext/transport/chttp2/transport/bin_decoder.cc +19 -32
- data/src/core/ext/transport/chttp2/transport/bin_decoder.h +2 -3
- data/src/core/ext/transport/chttp2/transport/bin_encoder.cc +1 -4
- data/src/core/ext/transport/chttp2/transport/bin_encoder.h +1 -2
- 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 +562 -516
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.h +15 -16
- data/src/core/ext/transport/chttp2/transport/context_list_entry.h +2 -3
- data/src/core/ext/transport/chttp2/transport/decode_huff.h +2 -2
- data/src/core/ext/transport/chttp2/transport/flow_control.cc +6 -11
- data/src/core/ext/transport/chttp2/transport/flow_control.h +2 -7
- data/src/core/ext/transport/chttp2/transport/frame.cc +2 -5
- data/src/core/ext/transport/chttp2/transport/frame.h +2 -3
- data/src/core/ext/transport/chttp2/transport/frame_data.cc +7 -13
- data/src/core/ext/transport/chttp2/transport/frame_data.h +4 -5
- data/src/core/ext/transport/chttp2/transport/frame_goaway.cc +3 -6
- data/src/core/ext/transport/chttp2/transport/frame_goaway.h +1 -2
- data/src/core/ext/transport/chttp2/transport/frame_ping.cc +14 -19
- data/src/core/ext/transport/chttp2/transport/frame_ping.h +1 -2
- data/src/core/ext/transport/chttp2/transport/frame_rst_stream.cc +17 -18
- data/src/core/ext/transport/chttp2/transport/frame_rst_stream.h +6 -5
- data/src/core/ext/transport/chttp2/transport/frame_settings.cc +20 -20
- data/src/core/ext/transport/chttp2/transport/frame_settings.h +3 -4
- data/src/core/ext/transport/chttp2/transport/frame_window_update.cc +10 -7
- data/src/core/ext/transport/chttp2/transport/frame_window_update.h +4 -3
- data/src/core/ext/transport/chttp2/transport/hpack_constants.h +2 -2
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.cc +14 -16
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.h +16 -12
- data/src/core/ext/transport/chttp2/transport/hpack_encoder_table.cc +2 -3
- data/src/core/ext/transport/chttp2/transport/hpack_encoder_table.h +1 -2
- data/src/core/ext/transport/chttp2/transport/hpack_parse_result.cc +2 -4
- data/src/core/ext/transport/chttp2/transport/hpack_parse_result.h +4 -7
- data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +56 -51
- data/src/core/ext/transport/chttp2/transport/hpack_parser.h +6 -6
- data/src/core/ext/transport/chttp2/transport/hpack_parser_table.cc +41 -16
- data/src/core/ext/transport/chttp2/transport/hpack_parser_table.h +29 -10
- data/src/core/ext/transport/chttp2/transport/http2_settings.cc +2 -3
- data/src/core/ext/transport/chttp2/transport/http2_settings.h +2 -4
- data/src/core/ext/transport/chttp2/transport/internal.h +46 -79
- data/src/core/ext/transport/chttp2/transport/parsing.cc +101 -109
- data/src/core/ext/transport/chttp2/transport/ping_abuse_policy.cc +3 -3
- data/src/core/ext/transport/chttp2/transport/ping_abuse_policy.h +3 -3
- data/src/core/ext/transport/chttp2/transport/ping_callbacks.cc +2 -5
- data/src/core/ext/transport/chttp2/transport/ping_callbacks.h +3 -7
- data/src/core/ext/transport/chttp2/transport/ping_rate_policy.cc +33 -18
- data/src/core/ext/transport/chttp2/transport/ping_rate_policy.h +7 -8
- data/src/core/ext/transport/chttp2/transport/stream_lists.cc +13 -16
- 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 +1 -3
- data/src/core/ext/transport/chttp2/transport/write_size_policy.cc +2 -3
- data/src/core/ext/transport/chttp2/transport/write_size_policy.h +2 -3
- data/src/core/ext/transport/chttp2/transport/writing.cc +145 -120
- data/src/core/ext/transport/inproc/inproc_transport.cc +149 -67
- data/src/core/ext/transport/inproc/inproc_transport.h +1 -3
- data/src/core/ext/transport/inproc/legacy_inproc_transport.cc +120 -121
- data/src/core/ext/transport/inproc/legacy_inproc_transport.h +0 -2
- data/src/core/ext/upb-gen/envoy/admin/v3/certs.upb.h +43 -12
- data/src/core/ext/upb-gen/envoy/admin/v3/certs.upb_minitable.c +36 -14
- data/src/core/ext/upb-gen/envoy/admin/v3/certs.upb_minitable.h +7 -1
- data/src/core/ext/upb-gen/envoy/admin/v3/clusters.upb.h +56 -24
- data/src/core/ext/upb-gen/envoy/admin/v3/clusters.upb_minitable.c +33 -15
- data/src/core/ext/upb-gen/envoy/admin/v3/clusters.upb_minitable.h +6 -1
- data/src/core/ext/upb-gen/envoy/admin/v3/config_dump.upb.h +47 -12
- data/src/core/ext/upb-gen/envoy/admin/v3/config_dump.upb_minitable.c +39 -17
- data/src/core/ext/upb-gen/envoy/admin/v3/config_dump.upb_minitable.h +7 -1
- data/src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb.h +184 -51
- data/src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb_minitable.c +143 -65
- data/src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb_minitable.h +21 -1
- data/src/core/ext/upb-gen/envoy/admin/v3/init_dump.upb.h +8 -2
- data/src/core/ext/upb-gen/envoy/admin/v3/init_dump.upb_minitable.c +13 -3
- data/src/core/ext/upb-gen/envoy/admin/v3/init_dump.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/admin/v3/listeners.upb.h +16 -3
- data/src/core/ext/upb-gen/envoy/admin/v3/listeners.upb_minitable.c +16 -6
- data/src/core/ext/upb-gen/envoy/admin/v3/listeners.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/admin/v3/memory.upb.h +8 -7
- data/src/core/ext/upb-gen/envoy/admin/v3/memory.upb_minitable.c +7 -1
- data/src/core/ext/upb-gen/envoy/admin/v3/memory.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/admin/v3/metrics.upb.h +5 -4
- data/src/core/ext/upb-gen/envoy/admin/v3/metrics.upb_minitable.c +7 -1
- data/src/core/ext/upb-gen/envoy/admin/v3/metrics.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/admin/v3/mutex_stats.upb.h +5 -4
- data/src/core/ext/upb-gen/envoy/admin/v3/mutex_stats.upb_minitable.c +7 -1
- data/src/core/ext/upb-gen/envoy/admin/v3/mutex_stats.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/admin/v3/server_info.upb.h +126 -79
- data/src/core/ext/upb-gen/envoy/admin/v3/server_info.upb_minitable.c +37 -25
- data/src/core/ext/upb-gen/envoy/admin/v3/server_info.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/admin/v3/tap.upb.h +6 -3
- data/src/core/ext/upb-gen/envoy/admin/v3/tap.upb_minitable.c +9 -3
- data/src/core/ext/upb-gen/envoy/admin/v3/tap.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/annotations/deprecation.upb.h +6 -5
- data/src/core/ext/upb-gen/envoy/annotations/deprecation.upb_minitable.c +7 -1
- data/src/core/ext/upb-gen/envoy/annotations/deprecation.upb_minitable.h +2 -1
- data/src/core/ext/upb-gen/envoy/annotations/resource.upb.h +13 -3
- data/src/core/ext/upb-gen/envoy/annotations/resource.upb_minitable.c +12 -5
- data/src/core/ext/upb-gen/envoy/annotations/resource.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb.h +88 -31
- data/src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb_minitable.c +103 -37
- data/src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb_minitable.h +18 -1
- data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb.h +541 -251
- data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb_minitable.c +247 -131
- data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb_minitable.h +26 -1
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb.h +38 -11
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb_minitable.c +28 -14
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb_minitable.h +5 -1
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb.h +496 -138
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb_minitable.c +247 -122
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb_minitable.h +28 -1
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb.h +9 -4
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb_minitable.c +10 -4
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb.h +168 -24
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb_minitable.c +53 -26
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb.h +124 -32
- data/src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb_minitable.c +111 -49
- data/src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb_minitable.h +17 -1
- data/src/core/ext/upb-gen/envoy/config/core/v3/address.upb.h +64 -24
- data/src/core/ext/upb-gen/envoy/config/core/v3/address.upb_minitable.c +55 -21
- data/src/core/ext/upb-gen/envoy/config/core/v3/address.upb_minitable.h +10 -1
- data/src/core/ext/upb-gen/envoy/config/core/v3/backoff.upb.h +8 -3
- data/src/core/ext/upb-gen/envoy/config/core/v3/backoff.upb_minitable.c +10 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/backoff.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/config/core/v3/base.upb.h +752 -69
- data/src/core/ext/upb-gen/envoy/config/core/v3/base.upb_minitable.c +304 -59
- data/src/core/ext/upb-gen/envoy/config/core/v3/base.upb_minitable.h +36 -1
- data/src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb.h +64 -22
- data/src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb_minitable.c +52 -22
- data/src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb_minitable.h +9 -1
- data/src/core/ext/upb-gen/envoy/config/core/v3/event_service_config.upb.h +5 -2
- data/src/core/ext/upb-gen/envoy/config/core/v3/event_service_config.upb_minitable.c +9 -3
- data/src/core/ext/upb-gen/envoy/config/core/v3/event_service_config.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/config/core/v3/extension.upb.h +6 -3
- data/src/core/ext/upb-gen/envoy/config/core/v3/extension.upb_minitable.c +9 -3
- data/src/core/ext/upb-gen/envoy/config/core/v3/extension.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_method_list.upb.h +8 -2
- data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_method_list.upb_minitable.c +13 -3
- data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_method_list.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb.h +198 -59
- data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb_minitable.c +111 -44
- data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb_minitable.h +16 -1
- data/src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb.h +193 -59
- data/src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb_minitable.c +90 -48
- data/src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb_minitable.h +11 -1
- data/src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb.h +10 -2
- data/src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb_minitable.c +10 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb.h +7 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb_minitable.c +9 -3
- data/src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb.h +228 -73
- data/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb_minitable.c +139 -67
- data/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb_minitable.h +18 -1
- data/src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb.h +7 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb_minitable.c +13 -3
- data/src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb.h +12 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb_minitable.c +14 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb.h +13 -7
- data/src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb_minitable.c +13 -3
- data/src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb.h +20 -8
- data/src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb_minitable.c +16 -6
- data/src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/config/core/v3/udp_socket_config.upb.h +8 -3
- data/src/core/ext/upb-gen/envoy/config/core/v3/udp_socket_config.upb_minitable.c +10 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/udp_socket_config.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb.h +39 -8
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb_minitable.c +31 -13
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb_minitable.h +6 -1
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb.h +103 -31
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb_minitable.c +62 -30
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb_minitable.h +9 -1
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb.h +278 -34
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb_minitable.c +78 -24
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb_minitable.h +9 -1
- data/src/core/ext/upb-gen/envoy/config/listener/v3/api_listener.upb.h +5 -2
- data/src/core/ext/upb-gen/envoy/config/listener/v3/api_listener.upb_minitable.c +9 -3
- data/src/core/ext/upb-gen/envoy/config/listener/v3/api_listener.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb.h +139 -44
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb_minitable.c +85 -42
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb_minitable.h +12 -1
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb.h +88 -26
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb_minitable.c +61 -31
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb_minitable.h +9 -1
- data/src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb.h +90 -10
- data/src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb_minitable.c +23 -13
- data/src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/config/listener/v3/udp_listener_config.upb.h +11 -4
- data/src/core/ext/upb-gen/envoy/config/listener/v3/udp_listener_config.upb_minitable.c +15 -5
- data/src/core/ext/upb-gen/envoy/config/listener/v3/udp_listener_config.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb.h +11 -6
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb_minitable.c +10 -4
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb.h +48 -19
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb_minitable.c +52 -18
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb_minitable.h +10 -1
- data/src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb.h +65 -18
- data/src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb_minitable.c +64 -22
- data/src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb_minitable.h +12 -1
- data/src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb.h +156 -35
- data/src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb_minitable.c +95 -47
- data/src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb_minitable.h +13 -1
- data/src/core/ext/upb-gen/envoy/config/route/v3/route.upb.h +58 -10
- data/src/core/ext/upb-gen/envoy/config/route/v3/route.upb_minitable.c +30 -16
- data/src/core/ext/upb-gen/envoy/config/route/v3/route.upb_minitable.h +5 -1
- data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb.h +705 -230
- data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb_minitable.c +454 -217
- data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb_minitable.h +60 -1
- data/src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb.h +17 -7
- data/src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb_minitable.c +20 -6
- data/src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb_minitable.h +5 -1
- data/src/core/ext/upb-gen/envoy/config/tap/v3/common.upb.h +97 -32
- data/src/core/ext/upb-gen/envoy/config/tap/v3/common.upb_minitable.c +86 -36
- data/src/core/ext/upb-gen/envoy/config/tap/v3/common.upb_minitable.h +14 -1
- data/src/core/ext/upb-gen/envoy/config/trace/v3/datadog.upb.h +115 -13
- 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 +5 -1
- data/src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb.h +6 -3
- data/src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb_minitable.c +9 -3
- data/src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/config/trace/v3/http_tracer.upb.h +9 -4
- data/src/core/ext/upb-gen/envoy/config/trace/v3/http_tracer.upb_minitable.c +15 -5
- data/src/core/ext/upb-gen/envoy/config/trace/v3/http_tracer.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb.h +7 -4
- data/src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb_minitable.c +9 -3
- data/src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb.h +19 -12
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb_minitable.c +11 -5
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb.h +17 -5
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb_minitable.c +12 -6
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/config/trace/v3/service.upb.h +5 -2
- data/src/core/ext/upb-gen/envoy/config/trace/v3/service.upb_minitable.c +9 -3
- data/src/core/ext/upb-gen/envoy/config/trace/v3/service.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb.h +14 -7
- data/src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb_minitable.c +16 -6
- data/src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/config/trace/v3/trace.upb.h +2 -1
- 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 +2 -1
- data/src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb.h +16 -7
- data/src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb_minitable.c +17 -7
- data/src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb.h +11 -8
- data/src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb_minitable.c +9 -3
- data/src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb.h +213 -99
- data/src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb_minitable.c +115 -48
- data/src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb_minitable.h +18 -1
- data/src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb.h +2 -1
- data/src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb_minitable.c +7 -1
- data/src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3/fault.upb.h +21 -8
- data/src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3/fault.upb_minitable.c +31 -9
- data/src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3/fault.upb_minitable.h +7 -1
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb.h +39 -19
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb_minitable.c +25 -11
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb_minitable.h +5 -1
- 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 +53 -10
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb_minitable.c +27 -11
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb.h +26 -9
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb_minitable.c +18 -8
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb.h +10 -5
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb_minitable.c +15 -5
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h +324 -131
- data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb_minitable.c +189 -102
- data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb_minitable.h +23 -1
- data/src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb.h +5 -2
- data/src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb_minitable.c +9 -3
- data/src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb.h +20 -7
- 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 +14 -8
- 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 +3 -1
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb.h +28 -11
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb_minitable.c +35 -13
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb_minitable.h +7 -1
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb.h +3 -2
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb_minitable.c +7 -1
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb.h +19 -8
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb_minitable.c +13 -7
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb.h +5 -2
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb_minitable.c +9 -3
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb_minitable.h +3 -1
- 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 +2 -1
- 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 +2 -1
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb.h +167 -28
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb_minitable.c +78 -32
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb_minitable.h +11 -1
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb.h +22 -9
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb_minitable.c +24 -10
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb_minitable.h +5 -1
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb.h +109 -36
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb_minitable.c +67 -37
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb_minitable.h +9 -1
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb.h +11 -3
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb_minitable.c +15 -5
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb.h +55 -17
- data/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb_minitable.c +40 -22
- data/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb_minitable.h +6 -1
- data/src/core/ext/upb-gen/envoy/service/discovery/v3/ads.upb.h +2 -1
- data/src/core/ext/upb-gen/envoy/service/discovery/v3/ads.upb_minitable.c +7 -1
- data/src/core/ext/upb-gen/envoy/service/discovery/v3/ads.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb.h +119 -37
- data/src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb_minitable.c +95 -37
- data/src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb_minitable.h +16 -1
- data/src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb.h +15 -5
- data/src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb_minitable.c +16 -6
- data/src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/service/status/v3/csds.upb.h +62 -21
- data/src/core/ext/upb-gen/envoy/service/status/v3/csds.upb_minitable.c +42 -20
- data/src/core/ext/upb-gen/envoy/service/status/v3/csds.upb_minitable.h +7 -1
- data/src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb.h +7 -4
- data/src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb_minitable.c +9 -3
- data/src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb.h +13 -3
- data/src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb_minitable.c +24 -6
- data/src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb_minitable.h +6 -1
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb.h +6 -3
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb_minitable.c +9 -3
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/http_inputs.upb.h +7 -6
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/http_inputs.upb_minitable.c +23 -1
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/http_inputs.upb_minitable.h +7 -1
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb.h +13 -5
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb_minitable.c +14 -4
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/node.upb.h +10 -2
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/node.upb_minitable.c +10 -4
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/node.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/number.upb.h +6 -3
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/number.upb_minitable.c +9 -3
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/number.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/path.upb.h +5 -2
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/path.upb_minitable.c +9 -3
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/path.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb.h +13 -6
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb_minitable.c +21 -7
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb_minitable.h +5 -1
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/status_code_input.upb.h +2 -1
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/status_code_input.upb_minitable.c +11 -1
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/status_code_input.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/string.upb.h +48 -7
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/string.upb_minitable.c +28 -7
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/string.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/struct.upb.h +11 -3
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/struct.upb_minitable.c +14 -4
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/struct.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb.h +27 -9
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb_minitable.c +29 -11
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb_minitable.h +6 -1
- data/src/core/ext/upb-gen/envoy/type/metadata/v3/metadata.upb.h +21 -7
- data/src/core/ext/upb-gen/envoy/type/metadata/v3/metadata.upb_minitable.c +38 -8
- data/src/core/ext/upb-gen/envoy/type/metadata/v3/metadata.upb_minitable.h +9 -1
- data/src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb.h +27 -14
- data/src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb_minitable.c +31 -9
- data/src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb_minitable.h +7 -1
- data/src/core/ext/upb-gen/envoy/type/v3/hash_policy.upb.h +9 -4
- data/src/core/ext/upb-gen/envoy/type/v3/hash_policy.upb_minitable.c +18 -4
- data/src/core/ext/upb-gen/envoy/type/v3/hash_policy.upb_minitable.h +5 -1
- data/src/core/ext/upb-gen/envoy/type/v3/http.upb.h +2 -1
- 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 +2 -1
- data/src/core/ext/upb-gen/envoy/type/v3/http_status.upb.h +3 -2
- data/src/core/ext/upb-gen/envoy/type/v3/http_status.upb_minitable.c +7 -1
- data/src/core/ext/upb-gen/envoy/type/v3/http_status.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/type/v3/percent.upb.h +5 -4
- data/src/core/ext/upb-gen/envoy/type/v3/percent.upb_minitable.c +11 -1
- data/src/core/ext/upb-gen/envoy/type/v3/percent.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/type/v3/range.upb.h +8 -7
- data/src/core/ext/upb-gen/envoy/type/v3/range.upb_minitable.c +15 -1
- data/src/core/ext/upb-gen/envoy/type/v3/range.upb_minitable.h +5 -1
- data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_strategy.upb.h +11 -6
- data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_strategy.upb_minitable.c +14 -4
- data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_strategy.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_unit.upb.h +2 -1
- 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 +2 -1
- data/src/core/ext/upb-gen/envoy/type/v3/semantic_version.upb.h +5 -4
- data/src/core/ext/upb-gen/envoy/type/v3/semantic_version.upb_minitable.c +7 -1
- data/src/core/ext/upb-gen/envoy/type/v3/semantic_version.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/type/v3/token_bucket.upb.h +9 -4
- data/src/core/ext/upb-gen/envoy/type/v3/token_bucket.upb_minitable.c +10 -4
- data/src/core/ext/upb-gen/envoy/type/v3/token_bucket.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/google/api/annotations.upb.h +12 -2
- data/src/core/ext/upb-gen/google/api/annotations.upb_minitable.c +4 -1
- data/src/core/ext/upb-gen/google/api/annotations.upb_minitable.h +2 -1
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb.h +132 -33
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb_minitable.c +108 -43
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb_minitable.h +15 -1
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb.h +522 -66
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb_minitable.c +191 -57
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb_minitable.h +20 -1
- data/src/core/ext/upb-gen/google/api/http.upb.h +26 -13
- data/src/core/ext/upb-gen/google/api/http.upb_minitable.c +20 -6
- data/src/core/ext/upb-gen/google/api/http.upb_minitable.h +5 -1
- data/src/core/ext/upb-gen/google/api/httpbody.upb.h +9 -3
- data/src/core/ext/upb-gen/google/api/httpbody.upb_minitable.c +9 -3
- data/src/core/ext/upb-gen/google/api/httpbody.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/google/protobuf/any.upb.h +4 -3
- data/src/core/ext/upb-gen/google/protobuf/any.upb_minitable.c +7 -1
- data/src/core/ext/upb-gen/google/protobuf/any.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/google/protobuf/descriptor.upb.h +579 -178
- data/src/core/ext/upb-gen/google/protobuf/descriptor.upb_minitable.c +292 -131
- data/src/core/ext/upb-gen/google/protobuf/descriptor.upb_minitable.h +36 -1
- data/src/core/ext/upb-gen/google/protobuf/duration.upb.h +4 -3
- data/src/core/ext/upb-gen/google/protobuf/duration.upb_minitable.c +7 -1
- data/src/core/ext/upb-gen/google/protobuf/duration.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/google/protobuf/empty.upb.h +2 -1
- data/src/core/ext/upb-gen/google/protobuf/empty.upb_minitable.c +7 -1
- data/src/core/ext/upb-gen/google/protobuf/empty.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/google/protobuf/struct.upb.h +29 -7
- data/src/core/ext/upb-gen/google/protobuf/struct.upb_minitable.c +28 -10
- data/src/core/ext/upb-gen/google/protobuf/struct.upb_minitable.h +6 -1
- data/src/core/ext/upb-gen/google/protobuf/timestamp.upb.h +4 -3
- data/src/core/ext/upb-gen/google/protobuf/timestamp.upb_minitable.c +7 -1
- data/src/core/ext/upb-gen/google/protobuf/timestamp.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/google/protobuf/wrappers.upb.h +11 -10
- data/src/core/ext/upb-gen/google/protobuf/wrappers.upb_minitable.c +39 -1
- data/src/core/ext/upb-gen/google/protobuf/wrappers.upb_minitable.h +11 -1
- data/src/core/ext/upb-gen/google/rpc/status.upb.h +9 -3
- data/src/core/ext/upb-gen/google/rpc/status.upb_minitable.c +9 -3
- data/src/core/ext/upb-gen/google/rpc/status.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb.h +18 -11
- data/src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb_minitable.c +23 -5
- data/src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb_minitable.h +6 -1
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb.h +16 -7
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb_minitable.c +14 -4
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb.h +95 -36
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb_minitable.c +79 -29
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb_minitable.h +14 -1
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb.h +10 -5
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb_minitable.c +14 -4
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/src/proto/grpc/health/v1/health.upb.h +4 -3
- data/src/core/ext/upb-gen/src/proto/grpc/health/v1/health.upb_minitable.c +11 -1
- data/src/core/ext/upb-gen/src/proto/grpc/health/v1/health.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb.h +44 -19
- data/src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb_minitable.c +53 -15
- data/src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb_minitable.h +11 -1
- data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb.h +12 -5
- data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb_minitable.c +17 -3
- data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb_minitable.h +5 -1
- data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb.h +69 -16
- data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb_minitable.c +56 -18
- data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb_minitable.h +11 -1
- data/src/core/ext/upb-gen/udpa/annotations/migrate.upb.h +56 -10
- data/src/core/ext/upb-gen/udpa/annotations/migrate.upb_minitable.c +26 -7
- data/src/core/ext/upb-gen/udpa/annotations/migrate.upb_minitable.h +5 -1
- data/src/core/ext/upb-gen/udpa/annotations/security.upb.h +14 -4
- data/src/core/ext/upb-gen/udpa/annotations/security.upb_minitable.c +12 -5
- data/src/core/ext/upb-gen/udpa/annotations/security.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/udpa/annotations/sensitive.upb.h +3 -2
- data/src/core/ext/upb-gen/udpa/annotations/sensitive.upb_minitable.c +4 -1
- data/src/core/ext/upb-gen/udpa/annotations/sensitive.upb_minitable.h +2 -1
- data/src/core/ext/upb-gen/udpa/annotations/status.upb.h +14 -4
- data/src/core/ext/upb-gen/udpa/annotations/status.upb_minitable.c +12 -5
- data/src/core/ext/upb-gen/udpa/annotations/status.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/udpa/annotations/versioning.upb.h +13 -3
- data/src/core/ext/upb-gen/udpa/annotations/versioning.upb_minitable.c +12 -5
- data/src/core/ext/upb-gen/udpa/annotations/versioning.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/validate/validate.upb.h +259 -167
- data/src/core/ext/upb-gen/validate/validate.upb_minitable.c +178 -80
- data/src/core/ext/upb-gen/validate/validate.upb_minitable.h +25 -1
- data/src/core/ext/upb-gen/xds/annotations/v3/migrate.upb.h +56 -10
- data/src/core/ext/upb-gen/xds/annotations/v3/migrate.upb_minitable.c +26 -7
- data/src/core/ext/upb-gen/xds/annotations/v3/migrate.upb_minitable.h +5 -1
- data/src/core/ext/upb-gen/xds/annotations/v3/security.upb.h +14 -4
- data/src/core/ext/upb-gen/xds/annotations/v3/security.upb_minitable.c +12 -5
- data/src/core/ext/upb-gen/xds/annotations/v3/security.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/xds/annotations/v3/sensitive.upb.h +3 -2
- data/src/core/ext/upb-gen/xds/annotations/v3/sensitive.upb_minitable.c +4 -1
- data/src/core/ext/upb-gen/xds/annotations/v3/sensitive.upb_minitable.h +2 -1
- data/src/core/ext/upb-gen/xds/annotations/v3/status.upb.h +37 -9
- data/src/core/ext/upb-gen/xds/annotations/v3/status.upb_minitable.c +29 -8
- data/src/core/ext/upb-gen/xds/annotations/v3/status.upb_minitable.h +6 -1
- data/src/core/ext/upb-gen/xds/annotations/v3/versioning.upb.h +13 -3
- data/src/core/ext/upb-gen/xds/annotations/v3/versioning.upb_minitable.c +12 -5
- data/src/core/ext/upb-gen/xds/annotations/v3/versioning.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/xds/core/v3/authority.upb.h +3 -2
- data/src/core/ext/upb-gen/xds/core/v3/authority.upb_minitable.c +7 -1
- data/src/core/ext/upb-gen/xds/core/v3/authority.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/xds/core/v3/cidr.upb.h +6 -3
- data/src/core/ext/upb-gen/xds/core/v3/cidr.upb_minitable.c +9 -3
- data/src/core/ext/upb-gen/xds/core/v3/cidr.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/xds/core/v3/collection_entry.upb.h +13 -6
- data/src/core/ext/upb-gen/xds/core/v3/collection_entry.upb_minitable.c +16 -6
- data/src/core/ext/upb-gen/xds/core/v3/collection_entry.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/xds/core/v3/context_params.upb.h +8 -1
- data/src/core/ext/upb-gen/xds/core/v3/context_params.upb_minitable.c +13 -3
- data/src/core/ext/upb-gen/xds/core/v3/context_params.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/xds/core/v3/extension.upb.h +6 -3
- data/src/core/ext/upb-gen/xds/core/v3/extension.upb_minitable.c +9 -3
- data/src/core/ext/upb-gen/xds/core/v3/extension.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/xds/core/v3/resource.upb.h +9 -4
- data/src/core/ext/upb-gen/xds/core/v3/resource.upb_minitable.c +10 -4
- data/src/core/ext/upb-gen/xds/core/v3/resource.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/xds/core/v3/resource_locator.upb.h +18 -8
- data/src/core/ext/upb-gen/xds/core/v3/resource_locator.upb_minitable.c +16 -6
- data/src/core/ext/upb-gen/xds/core/v3/resource_locator.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/xds/core/v3/resource_name.upb.h +8 -5
- data/src/core/ext/upb-gen/xds/core/v3/resource_name.upb_minitable.c +9 -3
- data/src/core/ext/upb-gen/xds/core/v3/resource_name.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb.h +26 -7
- data/src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb_minitable.c +23 -5
- data/src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb_minitable.h +6 -1
- data/src/core/ext/upb-gen/xds/service/orca/v3/orca.upb.h +5 -2
- data/src/core/ext/upb-gen/xds/service/orca/v3/orca.upb_minitable.c +9 -3
- data/src/core/ext/upb-gen/xds/service/orca/v3/orca.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb.h +6 -3
- data/src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb_minitable.c +9 -3
- data/src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/xds/type/matcher/v3/domain.upb.h +10 -2
- data/src/core/ext/upb-gen/xds/type/matcher/v3/domain.upb_minitable.c +15 -5
- data/src/core/ext/upb-gen/xds/type/matcher/v3/domain.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/xds/type/matcher/v3/http_inputs.upb.h +2 -1
- data/src/core/ext/upb-gen/xds/type/matcher/v3/http_inputs.upb_minitable.c +7 -1
- data/src/core/ext/upb-gen/xds/type/matcher/v3/http_inputs.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb.h +16 -3
- data/src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb_minitable.c +16 -6
- data/src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb.h +78 -19
- data/src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb_minitable.c +75 -33
- data/src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb_minitable.h +12 -1
- data/src/core/ext/upb-gen/xds/type/matcher/v3/range.upb.h +41 -4
- data/src/core/ext/upb-gen/xds/type/matcher/v3/range.upb_minitable.c +42 -16
- data/src/core/ext/upb-gen/xds/type/matcher/v3/range.upb_minitable.h +8 -1
- data/src/core/ext/upb-gen/xds/type/matcher/v3/regex.upb.h +6 -3
- data/src/core/ext/upb-gen/xds/type/matcher/v3/regex.upb_minitable.c +13 -3
- data/src/core/ext/upb-gen/xds/type/matcher/v3/regex.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/xds/type/matcher/v3/string.upb.h +15 -7
- data/src/core/ext/upb-gen/xds/type/matcher/v3/string.upb_minitable.c +15 -5
- data/src/core/ext/upb-gen/xds/type/matcher/v3/string.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/xds/type/v3/cel.upb.h +14 -5
- data/src/core/ext/upb-gen/xds/type/v3/cel.upb_minitable.c +17 -7
- data/src/core/ext/upb-gen/xds/type/v3/cel.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/xds/type/v3/range.upb.h +8 -7
- data/src/core/ext/upb-gen/xds/type/v3/range.upb_minitable.c +15 -1
- data/src/core/ext/upb-gen/xds/type/v3/range.upb_minitable.h +5 -1
- data/src/core/ext/upb-gen/xds/type/v3/typed_struct.upb.h +6 -3
- data/src/core/ext/upb-gen/xds/type/v3/typed_struct.upb_minitable.c +9 -3
- data/src/core/ext/upb-gen/xds/type/v3/typed_struct.upb_minitable.h +3 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- data/src/core/ext/upbdefs-gen/envoy/annotations/deprecation.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/annotations/deprecation.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/annotations/resource.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/annotations/resource.upbdefs.h +2 -1
- 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 +2 -1
- 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 +7 -1
- 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 +2 -1
- 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 +7 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +27 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +7 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +7 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +7 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- data/src/core/ext/upbdefs-gen/google/api/annotations.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/google/api/annotations.upbdefs.h +2 -1
- 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 +2 -1
- 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 +12 -1
- data/src/core/ext/upbdefs-gen/google/api/http.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/google/api/http.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/google/api/httpbody.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/google/api/httpbody.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/google/protobuf/any.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/google/protobuf/any.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/google/protobuf/descriptor.upbdefs.c +283 -257
- data/src/core/ext/upbdefs-gen/google/protobuf/descriptor.upbdefs.h +7 -1
- data/src/core/ext/upbdefs-gen/google/protobuf/duration.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/google/protobuf/duration.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/google/protobuf/empty.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/google/protobuf/empty.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/google/protobuf/struct.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/google/protobuf/struct.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/google/protobuf/timestamp.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/google/protobuf/timestamp.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/google/protobuf/wrappers.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/google/protobuf/wrappers.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/google/rpc/status.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/google/rpc/status.upbdefs.h +2 -1
- 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 +2 -1
- 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 +2 -1
- data/src/core/ext/upbdefs-gen/udpa/annotations/migrate.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/udpa/annotations/migrate.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/udpa/annotations/security.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/udpa/annotations/security.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/udpa/annotations/sensitive.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/udpa/annotations/sensitive.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/udpa/annotations/status.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/udpa/annotations/status.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/udpa/annotations/versioning.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/udpa/annotations/versioning.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/validate/validate.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/validate/validate.upbdefs.h +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +2 -1
- 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 +13 -12
- data/src/core/handshaker/handshaker.cc +127 -159
- data/src/core/handshaker/handshaker.h +58 -52
- data/src/core/handshaker/handshaker_registry.cc +1 -2
- data/src/core/handshaker/handshaker_registry.h +2 -2
- data/src/core/handshaker/http_connect/http_connect_handshaker.cc +113 -159
- data/src/core/handshaker/http_connect/http_proxy_mapper.cc +30 -37
- data/src/core/handshaker/http_connect/http_proxy_mapper.h +2 -3
- 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 +2 -3
- data/src/core/handshaker/proxy_mapper_registry.cc +2 -2
- data/src/core/handshaker/proxy_mapper_registry.h +2 -3
- data/src/core/handshaker/security/secure_endpoint.cc +95 -82
- data/src/core/handshaker/security/secure_endpoint.h +6 -7
- data/src/core/handshaker/security/security_handshaker.cc +166 -220
- data/src/core/handshaker/security/security_handshaker.h +2 -3
- data/src/core/handshaker/tcp_connect/tcp_connect_handshaker.cc +47 -61
- data/src/core/lib/address_utils/parse_address.cc +30 -43
- data/src/core/lib/address_utils/parse_address.h +2 -4
- data/src/core/lib/address_utils/sockaddr_utils.cc +9 -12
- data/src/core/lib/address_utils/sockaddr_utils.h +1 -3
- data/src/core/lib/channel/call_finalization.h +2 -2
- data/src/core/lib/channel/channel_args.cc +17 -23
- data/src/core/lib/channel/channel_args.h +34 -20
- data/src/core/lib/channel/channel_args_preconditioning.cc +2 -2
- data/src/core/lib/channel/channel_args_preconditioning.h +3 -3
- data/src/core/lib/channel/channel_stack.cc +13 -76
- data/src/core/lib/channel/channel_stack.h +26 -61
- data/src/core/lib/channel/channel_stack_builder.cc +2 -2
- data/src/core/lib/channel/channel_stack_builder.h +3 -9
- data/src/core/lib/channel/channel_stack_builder_impl.cc +5 -150
- data/src/core/lib/channel/channel_stack_builder_impl.h +14 -4
- data/src/core/lib/channel/connected_channel.cc +46 -688
- data/src/core/lib/channel/promise_based_filter.cc +180 -250
- data/src/core/lib/channel/promise_based_filter.h +173 -509
- data/src/core/lib/channel/status_util.cc +2 -4
- data/src/core/lib/channel/status_util.h +3 -3
- data/src/core/lib/compression/compression.cc +7 -9
- data/src/core/lib/compression/compression_internal.cc +5 -8
- data/src/core/lib/compression/compression_internal.h +3 -5
- data/src/core/lib/compression/message_compress.cc +9 -12
- data/src/core/lib/config/config_vars.cc +15 -18
- data/src/core/lib/config/config_vars.h +10 -13
- data/src/core/lib/config/config_vars_non_generated.cc +2 -2
- data/src/core/lib/config/core_configuration.cc +2 -3
- data/src/core/lib/config/core_configuration.h +2 -4
- data/src/core/lib/config/load_config.cc +2 -4
- data/src/core/lib/config/load_config.h +1 -2
- data/src/core/lib/debug/trace.cc +47 -65
- 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 +151 -75
- data/src/core/lib/event_engine/ares_resolver.h +13 -20
- data/src/core/lib/event_engine/cf_engine/cf_engine.cc +13 -16
- data/src/core/lib/event_engine/cf_engine/cf_engine.h +1 -1
- data/src/core/lib/event_engine/cf_engine/cfstream_endpoint.cc +44 -31
- 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 +19 -26
- data/src/core/lib/event_engine/cf_engine/dns_service_resolver.h +3 -5
- data/src/core/lib/event_engine/channel_args_endpoint_config.cc +3 -4
- data/src/core/lib/event_engine/channel_args_endpoint_config.h +2 -3
- data/src/core/lib/event_engine/common_closures.h +3 -3
- data/src/core/lib/event_engine/default_event_engine.cc +12 -14
- data/src/core/lib/event_engine/default_event_engine.h +3 -3
- data/src/core/lib/event_engine/default_event_engine_factory.cc +2 -2
- data/src/core/lib/event_engine/default_event_engine_factory.h +2 -2
- data/src/core/lib/event_engine/event_engine.cc +35 -4
- data/src/core/lib/event_engine/event_engine_context.h +4 -2
- data/src/core/lib/event_engine/extensions/can_track_errors.h +2 -2
- data/src/core/lib/event_engine/extensions/chaotic_good_extension.h +1 -2
- data/src/core/lib/event_engine/extensions/supports_fd.h +27 -3
- data/src/core/lib/event_engine/extensions/tcp_trace.h +42 -0
- data/src/core/lib/event_engine/forkable.cc +6 -8
- data/src/core/lib/event_engine/forkable.h +2 -14
- data/src/core/lib/event_engine/grpc_polled_fd.h +3 -4
- data/src/core/lib/event_engine/handle_containers.h +2 -3
- data/src/core/lib/event_engine/memory_allocator_factory.h +3 -4
- data/src/core/lib/event_engine/poller.h +2 -2
- data/src/core/lib/event_engine/posix_engine/ev_epoll1_linux.cc +21 -23
- data/src/core/lib/event_engine/posix_engine/ev_epoll1_linux.h +8 -9
- data/src/core/lib/event_engine/posix_engine/ev_poll_posix.cc +13 -17
- data/src/core/lib/event_engine/posix_engine/ev_poll_posix.h +4 -5
- data/src/core/lib/event_engine/posix_engine/event_poller.h +3 -4
- data/src/core/lib/event_engine/posix_engine/event_poller_posix_default.cc +3 -4
- data/src/core/lib/event_engine/posix_engine/event_poller_posix_default.h +2 -2
- data/src/core/lib/event_engine/posix_engine/grpc_polled_fd_posix.h +4 -6
- data/src/core/lib/event_engine/posix_engine/internal_errqueue.cc +4 -4
- data/src/core/lib/event_engine/posix_engine/internal_errqueue.h +1 -2
- data/src/core/lib/event_engine/posix_engine/lockfree_event.cc +5 -7
- data/src/core/lib/event_engine/posix_engine/lockfree_event.h +2 -3
- 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 +2 -3
- data/src/core/lib/event_engine/posix_engine/posix_endpoint.cc +73 -79
- data/src/core/lib/event_engine/posix_engine/posix_endpoint.h +11 -12
- data/src/core/lib/event_engine/posix_engine/posix_engine.cc +74 -55
- data/src/core/lib/event_engine/posix_engine/posix_engine.h +18 -14
- data/src/core/lib/event_engine/posix_engine/posix_engine_closure.h +3 -3
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener.cc +23 -27
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener.h +14 -13
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.cc +22 -28
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.h +1 -2
- data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.cc +44 -38
- 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 -5
- data/src/core/lib/event_engine/posix_engine/timer.h +5 -7
- data/src/core/lib/event_engine/posix_engine/timer_heap.cc +1 -2
- data/src/core/lib/event_engine/posix_engine/timer_heap.h +2 -2
- data/src/core/lib/event_engine/posix_engine/timer_manager.cc +12 -21
- data/src/core/lib/event_engine/posix_engine/timer_manager.h +5 -7
- data/src/core/lib/event_engine/posix_engine/traced_buffer_list.cc +6 -8
- data/src/core/lib/event_engine/posix_engine/traced_buffer_list.h +3 -5
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_eventfd.cc +5 -6
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_eventfd.h +2 -3
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_pipe.cc +4 -5
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_pipe.h +2 -3
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_posix.h +2 -2
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_posix_default.cc +2 -3
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_posix_default.h +2 -2
- data/src/core/lib/event_engine/query_extensions.h +2 -2
- data/src/core/lib/event_engine/ref_counted_dns_resolver_interface.h +3 -5
- data/src/core/lib/event_engine/resolved_address.cc +5 -5
- data/src/core/lib/event_engine/shim.cc +1 -1
- data/src/core/lib/event_engine/slice.cc +3 -6
- data/src/core/lib/event_engine/slice_buffer.cc +1 -2
- data/src/core/lib/event_engine/tcp_socket_utils.cc +9 -12
- data/src/core/lib/event_engine/tcp_socket_utils.h +3 -3
- data/src/core/lib/event_engine/thread_local.h +1 -1
- data/src/core/lib/event_engine/thread_pool/thread_count.cc +5 -7
- data/src/core/lib/event_engine/thread_pool/thread_count.h +6 -7
- data/src/core/lib/event_engine/thread_pool/thread_pool.h +2 -4
- data/src/core/lib/event_engine/thread_pool/thread_pool_factory.cc +2 -3
- data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.cc +39 -46
- data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.h +10 -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 +9 -8
- data/src/core/lib/event_engine/time_util.cc +2 -2
- data/src/core/lib/event_engine/time_util.h +1 -2
- data/src/core/lib/event_engine/utils.cc +19 -5
- data/src/core/lib/event_engine/utils.h +10 -4
- data/src/core/lib/event_engine/windows/grpc_polled_fd_windows.cc +125 -100
- data/src/core/lib/event_engine/windows/grpc_polled_fd_windows.h +4 -6
- data/src/core/lib/event_engine/windows/iocp.cc +14 -14
- 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 +42 -33
- data/src/core/lib/event_engine/windows/win_socket.h +8 -10
- data/src/core/lib/event_engine/windows/windows_endpoint.cc +26 -27
- data/src/core/lib/event_engine/windows/windows_engine.cc +242 -134
- data/src/core/lib/event_engine/windows/windows_engine.h +143 -33
- data/src/core/lib/event_engine/windows/windows_listener.cc +22 -37
- data/src/core/lib/event_engine/windows/windows_listener.h +4 -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 +3 -5
- data/src/core/lib/event_engine/work_queue/work_queue.h +2 -3
- data/src/core/lib/experiments/config.cc +54 -27
- data/src/core/lib/experiments/config.h +56 -3
- data/src/core/lib/experiments/experiments.cc +159 -293
- data/src/core/lib/experiments/experiments.h +84 -124
- data/src/core/lib/iomgr/buffer_list.cc +5 -5
- data/src/core/lib/iomgr/buffer_list.h +2 -3
- data/src/core/lib/iomgr/call_combiner.cc +39 -66
- data/src/core/lib/iomgr/call_combiner.h +12 -16
- 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 +12 -19
- data/src/core/lib/iomgr/combiner.cc +33 -48
- data/src/core/lib/iomgr/combiner.h +1 -4
- data/src/core/lib/iomgr/endpoint.cc +0 -6
- data/src/core/lib/iomgr/endpoint.h +3 -4
- data/src/core/lib/iomgr/endpoint_cfstream.cc +40 -73
- data/src/core/lib/iomgr/endpoint_pair_posix.cc +3 -6
- data/src/core/lib/iomgr/endpoint_pair_windows.cc +6 -8
- data/src/core/lib/iomgr/error.cc +22 -32
- data/src/core/lib/iomgr/error.h +7 -10
- data/src/core/lib/iomgr/error_cfstream.cc +1 -3
- data/src/core/lib/iomgr/ev_apple.cc +15 -23
- data/src/core/lib/iomgr/ev_epoll1_linux.cc +67 -113
- data/src/core/lib/iomgr/ev_poll_posix.cc +53 -53
- data/src/core/lib/iomgr/ev_posix.cc +66 -57
- data/src/core/lib/iomgr/ev_posix.h +9 -12
- data/src/core/lib/iomgr/event_engine_shims/closure.cc +10 -13
- data/src/core/lib/iomgr/event_engine_shims/closure.h +1 -2
- data/src/core/lib/iomgr/event_engine_shims/endpoint.cc +33 -51
- data/src/core/lib/iomgr/event_engine_shims/endpoint.h +2 -2
- data/src/core/lib/iomgr/event_engine_shims/tcp_client.cc +9 -13
- data/src/core/lib/iomgr/exec_ctx.cc +10 -14
- data/src/core/lib/iomgr/exec_ctx.h +33 -25
- data/src/core/lib/iomgr/executor.cc +55 -53
- 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 +4 -4
- data/src/core/lib/iomgr/iocp_windows.cc +8 -10
- data/src/core/lib/iomgr/iomgr.cc +17 -23
- data/src/core/lib/iomgr/iomgr.h +1 -2
- data/src/core/lib/iomgr/iomgr_internal.cc +1 -2
- data/src/core/lib/iomgr/iomgr_internal.h +1 -2
- data/src/core/lib/iomgr/iomgr_windows.cc +1 -4
- data/src/core/lib/iomgr/lockfree_event.cc +10 -20
- data/src/core/lib/iomgr/polling_entity.cc +13 -7
- data/src/core/lib/iomgr/pollset.h +0 -2
- data/src/core/lib/iomgr/pollset_set_windows.cc +1 -2
- data/src/core/lib/iomgr/pollset_windows.cc +2 -6
- data/src/core/lib/iomgr/port.h +2 -2
- data/src/core/lib/iomgr/resolve_address.cc +3 -5
- data/src/core/lib/iomgr/resolve_address.h +4 -6
- data/src/core/lib/iomgr/resolve_address_impl.h +1 -2
- data/src/core/lib/iomgr/resolve_address_posix.cc +12 -21
- data/src/core/lib/iomgr/resolve_address_posix.h +2 -2
- data/src/core/lib/iomgr/resolve_address_windows.cc +9 -12
- data/src/core/lib/iomgr/resolve_address_windows.h +2 -2
- data/src/core/lib/iomgr/resolved_address.h +1 -2
- data/src/core/lib/iomgr/sockaddr_utils_posix.cc +3 -6
- data/src/core/lib/iomgr/socket_factory_posix.cc +1 -1
- data/src/core/lib/iomgr/socket_mutator.cc +2 -3
- data/src/core/lib/iomgr/socket_mutator.h +1 -2
- data/src/core/lib/iomgr/socket_utils.h +1 -2
- data/src/core/lib/iomgr/socket_utils_common_posix.cc +43 -52
- data/src/core/lib/iomgr/socket_utils_linux.cc +1 -3
- data/src/core/lib/iomgr/socket_utils_posix.cc +4 -7
- data/src/core/lib/iomgr/socket_utils_windows.cc +1 -3
- data/src/core/lib/iomgr/socket_windows.cc +7 -11
- data/src/core/lib/iomgr/socket_windows.h +1 -2
- data/src/core/lib/iomgr/tcp_client_cfstream.cc +12 -20
- data/src/core/lib/iomgr/tcp_client_posix.cc +17 -30
- data/src/core/lib/iomgr/tcp_client_windows.cc +5 -10
- data/src/core/lib/iomgr/tcp_posix.cc +85 -155
- data/src/core/lib/iomgr/tcp_posix.h +0 -2
- data/src/core/lib/iomgr/tcp_server.h +2 -2
- data/src/core/lib/iomgr/tcp_server_posix.cc +40 -58
- data/src/core/lib/iomgr/tcp_server_utils_posix.h +2 -3
- data/src/core/lib/iomgr/tcp_server_utils_posix_common.cc +7 -11
- data/src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc +9 -11
- data/src/core/lib/iomgr/tcp_server_windows.cc +17 -25
- data/src/core/lib/iomgr/tcp_windows.cc +32 -62
- data/src/core/lib/iomgr/timer.h +2 -2
- data/src/core/lib/iomgr/timer_generic.cc +71 -104
- data/src/core/lib/iomgr/timer_heap.cc +2 -3
- data/src/core/lib/iomgr/timer_manager.cc +25 -43
- data/src/core/lib/iomgr/timer_manager.h +1 -2
- data/src/core/lib/iomgr/unix_sockets_posix.cc +4 -6
- data/src/core/lib/iomgr/unix_sockets_posix.h +3 -4
- data/src/core/lib/iomgr/unix_sockets_posix_noop.cc +0 -4
- data/src/core/lib/iomgr/vsock.cc +3 -6
- data/src/core/lib/iomgr/vsock.h +3 -4
- data/src/core/lib/iomgr/wakeup_fd_eventfd.cc +2 -4
- data/src/core/lib/iomgr/wakeup_fd_pipe.cc +5 -6
- data/src/core/lib/promise/activity.cc +2 -4
- data/src/core/lib/promise/activity.h +48 -17
- data/src/core/lib/promise/all_ok.h +17 -11
- data/src/core/lib/promise/arena_promise.h +2 -4
- data/src/core/lib/promise/cancel_callback.h +34 -6
- data/src/core/lib/promise/context.h +19 -10
- data/src/core/lib/promise/detail/basic_seq.h +2 -3
- data/src/core/lib/promise/detail/join_state.h +556 -762
- data/src/core/lib/promise/detail/promise_factory.h +46 -30
- data/src/core/lib/promise/detail/promise_like.h +29 -14
- data/src/core/lib/promise/detail/seq_state.h +1314 -1977
- data/src/core/lib/promise/detail/status.h +36 -15
- data/src/core/lib/promise/exec_ctx_wakeup_scheduler.h +2 -3
- data/src/core/lib/promise/for_each.h +34 -37
- data/src/core/lib/promise/if.h +23 -19
- data/src/core/lib/promise/interceptor_list.h +21 -35
- data/src/core/lib/promise/latch.h +19 -34
- data/src/core/lib/promise/loop.h +16 -12
- data/src/core/lib/promise/map.h +26 -9
- data/src/core/lib/promise/observable.h +181 -0
- data/src/core/lib/promise/party.cc +297 -147
- data/src/core/lib/promise/party.h +139 -361
- data/src/core/lib/promise/pipe.h +21 -44
- data/src/core/lib/promise/poll.h +102 -38
- data/src/core/lib/promise/prioritized_race.h +2 -2
- data/src/core/lib/promise/promise.h +14 -8
- data/src/core/lib/promise/race.h +12 -7
- data/src/core/lib/promise/seq.h +55 -39
- data/src/core/lib/promise/sleep.cc +3 -3
- data/src/core/lib/promise/sleep.h +4 -5
- data/src/core/lib/promise/status_flag.h +148 -49
- data/src/core/lib/promise/try_join.h +37 -21
- data/src/core/lib/promise/try_seq.h +86 -49
- data/src/core/lib/resource_quota/api.cc +4 -6
- data/src/core/lib/resource_quota/api.h +1 -2
- data/src/core/lib/resource_quota/arena.cc +64 -86
- data/src/core/lib/resource_quota/arena.h +143 -215
- data/src/core/lib/resource_quota/connection_quota.cc +2 -3
- data/src/core/lib/resource_quota/connection_quota.h +5 -6
- data/src/core/lib/resource_quota/memory_quota.cc +28 -40
- data/src/core/lib/resource_quota/memory_quota.h +20 -18
- data/src/core/lib/resource_quota/periodic_update.cc +4 -4
- data/src/core/lib/resource_quota/periodic_update.h +2 -4
- data/src/core/lib/resource_quota/resource_quota.h +8 -9
- data/src/core/lib/resource_quota/thread_quota.cc +2 -3
- data/src/core/lib/resource_quota/thread_quota.h +5 -6
- data/src/core/lib/security/authorization/audit_logging.cc +5 -7
- data/src/core/lib/security/authorization/audit_logging.h +5 -6
- data/src/core/lib/security/authorization/authorization_engine.h +3 -3
- data/src/core/lib/security/authorization/authorization_policy_provider.h +4 -5
- data/src/core/lib/security/authorization/authorization_policy_provider_vtable.cc +2 -2
- data/src/core/lib/security/authorization/evaluate_args.cc +10 -14
- data/src/core/lib/security/authorization/evaluate_args.h +3 -4
- data/src/core/lib/security/authorization/grpc_authorization_engine.cc +2 -4
- data/src/core/lib/security/authorization/grpc_authorization_engine.h +2 -3
- data/src/core/lib/security/authorization/grpc_server_authz_filter.cc +22 -30
- data/src/core/lib/security/authorization/grpc_server_authz_filter.h +5 -3
- data/src/core/lib/security/authorization/matchers.cc +5 -7
- data/src/core/lib/security/authorization/matchers.h +2 -4
- data/src/core/lib/security/authorization/rbac_policy.cc +2 -2
- data/src/core/lib/security/authorization/rbac_policy.h +3 -5
- data/src/core/lib/security/authorization/stdout_logger.cc +4 -5
- data/src/core/lib/security/authorization/stdout_logger.h +4 -4
- data/src/core/lib/security/certificate_provider/certificate_provider_factory.h +8 -9
- data/src/core/lib/security/certificate_provider/certificate_provider_registry.cc +4 -5
- data/src/core/lib/security/certificate_provider/certificate_provider_registry.h +2 -3
- data/src/core/lib/security/context/security_context.cc +48 -48
- data/src/core/lib/security/context/security_context.h +39 -18
- data/src/core/lib/security/credentials/alts/alts_credentials.cc +5 -5
- data/src/core/lib/security/credentials/alts/alts_credentials.h +9 -5
- data/src/core/lib/security/credentials/alts/check_gcp_environment.cc +4 -4
- 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 +4 -5
- data/src/core/lib/security/credentials/alts/grpc_alts_credentials_options.cc +3 -3
- data/src/core/lib/security/credentials/call_creds_util.cc +8 -7
- data/src/core/lib/security/credentials/call_creds_util.h +2 -2
- data/src/core/lib/security/credentials/channel_creds_registry.h +7 -8
- data/src/core/lib/security/credentials/channel_creds_registry_init.cc +14 -13
- data/src/core/lib/security/credentials/composite/composite_credentials.cc +10 -14
- data/src/core/lib/security/credentials/composite/composite_credentials.h +11 -10
- data/src/core/lib/security/credentials/credentials.cc +18 -19
- data/src/core/lib/security/credentials/credentials.h +12 -14
- data/src/core/lib/security/credentials/external/aws_external_account_credentials.cc +335 -339
- data/src/core/lib/security/credentials/external/aws_external_account_credentials.h +60 -48
- data/src/core/lib/security/credentials/external/aws_request_signer.cc +4 -5
- data/src/core/lib/security/credentials/external/aws_request_signer.h +3 -3
- data/src/core/lib/security/credentials/external/external_account_credentials.cc +408 -374
- data/src/core/lib/security/credentials/external/external_account_credentials.h +128 -60
- data/src/core/lib/security/credentials/external/file_external_account_credentials.cc +90 -52
- data/src/core/lib/security/credentials/external/file_external_account_credentials.h +32 -11
- data/src/core/lib/security/credentials/external/url_external_account_credentials.cc +102 -129
- data/src/core/lib/security/credentials/external/url_external_account_credentials.h +22 -24
- data/src/core/lib/security/credentials/fake/fake_credentials.cc +2 -4
- data/src/core/lib/security/credentials/fake/fake_credentials.h +8 -7
- 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 +6 -7
- data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +55 -73
- data/src/core/lib/security/credentials/google_default/google_default_credentials.h +8 -6
- data/src/core/lib/security/credentials/iam/iam_credentials.cc +5 -10
- data/src/core/lib/security/credentials/iam/iam_credentials.h +8 -7
- data/src/core/lib/security/credentials/insecure/insecure_credentials.cc +2 -2
- data/src/core/lib/security/credentials/insecure/insecure_credentials.h +2 -2
- data/src/core/lib/security/credentials/jwt/json_token.cc +25 -29
- data/src/core/lib/security/credentials/jwt/json_token.h +2 -3
- data/src/core/lib/security/credentials/jwt/jwt_credentials.cc +22 -29
- data/src/core/lib/security/credentials/jwt/jwt_credentials.h +10 -10
- data/src/core/lib/security/credentials/jwt/jwt_verifier.cc +67 -74
- data/src/core/lib/security/credentials/jwt/jwt_verifier.h +3 -4
- data/src/core/lib/security/credentials/local/local_credentials.cc +2 -2
- data/src/core/lib/security/credentials/local/local_credentials.h +3 -3
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +195 -296
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.h +50 -73
- data/src/core/lib/security/credentials/plugin/plugin_credentials.cc +20 -33
- data/src/core/lib/security/credentials/plugin/plugin_credentials.h +12 -14
- data/src/core/lib/security/credentials/ssl/ssl_credentials.cc +35 -47
- data/src/core/lib/security/credentials/ssl/ssl_credentials.h +5 -8
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.cc +3 -4
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.h +4 -5
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_match.cc +1 -3
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.cc +102 -42
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.h +14 -13
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.cc +6 -10
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.h +9 -11
- data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc +10 -13
- data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h +1 -1
- data/src/core/lib/security/credentials/tls/grpc_tls_crl_provider.cc +6 -10
- data/src/core/lib/security/credentials/tls/grpc_tls_crl_provider.h +8 -10
- data/src/core/lib/security/credentials/tls/tls_credentials.cc +20 -23
- data/src/core/lib/security/credentials/tls/tls_credentials.h +5 -3
- data/src/core/lib/security/credentials/tls/tls_utils.cc +5 -6
- data/src/core/lib/security/credentials/tls/tls_utils.h +3 -3
- data/src/core/lib/security/credentials/token_fetcher/token_fetcher_credentials.cc +298 -0
- data/src/core/lib/security/credentials/token_fetcher/token_fetcher_credentials.h +175 -0
- data/src/core/lib/security/credentials/xds/xds_credentials.cc +15 -13
- data/src/core/lib/security/credentials/xds/xds_credentials.h +7 -9
- data/src/core/lib/security/security_connector/alts/alts_security_connector.cc +22 -27
- data/src/core/lib/security/security_connector/alts/alts_security_connector.h +1 -1
- data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +24 -24
- data/src/core/lib/security/security_connector/fake/fake_security_connector.h +1 -1
- data/src/core/lib/security/security_connector/insecure/insecure_security_connector.cc +4 -7
- data/src/core/lib/security/security_connector/insecure/insecure_security_connector.h +5 -6
- data/src/core/lib/security/security_connector/load_system_roots_supported.cc +9 -11
- data/src/core/lib/security/security_connector/load_system_roots_windows.cc +4 -6
- data/src/core/lib/security/security_connector/local/local_security_connector.cc +25 -25
- data/src/core/lib/security/security_connector/local/local_security_connector.h +1 -1
- data/src/core/lib/security/security_connector/security_connector.cc +6 -11
- data/src/core/lib/security/security_connector/security_connector.h +8 -11
- data/src/core/lib/security/security_connector/ssl/ssl_security_connector.cc +23 -27
- data/src/core/lib/security/security_connector/ssl/ssl_security_connector.h +2 -3
- data/src/core/lib/security/security_connector/ssl_utils.cc +33 -34
- data/src/core/lib/security/security_connector/ssl_utils.h +6 -8
- data/src/core/lib/security/security_connector/tls/tls_security_connector.cc +37 -50
- data/src/core/lib/security/security_connector/tls/tls_security_connector.h +7 -8
- data/src/core/lib/security/transport/auth_filters.h +7 -3
- data/src/core/lib/security/transport/client_auth_filter.cc +16 -25
- data/src/core/lib/security/transport/server_auth_filter.cc +20 -31
- data/src/core/lib/security/util/json_util.cc +4 -5
- data/src/core/lib/security/util/json_util.h +1 -1
- data/src/core/lib/slice/percent_encoding.cc +2 -5
- data/src/core/lib/slice/slice.cc +4 -7
- data/src/core/lib/slice/slice.h +6 -9
- data/src/core/lib/slice/slice_buffer.cc +4 -7
- data/src/core/lib/slice/slice_buffer.h +3 -4
- data/src/core/lib/slice/slice_internal.h +3 -6
- data/src/core/lib/slice/slice_refcount.h +8 -15
- data/src/core/lib/slice/slice_string_helpers.cc +1 -1
- data/src/core/lib/slice/slice_string_helpers.h +1 -2
- data/src/core/lib/surface/byte_buffer.cc +1 -2
- data/src/core/lib/surface/byte_buffer_reader.cc +3 -6
- data/src/core/lib/surface/call.cc +161 -3826
- data/src/core/lib/surface/call.h +63 -157
- data/src/core/lib/surface/call_details.cc +4 -3
- data/src/core/lib/surface/call_log_batch.cc +8 -11
- data/src/core/lib/surface/call_test_only.h +1 -2
- data/src/core/lib/surface/call_utils.cc +231 -0
- data/src/core/lib/surface/call_utils.h +482 -0
- data/src/core/lib/surface/channel.cc +41 -40
- data/src/core/lib/surface/channel.h +21 -19
- data/src/core/lib/surface/channel_create.cc +27 -12
- data/src/core/lib/surface/channel_create.h +5 -5
- data/src/core/lib/surface/channel_init.cc +269 -266
- data/src/core/lib/surface/channel_init.h +172 -118
- data/src/core/lib/surface/client_call.cc +427 -0
- data/src/core/lib/surface/client_call.h +179 -0
- data/src/core/lib/surface/completion_queue.cc +110 -106
- data/src/core/lib/surface/completion_queue.h +3 -12
- data/src/core/lib/surface/completion_queue_factory.cc +1 -3
- data/src/core/lib/surface/event_string.cc +2 -2
- data/src/core/lib/surface/event_string.h +2 -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 +55 -18
- data/src/core/lib/surface/init.h +5 -0
- data/src/core/lib/surface/lame_client.cc +11 -14
- data/src/core/lib/surface/lame_client.h +6 -5
- data/src/core/lib/surface/legacy_channel.cc +60 -46
- data/src/core/lib/surface/legacy_channel.h +15 -25
- data/src/core/lib/surface/metadata_array.cc +5 -5
- data/src/core/lib/surface/server_call.cc +221 -0
- data/src/core/lib/surface/server_call.h +168 -0
- data/src/core/lib/surface/validate_metadata.cc +3 -4
- data/src/core/lib/surface/validate_metadata.h +2 -5
- data/src/core/lib/surface/version.cc +2 -2
- data/src/core/lib/transport/bdp_estimator.cc +11 -19
- data/src/core/lib/transport/bdp_estimator.h +10 -16
- data/src/core/lib/transport/call_arena_allocator.cc +4 -18
- data/src/core/lib/transport/call_arena_allocator.h +30 -12
- data/src/core/lib/transport/call_destination.h +76 -0
- data/src/core/lib/transport/call_filters.cc +61 -405
- data/src/core/lib/transport/call_filters.h +802 -752
- data/src/core/lib/transport/call_final_info.cc +2 -2
- data/src/core/lib/transport/call_final_info.h +2 -2
- data/src/core/lib/transport/call_spine.cc +98 -73
- data/src/core/lib/transport/call_spine.h +183 -380
- 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 +37 -45
- data/src/core/lib/transport/connectivity_state.h +5 -8
- data/src/core/lib/transport/error_utils.cc +3 -4
- data/src/core/lib/transport/error_utils.h +4 -5
- 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 +2 -2
- data/src/core/lib/transport/message.h +5 -0
- data/src/core/lib/transport/metadata.cc +27 -3
- data/src/core/lib/transport/metadata.h +37 -2
- data/src/core/lib/transport/metadata_batch.cc +1 -3
- data/src/core/lib/transport/metadata_batch.h +64 -12
- data/src/core/lib/transport/metadata_compression_traits.h +1 -2
- data/src/core/lib/transport/metadata_info.h +1 -1
- data/src/core/lib/transport/parsed_metadata.h +3 -5
- data/src/core/lib/transport/simple_slice_based_metadata.h +1 -2
- data/src/core/lib/transport/status_conversion.h +1 -1
- data/src/core/lib/transport/timeout_encoding.cc +3 -4
- data/src/core/lib/transport/timeout_encoding.h +2 -4
- data/src/core/lib/transport/transport.cc +7 -12
- data/src/core/lib/transport/transport.h +59 -56
- data/src/core/lib/transport/transport_op_string.cc +4 -6
- data/src/core/load_balancing/address_filtering.cc +2 -4
- data/src/core/load_balancing/address_filtering.h +4 -5
- data/src/core/load_balancing/backend_metric_data.h +2 -2
- data/src/core/load_balancing/backend_metric_parser.cc +1 -2
- data/src/core/load_balancing/backend_metric_parser.h +1 -3
- data/src/core/load_balancing/child_policy_handler.cc +36 -40
- data/src/core/load_balancing/child_policy_handler.h +4 -5
- data/src/core/load_balancing/delegating_helper.h +6 -7
- data/src/core/load_balancing/endpoint_list.cc +11 -13
- data/src/core/load_balancing/endpoint_list.h +7 -9
- data/src/core/load_balancing/grpclb/client_load_reporting_filter.cc +12 -6
- data/src/core/load_balancing/grpclb/client_load_reporting_filter.h +5 -2
- data/src/core/load_balancing/grpclb/grpclb.cc +153 -187
- data/src/core/load_balancing/grpclb/grpclb_balancer_addresses.cc +2 -3
- data/src/core/load_balancing/grpclb/grpclb_client_stats.cc +2 -3
- data/src/core/load_balancing/grpclb/grpclb_client_stats.h +5 -7
- data/src/core/load_balancing/grpclb/load_balancer_api.cc +7 -10
- data/src/core/load_balancing/grpclb/load_balancer_api.h +4 -6
- data/src/core/load_balancing/health_check_client.cc +60 -80
- data/src/core/load_balancing/health_check_client.h +3 -3
- data/src/core/load_balancing/health_check_client_internal.h +8 -9
- data/src/core/load_balancing/lb_policy.cc +5 -8
- data/src/core/load_balancing/lb_policy.h +72 -38
- data/src/core/load_balancing/lb_policy_factory.h +5 -6
- data/src/core/load_balancing/lb_policy_registry.cc +5 -7
- data/src/core/load_balancing/lb_policy_registry.h +5 -6
- data/src/core/load_balancing/oob_backend_metric.cc +19 -25
- data/src/core/load_balancing/oob_backend_metric.h +3 -3
- data/src/core/load_balancing/oob_backend_metric_internal.h +8 -9
- data/src/core/load_balancing/outlier_detection/outlier_detection.cc +139 -184
- data/src/core/load_balancing/outlier_detection/outlier_detection.h +6 -8
- data/src/core/load_balancing/pick_first/pick_first.cc +219 -303
- data/src/core/load_balancing/priority/priority.cc +93 -137
- data/src/core/load_balancing/ring_hash/ring_hash.cc +52 -76
- data/src/core/load_balancing/ring_hash/ring_hash.h +6 -7
- data/src/core/load_balancing/rls/rls.cc +340 -345
- data/src/core/load_balancing/round_robin/round_robin.cc +56 -83
- data/src/core/load_balancing/subchannel_interface.h +17 -6
- data/src/core/load_balancing/weighted_round_robin/static_stride_scheduler.cc +2 -3
- data/src/core/load_balancing/weighted_round_robin/static_stride_scheduler.h +1 -2
- data/src/core/load_balancing/weighted_round_robin/weighted_round_robin.cc +138 -155
- data/src/core/load_balancing/weighted_target/weighted_target.cc +71 -107
- data/src/core/load_balancing/xds/cds.cc +53 -69
- data/src/core/load_balancing/xds/xds_cluster_impl.cc +178 -155
- data/src/core/load_balancing/xds/xds_cluster_manager.cc +52 -84
- data/src/core/load_balancing/xds/xds_override_host.cc +117 -179
- data/src/core/load_balancing/xds/xds_override_host.h +6 -7
- data/src/core/load_balancing/xds/xds_wrr_locality.cc +38 -48
- data/src/core/plugin_registry/grpc_plugin_registry.cc +5 -7
- data/src/core/plugin_registry/grpc_plugin_registry_extra.cc +5 -0
- data/src/core/resolver/dns/c_ares/dns_resolver_ares.cc +85 -60
- 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 +4 -6
- data/src/core/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc +2 -6
- data/src/core/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc +118 -100
- data/src/core/resolver/dns/c_ares/grpc_ares_wrapper.cc +166 -151
- data/src/core/resolver/dns/c_ares/grpc_ares_wrapper.h +4 -18
- data/src/core/resolver/dns/c_ares/grpc_ares_wrapper_windows.cc +1 -1
- data/src/core/resolver/dns/dns_resolver_plugin.cc +9 -10
- data/src/core/resolver/dns/event_engine/event_engine_client_channel_resolver.cc +52 -59
- data/src/core/resolver/dns/event_engine/event_engine_client_channel_resolver.h +3 -4
- data/src/core/resolver/dns/event_engine/service_config_helper.cc +8 -10
- data/src/core/resolver/dns/event_engine/service_config_helper.h +2 -2
- data/src/core/resolver/dns/native/dns_resolver.cc +21 -30
- data/src/core/resolver/endpoint_addresses.cc +2 -5
- data/src/core/resolver/endpoint_addresses.h +5 -3
- data/src/core/resolver/fake/fake_resolver.cc +7 -9
- data/src/core/resolver/fake/fake_resolver.h +8 -9
- data/src/core/resolver/google_c2p/google_c2p_resolver.cc +23 -25
- data/src/core/resolver/polling_resolver.cc +39 -55
- data/src/core/resolver/polling_resolver.h +8 -9
- data/src/core/resolver/resolver.cc +2 -6
- data/src/core/resolver/resolver.h +4 -10
- data/src/core/resolver/resolver_factory.h +4 -5
- data/src/core/resolver/resolver_registry.cc +8 -10
- data/src/core/resolver/resolver_registry.h +4 -5
- data/src/core/resolver/sockaddr/sockaddr_resolver.cc +7 -8
- 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 +82 -171
- data/src/core/resolver/xds/xds_dependency_manager.h +6 -71
- data/src/core/resolver/xds/xds_resolver.cc +123 -104
- data/src/core/resolver/xds/xds_resolver_attributes.h +7 -4
- data/src/core/server/server.cc +382 -484
- data/src/core/server/server.h +48 -32
- data/src/core/server/server_call_tracer_filter.cc +20 -19
- data/src/core/server/server_config_selector.h +6 -7
- data/src/core/server/server_config_selector_filter.cc +17 -12
- data/src/core/server/server_interface.h +2 -0
- data/src/core/server/xds_channel_stack_modifier.cc +4 -4
- data/src/core/server/xds_channel_stack_modifier.h +6 -7
- data/src/core/server/xds_server_config_fetcher.cc +63 -73
- data/src/core/service_config/service_config.h +4 -6
- data/src/core/service_config/service_config_call_data.h +21 -20
- data/src/core/service_config/service_config_channel_arg_filter.cc +16 -12
- data/src/core/service_config/service_config_impl.cc +8 -10
- data/src/core/service_config/service_config_impl.h +5 -8
- data/src/core/service_config/service_config_parser.cc +4 -8
- data/src/core/service_config/service_config_parser.h +3 -5
- data/src/core/{lib/channel → telemetry}/call_tracer.cc +56 -34
- data/src/core/{lib/channel → telemetry}/call_tracer.h +51 -14
- data/src/core/{lib/debug → telemetry}/histogram_view.cc +1 -1
- data/src/core/{lib/debug → telemetry}/histogram_view.h +4 -5
- data/src/core/telemetry/metrics.cc +177 -0
- data/src/core/telemetry/metrics.h +565 -0
- data/src/core/{lib/debug → telemetry}/stats.cc +2 -3
- data/src/core/{lib/debug → telemetry}/stats.h +7 -9
- data/src/core/{lib/debug → telemetry}/stats_data.cc +88 -3
- data/src/core/{lib/debug → telemetry}/stats_data.h +73 -8
- data/src/core/{lib/channel → telemetry}/tcp_tracer.h +4 -5
- data/src/core/tsi/alts/crypt/aes_gcm.cc +5 -8
- data/src/core/tsi/alts/crypt/gsec.cc +2 -3
- data/src/core/tsi/alts/crypt/gsec.h +3 -4
- data/src/core/tsi/alts/frame_protector/alts_counter.cc +1 -2
- data/src/core/tsi/alts/frame_protector/alts_counter.h +2 -3
- data/src/core/tsi/alts/frame_protector/alts_crypter.cc +1 -2
- data/src/core/tsi/alts/frame_protector/alts_crypter.h +2 -3
- data/src/core/tsi/alts/frame_protector/alts_frame_protector.cc +16 -18
- data/src/core/tsi/alts/frame_protector/alts_frame_protector.h +1 -2
- data/src/core/tsi/alts/frame_protector/frame_handler.cc +11 -12
- data/src/core/tsi/alts/frame_protector/frame_handler.h +1 -2
- data/src/core/tsi/alts/handshaker/alts_handshaker_client.cc +41 -46
- data/src/core/tsi/alts/handshaker/alts_shared_resource.cc +2 -4
- data/src/core/tsi/alts/handshaker/alts_shared_resource.h +1 -1
- data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc +55 -57
- data/src/core/tsi/alts/handshaker/alts_tsi_utils.cc +3 -3
- data/src/core/tsi/alts/handshaker/transport_security_common_api.cc +17 -24
- data/src/core/tsi/alts/handshaker/transport_security_common_api.h +1 -2
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.cc +14 -17
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.h +1 -2
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.cc +11 -12
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.h +1 -2
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.cc +9 -11
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.cc +3 -5
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.h +1 -2
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc +9 -13
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.h +1 -2
- data/src/core/tsi/fake_transport_security.cc +27 -32
- data/src/core/tsi/local_transport_security.cc +9 -10
- data/src/core/tsi/ssl/key_logging/ssl_key_logging.cc +9 -12
- data/src/core/tsi/ssl/key_logging/ssl_key_logging.h +8 -10
- data/src/core/tsi/ssl/session_cache/ssl_session.h +4 -5
- data/src/core/tsi/ssl/session_cache/ssl_session_cache.cc +7 -9
- data/src/core/tsi/ssl/session_cache/ssl_session_cache.h +7 -8
- data/src/core/tsi/ssl/session_cache/ssl_session_openssl.cc +2 -4
- data/src/core/tsi/ssl_transport_security.cc +126 -111
- data/src/core/tsi/ssl_transport_security.h +4 -6
- data/src/core/tsi/ssl_transport_security_utils.cc +77 -24
- data/src/core/tsi/ssl_transport_security_utils.h +13 -4
- data/src/core/tsi/ssl_types.h +1 -2
- data/src/core/tsi/transport_security.cc +2 -7
- data/src/core/tsi/transport_security.h +1 -4
- data/src/core/tsi/transport_security_interface.h +1 -6
- data/src/core/{lib/gpr → util}/alloc.cc +2 -6
- data/src/core/{lib/gpr → util}/alloc.h +3 -3
- data/src/core/{lib/gpr → util}/atm.cc +2 -3
- data/src/core/{lib/gprpp → util}/atomic_utils.h +5 -5
- data/src/core/{lib/avl → util}/avl.h +7 -8
- data/src/core/{lib/backoff → util}/backoff.cc +10 -11
- data/src/core/{lib/backoff → util}/backoff.h +8 -11
- data/src/core/{lib/gprpp → util}/bitset.h +6 -7
- data/src/core/{lib/gprpp → util}/chunked_vector.h +6 -8
- data/src/core/{lib/gprpp → util}/construct_destruct.h +8 -7
- data/src/core/{lib/gprpp → util}/cpp_impl_of.h +3 -3
- data/src/core/{lib/gprpp → util}/crash.cc +4 -6
- data/src/core/{lib/gprpp → util}/crash.h +5 -6
- data/src/core/{lib/gprpp → util}/debug_location.h +11 -4
- data/src/core/{lib/gprpp → util}/directory_reader.h +5 -5
- data/src/core/{lib/gprpp → util}/down_cast.h +7 -8
- data/src/core/{lib/gprpp → util}/dual_ref_counted.h +54 -43
- data/src/core/util/dump_args.cc +54 -0
- data/src/core/util/dump_args.h +122 -0
- data/src/core/{lib/gprpp → util}/env.h +5 -5
- data/src/core/{lib/debug → util}/event_log.cc +3 -4
- data/src/core/{lib/debug → util}/event_log.h +7 -9
- data/src/core/{lib/gprpp → util}/examine_stack.cc +1 -1
- data/src/core/{lib/gprpp → util}/examine_stack.h +5 -5
- data/src/core/{lib/gprpp → util}/fork.cc +4 -4
- data/src/core/{lib/gprpp → util}/fork.h +5 -5
- data/src/core/{ext/gcp/metadata_query.cc → util/gcp_metadata_query.cc} +31 -36
- data/src/core/{ext/gcp/metadata_query.h → util/gcp_metadata_query.h} +13 -14
- data/src/core/{lib/iomgr → util}/gethostname.h +3 -3
- data/src/core/{lib/iomgr → util}/gethostname_fallback.cc +1 -1
- data/src/core/{lib/iomgr → util}/gethostname_host_name_max.cc +2 -3
- data/src/core/{lib/iomgr → util}/gethostname_sysconf.cc +2 -3
- data/src/core/util/glob.cc +70 -0
- data/src/core/util/glob.h +29 -0
- data/src/core/{lib/gpr/time.cc → util/gpr_time.cc} +3 -6
- data/src/core/{lib/iomgr → util}/grpc_if_nametoindex.h +4 -5
- data/src/core/{lib/iomgr → util}/grpc_if_nametoindex_posix.cc +4 -6
- data/src/core/{lib/iomgr → util}/grpc_if_nametoindex_unsupported.cc +5 -8
- data/src/core/{lib/gprpp → util}/host_port.cc +2 -4
- data/src/core/{lib/gprpp → util}/host_port.h +5 -5
- data/src/core/{lib/http → util/http_client}/format_request.cc +4 -6
- data/src/core/{lib/http → util/http_client}/format_request.h +4 -4
- data/src/core/{lib/http → util/http_client}/httpcli.cc +43 -62
- data/src/core/{lib/http → util/http_client}/httpcli.h +32 -30
- data/src/core/{lib/http → util/http_client}/httpcli_security_connector.cc +17 -20
- data/src/core/{lib/http → util/http_client}/httpcli_ssl_credentials.h +4 -4
- data/src/core/{lib/http → util/http_client}/parser.cc +7 -11
- data/src/core/{lib/http → util/http_client}/parser.h +5 -8
- data/src/core/{lib/gprpp → util}/if_list.h +3 -3
- data/src/core/{lib/gpr → util}/iphone/cpu.cc +1 -2
- data/src/core/{lib → util}/json/json.h +3 -3
- data/src/core/{lib → util}/json/json_args.h +5 -5
- data/src/core/{lib → util}/json/json_channel_args.h +6 -7
- data/src/core/{lib → util}/json/json_object_loader.cc +4 -4
- data/src/core/{lib → util}/json/json_object_loader.h +11 -12
- data/src/core/{lib → util}/json/json_reader.cc +4 -7
- data/src/core/{lib → util}/json/json_reader.h +6 -7
- data/src/core/{lib → util}/json/json_util.cc +5 -5
- data/src/core/{lib → util}/json/json_util.h +7 -8
- data/src/core/{lib → util}/json/json_writer.cc +2 -4
- data/src/core/{lib → util}/json/json_writer.h +6 -6
- data/src/core/util/latent_see.cc +142 -0
- data/src/core/util/latent_see.h +327 -0
- data/src/core/{lib/gpr → util}/linux/cpu.cc +11 -12
- data/src/core/{lib/gprpp → util}/linux/env.cc +3 -3
- data/src/core/{lib/gprpp → util}/load_file.cc +4 -6
- data/src/core/{lib/gprpp → util}/load_file.h +5 -6
- data/src/core/util/log.cc +127 -0
- data/src/core/util/lru_cache.h +122 -0
- data/src/core/{lib/gprpp → util}/manual_constructor.h +5 -6
- data/src/core/{lib/gprpp → util}/match.h +6 -7
- data/src/core/{lib/matchers → util}/matchers.cc +10 -3
- data/src/core/{lib/matchers → util}/matchers.h +9 -5
- data/src/core/{lib/gprpp → util}/memory.h +6 -6
- data/src/core/{lib/gprpp → util}/mpscq.cc +1 -1
- data/src/core/{lib/gprpp → util}/mpscq.h +6 -8
- data/src/core/{lib/gpr → util}/msys/tmpfile.cc +5 -7
- data/src/core/{lib/gprpp → util}/no_destruct.h +6 -6
- data/src/core/{lib/gprpp → util}/notification.h +6 -7
- data/src/core/{lib/gprpp → util}/orphanable.h +9 -9
- data/src/core/{lib/gprpp → util}/overload.h +5 -5
- data/src/core/{lib/gprpp → util}/packed_table.h +5 -5
- data/src/core/{lib/gprpp → util}/per_cpu.cc +2 -2
- data/src/core/{lib/gprpp → util}/per_cpu.h +5 -6
- data/src/core/{lib/gpr → util}/posix/cpu.cc +6 -7
- data/src/core/{lib/gprpp → util}/posix/directory_reader.cc +4 -4
- data/src/core/{lib/gprpp → util}/posix/env.cc +1 -1
- data/src/core/{lib/gprpp → util}/posix/stat.cc +7 -9
- data/src/core/{lib/gpr → util}/posix/string.cc +2 -3
- data/src/core/{lib/gpr → util}/posix/sync.cc +3 -6
- data/src/core/{lib/gprpp → util}/posix/thd.cc +16 -20
- data/src/core/{lib/gpr → util}/posix/time.cc +5 -7
- data/src/core/{lib/gpr → util}/posix/tmpfile.cc +11 -13
- data/src/core/{lib/backoff → util}/random_early_detection.cc +3 -3
- data/src/core/{lib/backoff → util}/random_early_detection.h +4 -5
- data/src/core/{lib/gprpp → util}/ref_counted.h +39 -32
- data/src/core/{lib/gprpp → util}/ref_counted_ptr.h +6 -8
- data/src/core/{lib/gprpp → util}/ref_counted_string.cc +3 -4
- data/src/core/{lib/gprpp → util}/ref_counted_string.h +6 -8
- data/src/core/util/ring_buffer.h +123 -0
- data/src/core/{lib/gprpp → util}/single_set_ptr.h +10 -9
- data/src/core/{lib/gprpp → util}/sorted_pack.h +6 -6
- data/src/core/{lib/gpr → util}/spinlock.h +5 -7
- data/src/core/{lib/gprpp → util}/stat.h +4 -5
- data/src/core/{lib/gprpp → util}/status_helper.cc +16 -38
- data/src/core/{lib/gprpp → util}/status_helper.h +8 -38
- data/src/core/{lib/gprpp → util}/strerror.cc +2 -3
- data/src/core/{lib/gprpp → util}/strerror.h +5 -5
- data/src/core/{lib/gpr → util}/string.cc +13 -16
- data/src/core/{lib/gpr → util}/string.h +4 -6
- data/src/core/{lib/gpr → util}/sync.cc +3 -6
- data/src/core/{lib/gprpp → util}/sync.h +7 -8
- data/src/core/{lib/gpr → util}/sync_abseil.cc +5 -8
- data/src/core/{lib/gprpp → util}/table.h +56 -22
- data/src/core/{lib/gprpp → util}/tchar.cc +1 -1
- data/src/core/{lib/gprpp → util}/tchar.h +3 -3
- data/src/core/{lib/gprpp → util}/thd.h +5 -7
- data/src/core/{lib/gprpp → util}/time.cc +8 -10
- data/src/core/{lib/gprpp → util}/time.h +28 -27
- data/src/core/{lib/gprpp → util}/time_averaged_stats.cc +1 -1
- data/src/core/{lib/gprpp → util}/time_averaged_stats.h +3 -3
- data/src/core/{lib/gpr → util}/time_precise.cc +7 -7
- data/src/core/{lib/gpr → util}/time_precise.h +3 -4
- data/src/core/{lib/gprpp → util}/time_util.cc +3 -5
- data/src/core/{lib/gprpp → util}/time_util.h +5 -5
- data/src/core/{lib/gpr → util}/tmpfile.h +3 -4
- data/src/core/{lib/gprpp → util}/type_list.h +3 -3
- data/src/core/util/unique_ptr_with_bitset.h +86 -0
- data/src/core/{lib/gprpp → util}/unique_type_name.h +34 -15
- data/src/core/{xds/grpc → util}/upb_utils.h +3 -5
- data/src/core/{lib/uri/uri_parser.cc → util/uri.cc} +2 -4
- data/src/core/{lib/uri/uri_parser.h → util/uri.h} +5 -5
- data/src/core/{lib/gpr → util}/useful.h +23 -52
- data/src/core/{lib/gprpp → util}/uuid_v4.cc +3 -3
- data/src/core/{lib/gprpp → util}/uuid_v4.h +4 -5
- data/src/core/{lib/gprpp → util}/validation_errors.cc +12 -4
- data/src/core/{lib/gprpp → util}/validation_errors.h +15 -5
- data/src/core/{lib/gpr → util}/windows/cpu.cc +1 -2
- data/src/core/{lib/gprpp → util}/windows/directory_reader.cc +1 -3
- data/src/core/{lib/gprpp → util}/windows/env.cc +2 -2
- data/src/core/{lib/gprpp → util}/windows/stat.cc +6 -8
- data/src/core/{lib/gpr → util}/windows/string.cc +3 -4
- data/src/core/{lib/gpr → util}/windows/string_util.cc +6 -8
- data/src/core/{lib/gpr → util}/windows/sync.cc +2 -4
- data/src/core/{lib/gprpp → util}/windows/thd.cc +8 -10
- data/src/core/{lib/gpr → util}/windows/time.cc +3 -6
- data/src/core/{lib/gpr → util}/windows/tmpfile.cc +5 -7
- data/src/core/{lib/gprpp → util}/work_serializer.cc +75 -95
- data/src/core/{lib/gprpp → util}/work_serializer.h +8 -9
- data/src/core/{lib/gprpp → util}/xxhash_inline.h +3 -3
- data/src/core/xds/grpc/certificate_provider_store.cc +4 -5
- data/src/core/xds/grpc/certificate_provider_store.h +12 -13
- data/src/core/xds/grpc/file_watcher_certificate_provider_factory.cc +6 -7
- data/src/core/xds/grpc/file_watcher_certificate_provider_factory.h +9 -10
- data/src/core/xds/grpc/xds_audit_logger_registry.cc +5 -5
- data/src/core/xds/grpc/xds_audit_logger_registry.h +4 -5
- data/src/core/xds/grpc/xds_bootstrap_grpc.cc +8 -166
- data/src/core/xds/grpc/xds_bootstrap_grpc.h +9 -39
- data/src/core/xds/grpc/xds_certificate_provider.cc +4 -5
- data/src/core/xds/grpc/xds_certificate_provider.h +12 -11
- data/src/core/xds/grpc/xds_client_grpc.cc +98 -76
- data/src/core/xds/grpc/xds_client_grpc.h +16 -10
- data/src/core/xds/grpc/xds_cluster.cc +12 -737
- data/src/core/xds/grpc/xds_cluster.h +36 -45
- 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 +6 -9
- data/src/core/xds/grpc/xds_cluster_specifier_plugin.h +5 -6
- data/src/core/xds/grpc/xds_common_types.cc +33 -438
- data/src/core/xds/grpc/xds_common_types.h +10 -28
- 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 +0 -420
- data/src/core/xds/grpc/xds_endpoint.h +7 -29
- 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 +0 -2
- data/src/core/xds/grpc/xds_health_status.h +0 -3
- data/src/core/xds/grpc/xds_http_fault_filter.cc +28 -16
- data/src/core/xds/grpc/xds_http_fault_filter.h +11 -7
- data/src/core/xds/grpc/{xds_http_filters.h → xds_http_filter.h} +21 -69
- data/src/core/xds/grpc/{xds_http_filters.cc → xds_http_filter_registry.cc} +11 -5
- 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 +64 -49
- data/src/core/xds/grpc/xds_http_rbac_filter.h +11 -7
- data/src/core/xds/grpc/xds_http_stateful_session_filter.cc +24 -11
- data/src/core/xds/grpc/xds_http_stateful_session_filter.h +11 -7
- data/src/core/xds/grpc/xds_lb_policy_registry.cc +22 -27
- data/src/core/xds/grpc/xds_lb_policy_registry.h +4 -5
- data/src/core/xds/grpc/xds_listener.cc +19 -986
- data/src/core/xds/grpc/xds_listener.h +2 -35
- 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 +2 -919
- data/src/core/xds/grpc/xds_route_config.h +8 -41
- 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 +60 -27
- data/src/core/xds/grpc/xds_routing.h +12 -6
- 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 +98 -55
- data/src/core/xds/grpc/xds_transport_grpc.h +34 -23
- 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 +38 -256
- data/src/core/xds/xds_client/xds_api.h +13 -36
- 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 +3 -4
- data/src/core/xds/xds_client/xds_bootstrap.h +3 -3
- data/src/core/xds/xds_client/xds_client.cc +175 -793
- data/src/core/xds/xds_client/xds_client.h +33 -89
- data/src/core/xds/xds_client/xds_locality.h +102 -0
- data/src/core/xds/xds_client/xds_metrics.h +2 -2
- data/src/core/xds/xds_client/xds_resource_type.h +4 -5
- data/src/core/xds/xds_client/xds_resource_type_impl.h +3 -4
- data/src/core/xds/xds_client/xds_transport.h +29 -14
- data/src/ruby/bin/math_pb.rb +1 -22
- data/src/ruby/ext/grpc/extconf.rb +1 -1
- 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 -33
- data/src/ruby/ext/grpc/rb_channel.c +42 -37
- data/src/ruby/ext/grpc/rb_channel_args.c +4 -4
- data/src/ruby/ext/grpc/rb_channel_credentials.c +5 -6
- 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 +16 -16
- data/src/ruby/ext/grpc/rb_grpc.h +7 -0
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +6 -14
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +9 -21
- data/src/ruby/ext/grpc/rb_server.c +47 -28
- data/src/ruby/ext/grpc/rb_server_credentials.c +3 -3
- data/src/ruby/ext/grpc/rb_server_credentials.h +1 -2
- data/src/ruby/ext/grpc/rb_xds_channel_credentials.c +5 -6
- data/src/ruby/ext/grpc/rb_xds_channel_credentials.h +1 -2
- data/src/ruby/ext/grpc/rb_xds_server_credentials.c +4 -4
- data/src/ruby/ext/grpc/rb_xds_server_credentials.h +1 -2
- data/src/ruby/lib/grpc/generic/active_call.rb +8 -5
- 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/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/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 +3 -3
- data/third_party/abseil-cpp/absl/log/globals.h +28 -15
- data/third_party/abseil-cpp/absl/log/internal/check_op.cc +20 -0
- data/third_party/abseil-cpp/absl/log/internal/check_op.h +63 -21
- data/third_party/abseil-cpp/absl/log/internal/conditions.h +2 -2
- data/third_party/abseil-cpp/absl/log/internal/log_impl.h +23 -23
- data/third_party/abseil-cpp/absl/log/internal/log_message.cc +104 -47
- data/third_party/abseil-cpp/absl/log/internal/log_message.h +23 -4
- data/third_party/abseil-cpp/absl/log/internal/nullstream.h +1 -10
- data/third_party/abseil-cpp/absl/log/internal/strip.h +36 -0
- data/third_party/abseil-cpp/absl/log/log.h +5 -1
- data/third_party/abseil-cpp/absl/log/log_sink.h +11 -4
- data/third_party/abseil-cpp/absl/log/vlog_is_on.h +3 -3
- 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/base64/base64.c +4 -0
- data/third_party/boringssl-with-bazel/src/crypto/{fipsmodule/rand/fork_detect.h → bcm_support.h} +51 -6
- data/third_party/boringssl-with-bazel/src/crypto/bio/bio.c +12 -12
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/cbs.c +3 -5
- 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/internal.h +43 -0
- 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/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 +10 -3
- data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa_asn1.c +0 -2
- 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/fipsmodule/aes/{aes.c → aes.c.inc} +21 -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/{div.c → div.c.inc} +146 -179
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{exponentiation.c → exponentiation.c.inc} +45 -1
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/internal.h +33 -23
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{random.c → random.c.inc} +6 -8
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{sqrt.c → sqrt.c.inc} +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/{e_aes.c → e_aes.c.inc} +9 -8
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{ec_key.c → ec_key.c.inc} +11 -7
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{p256-nistz.c → p256-nistz.c.inc} +104 -7
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-nistz.h +65 -8
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/{ecdsa.c → ecdsa.c.inc} +52 -107
- 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 → rand.c.inc} +26 -40
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/{padding.c → padding.c.inc} +2 -5
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/{rsa_impl.c → rsa_impl.c.inc} +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/{fips.c → fips.c.inc} +6 -4
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/{self_check.c → self_check.c.inc} +9 -35
- 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 → service_indicator.c.inc} +2 -2
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/internal.h +9 -4
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/{sha512.c → sha512.c.inc} +6 -0
- data/third_party/boringssl-with-bazel/src/crypto/hpke/hpke.c +293 -2
- data/third_party/boringssl-with-bazel/src/crypto/internal.h +98 -24
- data/third_party/boringssl-with-bazel/src/crypto/kyber/kyber.c +1 -0
- data/third_party/boringssl-with-bazel/src/crypto/mem.c +7 -3
- 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 +4 -5
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pk8.c +2 -3
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pkey.c +1 -1
- 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/{fipsmodule/rand → rand_extra}/fork_detect.c +26 -28
- 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/{fipsmodule/rand → rand_extra}/urandom.c +19 -19
- 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/x509/internal.h +0 -4
- 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 +0 -10
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vfy.c +7 -17
- data/third_party/boringssl-with-bazel/src/include/openssl/asn1.h +14 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/bio.h +8 -6
- data/third_party/boringssl-with-bazel/src/include/openssl/bn.h +14 -9
- data/third_party/boringssl-with-bazel/src/include/openssl/crypto.h +9 -11
- 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 +10 -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/pem.h +3 -4
- 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 +48 -12
- data/third_party/boringssl-with-bazel/src/include/openssl/ssl.h +118 -38
- data/third_party/boringssl-with-bazel/src/include/openssl/x509.h +0 -23
- 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 +296 -61
- data/third_party/boringssl-with-bazel/src/ssl/extensions.cc +24 -16
- data/third_party/boringssl-with-bazel/src/ssl/handshake_client.cc +71 -39
- data/third_party/boringssl-with-bazel/src/ssl/handshake_server.cc +16 -4
- data/third_party/boringssl-with-bazel/src/ssl/internal.h +125 -38
- data/third_party/boringssl-with-bazel/src/ssl/s3_both.cc +44 -16
- 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_key_share.cc +98 -3
- data/third_party/boringssl-with-bazel/src/ssl/ssl_lib.cc +69 -29
- data/third_party/boringssl-with-bazel/src/ssl/ssl_privkey.cc +59 -20
- data/third_party/boringssl-with-bazel/src/ssl/ssl_versions.cc +7 -1
- data/third_party/boringssl-with-bazel/src/ssl/tls13_both.cc +2 -1
- data/third_party/boringssl-with-bazel/src/ssl/tls13_client.cc +18 -4
- data/third_party/boringssl-with-bazel/src/ssl/tls13_enc.cc +96 -34
- data/third_party/boringssl-with-bazel/src/ssl/tls13_server.cc +15 -5
- data/third_party/boringssl-with-bazel/src/ssl/tls_record.cc +4 -24
- data/third_party/upb/upb/base/string_view.h +1 -1
- data/third_party/upb/upb/json/decode.c +21 -3
- data/third_party/upb/upb/json/encode.c +2 -2
- data/third_party/upb/upb/lex/round_trip.c +10 -0
- data/third_party/upb/upb/mem/arena.c +79 -3
- data/third_party/upb/upb/mem/arena.h +20 -9
- data/third_party/upb/upb/mem/arena.hpp +5 -1
- data/third_party/upb/upb/mem/internal/arena.h +11 -8
- data/third_party/upb/upb/message/accessors.c +6 -7
- data/third_party/upb/upb/message/accessors.h +180 -378
- data/third_party/upb/upb/message/array.c +26 -3
- data/third_party/upb/upb/message/array.h +17 -9
- data/third_party/upb/upb/message/compat.c +5 -5
- data/third_party/upb/upb/message/compat.h +3 -3
- data/third_party/upb/upb/message/copy.c +23 -20
- data/third_party/upb/upb/message/internal/accessors.h +610 -55
- data/third_party/upb/upb/message/internal/array.h +23 -15
- 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 +12 -12
- data/third_party/upb/upb/message/internal/extension.h +9 -12
- data/third_party/upb/upb/message/internal/map.h +15 -0
- data/third_party/upb/upb/message/internal/map_sorter.h +4 -5
- data/third_party/upb/upb/message/internal/message.c +19 -3
- data/third_party/upb/upb/message/internal/message.h +11 -0
- data/third_party/upb/upb/message/internal/tagged_ptr.h +5 -5
- data/third_party/upb/upb/message/internal/types.h +41 -1
- data/third_party/upb/upb/message/map.c +25 -0
- data/third_party/upb/upb/message/map.h +11 -7
- 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 +83 -4
- data/third_party/upb/upb/message/message.h +16 -1
- data/third_party/upb/upb/message/tagged_ptr.h +4 -8
- data/third_party/upb/upb/message/value.h +26 -0
- data/third_party/upb/upb/mini_descriptor/build_enum.c +3 -3
- data/third_party/upb/upb/mini_descriptor/build_enum.h +6 -14
- data/third_party/upb/upb/mini_descriptor/decode.c +19 -3
- data/third_party/upb/upb/mini_descriptor/link.c +23 -21
- data/third_party/upb/upb/mini_table/enum.h +2 -4
- data/third_party/upb/upb/mini_table/extension.h +4 -12
- data/third_party/upb/upb/mini_table/extension_registry.c +18 -0
- data/third_party/upb/upb/mini_table/extension_registry.h +17 -0
- data/third_party/upb/upb/mini_table/field.h +12 -38
- data/third_party/upb/upb/mini_table/file.h +6 -19
- data/third_party/upb/upb/mini_table/internal/enum.h +1 -1
- data/third_party/upb/upb/mini_table/internal/extension.h +18 -9
- data/third_party/upb/upb/mini_table/internal/field.h +23 -23
- data/third_party/upb/upb/mini_table/internal/file.h +7 -7
- data/third_party/upb/upb/mini_table/internal/message.c +21 -1
- data/third_party/upb/upb/mini_table/internal/message.h +80 -36
- data/third_party/upb/upb/mini_table/internal/sub.h +9 -4
- data/third_party/upb/upb/mini_table/message.h +23 -22
- data/third_party/upb/upb/mini_table/sub.h +4 -12
- data/third_party/upb/upb/port/def.inc +83 -6
- data/third_party/upb/upb/port/undef.inc +5 -1
- data/third_party/upb/upb/reflection/def.hpp +35 -0
- data/third_party/upb/upb/reflection/def_pool.h +2 -2
- data/third_party/upb/upb/reflection/enum_def.c +5 -1
- data/third_party/upb/upb/reflection/enum_def.h +1 -0
- data/third_party/upb/upb/reflection/enum_value_def.c +3 -8
- data/third_party/upb/upb/reflection/field_def.c +69 -29
- data/third_party/upb/upb/reflection/field_def.h +4 -0
- data/third_party/upb/upb/reflection/file_def.c +30 -4
- data/third_party/upb/upb/reflection/file_def.h +3 -0
- data/third_party/upb/upb/reflection/internal/upb_edition_defaults.h +1 -1
- data/third_party/upb/upb/reflection/message.c +26 -9
- data/third_party/upb/upb/reflection/message.h +2 -2
- data/third_party/upb/upb/reflection/message_def.c +14 -9
- data/third_party/upb/upb/reflection/method_def.h +8 -7
- data/third_party/upb/upb/reflection/service_def.h +6 -5
- data/third_party/upb/upb/text/encode.c +60 -389
- 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 +160 -94
- data/third_party/upb/upb/wire/decode.h +14 -1
- data/third_party/upb/upb/wire/encode.c +89 -48
- data/third_party/upb/upb/wire/encode.h +12 -1
- data/third_party/upb/upb/wire/eps_copy_input_stream.h +3 -3
- data/third_party/upb/upb/wire/internal/decode_fast.c +28 -29
- data/third_party/upb/upb/wire/internal/reader.h +3 -3
- data/third_party/upb/upb/wire/reader.c +1 -2
- data/third_party/upb/upb/wire/reader.h +4 -8
- metadata +360 -275
- data/src/core/client_channel/config_selector.cc +0 -60
- 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 -45
- 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/handshaker/security/tsi_error.cc +0 -31
- data/src/core/handshaker/security/tsi_error.h +0 -30
- 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/context.h +0 -105
- data/src/core/lib/channel/metrics.cc +0 -334
- data/src/core/lib/channel/metrics.h +0 -365
- data/src/core/lib/event_engine/trace.cc +0 -25
- data/src/core/lib/event_engine/trace.h +0 -48
- data/src/core/lib/gpr/android/log.cc +0 -79
- data/src/core/lib/gpr/linux/log.cc +0 -114
- data/src/core/lib/gpr/log.cc +0 -166
- data/src/core/lib/gpr/posix/log.cc +0 -111
- data/src/core/lib/gpr/windows/log.cc +0 -116
- data/src/core/lib/iomgr/ev_windows.cc +0 -30
- 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/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 -52
- data/src/core/lib/surface/call_trace.h +0 -24
- 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 -172
- data/src/core/lib/transport/batch_builder.h +0 -474
- data/src/core/resolver/binder/binder_resolver.cc +0 -154
- data/src/core/resolver/xds/xds_resolver_trace.cc +0 -25
- data/src/core/resolver/xds/xds_resolver_trace.h +0 -30
- data/src/core/xds/xds_client/xds_client_stats.cc +0 -172
- data/src/core/xds/xds_client/xds_client_stats.h +0 -258
- data/third_party/abseil-cpp/absl/strings/internal/has_absl_stringify.h +0 -44
- 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_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/{bytes.c → bytes.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/{div_extra.c → div_extra.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/{gcd_extra.c → gcd_extra.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/{montgomery_inv.c → montgomery_inv.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{mul.c → mul.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{prime.c → prime.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/{scalar.c → scalar.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/rsa/{rsa.c → rsa.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/{sha1.c → sha1.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/{sha256.c → sha256.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/tls/{kdf.c → kdf.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/{fipsmodule/rand → rand_extra}/getrandom_fillin.h +0 -0
@@ -22,6 +22,17 @@
|
|
22
22
|
|
23
23
|
#include "src/core/load_balancing/rls/rls.h"
|
24
24
|
|
25
|
+
#include <grpc/byte_buffer.h>
|
26
|
+
#include <grpc/byte_buffer_reader.h>
|
27
|
+
#include <grpc/event_engine/event_engine.h>
|
28
|
+
#include <grpc/grpc.h>
|
29
|
+
#include <grpc/impl/channel_arg_names.h>
|
30
|
+
#include <grpc/impl/connectivity_state.h>
|
31
|
+
#include <grpc/impl/propagation_bits.h>
|
32
|
+
#include <grpc/slice.h>
|
33
|
+
#include <grpc/status.h>
|
34
|
+
#include <grpc/support/json.h>
|
35
|
+
#include <grpc/support/port_platform.h>
|
25
36
|
#include <inttypes.h>
|
26
37
|
#include <stdlib.h>
|
27
38
|
#include <string.h>
|
@@ -42,6 +53,7 @@
|
|
42
53
|
#include "absl/base/thread_annotations.h"
|
43
54
|
#include "absl/hash/hash.h"
|
44
55
|
#include "absl/log/check.h"
|
56
|
+
#include "absl/log/log.h"
|
45
57
|
#include "absl/random/random.h"
|
46
58
|
#include "absl/status/status.h"
|
47
59
|
#include "absl/status/statusor.h"
|
@@ -50,48 +62,15 @@
|
|
50
62
|
#include "absl/strings/str_join.h"
|
51
63
|
#include "absl/strings/string_view.h"
|
52
64
|
#include "absl/types/optional.h"
|
53
|
-
#include "upb/base/string_view.h"
|
54
|
-
#include "upb/mem/arena.hpp"
|
55
|
-
|
56
|
-
#include <grpc/byte_buffer.h>
|
57
|
-
#include <grpc/byte_buffer_reader.h>
|
58
|
-
#include <grpc/event_engine/event_engine.h>
|
59
|
-
#include <grpc/grpc.h>
|
60
|
-
#include <grpc/impl/channel_arg_names.h>
|
61
|
-
#include <grpc/impl/connectivity_state.h>
|
62
|
-
#include <grpc/impl/propagation_bits.h>
|
63
|
-
#include <grpc/slice.h>
|
64
|
-
#include <grpc/status.h>
|
65
|
-
#include <grpc/support/json.h>
|
66
|
-
#include <grpc/support/log.h>
|
67
|
-
#include <grpc/support/port_platform.h>
|
68
|
-
|
69
65
|
#include "src/core/channelz/channelz.h"
|
70
66
|
#include "src/core/client_channel/client_channel_filter.h"
|
71
|
-
#include "src/core/lib/backoff/backoff.h"
|
72
67
|
#include "src/core/lib/channel/channel_args.h"
|
73
|
-
#include "src/core/lib/channel/metrics.h"
|
74
68
|
#include "src/core/lib/config/core_configuration.h"
|
75
69
|
#include "src/core/lib/debug/trace.h"
|
76
|
-
#include "src/core/lib/gprpp/debug_location.h"
|
77
|
-
#include "src/core/lib/gprpp/dual_ref_counted.h"
|
78
|
-
#include "src/core/lib/gprpp/match.h"
|
79
|
-
#include "src/core/lib/gprpp/orphanable.h"
|
80
|
-
#include "src/core/lib/gprpp/ref_counted_ptr.h"
|
81
|
-
#include "src/core/lib/gprpp/status_helper.h"
|
82
|
-
#include "src/core/lib/gprpp/sync.h"
|
83
|
-
#include "src/core/lib/gprpp/time.h"
|
84
|
-
#include "src/core/lib/gprpp/uuid_v4.h"
|
85
|
-
#include "src/core/lib/gprpp/validation_errors.h"
|
86
|
-
#include "src/core/lib/gprpp/work_serializer.h"
|
87
70
|
#include "src/core/lib/iomgr/closure.h"
|
88
71
|
#include "src/core/lib/iomgr/error.h"
|
89
72
|
#include "src/core/lib/iomgr/exec_ctx.h"
|
90
73
|
#include "src/core/lib/iomgr/pollset_set.h"
|
91
|
-
#include "src/core/lib/json/json.h"
|
92
|
-
#include "src/core/lib/json/json_args.h"
|
93
|
-
#include "src/core/lib/json/json_object_loader.h"
|
94
|
-
#include "src/core/lib/json/json_writer.h"
|
95
74
|
#include "src/core/lib/security/credentials/fake/fake_credentials.h"
|
96
75
|
#include "src/core/lib/slice/slice.h"
|
97
76
|
#include "src/core/lib/slice/slice_internal.h"
|
@@ -107,14 +86,32 @@
|
|
107
86
|
#include "src/core/resolver/endpoint_addresses.h"
|
108
87
|
#include "src/core/resolver/resolver_registry.h"
|
109
88
|
#include "src/core/service_config/service_config_impl.h"
|
89
|
+
#include "src/core/telemetry/metrics.h"
|
90
|
+
#include "src/core/util/backoff.h"
|
91
|
+
#include "src/core/util/debug_location.h"
|
92
|
+
#include "src/core/util/dual_ref_counted.h"
|
93
|
+
#include "src/core/util/json/json.h"
|
94
|
+
#include "src/core/util/json/json_args.h"
|
95
|
+
#include "src/core/util/json/json_object_loader.h"
|
96
|
+
#include "src/core/util/json/json_writer.h"
|
97
|
+
#include "src/core/util/match.h"
|
98
|
+
#include "src/core/util/orphanable.h"
|
99
|
+
#include "src/core/util/ref_counted_ptr.h"
|
100
|
+
#include "src/core/util/status_helper.h"
|
101
|
+
#include "src/core/util/sync.h"
|
102
|
+
#include "src/core/util/time.h"
|
103
|
+
#include "src/core/util/upb_utils.h"
|
104
|
+
#include "src/core/util/uuid_v4.h"
|
105
|
+
#include "src/core/util/validation_errors.h"
|
106
|
+
#include "src/core/util/work_serializer.h"
|
110
107
|
#include "src/proto/grpc/lookup/v1/rls.upb.h"
|
108
|
+
#include "upb/base/string_view.h"
|
109
|
+
#include "upb/mem/arena.hpp"
|
111
110
|
|
112
111
|
using ::grpc_event_engine::experimental::EventEngine;
|
113
112
|
|
114
113
|
namespace grpc_core {
|
115
114
|
|
116
|
-
TraceFlag grpc_lb_rls_trace(false, "rls_lb");
|
117
|
-
|
118
115
|
namespace {
|
119
116
|
|
120
117
|
constexpr absl::string_view kMetricLabelRlsServerTarget =
|
@@ -128,26 +125,27 @@ constexpr absl::string_view kMetricLabelPickResult = "grpc.lb.pick_result";
|
|
128
125
|
const auto kMetricCacheSize =
|
129
126
|
GlobalInstrumentsRegistry::RegisterCallbackInt64Gauge(
|
130
127
|
"grpc.lb.rls.cache_size", "EXPERIMENTAL. Size of the RLS cache.", "By",
|
131
|
-
|
132
|
-
|
133
|
-
|
128
|
+
false)
|
129
|
+
.Labels(kMetricLabelTarget, kMetricLabelRlsServerTarget,
|
130
|
+
kMetricLabelRlsInstanceUuid)
|
131
|
+
.Build();
|
134
132
|
|
135
133
|
const auto kMetricCacheEntries =
|
136
134
|
GlobalInstrumentsRegistry::RegisterCallbackInt64Gauge(
|
137
135
|
"grpc.lb.rls.cache_entries",
|
138
|
-
"EXPERIMENTAL. Number of entries in the RLS cache.", "{entry}",
|
139
|
-
|
140
|
-
|
141
|
-
|
136
|
+
"EXPERIMENTAL. Number of entries in the RLS cache.", "{entry}", false)
|
137
|
+
.Labels(kMetricLabelTarget, kMetricLabelRlsServerTarget,
|
138
|
+
kMetricLabelRlsInstanceUuid)
|
139
|
+
.Build();
|
142
140
|
|
143
141
|
const auto kMetricDefaultTargetPicks =
|
144
142
|
GlobalInstrumentsRegistry::RegisterUInt64Counter(
|
145
143
|
"grpc.lb.rls.default_target_picks",
|
146
144
|
"EXPERIMENTAL. Number of LB picks sent to the default target.",
|
147
|
-
"{pick}",
|
148
|
-
|
149
|
-
|
150
|
-
|
145
|
+
"{pick}", false)
|
146
|
+
.Labels(kMetricLabelTarget, kMetricLabelRlsServerTarget,
|
147
|
+
kMetricRlsDataPlaneTarget, kMetricLabelPickResult)
|
148
|
+
.Build();
|
151
149
|
|
152
150
|
const auto kMetricTargetPicks =
|
153
151
|
GlobalInstrumentsRegistry::RegisterUInt64Counter(
|
@@ -156,17 +154,19 @@ const auto kMetricTargetPicks =
|
|
156
154
|
"if the default target is also returned by the RLS server, RPCs sent "
|
157
155
|
"to that target from the cache will be counted in this metric, not "
|
158
156
|
"in grpc.rls.default_target_picks.",
|
159
|
-
"{pick}",
|
160
|
-
|
161
|
-
|
162
|
-
|
157
|
+
"{pick}", false)
|
158
|
+
.Labels(kMetricLabelTarget, kMetricLabelRlsServerTarget,
|
159
|
+
kMetricRlsDataPlaneTarget, kMetricLabelPickResult)
|
160
|
+
.Build();
|
163
161
|
|
164
162
|
const auto kMetricFailedPicks =
|
165
163
|
GlobalInstrumentsRegistry::RegisterUInt64Counter(
|
166
164
|
"grpc.lb.rls.failed_picks",
|
167
165
|
"EXPERIMENTAL. Number of LB picks failed due to either a failed RLS "
|
168
166
|
"request or the RLS channel being throttled.",
|
169
|
-
"{pick}",
|
167
|
+
"{pick}", false)
|
168
|
+
.Labels(kMetricLabelTarget, kMetricLabelRlsServerTarget)
|
169
|
+
.Build();
|
170
170
|
|
171
171
|
constexpr absl::string_view kRls = "rls_experimental";
|
172
172
|
const char kGrpc[] = "grpc";
|
@@ -313,12 +313,12 @@ class RlsLb final : public LoadBalancingPolicy {
|
|
313
313
|
struct ResponseInfo {
|
314
314
|
absl::Status status;
|
315
315
|
std::vector<std::string> targets;
|
316
|
-
|
316
|
+
grpc_event_engine::experimental::Slice header_data;
|
317
317
|
|
318
318
|
std::string ToString() const {
|
319
319
|
return absl::StrFormat("{status=%s, targets=[%s], header_data=\"%s\"}",
|
320
320
|
status.ToString(), absl::StrJoin(targets, ","),
|
321
|
-
header_data);
|
321
|
+
header_data.as_string_view());
|
322
322
|
}
|
323
323
|
};
|
324
324
|
|
@@ -351,7 +351,8 @@ class RlsLb final : public LoadBalancingPolicy {
|
|
351
351
|
// is called after releasing it.
|
352
352
|
//
|
353
353
|
// Both methods grab the data they need from the parent object.
|
354
|
-
void StartUpdate(
|
354
|
+
void StartUpdate(OrphanablePtr<ChildPolicyHandler>* child_policy_to_delete)
|
355
|
+
ABSL_EXCLUSIVE_LOCKS_REQUIRED(&RlsLb::mu_);
|
355
356
|
absl::Status MaybeFinishUpdate() ABSL_LOCKS_EXCLUDED(&RlsLb::mu_);
|
356
357
|
|
357
358
|
void ExitIdleLocked() {
|
@@ -395,14 +396,14 @@ class RlsLb final : public LoadBalancingPolicy {
|
|
395
396
|
};
|
396
397
|
|
397
398
|
// Note: We are forced to disable lock analysis here because
|
398
|
-
//
|
399
|
+
// Orphaned() is called by Unref() which is called by RefCountedPtr<>, which
|
399
400
|
// cannot have lock annotations for this particular caller.
|
400
401
|
void Orphaned() override ABSL_NO_THREAD_SAFETY_ANALYSIS;
|
401
402
|
|
402
403
|
RefCountedPtr<RlsLb> lb_policy_;
|
403
404
|
std::string target_;
|
404
405
|
|
405
|
-
bool is_shutdown_ = false;
|
406
|
+
bool is_shutdown_ = false; // Protected by WorkSerializer
|
406
407
|
|
407
408
|
OrphanablePtr<ChildPolicyHandler> child_policy_;
|
408
409
|
RefCountedPtr<LoadBalancingPolicy::Config> pending_config_;
|
@@ -462,7 +463,7 @@ class RlsLb final : public LoadBalancingPolicy {
|
|
462
463
|
ABSL_EXCLUSIVE_LOCKS_REQUIRED(&RlsLb::mu_) {
|
463
464
|
return data_expiration_time_;
|
464
465
|
}
|
465
|
-
const
|
466
|
+
const grpc_event_engine::experimental::Slice& header_data() const
|
466
467
|
ABSL_EXCLUSIVE_LOCKS_REQUIRED(&RlsLb::mu_) {
|
467
468
|
return header_data_;
|
468
469
|
}
|
@@ -501,16 +502,29 @@ class RlsLb final : public LoadBalancingPolicy {
|
|
501
502
|
// Returns a list of child policy wrappers on which FinishUpdate()
|
502
503
|
// needs to be called after releasing the lock.
|
503
504
|
std::vector<ChildPolicyWrapper*> OnRlsResponseLocked(
|
504
|
-
ResponseInfo response, std::unique_ptr<BackOff> backoff_state
|
505
|
+
ResponseInfo response, std::unique_ptr<BackOff> backoff_state,
|
506
|
+
OrphanablePtr<ChildPolicyHandler>* child_policy_to_delete)
|
505
507
|
ABSL_EXCLUSIVE_LOCKS_REQUIRED(&RlsLb::mu_);
|
506
508
|
|
507
509
|
// Moves entry to the end of the LRU list.
|
508
510
|
void MarkUsed() ABSL_EXCLUSIVE_LOCKS_REQUIRED(&RlsLb::mu_);
|
509
511
|
|
512
|
+
// Takes entries from child_policy_wrappers_ and appends them to the end
|
513
|
+
// of \a child_policy_wrappers.
|
514
|
+
void TakeChildPolicyWrappers(
|
515
|
+
std::vector<RefCountedPtr<ChildPolicyWrapper>>* child_policy_wrappers)
|
516
|
+
ABSL_EXCLUSIVE_LOCKS_REQUIRED(&RlsLb::mu_) {
|
517
|
+
child_policy_wrappers->insert(
|
518
|
+
child_policy_wrappers->end(),
|
519
|
+
std::make_move_iterator(child_policy_wrappers_.begin()),
|
520
|
+
std::make_move_iterator(child_policy_wrappers_.end()));
|
521
|
+
child_policy_wrappers_.clear();
|
522
|
+
}
|
523
|
+
|
510
524
|
private:
|
511
525
|
class BackoffTimer final : public InternallyRefCounted<BackoffTimer> {
|
512
526
|
public:
|
513
|
-
BackoffTimer(RefCountedPtr<Entry> entry,
|
527
|
+
BackoffTimer(RefCountedPtr<Entry> entry, Duration delay);
|
514
528
|
|
515
529
|
// Note: We are forced to disable lock analysis here because
|
516
530
|
// Orphan() is called by OrphanablePtr<>, which cannot have lock
|
@@ -541,7 +555,8 @@ class RlsLb final : public LoadBalancingPolicy {
|
|
541
555
|
// RLS response states
|
542
556
|
std::vector<RefCountedPtr<ChildPolicyWrapper>> child_policy_wrappers_
|
543
557
|
ABSL_GUARDED_BY(&RlsLb::mu_);
|
544
|
-
|
558
|
+
grpc_event_engine::experimental::Slice header_data_
|
559
|
+
ABSL_GUARDED_BY(&RlsLb::mu_);
|
545
560
|
Timestamp data_expiration_time_ ABSL_GUARDED_BY(&RlsLb::mu_) =
|
546
561
|
Timestamp::InfPast();
|
547
562
|
Timestamp stale_time_ ABSL_GUARDED_BY(&RlsLb::mu_) = Timestamp::InfPast();
|
@@ -563,19 +578,24 @@ class RlsLb final : public LoadBalancingPolicy {
|
|
563
578
|
// the caller. Otherwise, the entry found is returned to the caller. The
|
564
579
|
// entry returned to the user is considered recently used and its order in
|
565
580
|
// the LRU list of the cache is updated.
|
566
|
-
Entry* FindOrInsert(const RequestKey& key
|
581
|
+
Entry* FindOrInsert(const RequestKey& key,
|
582
|
+
std::vector<RefCountedPtr<ChildPolicyWrapper>>*
|
583
|
+
child_policy_wrappers_to_delete)
|
567
584
|
ABSL_EXCLUSIVE_LOCKS_REQUIRED(&RlsLb::mu_);
|
568
585
|
|
569
586
|
// Resizes the cache. If the new cache size is greater than the current size
|
570
587
|
// of the cache, do nothing. Otherwise, evict the oldest entries that
|
571
588
|
// exceed the new size limit of the cache.
|
572
|
-
void Resize(size_t bytes
|
589
|
+
void Resize(size_t bytes, std::vector<RefCountedPtr<ChildPolicyWrapper>>*
|
590
|
+
child_policy_wrappers_to_delete)
|
591
|
+
ABSL_EXCLUSIVE_LOCKS_REQUIRED(&RlsLb::mu_);
|
573
592
|
|
574
593
|
// Resets backoff of all the cache entries.
|
575
594
|
void ResetAllBackoff() ABSL_EXCLUSIVE_LOCKS_REQUIRED(&RlsLb::mu_);
|
576
595
|
|
577
596
|
// Shutdown the cache; clean-up and orphan all the stored cache entries.
|
578
|
-
|
597
|
+
GRPC_MUST_USE_RESULT std::vector<RefCountedPtr<ChildPolicyWrapper>>
|
598
|
+
Shutdown() ABSL_EXCLUSIVE_LOCKS_REQUIRED(&RlsLb::mu_);
|
579
599
|
|
580
600
|
void ReportMetricsLocked(CallbackMetricReporter& reporter)
|
581
601
|
ABSL_EXCLUSIVE_LOCKS_REQUIRED(&RlsLb::mu_);
|
@@ -591,7 +611,9 @@ class RlsLb final : public LoadBalancingPolicy {
|
|
591
611
|
|
592
612
|
// Evicts oversized cache elements when the current size is greater than
|
593
613
|
// the specified limit.
|
594
|
-
void MaybeShrinkSize(size_t bytes
|
614
|
+
void MaybeShrinkSize(size_t bytes,
|
615
|
+
std::vector<RefCountedPtr<ChildPolicyWrapper>>*
|
616
|
+
child_policy_wrappers_to_delete)
|
595
617
|
ABSL_EXCLUSIVE_LOCKS_REQUIRED(&RlsLb::mu_);
|
596
618
|
|
597
619
|
RlsLb* lb_policy_;
|
@@ -684,7 +706,7 @@ class RlsLb final : public LoadBalancingPolicy {
|
|
684
706
|
RefCountedPtr<RlsLb> lb_policy_;
|
685
707
|
bool is_shutdown_ = false;
|
686
708
|
|
687
|
-
|
709
|
+
RefCountedPtr<Channel> channel_;
|
688
710
|
RefCountedPtr<channelz::ChannelNode> parent_channelz_node_;
|
689
711
|
StateWatcher* watcher_ = nullptr;
|
690
712
|
Throttle throttle_ ABSL_GUARDED_BY(&RlsLb::mu_);
|
@@ -700,7 +722,7 @@ class RlsLb final : public LoadBalancingPolicy {
|
|
700
722
|
RefCountedPtr<RlsChannel> rls_channel,
|
701
723
|
std::unique_ptr<BackOff> backoff_state,
|
702
724
|
grpc_lookup_v1_RouteLookupRequest_Reason reason,
|
703
|
-
|
725
|
+
grpc_event_engine::experimental::Slice stale_header_data);
|
704
726
|
~RlsRequest() override;
|
705
727
|
|
706
728
|
// Shuts down the request. If the request is still in flight, it is
|
@@ -728,7 +750,7 @@ class RlsLb final : public LoadBalancingPolicy {
|
|
728
750
|
RefCountedPtr<RlsChannel> rls_channel_;
|
729
751
|
std::unique_ptr<BackOff> backoff_state_;
|
730
752
|
grpc_lookup_v1_RouteLookupRequest_Reason reason_;
|
731
|
-
|
753
|
+
grpc_event_engine::experimental::Slice stale_header_data_;
|
732
754
|
|
733
755
|
// RLS call state.
|
734
756
|
Timestamp deadline_;
|
@@ -754,9 +776,9 @@ class RlsLb final : public LoadBalancingPolicy {
|
|
754
776
|
// Updates the picker in the work serializer.
|
755
777
|
void UpdatePickerLocked() ABSL_LOCKS_EXCLUDED(&mu_);
|
756
778
|
|
757
|
-
|
758
|
-
|
759
|
-
|
779
|
+
template <typename HandleType>
|
780
|
+
void MaybeExportPickCount(HandleType handle, absl::string_view target,
|
781
|
+
const PickResult& pick_result);
|
760
782
|
|
761
783
|
const std::string instance_uuid_;
|
762
784
|
|
@@ -794,8 +816,7 @@ class RlsLb final : public LoadBalancingPolicy {
|
|
794
816
|
RlsLb::ChildPolicyWrapper::ChildPolicyWrapper(RefCountedPtr<RlsLb> lb_policy,
|
795
817
|
std::string target)
|
796
818
|
: DualRefCounted<ChildPolicyWrapper>(
|
797
|
-
GRPC_TRACE_FLAG_ENABLED(
|
798
|
-
: nullptr),
|
819
|
+
GRPC_TRACE_FLAG_ENABLED(rls_lb) ? "ChildPolicyWrapper" : nullptr),
|
799
820
|
lb_policy_(std::move(lb_policy)),
|
800
821
|
target_(std::move(target)),
|
801
822
|
picker_(MakeRefCounted<QueuePicker>(nullptr)) {
|
@@ -803,10 +824,9 @@ RlsLb::ChildPolicyWrapper::ChildPolicyWrapper(RefCountedPtr<RlsLb> lb_policy,
|
|
803
824
|
}
|
804
825
|
|
805
826
|
void RlsLb::ChildPolicyWrapper::Orphaned() {
|
806
|
-
|
807
|
-
|
808
|
-
|
809
|
-
}
|
827
|
+
GRPC_TRACE_LOG(rls_lb, INFO)
|
828
|
+
<< "[rlslb " << lb_policy_.get() << "] ChildPolicyWrapper=" << this
|
829
|
+
<< " [" << target_ << "]: shutdown";
|
810
830
|
is_shutdown_ = true;
|
811
831
|
lb_policy_->child_policy_map_.erase(target_);
|
812
832
|
if (child_policy_ != nullptr) {
|
@@ -856,35 +876,29 @@ absl::optional<Json> InsertOrUpdateChildPolicyField(const std::string& field,
|
|
856
876
|
return Json::FromArray(std::move(array));
|
857
877
|
}
|
858
878
|
|
859
|
-
void RlsLb::ChildPolicyWrapper::StartUpdate(
|
879
|
+
void RlsLb::ChildPolicyWrapper::StartUpdate(
|
880
|
+
OrphanablePtr<ChildPolicyHandler>* child_policy_to_delete) {
|
860
881
|
ValidationErrors errors;
|
861
882
|
auto child_policy_config = InsertOrUpdateChildPolicyField(
|
862
883
|
lb_policy_->config_->child_policy_config_target_field_name(), target_,
|
863
884
|
lb_policy_->config_->child_policy_config(), &errors);
|
864
885
|
CHECK(child_policy_config.has_value());
|
865
|
-
|
866
|
-
|
867
|
-
|
868
|
-
|
869
|
-
lb_policy_.get(), this, target_.c_str(),
|
870
|
-
JsonDump(*child_policy_config).c_str());
|
871
|
-
}
|
886
|
+
GRPC_TRACE_LOG(rls_lb, INFO)
|
887
|
+
<< "[rlslb " << lb_policy_.get() << "] ChildPolicyWrapper=" << this
|
888
|
+
<< " [" << target_
|
889
|
+
<< "]: validating update, config: " << JsonDump(*child_policy_config);
|
872
890
|
auto config =
|
873
891
|
CoreConfiguration::Get().lb_policy_registry().ParseLoadBalancingConfig(
|
874
892
|
*child_policy_config);
|
875
893
|
// Returned RLS target fails the validation.
|
876
894
|
if (!config.ok()) {
|
877
|
-
|
878
|
-
|
879
|
-
|
880
|
-
"%s",
|
881
|
-
lb_policy_.get(), this, target_.c_str(),
|
882
|
-
config.status().ToString().c_str());
|
883
|
-
}
|
895
|
+
GRPC_TRACE_LOG(rls_lb, INFO)
|
896
|
+
<< "[rlslb " << lb_policy_.get() << "] ChildPolicyWrapper=" << this
|
897
|
+
<< " [" << target_ << "]: config failed to parse: " << config.status();
|
884
898
|
pending_config_.reset();
|
885
899
|
picker_ = MakeRefCounted<TransientFailurePicker>(
|
886
900
|
absl::UnavailableError(config.status().message()));
|
887
|
-
child_policy_
|
901
|
+
*child_policy_to_delete = std::move(child_policy_);
|
888
902
|
} else {
|
889
903
|
pending_config_ = std::move(*config);
|
890
904
|
}
|
@@ -902,23 +916,19 @@ absl::Status RlsLb::ChildPolicyWrapper::MaybeFinishUpdate() {
|
|
902
916
|
WeakRef(DEBUG_LOCATION, "ChildPolicyHelper"));
|
903
917
|
create_args.args = lb_policy_->channel_args_;
|
904
918
|
child_policy_ = MakeOrphanable<ChildPolicyHandler>(std::move(create_args),
|
905
|
-
&
|
906
|
-
|
907
|
-
|
908
|
-
|
909
|
-
|
910
|
-
lb_policy_.get(), this, target_.c_str(), child_policy_.get());
|
911
|
-
}
|
919
|
+
&rls_lb_trace);
|
920
|
+
GRPC_TRACE_LOG(rls_lb, INFO)
|
921
|
+
<< "[rlslb " << lb_policy_.get() << "] ChildPolicyWrapper=" << this
|
922
|
+
<< " [" << target_ << "], created new child policy handler "
|
923
|
+
<< child_policy_.get();
|
912
924
|
grpc_pollset_set_add_pollset_set(child_policy_->interested_parties(),
|
913
925
|
lb_policy_->interested_parties());
|
914
926
|
}
|
915
927
|
// Send the child the updated config.
|
916
|
-
|
917
|
-
|
918
|
-
|
919
|
-
|
920
|
-
lb_policy_.get(), this, target_.c_str(), child_policy_.get());
|
921
|
-
}
|
928
|
+
GRPC_TRACE_LOG(rls_lb, INFO)
|
929
|
+
<< "[rlslb " << lb_policy_.get() << "] ChildPolicyWrapper=" << this
|
930
|
+
<< " [" << target_ << "], updating child policy handler "
|
931
|
+
<< child_policy_.get();
|
922
932
|
UpdateArgs update_args;
|
923
933
|
update_args.config = std::move(pending_config_);
|
924
934
|
update_args.addresses = lb_policy_->addresses_;
|
@@ -933,17 +943,15 @@ absl::Status RlsLb::ChildPolicyWrapper::MaybeFinishUpdate() {
|
|
933
943
|
void RlsLb::ChildPolicyWrapper::ChildPolicyHelper::UpdateState(
|
934
944
|
grpc_connectivity_state state, const absl::Status& status,
|
935
945
|
RefCountedPtr<SubchannelPicker> picker) {
|
936
|
-
|
937
|
-
|
938
|
-
|
939
|
-
|
940
|
-
|
941
|
-
|
942
|
-
|
943
|
-
}
|
946
|
+
GRPC_TRACE_LOG(rls_lb, INFO)
|
947
|
+
<< "[rlslb " << wrapper_->lb_policy_.get()
|
948
|
+
<< "] ChildPolicyWrapper=" << wrapper_.get() << " [" << wrapper_->target_
|
949
|
+
<< "] ChildPolicyHelper=" << this
|
950
|
+
<< ": UpdateState(state=" << ConnectivityStateName(state)
|
951
|
+
<< ", status=" << status << ", picker=" << picker.get() << ")";
|
952
|
+
if (wrapper_->is_shutdown_) return;
|
944
953
|
{
|
945
954
|
MutexLock lock(&wrapper_->lb_policy_->mu_);
|
946
|
-
if (wrapper_->is_shutdown_) return;
|
947
955
|
// TODO(roth): It looks like this ignores subsequent TF updates that
|
948
956
|
// might change the status used to fail picks, which seems wrong.
|
949
957
|
if (wrapper_->connectivity_state_ == GRPC_CHANNEL_TRANSIENT_FAILURE &&
|
@@ -953,7 +961,8 @@ void RlsLb::ChildPolicyWrapper::ChildPolicyHelper::UpdateState(
|
|
953
961
|
wrapper_->connectivity_state_ = state;
|
954
962
|
DCHECK(picker != nullptr);
|
955
963
|
if (picker != nullptr) {
|
956
|
-
|
964
|
+
// We want to unref the picker after we release the lock.
|
965
|
+
wrapper_->picker_.swap(picker);
|
957
966
|
}
|
958
967
|
}
|
959
968
|
wrapper_->lb_policy_->UpdatePickerLocked();
|
@@ -1041,10 +1050,9 @@ LoadBalancingPolicy::PickResult RlsLb::Picker::Pick(PickArgs args) {
|
|
1041
1050
|
BuildKeyMap(config_->key_builder_map(), args.path,
|
1042
1051
|
lb_policy_->channel_control_helper()->GetAuthority(),
|
1043
1052
|
args.initial_metadata)};
|
1044
|
-
|
1045
|
-
|
1046
|
-
|
1047
|
-
}
|
1053
|
+
GRPC_TRACE_LOG(rls_lb, INFO)
|
1054
|
+
<< "[rlslb " << lb_policy_.get() << "] picker=" << this
|
1055
|
+
<< ": request keys: " << key.ToString();
|
1048
1056
|
Timestamp now = Timestamp::Now();
|
1049
1057
|
MutexLock lock(&lb_policy_->mu_);
|
1050
1058
|
if (lb_policy_->is_shutdown_) {
|
@@ -1079,10 +1087,9 @@ LoadBalancingPolicy::PickResult RlsLb::Picker::Pick(PickArgs args) {
|
|
1079
1087
|
if (entry != nullptr) {
|
1080
1088
|
// If the entry has non-expired data, use it.
|
1081
1089
|
if (entry->data_expiration_time() >= now) {
|
1082
|
-
|
1083
|
-
|
1084
|
-
|
1085
|
-
}
|
1090
|
+
GRPC_TRACE_LOG(rls_lb, INFO)
|
1091
|
+
<< "[rlslb " << lb_policy_.get() << "] picker=" << this
|
1092
|
+
<< ": using cache entry " << entry;
|
1086
1093
|
return entry->Pick(args);
|
1087
1094
|
}
|
1088
1095
|
// If the entry is in backoff, then use the default target if set,
|
@@ -1095,29 +1102,26 @@ LoadBalancingPolicy::PickResult RlsLb::Picker::Pick(PickArgs args) {
|
|
1095
1102
|
}
|
1096
1103
|
}
|
1097
1104
|
// RLS call pending. Queue the pick.
|
1098
|
-
|
1099
|
-
|
1100
|
-
|
1101
|
-
}
|
1105
|
+
GRPC_TRACE_LOG(rls_lb, INFO)
|
1106
|
+
<< "[rlslb " << lb_policy_.get() << "] picker=" << this
|
1107
|
+
<< ": RLS request pending; queuing pick";
|
1102
1108
|
return PickResult::Queue();
|
1103
1109
|
}
|
1104
1110
|
|
1105
1111
|
LoadBalancingPolicy::PickResult RlsLb::Picker::PickFromDefaultTargetOrFail(
|
1106
1112
|
const char* reason, PickArgs args, absl::Status status) {
|
1107
1113
|
if (default_child_policy_ != nullptr) {
|
1108
|
-
|
1109
|
-
|
1110
|
-
|
1111
|
-
}
|
1114
|
+
GRPC_TRACE_LOG(rls_lb, INFO)
|
1115
|
+
<< "[rlslb " << lb_policy_.get() << "] picker=" << this << ": "
|
1116
|
+
<< reason << "; using default target";
|
1112
1117
|
auto pick_result = default_child_policy_->Pick(args);
|
1113
1118
|
lb_policy_->MaybeExportPickCount(kMetricDefaultTargetPicks,
|
1114
1119
|
config_->default_target(), pick_result);
|
1115
1120
|
return pick_result;
|
1116
1121
|
}
|
1117
|
-
|
1118
|
-
|
1119
|
-
|
1120
|
-
}
|
1122
|
+
GRPC_TRACE_LOG(rls_lb, INFO)
|
1123
|
+
<< "[rlslb " << lb_policy_.get() << "] picker=" << this << ": " << reason
|
1124
|
+
<< "; failing pick";
|
1121
1125
|
auto& stats_plugins =
|
1122
1126
|
lb_policy_->channel_control_helper()->GetStatsPluginGroup();
|
1123
1127
|
stats_plugins.AddCounter(kMetricFailedPicks, 1,
|
@@ -1132,12 +1136,11 @@ LoadBalancingPolicy::PickResult RlsLb::Picker::PickFromDefaultTargetOrFail(
|
|
1132
1136
|
//
|
1133
1137
|
|
1134
1138
|
RlsLb::Cache::Entry::BackoffTimer::BackoffTimer(RefCountedPtr<Entry> entry,
|
1135
|
-
|
1139
|
+
Duration delay)
|
1136
1140
|
: entry_(std::move(entry)) {
|
1137
1141
|
backoff_timer_task_handle_ =
|
1138
1142
|
entry_->lb_policy_->channel_control_helper()->GetEventEngine()->RunAfter(
|
1139
|
-
|
1140
|
-
[self = Ref(DEBUG_LOCATION, "BackoffTimer")]() mutable {
|
1143
|
+
delay, [self = Ref(DEBUG_LOCATION, "BackoffTimer")]() mutable {
|
1141
1144
|
ApplicationCallbackExecCtx callback_exec_ctx;
|
1142
1145
|
ExecCtx exec_ctx;
|
1143
1146
|
auto self_ptr = self.get();
|
@@ -1151,12 +1154,12 @@ void RlsLb::Cache::Entry::BackoffTimer::Orphan() {
|
|
1151
1154
|
if (backoff_timer_task_handle_.has_value() &&
|
1152
1155
|
entry_->lb_policy_->channel_control_helper()->GetEventEngine()->Cancel(
|
1153
1156
|
*backoff_timer_task_handle_)) {
|
1154
|
-
|
1155
|
-
|
1156
|
-
|
1157
|
-
|
1158
|
-
|
1159
|
-
|
1157
|
+
GRPC_TRACE_LOG(rls_lb, INFO)
|
1158
|
+
<< "[rlslb " << entry_->lb_policy_.get()
|
1159
|
+
<< "] cache entry=" << entry_.get() << " "
|
1160
|
+
<< (entry_->is_shutdown_ ? "(shut down)"
|
1161
|
+
: entry_->lru_iterator_->ToString())
|
1162
|
+
<< ", backoff timer canceled";
|
1160
1163
|
}
|
1161
1164
|
backoff_timer_task_handle_.reset();
|
1162
1165
|
Unref(DEBUG_LOCATION, "Orphan");
|
@@ -1165,12 +1168,12 @@ void RlsLb::Cache::Entry::BackoffTimer::Orphan() {
|
|
1165
1168
|
void RlsLb::Cache::Entry::BackoffTimer::OnBackoffTimerLocked() {
|
1166
1169
|
{
|
1167
1170
|
MutexLock lock(&entry_->lb_policy_->mu_);
|
1168
|
-
|
1169
|
-
|
1170
|
-
|
1171
|
-
|
1172
|
-
|
1173
|
-
|
1171
|
+
GRPC_TRACE_LOG(rls_lb, INFO)
|
1172
|
+
<< "[rlslb " << entry_->lb_policy_.get()
|
1173
|
+
<< "] cache entry=" << entry_.get() << " "
|
1174
|
+
<< (entry_->is_shutdown_ ? "(shut down)"
|
1175
|
+
: entry_->lru_iterator_->ToString())
|
1176
|
+
<< ", backoff timer fired";
|
1174
1177
|
// Skip the update if Orphaned
|
1175
1178
|
if (!backoff_timer_task_handle_.has_value()) return;
|
1176
1179
|
backoff_timer_task_handle_.reset();
|
@@ -1195,8 +1198,8 @@ std::unique_ptr<BackOff> MakeCacheEntryBackoff() {
|
|
1195
1198
|
|
1196
1199
|
RlsLb::Cache::Entry::Entry(RefCountedPtr<RlsLb> lb_policy,
|
1197
1200
|
const RequestKey& key)
|
1198
|
-
: InternallyRefCounted<Entry>(
|
1199
|
-
|
1201
|
+
: InternallyRefCounted<Entry>(GRPC_TRACE_FLAG_ENABLED(rls_lb) ? "CacheEntry"
|
1202
|
+
: nullptr),
|
1200
1203
|
lb_policy_(std::move(lb_policy)),
|
1201
1204
|
backoff_state_(MakeCacheEntryBackoff()),
|
1202
1205
|
min_expiration_time_(Timestamp::Now() + kMinExpirationTime),
|
@@ -1204,19 +1207,19 @@ RlsLb::Cache::Entry::Entry(RefCountedPtr<RlsLb> lb_policy,
|
|
1204
1207
|
lb_policy_->cache_.lru_list_.end(), key)) {}
|
1205
1208
|
|
1206
1209
|
void RlsLb::Cache::Entry::Orphan() {
|
1207
|
-
|
1208
|
-
|
1209
|
-
|
1210
|
-
|
1210
|
+
// We should be holding RlsLB::mu_.
|
1211
|
+
GRPC_TRACE_LOG(rls_lb, INFO)
|
1212
|
+
<< "[rlslb " << lb_policy_.get() << "] cache entry=" << this << " "
|
1213
|
+
<< lru_iterator_->ToString() << ": cache entry evicted";
|
1211
1214
|
is_shutdown_ = true;
|
1212
1215
|
lb_policy_->cache_.lru_list_.erase(lru_iterator_);
|
1213
1216
|
lru_iterator_ = lb_policy_->cache_.lru_list_.end(); // Just in case.
|
1217
|
+
CHECK(child_policy_wrappers_.empty());
|
1214
1218
|
backoff_state_.reset();
|
1215
1219
|
if (backoff_timer_ != nullptr) {
|
1216
1220
|
backoff_timer_.reset();
|
1217
1221
|
lb_policy_->UpdatePickerAsync();
|
1218
1222
|
}
|
1219
|
-
child_policy_wrappers_.clear();
|
1220
1223
|
Unref(DEBUG_LOCATION, "Orphan");
|
1221
1224
|
}
|
1222
1225
|
|
@@ -1235,42 +1238,36 @@ LoadBalancingPolicy::PickResult RlsLb::Cache::Entry::Pick(PickArgs args) {
|
|
1235
1238
|
if (child_policy_wrapper->connectivity_state() ==
|
1236
1239
|
GRPC_CHANNEL_TRANSIENT_FAILURE &&
|
1237
1240
|
i < child_policy_wrappers_.size() - 1) {
|
1238
|
-
|
1239
|
-
|
1240
|
-
|
1241
|
-
|
1242
|
-
|
1243
|
-
|
1244
|
-
child_policy_wrappers_.size());
|
1245
|
-
}
|
1241
|
+
GRPC_TRACE_LOG(rls_lb, INFO)
|
1242
|
+
<< "[rlslb " << lb_policy_.get() << "] cache entry=" << this << " "
|
1243
|
+
<< lru_iterator_->ToString() << ": target "
|
1244
|
+
<< child_policy_wrapper->target() << " (" << i << " of "
|
1245
|
+
<< child_policy_wrappers_.size()
|
1246
|
+
<< ") in state TRANSIENT_FAILURE; skipping";
|
1246
1247
|
continue;
|
1247
1248
|
}
|
1248
1249
|
break;
|
1249
1250
|
}
|
1250
1251
|
// Child policy not in TRANSIENT_FAILURE or is the last target in
|
1251
1252
|
// the list, so delegate.
|
1252
|
-
|
1253
|
-
|
1254
|
-
|
1255
|
-
|
1256
|
-
|
1257
|
-
|
1258
|
-
|
1259
|
-
ConnectivityStateName(child_policy_wrapper->connectivity_state()));
|
1260
|
-
}
|
1261
|
-
// Add header data.
|
1262
|
-
// Note that even if the target we're using is in TRANSIENT_FAILURE,
|
1263
|
-
// the pick might still succeed (e.g., if the child is ring_hash), so
|
1264
|
-
// we need to pass the right header info down in all cases.
|
1265
|
-
if (!header_data_.empty()) {
|
1266
|
-
char* copied_header_data =
|
1267
|
-
static_cast<char*>(args.call_state->Alloc(header_data_.length() + 1));
|
1268
|
-
strcpy(copied_header_data, header_data_.c_str());
|
1269
|
-
args.initial_metadata->Add(kRlsHeaderKey, copied_header_data);
|
1270
|
-
}
|
1253
|
+
GRPC_TRACE_LOG(rls_lb, INFO)
|
1254
|
+
<< "[rlslb " << lb_policy_.get() << "] cache entry=" << this << " "
|
1255
|
+
<< lru_iterator_->ToString() << ": target "
|
1256
|
+
<< child_policy_wrapper->target() << " (" << i << " of "
|
1257
|
+
<< child_policy_wrappers_.size() << ") in state "
|
1258
|
+
<< ConnectivityStateName(child_policy_wrapper->connectivity_state())
|
1259
|
+
<< "; delegating";
|
1271
1260
|
auto pick_result = child_policy_wrapper->Pick(args);
|
1272
1261
|
lb_policy_->MaybeExportPickCount(kMetricTargetPicks,
|
1273
1262
|
child_policy_wrapper->target(), pick_result);
|
1263
|
+
// Add header data.
|
1264
|
+
if (!header_data_.empty()) {
|
1265
|
+
auto* complete_pick =
|
1266
|
+
absl::get_if<PickResult::Complete>(&pick_result.result);
|
1267
|
+
if (complete_pick != nullptr) {
|
1268
|
+
complete_pick->metadata_mutations.Set(kRlsHeaderKey, header_data_.Ref());
|
1269
|
+
}
|
1270
|
+
}
|
1274
1271
|
return pick_result;
|
1275
1272
|
}
|
1276
1273
|
|
@@ -1298,7 +1295,8 @@ void RlsLb::Cache::Entry::MarkUsed() {
|
|
1298
1295
|
|
1299
1296
|
std::vector<RlsLb::ChildPolicyWrapper*>
|
1300
1297
|
RlsLb::Cache::Entry::OnRlsResponseLocked(
|
1301
|
-
ResponseInfo response, std::unique_ptr<BackOff> backoff_state
|
1298
|
+
ResponseInfo response, std::unique_ptr<BackOff> backoff_state,
|
1299
|
+
OrphanablePtr<ChildPolicyHandler>* child_policy_to_delete) {
|
1302
1300
|
// Move the entry to the end of the LRU list.
|
1303
1301
|
MarkUsed();
|
1304
1302
|
// If the request failed, store the failed status and update the
|
@@ -1310,11 +1308,12 @@ RlsLb::Cache::Entry::OnRlsResponseLocked(
|
|
1310
1308
|
} else {
|
1311
1309
|
backoff_state_ = MakeCacheEntryBackoff();
|
1312
1310
|
}
|
1313
|
-
|
1314
|
-
Timestamp now = Timestamp::Now();
|
1315
|
-
|
1311
|
+
const Duration delay = backoff_state_->NextAttemptDelay();
|
1312
|
+
const Timestamp now = Timestamp::Now();
|
1313
|
+
backoff_time_ = now + delay;
|
1314
|
+
backoff_expiration_time_ = now + delay * 2;
|
1316
1315
|
backoff_timer_ = MakeOrphanable<BackoffTimer>(
|
1317
|
-
Ref(DEBUG_LOCATION, "BackoffTimer"),
|
1316
|
+
Ref(DEBUG_LOCATION, "BackoffTimer"), delay);
|
1318
1317
|
lb_policy_->UpdatePickerAsync();
|
1319
1318
|
return {};
|
1320
1319
|
}
|
@@ -1359,7 +1358,7 @@ RlsLb::Cache::Entry::OnRlsResponseLocked(
|
|
1359
1358
|
if (it == lb_policy_->child_policy_map_.end()) {
|
1360
1359
|
auto new_child = MakeRefCounted<ChildPolicyWrapper>(
|
1361
1360
|
lb_policy_.Ref(DEBUG_LOCATION, "ChildPolicyWrapper"), target);
|
1362
|
-
new_child->StartUpdate();
|
1361
|
+
new_child->StartUpdate(child_policy_to_delete);
|
1363
1362
|
child_policies_to_finish_update.push_back(new_child.get());
|
1364
1363
|
new_child_policy_wrappers.emplace_back(std::move(new_child));
|
1365
1364
|
} else {
|
@@ -1396,38 +1395,39 @@ RlsLb::Cache::Entry* RlsLb::Cache::Find(const RequestKey& key) {
|
|
1396
1395
|
return it->second.get();
|
1397
1396
|
}
|
1398
1397
|
|
1399
|
-
RlsLb::Cache::Entry* RlsLb::Cache::FindOrInsert(
|
1398
|
+
RlsLb::Cache::Entry* RlsLb::Cache::FindOrInsert(
|
1399
|
+
const RequestKey& key, std::vector<RefCountedPtr<ChildPolicyWrapper>>*
|
1400
|
+
child_policy_wrappers_to_delete) {
|
1400
1401
|
auto it = map_.find(key);
|
1401
1402
|
// If not found, create new entry.
|
1402
1403
|
if (it == map_.end()) {
|
1403
1404
|
size_t entry_size = EntrySizeForKey(key);
|
1404
|
-
MaybeShrinkSize(size_limit_ - std::min(size_limit_, entry_size)
|
1405
|
+
MaybeShrinkSize(size_limit_ - std::min(size_limit_, entry_size),
|
1406
|
+
child_policy_wrappers_to_delete);
|
1405
1407
|
Entry* entry = new Entry(
|
1406
1408
|
lb_policy_->RefAsSubclass<RlsLb>(DEBUG_LOCATION, "CacheEntry"), key);
|
1407
1409
|
map_.emplace(key, OrphanablePtr<Entry>(entry));
|
1408
1410
|
size_ += entry_size;
|
1409
|
-
|
1410
|
-
|
1411
|
-
|
1412
|
-
}
|
1411
|
+
GRPC_TRACE_LOG(rls_lb, INFO)
|
1412
|
+
<< "[rlslb " << lb_policy_ << "] key=" << key.ToString()
|
1413
|
+
<< ": cache entry added, entry=" << entry;
|
1413
1414
|
return entry;
|
1414
1415
|
}
|
1415
1416
|
// Entry found, so use it.
|
1416
|
-
|
1417
|
-
|
1418
|
-
|
1419
|
-
}
|
1417
|
+
GRPC_TRACE_LOG(rls_lb, INFO)
|
1418
|
+
<< "[rlslb " << lb_policy_ << "] key=" << key.ToString()
|
1419
|
+
<< ": found cache entry " << it->second.get();
|
1420
1420
|
it->second->MarkUsed();
|
1421
1421
|
return it->second.get();
|
1422
1422
|
}
|
1423
1423
|
|
1424
|
-
void RlsLb::Cache::Resize(size_t bytes
|
1425
|
-
|
1426
|
-
|
1427
|
-
|
1428
|
-
|
1424
|
+
void RlsLb::Cache::Resize(size_t bytes,
|
1425
|
+
std::vector<RefCountedPtr<ChildPolicyWrapper>>*
|
1426
|
+
child_policy_wrappers_to_delete) {
|
1427
|
+
GRPC_TRACE_LOG(rls_lb, INFO)
|
1428
|
+
<< "[rlslb " << lb_policy_ << "] resizing cache to " << bytes << " bytes";
|
1429
1429
|
size_limit_ = bytes;
|
1430
|
-
MaybeShrinkSize(size_limit_);
|
1430
|
+
MaybeShrinkSize(size_limit_, child_policy_wrappers_to_delete);
|
1431
1431
|
}
|
1432
1432
|
|
1433
1433
|
void RlsLb::Cache::ResetAllBackoff() {
|
@@ -1437,17 +1437,22 @@ void RlsLb::Cache::ResetAllBackoff() {
|
|
1437
1437
|
lb_policy_->UpdatePickerAsync();
|
1438
1438
|
}
|
1439
1439
|
|
1440
|
-
|
1440
|
+
std::vector<RefCountedPtr<RlsLb::ChildPolicyWrapper>> RlsLb::Cache::Shutdown() {
|
1441
|
+
std::vector<RefCountedPtr<ChildPolicyWrapper>>
|
1442
|
+
child_policy_wrappers_to_delete;
|
1443
|
+
for (auto& entry : map_) {
|
1444
|
+
entry.second->TakeChildPolicyWrappers(&child_policy_wrappers_to_delete);
|
1445
|
+
}
|
1441
1446
|
map_.clear();
|
1442
1447
|
lru_list_.clear();
|
1443
1448
|
if (cleanup_timer_handle_.has_value() &&
|
1444
1449
|
lb_policy_->channel_control_helper()->GetEventEngine()->Cancel(
|
1445
1450
|
*cleanup_timer_handle_)) {
|
1446
|
-
|
1447
|
-
|
1448
|
-
}
|
1451
|
+
GRPC_TRACE_LOG(rls_lb, INFO)
|
1452
|
+
<< "[rlslb " << lb_policy_ << "] cache cleanup timer canceled";
|
1449
1453
|
}
|
1450
1454
|
cleanup_timer_handle_.reset();
|
1455
|
+
return child_policy_wrappers_to_delete;
|
1451
1456
|
}
|
1452
1457
|
|
1453
1458
|
void RlsLb::Cache::ReportMetricsLocked(CallbackMetricReporter& reporter) {
|
@@ -1481,15 +1486,17 @@ void RlsLb::Cache::StartCleanupTimer() {
|
|
1481
1486
|
}
|
1482
1487
|
|
1483
1488
|
void RlsLb::Cache::OnCleanupTimer() {
|
1484
|
-
|
1485
|
-
|
1486
|
-
|
1489
|
+
GRPC_TRACE_LOG(rls_lb, INFO)
|
1490
|
+
<< "[rlslb " << lb_policy_ << "] cache cleanup timer fired";
|
1491
|
+
std::vector<RefCountedPtr<ChildPolicyWrapper>>
|
1492
|
+
child_policy_wrappers_to_delete;
|
1487
1493
|
MutexLock lock(&lb_policy_->mu_);
|
1488
1494
|
if (!cleanup_timer_handle_.has_value()) return;
|
1489
1495
|
if (lb_policy_->is_shutdown_) return;
|
1490
1496
|
for (auto it = map_.begin(); it != map_.end();) {
|
1491
1497
|
if (GPR_UNLIKELY(it->second->ShouldRemove() && it->second->CanEvict())) {
|
1492
1498
|
size_ -= it->second->Size();
|
1499
|
+
it->second->TakeChildPolicyWrappers(&child_policy_wrappers_to_delete);
|
1493
1500
|
it = map_.erase(it);
|
1494
1501
|
} else {
|
1495
1502
|
++it;
|
@@ -1503,26 +1510,25 @@ size_t RlsLb::Cache::EntrySizeForKey(const RequestKey& key) {
|
|
1503
1510
|
return (key.Size() * 2) + sizeof(Entry);
|
1504
1511
|
}
|
1505
1512
|
|
1506
|
-
void RlsLb::Cache::MaybeShrinkSize(
|
1513
|
+
void RlsLb::Cache::MaybeShrinkSize(
|
1514
|
+
size_t bytes, std::vector<RefCountedPtr<ChildPolicyWrapper>>*
|
1515
|
+
child_policy_wrappers_to_delete) {
|
1507
1516
|
while (size_ > bytes) {
|
1508
1517
|
auto lru_it = lru_list_.begin();
|
1509
1518
|
if (GPR_UNLIKELY(lru_it == lru_list_.end())) break;
|
1510
1519
|
auto map_it = map_.find(*lru_it);
|
1511
1520
|
CHECK(map_it != map_.end());
|
1512
1521
|
if (!map_it->second->CanEvict()) break;
|
1513
|
-
|
1514
|
-
|
1515
|
-
|
1516
|
-
}
|
1522
|
+
GRPC_TRACE_LOG(rls_lb, INFO)
|
1523
|
+
<< "[rlslb " << lb_policy_ << "] LRU eviction: removing entry "
|
1524
|
+
<< map_it->second.get() << " " << lru_it->ToString();
|
1517
1525
|
size_ -= map_it->second->Size();
|
1526
|
+
map_it->second->TakeChildPolicyWrappers(child_policy_wrappers_to_delete);
|
1518
1527
|
map_.erase(map_it);
|
1519
1528
|
}
|
1520
|
-
|
1521
|
-
|
1522
|
-
|
1523
|
-
" size=%" PRIuPTR,
|
1524
|
-
lb_policy_, bytes, size_);
|
1525
|
-
}
|
1529
|
+
GRPC_TRACE_LOG(rls_lb, INFO)
|
1530
|
+
<< "[rlslb " << lb_policy_
|
1531
|
+
<< "] LRU pass complete: desired size=" << bytes << " size=" << size_;
|
1526
1532
|
}
|
1527
1533
|
|
1528
1534
|
//
|
@@ -1532,13 +1538,10 @@ void RlsLb::Cache::MaybeShrinkSize(size_t bytes) {
|
|
1532
1538
|
void RlsLb::RlsChannel::StateWatcher::OnConnectivityStateChange(
|
1533
1539
|
grpc_connectivity_state new_state, const absl::Status& status) {
|
1534
1540
|
auto* lb_policy = rls_channel_->lb_policy_.get();
|
1535
|
-
|
1536
|
-
|
1537
|
-
|
1538
|
-
|
1539
|
-
lb_policy, rls_channel_.get(), this,
|
1540
|
-
ConnectivityStateName(new_state), status.ToString().c_str());
|
1541
|
-
}
|
1541
|
+
GRPC_TRACE_LOG(rls_lb, INFO)
|
1542
|
+
<< "[rlslb " << lb_policy << "] RlsChannel=" << rls_channel_.get()
|
1543
|
+
<< " StateWatcher=" << this << ": state changed to "
|
1544
|
+
<< ConnectivityStateName(new_state) << " (" << status << ")";
|
1542
1545
|
if (rls_channel_->is_shutdown_) return;
|
1543
1546
|
MutexLock lock(&lb_policy->mu_);
|
1544
1547
|
if (new_state == GRPC_CHANNEL_READY && was_transient_failure_) {
|
@@ -1597,7 +1600,7 @@ void RlsLb::RlsChannel::Throttle::RegisterResponse(bool success) {
|
|
1597
1600
|
|
1598
1601
|
RlsLb::RlsChannel::RlsChannel(RefCountedPtr<RlsLb> lb_policy)
|
1599
1602
|
: InternallyRefCounted<RlsChannel>(
|
1600
|
-
GRPC_TRACE_FLAG_ENABLED(
|
1603
|
+
GRPC_TRACE_FLAG_ENABLED(rls_lb) ? "RlsChannel" : nullptr),
|
1601
1604
|
lb_policy_(std::move(lb_policy)) {
|
1602
1605
|
// Get channel creds from parent channel.
|
1603
1606
|
// Note that we are using the "unsafe" channel creds here, which do
|
@@ -1631,11 +1634,10 @@ RlsLb::RlsChannel::RlsChannel(RefCountedPtr<RlsLb> lb_policy)
|
|
1631
1634
|
channel_.reset(Channel::FromC(
|
1632
1635
|
grpc_channel_create(lb_policy_->config_->lookup_service().c_str(),
|
1633
1636
|
creds.get(), args.ToC().get())));
|
1634
|
-
|
1635
|
-
|
1636
|
-
|
1637
|
-
|
1638
|
-
}
|
1637
|
+
GRPC_TRACE_LOG(rls_lb, INFO)
|
1638
|
+
<< "[rlslb " << lb_policy_.get() << "] RlsChannel=" << this
|
1639
|
+
<< ": created channel " << channel_.get() << " for "
|
1640
|
+
<< lb_policy_->config_->lookup_service();
|
1639
1641
|
if (channel_ != nullptr) {
|
1640
1642
|
// Set up channelz linkage.
|
1641
1643
|
channelz::ChannelNode* child_channelz_node = channel_->channelz_node();
|
@@ -1654,10 +1656,9 @@ RlsLb::RlsChannel::RlsChannel(RefCountedPtr<RlsLb> lb_policy)
|
|
1654
1656
|
}
|
1655
1657
|
|
1656
1658
|
void RlsLb::RlsChannel::Orphan() {
|
1657
|
-
|
1658
|
-
|
1659
|
-
|
1660
|
-
}
|
1659
|
+
GRPC_TRACE_LOG(rls_lb, INFO)
|
1660
|
+
<< "[rlslb " << lb_policy_.get() << "] RlsChannel=" << this
|
1661
|
+
<< ", channel=" << channel_.get() << ": shutdown";
|
1661
1662
|
is_shutdown_ = true;
|
1662
1663
|
if (channel_ != nullptr) {
|
1663
1664
|
// Remove channelz linkage.
|
@@ -1681,11 +1682,11 @@ void RlsLb::RlsChannel::StartRlsCall(const RequestKey& key,
|
|
1681
1682
|
std::unique_ptr<BackOff> backoff_state;
|
1682
1683
|
grpc_lookup_v1_RouteLookupRequest_Reason reason =
|
1683
1684
|
grpc_lookup_v1_RouteLookupRequest_REASON_MISS;
|
1684
|
-
|
1685
|
+
grpc_event_engine::experimental::Slice stale_header_data;
|
1685
1686
|
if (stale_entry != nullptr) {
|
1686
1687
|
backoff_state = stale_entry->TakeBackoffState();
|
1687
1688
|
reason = grpc_lookup_v1_RouteLookupRequest_REASON_STALE;
|
1688
|
-
stale_header_data = stale_entry->header_data();
|
1689
|
+
stale_header_data = stale_entry->header_data().Ref();
|
1689
1690
|
}
|
1690
1691
|
lb_policy_->request_map_.emplace(
|
1691
1692
|
key, MakeOrphanable<RlsRequest>(
|
@@ -1707,24 +1708,23 @@ void RlsLb::RlsChannel::ResetBackoff() {
|
|
1707
1708
|
// RlsLb::RlsRequest
|
1708
1709
|
//
|
1709
1710
|
|
1710
|
-
RlsLb::RlsRequest::RlsRequest(
|
1711
|
-
|
1712
|
-
|
1713
|
-
|
1714
|
-
|
1711
|
+
RlsLb::RlsRequest::RlsRequest(
|
1712
|
+
RefCountedPtr<RlsLb> lb_policy, RequestKey key,
|
1713
|
+
RefCountedPtr<RlsChannel> rls_channel,
|
1714
|
+
std::unique_ptr<BackOff> backoff_state,
|
1715
|
+
grpc_lookup_v1_RouteLookupRequest_Reason reason,
|
1716
|
+
grpc_event_engine::experimental::Slice stale_header_data)
|
1715
1717
|
: InternallyRefCounted<RlsRequest>(
|
1716
|
-
GRPC_TRACE_FLAG_ENABLED(
|
1718
|
+
GRPC_TRACE_FLAG_ENABLED(rls_lb) ? "RlsRequest" : nullptr),
|
1717
1719
|
lb_policy_(std::move(lb_policy)),
|
1718
1720
|
key_(std::move(key)),
|
1719
1721
|
rls_channel_(std::move(rls_channel)),
|
1720
1722
|
backoff_state_(std::move(backoff_state)),
|
1721
1723
|
reason_(reason),
|
1722
1724
|
stale_header_data_(std::move(stale_header_data)) {
|
1723
|
-
|
1724
|
-
|
1725
|
-
|
1726
|
-
lb_policy_.get(), this, key_.ToString().c_str());
|
1727
|
-
}
|
1725
|
+
GRPC_TRACE_LOG(rls_lb, INFO)
|
1726
|
+
<< "[rlslb " << lb_policy_.get() << "] rls_request=" << this
|
1727
|
+
<< ": RLS request created for key " << key_.ToString();
|
1728
1728
|
GRPC_CLOSURE_INIT(&call_complete_cb_, OnRlsCallComplete, this, nullptr);
|
1729
1729
|
ExecCtx::Run(
|
1730
1730
|
DEBUG_LOCATION,
|
@@ -1737,10 +1737,9 @@ RlsLb::RlsRequest::~RlsRequest() { CHECK_EQ(call_, nullptr); }
|
|
1737
1737
|
|
1738
1738
|
void RlsLb::RlsRequest::Orphan() {
|
1739
1739
|
if (call_ != nullptr) {
|
1740
|
-
|
1741
|
-
|
1742
|
-
|
1743
|
-
}
|
1740
|
+
GRPC_TRACE_LOG(rls_lb, INFO)
|
1741
|
+
<< "[rlslb " << lb_policy_.get() << "] rls_request=" << this << " "
|
1742
|
+
<< key_.ToString() << ": cancelling RLS call";
|
1744
1743
|
grpc_call_cancel_internal(call_);
|
1745
1744
|
}
|
1746
1745
|
Unref(DEBUG_LOCATION, "Orphan");
|
@@ -1810,14 +1809,12 @@ void RlsLb::RlsRequest::OnRlsCallComplete(void* arg, grpc_error_handle error) {
|
|
1810
1809
|
}
|
1811
1810
|
|
1812
1811
|
void RlsLb::RlsRequest::OnRlsCallCompleteLocked(grpc_error_handle error) {
|
1813
|
-
if (GRPC_TRACE_FLAG_ENABLED(
|
1812
|
+
if (GRPC_TRACE_FLAG_ENABLED(rls_lb)) {
|
1814
1813
|
std::string status_message(StringViewFromSlice(status_details_recv_));
|
1815
|
-
|
1816
|
-
|
1817
|
-
|
1818
|
-
|
1819
|
-
StatusToString(error).c_str(), status_recv_,
|
1820
|
-
status_message.c_str());
|
1814
|
+
LOG(INFO) << "[rlslb " << lb_policy_.get() << "] rls_request=" << this
|
1815
|
+
<< " " << key_.ToString() << ", error=" << StatusToString(error)
|
1816
|
+
<< ", status={" << status_recv_ << ", " << status_message << "}"
|
1817
|
+
<< " RLS call response received";
|
1821
1818
|
}
|
1822
1819
|
// Parse response.
|
1823
1820
|
ResponseInfo response;
|
@@ -1843,19 +1840,22 @@ void RlsLb::RlsRequest::OnRlsCallCompleteLocked(grpc_error_handle error) {
|
|
1843
1840
|
grpc_call_unref(call_);
|
1844
1841
|
call_ = nullptr;
|
1845
1842
|
// Return result to cache.
|
1846
|
-
|
1847
|
-
|
1848
|
-
|
1849
|
-
response.ToString().c_str());
|
1850
|
-
}
|
1843
|
+
GRPC_TRACE_LOG(rls_lb, INFO)
|
1844
|
+
<< "[rlslb " << lb_policy_.get() << "] rls_request=" << this << " "
|
1845
|
+
<< key_.ToString() << ": response info: " << response.ToString();
|
1851
1846
|
std::vector<ChildPolicyWrapper*> child_policies_to_finish_update;
|
1847
|
+
std::vector<RefCountedPtr<ChildPolicyWrapper>>
|
1848
|
+
child_policy_wrappers_to_delete;
|
1849
|
+
OrphanablePtr<ChildPolicyHandler> child_policy_to_delete;
|
1852
1850
|
{
|
1853
1851
|
MutexLock lock(&lb_policy_->mu_);
|
1854
1852
|
if (lb_policy_->is_shutdown_) return;
|
1855
1853
|
rls_channel_->ReportResponseLocked(response.status.ok());
|
1856
|
-
Cache::Entry* cache_entry =
|
1854
|
+
Cache::Entry* cache_entry =
|
1855
|
+
lb_policy_->cache_.FindOrInsert(key_, &child_policy_wrappers_to_delete);
|
1857
1856
|
child_policies_to_finish_update = cache_entry->OnRlsResponseLocked(
|
1858
|
-
std::move(response), std::move(backoff_state_)
|
1857
|
+
std::move(response), std::move(backoff_state_),
|
1858
|
+
&child_policy_to_delete);
|
1859
1859
|
lb_policy_->request_map_.erase(key_);
|
1860
1860
|
}
|
1861
1861
|
// Now that we've released the lock, finish the update on any newly
|
@@ -1889,8 +1889,7 @@ grpc_byte_buffer* RlsLb::RlsRequest::MakeRequestProto() {
|
|
1889
1889
|
grpc_lookup_v1_RouteLookupRequest_set_reason(req, reason_);
|
1890
1890
|
if (!stale_header_data_.empty()) {
|
1891
1891
|
grpc_lookup_v1_RouteLookupRequest_set_stale_header_data(
|
1892
|
-
req,
|
1893
|
-
stale_header_data_.size()));
|
1892
|
+
req, StdStringToUpbString(stale_header_data_.as_string_view()));
|
1894
1893
|
}
|
1895
1894
|
size_t len;
|
1896
1895
|
char* buf =
|
@@ -1933,7 +1932,8 @@ RlsLb::ResponseInfo RlsLb::RlsRequest::ParseResponseProto() {
|
|
1933
1932
|
upb_StringView header_data_strview =
|
1934
1933
|
grpc_lookup_v1_RouteLookupResponse_header_data(response);
|
1935
1934
|
response_info.header_data =
|
1936
|
-
|
1935
|
+
grpc_event_engine::experimental::Slice::FromCopiedBuffer(
|
1936
|
+
header_data_strview.data, header_data_strview.size);
|
1937
1937
|
return response_info;
|
1938
1938
|
}
|
1939
1939
|
|
@@ -1954,17 +1954,8 @@ RlsLb::RlsLb(Args args)
|
|
1954
1954
|
instance_uuid_(channel_args()
|
1955
1955
|
.GetOwnedString(GRPC_ARG_TEST_ONLY_RLS_INSTANCE_ID)
|
1956
1956
|
.value_or(GenerateUUID())),
|
1957
|
-
cache_(this)
|
1958
|
-
|
1959
|
-
channel_control_helper()->GetStatsPluginGroup().RegisterCallback(
|
1960
|
-
[this](CallbackMetricReporter& reporter) {
|
1961
|
-
MutexLock lock(&mu_);
|
1962
|
-
cache_.ReportMetricsLocked(reporter);
|
1963
|
-
},
|
1964
|
-
{kMetricCacheSize, kMetricCacheEntries})) {
|
1965
|
-
if (GRPC_TRACE_FLAG_ENABLED(grpc_lb_rls_trace)) {
|
1966
|
-
gpr_log(GPR_INFO, "[rlslb %p] policy created", this);
|
1967
|
-
}
|
1957
|
+
cache_(this) {
|
1958
|
+
GRPC_TRACE_LOG(rls_lb, INFO) << "[rlslb " << this << "] policy created";
|
1968
1959
|
}
|
1969
1960
|
|
1970
1961
|
bool EndpointsEqual(
|
@@ -1989,18 +1980,16 @@ bool EndpointsEqual(
|
|
1989
1980
|
}
|
1990
1981
|
|
1991
1982
|
absl::Status RlsLb::UpdateLocked(UpdateArgs args) {
|
1992
|
-
|
1993
|
-
gpr_log(GPR_INFO, "[rlslb %p] policy updated", this);
|
1994
|
-
}
|
1983
|
+
GRPC_TRACE_LOG(rls_lb, INFO) << "[rlslb " << this << "] policy updated";
|
1995
1984
|
update_in_progress_ = true;
|
1996
1985
|
// Swap out config.
|
1997
1986
|
RefCountedPtr<RlsLbConfig> old_config = std::move(config_);
|
1998
1987
|
config_ = args.config.TakeAsSubclass<RlsLbConfig>();
|
1999
|
-
if (GRPC_TRACE_FLAG_ENABLED(
|
1988
|
+
if (GRPC_TRACE_FLAG_ENABLED(rls_lb) &&
|
2000
1989
|
(old_config == nullptr ||
|
2001
1990
|
old_config->child_policy_config() != config_->child_policy_config())) {
|
2002
|
-
|
2003
|
-
|
1991
|
+
LOG(INFO) << "[rlslb " << this << "] updated child policy config: "
|
1992
|
+
<< JsonDump(config_->child_policy_config());
|
2004
1993
|
}
|
2005
1994
|
// Swap out addresses.
|
2006
1995
|
// If the new address list is an error and we have an existing address list,
|
@@ -2024,31 +2013,30 @@ absl::Status RlsLb::UpdateLocked(UpdateArgs args) {
|
|
2024
2013
|
if (old_config == nullptr ||
|
2025
2014
|
config_->default_target() != old_config->default_target()) {
|
2026
2015
|
if (config_->default_target().empty()) {
|
2027
|
-
|
2028
|
-
|
2029
|
-
}
|
2016
|
+
GRPC_TRACE_LOG(rls_lb, INFO)
|
2017
|
+
<< "[rlslb " << this << "] unsetting default target";
|
2030
2018
|
default_child_policy_.reset();
|
2031
2019
|
} else {
|
2032
2020
|
auto it = child_policy_map_.find(config_->default_target());
|
2033
2021
|
if (it == child_policy_map_.end()) {
|
2034
|
-
|
2035
|
-
|
2036
|
-
}
|
2022
|
+
GRPC_TRACE_LOG(rls_lb, INFO)
|
2023
|
+
<< "[rlslb " << this << "] creating new default target";
|
2037
2024
|
default_child_policy_ = MakeRefCounted<ChildPolicyWrapper>(
|
2038
2025
|
RefAsSubclass<RlsLb>(DEBUG_LOCATION, "ChildPolicyWrapper"),
|
2039
2026
|
config_->default_target());
|
2040
2027
|
created_default_child = true;
|
2041
2028
|
} else {
|
2042
|
-
|
2043
|
-
|
2044
|
-
"[rlslb %p] using existing child for default target", this);
|
2045
|
-
}
|
2029
|
+
GRPC_TRACE_LOG(rls_lb, INFO)
|
2030
|
+
<< "[rlslb " << this << "] using existing child for default target";
|
2046
2031
|
default_child_policy_ =
|
2047
2032
|
it->second->Ref(DEBUG_LOCATION, "DefaultChildPolicy");
|
2048
2033
|
}
|
2049
2034
|
}
|
2050
2035
|
}
|
2051
2036
|
// Now grab the lock to swap out the state it guards.
|
2037
|
+
std::vector<RefCountedPtr<ChildPolicyWrapper>>
|
2038
|
+
child_policy_wrappers_to_delete;
|
2039
|
+
OrphanablePtr<ChildPolicyHandler> child_policy_to_delete;
|
2052
2040
|
{
|
2053
2041
|
MutexLock lock(&mu_);
|
2054
2042
|
// Swap out RLS channel if needed.
|
@@ -2060,30 +2048,27 @@ absl::Status RlsLb::UpdateLocked(UpdateArgs args) {
|
|
2060
2048
|
// Resize cache if needed.
|
2061
2049
|
if (old_config == nullptr ||
|
2062
2050
|
config_->cache_size_bytes() != old_config->cache_size_bytes()) {
|
2063
|
-
cache_.Resize(static_cast<size_t>(config_->cache_size_bytes())
|
2051
|
+
cache_.Resize(static_cast<size_t>(config_->cache_size_bytes()),
|
2052
|
+
&child_policy_wrappers_to_delete);
|
2064
2053
|
}
|
2065
2054
|
// Start update of child policies if needed.
|
2066
2055
|
if (update_child_policies) {
|
2067
|
-
|
2068
|
-
|
2069
|
-
}
|
2056
|
+
GRPC_TRACE_LOG(rls_lb, INFO)
|
2057
|
+
<< "[rlslb " << this << "] starting child policy updates";
|
2070
2058
|
for (auto& p : child_policy_map_) {
|
2071
|
-
p.second->StartUpdate();
|
2059
|
+
p.second->StartUpdate(&child_policy_to_delete);
|
2072
2060
|
}
|
2073
2061
|
} else if (created_default_child) {
|
2074
|
-
|
2075
|
-
|
2076
|
-
|
2077
|
-
}
|
2078
|
-
default_child_policy_->StartUpdate();
|
2062
|
+
GRPC_TRACE_LOG(rls_lb, INFO)
|
2063
|
+
<< "[rlslb " << this << "] starting default child policy update";
|
2064
|
+
default_child_policy_->StartUpdate(&child_policy_to_delete);
|
2079
2065
|
}
|
2080
2066
|
}
|
2081
2067
|
// Now that we've released the lock, finish update of child policies.
|
2082
2068
|
std::vector<std::string> errors;
|
2083
2069
|
if (update_child_policies) {
|
2084
|
-
|
2085
|
-
|
2086
|
-
}
|
2070
|
+
GRPC_TRACE_LOG(rls_lb, INFO)
|
2071
|
+
<< "[rlslb " << this << "] finishing child policy updates";
|
2087
2072
|
for (auto& p : child_policy_map_) {
|
2088
2073
|
absl::Status status = p.second->MaybeFinishUpdate();
|
2089
2074
|
if (!status.ok()) {
|
@@ -2092,10 +2077,8 @@ absl::Status RlsLb::UpdateLocked(UpdateArgs args) {
|
|
2092
2077
|
}
|
2093
2078
|
}
|
2094
2079
|
} else if (created_default_child) {
|
2095
|
-
|
2096
|
-
|
2097
|
-
this);
|
2098
|
-
}
|
2080
|
+
GRPC_TRACE_LOG(rls_lb, INFO)
|
2081
|
+
<< "[rlslb " << this << "] finishing default child policy update";
|
2099
2082
|
absl::Status status = default_child_policy_->MaybeFinishUpdate();
|
2100
2083
|
if (!status.ok()) {
|
2101
2084
|
errors.emplace_back(absl::StrCat("target ", config_->default_target(),
|
@@ -2103,6 +2086,20 @@ absl::Status RlsLb::UpdateLocked(UpdateArgs args) {
|
|
2103
2086
|
}
|
2104
2087
|
}
|
2105
2088
|
update_in_progress_ = false;
|
2089
|
+
// On the initial update only, we set the gauge metric callback. We
|
2090
|
+
// can't do this before the initial update, because otherwise the
|
2091
|
+
// callback could be invoked before we've set state that we need for
|
2092
|
+
// the label values (e.g., we'd add metrics with empty string for the
|
2093
|
+
// RLS server name).
|
2094
|
+
if (registered_metric_callback_ == nullptr) {
|
2095
|
+
registered_metric_callback_ =
|
2096
|
+
channel_control_helper()->GetStatsPluginGroup().RegisterCallback(
|
2097
|
+
[this](CallbackMetricReporter& reporter) {
|
2098
|
+
MutexLock lock(&mu_);
|
2099
|
+
cache_.ReportMetricsLocked(reporter);
|
2100
|
+
},
|
2101
|
+
Duration::Seconds(5), kMetricCacheSize, kMetricCacheEntries);
|
2102
|
+
}
|
2106
2103
|
// In principle, we need to update the picker here only if the config
|
2107
2104
|
// fields used by the picker have changed. However, it seems fragile
|
2108
2105
|
// to check individual fields, since the picker logic could change in
|
@@ -2137,18 +2134,22 @@ void RlsLb::ResetBackoffLocked() {
|
|
2137
2134
|
}
|
2138
2135
|
|
2139
2136
|
void RlsLb::ShutdownLocked() {
|
2140
|
-
|
2141
|
-
gpr_log(GPR_INFO, "[rlslb %p] policy shutdown", this);
|
2142
|
-
}
|
2137
|
+
GRPC_TRACE_LOG(rls_lb, INFO) << "[rlslb " << this << "] policy shutdown";
|
2143
2138
|
registered_metric_callback_.reset();
|
2144
|
-
|
2145
|
-
|
2146
|
-
|
2139
|
+
RefCountedPtr<ChildPolicyWrapper> child_policy_to_delete;
|
2140
|
+
std::vector<RefCountedPtr<ChildPolicyWrapper>>
|
2141
|
+
child_policy_wrappers_to_delete;
|
2142
|
+
OrphanablePtr<RlsChannel> rls_channel_to_delete;
|
2143
|
+
{
|
2144
|
+
MutexLock lock(&mu_);
|
2145
|
+
is_shutdown_ = true;
|
2146
|
+
config_.reset(DEBUG_LOCATION, "ShutdownLocked");
|
2147
|
+
child_policy_wrappers_to_delete = cache_.Shutdown();
|
2148
|
+
request_map_.clear();
|
2149
|
+
rls_channel_to_delete = std::move(rls_channel_);
|
2150
|
+
child_policy_to_delete = std::move(default_child_policy_);
|
2151
|
+
}
|
2147
2152
|
channel_args_ = ChannelArgs();
|
2148
|
-
cache_.Shutdown();
|
2149
|
-
request_map_.clear();
|
2150
|
-
rls_channel_.reset();
|
2151
|
-
default_child_policy_.reset();
|
2152
2153
|
}
|
2153
2154
|
|
2154
2155
|
void RlsLb::UpdatePickerAsync() {
|
@@ -2181,9 +2182,7 @@ void RlsLb::UpdatePickerLocked() {
|
|
2181
2182
|
// all children. This avoids unnecessary picker churn while an update
|
2182
2183
|
// is being propagated to our children.
|
2183
2184
|
if (update_in_progress_) return;
|
2184
|
-
|
2185
|
-
gpr_log(GPR_INFO, "[rlslb %p] updating picker", this);
|
2186
|
-
}
|
2185
|
+
GRPC_TRACE_LOG(rls_lb, INFO) << "[rlslb " << this << "] updating picker";
|
2187
2186
|
grpc_connectivity_state state = GRPC_CHANNEL_IDLE;
|
2188
2187
|
if (!child_policy_map_.empty()) {
|
2189
2188
|
state = GRPC_CHANNEL_TRANSIENT_FAILURE;
|
@@ -2194,11 +2193,9 @@ void RlsLb::UpdatePickerLocked() {
|
|
2194
2193
|
if (is_shutdown_) return;
|
2195
2194
|
for (auto& p : child_policy_map_) {
|
2196
2195
|
grpc_connectivity_state child_state = p.second->connectivity_state();
|
2197
|
-
|
2198
|
-
|
2199
|
-
|
2200
|
-
ConnectivityStateName(child_state));
|
2201
|
-
}
|
2196
|
+
GRPC_TRACE_LOG(rls_lb, INFO)
|
2197
|
+
<< "[rlslb " << this << "] target " << p.second->target()
|
2198
|
+
<< " in state " << ConnectivityStateName(child_state);
|
2202
2199
|
if (child_state == GRPC_CHANNEL_READY) {
|
2203
2200
|
state = GRPC_CHANNEL_READY;
|
2204
2201
|
break;
|
@@ -2217,10 +2214,8 @@ void RlsLb::UpdatePickerLocked() {
|
|
2217
2214
|
}
|
2218
2215
|
}
|
2219
2216
|
}
|
2220
|
-
|
2221
|
-
|
2222
|
-
ConnectivityStateName(state));
|
2223
|
-
}
|
2217
|
+
GRPC_TRACE_LOG(rls_lb, INFO) << "[rlslb " << this << "] reporting state "
|
2218
|
+
<< ConnectivityStateName(state);
|
2224
2219
|
absl::Status status;
|
2225
2220
|
if (state == GRPC_CHANNEL_TRANSIENT_FAILURE) {
|
2226
2221
|
status = absl::UnavailableError("no children available");
|
@@ -2230,9 +2225,9 @@ void RlsLb::UpdatePickerLocked() {
|
|
2230
2225
|
MakeRefCounted<Picker>(RefAsSubclass<RlsLb>(DEBUG_LOCATION, "Picker")));
|
2231
2226
|
}
|
2232
2227
|
|
2233
|
-
|
2234
|
-
|
2235
|
-
|
2228
|
+
template <typename HandleType>
|
2229
|
+
void RlsLb::MaybeExportPickCount(HandleType handle, absl::string_view target,
|
2230
|
+
const PickResult& pick_result) {
|
2236
2231
|
absl::string_view pick_result_string = Match(
|
2237
2232
|
pick_result.result,
|
2238
2233
|
[](const LoadBalancingPolicy::PickResult::Complete&) {
|
@@ -2593,7 +2588,7 @@ class RlsLbFactory final : public LoadBalancingPolicyFactory {
|
|
2593
2588
|
absl::StatusOr<RefCountedPtr<LoadBalancingPolicy::Config>>
|
2594
2589
|
ParseLoadBalancingConfig(const Json& json) const override {
|
2595
2590
|
return LoadFromJson<RefCountedPtr<RlsLbConfig>>(
|
2596
|
-
json, JsonArgs(), "errors
|
2591
|
+
json, JsonArgs(), "errors validating RLS LB policy config");
|
2597
2592
|
}
|
2598
2593
|
};
|
2599
2594
|
|