grpc 1.60.0 → 1.62.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Makefile +397 -332
- data/include/grpc/event_engine/event_engine.h +25 -16
- data/include/grpc/event_engine/extensible.h +68 -0
- data/include/grpc/event_engine/internal/memory_allocator_impl.h +6 -0
- data/include/grpc/event_engine/internal/slice_cast.h +12 -0
- data/include/grpc/event_engine/memory_allocator.h +3 -1
- data/include/grpc/event_engine/slice.h +5 -0
- data/include/grpc/grpc_security.h +22 -1
- data/include/grpc/impl/call.h +29 -0
- data/include/grpc/impl/channel_arg_names.h +12 -1
- data/include/grpc/impl/slice_type.h +1 -1
- data/include/grpc/module.modulemap +1 -0
- data/include/grpc/support/port_platform.h +12 -20
- data/src/core/{ext/filters/client_channel → client_channel}/backend_metric.cc +3 -3
- data/src/core/{ext/filters/client_channel → client_channel}/backend_metric.h +4 -4
- data/src/core/{ext/filters/client_channel → client_channel}/backup_poller.cc +1 -1
- data/src/core/{ext/filters/client_channel → client_channel}/backup_poller.h +3 -3
- data/src/core/{ext/filters/client_channel → client_channel}/channel_connectivity.cc +11 -11
- data/src/core/{ext/filters/client_channel → client_channel}/client_channel_channelz.cc +1 -1
- data/src/core/{ext/filters/client_channel → client_channel}/client_channel_channelz.h +3 -3
- data/src/core/{ext/filters/client_channel → client_channel}/client_channel_factory.cc +1 -1
- data/src/core/{ext/filters/client_channel → client_channel}/client_channel_factory.h +4 -4
- data/src/core/{ext/filters/client_channel/client_channel.cc → client_channel/client_channel_filter.cc} +278 -236
- data/src/core/{ext/filters/client_channel/client_channel.h → client_channel/client_channel_filter.h} +42 -42
- data/src/core/{ext/filters/client_channel → client_channel}/client_channel_internal.h +8 -6
- data/src/core/{ext/filters/client_channel → client_channel}/client_channel_plugin.cc +5 -5
- data/src/core/{ext/filters/client_channel → client_channel}/client_channel_service_config.cc +2 -2
- data/src/core/{ext/filters/client_channel → client_channel}/client_channel_service_config.h +5 -5
- data/src/core/{ext/filters/client_channel → client_channel}/config_selector.cc +1 -1
- data/src/core/{ext/filters/client_channel → client_channel}/config_selector.h +5 -5
- data/src/core/{ext/filters/client_channel → client_channel}/connector.h +3 -3
- data/src/core/{ext/filters/client_channel → client_channel}/dynamic_filters.cc +1 -1
- data/src/core/{ext/filters/client_channel → client_channel}/dynamic_filters.h +3 -3
- data/src/core/{ext/filters/client_channel → client_channel}/global_subchannel_pool.cc +3 -3
- data/src/core/{ext/filters/client_channel → client_channel}/global_subchannel_pool.h +4 -4
- data/src/core/{ext/filters/client_channel → client_channel}/http_proxy_mapper.cc +1 -1
- data/src/core/{ext/filters/client_channel → client_channel}/http_proxy_mapper.h +3 -3
- data/src/core/{ext/filters/client_channel → client_channel}/local_subchannel_pool.cc +2 -2
- data/src/core/{ext/filters/client_channel → client_channel}/local_subchannel_pool.h +4 -4
- data/src/core/{ext/filters/client_channel → client_channel}/retry_filter.cc +9 -8
- data/src/core/{ext/filters/client_channel → client_channel}/retry_filter.h +8 -8
- data/src/core/{ext/filters/client_channel → client_channel}/retry_filter_legacy_call_data.cc +12 -9
- data/src/core/{ext/filters/client_channel → client_channel}/retry_filter_legacy_call_data.h +11 -10
- data/src/core/{ext/filters/client_channel → client_channel}/retry_service_config.cc +1 -1
- data/src/core/{ext/filters/client_channel → client_channel}/retry_service_config.h +4 -4
- data/src/core/{ext/filters/client_channel → client_channel}/retry_throttle.cc +1 -1
- data/src/core/{ext/filters/client_channel → client_channel}/retry_throttle.h +3 -3
- data/src/core/{ext/filters/client_channel → client_channel}/service_config_channel_arg_filter.cc +39 -21
- data/src/core/{ext/filters/client_channel → client_channel}/subchannel.cc +2 -2
- data/src/core/{ext/filters/client_channel → client_channel}/subchannel.h +6 -6
- data/src/core/{ext/filters/client_channel → client_channel}/subchannel_interface_internal.h +5 -5
- data/src/core/{ext/filters/client_channel → client_channel}/subchannel_pool_interface.cc +1 -1
- data/src/core/{ext/filters/client_channel → client_channel}/subchannel_pool_interface.h +3 -3
- data/src/core/{ext/filters/client_channel → client_channel}/subchannel_stream_client.cc +1 -1
- data/src/core/{ext/filters/client_channel → client_channel}/subchannel_stream_client.h +4 -4
- data/src/core/ext/filters/backend_metrics/backend_metric_filter.cc +55 -8
- data/src/core/ext/filters/backend_metrics/backend_metric_filter.h +20 -6
- data/src/core/ext/filters/channel_idle/channel_idle_filter.cc +10 -13
- data/src/core/ext/filters/channel_idle/channel_idle_filter.h +18 -10
- data/src/core/ext/filters/channel_idle/legacy_channel_idle_filter.cc +326 -0
- data/src/core/ext/filters/channel_idle/legacy_channel_idle_filter.h +143 -0
- data/src/core/ext/filters/deadline/deadline_filter.cc +12 -0
- data/src/core/ext/filters/fault_injection/fault_injection_filter.cc +18 -14
- data/src/core/ext/filters/fault_injection/fault_injection_filter.h +13 -4
- data/src/core/ext/filters/fault_injection/fault_injection_service_config_parser.h +1 -1
- data/src/core/ext/filters/http/client/http_client_filter.cc +23 -32
- data/src/core/ext/filters/http/client/http_client_filter.h +10 -5
- data/src/core/ext/filters/http/client_authority_filter.cc +14 -14
- data/src/core/ext/filters/http/client_authority_filter.h +12 -4
- data/src/core/ext/filters/http/http_filters_plugin.cc +42 -20
- data/src/core/ext/filters/http/message_compress/compression_filter.cc +55 -80
- data/src/core/ext/filters/http/message_compress/compression_filter.h +54 -12
- data/src/core/ext/filters/http/message_compress/legacy_compression_filter.cc +325 -0
- data/src/core/ext/filters/http/message_compress/legacy_compression_filter.h +139 -0
- data/src/core/ext/filters/http/server/http_server_filter.cc +41 -41
- data/src/core/ext/filters/http/server/http_server_filter.h +11 -4
- data/src/core/ext/filters/message_size/message_size_filter.cc +57 -77
- data/src/core/ext/filters/message_size/message_size_filter.h +36 -24
- data/src/core/ext/filters/rbac/rbac_filter.cc +16 -12
- data/src/core/ext/filters/rbac/rbac_filter.h +11 -4
- data/src/core/ext/filters/rbac/rbac_service_config_parser.h +1 -1
- data/src/core/ext/filters/server_config_selector/server_config_selector.h +2 -2
- data/src/core/ext/filters/server_config_selector/server_config_selector_filter.cc +27 -15
- data/src/core/ext/filters/stateful_session/stateful_session_filter.cc +48 -51
- data/src/core/ext/filters/stateful_session/stateful_session_filter.h +22 -5
- data/src/core/ext/filters/stateful_session/stateful_session_service_config_parser.h +1 -1
- data/src/core/ext/transport/chttp2/alpn/alpn.cc +5 -2
- data/src/core/ext/transport/chttp2/client/chttp2_connector.cc +7 -7
- data/src/core/ext/transport/chttp2/client/chttp2_connector.h +1 -1
- data/src/core/ext/transport/chttp2/server/chttp2_server.cc +11 -2
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +67 -145
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.h +3 -3
- data/src/core/ext/transport/chttp2/transport/flow_control.cc +21 -82
- data/src/core/ext/transport/chttp2/transport/flow_control.h +1 -8
- data/src/core/ext/transport/chttp2/transport/frame.cc +506 -0
- data/src/core/ext/transport/chttp2/transport/frame.h +214 -0
- data/src/core/ext/transport/chttp2/transport/frame_rst_stream.cc +1 -1
- data/src/core/ext/transport/chttp2/transport/frame_settings.cc +33 -79
- data/src/core/ext/transport/chttp2/transport/frame_settings.h +4 -7
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.h +5 -0
- data/src/core/ext/transport/chttp2/transport/hpack_parser.h +3 -1
- data/src/core/ext/transport/chttp2/transport/hpack_parser_table.h +3 -1
- data/src/core/ext/transport/chttp2/transport/http2_settings.cc +122 -32
- data/src/core/ext/transport/chttp2/transport/http2_settings.h +142 -37
- data/src/core/ext/transport/chttp2/transport/internal.h +1 -22
- data/src/core/ext/transport/chttp2/transport/parsing.cc +23 -37
- data/src/core/ext/transport/chttp2/transport/writing.cc +26 -58
- data/src/core/ext/transport/inproc/inproc_transport.cc +179 -13
- data/src/core/ext/transport/inproc/inproc_transport.h +8 -0
- data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb.h +351 -164
- data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb_minitable.c +89 -50
- data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb_minitable.h +2 -0
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb.h +47 -3
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb_minitable.c +15 -7
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb.h +32 -3
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb_minitable.c +8 -5
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb.h +28 -0
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb_minitable.c +6 -4
- data/src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb.h +0 -1
- data/src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb_minitable.c +0 -1
- data/src/core/ext/upb-gen/envoy/config/core/v3/address.upb.h +29 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/address.upb_minitable.c +7 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/base.upb.h +17 -1
- data/src/core/ext/upb-gen/envoy/config/core/v3/base.upb_minitable.c +4 -3
- data/src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb.h +166 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb_minitable.c +55 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb_minitable.h +30 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb.h +30 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb_minitable.c +7 -5
- data/src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb.h +99 -19
- data/src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb_minitable.c +29 -12
- data/src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb_minitable.h +1 -0
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb.h +15 -0
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb_minitable.c +4 -3
- data/src/core/ext/upb-gen/envoy/config/route/v3/route.upb.h +31 -3
- data/src/core/ext/upb-gen/envoy/config/route/v3/route.upb_minitable.c +22 -4
- data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb.h +91 -3
- data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb_minitable.c +11 -8
- data/src/core/ext/upb-gen/envoy/config/tap/v3/common.upb.h +30 -0
- data/src/core/ext/upb-gen/envoy/config/tap/v3/common.upb_minitable.c +7 -4
- data/src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb.h +1 -0
- data/src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb_minitable.c +1 -0
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb.h +125 -3
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb_minitable.c +17 -4
- data/src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb.h +19 -1
- data/src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb_minitable.c +4 -3
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb.h +1 -0
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb_minitable.c +1 -0
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb.h +15 -0
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb_minitable.c +5 -2
- data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h +42 -0
- data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb_minitable.c +11 -8
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb.h +23 -8
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb_minitable.c +9 -4
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb.h +58 -16
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb_minitable.c +14 -11
- data/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb.h +712 -0
- data/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb_minitable.c +151 -0
- data/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb_minitable.h +33 -0
- data/src/core/ext/upb-gen/envoy/service/status/v3/csds.upb.h +15 -0
- data/src/core/ext/upb-gen/envoy/service/status/v3/csds.upb_minitable.c +7 -2
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb.h +129 -0
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb_minitable.c +27 -6
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb_minitable.h +1 -0
- data/src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb.h +15 -0
- data/src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb_minitable.c +5 -2
- data/src/core/ext/upbdefs-gen/envoy/config/accesslog/v3/accesslog.upbdefs.c +60 -60
- data/src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3/bootstrap.upbdefs.c +278 -256
- data/src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3/bootstrap.upbdefs.h +10 -0
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/cluster.upbdefs.c +483 -475
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/filter.upbdefs.c +27 -20
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/outlier_detection.upbdefs.c +17 -12
- data/src/core/ext/upbdefs-gen/envoy/config/common/matcher/v3/matcher.upbdefs.c +157 -161
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/address.upbdefs.c +105 -97
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/base.upbdefs.c +106 -102
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_service.upbdefs.c +52 -0
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_service.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_uri.upbdefs.c +14 -13
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/protocol.upbdefs.c +228 -224
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/substitution_format_string.upbdefs.c +32 -26
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/substitution_format_string.upbdefs.h +5 -0
- data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint.upbdefs.c +31 -28
- data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route.upbdefs.c +22 -19
- data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route_components.upbdefs.c +818 -813
- data/src/core/ext/upbdefs-gen/envoy/config/tap/v3/common.upbdefs.c +158 -151
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/dynamic_ot.upbdefs.c +27 -23
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opencensus.upbdefs.c +59 -53
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opentelemetry.upbdefs.c +40 -18
- data/src/core/ext/upbdefs-gen/envoy/data/accesslog/v3/accesslog.upbdefs.c +106 -103
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/router/v3/router.upbdefs.c +16 -12
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upbdefs.c +22 -21
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.c +265 -261
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.c +127 -125
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.c +188 -182
- data/src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upbdefs.c +133 -0
- data/src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upbdefs.h +50 -0
- data/src/core/ext/upbdefs-gen/envoy/service/status/v3/csds.upbdefs.c +57 -56
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/value.upbdefs.c +27 -20
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/value.upbdefs.h +5 -0
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/cel.upbdefs.c +10 -8
- data/src/core/ext/xds/certificate_provider_store.cc +2 -1
- data/src/core/ext/xds/certificate_provider_store.h +0 -5
- data/src/core/ext/xds/xds_api.cc +92 -166
- data/src/core/ext/xds/xds_api.h +4 -9
- data/src/core/ext/xds/xds_bootstrap.h +6 -4
- data/src/core/ext/xds/xds_bootstrap_grpc.cc +4 -15
- data/src/core/ext/xds/xds_bootstrap_grpc.h +2 -1
- data/src/core/ext/xds/xds_certificate_provider.cc +88 -287
- data/src/core/ext/xds/xds_certificate_provider.h +44 -111
- data/src/core/ext/xds/xds_client.cc +526 -468
- data/src/core/ext/xds/xds_client.h +50 -36
- data/src/core/ext/xds/xds_client_grpc.cc +56 -16
- data/src/core/ext/xds/xds_client_grpc.h +4 -1
- data/src/core/ext/xds/xds_client_stats.cc +11 -11
- data/src/core/ext/xds/xds_client_stats.h +8 -13
- data/src/core/ext/xds/xds_cluster.cc +105 -12
- data/src/core/ext/xds/xds_cluster.h +10 -2
- data/src/core/ext/xds/xds_cluster_specifier_plugin.cc +9 -5
- data/src/core/ext/xds/xds_common_types.cc +14 -10
- data/src/core/ext/xds/xds_endpoint.cc +9 -4
- data/src/core/ext/xds/xds_endpoint.h +6 -2
- data/src/core/ext/xds/xds_health_status.cc +12 -2
- data/src/core/ext/xds/xds_health_status.h +5 -3
- data/src/core/ext/xds/xds_http_rbac_filter.cc +5 -3
- data/src/core/ext/xds/xds_lb_policy_registry.cc +1 -1
- data/src/core/ext/xds/xds_listener.cc +14 -8
- data/src/core/ext/xds/xds_resource_type_impl.h +6 -4
- data/src/core/ext/xds/xds_route_config.cc +35 -23
- data/src/core/ext/xds/xds_route_config.h +1 -0
- data/src/core/ext/xds/xds_server_config_fetcher.cc +63 -59
- data/src/core/ext/xds/xds_transport.h +3 -0
- data/src/core/ext/xds/xds_transport_grpc.cc +52 -55
- data/src/core/ext/xds/xds_transport_grpc.h +4 -0
- data/src/core/lib/channel/call_tracer.cc +12 -0
- data/src/core/lib/channel/call_tracer.h +17 -3
- data/src/core/lib/channel/channel_args.cc +24 -14
- data/src/core/lib/channel/channel_args.h +89 -14
- data/src/core/lib/channel/channel_stack.cc +27 -0
- data/src/core/lib/channel/channel_stack.h +10 -10
- data/src/core/lib/channel/connected_channel.cc +77 -30
- data/src/core/lib/channel/promise_based_filter.cc +4 -4
- data/src/core/lib/channel/promise_based_filter.h +1040 -1
- data/src/core/lib/channel/server_call_tracer_filter.cc +43 -35
- data/src/core/lib/compression/compression_internal.cc +0 -3
- data/src/core/lib/config/core_configuration.h +3 -3
- data/src/core/lib/event_engine/ares_resolver.cc +141 -73
- data/src/core/lib/event_engine/ares_resolver.h +9 -10
- data/src/core/lib/event_engine/cf_engine/cfstream_endpoint.cc +4 -0
- data/src/core/lib/event_engine/cf_engine/dns_service_resolver.cc +8 -1
- data/src/core/lib/event_engine/extensions/can_track_errors.h +40 -0
- data/src/core/lib/event_engine/extensions/supports_fd.h +160 -0
- data/src/core/lib/event_engine/forkable.cc +7 -5
- data/src/core/lib/event_engine/posix.h +11 -122
- data/src/core/lib/event_engine/posix_engine/native_posix_dns_resolver.cc +132 -0
- data/src/core/lib/event_engine/posix_engine/native_posix_dns_resolver.h +57 -0
- data/src/core/lib/event_engine/posix_engine/posix_endpoint.cc +31 -7
- data/src/core/lib/event_engine/posix_engine/posix_endpoint.h +1 -0
- data/src/core/lib/event_engine/posix_engine/posix_engine.cc +54 -39
- data/src/core/lib/event_engine/posix_engine/posix_engine.h +6 -12
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener.cc +14 -6
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.cc +21 -3
- data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.cc +9 -2
- data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.h +7 -0
- data/src/core/lib/event_engine/posix_engine/timer_manager.cc +17 -27
- data/src/core/lib/event_engine/posix_engine/timer_manager.h +0 -3
- data/src/core/lib/event_engine/query_extensions.h +85 -0
- data/src/core/lib/event_engine/ref_counted_dns_resolver_interface.h +55 -0
- data/src/core/lib/event_engine/shim.cc +3 -17
- data/src/core/lib/event_engine/shim.h +0 -2
- data/src/core/lib/event_engine/thread_pool/thread_count.cc +28 -7
- data/src/core/lib/event_engine/thread_pool/thread_count.h +6 -1
- data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.cc +109 -5
- data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.h +9 -0
- data/src/core/lib/event_engine/utils.cc +2 -1
- data/src/core/lib/event_engine/windows/grpc_polled_fd_windows.cc +1 -0
- data/src/core/lib/event_engine/windows/native_windows_dns_resolver.cc +115 -0
- data/src/core/lib/event_engine/windows/native_windows_dns_resolver.h +51 -0
- data/src/core/lib/event_engine/windows/windows_engine.cc +7 -7
- data/src/core/lib/experiments/config.cc +23 -2
- data/src/core/lib/experiments/config.h +9 -0
- data/src/core/lib/experiments/experiments.cc +296 -378
- data/src/core/lib/experiments/experiments.h +64 -162
- data/src/core/lib/gpr/posix/sync.cc +2 -2
- data/src/core/lib/gpr/posix/time.cc +0 -5
- data/src/core/lib/gpr/windows/sync.cc +2 -2
- data/src/core/lib/gprpp/debug_location.h +15 -0
- data/src/core/lib/gprpp/down_cast.h +49 -0
- data/src/core/lib/gprpp/dual_ref_counted.h +36 -7
- data/src/core/lib/gprpp/linux/env.cc +1 -19
- data/src/core/lib/gprpp/load_file.cc +2 -1
- data/src/core/lib/gprpp/load_file.h +2 -1
- data/src/core/lib/gprpp/orphanable.h +27 -0
- data/src/core/lib/gprpp/posix/thd.cc +27 -2
- data/src/core/lib/gprpp/ref_counted.h +63 -22
- data/src/core/lib/gprpp/ref_counted_ptr.h +70 -27
- data/src/core/lib/gprpp/ref_counted_string.h +13 -0
- data/src/core/lib/gprpp/status_helper.cc +1 -2
- data/src/core/lib/gprpp/thd.h +8 -0
- data/src/core/lib/gprpp/time.h +4 -3
- data/src/core/lib/gprpp/windows/directory_reader.cc +1 -0
- data/src/core/lib/gprpp/windows/thd.cc +10 -1
- data/src/core/lib/iomgr/combiner.cc +16 -52
- data/src/core/lib/iomgr/event_engine_shims/endpoint.cc +51 -14
- data/src/core/lib/iomgr/event_engine_shims/endpoint.h +16 -0
- data/src/core/lib/iomgr/grpc_if_nametoindex_posix.cc +2 -2
- data/src/core/lib/iomgr/grpc_if_nametoindex_unsupported.cc +2 -2
- data/src/core/lib/iomgr/tcp_client_posix.cc +4 -3
- data/src/core/lib/iomgr/tcp_server_posix.cc +65 -50
- data/src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc +12 -0
- data/src/core/lib/json/json_writer.cc +1 -1
- data/src/core/lib/promise/activity.cc +17 -2
- data/src/core/lib/promise/activity.h +13 -6
- data/src/core/lib/promise/all_ok.h +80 -0
- data/src/core/lib/promise/context.h +45 -7
- data/src/core/lib/promise/detail/join_state.h +2077 -0
- data/src/core/lib/promise/detail/promise_factory.h +1 -0
- data/src/core/lib/promise/detail/promise_like.h +8 -1
- data/src/core/lib/promise/detail/seq_state.h +3458 -150
- data/src/core/lib/promise/detail/status.h +42 -5
- data/src/core/lib/promise/for_each.h +13 -4
- data/src/core/lib/promise/if.h +4 -0
- data/src/core/lib/promise/interceptor_list.h +13 -5
- data/src/core/lib/promise/latch.h +9 -6
- data/src/core/lib/promise/party.cc +45 -31
- data/src/core/lib/promise/party.h +176 -9
- data/src/core/lib/promise/pipe.h +2 -7
- data/src/core/lib/promise/poll.h +39 -13
- data/src/core/lib/promise/promise.h +4 -0
- data/src/core/lib/promise/seq.h +107 -7
- data/src/core/lib/promise/sleep.cc +1 -1
- data/src/core/lib/promise/status_flag.h +226 -0
- data/src/core/lib/promise/try_join.h +132 -0
- data/src/core/lib/promise/try_seq.h +132 -10
- data/src/core/lib/resource_quota/arena.h +2 -2
- data/src/core/lib/resource_quota/memory_quota.cc +61 -12
- data/src/core/lib/resource_quota/memory_quota.h +6 -0
- data/src/core/lib/security/authorization/grpc_server_authz_filter.cc +14 -11
- data/src/core/lib/security/authorization/grpc_server_authz_filter.h +14 -5
- data/src/core/lib/security/credentials/external/aws_external_account_credentials.cc +4 -0
- data/src/core/lib/security/credentials/external/aws_external_account_credentials.h +4 -0
- data/src/core/lib/security/credentials/external/external_account_credentials.cc +28 -20
- data/src/core/lib/security/credentials/external/external_account_credentials.h +4 -0
- data/src/core/lib/security/credentials/external/file_external_account_credentials.cc +9 -11
- data/src/core/lib/security/credentials/external/file_external_account_credentials.h +4 -0
- data/src/core/lib/security/credentials/external/url_external_account_credentials.cc +4 -0
- data/src/core/lib/security/credentials/external/url_external_account_credentials.h +4 -0
- data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +11 -10
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +9 -7
- data/src/core/lib/security/credentials/plugin/plugin_credentials.cc +2 -1
- data/src/core/lib/security/credentials/plugin/plugin_credentials.h +1 -1
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.cc +16 -24
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.h +0 -3
- data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc +12 -0
- data/src/core/lib/security/credentials/tls/grpc_tls_crl_provider.cc +22 -5
- data/src/core/lib/security/credentials/tls/grpc_tls_crl_provider.h +1 -5
- data/src/core/lib/security/credentials/tls/tls_credentials.cc +16 -0
- data/src/core/lib/security/credentials/xds/xds_credentials.cc +22 -29
- data/src/core/lib/security/credentials/xds/xds_credentials.h +2 -4
- data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +1 -1
- data/src/core/lib/security/security_connector/load_system_roots_supported.cc +3 -7
- data/src/core/lib/security/security_connector/local/local_security_connector.cc +1 -1
- data/src/core/lib/security/security_connector/ssl_utils.cc +26 -17
- data/src/core/lib/security/security_connector/tls/tls_security_connector.cc +4 -3
- data/src/core/lib/security/transport/auth_filters.h +71 -4
- data/src/core/lib/security/transport/client_auth_filter.cc +2 -4
- data/src/core/lib/security/transport/legacy_server_auth_filter.cc +244 -0
- data/src/core/lib/security/transport/security_handshaker.cc +0 -8
- data/src/core/lib/security/transport/security_handshaker.h +0 -6
- data/src/core/lib/security/transport/server_auth_filter.cc +70 -90
- data/src/core/lib/slice/slice_buffer.h +6 -1
- data/src/core/lib/surface/builtins.cc +1 -1
- data/src/core/lib/surface/call.cc +783 -210
- data/src/core/lib/surface/call.h +26 -13
- data/src/core/lib/surface/call_trace.cc +46 -5
- data/src/core/lib/surface/channel.cc +15 -25
- data/src/core/lib/surface/channel.h +4 -26
- data/src/core/lib/surface/channel_init.cc +81 -7
- data/src/core/lib/surface/channel_init.h +129 -5
- data/src/core/lib/surface/init.cc +15 -9
- data/src/core/lib/surface/server.cc +255 -239
- data/src/core/lib/surface/server.h +26 -54
- data/src/core/lib/surface/version.cc +2 -2
- data/src/core/lib/surface/wait_for_cq_end_op.cc +75 -0
- data/src/core/lib/surface/wait_for_cq_end_op.h +72 -0
- data/src/core/lib/transport/batch_builder.cc +2 -3
- data/src/core/lib/transport/batch_builder.h +1 -1
- data/src/core/lib/transport/call_factory.cc +41 -0
- data/src/core/lib/transport/call_factory.h +56 -0
- data/src/core/lib/transport/call_filters.cc +371 -0
- data/src/core/lib/transport/call_filters.h +1500 -0
- data/src/core/lib/transport/call_final_info.cc +38 -0
- data/src/core/lib/transport/call_final_info.h +54 -0
- data/src/core/lib/transport/call_size_estimator.cc +41 -0
- data/src/core/lib/transport/call_size_estimator.h +52 -0
- data/src/core/lib/transport/call_spine.cc +107 -0
- data/src/core/lib/transport/call_spine.h +429 -0
- data/src/core/lib/transport/connectivity_state.cc +3 -2
- data/src/core/lib/transport/connectivity_state.h +4 -0
- data/src/core/lib/transport/handshaker.cc +0 -8
- data/src/core/lib/transport/handshaker.h +0 -7
- data/src/core/lib/transport/message.cc +45 -0
- data/src/core/lib/transport/message.h +61 -0
- data/src/core/lib/transport/metadata.cc +37 -0
- data/src/core/lib/transport/metadata.h +78 -0
- data/src/core/lib/transport/metadata_batch.cc +4 -2
- data/src/core/lib/transport/metadata_batch.h +6 -6
- data/src/core/lib/transport/transport.cc +3 -57
- data/src/core/lib/transport/transport.h +23 -102
- data/src/core/load_balancing/address_filtering.cc +108 -0
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/address_filtering.h +7 -6
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/backend_metric_data.h +3 -3
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/child_policy_handler.cc +6 -5
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/child_policy_handler.h +4 -4
- data/src/core/{lib/load_balancing → load_balancing}/delegating_helper.h +5 -5
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/endpoint_list.cc +18 -21
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/endpoint_list.h +14 -11
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/grpclb/client_load_reporting_filter.cc +2 -2
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/grpclb/client_load_reporting_filter.h +3 -3
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/grpclb/grpclb.cc +158 -111
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/grpclb/grpclb.h +3 -3
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/grpclb/grpclb_balancer_addresses.cc +1 -1
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/grpclb/grpclb_balancer_addresses.h +4 -4
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/grpclb/grpclb_client_stats.cc +1 -1
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/grpclb/grpclb_client_stats.h +3 -3
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/grpclb/load_balancer_api.cc +1 -1
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/grpclb/load_balancer_api.h +4 -4
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/health_check_client.cc +15 -10
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/health_check_client.h +4 -4
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/health_check_client_internal.h +7 -7
- data/src/core/{lib/load_balancing → load_balancing}/lb_policy.cc +1 -1
- data/src/core/{lib/load_balancing → load_balancing}/lb_policy.h +7 -7
- data/src/core/{lib/load_balancing → load_balancing}/lb_policy_factory.h +4 -4
- data/src/core/{lib/load_balancing → load_balancing}/lb_policy_registry.cc +2 -2
- data/src/core/{lib/load_balancing → load_balancing}/lb_policy_registry.h +5 -5
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/oob_backend_metric.cc +15 -10
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/oob_backend_metric.h +5 -5
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/oob_backend_metric_internal.h +8 -8
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/outlier_detection/outlier_detection.cc +20 -21
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/outlier_detection/outlier_detection.h +3 -3
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/pick_first/pick_first.cc +100 -99
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/pick_first/pick_first.h +4 -4
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/priority/priority.cc +13 -11
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/ring_hash/ring_hash.cc +20 -23
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/ring_hash/ring_hash.h +4 -4
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/rls/rls.cc +51 -29
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/round_robin/round_robin.cc +32 -35
- data/src/core/{lib/load_balancing → load_balancing}/subchannel_interface.h +3 -3
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/subchannel_list.h +17 -17
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/weighted_round_robin/static_stride_scheduler.cc +1 -1
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/weighted_round_robin/static_stride_scheduler.h +3 -3
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/weighted_round_robin/weighted_round_robin.cc +47 -45
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/weighted_target/weighted_target.cc +18 -16
- data/src/core/load_balancing/xds/cds.cc +757 -0
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/xds/xds_channel_args.h +4 -4
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/xds/xds_cluster_impl.cc +241 -131
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/xds/xds_cluster_manager.cc +15 -13
- data/src/core/load_balancing/xds/xds_override_host.cc +1313 -0
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/xds/xds_override_host.h +6 -10
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/xds/xds_wrr_locality.cc +13 -14
- data/src/core/plugin_registry/grpc_plugin_registry.cc +3 -0
- data/src/core/plugin_registry/grpc_plugin_registry_extra.cc +0 -3
- data/src/core/{ext/filters/client_channel/resolver → resolver}/binder/binder_resolver.cc +3 -3
- data/src/core/{ext/filters/client_channel/resolver → resolver}/dns/c_ares/dns_resolver_ares.cc +11 -10
- data/src/core/{ext/filters/client_channel/resolver → resolver}/dns/c_ares/dns_resolver_ares.h +3 -3
- data/src/core/{ext/filters/client_channel/resolver → resolver}/dns/c_ares/grpc_ares_ev_driver.h +4 -4
- data/src/core/{ext/filters/client_channel/resolver → resolver}/dns/c_ares/grpc_ares_ev_driver_posix.cc +2 -2
- data/src/core/{ext/filters/client_channel/resolver → resolver}/dns/c_ares/grpc_ares_ev_driver_windows.cc +2 -2
- data/src/core/{ext/filters/client_channel/resolver → resolver}/dns/c_ares/grpc_ares_wrapper.cc +2 -2
- data/src/core/{ext/filters/client_channel/resolver → resolver}/dns/c_ares/grpc_ares_wrapper.h +4 -4
- data/src/core/{ext/filters/client_channel/resolver → resolver}/dns/c_ares/grpc_ares_wrapper_posix.cc +1 -1
- data/src/core/{ext/filters/client_channel/resolver → resolver}/dns/c_ares/grpc_ares_wrapper_windows.cc +2 -2
- data/src/core/{ext/filters/client_channel/resolver → resolver}/dns/dns_resolver_plugin.cc +7 -5
- data/src/core/{ext/filters/client_channel/resolver → resolver}/dns/dns_resolver_plugin.h +3 -3
- data/src/core/{ext/filters/client_channel/resolver → resolver}/dns/event_engine/event_engine_client_channel_resolver.cc +12 -10
- data/src/core/{ext/filters/client_channel/resolver → resolver}/dns/event_engine/event_engine_client_channel_resolver.h +5 -5
- data/src/core/{ext/filters/client_channel/resolver → resolver}/dns/event_engine/service_config_helper.cc +1 -1
- data/src/core/{ext/filters/client_channel/resolver → resolver}/dns/event_engine/service_config_helper.h +3 -3
- data/src/core/{ext/filters/client_channel/resolver → resolver}/dns/native/dns_resolver.cc +4 -4
- data/src/core/{ext/filters/client_channel/resolver → resolver}/dns/native/dns_resolver.h +3 -3
- data/src/core/{lib/resolver → resolver}/endpoint_addresses.cc +1 -2
- data/src/core/{lib/resolver → resolver}/endpoint_addresses.h +51 -3
- data/src/core/{ext/filters/client_channel/resolver → resolver}/fake/fake_resolver.cc +4 -4
- data/src/core/{ext/filters/client_channel/resolver → resolver}/fake/fake_resolver.h +4 -4
- data/src/core/{ext/filters/client_channel/resolver → resolver}/google_c2p/google_c2p_resolver.cc +5 -5
- data/src/core/{ext/filters/client_channel/resolver → resolver}/polling_resolver.cc +9 -11
- data/src/core/{ext/filters/client_channel/resolver → resolver}/polling_resolver.h +5 -5
- data/src/core/{lib/resolver → resolver}/resolver.cc +1 -1
- data/src/core/{lib/resolver → resolver}/resolver.h +6 -6
- data/src/core/{lib/resolver → resolver}/resolver_factory.h +4 -4
- data/src/core/{lib/resolver → resolver}/resolver_registry.cc +1 -1
- data/src/core/{lib/resolver → resolver}/resolver_registry.h +5 -5
- data/src/core/{lib/resolver → resolver}/server_address.h +4 -4
- data/src/core/{ext/filters/client_channel/resolver → resolver}/sockaddr/sockaddr_resolver.cc +3 -3
- data/src/core/resolver/xds/xds_dependency_manager.cc +1031 -0
- data/src/core/resolver/xds/xds_dependency_manager.h +277 -0
- data/src/core/{ext/filters/client_channel/resolver → resolver}/xds/xds_resolver.cc +136 -278
- data/src/core/{ext/filters/client_channel/resolver/xds/xds_resolver.h → resolver/xds/xds_resolver_attributes.h} +6 -5
- data/src/core/resolver/xds/xds_resolver_trace.cc +25 -0
- data/src/core/resolver/xds/xds_resolver_trace.h +30 -0
- data/src/core/{lib/service_config → service_config}/service_config.h +4 -4
- data/src/core/{lib/service_config → service_config}/service_config_call_data.h +5 -5
- data/src/core/{lib/service_config → service_config}/service_config_impl.cc +2 -2
- data/src/core/{lib/service_config → service_config}/service_config_impl.h +5 -5
- data/src/core/{lib/service_config → service_config}/service_config_parser.cc +1 -1
- data/src/core/{lib/service_config → service_config}/service_config_parser.h +3 -3
- data/src/core/tsi/alts/handshaker/alts_handshaker_client.cc +1 -1
- data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc +1 -1
- data/src/core/tsi/alts/handshaker/transport_security_common_api.cc +1 -1
- data/src/core/tsi/fake_transport_security.cc +1 -1
- data/src/core/tsi/ssl_transport_security.cc +65 -43
- data/src/ruby/ext/grpc/extconf.rb +0 -1
- data/src/ruby/ext/grpc/rb_channel.c +11 -5
- data/src/ruby/ext/grpc/rb_channel_args.c +3 -1
- data/src/ruby/ext/grpc/rb_event_thread.c +9 -3
- data/src/ruby/ext/grpc/rb_grpc.c +0 -1
- data/src/ruby/ext/grpc/rb_grpc.h +0 -2
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +4 -0
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +6 -0
- data/src/ruby/lib/grpc/version.rb +1 -1
- data/third_party/abseil-cpp/absl/algorithm/algorithm.h +8 -103
- data/third_party/abseil-cpp/absl/algorithm/container.h +57 -71
- data/third_party/abseil-cpp/absl/base/attributes.h +51 -12
- data/third_party/abseil-cpp/absl/base/call_once.h +15 -9
- data/third_party/abseil-cpp/absl/base/casts.h +1 -1
- data/third_party/abseil-cpp/absl/base/config.h +91 -24
- data/third_party/abseil-cpp/absl/base/internal/endian.h +13 -12
- data/third_party/abseil-cpp/absl/base/internal/identity.h +4 -2
- data/third_party/abseil-cpp/absl/base/internal/inline_variable.h +19 -18
- data/third_party/abseil-cpp/absl/base/internal/low_level_alloc.cc +1 -1
- data/third_party/abseil-cpp/absl/base/internal/nullability_impl.h +106 -0
- data/third_party/abseil-cpp/absl/base/internal/raw_logging.cc +9 -11
- data/third_party/abseil-cpp/absl/base/internal/raw_logging.h +2 -0
- data/third_party/abseil-cpp/absl/base/internal/spinlock.h +17 -4
- data/third_party/abseil-cpp/absl/base/internal/sysinfo.cc +20 -0
- data/third_party/abseil-cpp/absl/base/internal/thread_identity.cc +10 -4
- data/third_party/abseil-cpp/absl/base/internal/unaligned_access.h +13 -6
- data/third_party/abseil-cpp/absl/base/log_severity.cc +1 -0
- data/third_party/abseil-cpp/absl/base/log_severity.h +23 -10
- data/third_party/abseil-cpp/absl/base/no_destructor.h +217 -0
- data/third_party/abseil-cpp/absl/base/nullability.h +224 -0
- data/third_party/abseil-cpp/absl/base/optimization.h +1 -0
- data/third_party/abseil-cpp/absl/base/options.h +27 -1
- data/third_party/abseil-cpp/absl/base/prefetch.h +25 -14
- data/third_party/abseil-cpp/absl/base/thread_annotations.h +0 -2
- data/third_party/abseil-cpp/absl/container/flat_hash_map.h +3 -3
- data/third_party/abseil-cpp/absl/container/flat_hash_set.h +1 -1
- data/third_party/abseil-cpp/absl/container/internal/common_policy_traits.h +4 -2
- data/third_party/abseil-cpp/absl/container/internal/container_memory.h +13 -9
- data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.h +2 -12
- data/third_party/abseil-cpp/absl/container/internal/inlined_vector.h +12 -1
- data/third_party/abseil-cpp/absl/container/internal/layout.h +6 -21
- data/third_party/abseil-cpp/absl/container/internal/raw_hash_map.h +11 -2
- data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.cc +148 -31
- data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.h +717 -278
- data/third_party/abseil-cpp/absl/crc/internal/cpu_detect.cc +26 -2
- data/third_party/abseil-cpp/absl/crc/internal/cpu_detect.h +6 -0
- data/third_party/abseil-cpp/absl/crc/internal/crc32_x86_arm_combined_simd.h +34 -5
- data/third_party/abseil-cpp/absl/crc/internal/crc_memcpy.h +6 -3
- data/third_party/abseil-cpp/absl/crc/internal/crc_memcpy_fallback.cc +4 -2
- data/third_party/abseil-cpp/absl/crc/internal/{crc_memcpy_x86_64.cc → crc_memcpy_x86_arm_combined.cc} +65 -47
- data/third_party/abseil-cpp/absl/crc/internal/crc_x86_arm_combined.cc +10 -2
- data/third_party/abseil-cpp/absl/debugging/internal/address_is_readable.cc +4 -2
- data/third_party/abseil-cpp/absl/debugging/internal/demangle.cc +24 -0
- data/third_party/abseil-cpp/absl/debugging/internal/demangle.h +35 -33
- data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_aarch64-inl.inc +41 -17
- data/third_party/abseil-cpp/absl/debugging/symbolize_elf.inc +108 -44
- data/third_party/abseil-cpp/absl/flags/declare.h +0 -5
- data/third_party/abseil-cpp/absl/flags/flag.h +1 -10
- data/third_party/abseil-cpp/absl/flags/internal/flag.h +0 -5
- data/third_party/abseil-cpp/absl/flags/marshalling.cc +10 -1
- data/third_party/abseil-cpp/absl/flags/reflection.cc +2 -1
- data/third_party/abseil-cpp/absl/functional/function_ref.h +8 -0
- data/third_party/abseil-cpp/absl/functional/internal/any_invocable.h +2 -2
- data/third_party/abseil-cpp/absl/hash/internal/hash.h +49 -2
- data/third_party/abseil-cpp/absl/numeric/bits.h +37 -18
- data/third_party/abseil-cpp/absl/random/distributions.h +1 -1
- data/third_party/abseil-cpp/absl/status/internal/status_internal.cc +248 -0
- data/third_party/abseil-cpp/absl/status/internal/status_internal.h +55 -14
- data/third_party/abseil-cpp/absl/status/internal/statusor_internal.h +53 -2
- data/third_party/abseil-cpp/absl/status/status.cc +36 -238
- data/third_party/abseil-cpp/absl/status/status.h +95 -53
- data/third_party/abseil-cpp/absl/status/status_payload_printer.cc +1 -3
- data/third_party/abseil-cpp/absl/status/status_payload_printer.h +3 -2
- data/third_party/abseil-cpp/absl/status/statusor.cc +5 -2
- data/third_party/abseil-cpp/absl/status/statusor.h +43 -3
- data/third_party/abseil-cpp/absl/strings/ascii.cc +84 -12
- data/third_party/abseil-cpp/absl/strings/ascii.h +8 -6
- data/third_party/abseil-cpp/absl/strings/charconv.cc +19 -12
- data/third_party/abseil-cpp/absl/strings/charconv.h +6 -3
- data/third_party/abseil-cpp/absl/strings/charset.h +164 -0
- data/third_party/abseil-cpp/absl/strings/cord.cc +266 -69
- data/third_party/abseil-cpp/absl/strings/cord.h +138 -92
- data/third_party/abseil-cpp/absl/strings/cord_analysis.cc +19 -33
- data/third_party/abseil-cpp/absl/strings/cord_analysis.h +4 -3
- data/third_party/abseil-cpp/absl/strings/escaping.cc +5 -4
- data/third_party/abseil-cpp/absl/strings/has_absl_stringify.h +63 -0
- data/third_party/abseil-cpp/absl/strings/has_ostream_operator.h +42 -0
- data/third_party/abseil-cpp/absl/strings/internal/cord_internal.cc +0 -6
- data/third_party/abseil-cpp/absl/strings/internal/cord_internal.h +19 -45
- data/third_party/abseil-cpp/absl/strings/internal/cordz_info.cc +23 -28
- data/third_party/abseil-cpp/absl/strings/internal/has_absl_stringify.h +15 -26
- data/third_party/abseil-cpp/absl/strings/internal/memutil.cc +12 -4
- data/third_party/abseil-cpp/absl/strings/internal/str_format/arg.cc +145 -8
- data/third_party/abseil-cpp/absl/strings/internal/str_format/arg.h +72 -24
- data/third_party/abseil-cpp/absl/strings/internal/str_format/bind.cc +17 -1
- data/third_party/abseil-cpp/absl/strings/internal/str_format/bind.h +7 -4
- data/third_party/abseil-cpp/absl/strings/internal/str_format/constexpr_parser.h +8 -3
- data/third_party/abseil-cpp/absl/strings/internal/str_format/extension.h +10 -4
- data/third_party/abseil-cpp/absl/strings/internal/str_format/parser.h +5 -4
- data/third_party/abseil-cpp/absl/strings/match.cc +3 -0
- data/third_party/abseil-cpp/absl/strings/numbers.cc +396 -153
- data/third_party/abseil-cpp/absl/strings/numbers.h +193 -35
- data/third_party/abseil-cpp/absl/strings/str_cat.cc +151 -21
- data/third_party/abseil-cpp/absl/strings/str_cat.h +127 -25
- data/third_party/abseil-cpp/absl/strings/str_format.h +30 -20
- data/third_party/abseil-cpp/absl/strings/str_join.h +16 -16
- data/third_party/abseil-cpp/absl/strings/str_replace.cc +12 -3
- data/third_party/abseil-cpp/absl/strings/str_replace.h +8 -5
- data/third_party/abseil-cpp/absl/strings/str_split.cc +8 -6
- data/third_party/abseil-cpp/absl/strings/str_split.h +18 -0
- data/third_party/abseil-cpp/absl/strings/string_view.cc +26 -5
- data/third_party/abseil-cpp/absl/strings/string_view.h +91 -26
- data/third_party/abseil-cpp/absl/strings/strip.h +5 -2
- data/third_party/abseil-cpp/absl/strings/substitute.cc +12 -4
- data/third_party/abseil-cpp/absl/strings/substitute.h +103 -91
- data/third_party/abseil-cpp/absl/synchronization/internal/pthread_waiter.h +2 -2
- data/third_party/abseil-cpp/absl/synchronization/internal/waiter.h +2 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/win32_waiter.h +4 -2
- data/third_party/abseil-cpp/absl/synchronization/mutex.cc +296 -332
- data/third_party/abseil-cpp/absl/synchronization/mutex.h +89 -34
- data/third_party/abseil-cpp/absl/time/civil_time.h +26 -0
- data/third_party/abseil-cpp/absl/time/clock.h +5 -1
- data/third_party/abseil-cpp/absl/time/duration.cc +3 -3
- data/third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/civil_time_detail.h +2 -2
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_format.cc +1 -1
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_info.cc +9 -14
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/tzfile.h +0 -8
- data/third_party/abseil-cpp/absl/types/bad_optional_access.cc +18 -0
- data/third_party/abseil-cpp/absl/types/bad_variant_access.cc +18 -0
- data/third_party/abseil-cpp/absl/types/internal/variant.h +3 -3
- data/third_party/abseil-cpp/absl/types/optional.h +3 -2
- data/third_party/abseil-cpp/absl/types/span.h +9 -4
- data/third_party/abseil-cpp/absl/utility/utility.h +11 -93
- data/third_party/boringssl-with-bazel/err_data.c +278 -276
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_gentm.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_mbstr.c +9 -9
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_strex.c +8 -21
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_time.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_type.c +19 -1
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_utctm.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/asn1/asn1_lib.c +11 -3
- data/third_party/boringssl-with-bazel/src/crypto/asn1/internal.h +4 -1
- data/third_party/boringssl-with-bazel/src/crypto/asn1/posix_time.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_dec.c +3 -3
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_enc.c +1 -6
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_new.c +4 -13
- data/third_party/boringssl-with-bazel/src/crypto/base64/base64.c +1 -6
- data/third_party/boringssl-with-bazel/src/crypto/bio/bio.c +27 -4
- data/third_party/boringssl-with-bazel/src/crypto/bio/connect.c +1 -4
- data/third_party/boringssl-with-bazel/src/crypto/bio/pair.c +1 -4
- data/third_party/boringssl-with-bazel/src/crypto/bn_extra/convert.c +8 -0
- data/third_party/boringssl-with-bazel/src/crypto/buf/buf.c +1 -11
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/ber.c +7 -8
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/cbb.c +42 -12
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/internal.h +0 -22
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/unicode.c +9 -9
- data/third_party/boringssl-with-bazel/src/crypto/chacha/chacha.c +34 -1
- data/third_party/boringssl-with-bazel/src/crypto/chacha/internal.h +49 -3
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_aesgcmsiv.c +30 -42
- data/third_party/boringssl-with-bazel/src/crypto/conf/conf.c +87 -96
- data/third_party/boringssl-with-bazel/src/crypto/conf/internal.h +5 -1
- data/third_party/boringssl-with-bazel/src/crypto/cpu_intel.c +4 -2
- data/third_party/boringssl-with-bazel/src/crypto/crypto.c +11 -0
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519.c +4 -0
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/spake25519.c +1 -2
- data/third_party/boringssl-with-bazel/src/crypto/des/des.c +105 -31
- data/third_party/boringssl-with-bazel/src/crypto/des/internal.h +10 -81
- data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa.c +2 -15
- data/third_party/boringssl-with-bazel/src/crypto/engine/engine.c +1 -9
- data/third_party/boringssl-with-bazel/src/crypto/evp/evp.c +1 -5
- data/third_party/boringssl-with-bazel/src/crypto/evp/evp_ctx.c +2 -5
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_ec.c +1 -4
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_hkdf.c +1 -2
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_rsa.c +1 -3
- data/third_party/boringssl-with-bazel/src/crypto/evp/scrypt.c +2 -2
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/add.c +2 -8
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/bn.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/bytes.c +26 -17
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/ctx.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/exponentiation.c +4 -2
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/gcd.c +26 -5
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/generic.c +10 -41
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/internal.h +49 -2
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery.c +26 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery_inv.c +27 -26
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/mul.c +2 -6
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/prime.c +1 -8
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/random.c +8 -2
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/cipher.c +11 -2
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/e_aes.c +11 -24
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/e_aesccm.c +43 -50
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/dh.c +2 -6
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/digest.c +4 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec.c +1 -2
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_key.c +16 -9
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p224-64.c +7 -6
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/wnaf.c +2 -7
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/fork_detect.c +51 -13
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/fork_detect.h +17 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/rand.c +5 -2
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/blinding.c +1 -2
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa.c +1 -3
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa_impl.c +6 -5
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/fips.c +1 -2
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/internal.h +153 -6
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha1.c +87 -7
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha256.c +39 -5
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha512.c +32 -5
- data/third_party/boringssl-with-bazel/src/crypto/internal.h +254 -54
- data/third_party/boringssl-with-bazel/src/crypto/keccak/internal.h +70 -0
- data/third_party/boringssl-with-bazel/src/crypto/{kyber → keccak}/keccak.c +124 -49
- data/third_party/boringssl-with-bazel/src/crypto/kyber/internal.h +8 -39
- data/third_party/boringssl-with-bazel/src/crypto/kyber/kyber.c +39 -29
- data/third_party/boringssl-with-bazel/src/crypto/lhash/lhash.c +3 -6
- data/third_party/boringssl-with-bazel/src/crypto/mem.c +17 -33
- data/third_party/boringssl-with-bazel/src/crypto/obj/obj.c +36 -16
- data/third_party/boringssl-with-bazel/src/crypto/obj/obj_dat.h +0 -3
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_info.c +31 -0
- data/third_party/boringssl-with-bazel/src/crypto/pkcs7/pkcs7_x509.c +2 -4
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8.c +3 -3
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8_x509.c +9 -13
- data/third_party/boringssl-with-bazel/src/crypto/pool/pool.c +3 -6
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/forkunsafe.c +4 -0
- data/third_party/boringssl-with-bazel/src/crypto/rsa_extra/rsa_crypt.c +3 -1
- data/third_party/boringssl-with-bazel/src/crypto/spx/address.c +101 -0
- data/third_party/boringssl-with-bazel/src/crypto/spx/address.h +50 -0
- data/third_party/boringssl-with-bazel/src/crypto/spx/fors.c +133 -0
- data/third_party/boringssl-with-bazel/src/crypto/spx/fors.h +54 -0
- data/third_party/boringssl-with-bazel/src/crypto/spx/internal.h +79 -0
- data/third_party/boringssl-with-bazel/src/crypto/spx/merkle.c +150 -0
- data/third_party/boringssl-with-bazel/src/crypto/spx/merkle.h +61 -0
- data/third_party/boringssl-with-bazel/src/crypto/spx/params.h +71 -0
- data/third_party/boringssl-with-bazel/src/crypto/spx/spx.c +139 -0
- data/third_party/boringssl-with-bazel/src/crypto/spx/spx_util.c +53 -0
- data/third_party/boringssl-with-bazel/src/crypto/spx/spx_util.h +44 -0
- data/third_party/boringssl-with-bazel/src/crypto/spx/thash.c +136 -0
- data/third_party/boringssl-with-bazel/src/crypto/spx/thash.h +70 -0
- data/third_party/boringssl-with-bazel/src/crypto/spx/wots.c +135 -0
- data/third_party/boringssl-with-bazel/src/crypto/spx/wots.h +45 -0
- data/third_party/boringssl-with-bazel/src/crypto/stack/stack.c +4 -9
- data/third_party/boringssl-with-bazel/src/crypto/trust_token/pmbtoken.c +10 -22
- data/third_party/boringssl-with-bazel/src/crypto/trust_token/trust_token.c +3 -6
- data/third_party/boringssl-with-bazel/src/crypto/trust_token/voprf.c +12 -36
- data/third_party/boringssl-with-bazel/src/crypto/x509/algorithm.c +1 -2
- data/third_party/boringssl-with-bazel/src/crypto/x509/asn1_gen.c +0 -2
- data/third_party/boringssl-with-bazel/src/crypto/x509/by_dir.c +14 -9
- data/third_party/boringssl-with-bazel/src/crypto/x509/by_file.c +23 -33
- data/third_party/boringssl-with-bazel/src/crypto/x509/internal.h +225 -51
- data/third_party/boringssl-with-bazel/src/crypto/x509/policy.c +2 -6
- data/third_party/boringssl-with-bazel/src/crypto/x509/rsa_pss.c +6 -2
- data/third_party/boringssl-with-bazel/src/crypto/x509/t_crl.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/x509/t_req.c +1 -4
- data/third_party/boringssl-with-bazel/src/crypto/x509/t_x509.c +1 -3
- data/third_party/boringssl-with-bazel/src/crypto/{x509v3 → x509}/v3_akey.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/{x509v3 → x509}/v3_akeya.c +3 -1
- data/third_party/boringssl-with-bazel/src/crypto/{x509v3 → x509}/v3_alt.c +5 -6
- data/third_party/boringssl-with-bazel/src/crypto/{x509v3 → x509}/v3_bcons.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/{x509v3 → x509}/v3_bitst.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/{x509v3 → x509}/v3_conf.c +0 -2
- data/third_party/boringssl-with-bazel/src/crypto/{x509v3 → x509}/v3_cpols.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/{x509v3 → x509}/v3_crld.c +1 -2
- data/third_party/boringssl-with-bazel/src/crypto/{x509v3 → x509}/v3_enum.c +1 -0
- data/third_party/boringssl-with-bazel/src/crypto/{x509v3 → x509}/v3_extku.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/{x509v3 → x509}/v3_genn.c +12 -12
- data/third_party/boringssl-with-bazel/src/crypto/{x509v3 → x509}/v3_ia5.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/{x509v3 → x509}/v3_info.c +4 -6
- data/third_party/boringssl-with-bazel/src/crypto/{x509v3 → x509}/v3_int.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/{x509v3 → x509}/v3_lib.c +3 -2
- data/third_party/boringssl-with-bazel/src/crypto/{x509v3 → x509}/v3_ncons.c +2 -2
- data/third_party/boringssl-with-bazel/src/crypto/{x509v3 → x509}/v3_ocsp.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/{x509v3 → x509}/v3_pcons.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/{x509v3 → x509}/v3_pmaps.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/{x509v3 → x509}/v3_prn.c +3 -4
- data/third_party/boringssl-with-bazel/src/crypto/{x509v3 → x509}/v3_purp.c +92 -335
- data/third_party/boringssl-with-bazel/src/crypto/{x509v3 → x509}/v3_skey.c +1 -2
- data/third_party/boringssl-with-bazel/src/crypto/{x509v3 → x509}/v3_utl.c +20 -18
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_att.c +35 -32
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_cmp.c +44 -59
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_ext.c +0 -1
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_lu.c +107 -255
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_req.c +32 -20
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_trs.c +25 -152
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_v3.c +0 -1
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vfy.c +330 -944
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vpm.c +93 -215
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509name.c +28 -6
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509spki.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_crl.c +35 -129
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_name.c +7 -8
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_pubkey.c +46 -50
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_spki.c +2 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_x509.c +1 -4
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_x509a.c +6 -6
- data/third_party/boringssl-with-bazel/src/include/openssl/arm_arch.h +0 -21
- data/third_party/boringssl-with-bazel/src/include/openssl/asm_base.h +5 -6
- data/third_party/boringssl-with-bazel/src/include/openssl/base.h +3 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/bio.h +24 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/bn.h +14 -5
- data/third_party/boringssl-with-bazel/src/include/openssl/bytestring.h +22 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/cipher.h +1 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/conf.h +4 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/curve25519.h +2 -2
- data/third_party/boringssl-with-bazel/src/include/openssl/des.h +0 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/ec.h +33 -11
- data/third_party/boringssl-with-bazel/src/include/openssl/evp.h +1 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/ex_data.h +5 -4
- data/third_party/boringssl-with-bazel/src/include/openssl/kyber.h +26 -18
- data/third_party/boringssl-with-bazel/src/include/openssl/mem.h +13 -6
- data/third_party/boringssl-with-bazel/src/include/openssl/obj.h +5 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/opensslconf.h +1 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/pem.h +19 -5
- data/third_party/boringssl-with-bazel/src/include/openssl/posix_time.h +45 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/rand.h +5 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/sha.h +20 -3
- data/third_party/boringssl-with-bazel/src/include/openssl/span.h +18 -20
- data/third_party/boringssl-with-bazel/src/include/openssl/ssl.h +76 -60
- data/third_party/boringssl-with-bazel/src/include/openssl/target.h +31 -6
- data/third_party/boringssl-with-bazel/src/include/openssl/time.h +3 -22
- data/third_party/boringssl-with-bazel/src/include/openssl/tls1.h +2 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/x509.h +2806 -941
- data/third_party/boringssl-with-bazel/src/include/openssl/x509v3.h +38 -1025
- data/third_party/boringssl-with-bazel/src/include/openssl/x509v3_errors.h +124 -0
- data/third_party/boringssl-with-bazel/src/ssl/d1_both.cc +1 -2
- data/third_party/boringssl-with-bazel/src/ssl/extensions.cc +82 -9
- data/third_party/boringssl-with-bazel/src/ssl/handoff.cc +42 -4
- data/third_party/boringssl-with-bazel/src/ssl/internal.h +4 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_key_share.cc +4 -5
- data/third_party/boringssl-with-bazel/src/ssl/ssl_lib.cc +9 -1
- data/third_party/boringssl-with-bazel/src/ssl/ssl_x509.cc +0 -1
- data/third_party/boringssl-with-bazel/src/ssl/tls13_client.cc +5 -1
- data/third_party/boringssl-with-bazel/src/ssl/tls13_server.cc +5 -1
- data/third_party/boringssl-with-bazel/src/third_party/fiat/curve25519_64_adx.h +4 -2
- data/third_party/boringssl-with-bazel/src/third_party/fiat/p256_64.h +21 -0
- data/third_party/cares/config_linux/ares_config.h +2 -38
- data/third_party/upb/upb/reflection/def_pool.h +2 -2
- data/third_party/zlib/adler32.c +5 -27
- data/third_party/zlib/compress.c +5 -16
- data/third_party/zlib/crc32.c +86 -162
- data/third_party/zlib/deflate.c +233 -336
- data/third_party/zlib/deflate.h +8 -8
- data/third_party/zlib/gzguts.h +11 -12
- data/third_party/zlib/infback.c +7 -23
- data/third_party/zlib/inffast.c +1 -4
- data/third_party/zlib/inffast.h +1 -1
- data/third_party/zlib/inflate.c +30 -99
- data/third_party/zlib/inftrees.c +6 -11
- data/third_party/zlib/inftrees.h +3 -3
- data/third_party/zlib/trees.c +224 -302
- data/third_party/zlib/uncompr.c +4 -12
- data/third_party/zlib/zconf.h +6 -2
- data/third_party/zlib/zlib.h +191 -188
- data/third_party/zlib/zutil.c +16 -44
- data/third_party/zlib/zutil.h +10 -10
- metadata +241 -184
- data/src/core/ext/filters/client_channel/lb_policy/address_filtering.cc +0 -75
- data/src/core/ext/filters/client_channel/lb_policy/xds/cds.cc +0 -711
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_resolver.cc +0 -1173
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_override_host.cc +0 -922
- data/src/core/lib/event_engine/memory_allocator.cc +0 -74
- data/src/core/lib/iomgr/load_file.cc +0 -78
- data/src/core/lib/iomgr/load_file.h +0 -35
- data/src/core/lib/transport/pid_controller.cc +0 -51
- data/src/core/lib/transport/pid_controller.h +0 -116
- data/third_party/abseil-cpp/absl/base/internal/prefetch.h +0 -137
- data/third_party/abseil-cpp/absl/base/internal/thread_annotations.h +0 -280
- data/third_party/abseil-cpp/absl/flags/flag.cc +0 -38
- data/third_party/abseil-cpp/absl/flags/internal/flag_msvc.inc +0 -116
- data/third_party/abseil-cpp/absl/strings/internal/char_map.h +0 -158
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_ring.cc +0 -773
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_ring.h +0 -607
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_ring_reader.h +0 -118
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_info.c +0 -100
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_pkey.c +0 -111
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/internal.h +0 -197
- data/third_party/upb/upb/collections/array.h +0 -17
- data/third_party/upb/upb/collections/map.h +0 -17
- data/third_party/upb/upb/upb.hpp +0 -18
- /data/third_party/boringssl-with-bazel/src/crypto/{x509v3 → x509}/ext_dat.h +0 -0
@@ -23,8 +23,10 @@
|
|
23
23
|
|
24
24
|
#include <algorithm>
|
25
25
|
#include <functional>
|
26
|
+
#include <memory>
|
26
27
|
#include <type_traits>
|
27
28
|
|
29
|
+
#include "absl/cleanup/cleanup.h"
|
28
30
|
#include "absl/strings/match.h"
|
29
31
|
#include "absl/strings/str_cat.h"
|
30
32
|
#include "absl/strings/str_join.h"
|
@@ -32,11 +34,17 @@
|
|
32
34
|
#include "absl/strings/string_view.h"
|
33
35
|
#include "absl/strings/strip.h"
|
34
36
|
#include "absl/types/optional.h"
|
37
|
+
#include "envoy/config/core/v3/base.upb.h"
|
38
|
+
#include "envoy/service/status/v3/csds.upb.h"
|
39
|
+
#include "google/protobuf/any.upb.h"
|
40
|
+
#include "google/protobuf/timestamp.upb.h"
|
41
|
+
#include "upb/base/string_view.h"
|
35
42
|
#include "upb/mem/arena.h"
|
36
43
|
|
37
44
|
#include <grpc/event_engine/event_engine.h>
|
38
45
|
#include <grpc/support/log.h>
|
39
46
|
|
47
|
+
#include "src/core/ext/xds/upb_utils.h"
|
40
48
|
#include "src/core/ext/xds/xds_api.h"
|
41
49
|
#include "src/core/ext/xds/xds_bootstrap.h"
|
42
50
|
#include "src/core/ext/xds/xds_client_stats.h"
|
@@ -68,10 +76,10 @@ TraceFlag grpc_xds_client_refcount_trace(false, "xds_client_refcount");
|
|
68
76
|
// An xds call wrapper that can restart a call upon failure. Holds a ref to
|
69
77
|
// the xds channel. The template parameter is the kind of wrapped xds call.
|
70
78
|
template <typename T>
|
71
|
-
class XdsClient::
|
79
|
+
class XdsClient::XdsChannel::RetryableCall
|
72
80
|
: public InternallyRefCounted<RetryableCall<T>> {
|
73
81
|
public:
|
74
|
-
explicit RetryableCall(WeakRefCountedPtr<
|
82
|
+
explicit RetryableCall(WeakRefCountedPtr<XdsChannel> xds_channel);
|
75
83
|
|
76
84
|
// Disable thread-safety analysis because this method is called via
|
77
85
|
// OrphanablePtr<>, but there's no way to pass the lock annotation
|
@@ -80,8 +88,8 @@ class XdsClient::ChannelState::RetryableCall
|
|
80
88
|
|
81
89
|
void OnCallFinishedLocked() ABSL_EXCLUSIVE_LOCKS_REQUIRED(&XdsClient::mu_);
|
82
90
|
|
83
|
-
T*
|
84
|
-
|
91
|
+
T* call() const { return call_.get(); }
|
92
|
+
XdsChannel* xds_channel() const { return xds_channel_.get(); }
|
85
93
|
|
86
94
|
bool IsCurrentCallOnChannel() const;
|
87
95
|
|
@@ -93,9 +101,9 @@ class XdsClient::ChannelState::RetryableCall
|
|
93
101
|
|
94
102
|
// The wrapped xds call that talks to the xds server. It's instantiated
|
95
103
|
// every time we start a new call. It's null during call retry backoff.
|
96
|
-
OrphanablePtr<T>
|
104
|
+
OrphanablePtr<T> call_;
|
97
105
|
// The owning xds channel.
|
98
|
-
WeakRefCountedPtr<
|
106
|
+
WeakRefCountedPtr<XdsChannel> xds_channel_;
|
99
107
|
|
100
108
|
// Retry state.
|
101
109
|
BackOff backoff_;
|
@@ -106,17 +114,18 @@ class XdsClient::ChannelState::RetryableCall
|
|
106
114
|
};
|
107
115
|
|
108
116
|
// Contains an ADS call to the xds server.
|
109
|
-
class XdsClient::
|
110
|
-
: public InternallyRefCounted<AdsCallState> {
|
117
|
+
class XdsClient::XdsChannel::AdsCall : public InternallyRefCounted<AdsCall> {
|
111
118
|
public:
|
112
119
|
// The ctor and dtor should not be used directly.
|
113
|
-
explicit
|
120
|
+
explicit AdsCall(RefCountedPtr<RetryableCall<AdsCall>> retryable_call);
|
114
121
|
|
115
122
|
void Orphan() override;
|
116
123
|
|
117
|
-
RetryableCall<
|
118
|
-
|
119
|
-
|
124
|
+
RetryableCall<AdsCall>* retryable_call() const {
|
125
|
+
return retryable_call_.get();
|
126
|
+
}
|
127
|
+
XdsChannel* xds_channel() const { return retryable_call_->xds_channel(); }
|
128
|
+
XdsClient* xds_client() const { return xds_channel()->xds_client(); }
|
120
129
|
bool seen_response() const { return seen_response_; }
|
121
130
|
|
122
131
|
void SubscribeLocked(const XdsResourceType* type, const XdsResourceName& name,
|
@@ -129,6 +138,8 @@ class XdsClient::ChannelState::AdsCallState
|
|
129
138
|
bool HasSubscribedResources() const;
|
130
139
|
|
131
140
|
private:
|
141
|
+
class AdsReadDelayHandle;
|
142
|
+
|
132
143
|
class AdsResponseParser : public XdsApi::AdsResponseParserInterface {
|
133
144
|
public:
|
134
145
|
struct Result {
|
@@ -140,10 +151,10 @@ class XdsClient::ChannelState::AdsCallState
|
|
140
151
|
std::map<std::string /*authority*/, std::set<XdsResourceKey>>
|
141
152
|
resources_seen;
|
142
153
|
bool have_valid_resources = false;
|
154
|
+
RefCountedPtr<ReadDelayHandle> read_delay_handle;
|
143
155
|
};
|
144
156
|
|
145
|
-
explicit AdsResponseParser(
|
146
|
-
: ads_call_state_(ads_call_state) {}
|
157
|
+
explicit AdsResponseParser(AdsCall* ads_call) : ads_call_(ads_call) {}
|
147
158
|
|
148
159
|
absl::Status ProcessAdsResponseFields(AdsResponseFields fields) override
|
149
160
|
ABSL_EXCLUSIVE_LOCKS_REQUIRED(&XdsClient::mu_);
|
@@ -159,9 +170,9 @@ class XdsClient::ChannelState::AdsCallState
|
|
159
170
|
Result TakeResult() { return std::move(result_); }
|
160
171
|
|
161
172
|
private:
|
162
|
-
XdsClient* xds_client() const { return
|
173
|
+
XdsClient* xds_client() const { return ads_call_->xds_client(); }
|
163
174
|
|
164
|
-
|
175
|
+
AdsCall* ads_call_;
|
165
176
|
const Timestamp update_time_ = Timestamp::Now();
|
166
177
|
Result result_;
|
167
178
|
};
|
@@ -184,10 +195,9 @@ class XdsClient::ChannelState::AdsCallState
|
|
184
195
|
subscription_sent_ = true;
|
185
196
|
}
|
186
197
|
|
187
|
-
void MaybeMarkSubscriptionSendComplete(
|
188
|
-
RefCountedPtr<AdsCallState> ads_calld)
|
198
|
+
void MaybeMarkSubscriptionSendComplete(RefCountedPtr<AdsCall> ads_call)
|
189
199
|
ABSL_EXCLUSIVE_LOCKS_REQUIRED(&XdsClient::mu_) {
|
190
|
-
if (subscription_sent_) MaybeStartTimer(std::move(
|
200
|
+
if (subscription_sent_) MaybeStartTimer(std::move(ads_call));
|
191
201
|
}
|
192
202
|
|
193
203
|
void MarkSeen() ABSL_EXCLUSIVE_LOCKS_REQUIRED(&XdsClient::mu_) {
|
@@ -197,13 +207,13 @@ class XdsClient::ChannelState::AdsCallState
|
|
197
207
|
|
198
208
|
void MaybeCancelTimer() ABSL_EXCLUSIVE_LOCKS_REQUIRED(&XdsClient::mu_) {
|
199
209
|
if (timer_handle_.has_value() &&
|
200
|
-
|
210
|
+
ads_call_->xds_client()->engine()->Cancel(*timer_handle_)) {
|
201
211
|
timer_handle_.reset();
|
202
212
|
}
|
203
213
|
}
|
204
214
|
|
205
215
|
private:
|
206
|
-
void MaybeStartTimer(RefCountedPtr<
|
216
|
+
void MaybeStartTimer(RefCountedPtr<AdsCall> ads_call)
|
207
217
|
ABSL_EXCLUSIVE_LOCKS_REQUIRED(&XdsClient::mu_) {
|
208
218
|
// Don't start timer if we've already either seen the resource or
|
209
219
|
// marked it as non-existing.
|
@@ -224,13 +234,13 @@ class XdsClient::ChannelState::AdsCallState
|
|
224
234
|
// (a) we already have the resource and (b) the server may
|
225
235
|
// optimize by not resending the resource that we already have.
|
226
236
|
auto& authority_state =
|
227
|
-
|
237
|
+
ads_call->xds_client()->authority_state_map_[name_.authority];
|
228
238
|
ResourceState& state = authority_state.resource_map[type_][name_.key];
|
229
239
|
if (state.resource != nullptr) return;
|
230
240
|
// Start timer.
|
231
|
-
|
232
|
-
timer_handle_ =
|
233
|
-
|
241
|
+
ads_call_ = std::move(ads_call);
|
242
|
+
timer_handle_ = ads_call_->xds_client()->engine()->RunAfter(
|
243
|
+
ads_call_->xds_client()->request_timeout_,
|
234
244
|
[self = Ref(DEBUG_LOCATION, "timer")]() {
|
235
245
|
ApplicationCallbackExecCtx callback_exec_ctx;
|
236
246
|
ExecCtx exec_ctx;
|
@@ -243,32 +253,32 @@ class XdsClient::ChannelState::AdsCallState
|
|
243
253
|
gpr_log(GPR_INFO,
|
244
254
|
"[xds_client %p] xds server %s: timeout obtaining resource "
|
245
255
|
"{type=%s name=%s} from xds server",
|
246
|
-
|
247
|
-
|
256
|
+
ads_call_->xds_client(),
|
257
|
+
ads_call_->xds_channel()->server_.server_uri().c_str(),
|
248
258
|
std::string(type_->type_url()).c_str(),
|
249
259
|
XdsClient::ConstructFullXdsResourceName(
|
250
260
|
name_.authority, type_->type_url(), name_.key)
|
251
261
|
.c_str());
|
252
262
|
}
|
253
263
|
{
|
254
|
-
MutexLock lock(&
|
264
|
+
MutexLock lock(&ads_call_->xds_client()->mu_);
|
255
265
|
timer_handle_.reset();
|
256
266
|
resource_seen_ = true;
|
257
267
|
auto& authority_state =
|
258
|
-
|
268
|
+
ads_call_->xds_client()->authority_state_map_[name_.authority];
|
259
269
|
ResourceState& state = authority_state.resource_map[type_][name_.key];
|
260
270
|
state.meta.client_status = XdsApi::ResourceMetadata::DOES_NOT_EXIST;
|
261
|
-
|
262
|
-
state.watchers);
|
271
|
+
ads_call_->xds_client()->NotifyWatchersOnResourceDoesNotExist(
|
272
|
+
state.watchers, ReadDelayHandle::NoWait());
|
263
273
|
}
|
264
|
-
|
265
|
-
|
274
|
+
ads_call_->xds_client()->work_serializer_.DrainQueue();
|
275
|
+
ads_call_.reset();
|
266
276
|
}
|
267
277
|
|
268
278
|
const XdsResourceType* type_;
|
269
279
|
const XdsResourceName name_;
|
270
280
|
|
271
|
-
RefCountedPtr<
|
281
|
+
RefCountedPtr<AdsCall> ads_call_;
|
272
282
|
// True if we have sent the initial subscription request for this
|
273
283
|
// resource on this ADS stream.
|
274
284
|
bool subscription_sent_ ABSL_GUARDED_BY(&XdsClient::mu_) = false;
|
@@ -283,19 +293,19 @@ class XdsClient::ChannelState::AdsCallState
|
|
283
293
|
class StreamEventHandler
|
284
294
|
: public XdsTransportFactory::XdsTransport::StreamingCall::EventHandler {
|
285
295
|
public:
|
286
|
-
explicit StreamEventHandler(RefCountedPtr<
|
287
|
-
:
|
296
|
+
explicit StreamEventHandler(RefCountedPtr<AdsCall> ads_call)
|
297
|
+
: ads_call_(std::move(ads_call)) {}
|
288
298
|
|
289
|
-
void OnRequestSent(bool ok) override {
|
299
|
+
void OnRequestSent(bool ok) override { ads_call_->OnRequestSent(ok); }
|
290
300
|
void OnRecvMessage(absl::string_view payload) override {
|
291
|
-
|
301
|
+
ads_call_->OnRecvMessage(payload);
|
292
302
|
}
|
293
303
|
void OnStatusReceived(absl::Status status) override {
|
294
|
-
|
304
|
+
ads_call_->OnStatusReceived(std::move(status));
|
295
305
|
}
|
296
306
|
|
297
307
|
private:
|
298
|
-
RefCountedPtr<
|
308
|
+
RefCountedPtr<AdsCall> ads_call_;
|
299
309
|
};
|
300
310
|
|
301
311
|
struct ResourceTypeState {
|
@@ -324,9 +334,10 @@ class XdsClient::ChannelState::AdsCallState
|
|
324
334
|
ABSL_EXCLUSIVE_LOCKS_REQUIRED(&XdsClient::mu_);
|
325
335
|
|
326
336
|
// The owning RetryableCall<>.
|
327
|
-
RefCountedPtr<RetryableCall<
|
337
|
+
RefCountedPtr<RetryableCall<AdsCall>> retryable_call_;
|
328
338
|
|
329
|
-
OrphanablePtr<XdsTransportFactory::XdsTransport::StreamingCall>
|
339
|
+
OrphanablePtr<XdsTransportFactory::XdsTransport::StreamingCall>
|
340
|
+
streaming_call_;
|
330
341
|
|
331
342
|
bool sent_initial_message_ = false;
|
332
343
|
bool seen_response_ = false;
|
@@ -342,87 +353,86 @@ class XdsClient::ChannelState::AdsCallState
|
|
342
353
|
};
|
343
354
|
|
344
355
|
// Contains an LRS call to the xds server.
|
345
|
-
class XdsClient::
|
346
|
-
: public InternallyRefCounted<LrsCallState> {
|
356
|
+
class XdsClient::XdsChannel::LrsCall : public InternallyRefCounted<LrsCall> {
|
347
357
|
public:
|
348
358
|
// The ctor and dtor should not be used directly.
|
349
|
-
explicit
|
359
|
+
explicit LrsCall(RefCountedPtr<RetryableCall<LrsCall>> retryable_call);
|
350
360
|
|
351
361
|
void Orphan() override;
|
352
362
|
|
353
|
-
|
354
|
-
|
355
|
-
|
356
|
-
RetryableCall<LrsCallState>* parent() { return parent_.get(); }
|
357
|
-
ChannelState* chand() const { return parent_->chand(); }
|
358
|
-
XdsClient* xds_client() const { return chand()->xds_client(); }
|
363
|
+
RetryableCall<LrsCall>* retryable_call() { return retryable_call_.get(); }
|
364
|
+
XdsChannel* xds_channel() const { return retryable_call_->xds_channel(); }
|
365
|
+
XdsClient* xds_client() const { return xds_channel()->xds_client(); }
|
359
366
|
bool seen_response() const { return seen_response_; }
|
360
367
|
|
361
368
|
private:
|
362
369
|
class StreamEventHandler
|
363
370
|
: public XdsTransportFactory::XdsTransport::StreamingCall::EventHandler {
|
364
371
|
public:
|
365
|
-
explicit StreamEventHandler(RefCountedPtr<
|
366
|
-
:
|
372
|
+
explicit StreamEventHandler(RefCountedPtr<LrsCall> lrs_call)
|
373
|
+
: lrs_call_(std::move(lrs_call)) {}
|
367
374
|
|
368
|
-
void OnRequestSent(bool ok) override {
|
375
|
+
void OnRequestSent(bool /*ok*/) override { lrs_call_->OnRequestSent(); }
|
369
376
|
void OnRecvMessage(absl::string_view payload) override {
|
370
|
-
|
377
|
+
lrs_call_->OnRecvMessage(payload);
|
371
378
|
}
|
372
379
|
void OnStatusReceived(absl::Status status) override {
|
373
|
-
|
380
|
+
lrs_call_->OnStatusReceived(std::move(status));
|
374
381
|
}
|
375
382
|
|
376
383
|
private:
|
377
|
-
RefCountedPtr<
|
384
|
+
RefCountedPtr<LrsCall> lrs_call_;
|
378
385
|
};
|
379
386
|
|
380
|
-
//
|
381
|
-
class
|
387
|
+
// A repeating timer for a particular duration.
|
388
|
+
class Timer : public InternallyRefCounted<Timer> {
|
382
389
|
public:
|
383
|
-
|
384
|
-
:
|
385
|
-
|
386
|
-
}
|
390
|
+
explicit Timer(RefCountedPtr<LrsCall> lrs_call)
|
391
|
+
: lrs_call_(std::move(lrs_call)) {}
|
392
|
+
~Timer() override { lrs_call_.reset(DEBUG_LOCATION, "LRS timer"); }
|
387
393
|
|
388
394
|
// Disable thread-safety analysis because this method is called via
|
389
395
|
// OrphanablePtr<>, but there's no way to pass the lock annotation
|
390
396
|
// through there.
|
391
397
|
void Orphan() override ABSL_NO_THREAD_SAFETY_ANALYSIS;
|
392
398
|
|
393
|
-
void OnReportDoneLocked() ABSL_EXCLUSIVE_LOCKS_REQUIRED(&XdsClient::mu_);
|
394
|
-
|
395
|
-
private:
|
396
399
|
void ScheduleNextReportLocked()
|
397
400
|
ABSL_EXCLUSIVE_LOCKS_REQUIRED(&XdsClient::mu_);
|
398
|
-
bool OnNextReportTimer();
|
399
|
-
bool SendReportLocked() ABSL_EXCLUSIVE_LOCKS_REQUIRED(&XdsClient::mu_);
|
400
401
|
|
401
|
-
|
402
|
-
|
402
|
+
private:
|
403
|
+
bool IsCurrentTimerOnCall() const {
|
404
|
+
return this == lrs_call_->timer_.get();
|
403
405
|
}
|
404
|
-
XdsClient* xds_client() const { return
|
406
|
+
XdsClient* xds_client() const { return lrs_call_->xds_client(); }
|
407
|
+
|
408
|
+
void OnNextReportTimer();
|
405
409
|
|
406
410
|
// The owning LRS call.
|
407
|
-
RefCountedPtr<
|
411
|
+
RefCountedPtr<LrsCall> lrs_call_;
|
408
412
|
|
409
|
-
// The load reporting state.
|
410
|
-
const Duration report_interval_;
|
411
|
-
bool last_report_counters_were_zero_ = false;
|
412
413
|
absl::optional<EventEngine::TaskHandle> timer_handle_
|
413
414
|
ABSL_GUARDED_BY(&XdsClient::mu_);
|
414
415
|
};
|
415
416
|
|
416
|
-
void
|
417
|
+
void MaybeScheduleNextReportLocked()
|
418
|
+
ABSL_EXCLUSIVE_LOCKS_REQUIRED(&XdsClient::mu_);
|
419
|
+
|
420
|
+
void SendReportLocked() ABSL_EXCLUSIVE_LOCKS_REQUIRED(&XdsClient::mu_);
|
421
|
+
|
422
|
+
void SendMessageLocked(std::string payload)
|
423
|
+
ABSL_EXCLUSIVE_LOCKS_REQUIRED(&XdsClient::mu_);
|
424
|
+
|
425
|
+
void OnRequestSent();
|
417
426
|
void OnRecvMessage(absl::string_view payload);
|
418
427
|
void OnStatusReceived(absl::Status status);
|
419
428
|
|
420
429
|
bool IsCurrentCallOnChannel() const;
|
421
430
|
|
422
431
|
// The owning RetryableCall<>.
|
423
|
-
RefCountedPtr<RetryableCall<
|
432
|
+
RefCountedPtr<RetryableCall<LrsCall>> retryable_call_;
|
424
433
|
|
425
|
-
OrphanablePtr<XdsTransportFactory::XdsTransport::StreamingCall>
|
434
|
+
OrphanablePtr<XdsTransportFactory::XdsTransport::StreamingCall>
|
435
|
+
streaming_call_;
|
426
436
|
|
427
437
|
bool seen_response_ = false;
|
428
438
|
bool send_message_pending_ ABSL_GUARDED_BY(&XdsClient::mu_) = false;
|
@@ -431,19 +441,19 @@ class XdsClient::ChannelState::LrsCallState
|
|
431
441
|
bool send_all_clusters_ = false;
|
432
442
|
std::set<std::string> cluster_names_; // Asked for by the LRS server.
|
433
443
|
Duration load_reporting_interval_;
|
434
|
-
|
444
|
+
bool last_report_counters_were_zero_ = false;
|
445
|
+
OrphanablePtr<Timer> timer_;
|
435
446
|
};
|
436
447
|
|
437
448
|
//
|
438
|
-
// XdsClient::
|
449
|
+
// XdsClient::XdsChannel
|
439
450
|
//
|
440
451
|
|
441
|
-
XdsClient::
|
442
|
-
|
443
|
-
: DualRefCounted<
|
444
|
-
GRPC_TRACE_FLAG_ENABLED(grpc_xds_client_refcount_trace)
|
445
|
-
|
446
|
-
: nullptr),
|
452
|
+
XdsClient::XdsChannel::XdsChannel(WeakRefCountedPtr<XdsClient> xds_client,
|
453
|
+
const XdsBootstrap::XdsServer& server)
|
454
|
+
: DualRefCounted<XdsChannel>(
|
455
|
+
GRPC_TRACE_FLAG_ENABLED(grpc_xds_client_refcount_trace) ? "XdsChannel"
|
456
|
+
: nullptr),
|
447
457
|
xds_client_(std::move(xds_client)),
|
448
458
|
server_(server) {
|
449
459
|
if (GRPC_TRACE_FLAG_ENABLED(grpc_xds_client_trace)) {
|
@@ -462,19 +472,19 @@ XdsClient::ChannelState::ChannelState(WeakRefCountedPtr<XdsClient> xds_client,
|
|
462
472
|
if (!status.ok()) SetChannelStatusLocked(std::move(status));
|
463
473
|
}
|
464
474
|
|
465
|
-
XdsClient::
|
475
|
+
XdsClient::XdsChannel::~XdsChannel() {
|
466
476
|
if (GRPC_TRACE_FLAG_ENABLED(grpc_xds_client_trace)) {
|
467
477
|
gpr_log(GPR_INFO, "[xds_client %p] destroying xds channel %p for server %s",
|
468
478
|
xds_client(), this, server_.server_uri().c_str());
|
469
479
|
}
|
470
|
-
xds_client_.reset(DEBUG_LOCATION, "
|
480
|
+
xds_client_.reset(DEBUG_LOCATION, "XdsChannel");
|
471
481
|
}
|
472
482
|
|
473
483
|
// This method should only ever be called when holding the lock, but we can't
|
474
484
|
// use a ABSL_EXCLUSIVE_LOCKS_REQUIRED annotation, because Orphan() will be
|
475
485
|
// called from DualRefCounted::Unref, which cannot have a lock annotation for
|
476
486
|
// a lock in this subclass.
|
477
|
-
void XdsClient::
|
487
|
+
void XdsClient::XdsChannel::Orphan() ABSL_NO_THREAD_SAFETY_ANALYSIS {
|
478
488
|
if (GRPC_TRACE_FLAG_ENABLED(grpc_xds_client_trace)) {
|
479
489
|
gpr_log(GPR_INFO, "[xds_client %p] orphaning xds channel %p for server %s",
|
480
490
|
xds_client(), this, server_.server_uri().c_str());
|
@@ -482,69 +492,67 @@ void XdsClient::ChannelState::Orphan() ABSL_NO_THREAD_SAFETY_ANALYSIS {
|
|
482
492
|
shutting_down_ = true;
|
483
493
|
transport_.reset();
|
484
494
|
// At this time, all strong refs are removed, remove from channel map to
|
485
|
-
// prevent subsequent subscription from trying to use this
|
495
|
+
// prevent subsequent subscription from trying to use this XdsChannel as
|
486
496
|
// it is shutting down.
|
487
|
-
xds_client_->
|
488
|
-
|
489
|
-
|
497
|
+
xds_client_->xds_channel_map_.erase(server_.Key());
|
498
|
+
ads_call_.reset();
|
499
|
+
lrs_call_.reset();
|
490
500
|
}
|
491
501
|
|
492
|
-
void XdsClient::
|
502
|
+
void XdsClient::XdsChannel::ResetBackoff() { transport_->ResetBackoff(); }
|
493
503
|
|
494
|
-
XdsClient::
|
495
|
-
|
496
|
-
return ads_calld_->calld();
|
504
|
+
XdsClient::XdsChannel::AdsCall* XdsClient::XdsChannel::ads_call() const {
|
505
|
+
return ads_call_->call();
|
497
506
|
}
|
498
507
|
|
499
|
-
XdsClient::
|
500
|
-
|
501
|
-
return lrs_calld_->calld();
|
508
|
+
XdsClient::XdsChannel::LrsCall* XdsClient::XdsChannel::lrs_call() const {
|
509
|
+
return lrs_call_->call();
|
502
510
|
}
|
503
511
|
|
504
|
-
void XdsClient::
|
505
|
-
if (
|
506
|
-
|
507
|
-
WeakRef(DEBUG_LOCATION, "
|
512
|
+
void XdsClient::XdsChannel::MaybeStartLrsCall() {
|
513
|
+
if (lrs_call_ != nullptr) return;
|
514
|
+
lrs_call_.reset(
|
515
|
+
new RetryableCall<LrsCall>(WeakRef(DEBUG_LOCATION, "XdsChannel+lrs")));
|
508
516
|
}
|
509
517
|
|
510
|
-
void XdsClient::
|
511
|
-
xds_client_->xds_load_report_server_map_.erase(
|
512
|
-
|
518
|
+
void XdsClient::XdsChannel::StopLrsCallLocked() {
|
519
|
+
xds_client_->xds_load_report_server_map_.erase(server_.Key());
|
520
|
+
lrs_call_.reset();
|
513
521
|
}
|
514
522
|
|
515
|
-
void XdsClient::
|
516
|
-
|
517
|
-
if (
|
523
|
+
void XdsClient::XdsChannel::SubscribeLocked(const XdsResourceType* type,
|
524
|
+
const XdsResourceName& name) {
|
525
|
+
if (ads_call_ == nullptr) {
|
518
526
|
// Start the ADS call if this is the first request.
|
519
|
-
|
520
|
-
WeakRef(DEBUG_LOCATION, "
|
521
|
-
// Note:
|
527
|
+
ads_call_.reset(
|
528
|
+
new RetryableCall<AdsCall>(WeakRef(DEBUG_LOCATION, "XdsChannel+ads")));
|
529
|
+
// Note: AdsCall's ctor will automatically subscribe to all
|
522
530
|
// resources that the XdsClient already has watchers for, so we can
|
523
531
|
// return here.
|
524
532
|
return;
|
525
533
|
}
|
526
534
|
// If the ADS call is in backoff state, we don't need to do anything now
|
527
535
|
// because when the call is restarted it will resend all necessary requests.
|
528
|
-
if (
|
536
|
+
if (ads_call() == nullptr) return;
|
529
537
|
// Subscribe to this resource if the ADS call is active.
|
530
|
-
|
531
|
-
}
|
532
|
-
|
533
|
-
void XdsClient::
|
534
|
-
|
535
|
-
|
536
|
-
if (
|
537
|
-
auto*
|
538
|
-
if (
|
539
|
-
|
540
|
-
if (!
|
541
|
-
|
538
|
+
ads_call()->SubscribeLocked(type, name, /*delay_send=*/false);
|
539
|
+
}
|
540
|
+
|
541
|
+
void XdsClient::XdsChannel::UnsubscribeLocked(const XdsResourceType* type,
|
542
|
+
const XdsResourceName& name,
|
543
|
+
bool delay_unsubscription) {
|
544
|
+
if (ads_call_ != nullptr) {
|
545
|
+
auto* call = ads_call_->call();
|
546
|
+
if (call != nullptr) {
|
547
|
+
call->UnsubscribeLocked(type, name, delay_unsubscription);
|
548
|
+
if (!call->HasSubscribedResources()) {
|
549
|
+
ads_call_.reset();
|
542
550
|
}
|
543
551
|
}
|
544
552
|
}
|
545
553
|
}
|
546
554
|
|
547
|
-
void XdsClient::
|
555
|
+
void XdsClient::XdsChannel::OnConnectivityFailure(absl::Status status) {
|
548
556
|
{
|
549
557
|
MutexLock lock(&xds_client_->mu_);
|
550
558
|
SetChannelStatusLocked(std::move(status));
|
@@ -552,7 +560,7 @@ void XdsClient::ChannelState::OnConnectivityFailure(absl::Status status) {
|
|
552
560
|
xds_client_->work_serializer_.DrainQueue();
|
553
561
|
}
|
554
562
|
|
555
|
-
void XdsClient::
|
563
|
+
void XdsClient::XdsChannel::SetChannelStatusLocked(absl::Status status) {
|
556
564
|
if (shutting_down_) return;
|
557
565
|
status = absl::Status(status.code(), absl::StrCat("xDS channel for server ",
|
558
566
|
server_.server_uri(), ": ",
|
@@ -574,7 +582,7 @@ void XdsClient::ChannelState::SetChannelStatusLocked(absl::Status status) {
|
|
574
582
|
// Find all watchers for this channel.
|
575
583
|
std::set<RefCountedPtr<ResourceWatcherInterface>> watchers;
|
576
584
|
for (const auto& a : xds_client_->authority_state_map_) { // authority
|
577
|
-
if (a.second.
|
585
|
+
if (a.second.xds_channel != this) continue;
|
578
586
|
for (const auto& t : a.second.resource_map) { // type
|
579
587
|
for (const auto& r : t.second) { // resource id
|
580
588
|
for (const auto& w : r.second.watchers) { // watchers
|
@@ -588,20 +596,20 @@ void XdsClient::ChannelState::SetChannelStatusLocked(absl::Status status) {
|
|
588
596
|
[watchers = std::move(watchers), status = std::move(status)]()
|
589
597
|
ABSL_EXCLUSIVE_LOCKS_REQUIRED(xds_client_->work_serializer_) {
|
590
598
|
for (const auto& watcher : watchers) {
|
591
|
-
watcher->OnError(status);
|
599
|
+
watcher->OnError(status, ReadDelayHandle::NoWait());
|
592
600
|
}
|
593
601
|
},
|
594
602
|
DEBUG_LOCATION);
|
595
603
|
}
|
596
604
|
|
597
605
|
//
|
598
|
-
// XdsClient::
|
606
|
+
// XdsClient::XdsChannel::RetryableCall<>
|
599
607
|
//
|
600
608
|
|
601
609
|
template <typename T>
|
602
|
-
XdsClient::
|
603
|
-
WeakRefCountedPtr<
|
604
|
-
:
|
610
|
+
XdsClient::XdsChannel::RetryableCall<T>::RetryableCall(
|
611
|
+
WeakRefCountedPtr<XdsChannel> xds_channel)
|
612
|
+
: xds_channel_(std::move(xds_channel)),
|
605
613
|
backoff_(BackOff::Options()
|
606
614
|
.set_initial_backoff(Duration::Seconds(
|
607
615
|
GRPC_XDS_INITIAL_CONNECT_BACKOFF_SECONDS))
|
@@ -613,42 +621,43 @@ XdsClient::ChannelState::RetryableCall<T>::RetryableCall(
|
|
613
621
|
}
|
614
622
|
|
615
623
|
template <typename T>
|
616
|
-
void XdsClient::
|
624
|
+
void XdsClient::XdsChannel::RetryableCall<T>::Orphan() {
|
617
625
|
shutting_down_ = true;
|
618
|
-
|
626
|
+
call_.reset();
|
619
627
|
if (timer_handle_.has_value()) {
|
620
|
-
|
628
|
+
xds_channel()->xds_client()->engine()->Cancel(*timer_handle_);
|
621
629
|
timer_handle_.reset();
|
622
630
|
}
|
623
631
|
this->Unref(DEBUG_LOCATION, "RetryableCall+orphaned");
|
624
632
|
}
|
625
633
|
|
626
634
|
template <typename T>
|
627
|
-
void XdsClient::
|
635
|
+
void XdsClient::XdsChannel::RetryableCall<T>::OnCallFinishedLocked() {
|
628
636
|
// If we saw a response on the current stream, reset backoff.
|
629
|
-
if (
|
630
|
-
|
637
|
+
if (call_->seen_response()) backoff_.Reset();
|
638
|
+
call_.reset();
|
631
639
|
// Start retry timer.
|
632
640
|
StartRetryTimerLocked();
|
633
641
|
}
|
634
642
|
|
635
643
|
template <typename T>
|
636
|
-
void XdsClient::
|
644
|
+
void XdsClient::XdsChannel::RetryableCall<T>::StartNewCallLocked() {
|
637
645
|
if (shutting_down_) return;
|
638
|
-
GPR_ASSERT(
|
639
|
-
GPR_ASSERT(
|
646
|
+
GPR_ASSERT(xds_channel_->transport_ != nullptr);
|
647
|
+
GPR_ASSERT(call_ == nullptr);
|
640
648
|
if (GRPC_TRACE_FLAG_ENABLED(grpc_xds_client_trace)) {
|
641
649
|
gpr_log(GPR_INFO,
|
642
650
|
"[xds_client %p] xds server %s: start new call from retryable "
|
643
651
|
"call %p",
|
644
|
-
|
652
|
+
xds_channel()->xds_client(),
|
653
|
+
xds_channel()->server_.server_uri().c_str(), this);
|
645
654
|
}
|
646
|
-
|
655
|
+
call_ = MakeOrphanable<T>(
|
647
656
|
this->Ref(DEBUG_LOCATION, "RetryableCall+start_new_call"));
|
648
657
|
}
|
649
658
|
|
650
659
|
template <typename T>
|
651
|
-
void XdsClient::
|
660
|
+
void XdsClient::XdsChannel::RetryableCall<T>::StartRetryTimerLocked() {
|
652
661
|
if (shutting_down_) return;
|
653
662
|
const Timestamp next_attempt_time = backoff_.NextAttemptTime();
|
654
663
|
const Duration timeout =
|
@@ -657,10 +666,10 @@ void XdsClient::ChannelState::RetryableCall<T>::StartRetryTimerLocked() {
|
|
657
666
|
gpr_log(GPR_INFO,
|
658
667
|
"[xds_client %p] xds server %s: call attempt failed; "
|
659
668
|
"retry timer will fire in %" PRId64 "ms.",
|
660
|
-
|
661
|
-
timeout.millis());
|
669
|
+
xds_channel()->xds_client(),
|
670
|
+
xds_channel()->server_.server_uri().c_str(), timeout.millis());
|
662
671
|
}
|
663
|
-
timer_handle_ =
|
672
|
+
timer_handle_ = xds_channel()->xds_client()->engine()->RunAfter(
|
664
673
|
timeout,
|
665
674
|
[self = this->Ref(DEBUG_LOCATION, "RetryableCall+retry_timer_start")]() {
|
666
675
|
ApplicationCallbackExecCtx callback_exec_ctx;
|
@@ -670,8 +679,8 @@ void XdsClient::ChannelState::RetryableCall<T>::StartRetryTimerLocked() {
|
|
670
679
|
}
|
671
680
|
|
672
681
|
template <typename T>
|
673
|
-
void XdsClient::
|
674
|
-
MutexLock lock(&
|
682
|
+
void XdsClient::XdsChannel::RetryableCall<T>::OnRetryTimer() {
|
683
|
+
MutexLock lock(&xds_channel_->xds_client()->mu_);
|
675
684
|
if (timer_handle_.has_value()) {
|
676
685
|
timer_handle_.reset();
|
677
686
|
if (shutting_down_) return;
|
@@ -679,31 +688,52 @@ void XdsClient::ChannelState::RetryableCall<T>::OnRetryTimer() {
|
|
679
688
|
gpr_log(GPR_INFO,
|
680
689
|
"[xds_client %p] xds server %s: retry timer fired (retryable "
|
681
690
|
"call: %p)",
|
682
|
-
|
683
|
-
this);
|
691
|
+
xds_channel()->xds_client(),
|
692
|
+
xds_channel()->server_.server_uri().c_str(), this);
|
684
693
|
}
|
685
694
|
StartNewCallLocked();
|
686
695
|
}
|
687
696
|
}
|
688
697
|
|
689
698
|
//
|
690
|
-
// XdsClient::
|
699
|
+
// XdsClient::XdsChannel::AdsCall::AdsReadDelayHandle
|
691
700
|
//
|
692
701
|
|
693
|
-
|
694
|
-
|
702
|
+
class XdsClient::XdsChannel::AdsCall::AdsReadDelayHandle
|
703
|
+
: public XdsClient::ReadDelayHandle {
|
704
|
+
public:
|
705
|
+
explicit AdsReadDelayHandle(RefCountedPtr<AdsCall> ads_call)
|
706
|
+
: ads_call_(std::move(ads_call)) {}
|
707
|
+
|
708
|
+
~AdsReadDelayHandle() override {
|
709
|
+
MutexLock lock(&ads_call_->xds_client()->mu_);
|
710
|
+
auto call = ads_call_->streaming_call_.get();
|
711
|
+
if (call != nullptr) call->StartRecvMessage();
|
712
|
+
}
|
713
|
+
|
714
|
+
private:
|
715
|
+
RefCountedPtr<AdsCall> ads_call_;
|
716
|
+
};
|
717
|
+
|
718
|
+
//
|
719
|
+
// XdsClient::XdsChannel::AdsCall::AdsResponseParser
|
720
|
+
//
|
721
|
+
|
722
|
+
absl::Status
|
723
|
+
XdsClient::XdsChannel::AdsCall::AdsResponseParser::ProcessAdsResponseFields(
|
724
|
+
AdsResponseFields fields) {
|
695
725
|
if (GRPC_TRACE_FLAG_ENABLED(grpc_xds_client_trace)) {
|
696
726
|
gpr_log(
|
697
727
|
GPR_INFO,
|
698
728
|
"[xds_client %p] xds server %s: received ADS response: type_url=%s, "
|
699
729
|
"version=%s, nonce=%s, num_resources=%" PRIuPTR,
|
700
|
-
|
701
|
-
|
730
|
+
ads_call_->xds_client(),
|
731
|
+
ads_call_->xds_channel()->server_.server_uri().c_str(),
|
702
732
|
fields.type_url.c_str(), fields.version.c_str(), fields.nonce.c_str(),
|
703
733
|
fields.num_resources);
|
704
734
|
}
|
705
735
|
result_.type =
|
706
|
-
|
736
|
+
ads_call_->xds_client()->GetResourceTypeLocked(fields.type_url);
|
707
737
|
if (result_.type == nullptr) {
|
708
738
|
return absl::InvalidArgumentError(
|
709
739
|
absl::StrCat("unknown resource type ", fields.type_url));
|
@@ -711,6 +741,8 @@ absl::Status XdsClient::ChannelState::AdsCallState::AdsResponseParser::
|
|
711
741
|
result_.type_url = std::move(fields.type_url);
|
712
742
|
result_.version = std::move(fields.version);
|
713
743
|
result_.nonce = std::move(fields.nonce);
|
744
|
+
result_.read_delay_handle =
|
745
|
+
MakeRefCounted<AdsReadDelayHandle>(ads_call_->Ref());
|
714
746
|
return absl::OkStatus();
|
715
747
|
}
|
716
748
|
|
@@ -740,7 +772,7 @@ void UpdateResourceMetadataNacked(const std::string& version,
|
|
740
772
|
|
741
773
|
} // namespace
|
742
774
|
|
743
|
-
void XdsClient::
|
775
|
+
void XdsClient::XdsChannel::AdsCall::AdsResponseParser::ParseResource(
|
744
776
|
upb_Arena* arena, size_t idx, absl::string_view type_url,
|
745
777
|
absl::string_view resource_name, absl::string_view serialized_resource) {
|
746
778
|
std::string error_prefix = absl::StrCat(
|
@@ -755,8 +787,8 @@ void XdsClient::ChannelState::AdsCallState::AdsResponseParser::ParseResource(
|
|
755
787
|
}
|
756
788
|
// Parse the resource.
|
757
789
|
XdsResourceType::DecodeContext context = {
|
758
|
-
xds_client(),
|
759
|
-
xds_client()->
|
790
|
+
xds_client(), ads_call_->xds_channel()->server_, &grpc_xds_client_trace,
|
791
|
+
xds_client()->def_pool_.ptr(), arena};
|
760
792
|
XdsResourceType::DecodeResult decode_result =
|
761
793
|
result_.type->Decode(context, serialized_resource);
|
762
794
|
// If we didn't already have the resource name from the Resource
|
@@ -789,8 +821,8 @@ void XdsClient::ChannelState::AdsCallState::AdsResponseParser::ParseResource(
|
|
789
821
|
return;
|
790
822
|
}
|
791
823
|
// Cancel resource-does-not-exist timer, if needed.
|
792
|
-
auto timer_it =
|
793
|
-
if (timer_it !=
|
824
|
+
auto timer_it = ads_call_->state_map_.find(result_.type);
|
825
|
+
if (timer_it != ads_call_->state_map_.end()) {
|
794
826
|
auto it = timer_it->second.subscribed_resources.find(
|
795
827
|
parsed_resource_name->authority);
|
796
828
|
if (it != timer_it->second.subscribed_resources.end()) {
|
@@ -832,7 +864,7 @@ void XdsClient::ChannelState::AdsCallState::AdsResponseParser::ParseResource(
|
|
832
864
|
"resource for which we previously ignored a deletion: type %s "
|
833
865
|
"name %s",
|
834
866
|
xds_client(),
|
835
|
-
|
867
|
+
ads_call_->xds_channel()->server_.server_uri().c_str(),
|
836
868
|
std::string(type_url).c_str(), std::string(resource_name).c_str());
|
837
869
|
resource_state.ignored_deletion = false;
|
838
870
|
}
|
@@ -841,7 +873,8 @@ void XdsClient::ChannelState::AdsCallState::AdsResponseParser::ParseResource(
|
|
841
873
|
xds_client()->NotifyWatchersOnErrorLocked(
|
842
874
|
resource_state.watchers,
|
843
875
|
absl::UnavailableError(
|
844
|
-
absl::StrCat("invalid resource: ", decode_status.ToString()))
|
876
|
+
absl::StrCat("invalid resource: ", decode_status.ToString())),
|
877
|
+
result_.read_delay_handle);
|
845
878
|
UpdateResourceMetadataNacked(result_.version, decode_status.ToString(),
|
846
879
|
update_time_, &resource_state.meta);
|
847
880
|
return;
|
@@ -867,57 +900,57 @@ void XdsClient::ChannelState::AdsCallState::AdsResponseParser::ParseResource(
|
|
867
900
|
// Notify watchers.
|
868
901
|
auto& watchers_list = resource_state.watchers;
|
869
902
|
xds_client()->work_serializer_.Schedule(
|
870
|
-
[watchers_list, value = resource_state.resource
|
903
|
+
[watchers_list, value = resource_state.resource,
|
904
|
+
read_delay_handle = result_.read_delay_handle]()
|
871
905
|
ABSL_EXCLUSIVE_LOCKS_REQUIRED(&xds_client()->work_serializer_) {
|
872
906
|
for (const auto& p : watchers_list) {
|
873
|
-
p.first->OnGenericResourceChanged(value);
|
907
|
+
p.first->OnGenericResourceChanged(value, read_delay_handle);
|
874
908
|
}
|
875
909
|
},
|
876
910
|
DEBUG_LOCATION);
|
877
911
|
}
|
878
912
|
|
879
|
-
void XdsClient::
|
913
|
+
void XdsClient::XdsChannel::AdsCall::AdsResponseParser::
|
880
914
|
ResourceWrapperParsingFailed(size_t idx, absl::string_view message) {
|
881
915
|
result_.errors.emplace_back(
|
882
916
|
absl::StrCat("resource index ", idx, ": ", message));
|
883
917
|
}
|
884
918
|
|
885
919
|
//
|
886
|
-
// XdsClient::
|
920
|
+
// XdsClient::XdsChannel::AdsCall
|
887
921
|
//
|
888
922
|
|
889
|
-
XdsClient::
|
890
|
-
RefCountedPtr<RetryableCall<
|
891
|
-
: InternallyRefCounted<
|
892
|
-
GRPC_TRACE_FLAG_ENABLED(grpc_xds_client_refcount_trace)
|
893
|
-
|
894
|
-
|
895
|
-
parent_(std::move(parent)) {
|
923
|
+
XdsClient::XdsChannel::AdsCall::AdsCall(
|
924
|
+
RefCountedPtr<RetryableCall<AdsCall>> retryable_call)
|
925
|
+
: InternallyRefCounted<AdsCall>(
|
926
|
+
GRPC_TRACE_FLAG_ENABLED(grpc_xds_client_refcount_trace) ? "AdsCall"
|
927
|
+
: nullptr),
|
928
|
+
retryable_call_(std::move(retryable_call)) {
|
896
929
|
GPR_ASSERT(xds_client() != nullptr);
|
897
930
|
// Init the ADS call.
|
898
931
|
const char* method =
|
899
932
|
"/envoy.service.discovery.v3.AggregatedDiscoveryService/"
|
900
933
|
"StreamAggregatedResources";
|
901
|
-
|
934
|
+
streaming_call_ = xds_channel()->transport_->CreateStreamingCall(
|
902
935
|
method, std::make_unique<StreamEventHandler>(
|
903
936
|
// Passing the initial ref here. This ref will go away when
|
904
937
|
// the StreamEventHandler is destroyed.
|
905
|
-
RefCountedPtr<
|
906
|
-
GPR_ASSERT(
|
938
|
+
RefCountedPtr<AdsCall>(this)));
|
939
|
+
GPR_ASSERT(streaming_call_ != nullptr);
|
907
940
|
// Start the call.
|
908
941
|
if (GRPC_TRACE_FLAG_ENABLED(grpc_xds_client_trace)) {
|
909
942
|
gpr_log(GPR_INFO,
|
910
943
|
"[xds_client %p] xds server %s: starting ADS call "
|
911
|
-
"(
|
912
|
-
xds_client(),
|
913
|
-
|
944
|
+
"(ads_call: %p, streaming_call: %p)",
|
945
|
+
xds_client(), xds_channel()->server_.server_uri().c_str(), this,
|
946
|
+
streaming_call_.get());
|
914
947
|
}
|
915
948
|
// If this is a reconnect, add any necessary subscriptions from what's
|
916
949
|
// already in the cache.
|
917
950
|
for (const auto& a : xds_client()->authority_state_map_) {
|
918
951
|
const std::string& authority = a.first;
|
919
952
|
// Skip authorities that are not using this xDS channel.
|
920
|
-
if (a.second.
|
953
|
+
if (a.second.xds_channel != xds_channel()) continue;
|
921
954
|
for (const auto& t : a.second.resource_map) {
|
922
955
|
const XdsResourceType* type = t.first;
|
923
956
|
for (const auto& r : t.second) {
|
@@ -930,17 +963,19 @@ XdsClient::ChannelState::AdsCallState::AdsCallState(
|
|
930
963
|
for (const auto& p : state_map_) {
|
931
964
|
SendMessageLocked(p.first);
|
932
965
|
}
|
966
|
+
streaming_call_->StartRecvMessage();
|
933
967
|
}
|
934
968
|
|
935
|
-
void XdsClient::
|
969
|
+
void XdsClient::XdsChannel::AdsCall::Orphan() {
|
936
970
|
state_map_.clear();
|
937
971
|
// Note that the initial ref is held by the StreamEventHandler, which
|
938
|
-
// will be destroyed when
|
939
|
-
// here, since there may be other refs held to
|
940
|
-
|
972
|
+
// will be destroyed when streaming_call_ is destroyed, which may not happen
|
973
|
+
// here, since there may be other refs held to streaming_call_ by internal
|
974
|
+
// callbacks.
|
975
|
+
streaming_call_.reset();
|
941
976
|
}
|
942
977
|
|
943
|
-
void XdsClient::
|
978
|
+
void XdsClient::XdsChannel::AdsCall::SendMessageLocked(
|
944
979
|
const XdsResourceType* type)
|
945
980
|
ABSL_EXCLUSIVE_LOCKS_REQUIRED(&XdsClient::mu_) {
|
946
981
|
// Buffer message sending if an existing message is in flight.
|
@@ -950,24 +985,25 @@ void XdsClient::ChannelState::AdsCallState::SendMessageLocked(
|
|
950
985
|
}
|
951
986
|
auto& state = state_map_[type];
|
952
987
|
std::string serialized_message = xds_client()->api_.CreateAdsRequest(
|
953
|
-
type->type_url(),
|
954
|
-
ResourceNamesForRequest(type), state.status,
|
988
|
+
type->type_url(), xds_channel()->resource_type_version_map_[type],
|
989
|
+
state.nonce, ResourceNamesForRequest(type), state.status,
|
990
|
+
!sent_initial_message_);
|
955
991
|
sent_initial_message_ = true;
|
956
992
|
if (GRPC_TRACE_FLAG_ENABLED(grpc_xds_client_trace)) {
|
957
993
|
gpr_log(GPR_INFO,
|
958
994
|
"[xds_client %p] xds server %s: sending ADS request: type=%s "
|
959
995
|
"version=%s nonce=%s error=%s",
|
960
|
-
xds_client(),
|
996
|
+
xds_client(), xds_channel()->server_.server_uri().c_str(),
|
961
997
|
std::string(type->type_url()).c_str(),
|
962
|
-
|
998
|
+
xds_channel()->resource_type_version_map_[type].c_str(),
|
963
999
|
state.nonce.c_str(), state.status.ToString().c_str());
|
964
1000
|
}
|
965
1001
|
state.status = absl::OkStatus();
|
966
|
-
|
1002
|
+
streaming_call_->SendMessage(std::move(serialized_message));
|
967
1003
|
send_message_pending_ = type;
|
968
1004
|
}
|
969
1005
|
|
970
|
-
void XdsClient::
|
1006
|
+
void XdsClient::XdsChannel::AdsCall::SubscribeLocked(
|
971
1007
|
const XdsResourceType* type, const XdsResourceName& name, bool delay_send) {
|
972
1008
|
auto& state = state_map_[type].subscribed_resources[name.authority][name.key];
|
973
1009
|
if (state == nullptr) {
|
@@ -976,7 +1012,7 @@ void XdsClient::ChannelState::AdsCallState::SubscribeLocked(
|
|
976
1012
|
}
|
977
1013
|
}
|
978
1014
|
|
979
|
-
void XdsClient::
|
1015
|
+
void XdsClient::XdsChannel::AdsCall::UnsubscribeLocked(
|
980
1016
|
const XdsResourceType* type, const XdsResourceName& name,
|
981
1017
|
bool delay_unsubscription) {
|
982
1018
|
auto& type_state_map = state_map_[type];
|
@@ -993,14 +1029,14 @@ void XdsClient::ChannelState::AdsCallState::UnsubscribeLocked(
|
|
993
1029
|
}
|
994
1030
|
}
|
995
1031
|
|
996
|
-
bool XdsClient::
|
1032
|
+
bool XdsClient::XdsChannel::AdsCall::HasSubscribedResources() const {
|
997
1033
|
for (const auto& p : state_map_) {
|
998
1034
|
if (!p.second.subscribed_resources.empty()) return true;
|
999
1035
|
}
|
1000
1036
|
return false;
|
1001
1037
|
}
|
1002
1038
|
|
1003
|
-
void XdsClient::
|
1039
|
+
void XdsClient::XdsChannel::AdsCall::OnRequestSent(bool ok) {
|
1004
1040
|
MutexLock lock(&xds_client()->mu_);
|
1005
1041
|
// For each resource that was in the message we just sent, start the
|
1006
1042
|
// resource timer if needed.
|
@@ -1032,25 +1068,28 @@ void XdsClient::ChannelState::AdsCallState::OnRequestSent(bool ok) {
|
|
1032
1068
|
}
|
1033
1069
|
}
|
1034
1070
|
|
1035
|
-
void XdsClient::
|
1036
|
-
|
1071
|
+
void XdsClient::XdsChannel::AdsCall::OnRecvMessage(absl::string_view payload) {
|
1072
|
+
// Needs to be destroyed after the mutex is released.
|
1073
|
+
RefCountedPtr<ReadDelayHandle> read_delay_handle;
|
1037
1074
|
{
|
1038
1075
|
MutexLock lock(&xds_client()->mu_);
|
1039
1076
|
if (!IsCurrentCallOnChannel()) return;
|
1040
1077
|
// Parse and validate the response.
|
1041
1078
|
AdsResponseParser parser(this);
|
1042
1079
|
absl::Status status = xds_client()->api_.ParseAdsResponse(payload, &parser);
|
1080
|
+
// This includes a handle that will trigger an ADS read.
|
1081
|
+
AdsResponseParser::Result result = parser.TakeResult();
|
1082
|
+
read_delay_handle = std::move(result.read_delay_handle);
|
1043
1083
|
if (!status.ok()) {
|
1044
1084
|
// Ignore unparsable response.
|
1045
1085
|
gpr_log(GPR_ERROR,
|
1046
1086
|
"[xds_client %p] xds server %s: error parsing ADS response (%s) "
|
1047
1087
|
"-- ignoring",
|
1048
|
-
xds_client(),
|
1088
|
+
xds_client(), xds_channel()->server_.server_uri().c_str(),
|
1049
1089
|
status.ToString().c_str());
|
1050
1090
|
} else {
|
1051
1091
|
seen_response_ = true;
|
1052
|
-
|
1053
|
-
AdsResponseParser::Result result = parser.TakeResult();
|
1092
|
+
xds_channel()->status_ = absl::OkStatus();
|
1054
1093
|
// Update nonce.
|
1055
1094
|
auto& state = state_map_[result.type];
|
1056
1095
|
state.nonce = result.nonce;
|
@@ -1063,7 +1102,7 @@ void XdsClient::ChannelState::AdsCallState::OnRecvMessage(
|
|
1063
1102
|
"[xds_client %p] xds server %s: ADS response invalid for "
|
1064
1103
|
"resource "
|
1065
1104
|
"type %s version %s, will NACK: nonce=%s status=%s",
|
1066
|
-
xds_client(),
|
1105
|
+
xds_client(), xds_channel()->server_.server_uri().c_str(),
|
1067
1106
|
result.type_url.c_str(), result.version.c_str(),
|
1068
1107
|
state.nonce.c_str(), state.status.ToString().c_str());
|
1069
1108
|
}
|
@@ -1073,7 +1112,7 @@ void XdsClient::ChannelState::AdsCallState::OnRecvMessage(
|
|
1073
1112
|
const std::string& authority = a.first;
|
1074
1113
|
AuthorityState& authority_state = a.second;
|
1075
1114
|
// Skip authorities that are not using this xDS channel.
|
1076
|
-
if (authority_state.
|
1115
|
+
if (authority_state.xds_channel != xds_channel()) continue;
|
1077
1116
|
auto seen_authority_it = result.resources_seen.find(authority);
|
1078
1117
|
// Find this resource type.
|
1079
1118
|
auto type_it = authority_state.resource_map.find(result.type);
|
@@ -1093,12 +1132,13 @@ void XdsClient::ChannelState::AdsCallState::OnRecvMessage(
|
|
1093
1132
|
// that the resource does not exist. For that case, we rely on
|
1094
1133
|
// the request timeout instead.
|
1095
1134
|
if (resource_state.resource == nullptr) continue;
|
1096
|
-
if (
|
1135
|
+
if (xds_channel()->server_.IgnoreResourceDeletion()) {
|
1097
1136
|
if (!resource_state.ignored_deletion) {
|
1098
1137
|
gpr_log(GPR_ERROR,
|
1099
1138
|
"[xds_client %p] xds server %s: ignoring deletion "
|
1100
1139
|
"for resource type %s name %s",
|
1101
|
-
xds_client(),
|
1140
|
+
xds_client(),
|
1141
|
+
xds_channel()->server_.server_uri().c_str(),
|
1102
1142
|
result.type_url.c_str(),
|
1103
1143
|
XdsClient::ConstructFullXdsResourceName(
|
1104
1144
|
authority, result.type_url.c_str(), resource_key)
|
@@ -1110,7 +1150,7 @@ void XdsClient::ChannelState::AdsCallState::OnRecvMessage(
|
|
1110
1150
|
resource_state.meta.client_status =
|
1111
1151
|
XdsApi::ResourceMetadata::DOES_NOT_EXIST;
|
1112
1152
|
xds_client()->NotifyWatchersOnResourceDoesNotExist(
|
1113
|
-
resource_state.watchers);
|
1153
|
+
resource_state.watchers, read_delay_handle);
|
1114
1154
|
}
|
1115
1155
|
}
|
1116
1156
|
}
|
@@ -1118,14 +1158,8 @@ void XdsClient::ChannelState::AdsCallState::OnRecvMessage(
|
|
1118
1158
|
}
|
1119
1159
|
// If we had valid resources or the update was empty, update the version.
|
1120
1160
|
if (result.have_valid_resources || result.errors.empty()) {
|
1121
|
-
|
1161
|
+
xds_channel()->resource_type_version_map_[result.type] =
|
1122
1162
|
std::move(result.version);
|
1123
|
-
// Start load reporting if needed.
|
1124
|
-
auto& lrs_call = chand()->lrs_calld_;
|
1125
|
-
if (lrs_call != nullptr) {
|
1126
|
-
LrsCallState* lrs_calld = lrs_call->calld();
|
1127
|
-
if (lrs_calld != nullptr) lrs_calld->MaybeStartReportingLocked();
|
1128
|
-
}
|
1129
1163
|
}
|
1130
1164
|
// Send ACK or NACK.
|
1131
1165
|
SendMessageLocked(result.type);
|
@@ -1134,16 +1168,16 @@ void XdsClient::ChannelState::AdsCallState::OnRecvMessage(
|
|
1134
1168
|
xds_client()->work_serializer_.DrainQueue();
|
1135
1169
|
}
|
1136
1170
|
|
1137
|
-
void XdsClient::
|
1138
|
-
absl::Status status) {
|
1171
|
+
void XdsClient::XdsChannel::AdsCall::OnStatusReceived(absl::Status status) {
|
1139
1172
|
{
|
1140
1173
|
MutexLock lock(&xds_client()->mu_);
|
1141
1174
|
if (GRPC_TRACE_FLAG_ENABLED(grpc_xds_client_trace)) {
|
1142
1175
|
gpr_log(GPR_INFO,
|
1143
1176
|
"[xds_client %p] xds server %s: ADS call status received "
|
1144
|
-
"(
|
1145
|
-
xds_client(),
|
1146
|
-
this,
|
1177
|
+
"(xds_channel=%p, ads_call=%p, streaming_call=%p): %s",
|
1178
|
+
xds_client(), xds_channel()->server_.server_uri().c_str(),
|
1179
|
+
xds_channel(), this, streaming_call_.get(),
|
1180
|
+
status.ToString().c_str());
|
1147
1181
|
}
|
1148
1182
|
// Cancel any does-not-exist timers that may be pending.
|
1149
1183
|
for (const auto& p : state_map_) {
|
@@ -1156,12 +1190,12 @@ void XdsClient::ChannelState::AdsCallState::OnStatusReceived(
|
|
1156
1190
|
// Ignore status from a stale call.
|
1157
1191
|
if (IsCurrentCallOnChannel()) {
|
1158
1192
|
// Try to restart the call.
|
1159
|
-
|
1193
|
+
retryable_call_->OnCallFinishedLocked();
|
1160
1194
|
// If we didn't receive a response on the stream, report the
|
1161
1195
|
// stream failure as a connectivity failure, which will report the
|
1162
1196
|
// error to all watchers of resources on this channel.
|
1163
1197
|
if (!seen_response_) {
|
1164
|
-
|
1198
|
+
xds_channel()->SetChannelStatusLocked(absl::UnavailableError(
|
1165
1199
|
absl::StrCat("xDS call failed with no responses received; status: ",
|
1166
1200
|
status.ToString())));
|
1167
1201
|
}
|
@@ -1170,15 +1204,15 @@ void XdsClient::ChannelState::AdsCallState::OnStatusReceived(
|
|
1170
1204
|
xds_client()->work_serializer_.DrainQueue();
|
1171
1205
|
}
|
1172
1206
|
|
1173
|
-
bool XdsClient::
|
1207
|
+
bool XdsClient::XdsChannel::AdsCall::IsCurrentCallOnChannel() const {
|
1174
1208
|
// If the retryable ADS call is null (which only happens when the xds
|
1175
1209
|
// channel is shutting down), all the ADS calls are stale.
|
1176
|
-
if (
|
1177
|
-
return this ==
|
1210
|
+
if (xds_channel()->ads_call_ == nullptr) return false;
|
1211
|
+
return this == xds_channel()->ads_call_->call();
|
1178
1212
|
}
|
1179
1213
|
|
1180
1214
|
std::vector<std::string>
|
1181
|
-
XdsClient::
|
1215
|
+
XdsClient::XdsChannel::AdsCall::ResourceNamesForRequest(
|
1182
1216
|
const XdsResourceType* type) {
|
1183
1217
|
std::vector<std::string> resource_names;
|
1184
1218
|
auto it = state_map_.find(type);
|
@@ -1198,39 +1232,107 @@ XdsClient::ChannelState::AdsCallState::ResourceNamesForRequest(
|
|
1198
1232
|
}
|
1199
1233
|
|
1200
1234
|
//
|
1201
|
-
// XdsClient::
|
1235
|
+
// XdsClient::XdsChannel::LrsCall::Timer
|
1202
1236
|
//
|
1203
1237
|
|
1204
|
-
void XdsClient::
|
1205
|
-
if (timer_handle_.has_value()
|
1206
|
-
|
1238
|
+
void XdsClient::XdsChannel::LrsCall::Timer::Orphan() {
|
1239
|
+
if (timer_handle_.has_value()) {
|
1240
|
+
xds_client()->engine()->Cancel(*timer_handle_);
|
1207
1241
|
timer_handle_.reset();
|
1208
|
-
Unref(DEBUG_LOCATION, "Orphan");
|
1209
1242
|
}
|
1243
|
+
Unref(DEBUG_LOCATION, "Orphan");
|
1210
1244
|
}
|
1211
1245
|
|
1212
|
-
void XdsClient::
|
1213
|
-
ScheduleNextReportLocked() {
|
1246
|
+
void XdsClient::XdsChannel::LrsCall::Timer::ScheduleNextReportLocked() {
|
1214
1247
|
if (GRPC_TRACE_FLAG_ENABLED(grpc_xds_client_trace)) {
|
1215
1248
|
gpr_log(GPR_INFO,
|
1216
|
-
"[xds_client %p] xds server %s: scheduling load report
|
1217
|
-
xds_client(),
|
1218
|
-
|
1219
|
-
|
1220
|
-
|
1221
|
-
|
1222
|
-
|
1223
|
-
|
1224
|
-
|
1225
|
-
|
1249
|
+
"[xds_client %p] xds server %s: scheduling next load report in %s",
|
1250
|
+
xds_client(),
|
1251
|
+
lrs_call_->xds_channel()->server_.server_uri().c_str(),
|
1252
|
+
lrs_call_->load_reporting_interval_.ToString().c_str());
|
1253
|
+
}
|
1254
|
+
timer_handle_ = xds_client()->engine()->RunAfter(
|
1255
|
+
lrs_call_->load_reporting_interval_,
|
1256
|
+
[self = Ref(DEBUG_LOCATION, "timer")]() {
|
1257
|
+
ApplicationCallbackExecCtx callback_exec_ctx;
|
1258
|
+
ExecCtx exec_ctx;
|
1259
|
+
self->OnNextReportTimer();
|
1260
|
+
});
|
1226
1261
|
}
|
1227
1262
|
|
1228
|
-
|
1263
|
+
void XdsClient::XdsChannel::LrsCall::Timer::OnNextReportTimer() {
|
1229
1264
|
MutexLock lock(&xds_client()->mu_);
|
1230
1265
|
timer_handle_.reset();
|
1231
|
-
if (
|
1232
|
-
|
1233
|
-
|
1266
|
+
if (IsCurrentTimerOnCall()) lrs_call_->SendReportLocked();
|
1267
|
+
}
|
1268
|
+
|
1269
|
+
//
|
1270
|
+
// XdsClient::XdsChannel::LrsCall
|
1271
|
+
//
|
1272
|
+
|
1273
|
+
XdsClient::XdsChannel::LrsCall::LrsCall(
|
1274
|
+
RefCountedPtr<RetryableCall<LrsCall>> retryable_call)
|
1275
|
+
: InternallyRefCounted<LrsCall>(
|
1276
|
+
GRPC_TRACE_FLAG_ENABLED(grpc_xds_client_refcount_trace) ? "LrsCall"
|
1277
|
+
: nullptr),
|
1278
|
+
retryable_call_(std::move(retryable_call)) {
|
1279
|
+
// Init the LRS call. Note that the call will progress every time there's
|
1280
|
+
// activity in xds_client()->interested_parties_, which is comprised of
|
1281
|
+
// the polling entities from client_channel.
|
1282
|
+
GPR_ASSERT(xds_client() != nullptr);
|
1283
|
+
const char* method =
|
1284
|
+
"/envoy.service.load_stats.v3.LoadReportingService/StreamLoadStats";
|
1285
|
+
streaming_call_ = xds_channel()->transport_->CreateStreamingCall(
|
1286
|
+
method, std::make_unique<StreamEventHandler>(
|
1287
|
+
// Passing the initial ref here. This ref will go away when
|
1288
|
+
// the StreamEventHandler is destroyed.
|
1289
|
+
RefCountedPtr<LrsCall>(this)));
|
1290
|
+
GPR_ASSERT(streaming_call_ != nullptr);
|
1291
|
+
// Start the call.
|
1292
|
+
if (GRPC_TRACE_FLAG_ENABLED(grpc_xds_client_trace)) {
|
1293
|
+
gpr_log(GPR_INFO,
|
1294
|
+
"[xds_client %p] xds server %s: starting LRS call (lrs_call=%p, "
|
1295
|
+
"streaming_call=%p)",
|
1296
|
+
xds_client(), xds_channel()->server_.server_uri().c_str(), this,
|
1297
|
+
streaming_call_.get());
|
1298
|
+
}
|
1299
|
+
// Send the initial request.
|
1300
|
+
std::string serialized_payload = xds_client()->api_.CreateLrsInitialRequest();
|
1301
|
+
SendMessageLocked(std::move(serialized_payload));
|
1302
|
+
// Read initial response.
|
1303
|
+
streaming_call_->StartRecvMessage();
|
1304
|
+
}
|
1305
|
+
|
1306
|
+
void XdsClient::XdsChannel::LrsCall::Orphan() {
|
1307
|
+
timer_.reset();
|
1308
|
+
// Note that the initial ref is held by the StreamEventHandler, which
|
1309
|
+
// will be destroyed when streaming_call_ is destroyed, which may not happen
|
1310
|
+
// here, since there may be other refs held to streaming_call_ by internal
|
1311
|
+
// callbacks.
|
1312
|
+
streaming_call_.reset();
|
1313
|
+
}
|
1314
|
+
|
1315
|
+
void XdsClient::XdsChannel::LrsCall::MaybeScheduleNextReportLocked() {
|
1316
|
+
// If there are no more registered stats to report, cancel the call.
|
1317
|
+
auto it = xds_client()->xds_load_report_server_map_.find(
|
1318
|
+
xds_channel()->server_.Key());
|
1319
|
+
if (it == xds_client()->xds_load_report_server_map_.end() ||
|
1320
|
+
it->second.load_report_map.empty()) {
|
1321
|
+
it->second.xds_channel->StopLrsCallLocked();
|
1322
|
+
return;
|
1323
|
+
}
|
1324
|
+
// Don't start if the previous send_message op hasn't completed yet.
|
1325
|
+
// If this happens, we'll be called again from OnRequestSent().
|
1326
|
+
if (send_message_pending_) return;
|
1327
|
+
// Don't start if no LRS response has arrived.
|
1328
|
+
if (!seen_response()) return;
|
1329
|
+
// If there is no timer, create one.
|
1330
|
+
// This happens on the initial response and whenever the interval changes.
|
1331
|
+
if (timer_ == nullptr) {
|
1332
|
+
timer_ = MakeOrphanable<Timer>(Ref(DEBUG_LOCATION, "LRS timer"));
|
1333
|
+
}
|
1334
|
+
// Schedule the next load report.
|
1335
|
+
timer_->ScheduleNextReportLocked();
|
1234
1336
|
}
|
1235
1337
|
|
1236
1338
|
namespace {
|
@@ -1249,142 +1351,43 @@ bool LoadReportCountersAreZero(const XdsApi::ClusterLoadReportMap& snapshot) {
|
|
1249
1351
|
|
1250
1352
|
} // namespace
|
1251
1353
|
|
1252
|
-
|
1354
|
+
void XdsClient::XdsChannel::LrsCall::SendReportLocked() {
|
1253
1355
|
// Construct snapshot from all reported stats.
|
1254
1356
|
XdsApi::ClusterLoadReportMap snapshot =
|
1255
|
-
xds_client()->BuildLoadReportSnapshotLocked(
|
1256
|
-
|
1257
|
-
parent_->cluster_names_);
|
1357
|
+
xds_client()->BuildLoadReportSnapshotLocked(
|
1358
|
+
xds_channel()->server_, send_all_clusters_, cluster_names_);
|
1258
1359
|
// Skip client load report if the counters were all zero in the last
|
1259
1360
|
// report and they are still zero in this one.
|
1260
1361
|
const bool old_val = last_report_counters_were_zero_;
|
1261
1362
|
last_report_counters_were_zero_ = LoadReportCountersAreZero(snapshot);
|
1262
1363
|
if (old_val && last_report_counters_were_zero_) {
|
1263
|
-
|
1264
|
-
|
1265
|
-
if (it == xds_client()->xds_load_report_server_map_.end() ||
|
1266
|
-
it->second.load_report_map.empty()) {
|
1267
|
-
it->second.channel_state->StopLrsCallLocked();
|
1268
|
-
return true;
|
1269
|
-
}
|
1270
|
-
ScheduleNextReportLocked();
|
1271
|
-
return false;
|
1364
|
+
MaybeScheduleNextReportLocked();
|
1365
|
+
return;
|
1272
1366
|
}
|
1273
1367
|
// Send a request that contains the snapshot.
|
1274
1368
|
std::string serialized_payload =
|
1275
1369
|
xds_client()->api_.CreateLrsRequest(std::move(snapshot));
|
1276
|
-
|
1277
|
-
parent_->send_message_pending_ = true;
|
1278
|
-
return false;
|
1370
|
+
SendMessageLocked(std::move(serialized_payload));
|
1279
1371
|
}
|
1280
1372
|
|
1281
|
-
void XdsClient::
|
1282
|
-
// If a reporter starts a send_message op, then the reporting interval
|
1283
|
-
// changes and we destroy that reporter and create a new one, and then
|
1284
|
-
// the send_message op started by the old reporter finishes, this
|
1285
|
-
// method will be called even though it was for a completion started
|
1286
|
-
// by the old reporter. In that case, the timer will be pending, so
|
1287
|
-
// we just ignore the completion and wait for the timer to fire.
|
1288
|
-
if (timer_handle_.has_value()) return;
|
1289
|
-
// If there are no more registered stats to report, cancel the call.
|
1290
|
-
auto it = xds_client()->xds_load_report_server_map_.find(
|
1291
|
-
&parent_->chand()->server_);
|
1292
|
-
if (it == xds_client()->xds_load_report_server_map_.end()) return;
|
1293
|
-
if (it->second.load_report_map.empty()) {
|
1294
|
-
if (it->second.channel_state != nullptr) {
|
1295
|
-
it->second.channel_state->StopLrsCallLocked();
|
1296
|
-
}
|
1297
|
-
return;
|
1298
|
-
}
|
1299
|
-
// Otherwise, schedule the next load report.
|
1300
|
-
ScheduleNextReportLocked();
|
1301
|
-
}
|
1302
|
-
|
1303
|
-
//
|
1304
|
-
// XdsClient::ChannelState::LrsCallState
|
1305
|
-
//
|
1306
|
-
|
1307
|
-
XdsClient::ChannelState::LrsCallState::LrsCallState(
|
1308
|
-
RefCountedPtr<RetryableCall<LrsCallState>> parent)
|
1309
|
-
: InternallyRefCounted<LrsCallState>(
|
1310
|
-
GRPC_TRACE_FLAG_ENABLED(grpc_xds_client_refcount_trace)
|
1311
|
-
? "LrsCallState"
|
1312
|
-
: nullptr),
|
1313
|
-
parent_(std::move(parent)) {
|
1314
|
-
// Init the LRS call. Note that the call will progress every time there's
|
1315
|
-
// activity in xds_client()->interested_parties_, which is comprised of
|
1316
|
-
// the polling entities from client_channel.
|
1317
|
-
GPR_ASSERT(xds_client() != nullptr);
|
1318
|
-
const char* method =
|
1319
|
-
"/envoy.service.load_stats.v3.LoadReportingService/StreamLoadStats";
|
1320
|
-
call_ = chand()->transport_->CreateStreamingCall(
|
1321
|
-
method, std::make_unique<StreamEventHandler>(
|
1322
|
-
// Passing the initial ref here. This ref will go away when
|
1323
|
-
// the StreamEventHandler is destroyed.
|
1324
|
-
RefCountedPtr<LrsCallState>(this)));
|
1325
|
-
GPR_ASSERT(call_ != nullptr);
|
1326
|
-
// Start the call.
|
1327
|
-
if (GRPC_TRACE_FLAG_ENABLED(grpc_xds_client_trace)) {
|
1328
|
-
gpr_log(GPR_INFO,
|
1329
|
-
"[xds_client %p] xds server %s: starting LRS call (calld=%p, "
|
1330
|
-
"call=%p)",
|
1331
|
-
xds_client(), chand()->server_.server_uri().c_str(), this,
|
1332
|
-
call_.get());
|
1333
|
-
}
|
1334
|
-
// Send the initial request.
|
1335
|
-
std::string serialized_payload = xds_client()->api_.CreateLrsInitialRequest();
|
1336
|
-
call_->SendMessage(std::move(serialized_payload));
|
1373
|
+
void XdsClient::XdsChannel::LrsCall::SendMessageLocked(std::string payload) {
|
1337
1374
|
send_message_pending_ = true;
|
1375
|
+
streaming_call_->SendMessage(std::move(payload));
|
1338
1376
|
}
|
1339
1377
|
|
1340
|
-
void XdsClient::
|
1341
|
-
reporter_.reset();
|
1342
|
-
// Note that the initial ref is held by the StreamEventHandler, which
|
1343
|
-
// will be destroyed when call_ is destroyed, which may not happen
|
1344
|
-
// here, since there may be other refs held to call_ by internal callbacks.
|
1345
|
-
call_.reset();
|
1346
|
-
}
|
1347
|
-
|
1348
|
-
void XdsClient::ChannelState::LrsCallState::MaybeStartReportingLocked() {
|
1349
|
-
// Don't start again if already started.
|
1350
|
-
if (reporter_ != nullptr) return;
|
1351
|
-
// Don't start if the previous send_message op (of the initial request or
|
1352
|
-
// the last report of the previous reporter) hasn't completed.
|
1353
|
-
if (call_ != nullptr && send_message_pending_) return;
|
1354
|
-
// Don't start if no LRS response has arrived.
|
1355
|
-
if (!seen_response()) return;
|
1356
|
-
// Don't start if the ADS call hasn't received any valid response. Note that
|
1357
|
-
// this must be the first channel because it is the current channel but its
|
1358
|
-
// ADS call hasn't seen any response.
|
1359
|
-
if (chand()->ads_calld_ == nullptr ||
|
1360
|
-
chand()->ads_calld_->calld() == nullptr ||
|
1361
|
-
!chand()->ads_calld_->calld()->seen_response()) {
|
1362
|
-
return;
|
1363
|
-
}
|
1364
|
-
// Start reporting.
|
1365
|
-
if (GRPC_TRACE_FLAG_ENABLED(grpc_xds_client_trace)) {
|
1366
|
-
gpr_log(GPR_INFO, "[xds_client %p] xds server %s: creating load reporter",
|
1367
|
-
xds_client(), chand()->server_.server_uri().c_str());
|
1368
|
-
}
|
1369
|
-
reporter_ = MakeOrphanable<Reporter>(
|
1370
|
-
Ref(DEBUG_LOCATION, "LRS+load_report+start"), load_reporting_interval_);
|
1371
|
-
}
|
1372
|
-
|
1373
|
-
void XdsClient::ChannelState::LrsCallState::OnRequestSent(bool /*ok*/) {
|
1378
|
+
void XdsClient::XdsChannel::LrsCall::OnRequestSent() {
|
1374
1379
|
MutexLock lock(&xds_client()->mu_);
|
1375
1380
|
send_message_pending_ = false;
|
1376
|
-
if (
|
1377
|
-
reporter_->OnReportDoneLocked();
|
1378
|
-
} else {
|
1379
|
-
MaybeStartReportingLocked();
|
1380
|
-
}
|
1381
|
+
if (IsCurrentCallOnChannel()) MaybeScheduleNextReportLocked();
|
1381
1382
|
}
|
1382
1383
|
|
1383
|
-
void XdsClient::
|
1384
|
-
absl::string_view payload) {
|
1384
|
+
void XdsClient::XdsChannel::LrsCall::OnRecvMessage(absl::string_view payload) {
|
1385
1385
|
MutexLock lock(&xds_client()->mu_);
|
1386
1386
|
// If we're no longer the current call, ignore the result.
|
1387
1387
|
if (!IsCurrentCallOnChannel()) return;
|
1388
|
+
// Start recv after any code branch
|
1389
|
+
auto cleanup = absl::MakeCleanup(
|
1390
|
+
[call = streaming_call_.get()]() { call->StartRecvMessage(); });
|
1388
1391
|
// Parse the response.
|
1389
1392
|
bool send_all_clusters = false;
|
1390
1393
|
std::set<std::string> new_cluster_names;
|
@@ -1395,7 +1398,7 @@ void XdsClient::ChannelState::LrsCallState::OnRecvMessage(
|
|
1395
1398
|
if (!status.ok()) {
|
1396
1399
|
gpr_log(GPR_ERROR,
|
1397
1400
|
"[xds_client %p] xds server %s: LRS response parsing failed: %s",
|
1398
|
-
xds_client(),
|
1401
|
+
xds_client(), xds_channel()->server_.server_uri().c_str(),
|
1399
1402
|
status.ToString().c_str());
|
1400
1403
|
return;
|
1401
1404
|
}
|
@@ -1406,7 +1409,7 @@ void XdsClient::ChannelState::LrsCallState::OnRecvMessage(
|
|
1406
1409
|
"[xds_client %p] xds server %s: LRS response received, %" PRIuPTR
|
1407
1410
|
" cluster names, send_all_clusters=%d, load_report_interval=%" PRId64
|
1408
1411
|
"ms",
|
1409
|
-
xds_client(),
|
1412
|
+
xds_client(), xds_channel()->server_.server_uri().c_str(),
|
1410
1413
|
new_cluster_names.size(), send_all_clusters,
|
1411
1414
|
new_load_reporting_interval.millis());
|
1412
1415
|
size_t i = 0;
|
@@ -1423,7 +1426,7 @@ void XdsClient::ChannelState::LrsCallState::OnRecvMessage(
|
|
1423
1426
|
gpr_log(GPR_INFO,
|
1424
1427
|
"[xds_client %p] xds server %s: increased load_report_interval "
|
1425
1428
|
"to minimum value %dms",
|
1426
|
-
xds_client(),
|
1429
|
+
xds_client(), xds_channel()->server_.server_uri().c_str(),
|
1427
1430
|
GRPC_XDS_MIN_CLIENT_LOAD_REPORTING_INTERVAL_MS);
|
1428
1431
|
}
|
1429
1432
|
}
|
@@ -1435,42 +1438,46 @@ void XdsClient::ChannelState::LrsCallState::OnRecvMessage(
|
|
1435
1438
|
gpr_log(GPR_INFO,
|
1436
1439
|
"[xds_client %p] xds server %s: incoming LRS response identical "
|
1437
1440
|
"to current, ignoring.",
|
1438
|
-
xds_client(),
|
1441
|
+
xds_client(), xds_channel()->server_.server_uri().c_str());
|
1439
1442
|
}
|
1440
1443
|
return;
|
1441
1444
|
}
|
1442
|
-
//
|
1443
|
-
|
1445
|
+
// If the interval has changed, we'll need to restart the timer below.
|
1446
|
+
const bool restart_timer =
|
1447
|
+
load_reporting_interval_ != new_load_reporting_interval;
|
1444
1448
|
// Record the new config.
|
1445
1449
|
send_all_clusters_ = send_all_clusters;
|
1446
1450
|
cluster_names_ = std::move(new_cluster_names);
|
1447
1451
|
load_reporting_interval_ = new_load_reporting_interval;
|
1448
|
-
//
|
1449
|
-
|
1452
|
+
// Restart timer if needed.
|
1453
|
+
if (restart_timer) {
|
1454
|
+
timer_.reset();
|
1455
|
+
MaybeScheduleNextReportLocked();
|
1456
|
+
}
|
1450
1457
|
}
|
1451
1458
|
|
1452
|
-
void XdsClient::
|
1453
|
-
absl::Status status) {
|
1459
|
+
void XdsClient::XdsChannel::LrsCall::OnStatusReceived(absl::Status status) {
|
1454
1460
|
MutexLock lock(&xds_client()->mu_);
|
1455
1461
|
if (GRPC_TRACE_FLAG_ENABLED(grpc_xds_client_trace)) {
|
1456
1462
|
gpr_log(GPR_INFO,
|
1457
1463
|
"[xds_client %p] xds server %s: LRS call status received "
|
1458
|
-
"(
|
1459
|
-
xds_client(),
|
1460
|
-
|
1464
|
+
"(xds_channel=%p, lrs_call=%p, streaming_call=%p): %s",
|
1465
|
+
xds_client(), xds_channel()->server_.server_uri().c_str(),
|
1466
|
+
xds_channel(), this, streaming_call_.get(),
|
1467
|
+
status.ToString().c_str());
|
1461
1468
|
}
|
1462
1469
|
// Ignore status from a stale call.
|
1463
1470
|
if (IsCurrentCallOnChannel()) {
|
1464
1471
|
// Try to restart the call.
|
1465
|
-
|
1472
|
+
retryable_call_->OnCallFinishedLocked();
|
1466
1473
|
}
|
1467
1474
|
}
|
1468
1475
|
|
1469
|
-
bool XdsClient::
|
1476
|
+
bool XdsClient::XdsChannel::LrsCall::IsCurrentCallOnChannel() const {
|
1470
1477
|
// If the retryable LRS call is null (which only happens when the xds
|
1471
1478
|
// channel is shutting down), all the LRS calls are stale.
|
1472
|
-
if (
|
1473
|
-
return this ==
|
1479
|
+
if (xds_channel()->lrs_call_ == nullptr) return false;
|
1480
|
+
return this == xds_channel()->lrs_call_->call();
|
1474
1481
|
}
|
1475
1482
|
|
1476
1483
|
//
|
@@ -1490,7 +1497,7 @@ XdsClient::XdsClient(
|
|
1490
1497
|
transport_factory_(std::move(transport_factory)),
|
1491
1498
|
request_timeout_(resource_request_timeout),
|
1492
1499
|
xds_federation_enabled_(XdsFederationEnabled()),
|
1493
|
-
api_(this, &grpc_xds_client_trace, bootstrap_->node(), &
|
1500
|
+
api_(this, &grpc_xds_client_trace, bootstrap_->node(), &def_pool_,
|
1494
1501
|
std::move(user_agent_name), std::move(user_agent_version)),
|
1495
1502
|
work_serializer_(engine),
|
1496
1503
|
engine_(std::move(engine)) {
|
@@ -1521,24 +1528,25 @@ void XdsClient::Orphan() {
|
|
1521
1528
|
invalid_watchers_.clear();
|
1522
1529
|
// We may still be sending lingering queued load report data, so don't
|
1523
1530
|
// just clear the load reporting map, but we do want to clear the refs
|
1524
|
-
// we're holding to the
|
1531
|
+
// we're holding to the XdsChannel objects, to make sure that
|
1525
1532
|
// everything shuts down properly.
|
1526
1533
|
for (auto& p : xds_load_report_server_map_) {
|
1527
|
-
p.second.
|
1534
|
+
p.second.xds_channel.reset(DEBUG_LOCATION, "XdsClient::Orphan()");
|
1528
1535
|
}
|
1529
1536
|
}
|
1530
1537
|
|
1531
|
-
RefCountedPtr<XdsClient::
|
1538
|
+
RefCountedPtr<XdsClient::XdsChannel> XdsClient::GetOrCreateXdsChannelLocked(
|
1532
1539
|
const XdsBootstrap::XdsServer& server, const char* reason) {
|
1533
|
-
|
1534
|
-
|
1540
|
+
std::string key = server.Key();
|
1541
|
+
auto it = xds_channel_map_.find(key);
|
1542
|
+
if (it != xds_channel_map_.end()) {
|
1535
1543
|
return it->second->Ref(DEBUG_LOCATION, reason);
|
1536
1544
|
}
|
1537
1545
|
// Channel not found, so create a new one.
|
1538
|
-
auto
|
1539
|
-
WeakRef(DEBUG_LOCATION, "
|
1540
|
-
|
1541
|
-
return
|
1546
|
+
auto xds_channel =
|
1547
|
+
MakeRefCounted<XdsChannel>(WeakRef(DEBUG_LOCATION, "XdsChannel"), server);
|
1548
|
+
xds_channel_map_[std::move(key)] = xds_channel.get();
|
1549
|
+
return xds_channel;
|
1542
1550
|
}
|
1543
1551
|
|
1544
1552
|
void XdsClient::WatchResource(const XdsResourceType* type,
|
@@ -1555,7 +1563,7 @@ void XdsClient::WatchResource(const XdsResourceType* type,
|
|
1555
1563
|
work_serializer_.Run(
|
1556
1564
|
[watcher = std::move(watcher), status = std::move(status)]()
|
1557
1565
|
ABSL_EXCLUSIVE_LOCKS_REQUIRED(&work_serializer_) {
|
1558
|
-
watcher->OnError(status);
|
1566
|
+
watcher->OnError(status, ReadDelayHandle::NoWait());
|
1559
1567
|
},
|
1560
1568
|
DEBUG_LOCATION);
|
1561
1569
|
};
|
@@ -1579,14 +1587,6 @@ void XdsClient::WatchResource(const XdsResourceType* type,
|
|
1579
1587
|
xds_server = authority->server();
|
1580
1588
|
}
|
1581
1589
|
if (xds_server == nullptr) xds_server = &bootstrap_->server();
|
1582
|
-
// Canonify the xDS server instance, so that we make sure we're using
|
1583
|
-
// the same instance as will be used in AddClusterDropStats() and
|
1584
|
-
// AddClusterLocalityStats(). This may yield a different result than
|
1585
|
-
// the logic above if the same server is listed both in the authority
|
1586
|
-
// and as the top-level server.
|
1587
|
-
// TODO(roth): This is really ugly -- need to find a better way to
|
1588
|
-
// index the xDS server than by address here.
|
1589
|
-
xds_server = bootstrap_->FindXdsServer(*xds_server);
|
1590
1590
|
{
|
1591
1591
|
MutexLock lock(&mu_);
|
1592
1592
|
MaybeRegisterResourceTypeLocked(type);
|
@@ -1606,7 +1606,8 @@ void XdsClient::WatchResource(const XdsResourceType* type,
|
|
1606
1606
|
work_serializer_.Schedule(
|
1607
1607
|
[watcher, value = resource_state.resource]()
|
1608
1608
|
ABSL_EXCLUSIVE_LOCKS_REQUIRED(&work_serializer_) {
|
1609
|
-
watcher->OnGenericResourceChanged(value
|
1609
|
+
watcher->OnGenericResourceChanged(value,
|
1610
|
+
ReadDelayHandle::NoWait());
|
1610
1611
|
},
|
1611
1612
|
DEBUG_LOCATION);
|
1612
1613
|
} else if (resource_state.meta.client_status ==
|
@@ -1618,7 +1619,7 @@ void XdsClient::WatchResource(const XdsResourceType* type,
|
|
1618
1619
|
}
|
1619
1620
|
work_serializer_.Schedule(
|
1620
1621
|
[watcher]() ABSL_EXCLUSIVE_LOCKS_REQUIRED(&work_serializer_) {
|
1621
|
-
watcher->OnResourceDoesNotExist();
|
1622
|
+
watcher->OnResourceDoesNotExist(ReadDelayHandle::NoWait());
|
1622
1623
|
},
|
1623
1624
|
DEBUG_LOCATION);
|
1624
1625
|
} else if (resource_state.meta.client_status ==
|
@@ -1638,18 +1639,19 @@ void XdsClient::WatchResource(const XdsResourceType* type,
|
|
1638
1639
|
work_serializer_.Schedule(
|
1639
1640
|
[watcher, details = std::move(details)]()
|
1640
1641
|
ABSL_EXCLUSIVE_LOCKS_REQUIRED(&work_serializer_) {
|
1641
|
-
watcher->OnError(absl::UnavailableError(
|
1642
|
-
|
1642
|
+
watcher->OnError(absl::UnavailableError(absl::StrCat(
|
1643
|
+
"invalid resource: ", details)),
|
1644
|
+
ReadDelayHandle::NoWait());
|
1643
1645
|
},
|
1644
1646
|
DEBUG_LOCATION);
|
1645
1647
|
}
|
1646
1648
|
// If the authority doesn't yet have a channel, set it, creating it if
|
1647
1649
|
// needed.
|
1648
|
-
if (authority_state.
|
1649
|
-
authority_state.
|
1650
|
-
|
1650
|
+
if (authority_state.xds_channel == nullptr) {
|
1651
|
+
authority_state.xds_channel =
|
1652
|
+
GetOrCreateXdsChannelLocked(*xds_server, "start watch");
|
1651
1653
|
}
|
1652
|
-
absl::Status channel_status = authority_state.
|
1654
|
+
absl::Status channel_status = authority_state.xds_channel->status();
|
1653
1655
|
if (!channel_status.ok()) {
|
1654
1656
|
if (GRPC_TRACE_FLAG_ENABLED(grpc_xds_client_trace)) {
|
1655
1657
|
gpr_log(GPR_INFO,
|
@@ -1660,11 +1662,11 @@ void XdsClient::WatchResource(const XdsResourceType* type,
|
|
1660
1662
|
work_serializer_.Schedule(
|
1661
1663
|
[watcher = std::move(watcher), status = std::move(channel_status)]()
|
1662
1664
|
ABSL_EXCLUSIVE_LOCKS_REQUIRED(&work_serializer_) mutable {
|
1663
|
-
watcher->OnError(std::move(status));
|
1665
|
+
watcher->OnError(std::move(status), ReadDelayHandle::NoWait());
|
1664
1666
|
},
|
1665
1667
|
DEBUG_LOCATION);
|
1666
1668
|
}
|
1667
|
-
authority_state.
|
1669
|
+
authority_state.xds_channel->SubscribeLocked(type, *resource_name);
|
1668
1670
|
}
|
1669
1671
|
work_serializer_.DrainQueue();
|
1670
1672
|
}
|
@@ -1702,13 +1704,13 @@ void XdsClient::CancelResourceWatch(const XdsResourceType* type,
|
|
1702
1704
|
this, std::string(type->type_url()).c_str(),
|
1703
1705
|
std::string(name).c_str());
|
1704
1706
|
}
|
1705
|
-
authority_state.
|
1706
|
-
|
1707
|
+
authority_state.xds_channel->UnsubscribeLocked(type, *resource_name,
|
1708
|
+
delay_unsubscription);
|
1707
1709
|
type_map.erase(resource_it);
|
1708
1710
|
if (type_map.empty()) {
|
1709
1711
|
authority_state.resource_map.erase(type_it);
|
1710
1712
|
if (authority_state.resource_map.empty()) {
|
1711
|
-
authority_state.
|
1713
|
+
authority_state.xds_channel.reset();
|
1712
1714
|
}
|
1713
1715
|
}
|
1714
1716
|
}
|
@@ -1722,7 +1724,7 @@ void XdsClient::MaybeRegisterResourceTypeLocked(
|
|
1722
1724
|
return;
|
1723
1725
|
}
|
1724
1726
|
resource_types_.emplace(resource_type->type_url(), resource_type);
|
1725
|
-
resource_type->InitUpbSymtab(this,
|
1727
|
+
resource_type->InitUpbSymtab(this, def_pool_.ptr());
|
1726
1728
|
}
|
1727
1729
|
|
1728
1730
|
const XdsResourceType* XdsClient::GetResourceTypeLocked(
|
@@ -1778,23 +1780,21 @@ std::string XdsClient::ConstructFullXdsResourceName(
|
|
1778
1780
|
RefCountedPtr<XdsClusterDropStats> XdsClient::AddClusterDropStats(
|
1779
1781
|
const XdsBootstrap::XdsServer& xds_server, absl::string_view cluster_name,
|
1780
1782
|
absl::string_view eds_service_name) {
|
1781
|
-
const auto* server = bootstrap_->FindXdsServer(xds_server);
|
1782
|
-
if (server == nullptr) return nullptr;
|
1783
1783
|
auto key =
|
1784
1784
|
std::make_pair(std::string(cluster_name), std::string(eds_service_name));
|
1785
1785
|
RefCountedPtr<XdsClusterDropStats> cluster_drop_stats;
|
1786
1786
|
{
|
1787
1787
|
MutexLock lock(&mu_);
|
1788
|
-
// We jump through some hoops here to make sure that the
|
1789
|
-
//
|
1790
|
-
//
|
1791
|
-
//
|
1792
|
-
|
1793
|
-
|
1794
|
-
|
1795
|
-
if (server_it->second.
|
1796
|
-
server_it->second.
|
1797
|
-
|
1788
|
+
// We jump through some hoops here to make sure that the
|
1789
|
+
// absl::string_views stored in the XdsClusterDropStats object point
|
1790
|
+
// to the strings in the xds_load_report_server_map_ keys, so that
|
1791
|
+
// they have the same lifetime.
|
1792
|
+
auto server_it = xds_load_report_server_map_
|
1793
|
+
.emplace(xds_server.Key(), LoadReportServer())
|
1794
|
+
.first;
|
1795
|
+
if (server_it->second.xds_channel == nullptr) {
|
1796
|
+
server_it->second.xds_channel = GetOrCreateXdsChannelLocked(
|
1797
|
+
xds_server, "load report map (drop stats)");
|
1798
1798
|
}
|
1799
1799
|
auto load_report_it = server_it->second.load_report_map
|
1800
1800
|
.emplace(std::move(key), LoadReportState())
|
@@ -1809,25 +1809,23 @@ RefCountedPtr<XdsClusterDropStats> XdsClient::AddClusterDropStats(
|
|
1809
1809
|
load_report_state.drop_stats->GetSnapshotAndReset();
|
1810
1810
|
}
|
1811
1811
|
cluster_drop_stats = MakeRefCounted<XdsClusterDropStats>(
|
1812
|
-
Ref(DEBUG_LOCATION, "DropStats"),
|
1812
|
+
Ref(DEBUG_LOCATION, "DropStats"), server_it->first /*xds_server*/,
|
1813
1813
|
load_report_it->first.first /*cluster_name*/,
|
1814
1814
|
load_report_it->first.second /*eds_service_name*/);
|
1815
1815
|
load_report_state.drop_stats = cluster_drop_stats.get();
|
1816
1816
|
}
|
1817
|
-
server_it->second.
|
1817
|
+
server_it->second.xds_channel->MaybeStartLrsCall();
|
1818
1818
|
}
|
1819
1819
|
work_serializer_.DrainQueue();
|
1820
1820
|
return cluster_drop_stats;
|
1821
1821
|
}
|
1822
1822
|
|
1823
1823
|
void XdsClient::RemoveClusterDropStats(
|
1824
|
-
|
1824
|
+
absl::string_view xds_server_key, absl::string_view cluster_name,
|
1825
1825
|
absl::string_view eds_service_name,
|
1826
1826
|
XdsClusterDropStats* cluster_drop_stats) {
|
1827
|
-
const auto* server = bootstrap_->FindXdsServer(xds_server);
|
1828
|
-
if (server == nullptr) return;
|
1829
1827
|
MutexLock lock(&mu_);
|
1830
|
-
auto server_it = xds_load_report_server_map_.find(
|
1828
|
+
auto server_it = xds_load_report_server_map_.find(xds_server_key);
|
1831
1829
|
if (server_it == xds_load_report_server_map_.end()) return;
|
1832
1830
|
auto load_report_it = server_it->second.load_report_map.find(
|
1833
1831
|
std::make_pair(std::string(cluster_name), std::string(eds_service_name)));
|
@@ -1846,23 +1844,21 @@ RefCountedPtr<XdsClusterLocalityStats> XdsClient::AddClusterLocalityStats(
|
|
1846
1844
|
const XdsBootstrap::XdsServer& xds_server, absl::string_view cluster_name,
|
1847
1845
|
absl::string_view eds_service_name,
|
1848
1846
|
RefCountedPtr<XdsLocalityName> locality) {
|
1849
|
-
const auto* server = bootstrap_->FindXdsServer(xds_server);
|
1850
|
-
if (server == nullptr) return nullptr;
|
1851
1847
|
auto key =
|
1852
1848
|
std::make_pair(std::string(cluster_name), std::string(eds_service_name));
|
1853
1849
|
RefCountedPtr<XdsClusterLocalityStats> cluster_locality_stats;
|
1854
1850
|
{
|
1855
1851
|
MutexLock lock(&mu_);
|
1856
|
-
// We jump through some hoops here to make sure that the
|
1857
|
-
//
|
1858
|
-
//
|
1859
|
-
//
|
1860
|
-
|
1861
|
-
|
1862
|
-
|
1863
|
-
if (server_it->second.
|
1864
|
-
server_it->second.
|
1865
|
-
|
1852
|
+
// We jump through some hoops here to make sure that the
|
1853
|
+
// absl::string_views stored in the XdsClusterDropStats object point
|
1854
|
+
// to the strings in the xds_load_report_server_map_ keys, so that
|
1855
|
+
// they have the same lifetime.
|
1856
|
+
auto server_it = xds_load_report_server_map_
|
1857
|
+
.emplace(xds_server.Key(), LoadReportServer())
|
1858
|
+
.first;
|
1859
|
+
if (server_it->second.xds_channel == nullptr) {
|
1860
|
+
server_it->second.xds_channel = GetOrCreateXdsChannelLocked(
|
1861
|
+
xds_server, "load report map (locality stats)");
|
1866
1862
|
}
|
1867
1863
|
auto load_report_it = server_it->second.load_report_map
|
1868
1864
|
.emplace(std::move(key), LoadReportState())
|
@@ -1879,27 +1875,25 @@ RefCountedPtr<XdsClusterLocalityStats> XdsClient::AddClusterLocalityStats(
|
|
1879
1875
|
locality_state.locality_stats->GetSnapshotAndReset();
|
1880
1876
|
}
|
1881
1877
|
cluster_locality_stats = MakeRefCounted<XdsClusterLocalityStats>(
|
1882
|
-
Ref(DEBUG_LOCATION, "LocalityStats"),
|
1878
|
+
Ref(DEBUG_LOCATION, "LocalityStats"), server_it->first /*xds_server*/,
|
1883
1879
|
load_report_it->first.first /*cluster_name*/,
|
1884
1880
|
load_report_it->first.second /*eds_service_name*/,
|
1885
1881
|
std::move(locality));
|
1886
1882
|
locality_state.locality_stats = cluster_locality_stats.get();
|
1887
1883
|
}
|
1888
|
-
server_it->second.
|
1884
|
+
server_it->second.xds_channel->MaybeStartLrsCall();
|
1889
1885
|
}
|
1890
1886
|
work_serializer_.DrainQueue();
|
1891
1887
|
return cluster_locality_stats;
|
1892
1888
|
}
|
1893
1889
|
|
1894
1890
|
void XdsClient::RemoveClusterLocalityStats(
|
1895
|
-
|
1891
|
+
absl::string_view xds_server_key, absl::string_view cluster_name,
|
1896
1892
|
absl::string_view eds_service_name,
|
1897
1893
|
const RefCountedPtr<XdsLocalityName>& locality,
|
1898
1894
|
XdsClusterLocalityStats* cluster_locality_stats) {
|
1899
|
-
const auto* server = bootstrap_->FindXdsServer(xds_server);
|
1900
|
-
if (server == nullptr) return;
|
1901
1895
|
MutexLock lock(&mu_);
|
1902
|
-
auto server_it = xds_load_report_server_map_.find(
|
1896
|
+
auto server_it = xds_load_report_server_map_.find(xds_server_key);
|
1903
1897
|
if (server_it == xds_load_report_server_map_.end()) return;
|
1904
1898
|
auto load_report_it = server_it->second.load_report_map.find(
|
1905
1899
|
std::make_pair(std::string(cluster_name), std::string(eds_service_name)));
|
@@ -1919,7 +1913,7 @@ void XdsClient::RemoveClusterLocalityStats(
|
|
1919
1913
|
|
1920
1914
|
void XdsClient::ResetBackoff() {
|
1921
1915
|
MutexLock lock(&mu_);
|
1922
|
-
for (auto& p :
|
1916
|
+
for (auto& p : xds_channel_map_) {
|
1923
1917
|
p.second->ResetBackoff();
|
1924
1918
|
}
|
1925
1919
|
}
|
@@ -1927,7 +1921,7 @@ void XdsClient::ResetBackoff() {
|
|
1927
1921
|
void XdsClient::NotifyWatchersOnErrorLocked(
|
1928
1922
|
const std::map<ResourceWatcherInterface*,
|
1929
1923
|
RefCountedPtr<ResourceWatcherInterface>>& watchers,
|
1930
|
-
absl::Status status) {
|
1924
|
+
absl::Status status, RefCountedPtr<ReadDelayHandle> read_delay_handle) {
|
1931
1925
|
const auto* node = bootstrap_->node();
|
1932
1926
|
if (node != nullptr) {
|
1933
1927
|
status = absl::Status(
|
@@ -1935,10 +1929,11 @@ void XdsClient::NotifyWatchersOnErrorLocked(
|
|
1935
1929
|
absl::StrCat(status.message(), " (node ID:", node->id(), ")"));
|
1936
1930
|
}
|
1937
1931
|
work_serializer_.Schedule(
|
1938
|
-
[watchers, status = std::move(status)
|
1932
|
+
[watchers, status = std::move(status),
|
1933
|
+
read_delay_handle = std::move(read_delay_handle)]()
|
1939
1934
|
ABSL_EXCLUSIVE_LOCKS_REQUIRED(&work_serializer_) {
|
1940
1935
|
for (const auto& p : watchers) {
|
1941
|
-
p.first->OnError(status);
|
1936
|
+
p.first->OnError(status, read_delay_handle);
|
1942
1937
|
}
|
1943
1938
|
},
|
1944
1939
|
DEBUG_LOCATION);
|
@@ -1946,13 +1941,15 @@ void XdsClient::NotifyWatchersOnErrorLocked(
|
|
1946
1941
|
|
1947
1942
|
void XdsClient::NotifyWatchersOnResourceDoesNotExist(
|
1948
1943
|
const std::map<ResourceWatcherInterface*,
|
1949
|
-
RefCountedPtr<ResourceWatcherInterface>>& watchers
|
1944
|
+
RefCountedPtr<ResourceWatcherInterface>>& watchers,
|
1945
|
+
RefCountedPtr<ReadDelayHandle> read_delay_handle) {
|
1950
1946
|
work_serializer_.Schedule(
|
1951
|
-
[watchers
|
1952
|
-
|
1953
|
-
|
1954
|
-
|
1955
|
-
|
1947
|
+
[watchers, read_delay_handle = std::move(read_delay_handle)]()
|
1948
|
+
ABSL_EXCLUSIVE_LOCKS_REQUIRED(&work_serializer_) {
|
1949
|
+
for (const auto& p : watchers) {
|
1950
|
+
p.first->OnResourceDoesNotExist(read_delay_handle);
|
1951
|
+
}
|
1952
|
+
},
|
1956
1953
|
DEBUG_LOCATION);
|
1957
1954
|
}
|
1958
1955
|
|
@@ -1963,7 +1960,7 @@ XdsApi::ClusterLoadReportMap XdsClient::BuildLoadReportSnapshotLocked(
|
|
1963
1960
|
gpr_log(GPR_INFO, "[xds_client %p] start building load report", this);
|
1964
1961
|
}
|
1965
1962
|
XdsApi::ClusterLoadReportMap snapshot_map;
|
1966
|
-
auto server_it = xds_load_report_server_map_.find(
|
1963
|
+
auto server_it = xds_load_report_server_map_.find(xds_server.Key());
|
1967
1964
|
if (server_it == xds_load_report_server_map_.end()) return snapshot_map;
|
1968
1965
|
auto& load_report_map = server_it->second.load_report_map;
|
1969
1966
|
for (auto load_report_it = load_report_map.begin();
|
@@ -2041,25 +2038,86 @@ XdsApi::ClusterLoadReportMap XdsClient::BuildLoadReportSnapshotLocked(
|
|
2041
2038
|
return snapshot_map;
|
2042
2039
|
}
|
2043
2040
|
|
2044
|
-
|
2045
|
-
|
2046
|
-
|
2041
|
+
namespace {
|
2042
|
+
|
2043
|
+
google_protobuf_Timestamp* EncodeTimestamp(Timestamp value, upb_Arena* arena) {
|
2044
|
+
google_protobuf_Timestamp* timestamp = google_protobuf_Timestamp_new(arena);
|
2045
|
+
gpr_timespec timespec = value.as_timespec(GPR_CLOCK_REALTIME);
|
2046
|
+
google_protobuf_Timestamp_set_seconds(timestamp, timespec.tv_sec);
|
2047
|
+
google_protobuf_Timestamp_set_nanos(timestamp, timespec.tv_nsec);
|
2048
|
+
return timestamp;
|
2049
|
+
}
|
2050
|
+
|
2051
|
+
void FillGenericXdsConfig(
|
2052
|
+
const XdsApi::ResourceMetadata& metadata, upb_StringView type_url,
|
2053
|
+
upb_StringView resource_name, upb_Arena* arena,
|
2054
|
+
envoy_service_status_v3_ClientConfig_GenericXdsConfig* entry) {
|
2055
|
+
envoy_service_status_v3_ClientConfig_GenericXdsConfig_set_type_url(entry,
|
2056
|
+
type_url);
|
2057
|
+
envoy_service_status_v3_ClientConfig_GenericXdsConfig_set_name(entry,
|
2058
|
+
resource_name);
|
2059
|
+
envoy_service_status_v3_ClientConfig_GenericXdsConfig_set_client_status(
|
2060
|
+
entry, metadata.client_status);
|
2061
|
+
if (!metadata.serialized_proto.empty()) {
|
2062
|
+
envoy_service_status_v3_ClientConfig_GenericXdsConfig_set_version_info(
|
2063
|
+
entry, StdStringToUpbString(metadata.version));
|
2064
|
+
envoy_service_status_v3_ClientConfig_GenericXdsConfig_set_last_updated(
|
2065
|
+
entry, EncodeTimestamp(metadata.update_time, arena));
|
2066
|
+
auto* any_field =
|
2067
|
+
envoy_service_status_v3_ClientConfig_GenericXdsConfig_mutable_xds_config(
|
2068
|
+
entry, arena);
|
2069
|
+
google_protobuf_Any_set_type_url(any_field, type_url);
|
2070
|
+
google_protobuf_Any_set_value(
|
2071
|
+
any_field, StdStringToUpbString(metadata.serialized_proto));
|
2072
|
+
}
|
2073
|
+
if (metadata.client_status == XdsApi::ResourceMetadata::NACKED) {
|
2074
|
+
auto* update_failure_state = envoy_admin_v3_UpdateFailureState_new(arena);
|
2075
|
+
envoy_admin_v3_UpdateFailureState_set_details(
|
2076
|
+
update_failure_state, StdStringToUpbString(metadata.failed_details));
|
2077
|
+
envoy_admin_v3_UpdateFailureState_set_version_info(
|
2078
|
+
update_failure_state, StdStringToUpbString(metadata.failed_version));
|
2079
|
+
envoy_admin_v3_UpdateFailureState_set_last_update_attempt(
|
2080
|
+
update_failure_state,
|
2081
|
+
EncodeTimestamp(metadata.failed_update_time, arena));
|
2082
|
+
envoy_service_status_v3_ClientConfig_GenericXdsConfig_set_error_state(
|
2083
|
+
entry, update_failure_state);
|
2084
|
+
}
|
2085
|
+
}
|
2086
|
+
|
2087
|
+
} // namespace
|
2088
|
+
|
2089
|
+
void XdsClient::DumpClientConfig(
|
2090
|
+
std::set<std::string>* string_pool, upb_Arena* arena,
|
2091
|
+
envoy_service_status_v3_ClientConfig* client_config) {
|
2092
|
+
// Assemble config dump messages
|
2093
|
+
// Fill-in the node information
|
2094
|
+
auto* node =
|
2095
|
+
envoy_service_status_v3_ClientConfig_mutable_node(client_config, arena);
|
2096
|
+
api_.PopulateNode(node, arena);
|
2097
|
+
// Dump each resource.
|
2047
2098
|
for (const auto& a : authority_state_map_) { // authority
|
2048
2099
|
const std::string& authority = a.first;
|
2049
2100
|
for (const auto& t : a.second.resource_map) { // type
|
2050
2101
|
const XdsResourceType* type = t.first;
|
2051
|
-
auto
|
2052
|
-
|
2102
|
+
auto it =
|
2103
|
+
string_pool
|
2104
|
+
->emplace(absl::StrCat("type.googleapis.com/", type->type_url()))
|
2105
|
+
.first;
|
2106
|
+
upb_StringView type_url = StdStringToUpbString(*it);
|
2053
2107
|
for (const auto& r : t.second) { // resource id
|
2054
|
-
|
2055
|
-
|
2056
|
-
|
2057
|
-
|
2108
|
+
auto it2 = string_pool
|
2109
|
+
->emplace(ConstructFullXdsResourceName(
|
2110
|
+
authority, type->type_url(), r.first))
|
2111
|
+
.first;
|
2112
|
+
upb_StringView resource_name = StdStringToUpbString(*it2);
|
2113
|
+
envoy_service_status_v3_ClientConfig_GenericXdsConfig* entry =
|
2114
|
+
envoy_service_status_v3_ClientConfig_add_generic_xds_configs(
|
2115
|
+
client_config, arena);
|
2116
|
+
FillGenericXdsConfig(r.second.meta, type_url, resource_name, arena,
|
2117
|
+
entry);
|
2058
2118
|
}
|
2059
2119
|
}
|
2060
2120
|
}
|
2061
|
-
// Assemble config dump messages
|
2062
|
-
return api_.AssembleClientConfig(resource_type_metadata_map);
|
2063
2121
|
}
|
2064
2122
|
|
2065
2123
|
} // namespace grpc_core
|