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
@@ -18,38 +18,27 @@
|
|
18
18
|
|
19
19
|
#include "src/core/lib/experiments/experiments.h"
|
20
20
|
|
21
|
+
#include <stdint.h>
|
22
|
+
|
21
23
|
#ifndef GRPC_EXPERIMENTS_ARE_FINAL
|
22
24
|
|
23
25
|
#if defined(GRPC_CFSTREAM)
|
24
26
|
namespace {
|
25
|
-
const char* const description_block_excessive_requests_before_settings_ack =
|
26
|
-
"If set, block excessive requests before receiving SETTINGS ACK.";
|
27
|
-
const char* const
|
28
|
-
additional_constraints_block_excessive_requests_before_settings_ack = "{}";
|
29
27
|
const char* const description_call_status_override_on_cancellation =
|
30
28
|
"Avoid overriding call status of successfully finished calls if it races "
|
31
29
|
"with cancellation.";
|
32
30
|
const char* const additional_constraints_call_status_override_on_cancellation =
|
33
31
|
"{}";
|
32
|
+
const char* const description_call_v3 = "Promise-based call version 3.";
|
33
|
+
const char* const additional_constraints_call_v3 = "{}";
|
34
34
|
const char* const description_canary_client_privacy =
|
35
35
|
"If set, canary client privacy";
|
36
36
|
const char* const additional_constraints_canary_client_privacy = "{}";
|
37
|
-
const char* const description_chttp2_batch_requests =
|
38
|
-
"Cap the number of requests received by one transport read prior to "
|
39
|
-
"offload.";
|
40
|
-
const char* const additional_constraints_chttp2_batch_requests = "{}";
|
41
|
-
const char* const description_chttp2_offload_on_rst_stream =
|
42
|
-
"Offload work on RST_STREAM.";
|
43
|
-
const char* const additional_constraints_chttp2_offload_on_rst_stream = "{}";
|
44
37
|
const char* const description_client_idleness =
|
45
38
|
"If enabled, client channel idleness is enabled by default.";
|
46
39
|
const char* const additional_constraints_client_idleness = "{}";
|
47
40
|
const char* const description_client_privacy = "If set, client privacy";
|
48
41
|
const char* const additional_constraints_client_privacy = "{}";
|
49
|
-
const char* const description_combiner_offload_to_event_engine =
|
50
|
-
"Offload Combiner work onto the EventEngine instead of the Executor.";
|
51
|
-
const char* const additional_constraints_combiner_offload_to_event_engine =
|
52
|
-
"{}";
|
53
42
|
const char* const description_event_engine_client =
|
54
43
|
"Use EventEngine clients instead of iomgr's grpc_tcp_client";
|
55
44
|
const char* const additional_constraints_event_engine_client = "{}";
|
@@ -73,23 +62,12 @@ const char* const description_keepalive_server_fix =
|
|
73
62
|
"Allows overriding keepalive_permit_without_calls for servers. Refer "
|
74
63
|
"https://github.com/grpc/grpc/pull/33917 for more information.";
|
75
64
|
const char* const additional_constraints_keepalive_server_fix = "{}";
|
76
|
-
const char* const description_lazier_stream_updates =
|
77
|
-
"Allow streams to consume up to 50% of the incoming window before we force "
|
78
|
-
"send a flow control update.";
|
79
|
-
const char* const additional_constraints_lazier_stream_updates = "{}";
|
80
|
-
const char* const description_memory_pressure_controller =
|
81
|
-
"New memory pressure controller";
|
82
|
-
const char* const additional_constraints_memory_pressure_controller = "{}";
|
83
65
|
const char* const description_monitoring_experiment =
|
84
66
|
"Placeholder experiment to prove/disprove our monitoring is working";
|
85
67
|
const char* const additional_constraints_monitoring_experiment = "{}";
|
86
68
|
const char* const description_multiping =
|
87
69
|
"Allow more than one ping to be in flight at a time by default.";
|
88
70
|
const char* const additional_constraints_multiping = "{}";
|
89
|
-
const char* const description_overload_protection =
|
90
|
-
"If chttp2 has more streams than it can handle open, send RST_STREAM "
|
91
|
-
"immediately on new streams appearing.";
|
92
|
-
const char* const additional_constraints_overload_protection = "{}";
|
93
71
|
const char* const description_peer_state_based_framing =
|
94
72
|
"If set, the max sizes of frames sent to lower layers is controlled based "
|
95
73
|
"on the peer's memory pressure which is reflected in its max http2 frame "
|
@@ -106,32 +84,36 @@ const char* const additional_constraints_pending_queue_cap = "{}";
|
|
106
84
|
const char* const description_pick_first_happy_eyeballs =
|
107
85
|
"Use Happy Eyeballs in pick_first.";
|
108
86
|
const char* const additional_constraints_pick_first_happy_eyeballs = "{}";
|
109
|
-
const char* const description_ping_on_rst_stream =
|
110
|
-
"Send a ping on receiving some RST_STREAM frames on the server (proportion "
|
111
|
-
"configurable via grpc.http2.ping_on_rst_stream_percent channel arg).";
|
112
|
-
const char* const additional_constraints_ping_on_rst_stream = "{}";
|
113
87
|
const char* const description_promise_based_client_call =
|
114
88
|
"If set, use the new gRPC promise based call code when it's appropriate "
|
115
89
|
"(ie when all filters in a stack are promise based)";
|
116
90
|
const char* const additional_constraints_promise_based_client_call = "{}";
|
117
|
-
const
|
118
|
-
|
119
|
-
|
91
|
+
const uint8_t required_experiments_promise_based_client_call[] = {
|
92
|
+
static_cast<uint8_t>(grpc_core::kExperimentIdEventEngineClient),
|
93
|
+
static_cast<uint8_t>(grpc_core::kExperimentIdEventEngineListener)};
|
120
94
|
const char* const description_promise_based_server_call =
|
121
95
|
"If set, use the new gRPC promise based call code when it's appropriate "
|
122
96
|
"(ie when all filters in a stack are promise based)";
|
123
97
|
const char* const additional_constraints_promise_based_server_call = "{}";
|
124
|
-
const char* const
|
125
|
-
"
|
126
|
-
"
|
127
|
-
const char* const
|
98
|
+
const char* const description_chaotic_good =
|
99
|
+
"If set, enable the chaotic good load transport (this is mostly here for "
|
100
|
+
"testing)";
|
101
|
+
const char* const additional_constraints_chaotic_good = "{}";
|
102
|
+
const uint8_t required_experiments_chaotic_good[] = {
|
103
|
+
static_cast<uint8_t>(grpc_core::kExperimentIdPromiseBasedClientCall),
|
104
|
+
static_cast<uint8_t>(grpc_core::kExperimentIdPromiseBasedServerCall)};
|
128
105
|
const char* const description_registered_method_lookup_in_transport =
|
129
106
|
"Change registered method's lookup point to transport";
|
130
107
|
const char* const additional_constraints_registered_method_lookup_in_transport =
|
131
108
|
"{}";
|
132
|
-
const char* const
|
133
|
-
"Use
|
134
|
-
const char* const
|
109
|
+
const char* const description_promise_based_inproc_transport =
|
110
|
+
"Use promises for the in-process transport.";
|
111
|
+
const char* const additional_constraints_promise_based_inproc_transport = "{}";
|
112
|
+
const uint8_t required_experiments_promise_based_inproc_transport[] = {
|
113
|
+
static_cast<uint8_t>(grpc_core::kExperimentIdPromiseBasedClientCall),
|
114
|
+
static_cast<uint8_t>(grpc_core::kExperimentIdPromiseBasedServerCall),
|
115
|
+
static_cast<uint8_t>(
|
116
|
+
grpc_core::kExperimentIdRegisteredMethodLookupInTransport)};
|
135
117
|
const char* const description_rfc_max_concurrent_streams =
|
136
118
|
"If set, enable rfc-compliant behavior (cancellation) in the advent that "
|
137
119
|
"max concurrent streams are exceeded in chttp2. See "
|
@@ -150,20 +132,8 @@ const char* const description_schedule_cancellation_over_write =
|
|
150
132
|
"Allow cancellation op to be scheduled over a write";
|
151
133
|
const char* const additional_constraints_schedule_cancellation_over_write =
|
152
134
|
"{}";
|
153
|
-
const char* const description_separate_ping_from_keepalive =
|
154
|
-
"Keep a different keepalive timeout (resolution is seeing data after "
|
155
|
-
"sending a ping) from a ping timeout (resolution is getting a ping ack "
|
156
|
-
"after sending a ping) The first can be short and determines liveness. The "
|
157
|
-
"second can be longer and determines protocol correctness.";
|
158
|
-
const char* const additional_constraints_separate_ping_from_keepalive = "{}";
|
159
135
|
const char* const description_server_privacy = "If set, server privacy";
|
160
136
|
const char* const additional_constraints_server_privacy = "{}";
|
161
|
-
const char* const description_settings_timeout =
|
162
|
-
"If set, use the settings timeout to send settings frame to the peer.";
|
163
|
-
const char* const additional_constraints_settings_timeout = "{}";
|
164
|
-
const char* const description_tarpit =
|
165
|
-
"If set, tarpit invalid requests for some amount of time";
|
166
|
-
const char* const additional_constraints_tarpit = "{}";
|
167
137
|
const char* const description_tcp_frame_size_tuning =
|
168
138
|
"If set, enables TCP to use RPC size estimation made by higher layers. TCP "
|
169
139
|
"would not indicate completion of a read operation until a specified "
|
@@ -180,10 +150,18 @@ const char* const description_unconstrained_max_quota_buffer_size =
|
|
180
150
|
"Discard the cap on the max free pool size for one memory allocator";
|
181
151
|
const char* const additional_constraints_unconstrained_max_quota_buffer_size =
|
182
152
|
"{}";
|
183
|
-
const char* const
|
184
|
-
"
|
185
|
-
|
186
|
-
const char* const
|
153
|
+
const char* const description_v3_backend_metric_filter =
|
154
|
+
"Use the backend metric filter utilizing the v3 filter api";
|
155
|
+
const char* const additional_constraints_v3_backend_metric_filter = "{}";
|
156
|
+
const char* const description_v3_channel_idle_filters =
|
157
|
+
"Use the v3 filter API version of the idle filters.";
|
158
|
+
const char* const additional_constraints_v3_channel_idle_filters = "{}";
|
159
|
+
const char* const description_v3_compression_filter =
|
160
|
+
"Use the compression filter utilizing the v3 filter api";
|
161
|
+
const char* const additional_constraints_v3_compression_filter = "{}";
|
162
|
+
const char* const description_v3_server_auth_filter =
|
163
|
+
"Use the server auth filter utilizing the v3 filter api";
|
164
|
+
const char* const additional_constraints_v3_server_auth_filter = "{}";
|
187
165
|
const char* const description_work_serializer_clears_time_cache =
|
188
166
|
"Have the work serializer clear the time cache when it dispatches work.";
|
189
167
|
const char* const additional_constraints_work_serializer_clears_time_cache =
|
@@ -193,12 +171,14 @@ const char* const description_work_serializer_dispatch =
|
|
193
171
|
"callback, instead of running things inline in the first thread that "
|
194
172
|
"successfully enqueues work.";
|
195
173
|
const char* const additional_constraints_work_serializer_dispatch = "{}";
|
196
|
-
const char* const description_write_size_cap =
|
197
|
-
"Limit outgoing writes proportional to the target write size";
|
198
|
-
const char* const additional_constraints_write_size_cap = "{}";
|
199
174
|
const char* const description_write_size_policy =
|
200
175
|
"Try to size writes such that they don't create too large of a backlog";
|
201
176
|
const char* const additional_constraints_write_size_policy = "{}";
|
177
|
+
const char* const description_write_size_cap =
|
178
|
+
"Limit outgoing writes proportional to the target write size";
|
179
|
+
const char* const additional_constraints_write_size_cap = "{}";
|
180
|
+
const uint8_t required_experiments_write_size_cap[] = {
|
181
|
+
static_cast<uint8_t>(grpc_core::kExperimentIdWriteSizePolicy)};
|
202
182
|
const char* const description_wrr_delegate_to_pick_first =
|
203
183
|
"Change WRR code to delegate to pick_first as per dualstack backend "
|
204
184
|
"design.";
|
@@ -208,144 +188,125 @@ const char* const additional_constraints_wrr_delegate_to_pick_first = "{}";
|
|
208
188
|
namespace grpc_core {
|
209
189
|
|
210
190
|
const ExperimentMetadata g_experiment_metadata[] = {
|
211
|
-
{"block_excessive_requests_before_settings_ack",
|
212
|
-
description_block_excessive_requests_before_settings_ack,
|
213
|
-
additional_constraints_block_excessive_requests_before_settings_ack, true,
|
214
|
-
true},
|
215
191
|
{"call_status_override_on_cancellation",
|
216
192
|
description_call_status_override_on_cancellation,
|
217
|
-
additional_constraints_call_status_override_on_cancellation,
|
193
|
+
additional_constraints_call_status_override_on_cancellation, nullptr, 0,
|
194
|
+
false, true},
|
195
|
+
{"call_v3", description_call_v3, additional_constraints_call_v3, nullptr, 0,
|
196
|
+
false, true},
|
218
197
|
{"canary_client_privacy", description_canary_client_privacy,
|
219
|
-
additional_constraints_canary_client_privacy, false, false},
|
220
|
-
{"chttp2_batch_requests", description_chttp2_batch_requests,
|
221
|
-
additional_constraints_chttp2_batch_requests, true, true},
|
222
|
-
{"chttp2_offload_on_rst_stream", description_chttp2_offload_on_rst_stream,
|
223
|
-
additional_constraints_chttp2_offload_on_rst_stream, true, true},
|
198
|
+
additional_constraints_canary_client_privacy, nullptr, 0, false, false},
|
224
199
|
{"client_idleness", description_client_idleness,
|
225
|
-
additional_constraints_client_idleness, true, true},
|
200
|
+
additional_constraints_client_idleness, nullptr, 0, true, true},
|
226
201
|
{"client_privacy", description_client_privacy,
|
227
|
-
additional_constraints_client_privacy, false, false},
|
228
|
-
{"combiner_offload_to_event_engine",
|
229
|
-
description_combiner_offload_to_event_engine,
|
230
|
-
additional_constraints_combiner_offload_to_event_engine, true, true},
|
202
|
+
additional_constraints_client_privacy, nullptr, 0, false, false},
|
231
203
|
{"event_engine_client", description_event_engine_client,
|
232
|
-
additional_constraints_event_engine_client, false, true},
|
204
|
+
additional_constraints_event_engine_client, nullptr, 0, false, true},
|
233
205
|
{"event_engine_dns", description_event_engine_dns,
|
234
|
-
additional_constraints_event_engine_dns, false, false},
|
206
|
+
additional_constraints_event_engine_dns, nullptr, 0, false, false},
|
235
207
|
{"event_engine_listener", description_event_engine_listener,
|
236
|
-
additional_constraints_event_engine_listener, false, true},
|
208
|
+
additional_constraints_event_engine_listener, nullptr, 0, false, true},
|
237
209
|
{"free_large_allocator", description_free_large_allocator,
|
238
|
-
additional_constraints_free_large_allocator, false, true},
|
210
|
+
additional_constraints_free_large_allocator, nullptr, 0, false, true},
|
239
211
|
{"http2_stats_fix", description_http2_stats_fix,
|
240
|
-
additional_constraints_http2_stats_fix, true, true},
|
212
|
+
additional_constraints_http2_stats_fix, nullptr, 0, true, true},
|
241
213
|
{"keepalive_fix", description_keepalive_fix,
|
242
|
-
additional_constraints_keepalive_fix, false, false},
|
214
|
+
additional_constraints_keepalive_fix, nullptr, 0, false, false},
|
243
215
|
{"keepalive_server_fix", description_keepalive_server_fix,
|
244
|
-
additional_constraints_keepalive_server_fix, false, false},
|
245
|
-
{"lazier_stream_updates", description_lazier_stream_updates,
|
246
|
-
additional_constraints_lazier_stream_updates, true, true},
|
247
|
-
{"memory_pressure_controller", description_memory_pressure_controller,
|
248
|
-
additional_constraints_memory_pressure_controller, false, true},
|
216
|
+
additional_constraints_keepalive_server_fix, nullptr, 0, false, false},
|
249
217
|
{"monitoring_experiment", description_monitoring_experiment,
|
250
|
-
additional_constraints_monitoring_experiment, true, true},
|
218
|
+
additional_constraints_monitoring_experiment, nullptr, 0, true, true},
|
251
219
|
{"multiping", description_multiping, additional_constraints_multiping,
|
252
|
-
false, true},
|
253
|
-
{"overload_protection", description_overload_protection,
|
254
|
-
additional_constraints_overload_protection, true, true},
|
220
|
+
nullptr, 0, false, true},
|
255
221
|
{"peer_state_based_framing", description_peer_state_based_framing,
|
256
|
-
additional_constraints_peer_state_based_framing, false, true},
|
222
|
+
additional_constraints_peer_state_based_framing, nullptr, 0, false, true},
|
257
223
|
{"pending_queue_cap", description_pending_queue_cap,
|
258
|
-
additional_constraints_pending_queue_cap, true, true},
|
224
|
+
additional_constraints_pending_queue_cap, nullptr, 0, true, true},
|
259
225
|
{"pick_first_happy_eyeballs", description_pick_first_happy_eyeballs,
|
260
|
-
additional_constraints_pick_first_happy_eyeballs, true, true},
|
261
|
-
{"ping_on_rst_stream", description_ping_on_rst_stream,
|
262
|
-
additional_constraints_ping_on_rst_stream, true, true},
|
226
|
+
additional_constraints_pick_first_happy_eyeballs, nullptr, 0, true, true},
|
263
227
|
{"promise_based_client_call", description_promise_based_client_call,
|
264
|
-
additional_constraints_promise_based_client_call,
|
265
|
-
|
266
|
-
description_promise_based_inproc_transport,
|
267
|
-
additional_constraints_promise_based_inproc_transport, false, false},
|
228
|
+
additional_constraints_promise_based_client_call,
|
229
|
+
required_experiments_promise_based_client_call, 2, false, true},
|
268
230
|
{"promise_based_server_call", description_promise_based_server_call,
|
269
|
-
additional_constraints_promise_based_server_call, false, true},
|
270
|
-
{"
|
271
|
-
|
231
|
+
additional_constraints_promise_based_server_call, nullptr, 0, false, true},
|
232
|
+
{"chaotic_good", description_chaotic_good,
|
233
|
+
additional_constraints_chaotic_good, required_experiments_chaotic_good, 2,
|
234
|
+
false, true},
|
272
235
|
{"registered_method_lookup_in_transport",
|
273
236
|
description_registered_method_lookup_in_transport,
|
274
|
-
additional_constraints_registered_method_lookup_in_transport,
|
275
|
-
|
276
|
-
|
237
|
+
additional_constraints_registered_method_lookup_in_transport, nullptr, 0,
|
238
|
+
true, true},
|
239
|
+
{"promise_based_inproc_transport",
|
240
|
+
description_promise_based_inproc_transport,
|
241
|
+
additional_constraints_promise_based_inproc_transport,
|
242
|
+
required_experiments_promise_based_inproc_transport, 3, false, false},
|
277
243
|
{"rfc_max_concurrent_streams", description_rfc_max_concurrent_streams,
|
278
|
-
additional_constraints_rfc_max_concurrent_streams,
|
244
|
+
additional_constraints_rfc_max_concurrent_streams, nullptr, 0, false,
|
245
|
+
true},
|
279
246
|
{"round_robin_delegate_to_pick_first",
|
280
247
|
description_round_robin_delegate_to_pick_first,
|
281
|
-
additional_constraints_round_robin_delegate_to_pick_first,
|
282
|
-
|
248
|
+
additional_constraints_round_robin_delegate_to_pick_first, nullptr, 0,
|
249
|
+
true, true},
|
250
|
+
{"rstpit", description_rstpit, additional_constraints_rstpit, nullptr, 0,
|
251
|
+
false, true},
|
283
252
|
{"schedule_cancellation_over_write",
|
284
253
|
description_schedule_cancellation_over_write,
|
285
|
-
additional_constraints_schedule_cancellation_over_write,
|
286
|
-
|
287
|
-
additional_constraints_separate_ping_from_keepalive, true, true},
|
254
|
+
additional_constraints_schedule_cancellation_over_write, nullptr, 0, false,
|
255
|
+
true},
|
288
256
|
{"server_privacy", description_server_privacy,
|
289
|
-
additional_constraints_server_privacy, false, false},
|
290
|
-
{"settings_timeout", description_settings_timeout,
|
291
|
-
additional_constraints_settings_timeout, true, true},
|
292
|
-
{"tarpit", description_tarpit, additional_constraints_tarpit, true, true},
|
257
|
+
additional_constraints_server_privacy, nullptr, 0, false, false},
|
293
258
|
{"tcp_frame_size_tuning", description_tcp_frame_size_tuning,
|
294
|
-
additional_constraints_tcp_frame_size_tuning, false, true},
|
259
|
+
additional_constraints_tcp_frame_size_tuning, nullptr, 0, false, true},
|
295
260
|
{"tcp_rcv_lowat", description_tcp_rcv_lowat,
|
296
|
-
additional_constraints_tcp_rcv_lowat, false, true},
|
261
|
+
additional_constraints_tcp_rcv_lowat, nullptr, 0, false, true},
|
297
262
|
{"trace_record_callops", description_trace_record_callops,
|
298
|
-
additional_constraints_trace_record_callops, false, true},
|
263
|
+
additional_constraints_trace_record_callops, nullptr, 0, false, true},
|
299
264
|
{"unconstrained_max_quota_buffer_size",
|
300
265
|
description_unconstrained_max_quota_buffer_size,
|
301
|
-
additional_constraints_unconstrained_max_quota_buffer_size,
|
302
|
-
|
303
|
-
|
266
|
+
additional_constraints_unconstrained_max_quota_buffer_size, nullptr, 0,
|
267
|
+
false, true},
|
268
|
+
{"v3_backend_metric_filter", description_v3_backend_metric_filter,
|
269
|
+
additional_constraints_v3_backend_metric_filter, nullptr, 0, false, true},
|
270
|
+
{"v3_channel_idle_filters", description_v3_channel_idle_filters,
|
271
|
+
additional_constraints_v3_channel_idle_filters, nullptr, 0, false, true},
|
272
|
+
{"v3_compression_filter", description_v3_compression_filter,
|
273
|
+
additional_constraints_v3_compression_filter, nullptr, 0, false, true},
|
274
|
+
{"v3_server_auth_filter", description_v3_server_auth_filter,
|
275
|
+
additional_constraints_v3_server_auth_filter, nullptr, 0, false, true},
|
304
276
|
{"work_serializer_clears_time_cache",
|
305
277
|
description_work_serializer_clears_time_cache,
|
306
|
-
additional_constraints_work_serializer_clears_time_cache,
|
278
|
+
additional_constraints_work_serializer_clears_time_cache, nullptr, 0, true,
|
279
|
+
true},
|
307
280
|
{"work_serializer_dispatch", description_work_serializer_dispatch,
|
308
|
-
additional_constraints_work_serializer_dispatch, false, true},
|
309
|
-
{"write_size_cap", description_write_size_cap,
|
310
|
-
additional_constraints_write_size_cap, true, true},
|
281
|
+
additional_constraints_work_serializer_dispatch, nullptr, 0, false, true},
|
311
282
|
{"write_size_policy", description_write_size_policy,
|
312
|
-
additional_constraints_write_size_policy, true, true},
|
283
|
+
additional_constraints_write_size_policy, nullptr, 0, true, true},
|
284
|
+
{"write_size_cap", description_write_size_cap,
|
285
|
+
additional_constraints_write_size_cap, required_experiments_write_size_cap,
|
286
|
+
1, true, true},
|
313
287
|
{"wrr_delegate_to_pick_first", description_wrr_delegate_to_pick_first,
|
314
|
-
additional_constraints_wrr_delegate_to_pick_first, true, true},
|
288
|
+
additional_constraints_wrr_delegate_to_pick_first, nullptr, 0, true, true},
|
315
289
|
};
|
316
290
|
|
317
291
|
} // namespace grpc_core
|
318
292
|
|
319
293
|
#elif defined(GPR_WINDOWS)
|
320
294
|
namespace {
|
321
|
-
const char* const description_block_excessive_requests_before_settings_ack =
|
322
|
-
"If set, block excessive requests before receiving SETTINGS ACK.";
|
323
|
-
const char* const
|
324
|
-
additional_constraints_block_excessive_requests_before_settings_ack = "{}";
|
325
295
|
const char* const description_call_status_override_on_cancellation =
|
326
296
|
"Avoid overriding call status of successfully finished calls if it races "
|
327
297
|
"with cancellation.";
|
328
298
|
const char* const additional_constraints_call_status_override_on_cancellation =
|
329
299
|
"{}";
|
300
|
+
const char* const description_call_v3 = "Promise-based call version 3.";
|
301
|
+
const char* const additional_constraints_call_v3 = "{}";
|
330
302
|
const char* const description_canary_client_privacy =
|
331
303
|
"If set, canary client privacy";
|
332
304
|
const char* const additional_constraints_canary_client_privacy = "{}";
|
333
|
-
const char* const description_chttp2_batch_requests =
|
334
|
-
"Cap the number of requests received by one transport read prior to "
|
335
|
-
"offload.";
|
336
|
-
const char* const additional_constraints_chttp2_batch_requests = "{}";
|
337
|
-
const char* const description_chttp2_offload_on_rst_stream =
|
338
|
-
"Offload work on RST_STREAM.";
|
339
|
-
const char* const additional_constraints_chttp2_offload_on_rst_stream = "{}";
|
340
305
|
const char* const description_client_idleness =
|
341
306
|
"If enabled, client channel idleness is enabled by default.";
|
342
307
|
const char* const additional_constraints_client_idleness = "{}";
|
343
308
|
const char* const description_client_privacy = "If set, client privacy";
|
344
309
|
const char* const additional_constraints_client_privacy = "{}";
|
345
|
-
const char* const description_combiner_offload_to_event_engine =
|
346
|
-
"Offload Combiner work onto the EventEngine instead of the Executor.";
|
347
|
-
const char* const additional_constraints_combiner_offload_to_event_engine =
|
348
|
-
"{}";
|
349
310
|
const char* const description_event_engine_client =
|
350
311
|
"Use EventEngine clients instead of iomgr's grpc_tcp_client";
|
351
312
|
const char* const additional_constraints_event_engine_client = "{}";
|
@@ -369,23 +330,12 @@ const char* const description_keepalive_server_fix =
|
|
369
330
|
"Allows overriding keepalive_permit_without_calls for servers. Refer "
|
370
331
|
"https://github.com/grpc/grpc/pull/33917 for more information.";
|
371
332
|
const char* const additional_constraints_keepalive_server_fix = "{}";
|
372
|
-
const char* const description_lazier_stream_updates =
|
373
|
-
"Allow streams to consume up to 50% of the incoming window before we force "
|
374
|
-
"send a flow control update.";
|
375
|
-
const char* const additional_constraints_lazier_stream_updates = "{}";
|
376
|
-
const char* const description_memory_pressure_controller =
|
377
|
-
"New memory pressure controller";
|
378
|
-
const char* const additional_constraints_memory_pressure_controller = "{}";
|
379
333
|
const char* const description_monitoring_experiment =
|
380
334
|
"Placeholder experiment to prove/disprove our monitoring is working";
|
381
335
|
const char* const additional_constraints_monitoring_experiment = "{}";
|
382
336
|
const char* const description_multiping =
|
383
337
|
"Allow more than one ping to be in flight at a time by default.";
|
384
338
|
const char* const additional_constraints_multiping = "{}";
|
385
|
-
const char* const description_overload_protection =
|
386
|
-
"If chttp2 has more streams than it can handle open, send RST_STREAM "
|
387
|
-
"immediately on new streams appearing.";
|
388
|
-
const char* const additional_constraints_overload_protection = "{}";
|
389
339
|
const char* const description_peer_state_based_framing =
|
390
340
|
"If set, the max sizes of frames sent to lower layers is controlled based "
|
391
341
|
"on the peer's memory pressure which is reflected in its max http2 frame "
|
@@ -402,32 +352,36 @@ const char* const additional_constraints_pending_queue_cap = "{}";
|
|
402
352
|
const char* const description_pick_first_happy_eyeballs =
|
403
353
|
"Use Happy Eyeballs in pick_first.";
|
404
354
|
const char* const additional_constraints_pick_first_happy_eyeballs = "{}";
|
405
|
-
const char* const description_ping_on_rst_stream =
|
406
|
-
"Send a ping on receiving some RST_STREAM frames on the server (proportion "
|
407
|
-
"configurable via grpc.http2.ping_on_rst_stream_percent channel arg).";
|
408
|
-
const char* const additional_constraints_ping_on_rst_stream = "{}";
|
409
355
|
const char* const description_promise_based_client_call =
|
410
356
|
"If set, use the new gRPC promise based call code when it's appropriate "
|
411
357
|
"(ie when all filters in a stack are promise based)";
|
412
358
|
const char* const additional_constraints_promise_based_client_call = "{}";
|
413
|
-
const
|
414
|
-
|
415
|
-
|
359
|
+
const uint8_t required_experiments_promise_based_client_call[] = {
|
360
|
+
static_cast<uint8_t>(grpc_core::kExperimentIdEventEngineClient),
|
361
|
+
static_cast<uint8_t>(grpc_core::kExperimentIdEventEngineListener)};
|
416
362
|
const char* const description_promise_based_server_call =
|
417
363
|
"If set, use the new gRPC promise based call code when it's appropriate "
|
418
364
|
"(ie when all filters in a stack are promise based)";
|
419
365
|
const char* const additional_constraints_promise_based_server_call = "{}";
|
420
|
-
const char* const
|
421
|
-
"
|
422
|
-
"
|
423
|
-
const char* const
|
366
|
+
const char* const description_chaotic_good =
|
367
|
+
"If set, enable the chaotic good load transport (this is mostly here for "
|
368
|
+
"testing)";
|
369
|
+
const char* const additional_constraints_chaotic_good = "{}";
|
370
|
+
const uint8_t required_experiments_chaotic_good[] = {
|
371
|
+
static_cast<uint8_t>(grpc_core::kExperimentIdPromiseBasedClientCall),
|
372
|
+
static_cast<uint8_t>(grpc_core::kExperimentIdPromiseBasedServerCall)};
|
424
373
|
const char* const description_registered_method_lookup_in_transport =
|
425
374
|
"Change registered method's lookup point to transport";
|
426
375
|
const char* const additional_constraints_registered_method_lookup_in_transport =
|
427
376
|
"{}";
|
428
|
-
const char* const
|
429
|
-
"Use
|
430
|
-
const char* const
|
377
|
+
const char* const description_promise_based_inproc_transport =
|
378
|
+
"Use promises for the in-process transport.";
|
379
|
+
const char* const additional_constraints_promise_based_inproc_transport = "{}";
|
380
|
+
const uint8_t required_experiments_promise_based_inproc_transport[] = {
|
381
|
+
static_cast<uint8_t>(grpc_core::kExperimentIdPromiseBasedClientCall),
|
382
|
+
static_cast<uint8_t>(grpc_core::kExperimentIdPromiseBasedServerCall),
|
383
|
+
static_cast<uint8_t>(
|
384
|
+
grpc_core::kExperimentIdRegisteredMethodLookupInTransport)};
|
431
385
|
const char* const description_rfc_max_concurrent_streams =
|
432
386
|
"If set, enable rfc-compliant behavior (cancellation) in the advent that "
|
433
387
|
"max concurrent streams are exceeded in chttp2. See "
|
@@ -446,20 +400,8 @@ const char* const description_schedule_cancellation_over_write =
|
|
446
400
|
"Allow cancellation op to be scheduled over a write";
|
447
401
|
const char* const additional_constraints_schedule_cancellation_over_write =
|
448
402
|
"{}";
|
449
|
-
const char* const description_separate_ping_from_keepalive =
|
450
|
-
"Keep a different keepalive timeout (resolution is seeing data after "
|
451
|
-
"sending a ping) from a ping timeout (resolution is getting a ping ack "
|
452
|
-
"after sending a ping) The first can be short and determines liveness. The "
|
453
|
-
"second can be longer and determines protocol correctness.";
|
454
|
-
const char* const additional_constraints_separate_ping_from_keepalive = "{}";
|
455
403
|
const char* const description_server_privacy = "If set, server privacy";
|
456
404
|
const char* const additional_constraints_server_privacy = "{}";
|
457
|
-
const char* const description_settings_timeout =
|
458
|
-
"If set, use the settings timeout to send settings frame to the peer.";
|
459
|
-
const char* const additional_constraints_settings_timeout = "{}";
|
460
|
-
const char* const description_tarpit =
|
461
|
-
"If set, tarpit invalid requests for some amount of time";
|
462
|
-
const char* const additional_constraints_tarpit = "{}";
|
463
405
|
const char* const description_tcp_frame_size_tuning =
|
464
406
|
"If set, enables TCP to use RPC size estimation made by higher layers. TCP "
|
465
407
|
"would not indicate completion of a read operation until a specified "
|
@@ -476,10 +418,18 @@ const char* const description_unconstrained_max_quota_buffer_size =
|
|
476
418
|
"Discard the cap on the max free pool size for one memory allocator";
|
477
419
|
const char* const additional_constraints_unconstrained_max_quota_buffer_size =
|
478
420
|
"{}";
|
479
|
-
const char* const
|
480
|
-
"
|
481
|
-
|
482
|
-
const char* const
|
421
|
+
const char* const description_v3_backend_metric_filter =
|
422
|
+
"Use the backend metric filter utilizing the v3 filter api";
|
423
|
+
const char* const additional_constraints_v3_backend_metric_filter = "{}";
|
424
|
+
const char* const description_v3_channel_idle_filters =
|
425
|
+
"Use the v3 filter API version of the idle filters.";
|
426
|
+
const char* const additional_constraints_v3_channel_idle_filters = "{}";
|
427
|
+
const char* const description_v3_compression_filter =
|
428
|
+
"Use the compression filter utilizing the v3 filter api";
|
429
|
+
const char* const additional_constraints_v3_compression_filter = "{}";
|
430
|
+
const char* const description_v3_server_auth_filter =
|
431
|
+
"Use the server auth filter utilizing the v3 filter api";
|
432
|
+
const char* const additional_constraints_v3_server_auth_filter = "{}";
|
483
433
|
const char* const description_work_serializer_clears_time_cache =
|
484
434
|
"Have the work serializer clear the time cache when it dispatches work.";
|
485
435
|
const char* const additional_constraints_work_serializer_clears_time_cache =
|
@@ -489,12 +439,14 @@ const char* const description_work_serializer_dispatch =
|
|
489
439
|
"callback, instead of running things inline in the first thread that "
|
490
440
|
"successfully enqueues work.";
|
491
441
|
const char* const additional_constraints_work_serializer_dispatch = "{}";
|
492
|
-
const char* const description_write_size_cap =
|
493
|
-
"Limit outgoing writes proportional to the target write size";
|
494
|
-
const char* const additional_constraints_write_size_cap = "{}";
|
495
442
|
const char* const description_write_size_policy =
|
496
443
|
"Try to size writes such that they don't create too large of a backlog";
|
497
444
|
const char* const additional_constraints_write_size_policy = "{}";
|
445
|
+
const char* const description_write_size_cap =
|
446
|
+
"Limit outgoing writes proportional to the target write size";
|
447
|
+
const char* const additional_constraints_write_size_cap = "{}";
|
448
|
+
const uint8_t required_experiments_write_size_cap[] = {
|
449
|
+
static_cast<uint8_t>(grpc_core::kExperimentIdWriteSizePolicy)};
|
498
450
|
const char* const description_wrr_delegate_to_pick_first =
|
499
451
|
"Change WRR code to delegate to pick_first as per dualstack backend "
|
500
452
|
"design.";
|
@@ -504,144 +456,125 @@ const char* const additional_constraints_wrr_delegate_to_pick_first = "{}";
|
|
504
456
|
namespace grpc_core {
|
505
457
|
|
506
458
|
const ExperimentMetadata g_experiment_metadata[] = {
|
507
|
-
{"block_excessive_requests_before_settings_ack",
|
508
|
-
description_block_excessive_requests_before_settings_ack,
|
509
|
-
additional_constraints_block_excessive_requests_before_settings_ack, true,
|
510
|
-
true},
|
511
459
|
{"call_status_override_on_cancellation",
|
512
460
|
description_call_status_override_on_cancellation,
|
513
|
-
additional_constraints_call_status_override_on_cancellation,
|
461
|
+
additional_constraints_call_status_override_on_cancellation, nullptr, 0,
|
462
|
+
false, true},
|
463
|
+
{"call_v3", description_call_v3, additional_constraints_call_v3, nullptr, 0,
|
464
|
+
false, true},
|
514
465
|
{"canary_client_privacy", description_canary_client_privacy,
|
515
|
-
additional_constraints_canary_client_privacy, false, false},
|
516
|
-
{"chttp2_batch_requests", description_chttp2_batch_requests,
|
517
|
-
additional_constraints_chttp2_batch_requests, true, true},
|
518
|
-
{"chttp2_offload_on_rst_stream", description_chttp2_offload_on_rst_stream,
|
519
|
-
additional_constraints_chttp2_offload_on_rst_stream, true, true},
|
466
|
+
additional_constraints_canary_client_privacy, nullptr, 0, false, false},
|
520
467
|
{"client_idleness", description_client_idleness,
|
521
|
-
additional_constraints_client_idleness, true, true},
|
468
|
+
additional_constraints_client_idleness, nullptr, 0, true, true},
|
522
469
|
{"client_privacy", description_client_privacy,
|
523
|
-
additional_constraints_client_privacy, false, false},
|
524
|
-
{"combiner_offload_to_event_engine",
|
525
|
-
description_combiner_offload_to_event_engine,
|
526
|
-
additional_constraints_combiner_offload_to_event_engine, true, true},
|
470
|
+
additional_constraints_client_privacy, nullptr, 0, false, false},
|
527
471
|
{"event_engine_client", description_event_engine_client,
|
528
|
-
additional_constraints_event_engine_client, false, true},
|
472
|
+
additional_constraints_event_engine_client, nullptr, 0, false, true},
|
529
473
|
{"event_engine_dns", description_event_engine_dns,
|
530
|
-
additional_constraints_event_engine_dns, false, false},
|
474
|
+
additional_constraints_event_engine_dns, nullptr, 0, false, false},
|
531
475
|
{"event_engine_listener", description_event_engine_listener,
|
532
|
-
additional_constraints_event_engine_listener, true, true},
|
476
|
+
additional_constraints_event_engine_listener, nullptr, 0, true, true},
|
533
477
|
{"free_large_allocator", description_free_large_allocator,
|
534
|
-
additional_constraints_free_large_allocator, false, true},
|
478
|
+
additional_constraints_free_large_allocator, nullptr, 0, false, true},
|
535
479
|
{"http2_stats_fix", description_http2_stats_fix,
|
536
|
-
additional_constraints_http2_stats_fix, true, true},
|
480
|
+
additional_constraints_http2_stats_fix, nullptr, 0, true, true},
|
537
481
|
{"keepalive_fix", description_keepalive_fix,
|
538
|
-
additional_constraints_keepalive_fix, false, false},
|
482
|
+
additional_constraints_keepalive_fix, nullptr, 0, false, false},
|
539
483
|
{"keepalive_server_fix", description_keepalive_server_fix,
|
540
|
-
additional_constraints_keepalive_server_fix, false, false},
|
541
|
-
{"lazier_stream_updates", description_lazier_stream_updates,
|
542
|
-
additional_constraints_lazier_stream_updates, true, true},
|
543
|
-
{"memory_pressure_controller", description_memory_pressure_controller,
|
544
|
-
additional_constraints_memory_pressure_controller, false, true},
|
484
|
+
additional_constraints_keepalive_server_fix, nullptr, 0, false, false},
|
545
485
|
{"monitoring_experiment", description_monitoring_experiment,
|
546
|
-
additional_constraints_monitoring_experiment, true, true},
|
486
|
+
additional_constraints_monitoring_experiment, nullptr, 0, true, true},
|
547
487
|
{"multiping", description_multiping, additional_constraints_multiping,
|
548
|
-
false, true},
|
549
|
-
{"overload_protection", description_overload_protection,
|
550
|
-
additional_constraints_overload_protection, true, true},
|
488
|
+
nullptr, 0, false, true},
|
551
489
|
{"peer_state_based_framing", description_peer_state_based_framing,
|
552
|
-
additional_constraints_peer_state_based_framing, false, true},
|
490
|
+
additional_constraints_peer_state_based_framing, nullptr, 0, false, true},
|
553
491
|
{"pending_queue_cap", description_pending_queue_cap,
|
554
|
-
additional_constraints_pending_queue_cap, true, true},
|
492
|
+
additional_constraints_pending_queue_cap, nullptr, 0, true, true},
|
555
493
|
{"pick_first_happy_eyeballs", description_pick_first_happy_eyeballs,
|
556
|
-
additional_constraints_pick_first_happy_eyeballs, true, true},
|
557
|
-
{"ping_on_rst_stream", description_ping_on_rst_stream,
|
558
|
-
additional_constraints_ping_on_rst_stream, true, true},
|
494
|
+
additional_constraints_pick_first_happy_eyeballs, nullptr, 0, true, true},
|
559
495
|
{"promise_based_client_call", description_promise_based_client_call,
|
560
|
-
additional_constraints_promise_based_client_call,
|
561
|
-
|
562
|
-
description_promise_based_inproc_transport,
|
563
|
-
additional_constraints_promise_based_inproc_transport, false, false},
|
496
|
+
additional_constraints_promise_based_client_call,
|
497
|
+
required_experiments_promise_based_client_call, 2, false, true},
|
564
498
|
{"promise_based_server_call", description_promise_based_server_call,
|
565
|
-
additional_constraints_promise_based_server_call, false, true},
|
566
|
-
{"
|
567
|
-
|
499
|
+
additional_constraints_promise_based_server_call, nullptr, 0, false, true},
|
500
|
+
{"chaotic_good", description_chaotic_good,
|
501
|
+
additional_constraints_chaotic_good, required_experiments_chaotic_good, 2,
|
502
|
+
false, true},
|
568
503
|
{"registered_method_lookup_in_transport",
|
569
504
|
description_registered_method_lookup_in_transport,
|
570
|
-
additional_constraints_registered_method_lookup_in_transport,
|
571
|
-
|
572
|
-
|
505
|
+
additional_constraints_registered_method_lookup_in_transport, nullptr, 0,
|
506
|
+
true, true},
|
507
|
+
{"promise_based_inproc_transport",
|
508
|
+
description_promise_based_inproc_transport,
|
509
|
+
additional_constraints_promise_based_inproc_transport,
|
510
|
+
required_experiments_promise_based_inproc_transport, 3, false, false},
|
573
511
|
{"rfc_max_concurrent_streams", description_rfc_max_concurrent_streams,
|
574
|
-
additional_constraints_rfc_max_concurrent_streams,
|
512
|
+
additional_constraints_rfc_max_concurrent_streams, nullptr, 0, false,
|
513
|
+
true},
|
575
514
|
{"round_robin_delegate_to_pick_first",
|
576
515
|
description_round_robin_delegate_to_pick_first,
|
577
|
-
additional_constraints_round_robin_delegate_to_pick_first,
|
578
|
-
|
516
|
+
additional_constraints_round_robin_delegate_to_pick_first, nullptr, 0,
|
517
|
+
true, true},
|
518
|
+
{"rstpit", description_rstpit, additional_constraints_rstpit, nullptr, 0,
|
519
|
+
false, true},
|
579
520
|
{"schedule_cancellation_over_write",
|
580
521
|
description_schedule_cancellation_over_write,
|
581
|
-
additional_constraints_schedule_cancellation_over_write,
|
582
|
-
|
583
|
-
additional_constraints_separate_ping_from_keepalive, true, true},
|
522
|
+
additional_constraints_schedule_cancellation_over_write, nullptr, 0, false,
|
523
|
+
true},
|
584
524
|
{"server_privacy", description_server_privacy,
|
585
|
-
additional_constraints_server_privacy, false, false},
|
586
|
-
{"settings_timeout", description_settings_timeout,
|
587
|
-
additional_constraints_settings_timeout, true, true},
|
588
|
-
{"tarpit", description_tarpit, additional_constraints_tarpit, true, true},
|
525
|
+
additional_constraints_server_privacy, nullptr, 0, false, false},
|
589
526
|
{"tcp_frame_size_tuning", description_tcp_frame_size_tuning,
|
590
|
-
additional_constraints_tcp_frame_size_tuning, false, true},
|
527
|
+
additional_constraints_tcp_frame_size_tuning, nullptr, 0, false, true},
|
591
528
|
{"tcp_rcv_lowat", description_tcp_rcv_lowat,
|
592
|
-
additional_constraints_tcp_rcv_lowat, false, true},
|
529
|
+
additional_constraints_tcp_rcv_lowat, nullptr, 0, false, true},
|
593
530
|
{"trace_record_callops", description_trace_record_callops,
|
594
|
-
additional_constraints_trace_record_callops, false, true},
|
531
|
+
additional_constraints_trace_record_callops, nullptr, 0, false, true},
|
595
532
|
{"unconstrained_max_quota_buffer_size",
|
596
533
|
description_unconstrained_max_quota_buffer_size,
|
597
|
-
additional_constraints_unconstrained_max_quota_buffer_size,
|
598
|
-
|
599
|
-
|
534
|
+
additional_constraints_unconstrained_max_quota_buffer_size, nullptr, 0,
|
535
|
+
false, true},
|
536
|
+
{"v3_backend_metric_filter", description_v3_backend_metric_filter,
|
537
|
+
additional_constraints_v3_backend_metric_filter, nullptr, 0, false, true},
|
538
|
+
{"v3_channel_idle_filters", description_v3_channel_idle_filters,
|
539
|
+
additional_constraints_v3_channel_idle_filters, nullptr, 0, false, true},
|
540
|
+
{"v3_compression_filter", description_v3_compression_filter,
|
541
|
+
additional_constraints_v3_compression_filter, nullptr, 0, false, true},
|
542
|
+
{"v3_server_auth_filter", description_v3_server_auth_filter,
|
543
|
+
additional_constraints_v3_server_auth_filter, nullptr, 0, false, true},
|
600
544
|
{"work_serializer_clears_time_cache",
|
601
545
|
description_work_serializer_clears_time_cache,
|
602
|
-
additional_constraints_work_serializer_clears_time_cache,
|
546
|
+
additional_constraints_work_serializer_clears_time_cache, nullptr, 0, true,
|
547
|
+
true},
|
603
548
|
{"work_serializer_dispatch", description_work_serializer_dispatch,
|
604
|
-
additional_constraints_work_serializer_dispatch, false, true},
|
605
|
-
{"write_size_cap", description_write_size_cap,
|
606
|
-
additional_constraints_write_size_cap, true, true},
|
549
|
+
additional_constraints_work_serializer_dispatch, nullptr, 0, false, true},
|
607
550
|
{"write_size_policy", description_write_size_policy,
|
608
|
-
additional_constraints_write_size_policy, true, true},
|
551
|
+
additional_constraints_write_size_policy, nullptr, 0, true, true},
|
552
|
+
{"write_size_cap", description_write_size_cap,
|
553
|
+
additional_constraints_write_size_cap, required_experiments_write_size_cap,
|
554
|
+
1, true, true},
|
609
555
|
{"wrr_delegate_to_pick_first", description_wrr_delegate_to_pick_first,
|
610
|
-
additional_constraints_wrr_delegate_to_pick_first, true, true},
|
556
|
+
additional_constraints_wrr_delegate_to_pick_first, nullptr, 0, true, true},
|
611
557
|
};
|
612
558
|
|
613
559
|
} // namespace grpc_core
|
614
560
|
|
615
561
|
#else
|
616
562
|
namespace {
|
617
|
-
const char* const description_block_excessive_requests_before_settings_ack =
|
618
|
-
"If set, block excessive requests before receiving SETTINGS ACK.";
|
619
|
-
const char* const
|
620
|
-
additional_constraints_block_excessive_requests_before_settings_ack = "{}";
|
621
563
|
const char* const description_call_status_override_on_cancellation =
|
622
564
|
"Avoid overriding call status of successfully finished calls if it races "
|
623
565
|
"with cancellation.";
|
624
566
|
const char* const additional_constraints_call_status_override_on_cancellation =
|
625
567
|
"{}";
|
568
|
+
const char* const description_call_v3 = "Promise-based call version 3.";
|
569
|
+
const char* const additional_constraints_call_v3 = "{}";
|
626
570
|
const char* const description_canary_client_privacy =
|
627
571
|
"If set, canary client privacy";
|
628
572
|
const char* const additional_constraints_canary_client_privacy = "{}";
|
629
|
-
const char* const description_chttp2_batch_requests =
|
630
|
-
"Cap the number of requests received by one transport read prior to "
|
631
|
-
"offload.";
|
632
|
-
const char* const additional_constraints_chttp2_batch_requests = "{}";
|
633
|
-
const char* const description_chttp2_offload_on_rst_stream =
|
634
|
-
"Offload work on RST_STREAM.";
|
635
|
-
const char* const additional_constraints_chttp2_offload_on_rst_stream = "{}";
|
636
573
|
const char* const description_client_idleness =
|
637
574
|
"If enabled, client channel idleness is enabled by default.";
|
638
575
|
const char* const additional_constraints_client_idleness = "{}";
|
639
576
|
const char* const description_client_privacy = "If set, client privacy";
|
640
577
|
const char* const additional_constraints_client_privacy = "{}";
|
641
|
-
const char* const description_combiner_offload_to_event_engine =
|
642
|
-
"Offload Combiner work onto the EventEngine instead of the Executor.";
|
643
|
-
const char* const additional_constraints_combiner_offload_to_event_engine =
|
644
|
-
"{}";
|
645
578
|
const char* const description_event_engine_client =
|
646
579
|
"Use EventEngine clients instead of iomgr's grpc_tcp_client";
|
647
580
|
const char* const additional_constraints_event_engine_client = "{}";
|
@@ -665,23 +598,12 @@ const char* const description_keepalive_server_fix =
|
|
665
598
|
"Allows overriding keepalive_permit_without_calls for servers. Refer "
|
666
599
|
"https://github.com/grpc/grpc/pull/33917 for more information.";
|
667
600
|
const char* const additional_constraints_keepalive_server_fix = "{}";
|
668
|
-
const char* const description_lazier_stream_updates =
|
669
|
-
"Allow streams to consume up to 50% of the incoming window before we force "
|
670
|
-
"send a flow control update.";
|
671
|
-
const char* const additional_constraints_lazier_stream_updates = "{}";
|
672
|
-
const char* const description_memory_pressure_controller =
|
673
|
-
"New memory pressure controller";
|
674
|
-
const char* const additional_constraints_memory_pressure_controller = "{}";
|
675
601
|
const char* const description_monitoring_experiment =
|
676
602
|
"Placeholder experiment to prove/disprove our monitoring is working";
|
677
603
|
const char* const additional_constraints_monitoring_experiment = "{}";
|
678
604
|
const char* const description_multiping =
|
679
605
|
"Allow more than one ping to be in flight at a time by default.";
|
680
606
|
const char* const additional_constraints_multiping = "{}";
|
681
|
-
const char* const description_overload_protection =
|
682
|
-
"If chttp2 has more streams than it can handle open, send RST_STREAM "
|
683
|
-
"immediately on new streams appearing.";
|
684
|
-
const char* const additional_constraints_overload_protection = "{}";
|
685
607
|
const char* const description_peer_state_based_framing =
|
686
608
|
"If set, the max sizes of frames sent to lower layers is controlled based "
|
687
609
|
"on the peer's memory pressure which is reflected in its max http2 frame "
|
@@ -698,32 +620,36 @@ const char* const additional_constraints_pending_queue_cap = "{}";
|
|
698
620
|
const char* const description_pick_first_happy_eyeballs =
|
699
621
|
"Use Happy Eyeballs in pick_first.";
|
700
622
|
const char* const additional_constraints_pick_first_happy_eyeballs = "{}";
|
701
|
-
const char* const description_ping_on_rst_stream =
|
702
|
-
"Send a ping on receiving some RST_STREAM frames on the server (proportion "
|
703
|
-
"configurable via grpc.http2.ping_on_rst_stream_percent channel arg).";
|
704
|
-
const char* const additional_constraints_ping_on_rst_stream = "{}";
|
705
623
|
const char* const description_promise_based_client_call =
|
706
624
|
"If set, use the new gRPC promise based call code when it's appropriate "
|
707
625
|
"(ie when all filters in a stack are promise based)";
|
708
626
|
const char* const additional_constraints_promise_based_client_call = "{}";
|
709
|
-
const
|
710
|
-
|
711
|
-
|
627
|
+
const uint8_t required_experiments_promise_based_client_call[] = {
|
628
|
+
static_cast<uint8_t>(grpc_core::kExperimentIdEventEngineClient),
|
629
|
+
static_cast<uint8_t>(grpc_core::kExperimentIdEventEngineListener)};
|
712
630
|
const char* const description_promise_based_server_call =
|
713
631
|
"If set, use the new gRPC promise based call code when it's appropriate "
|
714
632
|
"(ie when all filters in a stack are promise based)";
|
715
633
|
const char* const additional_constraints_promise_based_server_call = "{}";
|
716
|
-
const char* const
|
717
|
-
"
|
718
|
-
"
|
719
|
-
const char* const
|
634
|
+
const char* const description_chaotic_good =
|
635
|
+
"If set, enable the chaotic good load transport (this is mostly here for "
|
636
|
+
"testing)";
|
637
|
+
const char* const additional_constraints_chaotic_good = "{}";
|
638
|
+
const uint8_t required_experiments_chaotic_good[] = {
|
639
|
+
static_cast<uint8_t>(grpc_core::kExperimentIdPromiseBasedClientCall),
|
640
|
+
static_cast<uint8_t>(grpc_core::kExperimentIdPromiseBasedServerCall)};
|
720
641
|
const char* const description_registered_method_lookup_in_transport =
|
721
642
|
"Change registered method's lookup point to transport";
|
722
643
|
const char* const additional_constraints_registered_method_lookup_in_transport =
|
723
644
|
"{}";
|
724
|
-
const char* const
|
725
|
-
"Use
|
726
|
-
const char* const
|
645
|
+
const char* const description_promise_based_inproc_transport =
|
646
|
+
"Use promises for the in-process transport.";
|
647
|
+
const char* const additional_constraints_promise_based_inproc_transport = "{}";
|
648
|
+
const uint8_t required_experiments_promise_based_inproc_transport[] = {
|
649
|
+
static_cast<uint8_t>(grpc_core::kExperimentIdPromiseBasedClientCall),
|
650
|
+
static_cast<uint8_t>(grpc_core::kExperimentIdPromiseBasedServerCall),
|
651
|
+
static_cast<uint8_t>(
|
652
|
+
grpc_core::kExperimentIdRegisteredMethodLookupInTransport)};
|
727
653
|
const char* const description_rfc_max_concurrent_streams =
|
728
654
|
"If set, enable rfc-compliant behavior (cancellation) in the advent that "
|
729
655
|
"max concurrent streams are exceeded in chttp2. See "
|
@@ -742,20 +668,8 @@ const char* const description_schedule_cancellation_over_write =
|
|
742
668
|
"Allow cancellation op to be scheduled over a write";
|
743
669
|
const char* const additional_constraints_schedule_cancellation_over_write =
|
744
670
|
"{}";
|
745
|
-
const char* const description_separate_ping_from_keepalive =
|
746
|
-
"Keep a different keepalive timeout (resolution is seeing data after "
|
747
|
-
"sending a ping) from a ping timeout (resolution is getting a ping ack "
|
748
|
-
"after sending a ping) The first can be short and determines liveness. The "
|
749
|
-
"second can be longer and determines protocol correctness.";
|
750
|
-
const char* const additional_constraints_separate_ping_from_keepalive = "{}";
|
751
671
|
const char* const description_server_privacy = "If set, server privacy";
|
752
672
|
const char* const additional_constraints_server_privacy = "{}";
|
753
|
-
const char* const description_settings_timeout =
|
754
|
-
"If set, use the settings timeout to send settings frame to the peer.";
|
755
|
-
const char* const additional_constraints_settings_timeout = "{}";
|
756
|
-
const char* const description_tarpit =
|
757
|
-
"If set, tarpit invalid requests for some amount of time";
|
758
|
-
const char* const additional_constraints_tarpit = "{}";
|
759
673
|
const char* const description_tcp_frame_size_tuning =
|
760
674
|
"If set, enables TCP to use RPC size estimation made by higher layers. TCP "
|
761
675
|
"would not indicate completion of a read operation until a specified "
|
@@ -772,10 +686,18 @@ const char* const description_unconstrained_max_quota_buffer_size =
|
|
772
686
|
"Discard the cap on the max free pool size for one memory allocator";
|
773
687
|
const char* const additional_constraints_unconstrained_max_quota_buffer_size =
|
774
688
|
"{}";
|
775
|
-
const char* const
|
776
|
-
"
|
777
|
-
|
778
|
-
const char* const
|
689
|
+
const char* const description_v3_backend_metric_filter =
|
690
|
+
"Use the backend metric filter utilizing the v3 filter api";
|
691
|
+
const char* const additional_constraints_v3_backend_metric_filter = "{}";
|
692
|
+
const char* const description_v3_channel_idle_filters =
|
693
|
+
"Use the v3 filter API version of the idle filters.";
|
694
|
+
const char* const additional_constraints_v3_channel_idle_filters = "{}";
|
695
|
+
const char* const description_v3_compression_filter =
|
696
|
+
"Use the compression filter utilizing the v3 filter api";
|
697
|
+
const char* const additional_constraints_v3_compression_filter = "{}";
|
698
|
+
const char* const description_v3_server_auth_filter =
|
699
|
+
"Use the server auth filter utilizing the v3 filter api";
|
700
|
+
const char* const additional_constraints_v3_server_auth_filter = "{}";
|
779
701
|
const char* const description_work_serializer_clears_time_cache =
|
780
702
|
"Have the work serializer clear the time cache when it dispatches work.";
|
781
703
|
const char* const additional_constraints_work_serializer_clears_time_cache =
|
@@ -785,12 +707,14 @@ const char* const description_work_serializer_dispatch =
|
|
785
707
|
"callback, instead of running things inline in the first thread that "
|
786
708
|
"successfully enqueues work.";
|
787
709
|
const char* const additional_constraints_work_serializer_dispatch = "{}";
|
788
|
-
const char* const description_write_size_cap =
|
789
|
-
"Limit outgoing writes proportional to the target write size";
|
790
|
-
const char* const additional_constraints_write_size_cap = "{}";
|
791
710
|
const char* const description_write_size_policy =
|
792
711
|
"Try to size writes such that they don't create too large of a backlog";
|
793
712
|
const char* const additional_constraints_write_size_policy = "{}";
|
713
|
+
const char* const description_write_size_cap =
|
714
|
+
"Limit outgoing writes proportional to the target write size";
|
715
|
+
const char* const additional_constraints_write_size_cap = "{}";
|
716
|
+
const uint8_t required_experiments_write_size_cap[] = {
|
717
|
+
static_cast<uint8_t>(grpc_core::kExperimentIdWriteSizePolicy)};
|
794
718
|
const char* const description_wrr_delegate_to_pick_first =
|
795
719
|
"Change WRR code to delegate to pick_first as per dualstack backend "
|
796
720
|
"design.";
|
@@ -800,110 +724,104 @@ const char* const additional_constraints_wrr_delegate_to_pick_first = "{}";
|
|
800
724
|
namespace grpc_core {
|
801
725
|
|
802
726
|
const ExperimentMetadata g_experiment_metadata[] = {
|
803
|
-
{"block_excessive_requests_before_settings_ack",
|
804
|
-
description_block_excessive_requests_before_settings_ack,
|
805
|
-
additional_constraints_block_excessive_requests_before_settings_ack, true,
|
806
|
-
true},
|
807
727
|
{"call_status_override_on_cancellation",
|
808
728
|
description_call_status_override_on_cancellation,
|
809
|
-
additional_constraints_call_status_override_on_cancellation,
|
729
|
+
additional_constraints_call_status_override_on_cancellation, nullptr, 0,
|
730
|
+
false, true},
|
731
|
+
{"call_v3", description_call_v3, additional_constraints_call_v3, nullptr, 0,
|
732
|
+
false, true},
|
810
733
|
{"canary_client_privacy", description_canary_client_privacy,
|
811
|
-
additional_constraints_canary_client_privacy, false, false},
|
812
|
-
{"chttp2_batch_requests", description_chttp2_batch_requests,
|
813
|
-
additional_constraints_chttp2_batch_requests, true, true},
|
814
|
-
{"chttp2_offload_on_rst_stream", description_chttp2_offload_on_rst_stream,
|
815
|
-
additional_constraints_chttp2_offload_on_rst_stream, true, true},
|
734
|
+
additional_constraints_canary_client_privacy, nullptr, 0, false, false},
|
816
735
|
{"client_idleness", description_client_idleness,
|
817
|
-
additional_constraints_client_idleness, true, true},
|
736
|
+
additional_constraints_client_idleness, nullptr, 0, true, true},
|
818
737
|
{"client_privacy", description_client_privacy,
|
819
|
-
additional_constraints_client_privacy, false, false},
|
820
|
-
{"combiner_offload_to_event_engine",
|
821
|
-
description_combiner_offload_to_event_engine,
|
822
|
-
additional_constraints_combiner_offload_to_event_engine, true, true},
|
738
|
+
additional_constraints_client_privacy, nullptr, 0, false, false},
|
823
739
|
{"event_engine_client", description_event_engine_client,
|
824
|
-
additional_constraints_event_engine_client, false, true},
|
740
|
+
additional_constraints_event_engine_client, nullptr, 0, false, true},
|
825
741
|
{"event_engine_dns", description_event_engine_dns,
|
826
|
-
additional_constraints_event_engine_dns, false, false},
|
742
|
+
additional_constraints_event_engine_dns, nullptr, 0, false, false},
|
827
743
|
{"event_engine_listener", description_event_engine_listener,
|
828
|
-
additional_constraints_event_engine_listener, true, true},
|
744
|
+
additional_constraints_event_engine_listener, nullptr, 0, true, true},
|
829
745
|
{"free_large_allocator", description_free_large_allocator,
|
830
|
-
additional_constraints_free_large_allocator, false, true},
|
746
|
+
additional_constraints_free_large_allocator, nullptr, 0, false, true},
|
831
747
|
{"http2_stats_fix", description_http2_stats_fix,
|
832
|
-
additional_constraints_http2_stats_fix, true, true},
|
748
|
+
additional_constraints_http2_stats_fix, nullptr, 0, true, true},
|
833
749
|
{"keepalive_fix", description_keepalive_fix,
|
834
|
-
additional_constraints_keepalive_fix, false, false},
|
750
|
+
additional_constraints_keepalive_fix, nullptr, 0, false, false},
|
835
751
|
{"keepalive_server_fix", description_keepalive_server_fix,
|
836
|
-
additional_constraints_keepalive_server_fix, false, false},
|
837
|
-
{"lazier_stream_updates", description_lazier_stream_updates,
|
838
|
-
additional_constraints_lazier_stream_updates, true, true},
|
839
|
-
{"memory_pressure_controller", description_memory_pressure_controller,
|
840
|
-
additional_constraints_memory_pressure_controller, false, true},
|
752
|
+
additional_constraints_keepalive_server_fix, nullptr, 0, false, false},
|
841
753
|
{"monitoring_experiment", description_monitoring_experiment,
|
842
|
-
additional_constraints_monitoring_experiment, true, true},
|
754
|
+
additional_constraints_monitoring_experiment, nullptr, 0, true, true},
|
843
755
|
{"multiping", description_multiping, additional_constraints_multiping,
|
844
|
-
false, true},
|
845
|
-
{"overload_protection", description_overload_protection,
|
846
|
-
additional_constraints_overload_protection, true, true},
|
756
|
+
nullptr, 0, false, true},
|
847
757
|
{"peer_state_based_framing", description_peer_state_based_framing,
|
848
|
-
additional_constraints_peer_state_based_framing, false, true},
|
758
|
+
additional_constraints_peer_state_based_framing, nullptr, 0, false, true},
|
849
759
|
{"pending_queue_cap", description_pending_queue_cap,
|
850
|
-
additional_constraints_pending_queue_cap, true, true},
|
760
|
+
additional_constraints_pending_queue_cap, nullptr, 0, true, true},
|
851
761
|
{"pick_first_happy_eyeballs", description_pick_first_happy_eyeballs,
|
852
|
-
additional_constraints_pick_first_happy_eyeballs, true, true},
|
853
|
-
{"ping_on_rst_stream", description_ping_on_rst_stream,
|
854
|
-
additional_constraints_ping_on_rst_stream, true, true},
|
762
|
+
additional_constraints_pick_first_happy_eyeballs, nullptr, 0, true, true},
|
855
763
|
{"promise_based_client_call", description_promise_based_client_call,
|
856
|
-
additional_constraints_promise_based_client_call,
|
857
|
-
|
858
|
-
description_promise_based_inproc_transport,
|
859
|
-
additional_constraints_promise_based_inproc_transport, false, false},
|
764
|
+
additional_constraints_promise_based_client_call,
|
765
|
+
required_experiments_promise_based_client_call, 2, false, true},
|
860
766
|
{"promise_based_server_call", description_promise_based_server_call,
|
861
|
-
additional_constraints_promise_based_server_call, false, true},
|
862
|
-
{"
|
863
|
-
|
767
|
+
additional_constraints_promise_based_server_call, nullptr, 0, false, true},
|
768
|
+
{"chaotic_good", description_chaotic_good,
|
769
|
+
additional_constraints_chaotic_good, required_experiments_chaotic_good, 2,
|
770
|
+
false, true},
|
864
771
|
{"registered_method_lookup_in_transport",
|
865
772
|
description_registered_method_lookup_in_transport,
|
866
|
-
additional_constraints_registered_method_lookup_in_transport,
|
867
|
-
|
868
|
-
|
773
|
+
additional_constraints_registered_method_lookup_in_transport, nullptr, 0,
|
774
|
+
true, true},
|
775
|
+
{"promise_based_inproc_transport",
|
776
|
+
description_promise_based_inproc_transport,
|
777
|
+
additional_constraints_promise_based_inproc_transport,
|
778
|
+
required_experiments_promise_based_inproc_transport, 3, false, false},
|
869
779
|
{"rfc_max_concurrent_streams", description_rfc_max_concurrent_streams,
|
870
|
-
additional_constraints_rfc_max_concurrent_streams,
|
780
|
+
additional_constraints_rfc_max_concurrent_streams, nullptr, 0, false,
|
781
|
+
true},
|
871
782
|
{"round_robin_delegate_to_pick_first",
|
872
783
|
description_round_robin_delegate_to_pick_first,
|
873
|
-
additional_constraints_round_robin_delegate_to_pick_first,
|
874
|
-
|
784
|
+
additional_constraints_round_robin_delegate_to_pick_first, nullptr, 0,
|
785
|
+
true, true},
|
786
|
+
{"rstpit", description_rstpit, additional_constraints_rstpit, nullptr, 0,
|
787
|
+
false, true},
|
875
788
|
{"schedule_cancellation_over_write",
|
876
789
|
description_schedule_cancellation_over_write,
|
877
|
-
additional_constraints_schedule_cancellation_over_write,
|
878
|
-
|
879
|
-
additional_constraints_separate_ping_from_keepalive, true, true},
|
790
|
+
additional_constraints_schedule_cancellation_over_write, nullptr, 0, false,
|
791
|
+
true},
|
880
792
|
{"server_privacy", description_server_privacy,
|
881
|
-
additional_constraints_server_privacy, false, false},
|
882
|
-
{"settings_timeout", description_settings_timeout,
|
883
|
-
additional_constraints_settings_timeout, true, true},
|
884
|
-
{"tarpit", description_tarpit, additional_constraints_tarpit, true, true},
|
793
|
+
additional_constraints_server_privacy, nullptr, 0, false, false},
|
885
794
|
{"tcp_frame_size_tuning", description_tcp_frame_size_tuning,
|
886
|
-
additional_constraints_tcp_frame_size_tuning, false, true},
|
795
|
+
additional_constraints_tcp_frame_size_tuning, nullptr, 0, false, true},
|
887
796
|
{"tcp_rcv_lowat", description_tcp_rcv_lowat,
|
888
|
-
additional_constraints_tcp_rcv_lowat, false, true},
|
797
|
+
additional_constraints_tcp_rcv_lowat, nullptr, 0, false, true},
|
889
798
|
{"trace_record_callops", description_trace_record_callops,
|
890
|
-
additional_constraints_trace_record_callops, false, true},
|
799
|
+
additional_constraints_trace_record_callops, nullptr, 0, false, true},
|
891
800
|
{"unconstrained_max_quota_buffer_size",
|
892
801
|
description_unconstrained_max_quota_buffer_size,
|
893
|
-
additional_constraints_unconstrained_max_quota_buffer_size,
|
894
|
-
|
895
|
-
|
802
|
+
additional_constraints_unconstrained_max_quota_buffer_size, nullptr, 0,
|
803
|
+
false, true},
|
804
|
+
{"v3_backend_metric_filter", description_v3_backend_metric_filter,
|
805
|
+
additional_constraints_v3_backend_metric_filter, nullptr, 0, false, true},
|
806
|
+
{"v3_channel_idle_filters", description_v3_channel_idle_filters,
|
807
|
+
additional_constraints_v3_channel_idle_filters, nullptr, 0, false, true},
|
808
|
+
{"v3_compression_filter", description_v3_compression_filter,
|
809
|
+
additional_constraints_v3_compression_filter, nullptr, 0, false, true},
|
810
|
+
{"v3_server_auth_filter", description_v3_server_auth_filter,
|
811
|
+
additional_constraints_v3_server_auth_filter, nullptr, 0, false, true},
|
896
812
|
{"work_serializer_clears_time_cache",
|
897
813
|
description_work_serializer_clears_time_cache,
|
898
|
-
additional_constraints_work_serializer_clears_time_cache,
|
814
|
+
additional_constraints_work_serializer_clears_time_cache, nullptr, 0, true,
|
815
|
+
true},
|
899
816
|
{"work_serializer_dispatch", description_work_serializer_dispatch,
|
900
|
-
additional_constraints_work_serializer_dispatch, false, true},
|
901
|
-
{"write_size_cap", description_write_size_cap,
|
902
|
-
additional_constraints_write_size_cap, true, true},
|
817
|
+
additional_constraints_work_serializer_dispatch, nullptr, 0, false, true},
|
903
818
|
{"write_size_policy", description_write_size_policy,
|
904
|
-
additional_constraints_write_size_policy, true, true},
|
819
|
+
additional_constraints_write_size_policy, nullptr, 0, true, true},
|
820
|
+
{"write_size_cap", description_write_size_cap,
|
821
|
+
additional_constraints_write_size_cap, required_experiments_write_size_cap,
|
822
|
+
1, true, true},
|
905
823
|
{"wrr_delegate_to_pick_first", description_wrr_delegate_to_pick_first,
|
906
|
-
additional_constraints_wrr_delegate_to_pick_first, true, true},
|
824
|
+
additional_constraints_wrr_delegate_to_pick_first, nullptr, 0, true, true},
|
907
825
|
};
|
908
826
|
|
909
827
|
} // namespace grpc_core
|