grpc 1.64.0 → 1.68.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Makefile +127 -99
- data/include/grpc/compression.h +1 -2
- data/include/grpc/credentials.h +2 -3
- data/include/grpc/event_engine/README.md +1 -1
- data/include/grpc/event_engine/endpoint_config.h +2 -2
- data/include/grpc/event_engine/event_engine.h +33 -12
- data/include/grpc/event_engine/extensible.h +5 -2
- data/include/grpc/event_engine/internal/memory_allocator_impl.h +4 -4
- data/include/grpc/event_engine/internal/slice_cast.h +1 -1
- data/include/grpc/event_engine/memory_allocator.h +3 -4
- data/include/grpc/event_engine/memory_request.h +19 -2
- data/include/grpc/event_engine/slice.h +3 -5
- data/include/grpc/event_engine/slice_buffer.h +6 -8
- data/include/grpc/grpc.h +1 -2
- data/include/grpc/grpc_audit_logging.h +3 -3
- data/include/grpc/grpc_crl_provider.h +5 -5
- data/include/grpc/grpc_posix.h +1 -2
- data/include/grpc/grpc_security.h +1 -2
- data/include/grpc/impl/call.h +2 -2
- data/include/grpc/impl/channel_arg_names.h +8 -4
- data/include/grpc/impl/grpc_types.h +1 -2
- data/include/grpc/impl/slice_type.h +1 -2
- data/include/grpc/module.modulemap +1 -0
- data/include/grpc/passive_listener.h +62 -0
- data/include/grpc/support/alloc.h +1 -2
- data/include/grpc/support/json.h +1 -2
- data/include/grpc/support/log.h +37 -64
- data/include/grpc/support/metrics.h +21 -6
- data/include/grpc/support/port_platform.h +31 -1
- data/include/grpc/support/sync_generic.h +2 -4
- data/include/grpc/support/sync_posix.h +1 -2
- data/include/grpc/support/time.h +1 -2
- data/src/core/channelz/channel_trace.cc +6 -7
- data/src/core/channelz/channel_trace.h +6 -8
- data/src/core/channelz/channelz.cc +8 -10
- data/src/core/channelz/channelz.h +15 -17
- data/src/core/channelz/channelz_registry.cc +10 -11
- data/src/core/channelz/channelz_registry.h +4 -5
- data/src/core/client_channel/backup_poller.cc +24 -15
- data/src/core/client_channel/client_channel.cc +1426 -0
- data/src/core/client_channel/client_channel.h +245 -0
- data/src/core/client_channel/client_channel_factory.cc +2 -2
- data/src/core/client_channel/client_channel_factory.h +1 -2
- data/src/core/client_channel/client_channel_filter.cc +348 -861
- data/src/core/client_channel/client_channel_filter.h +23 -76
- data/src/core/client_channel/client_channel_internal.h +23 -9
- data/src/core/client_channel/client_channel_plugin.cc +2 -17
- data/src/core/client_channel/client_channel_service_config.cc +2 -3
- data/src/core/client_channel/client_channel_service_config.h +6 -8
- data/src/core/client_channel/config_selector.h +21 -22
- data/src/core/client_channel/connector.h +3 -3
- data/src/core/client_channel/direct_channel.cc +83 -0
- data/src/core/client_channel/direct_channel.h +101 -0
- data/src/core/client_channel/dynamic_filters.cc +16 -14
- data/src/core/client_channel/dynamic_filters.h +9 -10
- data/src/core/client_channel/global_subchannel_pool.cc +2 -2
- data/src/core/client_channel/global_subchannel_pool.h +2 -3
- data/src/core/client_channel/lb_metadata.cc +120 -0
- data/src/core/client_channel/lb_metadata.h +55 -0
- data/src/core/client_channel/load_balanced_call_destination.cc +273 -0
- data/src/core/client_channel/load_balanced_call_destination.h +48 -0
- data/src/core/client_channel/local_subchannel_pool.cc +2 -5
- data/src/core/client_channel/local_subchannel_pool.h +1 -1
- data/src/core/client_channel/retry_filter.cc +8 -17
- data/src/core/client_channel/retry_filter.h +6 -15
- data/src/core/client_channel/retry_filter_legacy_call_data.cc +206 -318
- data/src/core/client_channel/retry_filter_legacy_call_data.h +9 -14
- data/src/core/client_channel/retry_service_config.cc +9 -12
- data/src/core/client_channel/retry_service_config.h +5 -7
- data/src/core/client_channel/retry_throttle.cc +3 -4
- data/src/core/client_channel/retry_throttle.h +4 -7
- data/src/core/client_channel/subchannel.cc +282 -164
- data/src/core/client_channel/subchannel.h +48 -40
- data/src/core/client_channel/subchannel_interface_internal.h +1 -1
- data/src/core/client_channel/subchannel_pool_interface.cc +1 -5
- data/src/core/client_channel/subchannel_pool_interface.h +4 -7
- data/src/core/client_channel/subchannel_stream_client.cc +43 -59
- data/src/core/client_channel/subchannel_stream_client.h +10 -14
- data/src/core/ext/filters/backend_metrics/backend_metric_filter.cc +22 -27
- data/src/core/ext/filters/backend_metrics/backend_metric_filter.h +3 -1
- data/src/core/ext/filters/backend_metrics/backend_metric_provider.h +7 -0
- data/src/core/ext/filters/census/grpc_context.cc +7 -10
- data/src/core/ext/filters/channel_idle/idle_filter_state.cc +1 -2
- data/src/core/ext/filters/channel_idle/idle_filter_state.h +0 -1
- data/src/core/ext/filters/channel_idle/legacy_channel_idle_filter.cc +34 -45
- data/src/core/ext/filters/channel_idle/legacy_channel_idle_filter.h +12 -8
- data/src/core/ext/filters/fault_injection/fault_injection_filter.cc +16 -19
- data/src/core/ext/filters/fault_injection/fault_injection_filter.h +4 -3
- data/src/core/ext/filters/fault_injection/fault_injection_service_config_parser.cc +2 -3
- data/src/core/ext/filters/fault_injection/fault_injection_service_config_parser.h +6 -9
- data/src/core/ext/filters/gcp_authentication/gcp_authentication_filter.cc +205 -0
- data/src/core/ext/filters/gcp_authentication/gcp_authentication_filter.h +97 -0
- data/src/core/ext/filters/gcp_authentication/gcp_authentication_service_config_parser.cc +80 -0
- data/src/core/ext/filters/gcp_authentication/gcp_authentication_service_config_parser.h +86 -0
- data/src/core/ext/filters/http/client/http_client_filter.cc +14 -8
- data/src/core/ext/filters/http/client/http_client_filter.h +3 -1
- data/src/core/ext/filters/http/client_authority_filter.cc +8 -7
- data/src/core/ext/filters/http/client_authority_filter.h +3 -1
- data/src/core/ext/filters/http/http_filters_plugin.cc +0 -1
- data/src/core/ext/filters/http/message_compress/compression_filter.cc +48 -44
- data/src/core/ext/filters/http/message_compress/compression_filter.h +8 -4
- data/src/core/ext/filters/http/server/http_server_filter.cc +16 -13
- data/src/core/ext/filters/http/server/http_server_filter.h +3 -1
- data/src/core/ext/filters/message_size/message_size_filter.cc +32 -32
- data/src/core/ext/filters/message_size/message_size_filter.h +11 -9
- data/src/core/ext/filters/rbac/rbac_filter.cc +8 -11
- data/src/core/ext/filters/rbac/rbac_filter.h +3 -2
- data/src/core/ext/filters/rbac/rbac_service_config_parser.cc +16 -10
- data/src/core/ext/filters/rbac/rbac_service_config_parser.h +2 -4
- data/src/core/ext/filters/stateful_session/stateful_session_filter.cc +13 -15
- data/src/core/ext/filters/stateful_session/stateful_session_filter.h +5 -4
- data/src/core/ext/filters/stateful_session/stateful_session_service_config_parser.cc +2 -3
- data/src/core/ext/filters/stateful_session/stateful_session_service_config_parser.h +5 -7
- data/src/core/ext/transport/chttp2/alpn/alpn.cc +2 -4
- data/src/core/ext/transport/chttp2/alpn/alpn.h +1 -2
- data/src/core/ext/transport/chttp2/client/chttp2_connector.cc +71 -101
- data/src/core/ext/transport/chttp2/client/chttp2_connector.h +5 -11
- data/src/core/ext/transport/chttp2/server/chttp2_server.cc +426 -314
- data/src/core/ext/transport/chttp2/server/chttp2_server.h +35 -2
- data/src/core/ext/transport/chttp2/transport/bin_decoder.cc +19 -32
- data/src/core/ext/transport/chttp2/transport/bin_decoder.h +2 -3
- data/src/core/ext/transport/chttp2/transport/bin_encoder.cc +1 -4
- data/src/core/ext/transport/chttp2/transport/bin_encoder.h +1 -2
- data/src/core/ext/transport/chttp2/transport/call_tracer_wrapper.cc +53 -0
- data/src/core/ext/transport/chttp2/transport/call_tracer_wrapper.h +72 -0
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +562 -516
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.h +15 -16
- data/src/core/ext/transport/chttp2/transport/context_list_entry.h +2 -3
- data/src/core/ext/transport/chttp2/transport/decode_huff.h +2 -2
- data/src/core/ext/transport/chttp2/transport/flow_control.cc +6 -11
- data/src/core/ext/transport/chttp2/transport/flow_control.h +2 -7
- data/src/core/ext/transport/chttp2/transport/frame.cc +2 -5
- data/src/core/ext/transport/chttp2/transport/frame.h +2 -3
- data/src/core/ext/transport/chttp2/transport/frame_data.cc +7 -13
- data/src/core/ext/transport/chttp2/transport/frame_data.h +4 -5
- data/src/core/ext/transport/chttp2/transport/frame_goaway.cc +3 -6
- data/src/core/ext/transport/chttp2/transport/frame_goaway.h +1 -2
- data/src/core/ext/transport/chttp2/transport/frame_ping.cc +14 -19
- data/src/core/ext/transport/chttp2/transport/frame_ping.h +1 -2
- data/src/core/ext/transport/chttp2/transport/frame_rst_stream.cc +17 -18
- data/src/core/ext/transport/chttp2/transport/frame_rst_stream.h +6 -5
- data/src/core/ext/transport/chttp2/transport/frame_settings.cc +20 -20
- data/src/core/ext/transport/chttp2/transport/frame_settings.h +3 -4
- data/src/core/ext/transport/chttp2/transport/frame_window_update.cc +10 -7
- data/src/core/ext/transport/chttp2/transport/frame_window_update.h +4 -3
- data/src/core/ext/transport/chttp2/transport/hpack_constants.h +2 -2
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.cc +14 -16
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.h +16 -12
- data/src/core/ext/transport/chttp2/transport/hpack_encoder_table.cc +2 -3
- data/src/core/ext/transport/chttp2/transport/hpack_encoder_table.h +1 -2
- data/src/core/ext/transport/chttp2/transport/hpack_parse_result.cc +2 -4
- data/src/core/ext/transport/chttp2/transport/hpack_parse_result.h +4 -7
- data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +56 -51
- data/src/core/ext/transport/chttp2/transport/hpack_parser.h +6 -6
- data/src/core/ext/transport/chttp2/transport/hpack_parser_table.cc +41 -16
- data/src/core/ext/transport/chttp2/transport/hpack_parser_table.h +29 -10
- data/src/core/ext/transport/chttp2/transport/http2_settings.cc +2 -3
- data/src/core/ext/transport/chttp2/transport/http2_settings.h +2 -4
- data/src/core/ext/transport/chttp2/transport/internal.h +46 -79
- data/src/core/ext/transport/chttp2/transport/parsing.cc +101 -109
- data/src/core/ext/transport/chttp2/transport/ping_abuse_policy.cc +3 -3
- data/src/core/ext/transport/chttp2/transport/ping_abuse_policy.h +3 -3
- data/src/core/ext/transport/chttp2/transport/ping_callbacks.cc +2 -5
- data/src/core/ext/transport/chttp2/transport/ping_callbacks.h +3 -7
- data/src/core/ext/transport/chttp2/transport/ping_rate_policy.cc +33 -18
- data/src/core/ext/transport/chttp2/transport/ping_rate_policy.h +7 -8
- data/src/core/ext/transport/chttp2/transport/stream_lists.cc +13 -16
- data/src/core/ext/transport/chttp2/transport/stream_lists.h +65 -0
- data/src/core/ext/transport/chttp2/transport/varint.cc +2 -2
- data/src/core/ext/transport/chttp2/transport/varint.h +1 -3
- data/src/core/ext/transport/chttp2/transport/write_size_policy.cc +2 -3
- data/src/core/ext/transport/chttp2/transport/write_size_policy.h +2 -3
- data/src/core/ext/transport/chttp2/transport/writing.cc +145 -120
- data/src/core/ext/transport/inproc/inproc_transport.cc +149 -67
- data/src/core/ext/transport/inproc/inproc_transport.h +1 -3
- data/src/core/ext/transport/inproc/legacy_inproc_transport.cc +120 -121
- data/src/core/ext/transport/inproc/legacy_inproc_transport.h +0 -2
- data/src/core/ext/upb-gen/envoy/admin/v3/certs.upb.h +43 -12
- data/src/core/ext/upb-gen/envoy/admin/v3/certs.upb_minitable.c +36 -14
- data/src/core/ext/upb-gen/envoy/admin/v3/certs.upb_minitable.h +7 -1
- data/src/core/ext/upb-gen/envoy/admin/v3/clusters.upb.h +56 -24
- data/src/core/ext/upb-gen/envoy/admin/v3/clusters.upb_minitable.c +33 -15
- data/src/core/ext/upb-gen/envoy/admin/v3/clusters.upb_minitable.h +6 -1
- data/src/core/ext/upb-gen/envoy/admin/v3/config_dump.upb.h +47 -12
- data/src/core/ext/upb-gen/envoy/admin/v3/config_dump.upb_minitable.c +39 -17
- data/src/core/ext/upb-gen/envoy/admin/v3/config_dump.upb_minitable.h +7 -1
- data/src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb.h +184 -51
- data/src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb_minitable.c +143 -65
- data/src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb_minitable.h +21 -1
- data/src/core/ext/upb-gen/envoy/admin/v3/init_dump.upb.h +8 -2
- data/src/core/ext/upb-gen/envoy/admin/v3/init_dump.upb_minitable.c +13 -3
- data/src/core/ext/upb-gen/envoy/admin/v3/init_dump.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/admin/v3/listeners.upb.h +16 -3
- data/src/core/ext/upb-gen/envoy/admin/v3/listeners.upb_minitable.c +16 -6
- data/src/core/ext/upb-gen/envoy/admin/v3/listeners.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/admin/v3/memory.upb.h +8 -7
- data/src/core/ext/upb-gen/envoy/admin/v3/memory.upb_minitable.c +7 -1
- data/src/core/ext/upb-gen/envoy/admin/v3/memory.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/admin/v3/metrics.upb.h +5 -4
- data/src/core/ext/upb-gen/envoy/admin/v3/metrics.upb_minitable.c +7 -1
- data/src/core/ext/upb-gen/envoy/admin/v3/metrics.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/admin/v3/mutex_stats.upb.h +5 -4
- data/src/core/ext/upb-gen/envoy/admin/v3/mutex_stats.upb_minitable.c +7 -1
- data/src/core/ext/upb-gen/envoy/admin/v3/mutex_stats.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/admin/v3/server_info.upb.h +126 -79
- data/src/core/ext/upb-gen/envoy/admin/v3/server_info.upb_minitable.c +37 -25
- data/src/core/ext/upb-gen/envoy/admin/v3/server_info.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/admin/v3/tap.upb.h +6 -3
- data/src/core/ext/upb-gen/envoy/admin/v3/tap.upb_minitable.c +9 -3
- data/src/core/ext/upb-gen/envoy/admin/v3/tap.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/annotations/deprecation.upb.h +6 -5
- data/src/core/ext/upb-gen/envoy/annotations/deprecation.upb_minitable.c +7 -1
- data/src/core/ext/upb-gen/envoy/annotations/deprecation.upb_minitable.h +2 -1
- data/src/core/ext/upb-gen/envoy/annotations/resource.upb.h +13 -3
- data/src/core/ext/upb-gen/envoy/annotations/resource.upb_minitable.c +12 -5
- data/src/core/ext/upb-gen/envoy/annotations/resource.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb.h +88 -31
- data/src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb_minitable.c +103 -37
- data/src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb_minitable.h +18 -1
- data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb.h +541 -251
- data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb_minitable.c +247 -131
- data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb_minitable.h +26 -1
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb.h +38 -11
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb_minitable.c +28 -14
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb_minitable.h +5 -1
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb.h +496 -138
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb_minitable.c +247 -122
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb_minitable.h +28 -1
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb.h +9 -4
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb_minitable.c +10 -4
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb.h +168 -24
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb_minitable.c +53 -26
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb.h +124 -32
- data/src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb_minitable.c +111 -49
- data/src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb_minitable.h +17 -1
- data/src/core/ext/upb-gen/envoy/config/core/v3/address.upb.h +64 -24
- data/src/core/ext/upb-gen/envoy/config/core/v3/address.upb_minitable.c +55 -21
- data/src/core/ext/upb-gen/envoy/config/core/v3/address.upb_minitable.h +10 -1
- data/src/core/ext/upb-gen/envoy/config/core/v3/backoff.upb.h +8 -3
- data/src/core/ext/upb-gen/envoy/config/core/v3/backoff.upb_minitable.c +10 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/backoff.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/config/core/v3/base.upb.h +752 -69
- data/src/core/ext/upb-gen/envoy/config/core/v3/base.upb_minitable.c +304 -59
- data/src/core/ext/upb-gen/envoy/config/core/v3/base.upb_minitable.h +36 -1
- data/src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb.h +64 -22
- data/src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb_minitable.c +52 -22
- data/src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb_minitable.h +9 -1
- data/src/core/ext/upb-gen/envoy/config/core/v3/event_service_config.upb.h +5 -2
- data/src/core/ext/upb-gen/envoy/config/core/v3/event_service_config.upb_minitable.c +9 -3
- data/src/core/ext/upb-gen/envoy/config/core/v3/event_service_config.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/config/core/v3/extension.upb.h +6 -3
- data/src/core/ext/upb-gen/envoy/config/core/v3/extension.upb_minitable.c +9 -3
- data/src/core/ext/upb-gen/envoy/config/core/v3/extension.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_method_list.upb.h +8 -2
- data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_method_list.upb_minitable.c +13 -3
- data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_method_list.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb.h +198 -59
- data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb_minitable.c +111 -44
- data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb_minitable.h +16 -1
- data/src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb.h +193 -59
- data/src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb_minitable.c +90 -48
- data/src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb_minitable.h +11 -1
- data/src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb.h +10 -2
- data/src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb_minitable.c +10 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb.h +7 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb_minitable.c +9 -3
- data/src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb.h +228 -73
- data/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb_minitable.c +139 -67
- data/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb_minitable.h +18 -1
- data/src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb.h +7 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb_minitable.c +13 -3
- data/src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb.h +12 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb_minitable.c +14 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb.h +13 -7
- data/src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb_minitable.c +13 -3
- data/src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb.h +20 -8
- data/src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb_minitable.c +16 -6
- data/src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/config/core/v3/udp_socket_config.upb.h +8 -3
- data/src/core/ext/upb-gen/envoy/config/core/v3/udp_socket_config.upb_minitable.c +10 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/udp_socket_config.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb.h +39 -8
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb_minitable.c +31 -13
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb_minitable.h +6 -1
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb.h +103 -31
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb_minitable.c +62 -30
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb_minitable.h +9 -1
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb.h +278 -34
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb_minitable.c +78 -24
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb_minitable.h +9 -1
- data/src/core/ext/upb-gen/envoy/config/listener/v3/api_listener.upb.h +5 -2
- data/src/core/ext/upb-gen/envoy/config/listener/v3/api_listener.upb_minitable.c +9 -3
- data/src/core/ext/upb-gen/envoy/config/listener/v3/api_listener.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb.h +139 -44
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb_minitable.c +85 -42
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb_minitable.h +12 -1
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb.h +88 -26
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb_minitable.c +61 -31
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb_minitable.h +9 -1
- data/src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb.h +90 -10
- data/src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb_minitable.c +23 -13
- data/src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/config/listener/v3/udp_listener_config.upb.h +11 -4
- data/src/core/ext/upb-gen/envoy/config/listener/v3/udp_listener_config.upb_minitable.c +15 -5
- data/src/core/ext/upb-gen/envoy/config/listener/v3/udp_listener_config.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb.h +11 -6
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb_minitable.c +10 -4
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb.h +48 -19
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb_minitable.c +52 -18
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb_minitable.h +10 -1
- data/src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb.h +65 -18
- data/src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb_minitable.c +64 -22
- data/src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb_minitable.h +12 -1
- data/src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb.h +156 -35
- data/src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb_minitable.c +95 -47
- data/src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb_minitable.h +13 -1
- data/src/core/ext/upb-gen/envoy/config/route/v3/route.upb.h +58 -10
- data/src/core/ext/upb-gen/envoy/config/route/v3/route.upb_minitable.c +30 -16
- data/src/core/ext/upb-gen/envoy/config/route/v3/route.upb_minitable.h +5 -1
- data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb.h +705 -230
- data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb_minitable.c +454 -217
- data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb_minitable.h +60 -1
- data/src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb.h +17 -7
- data/src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb_minitable.c +20 -6
- data/src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb_minitable.h +5 -1
- data/src/core/ext/upb-gen/envoy/config/tap/v3/common.upb.h +97 -32
- data/src/core/ext/upb-gen/envoy/config/tap/v3/common.upb_minitable.c +86 -36
- data/src/core/ext/upb-gen/envoy/config/tap/v3/common.upb_minitable.h +14 -1
- data/src/core/ext/upb-gen/envoy/config/trace/v3/datadog.upb.h +115 -13
- data/src/core/ext/upb-gen/envoy/config/trace/v3/datadog.upb_minitable.c +43 -12
- data/src/core/ext/upb-gen/envoy/config/trace/v3/datadog.upb_minitable.h +5 -1
- data/src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb.h +6 -3
- data/src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb_minitable.c +9 -3
- data/src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/config/trace/v3/http_tracer.upb.h +9 -4
- data/src/core/ext/upb-gen/envoy/config/trace/v3/http_tracer.upb_minitable.c +15 -5
- data/src/core/ext/upb-gen/envoy/config/trace/v3/http_tracer.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb.h +7 -4
- data/src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb_minitable.c +9 -3
- data/src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb.h +19 -12
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb_minitable.c +11 -5
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb.h +17 -5
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb_minitable.c +12 -6
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/config/trace/v3/service.upb.h +5 -2
- data/src/core/ext/upb-gen/envoy/config/trace/v3/service.upb_minitable.c +9 -3
- data/src/core/ext/upb-gen/envoy/config/trace/v3/service.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb.h +14 -7
- data/src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb_minitable.c +16 -6
- data/src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/config/trace/v3/trace.upb.h +2 -1
- data/src/core/ext/upb-gen/envoy/config/trace/v3/trace.upb_minitable.c +3 -1
- data/src/core/ext/upb-gen/envoy/config/trace/v3/trace.upb_minitable.h +2 -1
- data/src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb.h +16 -7
- data/src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb_minitable.c +17 -7
- data/src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb.h +11 -8
- data/src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb_minitable.c +9 -3
- data/src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb.h +213 -99
- data/src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb_minitable.c +115 -48
- data/src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb_minitable.h +18 -1
- data/src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb.h +2 -1
- data/src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb_minitable.c +7 -1
- data/src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3/fault.upb.h +21 -8
- data/src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3/fault.upb_minitable.c +31 -9
- data/src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3/fault.upb_minitable.h +7 -1
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb.h +39 -19
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb_minitable.c +25 -11
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb_minitable.h +5 -1
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upb.h +444 -0
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upb_minitable.c +135 -0
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upb_minitable.h +38 -0
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb.h +53 -10
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb_minitable.c +27 -11
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb.h +26 -9
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb_minitable.c +18 -8
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb.h +10 -5
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb_minitable.c +15 -5
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h +324 -131
- data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb_minitable.c +189 -102
- data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb_minitable.h +23 -1
- data/src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb.h +5 -2
- data/src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb_minitable.c +9 -3
- data/src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb.h +20 -7
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb_minitable.c +14 -8
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb.h +28 -11
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb_minitable.c +35 -13
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb_minitable.h +7 -1
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb.h +3 -2
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb_minitable.c +7 -1
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb.h +19 -8
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb_minitable.c +13 -7
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb.h +5 -2
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb_minitable.c +9 -3
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/http_11_proxy/v3/upstream_http_11_connect.upb.h +106 -0
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/http_11_proxy/v3/upstream_http_11_connect.upb_minitable.c +52 -0
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/http_11_proxy/v3/upstream_http_11_connect.upb_minitable.h +32 -0
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/cert.upb.h +2 -1
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/cert.upb_minitable.c +3 -1
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/cert.upb_minitable.h +2 -1
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb.h +167 -28
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb_minitable.c +78 -32
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb_minitable.h +11 -1
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb.h +22 -9
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb_minitable.c +24 -10
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb_minitable.h +5 -1
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb.h +109 -36
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb_minitable.c +67 -37
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb_minitable.h +9 -1
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb.h +11 -3
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb_minitable.c +15 -5
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb.h +55 -17
- data/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb_minitable.c +40 -22
- data/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb_minitable.h +6 -1
- data/src/core/ext/upb-gen/envoy/service/discovery/v3/ads.upb.h +2 -1
- data/src/core/ext/upb-gen/envoy/service/discovery/v3/ads.upb_minitable.c +7 -1
- data/src/core/ext/upb-gen/envoy/service/discovery/v3/ads.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb.h +119 -37
- data/src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb_minitable.c +95 -37
- data/src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb_minitable.h +16 -1
- data/src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb.h +15 -5
- data/src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb_minitable.c +16 -6
- data/src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/service/status/v3/csds.upb.h +62 -21
- data/src/core/ext/upb-gen/envoy/service/status/v3/csds.upb_minitable.c +42 -20
- data/src/core/ext/upb-gen/envoy/service/status/v3/csds.upb_minitable.h +7 -1
- data/src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb.h +7 -4
- data/src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb_minitable.c +9 -3
- data/src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb.h +13 -3
- data/src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb_minitable.c +24 -6
- data/src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb_minitable.h +6 -1
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb.h +6 -3
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb_minitable.c +9 -3
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/http_inputs.upb.h +7 -6
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/http_inputs.upb_minitable.c +23 -1
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/http_inputs.upb_minitable.h +7 -1
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb.h +13 -5
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb_minitable.c +14 -4
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/node.upb.h +10 -2
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/node.upb_minitable.c +10 -4
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/node.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/number.upb.h +6 -3
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/number.upb_minitable.c +9 -3
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/number.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/path.upb.h +5 -2
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/path.upb_minitable.c +9 -3
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/path.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb.h +13 -6
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb_minitable.c +21 -7
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb_minitable.h +5 -1
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/status_code_input.upb.h +2 -1
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/status_code_input.upb_minitable.c +11 -1
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/status_code_input.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/string.upb.h +48 -7
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/string.upb_minitable.c +28 -7
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/string.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/struct.upb.h +11 -3
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/struct.upb_minitable.c +14 -4
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/struct.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb.h +27 -9
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb_minitable.c +29 -11
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb_minitable.h +6 -1
- data/src/core/ext/upb-gen/envoy/type/metadata/v3/metadata.upb.h +21 -7
- data/src/core/ext/upb-gen/envoy/type/metadata/v3/metadata.upb_minitable.c +38 -8
- data/src/core/ext/upb-gen/envoy/type/metadata/v3/metadata.upb_minitable.h +9 -1
- data/src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb.h +27 -14
- data/src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb_minitable.c +31 -9
- data/src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb_minitable.h +7 -1
- data/src/core/ext/upb-gen/envoy/type/v3/hash_policy.upb.h +9 -4
- data/src/core/ext/upb-gen/envoy/type/v3/hash_policy.upb_minitable.c +18 -4
- data/src/core/ext/upb-gen/envoy/type/v3/hash_policy.upb_minitable.h +5 -1
- data/src/core/ext/upb-gen/envoy/type/v3/http.upb.h +2 -1
- data/src/core/ext/upb-gen/envoy/type/v3/http.upb_minitable.c +3 -1
- data/src/core/ext/upb-gen/envoy/type/v3/http.upb_minitable.h +2 -1
- data/src/core/ext/upb-gen/envoy/type/v3/http_status.upb.h +3 -2
- data/src/core/ext/upb-gen/envoy/type/v3/http_status.upb_minitable.c +7 -1
- data/src/core/ext/upb-gen/envoy/type/v3/http_status.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/type/v3/percent.upb.h +5 -4
- data/src/core/ext/upb-gen/envoy/type/v3/percent.upb_minitable.c +11 -1
- data/src/core/ext/upb-gen/envoy/type/v3/percent.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/type/v3/range.upb.h +8 -7
- data/src/core/ext/upb-gen/envoy/type/v3/range.upb_minitable.c +15 -1
- data/src/core/ext/upb-gen/envoy/type/v3/range.upb_minitable.h +5 -1
- data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_strategy.upb.h +11 -6
- data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_strategy.upb_minitable.c +14 -4
- data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_strategy.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_unit.upb.h +2 -1
- data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_unit.upb_minitable.c +3 -1
- data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_unit.upb_minitable.h +2 -1
- data/src/core/ext/upb-gen/envoy/type/v3/semantic_version.upb.h +5 -4
- data/src/core/ext/upb-gen/envoy/type/v3/semantic_version.upb_minitable.c +7 -1
- data/src/core/ext/upb-gen/envoy/type/v3/semantic_version.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/type/v3/token_bucket.upb.h +9 -4
- data/src/core/ext/upb-gen/envoy/type/v3/token_bucket.upb_minitable.c +10 -4
- data/src/core/ext/upb-gen/envoy/type/v3/token_bucket.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/google/api/annotations.upb.h +12 -2
- data/src/core/ext/upb-gen/google/api/annotations.upb_minitable.c +4 -1
- data/src/core/ext/upb-gen/google/api/annotations.upb_minitable.h +2 -1
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb.h +132 -33
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb_minitable.c +108 -43
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb_minitable.h +15 -1
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb.h +522 -66
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb_minitable.c +191 -57
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb_minitable.h +20 -1
- data/src/core/ext/upb-gen/google/api/http.upb.h +26 -13
- data/src/core/ext/upb-gen/google/api/http.upb_minitable.c +20 -6
- data/src/core/ext/upb-gen/google/api/http.upb_minitable.h +5 -1
- data/src/core/ext/upb-gen/google/api/httpbody.upb.h +9 -3
- data/src/core/ext/upb-gen/google/api/httpbody.upb_minitable.c +9 -3
- data/src/core/ext/upb-gen/google/api/httpbody.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/google/protobuf/any.upb.h +4 -3
- data/src/core/ext/upb-gen/google/protobuf/any.upb_minitable.c +7 -1
- data/src/core/ext/upb-gen/google/protobuf/any.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/google/protobuf/descriptor.upb.h +579 -178
- data/src/core/ext/upb-gen/google/protobuf/descriptor.upb_minitable.c +292 -131
- data/src/core/ext/upb-gen/google/protobuf/descriptor.upb_minitable.h +36 -1
- data/src/core/ext/upb-gen/google/protobuf/duration.upb.h +4 -3
- data/src/core/ext/upb-gen/google/protobuf/duration.upb_minitable.c +7 -1
- data/src/core/ext/upb-gen/google/protobuf/duration.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/google/protobuf/empty.upb.h +2 -1
- data/src/core/ext/upb-gen/google/protobuf/empty.upb_minitable.c +7 -1
- data/src/core/ext/upb-gen/google/protobuf/empty.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/google/protobuf/struct.upb.h +29 -7
- data/src/core/ext/upb-gen/google/protobuf/struct.upb_minitable.c +28 -10
- data/src/core/ext/upb-gen/google/protobuf/struct.upb_minitable.h +6 -1
- data/src/core/ext/upb-gen/google/protobuf/timestamp.upb.h +4 -3
- data/src/core/ext/upb-gen/google/protobuf/timestamp.upb_minitable.c +7 -1
- data/src/core/ext/upb-gen/google/protobuf/timestamp.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/google/protobuf/wrappers.upb.h +11 -10
- data/src/core/ext/upb-gen/google/protobuf/wrappers.upb_minitable.c +39 -1
- data/src/core/ext/upb-gen/google/protobuf/wrappers.upb_minitable.h +11 -1
- data/src/core/ext/upb-gen/google/rpc/status.upb.h +9 -3
- data/src/core/ext/upb-gen/google/rpc/status.upb_minitable.c +9 -3
- data/src/core/ext/upb-gen/google/rpc/status.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb.h +18 -11
- data/src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb_minitable.c +23 -5
- data/src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb_minitable.h +6 -1
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb.h +16 -7
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb_minitable.c +14 -4
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb.h +95 -36
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb_minitable.c +79 -29
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb_minitable.h +14 -1
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb.h +10 -5
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb_minitable.c +14 -4
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/src/proto/grpc/health/v1/health.upb.h +4 -3
- data/src/core/ext/upb-gen/src/proto/grpc/health/v1/health.upb_minitable.c +11 -1
- data/src/core/ext/upb-gen/src/proto/grpc/health/v1/health.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb.h +44 -19
- data/src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb_minitable.c +53 -15
- data/src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb_minitable.h +11 -1
- data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb.h +12 -5
- data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb_minitable.c +17 -3
- data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb_minitable.h +5 -1
- data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb.h +69 -16
- data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb_minitable.c +56 -18
- data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb_minitable.h +11 -1
- data/src/core/ext/upb-gen/udpa/annotations/migrate.upb.h +56 -10
- data/src/core/ext/upb-gen/udpa/annotations/migrate.upb_minitable.c +26 -7
- data/src/core/ext/upb-gen/udpa/annotations/migrate.upb_minitable.h +5 -1
- data/src/core/ext/upb-gen/udpa/annotations/security.upb.h +14 -4
- data/src/core/ext/upb-gen/udpa/annotations/security.upb_minitable.c +12 -5
- data/src/core/ext/upb-gen/udpa/annotations/security.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/udpa/annotations/sensitive.upb.h +3 -2
- data/src/core/ext/upb-gen/udpa/annotations/sensitive.upb_minitable.c +4 -1
- data/src/core/ext/upb-gen/udpa/annotations/sensitive.upb_minitable.h +2 -1
- data/src/core/ext/upb-gen/udpa/annotations/status.upb.h +14 -4
- data/src/core/ext/upb-gen/udpa/annotations/status.upb_minitable.c +12 -5
- data/src/core/ext/upb-gen/udpa/annotations/status.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/udpa/annotations/versioning.upb.h +13 -3
- data/src/core/ext/upb-gen/udpa/annotations/versioning.upb_minitable.c +12 -5
- data/src/core/ext/upb-gen/udpa/annotations/versioning.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/validate/validate.upb.h +259 -167
- data/src/core/ext/upb-gen/validate/validate.upb_minitable.c +178 -80
- data/src/core/ext/upb-gen/validate/validate.upb_minitable.h +25 -1
- data/src/core/ext/upb-gen/xds/annotations/v3/migrate.upb.h +56 -10
- data/src/core/ext/upb-gen/xds/annotations/v3/migrate.upb_minitable.c +26 -7
- data/src/core/ext/upb-gen/xds/annotations/v3/migrate.upb_minitable.h +5 -1
- data/src/core/ext/upb-gen/xds/annotations/v3/security.upb.h +14 -4
- data/src/core/ext/upb-gen/xds/annotations/v3/security.upb_minitable.c +12 -5
- data/src/core/ext/upb-gen/xds/annotations/v3/security.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/xds/annotations/v3/sensitive.upb.h +3 -2
- data/src/core/ext/upb-gen/xds/annotations/v3/sensitive.upb_minitable.c +4 -1
- data/src/core/ext/upb-gen/xds/annotations/v3/sensitive.upb_minitable.h +2 -1
- data/src/core/ext/upb-gen/xds/annotations/v3/status.upb.h +37 -9
- data/src/core/ext/upb-gen/xds/annotations/v3/status.upb_minitable.c +29 -8
- data/src/core/ext/upb-gen/xds/annotations/v3/status.upb_minitable.h +6 -1
- data/src/core/ext/upb-gen/xds/annotations/v3/versioning.upb.h +13 -3
- data/src/core/ext/upb-gen/xds/annotations/v3/versioning.upb_minitable.c +12 -5
- data/src/core/ext/upb-gen/xds/annotations/v3/versioning.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/xds/core/v3/authority.upb.h +3 -2
- data/src/core/ext/upb-gen/xds/core/v3/authority.upb_minitable.c +7 -1
- data/src/core/ext/upb-gen/xds/core/v3/authority.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/xds/core/v3/cidr.upb.h +6 -3
- data/src/core/ext/upb-gen/xds/core/v3/cidr.upb_minitable.c +9 -3
- data/src/core/ext/upb-gen/xds/core/v3/cidr.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/xds/core/v3/collection_entry.upb.h +13 -6
- data/src/core/ext/upb-gen/xds/core/v3/collection_entry.upb_minitable.c +16 -6
- data/src/core/ext/upb-gen/xds/core/v3/collection_entry.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/xds/core/v3/context_params.upb.h +8 -1
- data/src/core/ext/upb-gen/xds/core/v3/context_params.upb_minitable.c +13 -3
- data/src/core/ext/upb-gen/xds/core/v3/context_params.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/xds/core/v3/extension.upb.h +6 -3
- data/src/core/ext/upb-gen/xds/core/v3/extension.upb_minitable.c +9 -3
- data/src/core/ext/upb-gen/xds/core/v3/extension.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/xds/core/v3/resource.upb.h +9 -4
- data/src/core/ext/upb-gen/xds/core/v3/resource.upb_minitable.c +10 -4
- data/src/core/ext/upb-gen/xds/core/v3/resource.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/xds/core/v3/resource_locator.upb.h +18 -8
- data/src/core/ext/upb-gen/xds/core/v3/resource_locator.upb_minitable.c +16 -6
- data/src/core/ext/upb-gen/xds/core/v3/resource_locator.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/xds/core/v3/resource_name.upb.h +8 -5
- data/src/core/ext/upb-gen/xds/core/v3/resource_name.upb_minitable.c +9 -3
- data/src/core/ext/upb-gen/xds/core/v3/resource_name.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb.h +26 -7
- data/src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb_minitable.c +23 -5
- data/src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb_minitable.h +6 -1
- data/src/core/ext/upb-gen/xds/service/orca/v3/orca.upb.h +5 -2
- data/src/core/ext/upb-gen/xds/service/orca/v3/orca.upb_minitable.c +9 -3
- data/src/core/ext/upb-gen/xds/service/orca/v3/orca.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb.h +6 -3
- data/src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb_minitable.c +9 -3
- data/src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/xds/type/matcher/v3/domain.upb.h +10 -2
- data/src/core/ext/upb-gen/xds/type/matcher/v3/domain.upb_minitable.c +15 -5
- data/src/core/ext/upb-gen/xds/type/matcher/v3/domain.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/xds/type/matcher/v3/http_inputs.upb.h +2 -1
- data/src/core/ext/upb-gen/xds/type/matcher/v3/http_inputs.upb_minitable.c +7 -1
- data/src/core/ext/upb-gen/xds/type/matcher/v3/http_inputs.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb.h +16 -3
- data/src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb_minitable.c +16 -6
- data/src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb.h +78 -19
- data/src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb_minitable.c +75 -33
- data/src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb_minitable.h +12 -1
- data/src/core/ext/upb-gen/xds/type/matcher/v3/range.upb.h +41 -4
- data/src/core/ext/upb-gen/xds/type/matcher/v3/range.upb_minitable.c +42 -16
- data/src/core/ext/upb-gen/xds/type/matcher/v3/range.upb_minitable.h +8 -1
- data/src/core/ext/upb-gen/xds/type/matcher/v3/regex.upb.h +6 -3
- data/src/core/ext/upb-gen/xds/type/matcher/v3/regex.upb_minitable.c +13 -3
- data/src/core/ext/upb-gen/xds/type/matcher/v3/regex.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/xds/type/matcher/v3/string.upb.h +15 -7
- data/src/core/ext/upb-gen/xds/type/matcher/v3/string.upb_minitable.c +15 -5
- data/src/core/ext/upb-gen/xds/type/matcher/v3/string.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/xds/type/v3/cel.upb.h +14 -5
- data/src/core/ext/upb-gen/xds/type/v3/cel.upb_minitable.c +17 -7
- data/src/core/ext/upb-gen/xds/type/v3/cel.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/xds/type/v3/range.upb.h +8 -7
- data/src/core/ext/upb-gen/xds/type/v3/range.upb_minitable.c +15 -1
- data/src/core/ext/upb-gen/xds/type/v3/range.upb_minitable.h +5 -1
- data/src/core/ext/upb-gen/xds/type/v3/typed_struct.upb.h +6 -3
- data/src/core/ext/upb-gen/xds/type/v3/typed_struct.upb_minitable.c +9 -3
- data/src/core/ext/upb-gen/xds/type/v3/typed_struct.upb_minitable.h +3 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/certs.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/certs.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/clusters.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/clusters.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump_shared.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump_shared.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/init_dump.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/init_dump.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/listeners.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/listeners.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/memory.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/memory.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/metrics.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/metrics.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/mutex_stats.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/mutex_stats.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/server_info.upbdefs.c +88 -82
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/server_info.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/tap.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/tap.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/annotations/deprecation.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/annotations/deprecation.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/annotations/resource.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/annotations/resource.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/accesslog/v3/accesslog.upbdefs.c +63 -61
- data/src/core/ext/upbdefs-gen/envoy/config/accesslog/v3/accesslog.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3/bootstrap.upbdefs.c +223 -211
- data/src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3/bootstrap.upbdefs.h +7 -1
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/circuit_breaker.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/circuit_breaker.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/cluster.upbdefs.c +319 -298
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/cluster.upbdefs.h +7 -1
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/filter.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/filter.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/outlier_detection.upbdefs.c +116 -106
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/outlier_detection.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/common/matcher/v3/matcher.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/common/matcher/v3/matcher.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/address.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/address.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/backoff.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/backoff.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/base.upbdefs.c +187 -141
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/base.upbdefs.h +27 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/config_source.upbdefs.c +12 -12
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/config_source.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/event_service_config.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/event_service_config.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/extension.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/extension.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_method_list.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_method_list.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_service.upbdefs.c +175 -165
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_service.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/health_check.upbdefs.c +199 -188
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/health_check.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_service.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_service.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_uri.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_uri.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/protocol.upbdefs.c +231 -223
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/protocol.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/proxy_protocol.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/proxy_protocol.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/resolver.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/resolver.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/socket_option.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/socket_option.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/substitution_format_string.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/substitution_format_string.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/udp_socket_config.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/udp_socket_config.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint_components.upbdefs.c +41 -37
- data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint_components.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/load_report.upbdefs.c +124 -94
- data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/load_report.upbdefs.h +7 -1
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/api_listener.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/api_listener.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener.upbdefs.c +43 -40
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener_components.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener_components.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/quic_config.upbdefs.c +22 -13
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/quic_config.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/udp_listener_config.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/udp_listener_config.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/metrics/v3/metrics_service.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/metrics/v3/metrics_service.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/metrics/v3/stats.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/metrics/v3/stats.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/overload/v3/overload.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/overload/v3/overload.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/rbac/v3/rbac.upbdefs.c +71 -66
- data/src/core/ext/upbdefs-gen/envoy/config/rbac/v3/rbac.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route_components.upbdefs.c +613 -605
- data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route_components.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/route/v3/scoped_route.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/route/v3/scoped_route.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/tap/v3/common.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/tap/v3/common.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/datadog.upbdefs.c +32 -21
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/datadog.upbdefs.h +7 -1
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/dynamic_ot.upbdefs.c +20 -18
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/dynamic_ot.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/http_tracer.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/http_tracer.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/lightstep.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/lightstep.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opencensus.upbdefs.c +64 -60
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opencensus.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opentelemetry.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opentelemetry.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/service.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/service.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/skywalking.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/skywalking.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/trace.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/trace.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/xray.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/xray.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/zipkin.upbdefs.c +23 -21
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/zipkin.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/data/accesslog/v3/accesslog.upbdefs.c +147 -143
- data/src/core/ext/upbdefs-gen/envoy/data/accesslog/v3/accesslog.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/common/fault/v3/fault.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/common/fault/v3/fault.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/fault/v3/fault.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/fault/v3/fault.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upbdefs.c +87 -0
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upbdefs.h +48 -0
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.c +38 -34
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/router/v3/router.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/router/v3/router.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.c +292 -289
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/http_11_proxy/v3/upstream_http_11_connect.upbdefs.c +53 -0
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/http_11_proxy/v3/upstream_http_11_connect.upbdefs.h +33 -0
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.c +84 -76
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.h +7 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/service/discovery/v3/ads.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/service/discovery/v3/ads.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/service/discovery/v3/discovery.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/service/discovery/v3/discovery.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/service/load_stats/v3/lrs.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/service/load_stats/v3/lrs.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/service/status/v3/csds.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/service/status/v3/csds.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/http/v3/cookie.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/http/v3/cookie.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/http/v3/path_transformation.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/http/v3/path_transformation.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/filter_state.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/filter_state.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/http_inputs.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/http_inputs.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/metadata.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/metadata.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/node.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/node.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/number.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/number.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/path.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/path.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/regex.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/regex.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/status_code_input.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/status_code_input.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/string.upbdefs.c +41 -34
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/string.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/struct.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/struct.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/value.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/value.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/metadata/v3/metadata.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/metadata/v3/metadata.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/tracing/v3/custom_tag.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/tracing/v3/custom_tag.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/v3/hash_policy.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/v3/hash_policy.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/v3/http.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/v3/http.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/v3/http_status.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/v3/http_status.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/v3/percent.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/v3/percent.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/v3/range.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/v3/range.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_strategy.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_strategy.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_unit.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_unit.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/v3/semantic_version.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/v3/semantic_version.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/v3/token_bucket.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/v3/token_bucket.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/google/api/annotations.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/google/api/annotations.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/checked.upbdefs.c +110 -108
- data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/checked.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/syntax.upbdefs.c +103 -79
- data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/syntax.upbdefs.h +12 -1
- data/src/core/ext/upbdefs-gen/google/api/http.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/google/api/http.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/google/api/httpbody.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/google/api/httpbody.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/google/protobuf/any.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/google/protobuf/any.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/google/protobuf/descriptor.upbdefs.c +283 -257
- data/src/core/ext/upbdefs-gen/google/protobuf/descriptor.upbdefs.h +7 -1
- data/src/core/ext/upbdefs-gen/google/protobuf/duration.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/google/protobuf/duration.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/google/protobuf/empty.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/google/protobuf/empty.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/google/protobuf/struct.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/google/protobuf/struct.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/google/protobuf/timestamp.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/google/protobuf/timestamp.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/google/protobuf/wrappers.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/google/protobuf/wrappers.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/google/rpc/status.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/google/rpc/status.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/opencensus/proto/trace/v1/trace_config.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/opencensus/proto/trace/v1/trace_config.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/src/proto/grpc/lookup/v1/rls_config.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/src/proto/grpc/lookup/v1/rls_config.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/udpa/annotations/migrate.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/udpa/annotations/migrate.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/udpa/annotations/security.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/udpa/annotations/security.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/udpa/annotations/sensitive.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/udpa/annotations/sensitive.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/udpa/annotations/status.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/udpa/annotations/status.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/udpa/annotations/versioning.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/udpa/annotations/versioning.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/validate/validate.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/validate/validate.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/migrate.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/migrate.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/security.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/security.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/sensitive.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/sensitive.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/status.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/status.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/versioning.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/versioning.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/xds/core/v3/authority.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/core/v3/authority.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/xds/core/v3/cidr.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/core/v3/cidr.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/xds/core/v3/collection_entry.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/core/v3/collection_entry.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/xds/core/v3/context_params.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/core/v3/context_params.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/xds/core/v3/extension.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/core/v3/extension.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/xds/core/v3/resource.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/core/v3/resource.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/xds/core/v3/resource_locator.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/core/v3/resource_locator.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/xds/core/v3/resource_name.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/core/v3/resource_name.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/cel.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/cel.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/domain.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/domain.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/http_inputs.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/http_inputs.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/ip.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/ip.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/matcher.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/matcher.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/range.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/range.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/regex.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/regex.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/string.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/string.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/v3/cel.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/v3/cel.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/v3/range.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/v3/range.upbdefs.h +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/v3/typed_struct.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/v3/typed_struct.upbdefs.h +2 -1
- data/src/core/filter/blackboard.cc +33 -0
- data/src/core/filter/blackboard.h +70 -0
- data/src/core/handshaker/endpoint_info/endpoint_info_handshaker.cc +13 -12
- data/src/core/handshaker/handshaker.cc +127 -159
- data/src/core/handshaker/handshaker.h +58 -52
- data/src/core/handshaker/handshaker_registry.cc +1 -2
- data/src/core/handshaker/handshaker_registry.h +2 -2
- data/src/core/handshaker/http_connect/http_connect_handshaker.cc +113 -159
- data/src/core/handshaker/http_connect/http_proxy_mapper.cc +30 -37
- data/src/core/handshaker/http_connect/http_proxy_mapper.h +2 -3
- data/src/core/handshaker/http_connect/xds_http_proxy_mapper.cc +57 -0
- data/src/core/handshaker/http_connect/xds_http_proxy_mapper.h +46 -0
- data/src/core/handshaker/proxy_mapper.h +2 -3
- data/src/core/handshaker/proxy_mapper_registry.cc +2 -2
- data/src/core/handshaker/proxy_mapper_registry.h +2 -3
- data/src/core/handshaker/security/secure_endpoint.cc +95 -82
- data/src/core/handshaker/security/secure_endpoint.h +6 -7
- data/src/core/handshaker/security/security_handshaker.cc +166 -220
- data/src/core/handshaker/security/security_handshaker.h +2 -3
- data/src/core/handshaker/tcp_connect/tcp_connect_handshaker.cc +47 -61
- data/src/core/lib/address_utils/parse_address.cc +30 -43
- data/src/core/lib/address_utils/parse_address.h +2 -4
- data/src/core/lib/address_utils/sockaddr_utils.cc +9 -12
- data/src/core/lib/address_utils/sockaddr_utils.h +1 -3
- data/src/core/lib/channel/call_finalization.h +2 -2
- data/src/core/lib/channel/channel_args.cc +17 -23
- data/src/core/lib/channel/channel_args.h +34 -20
- data/src/core/lib/channel/channel_args_preconditioning.cc +2 -2
- data/src/core/lib/channel/channel_args_preconditioning.h +3 -3
- data/src/core/lib/channel/channel_stack.cc +13 -76
- data/src/core/lib/channel/channel_stack.h +26 -61
- data/src/core/lib/channel/channel_stack_builder.cc +2 -2
- data/src/core/lib/channel/channel_stack_builder.h +3 -9
- data/src/core/lib/channel/channel_stack_builder_impl.cc +5 -150
- data/src/core/lib/channel/channel_stack_builder_impl.h +14 -4
- data/src/core/lib/channel/connected_channel.cc +46 -688
- data/src/core/lib/channel/promise_based_filter.cc +180 -250
- data/src/core/lib/channel/promise_based_filter.h +173 -509
- data/src/core/lib/channel/status_util.cc +2 -4
- data/src/core/lib/channel/status_util.h +3 -3
- data/src/core/lib/compression/compression.cc +7 -9
- data/src/core/lib/compression/compression_internal.cc +5 -8
- data/src/core/lib/compression/compression_internal.h +3 -5
- data/src/core/lib/compression/message_compress.cc +9 -12
- data/src/core/lib/config/config_vars.cc +15 -18
- data/src/core/lib/config/config_vars.h +10 -13
- data/src/core/lib/config/config_vars_non_generated.cc +2 -2
- data/src/core/lib/config/core_configuration.cc +2 -3
- data/src/core/lib/config/core_configuration.h +2 -4
- data/src/core/lib/config/load_config.cc +2 -4
- data/src/core/lib/config/load_config.h +1 -2
- data/src/core/lib/debug/trace.cc +47 -65
- data/src/core/lib/debug/trace.h +2 -97
- data/src/core/lib/debug/trace_flags.cc +242 -0
- data/src/core/lib/debug/trace_flags.h +131 -0
- data/src/core/lib/debug/trace_impl.h +125 -0
- data/src/core/lib/event_engine/ares_resolver.cc +151 -75
- data/src/core/lib/event_engine/ares_resolver.h +13 -20
- data/src/core/lib/event_engine/cf_engine/cf_engine.cc +13 -16
- data/src/core/lib/event_engine/cf_engine/cf_engine.h +1 -1
- data/src/core/lib/event_engine/cf_engine/cfstream_endpoint.cc +44 -31
- data/src/core/lib/event_engine/cf_engine/cfstream_endpoint.h +4 -6
- data/src/core/lib/event_engine/cf_engine/cftype_unique_ref.h +1 -1
- data/src/core/lib/event_engine/cf_engine/dns_service_resolver.cc +19 -26
- data/src/core/lib/event_engine/cf_engine/dns_service_resolver.h +3 -5
- data/src/core/lib/event_engine/channel_args_endpoint_config.cc +3 -4
- data/src/core/lib/event_engine/channel_args_endpoint_config.h +2 -3
- data/src/core/lib/event_engine/common_closures.h +3 -3
- data/src/core/lib/event_engine/default_event_engine.cc +12 -14
- data/src/core/lib/event_engine/default_event_engine.h +3 -3
- data/src/core/lib/event_engine/default_event_engine_factory.cc +2 -2
- data/src/core/lib/event_engine/default_event_engine_factory.h +2 -2
- data/src/core/lib/event_engine/event_engine.cc +35 -4
- data/src/core/lib/event_engine/event_engine_context.h +4 -2
- data/src/core/lib/event_engine/extensions/can_track_errors.h +2 -2
- data/src/core/lib/event_engine/extensions/chaotic_good_extension.h +1 -2
- data/src/core/lib/event_engine/extensions/supports_fd.h +27 -3
- data/src/core/lib/event_engine/extensions/tcp_trace.h +42 -0
- data/src/core/lib/event_engine/forkable.cc +6 -8
- data/src/core/lib/event_engine/forkable.h +2 -14
- data/src/core/lib/event_engine/grpc_polled_fd.h +3 -4
- data/src/core/lib/event_engine/handle_containers.h +2 -3
- data/src/core/lib/event_engine/memory_allocator_factory.h +3 -4
- data/src/core/lib/event_engine/poller.h +2 -2
- data/src/core/lib/event_engine/posix_engine/ev_epoll1_linux.cc +21 -23
- data/src/core/lib/event_engine/posix_engine/ev_epoll1_linux.h +8 -9
- data/src/core/lib/event_engine/posix_engine/ev_poll_posix.cc +13 -17
- data/src/core/lib/event_engine/posix_engine/ev_poll_posix.h +4 -5
- data/src/core/lib/event_engine/posix_engine/event_poller.h +3 -4
- data/src/core/lib/event_engine/posix_engine/event_poller_posix_default.cc +3 -4
- data/src/core/lib/event_engine/posix_engine/event_poller_posix_default.h +2 -2
- data/src/core/lib/event_engine/posix_engine/grpc_polled_fd_posix.h +4 -6
- data/src/core/lib/event_engine/posix_engine/internal_errqueue.cc +4 -4
- data/src/core/lib/event_engine/posix_engine/internal_errqueue.h +1 -2
- data/src/core/lib/event_engine/posix_engine/lockfree_event.cc +5 -7
- data/src/core/lib/event_engine/posix_engine/lockfree_event.h +2 -3
- data/src/core/lib/event_engine/posix_engine/native_posix_dns_resolver.cc +3 -4
- data/src/core/lib/event_engine/posix_engine/native_posix_dns_resolver.h +2 -3
- data/src/core/lib/event_engine/posix_engine/posix_endpoint.cc +73 -79
- data/src/core/lib/event_engine/posix_engine/posix_endpoint.h +11 -12
- data/src/core/lib/event_engine/posix_engine/posix_engine.cc +74 -55
- data/src/core/lib/event_engine/posix_engine/posix_engine.h +18 -14
- data/src/core/lib/event_engine/posix_engine/posix_engine_closure.h +3 -3
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener.cc +23 -27
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener.h +14 -13
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.cc +22 -28
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.h +1 -2
- data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.cc +44 -38
- data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.h +10 -10
- data/src/core/lib/event_engine/posix_engine/timer.cc +5 -5
- data/src/core/lib/event_engine/posix_engine/timer.h +5 -7
- data/src/core/lib/event_engine/posix_engine/timer_heap.cc +1 -2
- data/src/core/lib/event_engine/posix_engine/timer_heap.h +2 -2
- data/src/core/lib/event_engine/posix_engine/timer_manager.cc +12 -21
- data/src/core/lib/event_engine/posix_engine/timer_manager.h +5 -7
- data/src/core/lib/event_engine/posix_engine/traced_buffer_list.cc +6 -8
- data/src/core/lib/event_engine/posix_engine/traced_buffer_list.h +3 -5
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_eventfd.cc +5 -6
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_eventfd.h +2 -3
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_pipe.cc +4 -5
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_pipe.h +2 -3
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_posix.h +2 -2
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_posix_default.cc +2 -3
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_posix_default.h +2 -2
- data/src/core/lib/event_engine/query_extensions.h +2 -2
- data/src/core/lib/event_engine/ref_counted_dns_resolver_interface.h +3 -5
- data/src/core/lib/event_engine/resolved_address.cc +5 -5
- data/src/core/lib/event_engine/shim.cc +1 -1
- data/src/core/lib/event_engine/slice.cc +3 -6
- data/src/core/lib/event_engine/slice_buffer.cc +1 -2
- data/src/core/lib/event_engine/tcp_socket_utils.cc +9 -12
- data/src/core/lib/event_engine/tcp_socket_utils.h +3 -3
- data/src/core/lib/event_engine/thread_local.h +1 -1
- data/src/core/lib/event_engine/thread_pool/thread_count.cc +5 -7
- data/src/core/lib/event_engine/thread_pool/thread_count.h +6 -7
- data/src/core/lib/event_engine/thread_pool/thread_pool.h +2 -4
- data/src/core/lib/event_engine/thread_pool/thread_pool_factory.cc +2 -3
- data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.cc +39 -46
- data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.h +10 -15
- data/src/core/lib/event_engine/thready_event_engine/thready_event_engine.cc +50 -23
- data/src/core/lib/event_engine/thready_event_engine/thready_event_engine.h +9 -8
- data/src/core/lib/event_engine/time_util.cc +2 -2
- data/src/core/lib/event_engine/time_util.h +1 -2
- data/src/core/lib/event_engine/utils.cc +19 -5
- data/src/core/lib/event_engine/utils.h +10 -4
- data/src/core/lib/event_engine/windows/grpc_polled_fd_windows.cc +125 -100
- data/src/core/lib/event_engine/windows/grpc_polled_fd_windows.h +4 -6
- data/src/core/lib/event_engine/windows/iocp.cc +14 -14
- data/src/core/lib/event_engine/windows/iocp.h +2 -3
- data/src/core/lib/event_engine/windows/native_windows_dns_resolver.cc +4 -6
- data/src/core/lib/event_engine/windows/win_socket.cc +42 -33
- data/src/core/lib/event_engine/windows/win_socket.h +8 -10
- data/src/core/lib/event_engine/windows/windows_endpoint.cc +26 -27
- data/src/core/lib/event_engine/windows/windows_engine.cc +242 -134
- data/src/core/lib/event_engine/windows/windows_engine.h +143 -33
- data/src/core/lib/event_engine/windows/windows_listener.cc +22 -37
- data/src/core/lib/event_engine/windows/windows_listener.h +4 -5
- data/src/core/lib/event_engine/work_queue/basic_work_queue.cc +3 -3
- data/src/core/lib/event_engine/work_queue/basic_work_queue.h +3 -5
- data/src/core/lib/event_engine/work_queue/work_queue.h +2 -3
- data/src/core/lib/experiments/config.cc +54 -27
- data/src/core/lib/experiments/config.h +56 -3
- data/src/core/lib/experiments/experiments.cc +159 -293
- data/src/core/lib/experiments/experiments.h +84 -124
- data/src/core/lib/iomgr/buffer_list.cc +5 -5
- data/src/core/lib/iomgr/buffer_list.h +2 -3
- data/src/core/lib/iomgr/call_combiner.cc +39 -66
- data/src/core/lib/iomgr/call_combiner.h +12 -16
- data/src/core/lib/iomgr/cfstream_handle.cc +14 -20
- data/src/core/lib/iomgr/cfstream_handle.h +1 -1
- data/src/core/lib/iomgr/closure.cc +2 -2
- data/src/core/lib/iomgr/closure.h +12 -19
- data/src/core/lib/iomgr/combiner.cc +33 -48
- data/src/core/lib/iomgr/combiner.h +1 -4
- data/src/core/lib/iomgr/endpoint.cc +0 -6
- data/src/core/lib/iomgr/endpoint.h +3 -4
- data/src/core/lib/iomgr/endpoint_cfstream.cc +40 -73
- data/src/core/lib/iomgr/endpoint_pair_posix.cc +3 -6
- data/src/core/lib/iomgr/endpoint_pair_windows.cc +6 -8
- data/src/core/lib/iomgr/error.cc +22 -32
- data/src/core/lib/iomgr/error.h +7 -10
- data/src/core/lib/iomgr/error_cfstream.cc +1 -3
- data/src/core/lib/iomgr/ev_apple.cc +15 -23
- data/src/core/lib/iomgr/ev_epoll1_linux.cc +67 -113
- data/src/core/lib/iomgr/ev_poll_posix.cc +53 -53
- data/src/core/lib/iomgr/ev_posix.cc +66 -57
- data/src/core/lib/iomgr/ev_posix.h +9 -12
- data/src/core/lib/iomgr/event_engine_shims/closure.cc +10 -13
- data/src/core/lib/iomgr/event_engine_shims/closure.h +1 -2
- data/src/core/lib/iomgr/event_engine_shims/endpoint.cc +33 -51
- data/src/core/lib/iomgr/event_engine_shims/endpoint.h +2 -2
- data/src/core/lib/iomgr/event_engine_shims/tcp_client.cc +9 -13
- data/src/core/lib/iomgr/exec_ctx.cc +10 -14
- data/src/core/lib/iomgr/exec_ctx.h +33 -25
- data/src/core/lib/iomgr/executor.cc +55 -53
- data/src/core/lib/iomgr/executor.h +2 -2
- data/src/core/lib/iomgr/fork_posix.cc +11 -15
- data/src/core/lib/iomgr/fork_windows.cc +3 -2
- data/src/core/lib/iomgr/internal_errqueue.cc +4 -4
- data/src/core/lib/iomgr/iocp_windows.cc +8 -10
- data/src/core/lib/iomgr/iomgr.cc +17 -23
- data/src/core/lib/iomgr/iomgr.h +1 -2
- data/src/core/lib/iomgr/iomgr_internal.cc +1 -2
- data/src/core/lib/iomgr/iomgr_internal.h +1 -2
- data/src/core/lib/iomgr/iomgr_windows.cc +1 -4
- data/src/core/lib/iomgr/lockfree_event.cc +10 -20
- data/src/core/lib/iomgr/polling_entity.cc +13 -7
- data/src/core/lib/iomgr/pollset.h +0 -2
- data/src/core/lib/iomgr/pollset_set_windows.cc +1 -2
- data/src/core/lib/iomgr/pollset_windows.cc +2 -6
- data/src/core/lib/iomgr/port.h +2 -2
- data/src/core/lib/iomgr/resolve_address.cc +3 -5
- data/src/core/lib/iomgr/resolve_address.h +4 -6
- data/src/core/lib/iomgr/resolve_address_impl.h +1 -2
- data/src/core/lib/iomgr/resolve_address_posix.cc +12 -21
- data/src/core/lib/iomgr/resolve_address_posix.h +2 -2
- data/src/core/lib/iomgr/resolve_address_windows.cc +9 -12
- data/src/core/lib/iomgr/resolve_address_windows.h +2 -2
- data/src/core/lib/iomgr/resolved_address.h +1 -2
- data/src/core/lib/iomgr/sockaddr_utils_posix.cc +3 -6
- data/src/core/lib/iomgr/socket_factory_posix.cc +1 -1
- data/src/core/lib/iomgr/socket_mutator.cc +2 -3
- data/src/core/lib/iomgr/socket_mutator.h +1 -2
- data/src/core/lib/iomgr/socket_utils.h +1 -2
- data/src/core/lib/iomgr/socket_utils_common_posix.cc +43 -52
- data/src/core/lib/iomgr/socket_utils_linux.cc +1 -3
- data/src/core/lib/iomgr/socket_utils_posix.cc +4 -7
- data/src/core/lib/iomgr/socket_utils_windows.cc +1 -3
- data/src/core/lib/iomgr/socket_windows.cc +7 -11
- data/src/core/lib/iomgr/socket_windows.h +1 -2
- data/src/core/lib/iomgr/tcp_client_cfstream.cc +12 -20
- data/src/core/lib/iomgr/tcp_client_posix.cc +17 -30
- data/src/core/lib/iomgr/tcp_client_windows.cc +5 -10
- data/src/core/lib/iomgr/tcp_posix.cc +85 -155
- data/src/core/lib/iomgr/tcp_posix.h +0 -2
- data/src/core/lib/iomgr/tcp_server.h +2 -2
- data/src/core/lib/iomgr/tcp_server_posix.cc +40 -58
- data/src/core/lib/iomgr/tcp_server_utils_posix.h +2 -3
- data/src/core/lib/iomgr/tcp_server_utils_posix_common.cc +7 -11
- data/src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc +9 -11
- data/src/core/lib/iomgr/tcp_server_windows.cc +17 -25
- data/src/core/lib/iomgr/tcp_windows.cc +32 -62
- data/src/core/lib/iomgr/timer.h +2 -2
- data/src/core/lib/iomgr/timer_generic.cc +71 -104
- data/src/core/lib/iomgr/timer_heap.cc +2 -3
- data/src/core/lib/iomgr/timer_manager.cc +25 -43
- data/src/core/lib/iomgr/timer_manager.h +1 -2
- data/src/core/lib/iomgr/unix_sockets_posix.cc +4 -6
- data/src/core/lib/iomgr/unix_sockets_posix.h +3 -4
- data/src/core/lib/iomgr/unix_sockets_posix_noop.cc +0 -4
- data/src/core/lib/iomgr/vsock.cc +3 -6
- data/src/core/lib/iomgr/vsock.h +3 -4
- data/src/core/lib/iomgr/wakeup_fd_eventfd.cc +2 -4
- data/src/core/lib/iomgr/wakeup_fd_pipe.cc +5 -6
- data/src/core/lib/promise/activity.cc +2 -4
- data/src/core/lib/promise/activity.h +48 -17
- data/src/core/lib/promise/all_ok.h +17 -11
- data/src/core/lib/promise/arena_promise.h +2 -4
- data/src/core/lib/promise/cancel_callback.h +34 -6
- data/src/core/lib/promise/context.h +19 -10
- data/src/core/lib/promise/detail/basic_seq.h +2 -3
- data/src/core/lib/promise/detail/join_state.h +556 -762
- data/src/core/lib/promise/detail/promise_factory.h +46 -30
- data/src/core/lib/promise/detail/promise_like.h +29 -14
- data/src/core/lib/promise/detail/seq_state.h +1314 -1977
- data/src/core/lib/promise/detail/status.h +36 -15
- data/src/core/lib/promise/exec_ctx_wakeup_scheduler.h +2 -3
- data/src/core/lib/promise/for_each.h +34 -37
- data/src/core/lib/promise/if.h +23 -19
- data/src/core/lib/promise/interceptor_list.h +21 -35
- data/src/core/lib/promise/latch.h +19 -34
- data/src/core/lib/promise/loop.h +16 -12
- data/src/core/lib/promise/map.h +26 -9
- data/src/core/lib/promise/observable.h +181 -0
- data/src/core/lib/promise/party.cc +297 -147
- data/src/core/lib/promise/party.h +139 -361
- data/src/core/lib/promise/pipe.h +21 -44
- data/src/core/lib/promise/poll.h +102 -38
- data/src/core/lib/promise/prioritized_race.h +2 -2
- data/src/core/lib/promise/promise.h +14 -8
- data/src/core/lib/promise/race.h +12 -7
- data/src/core/lib/promise/seq.h +55 -39
- data/src/core/lib/promise/sleep.cc +3 -3
- data/src/core/lib/promise/sleep.h +4 -5
- data/src/core/lib/promise/status_flag.h +148 -49
- data/src/core/lib/promise/try_join.h +37 -21
- data/src/core/lib/promise/try_seq.h +86 -49
- data/src/core/lib/resource_quota/api.cc +4 -6
- data/src/core/lib/resource_quota/api.h +1 -2
- data/src/core/lib/resource_quota/arena.cc +64 -86
- data/src/core/lib/resource_quota/arena.h +143 -215
- data/src/core/lib/resource_quota/connection_quota.cc +2 -3
- data/src/core/lib/resource_quota/connection_quota.h +5 -6
- data/src/core/lib/resource_quota/memory_quota.cc +28 -40
- data/src/core/lib/resource_quota/memory_quota.h +20 -18
- data/src/core/lib/resource_quota/periodic_update.cc +4 -4
- data/src/core/lib/resource_quota/periodic_update.h +2 -4
- data/src/core/lib/resource_quota/resource_quota.h +8 -9
- data/src/core/lib/resource_quota/thread_quota.cc +2 -3
- data/src/core/lib/resource_quota/thread_quota.h +5 -6
- data/src/core/lib/security/authorization/audit_logging.cc +5 -7
- data/src/core/lib/security/authorization/audit_logging.h +5 -6
- data/src/core/lib/security/authorization/authorization_engine.h +3 -3
- data/src/core/lib/security/authorization/authorization_policy_provider.h +4 -5
- data/src/core/lib/security/authorization/authorization_policy_provider_vtable.cc +2 -2
- data/src/core/lib/security/authorization/evaluate_args.cc +10 -14
- data/src/core/lib/security/authorization/evaluate_args.h +3 -4
- data/src/core/lib/security/authorization/grpc_authorization_engine.cc +2 -4
- data/src/core/lib/security/authorization/grpc_authorization_engine.h +2 -3
- data/src/core/lib/security/authorization/grpc_server_authz_filter.cc +22 -30
- data/src/core/lib/security/authorization/grpc_server_authz_filter.h +5 -3
- data/src/core/lib/security/authorization/matchers.cc +5 -7
- data/src/core/lib/security/authorization/matchers.h +2 -4
- data/src/core/lib/security/authorization/rbac_policy.cc +2 -2
- data/src/core/lib/security/authorization/rbac_policy.h +3 -5
- data/src/core/lib/security/authorization/stdout_logger.cc +4 -5
- data/src/core/lib/security/authorization/stdout_logger.h +4 -4
- data/src/core/lib/security/certificate_provider/certificate_provider_factory.h +8 -9
- data/src/core/lib/security/certificate_provider/certificate_provider_registry.cc +4 -5
- data/src/core/lib/security/certificate_provider/certificate_provider_registry.h +2 -3
- data/src/core/lib/security/context/security_context.cc +48 -48
- data/src/core/lib/security/context/security_context.h +39 -18
- data/src/core/lib/security/credentials/alts/alts_credentials.cc +5 -5
- data/src/core/lib/security/credentials/alts/alts_credentials.h +9 -5
- data/src/core/lib/security/credentials/alts/check_gcp_environment.cc +4 -4
- data/src/core/lib/security/credentials/alts/check_gcp_environment_linux.cc +1 -2
- data/src/core/lib/security/credentials/alts/check_gcp_environment_no_op.cc +3 -5
- data/src/core/lib/security/credentials/alts/check_gcp_environment_windows.cc +3 -5
- data/src/core/lib/security/credentials/alts/grpc_alts_credentials_client_options.cc +4 -5
- data/src/core/lib/security/credentials/alts/grpc_alts_credentials_options.cc +3 -3
- data/src/core/lib/security/credentials/call_creds_util.cc +8 -7
- data/src/core/lib/security/credentials/call_creds_util.h +2 -2
- data/src/core/lib/security/credentials/channel_creds_registry.h +7 -8
- data/src/core/lib/security/credentials/channel_creds_registry_init.cc +14 -13
- data/src/core/lib/security/credentials/composite/composite_credentials.cc +10 -14
- data/src/core/lib/security/credentials/composite/composite_credentials.h +11 -10
- data/src/core/lib/security/credentials/credentials.cc +18 -19
- data/src/core/lib/security/credentials/credentials.h +12 -14
- data/src/core/lib/security/credentials/external/aws_external_account_credentials.cc +335 -339
- data/src/core/lib/security/credentials/external/aws_external_account_credentials.h +60 -48
- data/src/core/lib/security/credentials/external/aws_request_signer.cc +4 -5
- data/src/core/lib/security/credentials/external/aws_request_signer.h +3 -3
- data/src/core/lib/security/credentials/external/external_account_credentials.cc +408 -374
- data/src/core/lib/security/credentials/external/external_account_credentials.h +128 -60
- data/src/core/lib/security/credentials/external/file_external_account_credentials.cc +90 -52
- data/src/core/lib/security/credentials/external/file_external_account_credentials.h +32 -11
- data/src/core/lib/security/credentials/external/url_external_account_credentials.cc +102 -129
- data/src/core/lib/security/credentials/external/url_external_account_credentials.h +22 -24
- data/src/core/lib/security/credentials/fake/fake_credentials.cc +2 -4
- data/src/core/lib/security/credentials/fake/fake_credentials.h +8 -7
- data/src/core/lib/security/credentials/gcp_service_account_identity/gcp_service_account_identity_credentials.cc +195 -0
- data/src/core/lib/security/credentials/gcp_service_account_identity/gcp_service_account_identity_credentials.h +90 -0
- data/src/core/lib/security/credentials/google_default/credentials_generic.cc +6 -7
- data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +55 -73
- data/src/core/lib/security/credentials/google_default/google_default_credentials.h +8 -6
- data/src/core/lib/security/credentials/iam/iam_credentials.cc +5 -10
- data/src/core/lib/security/credentials/iam/iam_credentials.h +8 -7
- data/src/core/lib/security/credentials/insecure/insecure_credentials.cc +2 -2
- data/src/core/lib/security/credentials/insecure/insecure_credentials.h +2 -2
- data/src/core/lib/security/credentials/jwt/json_token.cc +25 -29
- data/src/core/lib/security/credentials/jwt/json_token.h +2 -3
- data/src/core/lib/security/credentials/jwt/jwt_credentials.cc +22 -29
- data/src/core/lib/security/credentials/jwt/jwt_credentials.h +10 -10
- data/src/core/lib/security/credentials/jwt/jwt_verifier.cc +67 -74
- data/src/core/lib/security/credentials/jwt/jwt_verifier.h +3 -4
- data/src/core/lib/security/credentials/local/local_credentials.cc +2 -2
- data/src/core/lib/security/credentials/local/local_credentials.h +3 -3
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +195 -296
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.h +50 -73
- data/src/core/lib/security/credentials/plugin/plugin_credentials.cc +20 -33
- data/src/core/lib/security/credentials/plugin/plugin_credentials.h +12 -14
- data/src/core/lib/security/credentials/ssl/ssl_credentials.cc +35 -47
- data/src/core/lib/security/credentials/ssl/ssl_credentials.h +5 -8
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.cc +3 -4
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.h +4 -5
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_match.cc +1 -3
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.cc +102 -42
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.h +14 -13
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.cc +6 -10
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.h +9 -11
- data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc +10 -13
- data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h +1 -1
- data/src/core/lib/security/credentials/tls/grpc_tls_crl_provider.cc +6 -10
- data/src/core/lib/security/credentials/tls/grpc_tls_crl_provider.h +8 -10
- data/src/core/lib/security/credentials/tls/tls_credentials.cc +20 -23
- data/src/core/lib/security/credentials/tls/tls_credentials.h +5 -3
- data/src/core/lib/security/credentials/tls/tls_utils.cc +5 -6
- data/src/core/lib/security/credentials/tls/tls_utils.h +3 -3
- data/src/core/lib/security/credentials/token_fetcher/token_fetcher_credentials.cc +298 -0
- data/src/core/lib/security/credentials/token_fetcher/token_fetcher_credentials.h +175 -0
- data/src/core/lib/security/credentials/xds/xds_credentials.cc +15 -13
- data/src/core/lib/security/credentials/xds/xds_credentials.h +7 -9
- data/src/core/lib/security/security_connector/alts/alts_security_connector.cc +22 -27
- data/src/core/lib/security/security_connector/alts/alts_security_connector.h +1 -1
- data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +24 -24
- data/src/core/lib/security/security_connector/fake/fake_security_connector.h +1 -1
- data/src/core/lib/security/security_connector/insecure/insecure_security_connector.cc +4 -7
- data/src/core/lib/security/security_connector/insecure/insecure_security_connector.h +5 -6
- data/src/core/lib/security/security_connector/load_system_roots_supported.cc +9 -11
- data/src/core/lib/security/security_connector/load_system_roots_windows.cc +4 -6
- data/src/core/lib/security/security_connector/local/local_security_connector.cc +25 -25
- data/src/core/lib/security/security_connector/local/local_security_connector.h +1 -1
- data/src/core/lib/security/security_connector/security_connector.cc +6 -11
- data/src/core/lib/security/security_connector/security_connector.h +8 -11
- data/src/core/lib/security/security_connector/ssl/ssl_security_connector.cc +23 -27
- data/src/core/lib/security/security_connector/ssl/ssl_security_connector.h +2 -3
- data/src/core/lib/security/security_connector/ssl_utils.cc +33 -34
- data/src/core/lib/security/security_connector/ssl_utils.h +6 -8
- data/src/core/lib/security/security_connector/tls/tls_security_connector.cc +37 -50
- data/src/core/lib/security/security_connector/tls/tls_security_connector.h +7 -8
- data/src/core/lib/security/transport/auth_filters.h +7 -3
- data/src/core/lib/security/transport/client_auth_filter.cc +16 -25
- data/src/core/lib/security/transport/server_auth_filter.cc +20 -31
- data/src/core/lib/security/util/json_util.cc +4 -5
- data/src/core/lib/security/util/json_util.h +1 -1
- data/src/core/lib/slice/percent_encoding.cc +2 -5
- data/src/core/lib/slice/slice.cc +4 -7
- data/src/core/lib/slice/slice.h +6 -9
- data/src/core/lib/slice/slice_buffer.cc +4 -7
- data/src/core/lib/slice/slice_buffer.h +3 -4
- data/src/core/lib/slice/slice_internal.h +3 -6
- data/src/core/lib/slice/slice_refcount.h +8 -15
- data/src/core/lib/slice/slice_string_helpers.cc +1 -1
- data/src/core/lib/slice/slice_string_helpers.h +1 -2
- data/src/core/lib/surface/byte_buffer.cc +1 -2
- data/src/core/lib/surface/byte_buffer_reader.cc +3 -6
- data/src/core/lib/surface/call.cc +161 -3826
- data/src/core/lib/surface/call.h +63 -157
- data/src/core/lib/surface/call_details.cc +4 -3
- data/src/core/lib/surface/call_log_batch.cc +8 -11
- data/src/core/lib/surface/call_test_only.h +1 -2
- data/src/core/lib/surface/call_utils.cc +231 -0
- data/src/core/lib/surface/call_utils.h +482 -0
- data/src/core/lib/surface/channel.cc +41 -40
- data/src/core/lib/surface/channel.h +21 -19
- data/src/core/lib/surface/channel_create.cc +27 -12
- data/src/core/lib/surface/channel_create.h +5 -5
- data/src/core/lib/surface/channel_init.cc +269 -266
- data/src/core/lib/surface/channel_init.h +172 -118
- data/src/core/lib/surface/client_call.cc +427 -0
- data/src/core/lib/surface/client_call.h +179 -0
- data/src/core/lib/surface/completion_queue.cc +110 -106
- data/src/core/lib/surface/completion_queue.h +3 -12
- data/src/core/lib/surface/completion_queue_factory.cc +1 -3
- data/src/core/lib/surface/event_string.cc +2 -2
- data/src/core/lib/surface/event_string.h +2 -2
- data/src/core/lib/surface/filter_stack_call.cc +1156 -0
- data/src/core/lib/surface/filter_stack_call.h +366 -0
- data/src/core/lib/surface/init.cc +55 -18
- data/src/core/lib/surface/init.h +5 -0
- data/src/core/lib/surface/lame_client.cc +11 -14
- data/src/core/lib/surface/lame_client.h +6 -5
- data/src/core/lib/surface/legacy_channel.cc +60 -46
- data/src/core/lib/surface/legacy_channel.h +15 -25
- data/src/core/lib/surface/metadata_array.cc +5 -5
- data/src/core/lib/surface/server_call.cc +221 -0
- data/src/core/lib/surface/server_call.h +168 -0
- data/src/core/lib/surface/validate_metadata.cc +3 -4
- data/src/core/lib/surface/validate_metadata.h +2 -5
- data/src/core/lib/surface/version.cc +2 -2
- data/src/core/lib/transport/bdp_estimator.cc +11 -19
- data/src/core/lib/transport/bdp_estimator.h +10 -16
- data/src/core/lib/transport/call_arena_allocator.cc +4 -18
- data/src/core/lib/transport/call_arena_allocator.h +30 -12
- data/src/core/lib/transport/call_destination.h +76 -0
- data/src/core/lib/transport/call_filters.cc +61 -405
- data/src/core/lib/transport/call_filters.h +802 -752
- data/src/core/lib/transport/call_final_info.cc +2 -2
- data/src/core/lib/transport/call_final_info.h +2 -2
- data/src/core/lib/transport/call_spine.cc +98 -73
- data/src/core/lib/transport/call_spine.h +183 -380
- data/src/core/lib/transport/call_state.cc +39 -0
- data/src/core/lib/transport/call_state.h +1061 -0
- data/src/core/lib/transport/connectivity_state.cc +37 -45
- data/src/core/lib/transport/connectivity_state.h +5 -8
- data/src/core/lib/transport/error_utils.cc +3 -4
- data/src/core/lib/transport/error_utils.h +4 -5
- data/src/core/lib/transport/interception_chain.cc +147 -0
- data/src/core/lib/transport/interception_chain.h +253 -0
- data/src/core/lib/transport/message.cc +2 -2
- data/src/core/lib/transport/message.h +5 -0
- data/src/core/lib/transport/metadata.cc +27 -3
- data/src/core/lib/transport/metadata.h +37 -2
- data/src/core/lib/transport/metadata_batch.cc +1 -3
- data/src/core/lib/transport/metadata_batch.h +64 -12
- data/src/core/lib/transport/metadata_compression_traits.h +1 -2
- data/src/core/lib/transport/metadata_info.h +1 -1
- data/src/core/lib/transport/parsed_metadata.h +3 -5
- data/src/core/lib/transport/simple_slice_based_metadata.h +1 -2
- data/src/core/lib/transport/status_conversion.h +1 -1
- data/src/core/lib/transport/timeout_encoding.cc +3 -4
- data/src/core/lib/transport/timeout_encoding.h +2 -4
- data/src/core/lib/transport/transport.cc +7 -12
- data/src/core/lib/transport/transport.h +59 -56
- data/src/core/lib/transport/transport_op_string.cc +4 -6
- data/src/core/load_balancing/address_filtering.cc +2 -4
- data/src/core/load_balancing/address_filtering.h +4 -5
- data/src/core/load_balancing/backend_metric_data.h +2 -2
- data/src/core/load_balancing/backend_metric_parser.cc +1 -2
- data/src/core/load_balancing/backend_metric_parser.h +1 -3
- data/src/core/load_balancing/child_policy_handler.cc +36 -40
- data/src/core/load_balancing/child_policy_handler.h +4 -5
- data/src/core/load_balancing/delegating_helper.h +6 -7
- data/src/core/load_balancing/endpoint_list.cc +11 -13
- data/src/core/load_balancing/endpoint_list.h +7 -9
- data/src/core/load_balancing/grpclb/client_load_reporting_filter.cc +12 -6
- data/src/core/load_balancing/grpclb/client_load_reporting_filter.h +5 -2
- data/src/core/load_balancing/grpclb/grpclb.cc +153 -187
- data/src/core/load_balancing/grpclb/grpclb_balancer_addresses.cc +2 -3
- data/src/core/load_balancing/grpclb/grpclb_client_stats.cc +2 -3
- data/src/core/load_balancing/grpclb/grpclb_client_stats.h +5 -7
- data/src/core/load_balancing/grpclb/load_balancer_api.cc +7 -10
- data/src/core/load_balancing/grpclb/load_balancer_api.h +4 -6
- data/src/core/load_balancing/health_check_client.cc +60 -80
- data/src/core/load_balancing/health_check_client.h +3 -3
- data/src/core/load_balancing/health_check_client_internal.h +8 -9
- data/src/core/load_balancing/lb_policy.cc +5 -8
- data/src/core/load_balancing/lb_policy.h +72 -38
- data/src/core/load_balancing/lb_policy_factory.h +5 -6
- data/src/core/load_balancing/lb_policy_registry.cc +5 -7
- data/src/core/load_balancing/lb_policy_registry.h +5 -6
- data/src/core/load_balancing/oob_backend_metric.cc +19 -25
- data/src/core/load_balancing/oob_backend_metric.h +3 -3
- data/src/core/load_balancing/oob_backend_metric_internal.h +8 -9
- data/src/core/load_balancing/outlier_detection/outlier_detection.cc +139 -184
- data/src/core/load_balancing/outlier_detection/outlier_detection.h +6 -8
- data/src/core/load_balancing/pick_first/pick_first.cc +219 -303
- data/src/core/load_balancing/priority/priority.cc +93 -137
- data/src/core/load_balancing/ring_hash/ring_hash.cc +52 -76
- data/src/core/load_balancing/ring_hash/ring_hash.h +6 -7
- data/src/core/load_balancing/rls/rls.cc +340 -345
- data/src/core/load_balancing/round_robin/round_robin.cc +56 -83
- data/src/core/load_balancing/subchannel_interface.h +17 -6
- data/src/core/load_balancing/weighted_round_robin/static_stride_scheduler.cc +2 -3
- data/src/core/load_balancing/weighted_round_robin/static_stride_scheduler.h +1 -2
- data/src/core/load_balancing/weighted_round_robin/weighted_round_robin.cc +138 -155
- data/src/core/load_balancing/weighted_target/weighted_target.cc +71 -107
- data/src/core/load_balancing/xds/cds.cc +53 -69
- data/src/core/load_balancing/xds/xds_cluster_impl.cc +178 -155
- data/src/core/load_balancing/xds/xds_cluster_manager.cc +52 -84
- data/src/core/load_balancing/xds/xds_override_host.cc +117 -179
- data/src/core/load_balancing/xds/xds_override_host.h +6 -7
- data/src/core/load_balancing/xds/xds_wrr_locality.cc +38 -48
- data/src/core/plugin_registry/grpc_plugin_registry.cc +5 -7
- data/src/core/plugin_registry/grpc_plugin_registry_extra.cc +5 -0
- data/src/core/resolver/dns/c_ares/dns_resolver_ares.cc +85 -60
- data/src/core/resolver/dns/c_ares/dns_resolver_ares.h +1 -2
- data/src/core/resolver/dns/c_ares/grpc_ares_ev_driver.h +4 -6
- data/src/core/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc +2 -6
- data/src/core/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc +118 -100
- data/src/core/resolver/dns/c_ares/grpc_ares_wrapper.cc +166 -151
- data/src/core/resolver/dns/c_ares/grpc_ares_wrapper.h +4 -18
- data/src/core/resolver/dns/c_ares/grpc_ares_wrapper_windows.cc +1 -1
- data/src/core/resolver/dns/dns_resolver_plugin.cc +9 -10
- data/src/core/resolver/dns/event_engine/event_engine_client_channel_resolver.cc +52 -59
- data/src/core/resolver/dns/event_engine/event_engine_client_channel_resolver.h +3 -4
- data/src/core/resolver/dns/event_engine/service_config_helper.cc +8 -10
- data/src/core/resolver/dns/event_engine/service_config_helper.h +2 -2
- data/src/core/resolver/dns/native/dns_resolver.cc +21 -30
- data/src/core/resolver/endpoint_addresses.cc +2 -5
- data/src/core/resolver/endpoint_addresses.h +5 -3
- data/src/core/resolver/fake/fake_resolver.cc +7 -9
- data/src/core/resolver/fake/fake_resolver.h +8 -9
- data/src/core/resolver/google_c2p/google_c2p_resolver.cc +23 -25
- data/src/core/resolver/polling_resolver.cc +39 -55
- data/src/core/resolver/polling_resolver.h +8 -9
- data/src/core/resolver/resolver.cc +2 -6
- data/src/core/resolver/resolver.h +4 -10
- data/src/core/resolver/resolver_factory.h +4 -5
- data/src/core/resolver/resolver_registry.cc +8 -10
- data/src/core/resolver/resolver_registry.h +4 -5
- data/src/core/resolver/sockaddr/sockaddr_resolver.cc +7 -8
- data/src/core/resolver/xds/xds_config.cc +95 -0
- data/src/core/resolver/xds/xds_config.h +108 -0
- data/src/core/resolver/xds/xds_dependency_manager.cc +82 -171
- data/src/core/resolver/xds/xds_dependency_manager.h +6 -71
- data/src/core/resolver/xds/xds_resolver.cc +123 -104
- data/src/core/resolver/xds/xds_resolver_attributes.h +7 -4
- data/src/core/server/server.cc +382 -484
- data/src/core/server/server.h +48 -32
- data/src/core/server/server_call_tracer_filter.cc +20 -19
- data/src/core/server/server_config_selector.h +6 -7
- data/src/core/server/server_config_selector_filter.cc +17 -12
- data/src/core/server/server_interface.h +2 -0
- data/src/core/server/xds_channel_stack_modifier.cc +4 -4
- data/src/core/server/xds_channel_stack_modifier.h +6 -7
- data/src/core/server/xds_server_config_fetcher.cc +63 -73
- data/src/core/service_config/service_config.h +4 -6
- data/src/core/service_config/service_config_call_data.h +21 -20
- data/src/core/service_config/service_config_channel_arg_filter.cc +16 -12
- data/src/core/service_config/service_config_impl.cc +8 -10
- data/src/core/service_config/service_config_impl.h +5 -8
- data/src/core/service_config/service_config_parser.cc +4 -8
- data/src/core/service_config/service_config_parser.h +3 -5
- data/src/core/{lib/channel → telemetry}/call_tracer.cc +56 -34
- data/src/core/{lib/channel → telemetry}/call_tracer.h +51 -14
- data/src/core/{lib/debug → telemetry}/histogram_view.cc +1 -1
- data/src/core/{lib/debug → telemetry}/histogram_view.h +4 -5
- data/src/core/telemetry/metrics.cc +177 -0
- data/src/core/telemetry/metrics.h +565 -0
- data/src/core/{lib/debug → telemetry}/stats.cc +2 -3
- data/src/core/{lib/debug → telemetry}/stats.h +7 -9
- data/src/core/{lib/debug → telemetry}/stats_data.cc +88 -3
- data/src/core/{lib/debug → telemetry}/stats_data.h +73 -8
- data/src/core/{lib/channel → telemetry}/tcp_tracer.h +4 -5
- data/src/core/tsi/alts/crypt/aes_gcm.cc +5 -8
- data/src/core/tsi/alts/crypt/gsec.cc +2 -3
- data/src/core/tsi/alts/crypt/gsec.h +3 -4
- data/src/core/tsi/alts/frame_protector/alts_counter.cc +1 -2
- data/src/core/tsi/alts/frame_protector/alts_counter.h +2 -3
- data/src/core/tsi/alts/frame_protector/alts_crypter.cc +1 -2
- data/src/core/tsi/alts/frame_protector/alts_crypter.h +2 -3
- data/src/core/tsi/alts/frame_protector/alts_frame_protector.cc +16 -18
- data/src/core/tsi/alts/frame_protector/alts_frame_protector.h +1 -2
- data/src/core/tsi/alts/frame_protector/frame_handler.cc +11 -12
- data/src/core/tsi/alts/frame_protector/frame_handler.h +1 -2
- data/src/core/tsi/alts/handshaker/alts_handshaker_client.cc +41 -46
- data/src/core/tsi/alts/handshaker/alts_shared_resource.cc +2 -4
- data/src/core/tsi/alts/handshaker/alts_shared_resource.h +1 -1
- data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc +55 -57
- data/src/core/tsi/alts/handshaker/alts_tsi_utils.cc +3 -3
- data/src/core/tsi/alts/handshaker/transport_security_common_api.cc +17 -24
- data/src/core/tsi/alts/handshaker/transport_security_common_api.h +1 -2
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.cc +14 -17
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.h +1 -2
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.cc +11 -12
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.h +1 -2
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.cc +9 -11
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.cc +3 -5
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.h +1 -2
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc +9 -13
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.h +1 -2
- data/src/core/tsi/fake_transport_security.cc +27 -32
- data/src/core/tsi/local_transport_security.cc +9 -10
- data/src/core/tsi/ssl/key_logging/ssl_key_logging.cc +9 -12
- data/src/core/tsi/ssl/key_logging/ssl_key_logging.h +8 -10
- data/src/core/tsi/ssl/session_cache/ssl_session.h +4 -5
- data/src/core/tsi/ssl/session_cache/ssl_session_cache.cc +7 -9
- data/src/core/tsi/ssl/session_cache/ssl_session_cache.h +7 -8
- data/src/core/tsi/ssl/session_cache/ssl_session_openssl.cc +2 -4
- data/src/core/tsi/ssl_transport_security.cc +126 -111
- data/src/core/tsi/ssl_transport_security.h +4 -6
- data/src/core/tsi/ssl_transport_security_utils.cc +77 -24
- data/src/core/tsi/ssl_transport_security_utils.h +13 -4
- data/src/core/tsi/ssl_types.h +1 -2
- data/src/core/tsi/transport_security.cc +2 -7
- data/src/core/tsi/transport_security.h +1 -4
- data/src/core/tsi/transport_security_interface.h +1 -6
- data/src/core/{lib/gpr → util}/alloc.cc +2 -6
- data/src/core/{lib/gpr → util}/alloc.h +3 -3
- data/src/core/{lib/gpr → util}/atm.cc +2 -3
- data/src/core/{lib/gprpp → util}/atomic_utils.h +5 -5
- data/src/core/{lib/avl → util}/avl.h +7 -8
- data/src/core/{lib/backoff → util}/backoff.cc +10 -11
- data/src/core/{lib/backoff → util}/backoff.h +8 -11
- data/src/core/{lib/gprpp → util}/bitset.h +6 -7
- data/src/core/{lib/gprpp → util}/chunked_vector.h +6 -8
- data/src/core/{lib/gprpp → util}/construct_destruct.h +8 -7
- data/src/core/{lib/gprpp → util}/cpp_impl_of.h +3 -3
- data/src/core/{lib/gprpp → util}/crash.cc +4 -6
- data/src/core/{lib/gprpp → util}/crash.h +5 -6
- data/src/core/{lib/gprpp → util}/debug_location.h +11 -4
- data/src/core/{lib/gprpp → util}/directory_reader.h +5 -5
- data/src/core/{lib/gprpp → util}/down_cast.h +7 -8
- data/src/core/{lib/gprpp → util}/dual_ref_counted.h +54 -43
- data/src/core/util/dump_args.cc +54 -0
- data/src/core/util/dump_args.h +122 -0
- data/src/core/{lib/gprpp → util}/env.h +5 -5
- data/src/core/{lib/debug → util}/event_log.cc +3 -4
- data/src/core/{lib/debug → util}/event_log.h +7 -9
- data/src/core/{lib/gprpp → util}/examine_stack.cc +1 -1
- data/src/core/{lib/gprpp → util}/examine_stack.h +5 -5
- data/src/core/{lib/gprpp → util}/fork.cc +4 -4
- data/src/core/{lib/gprpp → util}/fork.h +5 -5
- data/src/core/{ext/gcp/metadata_query.cc → util/gcp_metadata_query.cc} +31 -36
- data/src/core/{ext/gcp/metadata_query.h → util/gcp_metadata_query.h} +13 -14
- data/src/core/{lib/iomgr → util}/gethostname.h +3 -3
- data/src/core/{lib/iomgr → util}/gethostname_fallback.cc +1 -1
- data/src/core/{lib/iomgr → util}/gethostname_host_name_max.cc +2 -3
- data/src/core/{lib/iomgr → util}/gethostname_sysconf.cc +2 -3
- data/src/core/util/glob.cc +70 -0
- data/src/core/util/glob.h +29 -0
- data/src/core/{lib/gpr/time.cc → util/gpr_time.cc} +3 -6
- data/src/core/{lib/iomgr → util}/grpc_if_nametoindex.h +4 -5
- data/src/core/{lib/iomgr → util}/grpc_if_nametoindex_posix.cc +4 -6
- data/src/core/{lib/iomgr → util}/grpc_if_nametoindex_unsupported.cc +5 -8
- data/src/core/{lib/gprpp → util}/host_port.cc +2 -4
- data/src/core/{lib/gprpp → util}/host_port.h +5 -5
- data/src/core/{lib/http → util/http_client}/format_request.cc +4 -6
- data/src/core/{lib/http → util/http_client}/format_request.h +4 -4
- data/src/core/{lib/http → util/http_client}/httpcli.cc +43 -62
- data/src/core/{lib/http → util/http_client}/httpcli.h +32 -30
- data/src/core/{lib/http → util/http_client}/httpcli_security_connector.cc +17 -20
- data/src/core/{lib/http → util/http_client}/httpcli_ssl_credentials.h +4 -4
- data/src/core/{lib/http → util/http_client}/parser.cc +7 -11
- data/src/core/{lib/http → util/http_client}/parser.h +5 -8
- data/src/core/{lib/gprpp → util}/if_list.h +3 -3
- data/src/core/{lib/gpr → util}/iphone/cpu.cc +1 -2
- data/src/core/{lib → util}/json/json.h +3 -3
- data/src/core/{lib → util}/json/json_args.h +5 -5
- data/src/core/{lib → util}/json/json_channel_args.h +6 -7
- data/src/core/{lib → util}/json/json_object_loader.cc +4 -4
- data/src/core/{lib → util}/json/json_object_loader.h +11 -12
- data/src/core/{lib → util}/json/json_reader.cc +4 -7
- data/src/core/{lib → util}/json/json_reader.h +6 -7
- data/src/core/{lib → util}/json/json_util.cc +5 -5
- data/src/core/{lib → util}/json/json_util.h +7 -8
- data/src/core/{lib → util}/json/json_writer.cc +2 -4
- data/src/core/{lib → util}/json/json_writer.h +6 -6
- data/src/core/util/latent_see.cc +142 -0
- data/src/core/util/latent_see.h +327 -0
- data/src/core/{lib/gpr → util}/linux/cpu.cc +11 -12
- data/src/core/{lib/gprpp → util}/linux/env.cc +3 -3
- data/src/core/{lib/gprpp → util}/load_file.cc +4 -6
- data/src/core/{lib/gprpp → util}/load_file.h +5 -6
- data/src/core/util/log.cc +127 -0
- data/src/core/util/lru_cache.h +122 -0
- data/src/core/{lib/gprpp → util}/manual_constructor.h +5 -6
- data/src/core/{lib/gprpp → util}/match.h +6 -7
- data/src/core/{lib/matchers → util}/matchers.cc +10 -3
- data/src/core/{lib/matchers → util}/matchers.h +9 -5
- data/src/core/{lib/gprpp → util}/memory.h +6 -6
- data/src/core/{lib/gprpp → util}/mpscq.cc +1 -1
- data/src/core/{lib/gprpp → util}/mpscq.h +6 -8
- data/src/core/{lib/gpr → util}/msys/tmpfile.cc +5 -7
- data/src/core/{lib/gprpp → util}/no_destruct.h +6 -6
- data/src/core/{lib/gprpp → util}/notification.h +6 -7
- data/src/core/{lib/gprpp → util}/orphanable.h +9 -9
- data/src/core/{lib/gprpp → util}/overload.h +5 -5
- data/src/core/{lib/gprpp → util}/packed_table.h +5 -5
- data/src/core/{lib/gprpp → util}/per_cpu.cc +2 -2
- data/src/core/{lib/gprpp → util}/per_cpu.h +5 -6
- data/src/core/{lib/gpr → util}/posix/cpu.cc +6 -7
- data/src/core/{lib/gprpp → util}/posix/directory_reader.cc +4 -4
- data/src/core/{lib/gprpp → util}/posix/env.cc +1 -1
- data/src/core/{lib/gprpp → util}/posix/stat.cc +7 -9
- data/src/core/{lib/gpr → util}/posix/string.cc +2 -3
- data/src/core/{lib/gpr → util}/posix/sync.cc +3 -6
- data/src/core/{lib/gprpp → util}/posix/thd.cc +16 -20
- data/src/core/{lib/gpr → util}/posix/time.cc +5 -7
- data/src/core/{lib/gpr → util}/posix/tmpfile.cc +11 -13
- data/src/core/{lib/backoff → util}/random_early_detection.cc +3 -3
- data/src/core/{lib/backoff → util}/random_early_detection.h +4 -5
- data/src/core/{lib/gprpp → util}/ref_counted.h +39 -32
- data/src/core/{lib/gprpp → util}/ref_counted_ptr.h +6 -8
- data/src/core/{lib/gprpp → util}/ref_counted_string.cc +3 -4
- data/src/core/{lib/gprpp → util}/ref_counted_string.h +6 -8
- data/src/core/util/ring_buffer.h +123 -0
- data/src/core/{lib/gprpp → util}/single_set_ptr.h +10 -9
- data/src/core/{lib/gprpp → util}/sorted_pack.h +6 -6
- data/src/core/{lib/gpr → util}/spinlock.h +5 -7
- data/src/core/{lib/gprpp → util}/stat.h +4 -5
- data/src/core/{lib/gprpp → util}/status_helper.cc +16 -38
- data/src/core/{lib/gprpp → util}/status_helper.h +8 -38
- data/src/core/{lib/gprpp → util}/strerror.cc +2 -3
- data/src/core/{lib/gprpp → util}/strerror.h +5 -5
- data/src/core/{lib/gpr → util}/string.cc +13 -16
- data/src/core/{lib/gpr → util}/string.h +4 -6
- data/src/core/{lib/gpr → util}/sync.cc +3 -6
- data/src/core/{lib/gprpp → util}/sync.h +7 -8
- data/src/core/{lib/gpr → util}/sync_abseil.cc +5 -8
- data/src/core/{lib/gprpp → util}/table.h +56 -22
- data/src/core/{lib/gprpp → util}/tchar.cc +1 -1
- data/src/core/{lib/gprpp → util}/tchar.h +3 -3
- data/src/core/{lib/gprpp → util}/thd.h +5 -7
- data/src/core/{lib/gprpp → util}/time.cc +8 -10
- data/src/core/{lib/gprpp → util}/time.h +28 -27
- data/src/core/{lib/gprpp → util}/time_averaged_stats.cc +1 -1
- data/src/core/{lib/gprpp → util}/time_averaged_stats.h +3 -3
- data/src/core/{lib/gpr → util}/time_precise.cc +7 -7
- data/src/core/{lib/gpr → util}/time_precise.h +3 -4
- data/src/core/{lib/gprpp → util}/time_util.cc +3 -5
- data/src/core/{lib/gprpp → util}/time_util.h +5 -5
- data/src/core/{lib/gpr → util}/tmpfile.h +3 -4
- data/src/core/{lib/gprpp → util}/type_list.h +3 -3
- data/src/core/util/unique_ptr_with_bitset.h +86 -0
- data/src/core/{lib/gprpp → util}/unique_type_name.h +34 -15
- data/src/core/{xds/grpc → util}/upb_utils.h +3 -5
- data/src/core/{lib/uri/uri_parser.cc → util/uri.cc} +2 -4
- data/src/core/{lib/uri/uri_parser.h → util/uri.h} +5 -5
- data/src/core/{lib/gpr → util}/useful.h +23 -52
- data/src/core/{lib/gprpp → util}/uuid_v4.cc +3 -3
- data/src/core/{lib/gprpp → util}/uuid_v4.h +4 -5
- data/src/core/{lib/gprpp → util}/validation_errors.cc +12 -4
- data/src/core/{lib/gprpp → util}/validation_errors.h +15 -5
- data/src/core/{lib/gpr → util}/windows/cpu.cc +1 -2
- data/src/core/{lib/gprpp → util}/windows/directory_reader.cc +1 -3
- data/src/core/{lib/gprpp → util}/windows/env.cc +2 -2
- data/src/core/{lib/gprpp → util}/windows/stat.cc +6 -8
- data/src/core/{lib/gpr → util}/windows/string.cc +3 -4
- data/src/core/{lib/gpr → util}/windows/string_util.cc +6 -8
- data/src/core/{lib/gpr → util}/windows/sync.cc +2 -4
- data/src/core/{lib/gprpp → util}/windows/thd.cc +8 -10
- data/src/core/{lib/gpr → util}/windows/time.cc +3 -6
- data/src/core/{lib/gpr → util}/windows/tmpfile.cc +5 -7
- data/src/core/{lib/gprpp → util}/work_serializer.cc +75 -95
- data/src/core/{lib/gprpp → util}/work_serializer.h +8 -9
- data/src/core/{lib/gprpp → util}/xxhash_inline.h +3 -3
- data/src/core/xds/grpc/certificate_provider_store.cc +4 -5
- data/src/core/xds/grpc/certificate_provider_store.h +12 -13
- data/src/core/xds/grpc/file_watcher_certificate_provider_factory.cc +6 -7
- data/src/core/xds/grpc/file_watcher_certificate_provider_factory.h +9 -10
- data/src/core/xds/grpc/xds_audit_logger_registry.cc +5 -5
- data/src/core/xds/grpc/xds_audit_logger_registry.h +4 -5
- data/src/core/xds/grpc/xds_bootstrap_grpc.cc +8 -166
- data/src/core/xds/grpc/xds_bootstrap_grpc.h +9 -39
- data/src/core/xds/grpc/xds_certificate_provider.cc +4 -5
- data/src/core/xds/grpc/xds_certificate_provider.h +12 -11
- data/src/core/xds/grpc/xds_client_grpc.cc +98 -76
- data/src/core/xds/grpc/xds_client_grpc.h +16 -10
- data/src/core/xds/grpc/xds_cluster.cc +12 -737
- data/src/core/xds/grpc/xds_cluster.h +36 -45
- data/src/core/xds/grpc/xds_cluster_parser.cc +772 -0
- data/src/core/xds/grpc/xds_cluster_parser.h +61 -0
- data/src/core/xds/grpc/xds_cluster_specifier_plugin.cc +6 -9
- data/src/core/xds/grpc/xds_cluster_specifier_plugin.h +5 -6
- data/src/core/xds/grpc/xds_common_types.cc +33 -438
- data/src/core/xds/grpc/xds_common_types.h +10 -28
- data/src/core/xds/grpc/xds_common_types_parser.cc +503 -0
- data/src/core/xds/grpc/xds_common_types_parser.h +76 -0
- data/src/core/xds/grpc/xds_endpoint.cc +0 -420
- data/src/core/xds/grpc/xds_endpoint.h +7 -29
- data/src/core/xds/grpc/xds_endpoint_parser.cc +444 -0
- data/src/core/xds/grpc/xds_endpoint_parser.h +47 -0
- data/src/core/xds/grpc/xds_health_status.cc +0 -2
- data/src/core/xds/grpc/xds_health_status.h +0 -3
- data/src/core/xds/grpc/xds_http_fault_filter.cc +28 -16
- data/src/core/xds/grpc/xds_http_fault_filter.h +11 -7
- data/src/core/xds/grpc/{xds_http_filters.h → xds_http_filter.h} +21 -69
- data/src/core/xds/grpc/{xds_http_filters.cc → xds_http_filter_registry.cc} +11 -5
- data/src/core/xds/grpc/xds_http_filter_registry.h +104 -0
- data/src/core/xds/grpc/xds_http_gcp_authn_filter.cc +141 -0
- data/src/core/xds/grpc/xds_http_gcp_authn_filter.h +60 -0
- data/src/core/xds/grpc/xds_http_rbac_filter.cc +64 -49
- data/src/core/xds/grpc/xds_http_rbac_filter.h +11 -7
- data/src/core/xds/grpc/xds_http_stateful_session_filter.cc +24 -11
- data/src/core/xds/grpc/xds_http_stateful_session_filter.h +11 -7
- data/src/core/xds/grpc/xds_lb_policy_registry.cc +22 -27
- data/src/core/xds/grpc/xds_lb_policy_registry.h +4 -5
- data/src/core/xds/grpc/xds_listener.cc +19 -986
- data/src/core/xds/grpc/xds_listener.h +2 -35
- data/src/core/xds/grpc/xds_listener_parser.cc +993 -0
- data/src/core/xds/grpc/xds_listener_parser.h +59 -0
- data/src/core/xds/grpc/xds_metadata.cc +62 -0
- data/src/core/xds/grpc/xds_metadata.h +150 -0
- data/src/core/xds/grpc/xds_metadata_parser.cc +184 -0
- data/src/core/xds/grpc/xds_metadata_parser.h +35 -0
- data/src/core/xds/grpc/xds_route_config.cc +2 -919
- data/src/core/xds/grpc/xds_route_config.h +8 -41
- data/src/core/xds/grpc/xds_route_config_parser.cc +962 -0
- data/src/core/xds/grpc/xds_route_config_parser.h +77 -0
- data/src/core/xds/grpc/xds_routing.cc +60 -27
- data/src/core/xds/grpc/xds_routing.h +12 -6
- data/src/core/xds/grpc/xds_server_grpc.cc +160 -0
- data/src/core/xds/grpc/xds_server_grpc.h +63 -0
- data/src/core/xds/grpc/xds_transport_grpc.cc +98 -55
- data/src/core/xds/grpc/xds_transport_grpc.h +34 -23
- data/src/core/xds/xds_client/lrs_client.cc +1292 -0
- data/src/core/xds/xds_client/lrs_client.h +394 -0
- data/src/core/xds/xds_client/xds_api.cc +38 -256
- data/src/core/xds/xds_client/xds_api.h +13 -36
- data/src/core/xds/xds_client/xds_backend_metric_propagation.cc +63 -0
- data/src/core/xds/xds_client/xds_backend_metric_propagation.h +59 -0
- data/src/core/xds/xds_client/xds_bootstrap.cc +3 -4
- data/src/core/xds/xds_client/xds_bootstrap.h +3 -3
- data/src/core/xds/xds_client/xds_client.cc +175 -793
- data/src/core/xds/xds_client/xds_client.h +33 -89
- data/src/core/xds/xds_client/xds_locality.h +102 -0
- data/src/core/xds/xds_client/xds_metrics.h +2 -2
- data/src/core/xds/xds_client/xds_resource_type.h +4 -5
- data/src/core/xds/xds_client/xds_resource_type_impl.h +3 -4
- data/src/core/xds/xds_client/xds_transport.h +29 -14
- data/src/ruby/bin/math_pb.rb +1 -22
- data/src/ruby/ext/grpc/extconf.rb +1 -1
- data/src/ruby/ext/grpc/rb_byte_buffer.c +3 -3
- data/src/ruby/ext/grpc/rb_call.c +15 -8
- data/src/ruby/ext/grpc/rb_call_credentials.c +39 -33
- data/src/ruby/ext/grpc/rb_channel.c +42 -37
- data/src/ruby/ext/grpc/rb_channel_args.c +4 -4
- data/src/ruby/ext/grpc/rb_channel_credentials.c +5 -6
- data/src/ruby/ext/grpc/rb_channel_credentials.h +1 -2
- data/src/ruby/ext/grpc/rb_completion_queue.c +18 -36
- data/src/ruby/ext/grpc/rb_completion_queue.h +7 -1
- data/src/ruby/ext/grpc/rb_compression_options.c +9 -10
- data/src/ruby/ext/grpc/rb_event_thread.c +9 -9
- data/src/ruby/ext/grpc/rb_grpc.c +16 -16
- data/src/ruby/ext/grpc/rb_grpc.h +7 -0
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +6 -14
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +9 -21
- data/src/ruby/ext/grpc/rb_server.c +47 -28
- data/src/ruby/ext/grpc/rb_server_credentials.c +3 -3
- data/src/ruby/ext/grpc/rb_server_credentials.h +1 -2
- data/src/ruby/ext/grpc/rb_xds_channel_credentials.c +5 -6
- data/src/ruby/ext/grpc/rb_xds_channel_credentials.h +1 -2
- data/src/ruby/ext/grpc/rb_xds_server_credentials.c +4 -4
- data/src/ruby/ext/grpc/rb_xds_server_credentials.h +1 -2
- data/src/ruby/lib/grpc/generic/active_call.rb +8 -5
- data/src/ruby/lib/grpc/logconfig.rb +13 -0
- data/src/ruby/lib/grpc/version.rb +1 -1
- data/src/ruby/pb/grpc/health/v1/health_pb.rb +1 -22
- data/src/ruby/pb/grpc/testing/duplicate/echo_duplicate_services_pb.rb +5 -5
- data/src/ruby/pb/grpc/testing/metrics_pb.rb +10 -19
- data/src/ruby/pb/grpc/testing/metrics_services_pb.rb +5 -5
- data/src/ruby/pb/src/proto/grpc/testing/empty_pb.rb +1 -22
- data/src/ruby/pb/src/proto/grpc/testing/messages_pb.rb +1 -22
- data/src/ruby/pb/src/proto/grpc/testing/test_pb.rb +1 -22
- data/src/ruby/spec/call_spec.rb +53 -40
- data/src/ruby/spec/channel_spec.rb +4 -2
- data/src/ruby/spec/client_server_spec.rb +148 -507
- data/src/ruby/spec/generic/active_call_spec.rb +64 -86
- data/src/ruby/spec/generic/client_stub_spec.rb +20 -20
- data/src/ruby/spec/logconfig_spec.rb +30 -0
- data/src/ruby/spec/support/services.rb +3 -0
- data/third_party/abseil-cpp/absl/algorithm/container.h +57 -18
- data/third_party/abseil-cpp/absl/base/attributes.h +84 -0
- data/third_party/abseil-cpp/absl/base/config.h +32 -51
- data/third_party/abseil-cpp/absl/base/dynamic_annotations.h +0 -16
- data/third_party/abseil-cpp/absl/base/internal/nullability_impl.h +3 -1
- data/third_party/abseil-cpp/absl/base/internal/spinlock.h +13 -3
- data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.cc +0 -12
- data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock_config.h +4 -4
- data/third_party/abseil-cpp/absl/base/macros.h +48 -0
- data/third_party/abseil-cpp/absl/base/no_destructor.h +35 -40
- data/third_party/abseil-cpp/absl/base/nullability.h +33 -7
- data/third_party/abseil-cpp/absl/base/optimization.h +11 -0
- data/third_party/abseil-cpp/absl/base/options.h +1 -1
- data/third_party/abseil-cpp/absl/base/prefetch.h +1 -1
- data/third_party/abseil-cpp/absl/container/flat_hash_map.h +68 -12
- data/third_party/abseil-cpp/absl/container/flat_hash_set.h +60 -6
- data/third_party/abseil-cpp/absl/container/hash_container_defaults.h +45 -0
- data/third_party/abseil-cpp/absl/container/inlined_vector.h +13 -0
- data/third_party/abseil-cpp/absl/container/internal/common_policy_traits.h +20 -11
- data/third_party/abseil-cpp/absl/container/internal/compressed_tuple.h +15 -16
- data/third_party/abseil-cpp/absl/container/internal/container_memory.h +34 -1
- data/third_party/abseil-cpp/absl/container/internal/hash_function_defaults.h +68 -1
- data/third_party/abseil-cpp/absl/container/internal/hash_policy_traits.h +50 -0
- data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.cc +22 -7
- data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.h +26 -8
- data/third_party/abseil-cpp/absl/container/internal/inlined_vector.h +39 -35
- data/third_party/abseil-cpp/absl/container/internal/layout.h +190 -74
- data/third_party/abseil-cpp/absl/container/internal/raw_hash_map.h +8 -6
- data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.cc +334 -71
- data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.h +1299 -458
- data/third_party/abseil-cpp/absl/crc/internal/crc32_x86_arm_combined_simd.h +19 -17
- data/third_party/abseil-cpp/absl/crc/internal/crc_cord_state.cc +4 -3
- data/third_party/abseil-cpp/absl/crc/internal/crc_memcpy_fallback.cc +2 -1
- data/third_party/abseil-cpp/absl/crc/internal/crc_memcpy_x86_arm_combined.cc +12 -8
- data/third_party/abseil-cpp/absl/crc/internal/crc_non_temporal_memcpy.cc +1 -1
- data/third_party/abseil-cpp/absl/crc/internal/crc_x86_arm_combined.cc +11 -7
- data/third_party/abseil-cpp/absl/crc/internal/non_temporal_memcpy.h +18 -17
- data/third_party/abseil-cpp/absl/debugging/internal/bounded_utf8_length_sequence.h +126 -0
- data/third_party/abseil-cpp/absl/debugging/internal/decode_rust_punycode.cc +258 -0
- data/third_party/abseil-cpp/absl/debugging/internal/decode_rust_punycode.h +55 -0
- data/third_party/abseil-cpp/absl/debugging/internal/demangle.cc +1057 -86
- data/third_party/abseil-cpp/absl/debugging/internal/demangle.h +3 -0
- data/third_party/abseil-cpp/absl/debugging/internal/demangle_rust.cc +925 -0
- data/third_party/abseil-cpp/absl/debugging/internal/demangle_rust.h +42 -0
- data/third_party/abseil-cpp/absl/debugging/internal/elf_mem_image.cc +43 -16
- data/third_party/abseil-cpp/absl/debugging/internal/elf_mem_image.h +8 -7
- data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_aarch64-inl.inc +10 -7
- data/third_party/abseil-cpp/absl/debugging/internal/utf8_for_code_point.cc +70 -0
- data/third_party/abseil-cpp/absl/debugging/internal/utf8_for_code_point.h +47 -0
- data/third_party/abseil-cpp/absl/flags/commandlineflag.h +11 -0
- data/third_party/abseil-cpp/absl/flags/flag.h +2 -0
- data/third_party/abseil-cpp/absl/flags/internal/flag.cc +117 -30
- data/third_party/abseil-cpp/absl/flags/internal/flag.h +192 -30
- data/third_party/abseil-cpp/absl/flags/reflection.cc +10 -0
- data/third_party/abseil-cpp/absl/functional/any_invocable.h +13 -3
- data/third_party/abseil-cpp/absl/functional/bind_front.h +3 -2
- data/third_party/abseil-cpp/absl/functional/internal/any_invocable.h +7 -7
- data/third_party/abseil-cpp/absl/functional/internal/front_binder.h +9 -9
- data/third_party/abseil-cpp/absl/hash/internal/hash.cc +1 -1
- data/third_party/abseil-cpp/absl/hash/internal/hash.h +13 -3
- data/third_party/abseil-cpp/absl/hash/internal/low_level_hash.cc +60 -28
- data/third_party/abseil-cpp/absl/hash/internal/low_level_hash.h +4 -0
- data/third_party/abseil-cpp/absl/log/absl_vlog_is_on.h +3 -3
- data/third_party/abseil-cpp/absl/log/globals.h +28 -15
- data/third_party/abseil-cpp/absl/log/internal/check_op.cc +20 -0
- data/third_party/abseil-cpp/absl/log/internal/check_op.h +63 -21
- data/third_party/abseil-cpp/absl/log/internal/conditions.h +2 -2
- data/third_party/abseil-cpp/absl/log/internal/log_impl.h +23 -23
- data/third_party/abseil-cpp/absl/log/internal/log_message.cc +104 -47
- data/third_party/abseil-cpp/absl/log/internal/log_message.h +23 -4
- data/third_party/abseil-cpp/absl/log/internal/nullstream.h +1 -10
- data/third_party/abseil-cpp/absl/log/internal/strip.h +36 -0
- data/third_party/abseil-cpp/absl/log/log.h +5 -1
- data/third_party/abseil-cpp/absl/log/log_sink.h +11 -4
- data/third_party/abseil-cpp/absl/log/vlog_is_on.h +3 -3
- data/third_party/abseil-cpp/absl/meta/type_traits.h +138 -42
- data/third_party/abseil-cpp/absl/numeric/int128.cc +0 -3
- data/third_party/abseil-cpp/absl/numeric/int128.h +35 -5
- data/third_party/abseil-cpp/absl/numeric/int128_have_intrinsic.inc +14 -0
- data/third_party/abseil-cpp/absl/numeric/int128_no_intrinsic.inc +18 -0
- data/third_party/abseil-cpp/absl/numeric/internal/bits.h +6 -2
- data/third_party/abseil-cpp/absl/random/beta_distribution.h +8 -8
- data/third_party/abseil-cpp/absl/random/bit_gen_ref.h +9 -7
- data/third_party/abseil-cpp/absl/random/distributions.h +11 -11
- data/third_party/abseil-cpp/absl/random/seed_sequences.h +2 -0
- data/third_party/abseil-cpp/absl/status/internal/statusor_internal.h +61 -2
- data/third_party/abseil-cpp/absl/status/status.cc +0 -4
- data/third_party/abseil-cpp/absl/status/status.h +4 -4
- data/third_party/abseil-cpp/absl/status/statusor.h +108 -142
- data/third_party/abseil-cpp/absl/strings/ascii.cc +32 -71
- data/third_party/abseil-cpp/absl/strings/cord.cc +20 -15
- data/third_party/abseil-cpp/absl/strings/cord.h +68 -7
- data/third_party/abseil-cpp/absl/strings/escaping.cc +96 -21
- data/third_party/abseil-cpp/absl/strings/escaping.h +25 -8
- data/third_party/abseil-cpp/absl/strings/has_absl_stringify.h +1 -0
- data/third_party/abseil-cpp/absl/strings/internal/charconv_bigint.h +10 -0
- data/third_party/abseil-cpp/absl/strings/internal/cord_internal.h +29 -9
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree.h +2 -2
- data/third_party/abseil-cpp/absl/strings/internal/cordz_functions.cc +19 -13
- data/third_party/abseil-cpp/absl/strings/internal/cordz_functions.h +23 -13
- data/third_party/abseil-cpp/absl/strings/internal/cordz_handle.cc +24 -24
- data/third_party/abseil-cpp/absl/strings/internal/cordz_info.cc +12 -7
- data/third_party/abseil-cpp/absl/strings/internal/cordz_info.h +9 -4
- data/third_party/abseil-cpp/absl/strings/internal/escaping.cc +5 -2
- data/third_party/abseil-cpp/absl/strings/internal/str_join_internal.h +23 -2
- data/third_party/abseil-cpp/absl/strings/internal/str_split_internal.h +5 -1
- data/third_party/abseil-cpp/absl/strings/numbers.cc +107 -333
- data/third_party/abseil-cpp/absl/strings/numbers.h +12 -151
- data/third_party/abseil-cpp/absl/strings/str_cat.cc +49 -142
- data/third_party/abseil-cpp/absl/strings/str_cat.h +70 -85
- data/third_party/abseil-cpp/absl/strings/str_format.h +1 -1
- data/third_party/abseil-cpp/absl/strings/str_join.h +19 -5
- data/third_party/abseil-cpp/absl/strings/str_split.h +2 -2
- data/third_party/abseil-cpp/absl/strings/string_view.h +3 -2
- data/third_party/abseil-cpp/absl/strings/substitute.cc +4 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/graphcycles.cc +11 -2
- data/third_party/abseil-cpp/absl/synchronization/internal/graphcycles.h +5 -0
- data/third_party/abseil-cpp/absl/synchronization/mutex.h +5 -4
- data/third_party/abseil-cpp/absl/time/civil_time.h +2 -2
- data/third_party/abseil-cpp/absl/time/clock.cc +15 -1
- data/third_party/abseil-cpp/absl/time/duration.cc +58 -53
- data/third_party/abseil-cpp/absl/time/format.cc +2 -1
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.cc +1 -1
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_lookup.cc +0 -29
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/tzfile.h +3 -3
- data/third_party/abseil-cpp/absl/time/time.h +73 -29
- data/third_party/abseil-cpp/absl/types/compare.h +505 -0
- data/third_party/abseil-cpp/absl/types/internal/optional.h +2 -2
- data/third_party/abseil-cpp/absl/types/internal/variant.h +55 -67
- data/third_party/abseil-cpp/absl/types/optional.h +15 -18
- data/third_party/abseil-cpp/absl/types/span.h +3 -2
- data/third_party/abseil-cpp/absl/types/variant.h +19 -24
- data/third_party/abseil-cpp/absl/utility/utility.h +3 -41
- data/third_party/boringssl-with-bazel/src/crypto/base64/base64.c +4 -0
- data/third_party/boringssl-with-bazel/src/crypto/{fipsmodule/rand/fork_detect.h → bcm_support.h} +51 -6
- data/third_party/boringssl-with-bazel/src/crypto/bio/bio.c +12 -12
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/cbs.c +3 -5
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_chacha20poly1305.c +7 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/internal.h +43 -0
- data/third_party/boringssl-with-bazel/src/crypto/conf/conf.c +66 -41
- data/third_party/boringssl-with-bazel/src/crypto/cpu_arm_linux.c +4 -1
- data/third_party/boringssl-with-bazel/src/crypto/cpu_intel.c +71 -37
- data/third_party/boringssl-with-bazel/src/crypto/crypto.c +8 -62
- data/third_party/boringssl-with-bazel/src/crypto/dilithium/dilithium.c +1539 -0
- data/third_party/boringssl-with-bazel/src/crypto/dilithium/internal.h +58 -0
- data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa.c +10 -3
- data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa_asn1.c +0 -2
- data/third_party/boringssl-with-bazel/src/crypto/dsa/internal.h +2 -0
- data/third_party/boringssl-with-bazel/src/crypto/ecdsa_extra/ecdsa_asn1.c +160 -14
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/{aes.c → aes.c.inc} +21 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/internal.h +33 -7
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm.c +84 -80
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm_interface.h +89 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{div.c → div.c.inc} +146 -179
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{exponentiation.c → exponentiation.c.inc} +45 -1
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/internal.h +33 -23
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{random.c → random.c.inc} +6 -8
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{sqrt.c → sqrt.c.inc} +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/{e_aes.c → e_aes.c.inc} +9 -8
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{ec_key.c → ec_key.c.inc} +11 -7
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{p256-nistz.c → p256-nistz.c.inc} +104 -7
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-nistz.h +65 -8
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/{ecdsa.c → ecdsa.c.inc} +52 -107
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/internal.h +28 -11
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/fips_shared_support.c +3 -6
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/internal.h +1 -80
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/{rand.c → rand.c.inc} +26 -40
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/{padding.c → padding.c.inc} +2 -5
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/{rsa_impl.c → rsa_impl.c.inc} +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/{fips.c → fips.c.inc} +6 -4
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/{self_check.c → self_check.c.inc} +9 -35
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/service_indicator/internal.h +2 -2
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/service_indicator/{service_indicator.c → service_indicator.c.inc} +2 -2
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/internal.h +9 -4
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/{sha512.c → sha512.c.inc} +6 -0
- data/third_party/boringssl-with-bazel/src/crypto/hpke/hpke.c +293 -2
- data/third_party/boringssl-with-bazel/src/crypto/internal.h +98 -24
- data/third_party/boringssl-with-bazel/src/crypto/kyber/kyber.c +1 -0
- data/third_party/boringssl-with-bazel/src/crypto/mem.c +7 -3
- data/third_party/boringssl-with-bazel/src/crypto/mldsa/internal.h +73 -0
- data/third_party/boringssl-with-bazel/src/crypto/mldsa/mldsa.c +1687 -0
- data/third_party/boringssl-with-bazel/src/crypto/mlkem/internal.h +90 -0
- data/third_party/boringssl-with-bazel/src/crypto/mlkem/mlkem.cc +1097 -0
- data/third_party/boringssl-with-bazel/src/crypto/obj/obj_dat.h +4 -1
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_lib.c +4 -5
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pk8.c +2 -3
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pkey.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/internal.h +1 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/deterministic.c +9 -1
- data/third_party/boringssl-with-bazel/src/crypto/{fipsmodule/rand → rand_extra}/fork_detect.c +26 -28
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/getentropy.c +9 -1
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/ios.c +9 -1
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/passive.c +19 -3
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/rand_extra.c +26 -23
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/sysrand_internal.h +37 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/trusty.c +9 -1
- data/third_party/boringssl-with-bazel/src/crypto/{fipsmodule/rand → rand_extra}/urandom.c +19 -19
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/windows.c +8 -1
- data/third_party/boringssl-with-bazel/src/crypto/rsa_extra/internal.h +2 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/internal.h +0 -4
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_utl.c +49 -16
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_lu.c +0 -10
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vfy.c +7 -17
- data/third_party/boringssl-with-bazel/src/include/openssl/asn1.h +14 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/bio.h +8 -6
- data/third_party/boringssl-with-bazel/src/include/openssl/bn.h +14 -9
- data/third_party/boringssl-with-bazel/src/include/openssl/crypto.h +9 -11
- data/third_party/boringssl-with-bazel/src/include/openssl/experimental/dilithium.h +129 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/experimental/kyber.h +10 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/hpke.h +8 -6
- data/third_party/boringssl-with-bazel/src/include/openssl/mldsa.h +136 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/mlkem.h +246 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/nid.h +3 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/pem.h +3 -4
- data/third_party/boringssl-with-bazel/src/include/openssl/service_indicator.h +2 -2
- data/third_party/boringssl-with-bazel/src/include/openssl/span.h +48 -12
- data/third_party/boringssl-with-bazel/src/include/openssl/ssl.h +118 -38
- data/third_party/boringssl-with-bazel/src/include/openssl/x509.h +0 -23
- data/third_party/boringssl-with-bazel/src/ssl/d1_both.cc +9 -12
- data/third_party/boringssl-with-bazel/src/ssl/d1_lib.cc +6 -0
- data/third_party/boringssl-with-bazel/src/ssl/d1_pkt.cc +10 -5
- data/third_party/boringssl-with-bazel/src/ssl/dtls_method.cc +14 -2
- data/third_party/boringssl-with-bazel/src/ssl/dtls_record.cc +296 -61
- data/third_party/boringssl-with-bazel/src/ssl/extensions.cc +24 -16
- data/third_party/boringssl-with-bazel/src/ssl/handshake_client.cc +71 -39
- data/third_party/boringssl-with-bazel/src/ssl/handshake_server.cc +16 -4
- data/third_party/boringssl-with-bazel/src/ssl/internal.h +125 -38
- data/third_party/boringssl-with-bazel/src/ssl/s3_both.cc +44 -16
- data/third_party/boringssl-with-bazel/src/ssl/s3_pkt.cc +21 -1
- data/third_party/boringssl-with-bazel/src/ssl/ssl_aead_ctx.cc +86 -1
- data/third_party/boringssl-with-bazel/src/ssl/ssl_buffer.cc +7 -4
- data/third_party/boringssl-with-bazel/src/ssl/ssl_key_share.cc +98 -3
- data/third_party/boringssl-with-bazel/src/ssl/ssl_lib.cc +69 -29
- data/third_party/boringssl-with-bazel/src/ssl/ssl_privkey.cc +59 -20
- data/third_party/boringssl-with-bazel/src/ssl/ssl_versions.cc +7 -1
- data/third_party/boringssl-with-bazel/src/ssl/tls13_both.cc +2 -1
- data/third_party/boringssl-with-bazel/src/ssl/tls13_client.cc +18 -4
- data/third_party/boringssl-with-bazel/src/ssl/tls13_enc.cc +96 -34
- data/third_party/boringssl-with-bazel/src/ssl/tls13_server.cc +15 -5
- data/third_party/boringssl-with-bazel/src/ssl/tls_record.cc +4 -24
- data/third_party/upb/upb/base/string_view.h +1 -1
- data/third_party/upb/upb/json/decode.c +21 -3
- data/third_party/upb/upb/json/encode.c +2 -2
- data/third_party/upb/upb/lex/round_trip.c +10 -0
- data/third_party/upb/upb/mem/arena.c +79 -3
- data/third_party/upb/upb/mem/arena.h +20 -9
- data/third_party/upb/upb/mem/arena.hpp +5 -1
- data/third_party/upb/upb/mem/internal/arena.h +11 -8
- data/third_party/upb/upb/message/accessors.c +6 -7
- data/third_party/upb/upb/message/accessors.h +180 -378
- data/third_party/upb/upb/message/array.c +26 -3
- data/third_party/upb/upb/message/array.h +17 -9
- data/third_party/upb/upb/message/compat.c +5 -5
- data/third_party/upb/upb/message/compat.h +3 -3
- data/third_party/upb/upb/message/copy.c +23 -20
- data/third_party/upb/upb/message/internal/accessors.h +610 -55
- data/third_party/upb/upb/message/internal/array.h +23 -15
- data/third_party/upb/upb/message/internal/compare_unknown.c +289 -0
- data/third_party/upb/upb/message/internal/compare_unknown.h +49 -0
- data/third_party/upb/upb/message/internal/extension.c +12 -12
- data/third_party/upb/upb/message/internal/extension.h +9 -12
- data/third_party/upb/upb/message/internal/map.h +15 -0
- data/third_party/upb/upb/message/internal/map_sorter.h +4 -5
- data/third_party/upb/upb/message/internal/message.c +19 -3
- data/third_party/upb/upb/message/internal/message.h +11 -0
- data/third_party/upb/upb/message/internal/tagged_ptr.h +5 -5
- data/third_party/upb/upb/message/internal/types.h +41 -1
- data/third_party/upb/upb/message/map.c +25 -0
- data/third_party/upb/upb/message/map.h +11 -7
- data/third_party/upb/upb/message/merge.c +38 -0
- data/third_party/upb/upb/message/merge.h +26 -0
- data/third_party/upb/upb/message/message.c +83 -4
- data/third_party/upb/upb/message/message.h +16 -1
- data/third_party/upb/upb/message/tagged_ptr.h +4 -8
- data/third_party/upb/upb/message/value.h +26 -0
- data/third_party/upb/upb/mini_descriptor/build_enum.c +3 -3
- data/third_party/upb/upb/mini_descriptor/build_enum.h +6 -14
- data/third_party/upb/upb/mini_descriptor/decode.c +19 -3
- data/third_party/upb/upb/mini_descriptor/link.c +23 -21
- data/third_party/upb/upb/mini_table/enum.h +2 -4
- data/third_party/upb/upb/mini_table/extension.h +4 -12
- data/third_party/upb/upb/mini_table/extension_registry.c +18 -0
- data/third_party/upb/upb/mini_table/extension_registry.h +17 -0
- data/third_party/upb/upb/mini_table/field.h +12 -38
- data/third_party/upb/upb/mini_table/file.h +6 -19
- data/third_party/upb/upb/mini_table/internal/enum.h +1 -1
- data/third_party/upb/upb/mini_table/internal/extension.h +18 -9
- data/third_party/upb/upb/mini_table/internal/field.h +23 -23
- data/third_party/upb/upb/mini_table/internal/file.h +7 -7
- data/third_party/upb/upb/mini_table/internal/message.c +21 -1
- data/third_party/upb/upb/mini_table/internal/message.h +80 -36
- data/third_party/upb/upb/mini_table/internal/sub.h +9 -4
- data/third_party/upb/upb/mini_table/message.h +23 -22
- data/third_party/upb/upb/mini_table/sub.h +4 -12
- data/third_party/upb/upb/port/def.inc +83 -6
- data/third_party/upb/upb/port/undef.inc +5 -1
- data/third_party/upb/upb/reflection/def.hpp +35 -0
- data/third_party/upb/upb/reflection/def_pool.h +2 -2
- data/third_party/upb/upb/reflection/enum_def.c +5 -1
- data/third_party/upb/upb/reflection/enum_def.h +1 -0
- data/third_party/upb/upb/reflection/enum_value_def.c +3 -8
- data/third_party/upb/upb/reflection/field_def.c +69 -29
- data/third_party/upb/upb/reflection/field_def.h +4 -0
- data/third_party/upb/upb/reflection/file_def.c +30 -4
- data/third_party/upb/upb/reflection/file_def.h +3 -0
- data/third_party/upb/upb/reflection/internal/upb_edition_defaults.h +1 -1
- data/third_party/upb/upb/reflection/message.c +26 -9
- data/third_party/upb/upb/reflection/message.h +2 -2
- data/third_party/upb/upb/reflection/message_def.c +14 -9
- data/third_party/upb/upb/reflection/method_def.h +8 -7
- data/third_party/upb/upb/reflection/service_def.h +6 -5
- data/third_party/upb/upb/text/encode.c +60 -389
- data/third_party/upb/upb/text/encode.h +1 -11
- data/third_party/upb/upb/text/internal/encode.c +180 -0
- data/third_party/upb/upb/text/internal/encode.h +240 -0
- data/third_party/upb/upb/text/options.h +22 -0
- data/third_party/upb/upb/wire/decode.c +160 -94
- data/third_party/upb/upb/wire/decode.h +14 -1
- data/third_party/upb/upb/wire/encode.c +89 -48
- data/third_party/upb/upb/wire/encode.h +12 -1
- data/third_party/upb/upb/wire/eps_copy_input_stream.h +3 -3
- data/third_party/upb/upb/wire/internal/decode_fast.c +28 -29
- data/third_party/upb/upb/wire/internal/reader.h +3 -3
- data/third_party/upb/upb/wire/reader.c +1 -2
- data/third_party/upb/upb/wire/reader.h +4 -8
- metadata +360 -275
- data/src/core/client_channel/config_selector.cc +0 -60
- data/src/core/ext/transport/chttp2/transport/http_trace.cc +0 -19
- data/src/core/ext/transport/chttp2/transport/http_trace.h +0 -24
- data/src/core/ext/transport/chttp2/transport/max_concurrent_streams_policy.cc +0 -45
- data/src/core/ext/transport/chttp2/transport/max_concurrent_streams_policy.h +0 -67
- data/src/core/ext/transport/inproc/inproc_plugin.cc +0 -23
- data/src/core/handshaker/security/tsi_error.cc +0 -31
- data/src/core/handshaker/security/tsi_error.h +0 -30
- data/src/core/lib/channel/channel_stack_trace.cc +0 -19
- data/src/core/lib/channel/channel_stack_trace.h +0 -24
- data/src/core/lib/channel/context.h +0 -105
- data/src/core/lib/channel/metrics.cc +0 -334
- data/src/core/lib/channel/metrics.h +0 -365
- data/src/core/lib/event_engine/trace.cc +0 -25
- data/src/core/lib/event_engine/trace.h +0 -48
- data/src/core/lib/gpr/android/log.cc +0 -79
- data/src/core/lib/gpr/linux/log.cc +0 -114
- data/src/core/lib/gpr/log.cc +0 -166
- data/src/core/lib/gpr/posix/log.cc +0 -111
- data/src/core/lib/gpr/windows/log.cc +0 -116
- data/src/core/lib/iomgr/ev_windows.cc +0 -30
- data/src/core/lib/promise/trace.cc +0 -20
- data/src/core/lib/promise/trace.h +0 -24
- data/src/core/lib/resource_quota/trace.cc +0 -19
- data/src/core/lib/resource_quota/trace.h +0 -24
- data/src/core/lib/slice/slice_refcount.cc +0 -20
- data/src/core/lib/surface/api_trace.cc +0 -25
- data/src/core/lib/surface/api_trace.h +0 -52
- data/src/core/lib/surface/call_trace.h +0 -24
- data/src/core/lib/surface/wait_for_cq_end_op.cc +0 -75
- data/src/core/lib/surface/wait_for_cq_end_op.h +0 -72
- data/src/core/lib/transport/batch_builder.cc +0 -172
- data/src/core/lib/transport/batch_builder.h +0 -474
- data/src/core/resolver/binder/binder_resolver.cc +0 -154
- data/src/core/resolver/xds/xds_resolver_trace.cc +0 -25
- data/src/core/resolver/xds/xds_resolver_trace.h +0 -30
- data/src/core/xds/xds_client/xds_client_stats.cc +0 -172
- data/src/core/xds/xds_client/xds_client_stats.h +0 -258
- data/third_party/abseil-cpp/absl/strings/internal/has_absl_stringify.h +0 -44
- data/third_party/boringssl-with-bazel/src/crypto/conf/conf_def.h +0 -122
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/{aes_nohw.c → aes_nohw.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/{key_wrap.c → key_wrap.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/{mode_wrappers.c → mode_wrappers.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{add.c → add.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/asm/{x86_64-gcc.c → x86_64-gcc.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{bn.c → bn.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{bytes.c → bytes.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{cmp.c → cmp.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{ctx.c → ctx.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{div_extra.c → div_extra.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{gcd.c → gcd.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{gcd_extra.c → gcd_extra.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{generic.c → generic.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{jacobi.c → jacobi.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{montgomery.c → montgomery.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{montgomery_inv.c → montgomery_inv.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{mul.c → mul.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{prime.c → prime.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{rsaz_exp.c → rsaz_exp.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{shift.c → shift.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/{aead.c → aead.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/{cipher.c → cipher.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/{e_aesccm.c → e_aesccm.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cmac/{cmac.c → cmac.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/{check.c → check.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/{dh.c → dh.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/{digest.c → digest.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/{digests.c → digests.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digestsign/{digestsign.c → digestsign.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{ec.c → ec.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{ec_montgomery.c → ec_montgomery.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{felem.c → felem.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{oct.c → oct.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{p224-64.c → p224-64.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{p256.c → p256.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{scalar.c → scalar.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{simple.c → simple.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{simple_mul.c → simple_mul.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{util.c → util.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{wnaf.c → wnaf.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdh/{ecdh.c → ecdh.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/hkdf/{hkdf.c → hkdf.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/hmac/{hmac.c → hmac.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/md4/{md4.c → md4.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/md5/{md5.c → md5.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{cbc.c → cbc.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{cfb.c → cfb.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{ctr.c → ctr.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{gcm.c → gcm.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{gcm_nohw.c → gcm_nohw.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{ofb.c → ofb.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{polyval.c → polyval.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/{ctrdrbg.c → ctrdrbg.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/{blinding.c → blinding.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/{rsa.c → rsa.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/{sha1.c → sha1.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/{sha256.c → sha256.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/tls/{kdf.c → kdf.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/{fipsmodule/rand → rand_extra}/getrandom_fillin.h +0 -0
@@ -16,6 +16,15 @@
|
|
16
16
|
|
17
17
|
#include "src/core/ext/transport/chttp2/transport/chttp2_transport.h"
|
18
18
|
|
19
|
+
#include <grpc/event_engine/event_engine.h>
|
20
|
+
#include <grpc/grpc.h>
|
21
|
+
#include <grpc/impl/channel_arg_names.h>
|
22
|
+
#include <grpc/impl/connectivity_state.h>
|
23
|
+
#include <grpc/slice_buffer.h>
|
24
|
+
#include <grpc/status.h>
|
25
|
+
#include <grpc/support/alloc.h>
|
26
|
+
#include <grpc/support/port_platform.h>
|
27
|
+
#include <grpc/support/time.h>
|
19
28
|
#include <inttypes.h>
|
20
29
|
#include <limits.h>
|
21
30
|
#include <string.h>
|
@@ -35,6 +44,7 @@
|
|
35
44
|
#include "absl/container/flat_hash_map.h"
|
36
45
|
#include "absl/hash/hash.h"
|
37
46
|
#include "absl/log/check.h"
|
47
|
+
#include "absl/log/log.h"
|
38
48
|
#include "absl/meta/type_traits.h"
|
39
49
|
#include "absl/random/random.h"
|
40
50
|
#include "absl/status/status.h"
|
@@ -44,18 +54,7 @@
|
|
44
54
|
#include "absl/strings/string_view.h"
|
45
55
|
#include "absl/types/optional.h"
|
46
56
|
#include "absl/types/variant.h"
|
47
|
-
|
48
|
-
#include <grpc/event_engine/event_engine.h>
|
49
|
-
#include <grpc/grpc.h>
|
50
|
-
#include <grpc/impl/channel_arg_names.h>
|
51
|
-
#include <grpc/impl/connectivity_state.h>
|
52
|
-
#include <grpc/slice_buffer.h>
|
53
|
-
#include <grpc/status.h>
|
54
|
-
#include <grpc/support/alloc.h>
|
55
|
-
#include <grpc/support/log.h>
|
56
|
-
#include <grpc/support/port_platform.h>
|
57
|
-
#include <grpc/support/time.h>
|
58
|
-
|
57
|
+
#include "src/core/ext/transport/chttp2/transport/call_tracer_wrapper.h"
|
59
58
|
#include "src/core/ext/transport/chttp2/transport/context_list_entry.h"
|
60
59
|
#include "src/core/ext/transport/chttp2/transport/flow_control.h"
|
61
60
|
#include "src/core/ext/transport/chttp2/transport/frame_data.h"
|
@@ -63,33 +62,24 @@
|
|
63
62
|
#include "src/core/ext/transport/chttp2/transport/frame_rst_stream.h"
|
64
63
|
#include "src/core/ext/transport/chttp2/transport/hpack_encoder.h"
|
65
64
|
#include "src/core/ext/transport/chttp2/transport/http2_settings.h"
|
66
|
-
#include "src/core/ext/transport/chttp2/transport/http_trace.h"
|
67
65
|
#include "src/core/ext/transport/chttp2/transport/internal.h"
|
68
66
|
#include "src/core/ext/transport/chttp2/transport/legacy_frame.h"
|
69
|
-
#include "src/core/ext/transport/chttp2/transport/max_concurrent_streams_policy.h"
|
70
67
|
#include "src/core/ext/transport/chttp2/transport/ping_abuse_policy.h"
|
71
68
|
#include "src/core/ext/transport/chttp2/transport/ping_callbacks.h"
|
72
69
|
#include "src/core/ext/transport/chttp2/transport/ping_rate_policy.h"
|
70
|
+
#include "src/core/ext/transport/chttp2/transport/stream_lists.h"
|
73
71
|
#include "src/core/ext/transport/chttp2/transport/varint.h"
|
74
72
|
#include "src/core/ext/transport/chttp2/transport/write_size_policy.h"
|
75
|
-
#include "src/core/lib/channel/call_tracer.h"
|
76
73
|
#include "src/core/lib/channel/channel_args.h"
|
77
|
-
#include "src/core/lib/
|
78
|
-
#include "src/core/lib/
|
79
|
-
#include "src/core/lib/
|
80
|
-
#include "src/core/lib/debug/stats_data.h"
|
74
|
+
#include "src/core/lib/config/config_vars.h"
|
75
|
+
#include "src/core/lib/event_engine/extensions/tcp_trace.h"
|
76
|
+
#include "src/core/lib/event_engine/query_extensions.h"
|
81
77
|
#include "src/core/lib/experiments/experiments.h"
|
82
|
-
#include "src/core/lib/gpr/string.h"
|
83
|
-
#include "src/core/lib/gpr/useful.h"
|
84
|
-
#include "src/core/lib/gprpp/bitset.h"
|
85
|
-
#include "src/core/lib/gprpp/crash.h"
|
86
|
-
#include "src/core/lib/gprpp/debug_location.h"
|
87
|
-
#include "src/core/lib/gprpp/ref_counted.h"
|
88
|
-
#include "src/core/lib/gprpp/status_helper.h"
|
89
|
-
#include "src/core/lib/gprpp/time.h"
|
90
|
-
#include "src/core/lib/http/parser.h"
|
91
78
|
#include "src/core/lib/iomgr/combiner.h"
|
79
|
+
#include "src/core/lib/iomgr/endpoint.h"
|
92
80
|
#include "src/core/lib/iomgr/error.h"
|
81
|
+
#include "src/core/lib/iomgr/ev_posix.h"
|
82
|
+
#include "src/core/lib/iomgr/event_engine_shims/endpoint.h"
|
93
83
|
#include "src/core/lib/iomgr/exec_ctx.h"
|
94
84
|
#include "src/core/lib/iomgr/iomgr_fwd.h"
|
95
85
|
#include "src/core/lib/iomgr/port.h"
|
@@ -97,7 +87,6 @@
|
|
97
87
|
#include "src/core/lib/resource_quota/arena.h"
|
98
88
|
#include "src/core/lib/resource_quota/memory_quota.h"
|
99
89
|
#include "src/core/lib/resource_quota/resource_quota.h"
|
100
|
-
#include "src/core/lib/resource_quota/trace.h"
|
101
90
|
#include "src/core/lib/slice/slice.h"
|
102
91
|
#include "src/core/lib/slice/slice_buffer.h"
|
103
92
|
#include "src/core/lib/slice/slice_internal.h"
|
@@ -109,10 +98,19 @@
|
|
109
98
|
#include "src/core/lib/transport/metadata_info.h"
|
110
99
|
#include "src/core/lib/transport/status_conversion.h"
|
111
100
|
#include "src/core/lib/transport/transport.h"
|
112
|
-
|
113
|
-
#
|
114
|
-
#include "src/core/
|
115
|
-
#
|
101
|
+
#include "src/core/telemetry/call_tracer.h"
|
102
|
+
#include "src/core/telemetry/stats.h"
|
103
|
+
#include "src/core/telemetry/stats_data.h"
|
104
|
+
#include "src/core/telemetry/tcp_tracer.h"
|
105
|
+
#include "src/core/util/bitset.h"
|
106
|
+
#include "src/core/util/crash.h"
|
107
|
+
#include "src/core/util/debug_location.h"
|
108
|
+
#include "src/core/util/http_client/parser.h"
|
109
|
+
#include "src/core/util/ref_counted.h"
|
110
|
+
#include "src/core/util/status_helper.h"
|
111
|
+
#include "src/core/util/string.h"
|
112
|
+
#include "src/core/util/time.h"
|
113
|
+
#include "src/core/util/useful.h"
|
116
114
|
|
117
115
|
#define DEFAULT_CONNECTION_WINDOW_TARGET (1024 * 1024)
|
118
116
|
#define MAX_WINDOW 0x7fffffffu
|
@@ -142,9 +140,6 @@ static bool g_default_server_keepalive_permit_without_calls = false;
|
|
142
140
|
#define GRPC_ARG_HTTP_TARPIT_MAX_DURATION_MS "grpc.http.tarpit_max_duration_ms"
|
143
141
|
|
144
142
|
#define MAX_CLIENT_STREAM_ID 0x7fffffffu
|
145
|
-
grpc_core::TraceFlag grpc_keepalive_trace(false, "http_keepalive");
|
146
|
-
grpc_core::DebugOnlyTraceFlag grpc_trace_chttp2_refcount(false,
|
147
|
-
"chttp2_refcount");
|
148
143
|
|
149
144
|
// forward declarations of various callbacks that we'll build closures around
|
150
145
|
static void write_action_begin_locked(
|
@@ -228,14 +223,13 @@ namespace {
|
|
228
223
|
|
229
224
|
using TaskHandle = ::grpc_event_engine::experimental::EventEngine::TaskHandle;
|
230
225
|
|
231
|
-
grpc_core::
|
232
|
-
|
226
|
+
grpc_core::CallTracerAnnotationInterface* CallTracerIfSampled(
|
227
|
+
grpc_chttp2_stream* s) {
|
228
|
+
if (!grpc_core::IsTraceRecordCallopsEnabled()) {
|
233
229
|
return nullptr;
|
234
230
|
}
|
235
|
-
auto* call_tracer =
|
236
|
-
|
237
|
-
s->context)[GRPC_CONTEXT_CALL_TRACER_ANNOTATION_INTERFACE]
|
238
|
-
.value);
|
231
|
+
auto* call_tracer =
|
232
|
+
s->arena->GetContext<grpc_core::CallTracerAnnotationInterface>();
|
239
233
|
if (call_tracer == nullptr || !call_tracer->IsSampled()) {
|
240
234
|
return nullptr;
|
241
235
|
}
|
@@ -244,13 +238,11 @@ grpc_core::CallTracerInterface* CallTracerIfSampled(grpc_chttp2_stream* s) {
|
|
244
238
|
|
245
239
|
std::shared_ptr<grpc_core::TcpTracerInterface> TcpTracerIfSampled(
|
246
240
|
grpc_chttp2_stream* s) {
|
247
|
-
if (
|
241
|
+
if (!grpc_core::IsTraceRecordCallopsEnabled()) {
|
248
242
|
return nullptr;
|
249
243
|
}
|
250
|
-
auto* call_attempt_tracer =
|
251
|
-
|
252
|
-
s->context)[GRPC_CONTEXT_CALL_TRACER]
|
253
|
-
.value);
|
244
|
+
auto* call_attempt_tracer =
|
245
|
+
s->arena->GetContext<grpc_core::CallTracerInterface>();
|
254
246
|
if (call_attempt_tracer == nullptr || !call_attempt_tracer->IsSampled()) {
|
255
247
|
return nullptr;
|
256
248
|
}
|
@@ -264,6 +256,7 @@ grpc_core::CopyContextFn g_get_copied_context_fn = nullptr;
|
|
264
256
|
namespace grpc_core {
|
265
257
|
|
266
258
|
namespace {
|
259
|
+
|
267
260
|
// Initialize a grpc_closure \a c to call \a Fn with \a t and \a error. Holds
|
268
261
|
// the passed in reference to \a t until it's moved into Fn.
|
269
262
|
template <void (*Fn)(RefCountedPtr<grpc_chttp2_transport>, grpc_error_handle)>
|
@@ -279,13 +272,12 @@ grpc_closure* InitTransportClosure(RefCountedPtr<grpc_chttp2_transport> t,
|
|
279
272
|
t.release(), nullptr);
|
280
273
|
return c;
|
281
274
|
}
|
282
|
-
} // namespace
|
283
275
|
|
284
|
-
namespace {
|
285
276
|
TestOnlyGlobalHttp2TransportInitCallback test_only_init_callback = nullptr;
|
286
277
|
TestOnlyGlobalHttp2TransportDestructCallback test_only_destruct_callback =
|
287
278
|
nullptr;
|
288
279
|
bool test_only_disable_transient_failure_state_notification = false;
|
280
|
+
|
289
281
|
} // namespace
|
290
282
|
|
291
283
|
void TestOnlySetGlobalHttp2TransportInitCallback(
|
@@ -385,17 +377,15 @@ grpc_chttp2_transport::~grpc_chttp2_transport() {
|
|
385
377
|
channelz_socket.reset();
|
386
378
|
}
|
387
379
|
|
388
|
-
grpc_endpoint_destroy(ep);
|
389
|
-
|
390
380
|
grpc_slice_buffer_destroy(&qbuf);
|
391
381
|
|
392
382
|
grpc_error_handle error = GRPC_ERROR_CREATE("Transport destroyed");
|
393
383
|
// ContextList::Execute follows semantics of a callback function and does not
|
394
384
|
// take a ref on error
|
395
|
-
if (
|
396
|
-
grpc_core::ForEachContextListEntryExecute(
|
385
|
+
if (context_list != nullptr) {
|
386
|
+
grpc_core::ForEachContextListEntryExecute(context_list, nullptr, error);
|
397
387
|
}
|
398
|
-
|
388
|
+
context_list = nullptr;
|
399
389
|
|
400
390
|
grpc_slice_buffer_destroy(&read_buffer);
|
401
391
|
grpc_chttp2_goaway_parser_destroy(&goaway_parser);
|
@@ -422,14 +412,14 @@ grpc_chttp2_transport::~grpc_chttp2_transport() {
|
|
422
412
|
|
423
413
|
static void read_channel_args(grpc_chttp2_transport* t,
|
424
414
|
const grpc_core::ChannelArgs& channel_args,
|
425
|
-
bool is_client) {
|
415
|
+
const bool is_client) {
|
426
416
|
const int initial_sequence_number =
|
427
417
|
channel_args.GetInt(GRPC_ARG_HTTP2_INITIAL_SEQUENCE_NUMBER).value_or(-1);
|
428
418
|
if (initial_sequence_number > 0) {
|
429
419
|
if ((t->next_stream_id & 1) != (initial_sequence_number & 1)) {
|
430
|
-
|
431
|
-
|
432
|
-
|
420
|
+
LOG(ERROR) << GRPC_ARG_HTTP2_INITIAL_SEQUENCE_NUMBER
|
421
|
+
<< ": low bit must be " << (t->next_stream_id & 1) << " on "
|
422
|
+
<< (is_client ? "client" : "server");
|
433
423
|
} else {
|
434
424
|
t->next_stream_id = static_cast<uint32_t>(initial_sequence_number);
|
435
425
|
}
|
@@ -465,15 +455,11 @@ static void read_channel_args(grpc_chttp2_transport* t,
|
|
465
455
|
if (t->is_client) {
|
466
456
|
t->keepalive_permit_without_calls =
|
467
457
|
channel_args.GetBool(GRPC_ARG_KEEPALIVE_PERMIT_WITHOUT_CALLS)
|
468
|
-
.value_or(
|
469
|
-
? g_default_client_keepalive_permit_without_calls
|
470
|
-
: false);
|
458
|
+
.value_or(g_default_client_keepalive_permit_without_calls);
|
471
459
|
} else {
|
472
460
|
t->keepalive_permit_without_calls =
|
473
461
|
channel_args.GetBool(GRPC_ARG_KEEPALIVE_PERMIT_WITHOUT_CALLS)
|
474
|
-
.value_or(
|
475
|
-
? g_default_server_keepalive_permit_without_calls
|
476
|
-
: false);
|
462
|
+
.value_or(g_default_server_keepalive_permit_without_calls);
|
477
463
|
}
|
478
464
|
|
479
465
|
t->settings_timeout =
|
@@ -502,7 +488,7 @@ static void read_channel_args(grpc_chttp2_transport* t,
|
|
502
488
|
.value_or(GRPC_ENABLE_CHANNELZ_DEFAULT)) {
|
503
489
|
t->channelz_socket =
|
504
490
|
grpc_core::MakeRefCounted<grpc_core::channelz::SocketNode>(
|
505
|
-
std::string(grpc_endpoint_get_local_address(t->ep)),
|
491
|
+
std::string(grpc_endpoint_get_local_address(t->ep.get())),
|
506
492
|
std::string(t->peer_string.as_string_view()),
|
507
493
|
absl::StrCat(t->GetTransportName(), " ",
|
508
494
|
t->peer_string.as_string_view()),
|
@@ -532,11 +518,10 @@ static void read_channel_args(grpc_chttp2_transport* t,
|
|
532
518
|
value = channel_args.GetInt(GRPC_ARG_MAX_CONCURRENT_STREAMS).value_or(-1);
|
533
519
|
if (value >= 0) {
|
534
520
|
t->settings.mutable_local().SetMaxConcurrentStreams(value);
|
535
|
-
t->max_concurrent_streams_policy.SetTarget(value);
|
536
521
|
}
|
537
522
|
} else if (channel_args.Contains(GRPC_ARG_MAX_CONCURRENT_STREAMS)) {
|
538
|
-
|
539
|
-
|
523
|
+
VLOG(2) << GRPC_ARG_MAX_CONCURRENT_STREAMS
|
524
|
+
<< " is not available on clients";
|
540
525
|
}
|
541
526
|
value =
|
542
527
|
channel_args.GetInt(GRPC_ARG_HTTP2_HPACK_TABLE_SIZE_DECODER).value_or(-1);
|
@@ -592,17 +577,15 @@ static void init_keepalive_pings_if_enabled_locked(
|
|
592
577
|
}
|
593
578
|
}
|
594
579
|
|
580
|
+
using grpc_event_engine::experimental::QueryExtension;
|
581
|
+
using grpc_event_engine::experimental::TcpTraceExtension;
|
582
|
+
|
595
583
|
grpc_chttp2_transport::grpc_chttp2_transport(
|
596
|
-
const grpc_core::ChannelArgs& channel_args,
|
597
|
-
bool is_client)
|
598
|
-
:
|
599
|
-
grpc_core::NonPolymorphicRefCount>(
|
600
|
-
GRPC_TRACE_FLAG_ENABLED(grpc_trace_chttp2_refcount)
|
601
|
-
? "chttp2_refcount"
|
602
|
-
: nullptr),
|
603
|
-
ep(ep),
|
584
|
+
const grpc_core::ChannelArgs& channel_args,
|
585
|
+
grpc_core::OrphanablePtr<grpc_endpoint> endpoint, const bool is_client)
|
586
|
+
: ep(std::move(endpoint)),
|
604
587
|
peer_string(
|
605
|
-
grpc_core::Slice::FromCopiedString(grpc_endpoint_get_peer(ep))),
|
588
|
+
grpc_core::Slice::FromCopiedString(grpc_endpoint_get_peer(ep.get()))),
|
606
589
|
memory_owner(channel_args.GetObject<grpc_core::ResourceQuota>()
|
607
590
|
->memory_quota()
|
608
591
|
->CreateMemoryOwner()),
|
@@ -623,7 +606,19 @@ grpc_chttp2_transport::grpc_chttp2_transport(
|
|
623
606
|
&memory_owner),
|
624
607
|
deframe_state(is_client ? GRPC_DTS_FH_0 : GRPC_DTS_CLIENT_PREFIX_0),
|
625
608
|
is_client(is_client) {
|
626
|
-
|
609
|
+
context_list = new grpc_core::ContextList();
|
610
|
+
|
611
|
+
if (channel_args.GetBool(GRPC_ARG_TCP_TRACING_ENABLED).value_or(false) &&
|
612
|
+
grpc_event_engine::experimental::grpc_is_event_engine_endpoint(
|
613
|
+
ep.get())) {
|
614
|
+
auto epte = QueryExtension<TcpTraceExtension>(
|
615
|
+
grpc_event_engine::experimental::grpc_get_wrapped_event_engine_endpoint(
|
616
|
+
ep.get()));
|
617
|
+
if (epte != nullptr) {
|
618
|
+
epte->InitializeAndReturnTcpTracer();
|
619
|
+
}
|
620
|
+
}
|
621
|
+
|
627
622
|
CHECK(strlen(GRPC_CHTTP2_CLIENT_CONNECT_STRING) ==
|
628
623
|
GRPC_CHTTP2_CLIENT_CONNECT_STRLEN);
|
629
624
|
|
@@ -759,9 +754,20 @@ static void close_transport_locked(grpc_chttp2_transport* t,
|
|
759
754
|
GRPC_CHTTP2_STREAM_UNREF(s, "chttp2_writing:close");
|
760
755
|
}
|
761
756
|
CHECK(t->write_state == GRPC_CHTTP2_WRITE_STATE_IDLE);
|
762
|
-
|
757
|
+
if (t->interested_parties_until_recv_settings != nullptr) {
|
758
|
+
grpc_endpoint_delete_from_pollset_set(
|
759
|
+
t->ep.get(), t->interested_parties_until_recv_settings);
|
760
|
+
t->interested_parties_until_recv_settings = nullptr;
|
761
|
+
}
|
762
|
+
grpc_core::MutexLock lock(&t->ep_destroy_mu);
|
763
|
+
t->ep.reset();
|
763
764
|
}
|
764
765
|
if (t->notify_on_receive_settings != nullptr) {
|
766
|
+
if (t->interested_parties_until_recv_settings != nullptr) {
|
767
|
+
grpc_endpoint_delete_from_pollset_set(
|
768
|
+
t->ep.get(), t->interested_parties_until_recv_settings);
|
769
|
+
t->interested_parties_until_recv_settings = nullptr;
|
770
|
+
}
|
765
771
|
grpc_core::ExecCtx::Run(DEBUG_LOCATION, t->notify_on_receive_settings,
|
766
772
|
error);
|
767
773
|
t->notify_on_receive_settings = nullptr;
|
@@ -790,7 +796,8 @@ void grpc_chttp2_stream_unref(grpc_chttp2_stream* s) {
|
|
790
796
|
|
791
797
|
grpc_chttp2_stream::grpc_chttp2_stream(grpc_chttp2_transport* t,
|
792
798
|
grpc_stream_refcount* refcount,
|
793
|
-
const void* server_data
|
799
|
+
const void* server_data,
|
800
|
+
grpc_core::Arena* arena)
|
794
801
|
: t(t->Ref()),
|
795
802
|
refcount([refcount]() {
|
796
803
|
// We reserve one 'active stream' that's dropped when the stream is
|
@@ -804,14 +811,15 @@ grpc_chttp2_stream::grpc_chttp2_stream(grpc_chttp2_transport* t,
|
|
804
811
|
#endif
|
805
812
|
return refcount;
|
806
813
|
}()),
|
807
|
-
|
814
|
+
arena(arena),
|
815
|
+
flow_control(&t->flow_control),
|
816
|
+
call_tracer_wrapper(this) {
|
808
817
|
t->streams_allocated.fetch_add(1, std::memory_order_relaxed);
|
809
818
|
if (server_data) {
|
810
819
|
id = static_cast<uint32_t>(reinterpret_cast<uintptr_t>(server_data));
|
811
|
-
|
812
|
-
|
813
|
-
|
814
|
-
}
|
820
|
+
GRPC_TRACE_VLOG(http, 2)
|
821
|
+
<< "HTTP:" << t << "/" << this << " creating accept stream " << id
|
822
|
+
<< " [from " << server_data << "]";
|
815
823
|
*t->accepting_stream = this;
|
816
824
|
t->stream_map.emplace(id, this);
|
817
825
|
post_destructive_reclaimer(t);
|
@@ -861,8 +869,8 @@ grpc_chttp2_stream::~grpc_chttp2_stream() {
|
|
861
869
|
void grpc_chttp2_transport::InitStream(grpc_stream* gs,
|
862
870
|
grpc_stream_refcount* refcount,
|
863
871
|
const void* server_data,
|
864
|
-
grpc_core::Arena*) {
|
865
|
-
new (gs) grpc_chttp2_stream(this, refcount, server_data);
|
872
|
+
grpc_core::Arena* arena) {
|
873
|
+
new (gs) grpc_chttp2_stream(this, refcount, server_data, arena);
|
866
874
|
}
|
867
875
|
|
868
876
|
static void destroy_stream_locked(void* sp, grpc_error_handle /*error*/) {
|
@@ -898,7 +906,7 @@ grpc_chttp2_stream* grpc_chttp2_parsing_accept_stream(grpc_chttp2_transport* t,
|
|
898
906
|
// OUTPUT PROCESSING
|
899
907
|
//
|
900
908
|
|
901
|
-
static const char*
|
909
|
+
static const char* get_write_state_name(grpc_chttp2_write_state st) {
|
902
910
|
switch (st) {
|
903
911
|
case GRPC_CHTTP2_WRITE_STATE_IDLE:
|
904
912
|
return "IDLE";
|
@@ -912,11 +920,11 @@ static const char* write_state_name(grpc_chttp2_write_state st) {
|
|
912
920
|
|
913
921
|
static void set_write_state(grpc_chttp2_transport* t,
|
914
922
|
grpc_chttp2_write_state st, const char* reason) {
|
915
|
-
|
916
|
-
|
917
|
-
|
918
|
-
|
919
|
-
|
923
|
+
GRPC_TRACE_LOG(http, INFO)
|
924
|
+
<< "W:" << t << " " << (t->is_client ? "CLIENT" : "SERVER") << " ["
|
925
|
+
<< t->peer_string.as_string_view() << "] state "
|
926
|
+
<< get_write_state_name(t->write_state) << " -> "
|
927
|
+
<< get_write_state_name(st) << " [" << reason << "]";
|
920
928
|
t->write_state = st;
|
921
929
|
// If the state is being reset back to idle, it means a write was just
|
922
930
|
// finished. Make sure all the run_after_write closures are scheduled.
|
@@ -988,6 +996,7 @@ static const char* begin_writing_desc(bool partial) {
|
|
988
996
|
static void write_action_begin_locked(
|
989
997
|
grpc_core::RefCountedPtr<grpc_chttp2_transport> t,
|
990
998
|
grpc_error_handle /*error_ignored*/) {
|
999
|
+
GRPC_LATENT_SEE_INNER_SCOPE("write_action_begin_locked");
|
991
1000
|
CHECK(t->write_state != GRPC_CHTTP2_WRITE_STATE_IDLE);
|
992
1001
|
grpc_chttp2_begin_write_result r;
|
993
1002
|
if (!t->closed_with_error.ok()) {
|
@@ -1006,11 +1015,10 @@ static void write_action_begin_locked(
|
|
1006
1015
|
// We had paused reading, because we had many induced frames (SETTINGS
|
1007
1016
|
// ACK, PINGS ACK and RST_STREAMS) pending in t->qbuf. Now that we have
|
1008
1017
|
// been able to flush qbuf, we can resume reading.
|
1009
|
-
|
1010
|
-
|
1011
|
-
"
|
1012
|
-
|
1013
|
-
t.get()));
|
1018
|
+
GRPC_TRACE_LOG(http, INFO)
|
1019
|
+
<< "transport " << t.get()
|
1020
|
+
<< " : Resuming reading after being paused due to too many unwritten "
|
1021
|
+
"SETTINGS ACK, PINGS ACK and RST_STREAM frames";
|
1014
1022
|
t->reading_paused_on_pending_induced_frames = false;
|
1015
1023
|
continue_read_action_locked(std::move(t));
|
1016
1024
|
}
|
@@ -1021,13 +1029,13 @@ static void write_action_begin_locked(
|
|
1021
1029
|
}
|
1022
1030
|
|
1023
1031
|
static void write_action(grpc_chttp2_transport* t) {
|
1024
|
-
void* cl = t->
|
1025
|
-
if (!t->
|
1032
|
+
void* cl = t->context_list;
|
1033
|
+
if (!t->context_list->empty()) {
|
1026
1034
|
// Transfer the ownership of the context list to the endpoint and create and
|
1027
1035
|
// associate a new context list with the transport.
|
1028
1036
|
// The old context list is stored in the cl local variable which is passed
|
1029
1037
|
// to the endpoint. Its upto the endpoint to manage its lifetime.
|
1030
|
-
t->
|
1038
|
+
t->context_list = new grpc_core::ContextList();
|
1031
1039
|
} else {
|
1032
1040
|
// t->cl is Empty. There is nothing to trace in this endpoint_write. set cl
|
1033
1041
|
// to nullptr.
|
@@ -1042,12 +1050,11 @@ static void write_action(grpc_chttp2_transport* t) {
|
|
1042
1050
|
if (max_frame_size == 0) {
|
1043
1051
|
max_frame_size = INT_MAX;
|
1044
1052
|
}
|
1045
|
-
|
1046
|
-
|
1047
|
-
|
1048
|
-
}
|
1053
|
+
GRPC_TRACE_LOG(http2_ping, INFO)
|
1054
|
+
<< (t->is_client ? "CLIENT" : "SERVER") << "[" << t << "]: Write "
|
1055
|
+
<< t->outbuf.Length() << " bytes";
|
1049
1056
|
t->write_size_policy.BeginWrite(t->outbuf.Length());
|
1050
|
-
grpc_endpoint_write(t->ep, t->outbuf.c_slice_buffer(),
|
1057
|
+
grpc_endpoint_write(t->ep.get(), t->outbuf.c_slice_buffer(),
|
1051
1058
|
grpc_core::InitTransportClosure<write_action_end>(
|
1052
1059
|
t->Ref(), &t->write_action_end_locked),
|
1053
1060
|
cl, max_frame_size);
|
@@ -1056,10 +1063,8 @@ static void write_action(grpc_chttp2_transport* t) {
|
|
1056
1063
|
static void write_action_end(grpc_core::RefCountedPtr<grpc_chttp2_transport> t,
|
1057
1064
|
grpc_error_handle error) {
|
1058
1065
|
auto* tp = t.get();
|
1059
|
-
|
1060
|
-
|
1061
|
-
t->is_client ? "CLIENT" : "SERVER", t.get());
|
1062
|
-
}
|
1066
|
+
GRPC_TRACE_LOG(http2_ping, INFO) << (t->is_client ? "CLIENT" : "SERVER")
|
1067
|
+
<< "[" << t.get() << "]: Finish write";
|
1063
1068
|
tp->combiner->Run(grpc_core::InitTransportClosure<write_action_end_locked>(
|
1064
1069
|
std::move(t), &tp->write_action_end_locked),
|
1065
1070
|
error);
|
@@ -1129,29 +1134,26 @@ void grpc_chttp2_add_incoming_goaway(grpc_chttp2_transport* t,
|
|
1129
1134
|
uint32_t goaway_error,
|
1130
1135
|
uint32_t last_stream_id,
|
1131
1136
|
absl::string_view goaway_text) {
|
1132
|
-
t->goaway_error =
|
1137
|
+
t->goaway_error = grpc_error_set_int(
|
1133
1138
|
grpc_error_set_int(
|
1134
|
-
|
1135
|
-
|
1136
|
-
|
1137
|
-
|
1138
|
-
|
1139
|
-
|
1140
|
-
|
1141
|
-
|
1142
|
-
|
1143
|
-
|
1144
|
-
|
1145
|
-
|
1146
|
-
GRPC_CHTTP2_IF_TRACING(
|
1147
|
-
gpr_log(GPR_INFO, "transport %p got goaway with last stream id %d", t,
|
1148
|
-
last_stream_id));
|
1139
|
+
grpc_core::StatusCreate(
|
1140
|
+
absl::StatusCode::kUnavailable,
|
1141
|
+
absl::StrFormat("GOAWAY received; Error code: %u; Debug Text: %s",
|
1142
|
+
goaway_error, goaway_text),
|
1143
|
+
DEBUG_LOCATION, {}),
|
1144
|
+
grpc_core::StatusIntProperty::kHttp2Error,
|
1145
|
+
static_cast<intptr_t>(goaway_error)),
|
1146
|
+
grpc_core::StatusIntProperty::kRpcStatus, GRPC_STATUS_UNAVAILABLE);
|
1147
|
+
|
1148
|
+
GRPC_TRACE_LOG(http, INFO)
|
1149
|
+
<< "transport " << t << " got goaway with last stream id "
|
1150
|
+
<< last_stream_id;
|
1149
1151
|
// We want to log this irrespective of whether http tracing is enabled if we
|
1150
1152
|
// received a GOAWAY with a non NO_ERROR code.
|
1151
1153
|
if (goaway_error != GRPC_HTTP2_NO_ERROR) {
|
1152
|
-
|
1153
|
-
|
1154
|
-
|
1154
|
+
LOG(INFO) << t->peer_string.as_string_view() << ": Got goaway ["
|
1155
|
+
<< goaway_error
|
1156
|
+
<< "] err=" << grpc_core::StatusToString(t->goaway_error);
|
1155
1157
|
}
|
1156
1158
|
if (t->is_client) {
|
1157
1159
|
cancel_unstarted_streams(t, t->goaway_error, false);
|
@@ -1177,12 +1179,11 @@ void grpc_chttp2_add_incoming_goaway(grpc_chttp2_transport* t,
|
|
1177
1179
|
if (GPR_UNLIKELY(t->is_client &&
|
1178
1180
|
goaway_error == GRPC_HTTP2_ENHANCE_YOUR_CALM &&
|
1179
1181
|
goaway_text == "too_many_pings")) {
|
1180
|
-
|
1181
|
-
|
1182
|
-
|
1183
|
-
|
1184
|
-
|
1185
|
-
t->keepalive_time.ToString().c_str());
|
1182
|
+
LOG(ERROR) << t->peer_string.as_string_view()
|
1183
|
+
<< ": Received a GOAWAY with error code ENHANCE_YOUR_CALM and "
|
1184
|
+
"debug data equal to \"too_many_pings\". Current keepalive "
|
1185
|
+
"time (before throttling): "
|
1186
|
+
<< t->keepalive_time.ToString();
|
1186
1187
|
constexpr int max_keepalive_time_millis =
|
1187
1188
|
INT_MAX / KEEPALIVE_TIME_BACKOFF_MULTIPLIER;
|
1188
1189
|
int64_t throttled_keepalive_time =
|
@@ -1214,10 +1215,10 @@ static void maybe_start_some_streams(grpc_chttp2_transport* t) {
|
|
1214
1215
|
t->stream_map.size() < t->settings.peer().max_concurrent_streams() &&
|
1215
1216
|
grpc_chttp2_list_pop_waiting_for_concurrency(t, &s)) {
|
1216
1217
|
// safe since we can't (legally) be parsing this stream yet
|
1217
|
-
|
1218
|
-
|
1219
|
-
"
|
1220
|
-
|
1218
|
+
GRPC_TRACE_LOG(http, INFO)
|
1219
|
+
<< "HTTP:" << (t->is_client ? "CLI" : "SVR") << ": Transport " << t
|
1220
|
+
<< " allocating new grpc_chttp2_stream " << s << " to id "
|
1221
|
+
<< t->next_stream_id;
|
1221
1222
|
|
1222
1223
|
CHECK_EQ(s->id, 0u);
|
1223
1224
|
s->id = t->next_stream_id;
|
@@ -1279,19 +1280,14 @@ void grpc_chttp2_complete_closure_step(grpc_chttp2_transport* t,
|
|
1279
1280
|
return;
|
1280
1281
|
}
|
1281
1282
|
closure->next_data.scratch -= CLOSURE_BARRIER_FIRST_REF_BIT;
|
1282
|
-
|
1283
|
-
|
1284
|
-
|
1285
|
-
|
1286
|
-
|
1287
|
-
|
1288
|
-
|
1289
|
-
|
1290
|
-
static_cast<int>(closure->next_data.scratch %
|
1291
|
-
CLOSURE_BARRIER_FIRST_REF_BIT),
|
1292
|
-
desc, grpc_core::StatusToString(error).c_str(),
|
1293
|
-
write_state_name(t->write_state), whence.file(), whence.line());
|
1294
|
-
}
|
1283
|
+
GRPC_TRACE_LOG(http, INFO)
|
1284
|
+
<< "complete_closure_step: t=" << t << " " << closure << " refs="
|
1285
|
+
<< (closure->next_data.scratch / CLOSURE_BARRIER_FIRST_REF_BIT)
|
1286
|
+
<< " flags="
|
1287
|
+
<< (closure->next_data.scratch % CLOSURE_BARRIER_FIRST_REF_BIT)
|
1288
|
+
<< " desc=" << desc << " err=" << grpc_core::StatusToString(error)
|
1289
|
+
<< " write_state=" << get_write_state_name(t->write_state)
|
1290
|
+
<< " whence=" << whence.file() << ":" << whence.line();
|
1295
1291
|
|
1296
1292
|
if (!error.ok()) {
|
1297
1293
|
grpc_error_handle cl_err =
|
@@ -1299,12 +1295,10 @@ void grpc_chttp2_complete_closure_step(grpc_chttp2_transport* t,
|
|
1299
1295
|
if (cl_err.ok()) {
|
1300
1296
|
cl_err = GRPC_ERROR_CREATE(absl::StrCat(
|
1301
1297
|
"Error in HTTP transport completing operation: ", desc,
|
1302
|
-
" write_state=",
|
1303
|
-
closure->next_data.scratch / CLOSURE_BARRIER_FIRST_REF_BIT,
|
1304
|
-
closure->next_data.scratch % CLOSURE_BARRIER_FIRST_REF_BIT
|
1305
|
-
|
1306
|
-
grpc_core::StatusStrProperty::kTargetAddress,
|
1307
|
-
std::string(t->peer_string.as_string_view()));
|
1298
|
+
" write_state=", get_write_state_name(t->write_state),
|
1299
|
+
" refs=", closure->next_data.scratch / CLOSURE_BARRIER_FIRST_REF_BIT,
|
1300
|
+
" flags=", closure->next_data.scratch % CLOSURE_BARRIER_FIRST_REF_BIT,
|
1301
|
+
" peer_address=", t->peer_string.as_string_view()));
|
1308
1302
|
}
|
1309
1303
|
cl_err = grpc_error_add_child(cl_err, error);
|
1310
1304
|
closure->error_data.error = grpc_core::internal::StatusAllocHeapPtr(cl_err);
|
@@ -1330,15 +1324,254 @@ static bool contains_non_ok_status(grpc_metadata_batch* batch) {
|
|
1330
1324
|
}
|
1331
1325
|
|
1332
1326
|
static void log_metadata(const grpc_metadata_batch* md_batch, uint32_t id,
|
1333
|
-
bool is_client, bool is_initial) {
|
1334
|
-
|
1327
|
+
const bool is_client, const bool is_initial) {
|
1328
|
+
VLOG(2) << "--metadata--";
|
1335
1329
|
const std::string prefix = absl::StrCat(
|
1336
1330
|
"HTTP:", id, is_initial ? ":HDR" : ":TRL", is_client ? ":CLI:" : ":SVR:");
|
1337
1331
|
md_batch->Log([&prefix](absl::string_view key, absl::string_view value) {
|
1338
|
-
|
1332
|
+
VLOG(2) << prefix << key << ": " << value;
|
1339
1333
|
});
|
1340
1334
|
}
|
1341
1335
|
|
1336
|
+
static void trace_annotations(grpc_chttp2_stream* s) {
|
1337
|
+
if (!grpc_core::IsCallTracerInTransportEnabled()) {
|
1338
|
+
if (s->call_tracer != nullptr) {
|
1339
|
+
s->call_tracer->RecordAnnotation(
|
1340
|
+
grpc_core::HttpAnnotation(grpc_core::HttpAnnotation::Type::kStart,
|
1341
|
+
gpr_now(GPR_CLOCK_REALTIME))
|
1342
|
+
.Add(s->t->flow_control.stats())
|
1343
|
+
.Add(s->flow_control.stats()));
|
1344
|
+
}
|
1345
|
+
} else if (grpc_core::IsTraceRecordCallopsEnabled()) {
|
1346
|
+
auto* call_tracer = s->arena->GetContext<grpc_core::CallTracerInterface>();
|
1347
|
+
if (call_tracer != nullptr && call_tracer->IsSampled()) {
|
1348
|
+
call_tracer->RecordAnnotation(
|
1349
|
+
grpc_core::HttpAnnotation(grpc_core::HttpAnnotation::Type::kStart,
|
1350
|
+
gpr_now(GPR_CLOCK_REALTIME))
|
1351
|
+
.Add(s->t->flow_control.stats())
|
1352
|
+
.Add(s->flow_control.stats()));
|
1353
|
+
}
|
1354
|
+
}
|
1355
|
+
}
|
1356
|
+
|
1357
|
+
static void send_initial_metadata_locked(
|
1358
|
+
grpc_transport_stream_op_batch* op, grpc_chttp2_stream* s,
|
1359
|
+
grpc_transport_stream_op_batch_payload* op_payload,
|
1360
|
+
grpc_chttp2_transport* t, grpc_closure* on_complete) {
|
1361
|
+
trace_annotations(s);
|
1362
|
+
if (t->is_client && t->channelz_socket != nullptr) {
|
1363
|
+
t->channelz_socket->RecordStreamStartedFromLocal();
|
1364
|
+
}
|
1365
|
+
CHECK_EQ(s->send_initial_metadata_finished, nullptr);
|
1366
|
+
on_complete->next_data.scratch |= t->closure_barrier_may_cover_write;
|
1367
|
+
|
1368
|
+
s->send_initial_metadata_finished = add_closure_barrier(on_complete);
|
1369
|
+
s->send_initial_metadata =
|
1370
|
+
op_payload->send_initial_metadata.send_initial_metadata;
|
1371
|
+
if (t->is_client) {
|
1372
|
+
s->deadline =
|
1373
|
+
std::min(s->deadline,
|
1374
|
+
s->send_initial_metadata->get(grpc_core::GrpcTimeoutMetadata())
|
1375
|
+
.value_or(grpc_core::Timestamp::InfFuture()));
|
1376
|
+
}
|
1377
|
+
if (contains_non_ok_status(s->send_initial_metadata)) {
|
1378
|
+
s->seen_error = true;
|
1379
|
+
}
|
1380
|
+
if (!s->write_closed) {
|
1381
|
+
if (t->is_client) {
|
1382
|
+
if (t->closed_with_error.ok()) {
|
1383
|
+
CHECK_EQ(s->id, 0u);
|
1384
|
+
grpc_chttp2_list_add_waiting_for_concurrency(t, s);
|
1385
|
+
maybe_start_some_streams(t);
|
1386
|
+
} else {
|
1387
|
+
s->trailing_metadata_buffer.Set(
|
1388
|
+
grpc_core::GrpcStreamNetworkState(),
|
1389
|
+
grpc_core::GrpcStreamNetworkState::kNotSentOnWire);
|
1390
|
+
grpc_chttp2_cancel_stream(
|
1391
|
+
t, s,
|
1392
|
+
grpc_error_set_int(
|
1393
|
+
GRPC_ERROR_CREATE_REFERENCING("Transport closed",
|
1394
|
+
&t->closed_with_error, 1),
|
1395
|
+
grpc_core::StatusIntProperty::kRpcStatus,
|
1396
|
+
GRPC_STATUS_UNAVAILABLE),
|
1397
|
+
false);
|
1398
|
+
}
|
1399
|
+
} else {
|
1400
|
+
CHECK_NE(s->id, 0u);
|
1401
|
+
grpc_chttp2_mark_stream_writable(t, s);
|
1402
|
+
if (!(op->send_message &&
|
1403
|
+
(op->payload->send_message.flags & GRPC_WRITE_BUFFER_HINT))) {
|
1404
|
+
grpc_chttp2_initiate_write(
|
1405
|
+
t, GRPC_CHTTP2_INITIATE_WRITE_SEND_INITIAL_METADATA);
|
1406
|
+
}
|
1407
|
+
}
|
1408
|
+
} else {
|
1409
|
+
s->send_initial_metadata = nullptr;
|
1410
|
+
grpc_chttp2_complete_closure_step(
|
1411
|
+
t, &s->send_initial_metadata_finished,
|
1412
|
+
GRPC_ERROR_CREATE_REFERENCING(
|
1413
|
+
"Attempt to send initial metadata after stream was closed",
|
1414
|
+
&s->write_closed_error, 1),
|
1415
|
+
"send_initial_metadata_finished");
|
1416
|
+
}
|
1417
|
+
}
|
1418
|
+
|
1419
|
+
static void send_message_locked(
|
1420
|
+
grpc_transport_stream_op_batch* op, grpc_chttp2_stream* s,
|
1421
|
+
grpc_transport_stream_op_batch_payload* op_payload,
|
1422
|
+
grpc_chttp2_transport* t, grpc_closure* on_complete) {
|
1423
|
+
t->num_messages_in_next_write++;
|
1424
|
+
grpc_core::global_stats().IncrementHttp2SendMessageSize(
|
1425
|
+
op->payload->send_message.send_message->Length());
|
1426
|
+
on_complete->next_data.scratch |= t->closure_barrier_may_cover_write;
|
1427
|
+
s->send_message_finished = add_closure_barrier(op->on_complete);
|
1428
|
+
const uint32_t flags = op_payload->send_message.flags;
|
1429
|
+
if (s->write_closed) {
|
1430
|
+
op->payload->send_message.stream_write_closed = true;
|
1431
|
+
// We should NOT return an error here, so as to avoid a cancel OP being
|
1432
|
+
// started. The surface layer will notice that the stream has been closed
|
1433
|
+
// for writes and fail the send message op.
|
1434
|
+
grpc_chttp2_complete_closure_step(t, &s->send_message_finished,
|
1435
|
+
absl::OkStatus(),
|
1436
|
+
"fetching_send_message_finished");
|
1437
|
+
} else {
|
1438
|
+
uint8_t* frame_hdr = grpc_slice_buffer_tiny_add(&s->flow_controlled_buffer,
|
1439
|
+
GRPC_HEADER_SIZE_IN_BYTES);
|
1440
|
+
frame_hdr[0] = (flags & GRPC_WRITE_INTERNAL_COMPRESS) != 0;
|
1441
|
+
size_t len = op_payload->send_message.send_message->Length();
|
1442
|
+
frame_hdr[1] = static_cast<uint8_t>(len >> 24);
|
1443
|
+
frame_hdr[2] = static_cast<uint8_t>(len >> 16);
|
1444
|
+
frame_hdr[3] = static_cast<uint8_t>(len >> 8);
|
1445
|
+
frame_hdr[4] = static_cast<uint8_t>(len);
|
1446
|
+
|
1447
|
+
s->call_tracer_wrapper.RecordOutgoingBytes(
|
1448
|
+
{GRPC_HEADER_SIZE_IN_BYTES, len, 0});
|
1449
|
+
s->next_message_end_offset =
|
1450
|
+
s->flow_controlled_bytes_written +
|
1451
|
+
static_cast<int64_t>(s->flow_controlled_buffer.length) +
|
1452
|
+
static_cast<int64_t>(len);
|
1453
|
+
if (flags & GRPC_WRITE_BUFFER_HINT) {
|
1454
|
+
s->next_message_end_offset -= t->write_buffer_size;
|
1455
|
+
s->write_buffering = true;
|
1456
|
+
} else {
|
1457
|
+
s->write_buffering = false;
|
1458
|
+
}
|
1459
|
+
|
1460
|
+
grpc_slice* const slices =
|
1461
|
+
op_payload->send_message.send_message->c_slice_buffer()->slices;
|
1462
|
+
grpc_slice* const end =
|
1463
|
+
slices + op_payload->send_message.send_message->Count();
|
1464
|
+
for (grpc_slice* slice = slices; slice != end; slice++) {
|
1465
|
+
grpc_slice_buffer_add(&s->flow_controlled_buffer,
|
1466
|
+
grpc_core::CSliceRef(*slice));
|
1467
|
+
}
|
1468
|
+
|
1469
|
+
int64_t notify_offset = s->next_message_end_offset;
|
1470
|
+
if (notify_offset <= s->flow_controlled_bytes_written) {
|
1471
|
+
grpc_chttp2_complete_closure_step(t, &s->send_message_finished,
|
1472
|
+
absl::OkStatus(),
|
1473
|
+
"fetching_send_message_finished");
|
1474
|
+
} else {
|
1475
|
+
grpc_chttp2_write_cb* cb = t->write_cb_pool;
|
1476
|
+
if (cb == nullptr) {
|
1477
|
+
cb = static_cast<grpc_chttp2_write_cb*>(gpr_malloc(sizeof(*cb)));
|
1478
|
+
} else {
|
1479
|
+
t->write_cb_pool = cb->next;
|
1480
|
+
}
|
1481
|
+
cb->call_at_byte = notify_offset;
|
1482
|
+
cb->closure = s->send_message_finished;
|
1483
|
+
s->send_message_finished = nullptr;
|
1484
|
+
grpc_chttp2_write_cb** list = flags & GRPC_WRITE_THROUGH
|
1485
|
+
? &s->on_write_finished_cbs
|
1486
|
+
: &s->on_flow_controlled_cbs;
|
1487
|
+
cb->next = *list;
|
1488
|
+
*list = cb;
|
1489
|
+
}
|
1490
|
+
|
1491
|
+
if (s->id != 0 && (!s->write_buffering || s->flow_controlled_buffer.length >
|
1492
|
+
t->write_buffer_size)) {
|
1493
|
+
grpc_chttp2_mark_stream_writable(t, s);
|
1494
|
+
grpc_chttp2_initiate_write(t, GRPC_CHTTP2_INITIATE_WRITE_SEND_MESSAGE);
|
1495
|
+
}
|
1496
|
+
}
|
1497
|
+
}
|
1498
|
+
|
1499
|
+
static void send_trailing_metadata_locked(
|
1500
|
+
grpc_transport_stream_op_batch* op, grpc_chttp2_stream* s,
|
1501
|
+
grpc_transport_stream_op_batch_payload* op_payload,
|
1502
|
+
grpc_chttp2_transport* t, grpc_closure* on_complete) {
|
1503
|
+
CHECK_EQ(s->send_trailing_metadata_finished, nullptr);
|
1504
|
+
on_complete->next_data.scratch |= t->closure_barrier_may_cover_write;
|
1505
|
+
s->send_trailing_metadata_finished = add_closure_barrier(on_complete);
|
1506
|
+
s->send_trailing_metadata =
|
1507
|
+
op_payload->send_trailing_metadata.send_trailing_metadata;
|
1508
|
+
s->sent_trailing_metadata_op = op_payload->send_trailing_metadata.sent;
|
1509
|
+
s->write_buffering = false;
|
1510
|
+
if (contains_non_ok_status(s->send_trailing_metadata)) {
|
1511
|
+
s->seen_error = true;
|
1512
|
+
}
|
1513
|
+
if (s->write_closed) {
|
1514
|
+
s->send_trailing_metadata = nullptr;
|
1515
|
+
s->sent_trailing_metadata_op = nullptr;
|
1516
|
+
grpc_chttp2_complete_closure_step(
|
1517
|
+
t, &s->send_trailing_metadata_finished,
|
1518
|
+
op->payload->send_trailing_metadata.send_trailing_metadata->empty()
|
1519
|
+
? absl::OkStatus()
|
1520
|
+
: GRPC_ERROR_CREATE("Attempt to send trailing metadata after "
|
1521
|
+
"stream was closed"),
|
1522
|
+
"send_trailing_metadata_finished");
|
1523
|
+
} else if (s->id != 0) {
|
1524
|
+
// TODO(ctiller): check if there's flow control for any outstanding
|
1525
|
+
// bytes before going writable
|
1526
|
+
grpc_chttp2_mark_stream_writable(t, s);
|
1527
|
+
grpc_chttp2_initiate_write(
|
1528
|
+
t, GRPC_CHTTP2_INITIATE_WRITE_SEND_TRAILING_METADATA);
|
1529
|
+
}
|
1530
|
+
}
|
1531
|
+
|
1532
|
+
static void recv_initial_metadata_locked(
|
1533
|
+
grpc_chttp2_stream* s, grpc_transport_stream_op_batch_payload* op_payload,
|
1534
|
+
grpc_chttp2_transport* t) {
|
1535
|
+
CHECK_EQ(s->recv_initial_metadata_ready, nullptr);
|
1536
|
+
s->recv_initial_metadata_ready =
|
1537
|
+
op_payload->recv_initial_metadata.recv_initial_metadata_ready;
|
1538
|
+
s->recv_initial_metadata =
|
1539
|
+
op_payload->recv_initial_metadata.recv_initial_metadata;
|
1540
|
+
s->trailing_metadata_available =
|
1541
|
+
op_payload->recv_initial_metadata.trailing_metadata_available;
|
1542
|
+
if (s->parsed_trailers_only && s->trailing_metadata_available != nullptr) {
|
1543
|
+
*s->trailing_metadata_available = true;
|
1544
|
+
}
|
1545
|
+
grpc_chttp2_maybe_complete_recv_initial_metadata(t, s);
|
1546
|
+
}
|
1547
|
+
|
1548
|
+
static void recv_message_locked(
|
1549
|
+
grpc_chttp2_stream* s, grpc_transport_stream_op_batch_payload* op_payload,
|
1550
|
+
grpc_chttp2_transport* t) {
|
1551
|
+
CHECK_EQ(s->recv_message_ready, nullptr);
|
1552
|
+
s->recv_message_ready = op_payload->recv_message.recv_message_ready;
|
1553
|
+
s->recv_message = op_payload->recv_message.recv_message;
|
1554
|
+
s->recv_message->emplace();
|
1555
|
+
s->recv_message_flags = op_payload->recv_message.flags;
|
1556
|
+
s->call_failed_before_recv_message =
|
1557
|
+
op_payload->recv_message.call_failed_before_recv_message;
|
1558
|
+
grpc_chttp2_maybe_complete_recv_trailing_metadata(t, s);
|
1559
|
+
}
|
1560
|
+
|
1561
|
+
static void recv_trailing_metadata_locked(
|
1562
|
+
grpc_chttp2_stream* s, grpc_transport_stream_op_batch_payload* op_payload,
|
1563
|
+
grpc_chttp2_transport* t) {
|
1564
|
+
CHECK_EQ(s->collecting_stats, nullptr);
|
1565
|
+
s->collecting_stats = op_payload->recv_trailing_metadata.collect_stats;
|
1566
|
+
CHECK_EQ(s->recv_trailing_metadata_finished, nullptr);
|
1567
|
+
s->recv_trailing_metadata_finished =
|
1568
|
+
op_payload->recv_trailing_metadata.recv_trailing_metadata_ready;
|
1569
|
+
s->recv_trailing_metadata =
|
1570
|
+
op_payload->recv_trailing_metadata.recv_trailing_metadata;
|
1571
|
+
s->final_metadata_requested = true;
|
1572
|
+
grpc_chttp2_maybe_complete_recv_trailing_metadata(t, s);
|
1573
|
+
}
|
1574
|
+
|
1342
1575
|
static void perform_stream_op_locked(void* stream_op,
|
1343
1576
|
grpc_error_handle /*error_ignored*/) {
|
1344
1577
|
grpc_transport_stream_op_batch* op =
|
@@ -1348,15 +1581,15 @@ static void perform_stream_op_locked(void* stream_op,
|
|
1348
1581
|
grpc_transport_stream_op_batch_payload* op_payload = op->payload;
|
1349
1582
|
grpc_chttp2_transport* t = s->t.get();
|
1350
1583
|
|
1351
|
-
s->context = op->payload->context;
|
1352
1584
|
s->traced = op->is_traced;
|
1353
|
-
|
1585
|
+
if (!grpc_core::IsCallTracerInTransportEnabled()) {
|
1586
|
+
s->call_tracer = CallTracerIfSampled(s);
|
1587
|
+
}
|
1354
1588
|
s->tcp_tracer = TcpTracerIfSampled(s);
|
1355
|
-
if (GRPC_TRACE_FLAG_ENABLED(
|
1356
|
-
|
1357
|
-
|
1358
|
-
|
1359
|
-
op->on_complete);
|
1589
|
+
if (GRPC_TRACE_FLAG_ENABLED(http)) {
|
1590
|
+
LOG(INFO) << "perform_stream_op_locked[s=" << s << "; op=" << op
|
1591
|
+
<< "]: " << grpc_transport_stream_op_batch_string(op, false)
|
1592
|
+
<< "; on_complete = " << op->on_complete;
|
1360
1593
|
if (op->send_initial_metadata) {
|
1361
1594
|
log_metadata(op_payload->send_initial_metadata.send_initial_metadata,
|
1362
1595
|
s->id, t->is_client, true);
|
@@ -1382,216 +1615,27 @@ static void perform_stream_op_locked(void* stream_op,
|
|
1382
1615
|
}
|
1383
1616
|
|
1384
1617
|
if (op->send_initial_metadata) {
|
1385
|
-
|
1386
|
-
s->call_tracer->RecordAnnotation(
|
1387
|
-
grpc_core::HttpAnnotation(grpc_core::HttpAnnotation::Type::kStart,
|
1388
|
-
gpr_now(GPR_CLOCK_REALTIME))
|
1389
|
-
.Add(s->t->flow_control.stats())
|
1390
|
-
.Add(s->flow_control.stats()));
|
1391
|
-
}
|
1392
|
-
if (t->is_client && t->channelz_socket != nullptr) {
|
1393
|
-
t->channelz_socket->RecordStreamStartedFromLocal();
|
1394
|
-
}
|
1395
|
-
CHECK_EQ(s->send_initial_metadata_finished, nullptr);
|
1396
|
-
on_complete->next_data.scratch |= t->closure_barrier_may_cover_write;
|
1397
|
-
|
1398
|
-
s->send_initial_metadata_finished = add_closure_barrier(on_complete);
|
1399
|
-
s->send_initial_metadata =
|
1400
|
-
op_payload->send_initial_metadata.send_initial_metadata;
|
1401
|
-
if (t->is_client) {
|
1402
|
-
s->deadline = std::min(
|
1403
|
-
s->deadline,
|
1404
|
-
s->send_initial_metadata->get(grpc_core::GrpcTimeoutMetadata())
|
1405
|
-
.value_or(grpc_core::Timestamp::InfFuture()));
|
1406
|
-
}
|
1407
|
-
if (contains_non_ok_status(s->send_initial_metadata)) {
|
1408
|
-
s->seen_error = true;
|
1409
|
-
}
|
1410
|
-
if (!s->write_closed) {
|
1411
|
-
if (t->is_client) {
|
1412
|
-
if (t->closed_with_error.ok()) {
|
1413
|
-
CHECK_EQ(s->id, 0u);
|
1414
|
-
grpc_chttp2_list_add_waiting_for_concurrency(t, s);
|
1415
|
-
maybe_start_some_streams(t);
|
1416
|
-
} else {
|
1417
|
-
s->trailing_metadata_buffer.Set(
|
1418
|
-
grpc_core::GrpcStreamNetworkState(),
|
1419
|
-
grpc_core::GrpcStreamNetworkState::kNotSentOnWire);
|
1420
|
-
grpc_chttp2_cancel_stream(
|
1421
|
-
t, s,
|
1422
|
-
grpc_error_set_int(
|
1423
|
-
GRPC_ERROR_CREATE_REFERENCING("Transport closed",
|
1424
|
-
&t->closed_with_error, 1),
|
1425
|
-
grpc_core::StatusIntProperty::kRpcStatus,
|
1426
|
-
GRPC_STATUS_UNAVAILABLE),
|
1427
|
-
false);
|
1428
|
-
}
|
1429
|
-
} else {
|
1430
|
-
CHECK_NE(s->id, 0u);
|
1431
|
-
grpc_chttp2_mark_stream_writable(t, s);
|
1432
|
-
if (!(op->send_message &&
|
1433
|
-
(op->payload->send_message.flags & GRPC_WRITE_BUFFER_HINT))) {
|
1434
|
-
grpc_chttp2_initiate_write(
|
1435
|
-
t, GRPC_CHTTP2_INITIATE_WRITE_SEND_INITIAL_METADATA);
|
1436
|
-
}
|
1437
|
-
}
|
1438
|
-
} else {
|
1439
|
-
s->send_initial_metadata = nullptr;
|
1440
|
-
grpc_chttp2_complete_closure_step(
|
1441
|
-
t, &s->send_initial_metadata_finished,
|
1442
|
-
GRPC_ERROR_CREATE_REFERENCING(
|
1443
|
-
"Attempt to send initial metadata after stream was closed",
|
1444
|
-
&s->write_closed_error, 1),
|
1445
|
-
"send_initial_metadata_finished");
|
1446
|
-
}
|
1618
|
+
send_initial_metadata_locked(op, s, op_payload, t, on_complete);
|
1447
1619
|
}
|
1448
1620
|
|
1449
1621
|
if (op->send_message) {
|
1450
|
-
t
|
1451
|
-
grpc_core::global_stats().IncrementHttp2SendMessageSize(
|
1452
|
-
op->payload->send_message.send_message->Length());
|
1453
|
-
on_complete->next_data.scratch |= t->closure_barrier_may_cover_write;
|
1454
|
-
s->send_message_finished = add_closure_barrier(op->on_complete);
|
1455
|
-
const uint32_t flags = op_payload->send_message.flags;
|
1456
|
-
if (s->write_closed) {
|
1457
|
-
op->payload->send_message.stream_write_closed = true;
|
1458
|
-
// We should NOT return an error here, so as to avoid a cancel OP being
|
1459
|
-
// started. The surface layer will notice that the stream has been closed
|
1460
|
-
// for writes and fail the send message op.
|
1461
|
-
grpc_chttp2_complete_closure_step(t, &s->send_message_finished,
|
1462
|
-
absl::OkStatus(),
|
1463
|
-
"fetching_send_message_finished");
|
1464
|
-
} else {
|
1465
|
-
uint8_t* frame_hdr = grpc_slice_buffer_tiny_add(
|
1466
|
-
&s->flow_controlled_buffer, GRPC_HEADER_SIZE_IN_BYTES);
|
1467
|
-
frame_hdr[0] = (flags & GRPC_WRITE_INTERNAL_COMPRESS) != 0;
|
1468
|
-
size_t len = op_payload->send_message.send_message->Length();
|
1469
|
-
frame_hdr[1] = static_cast<uint8_t>(len >> 24);
|
1470
|
-
frame_hdr[2] = static_cast<uint8_t>(len >> 16);
|
1471
|
-
frame_hdr[3] = static_cast<uint8_t>(len >> 8);
|
1472
|
-
frame_hdr[4] = static_cast<uint8_t>(len);
|
1473
|
-
|
1474
|
-
if (grpc_core::IsHttp2StatsFixEnabled()) {
|
1475
|
-
s->stats.outgoing.framing_bytes += GRPC_HEADER_SIZE_IN_BYTES;
|
1476
|
-
s->stats.outgoing.data_bytes +=
|
1477
|
-
op_payload->send_message.send_message->Length();
|
1478
|
-
}
|
1479
|
-
s->next_message_end_offset =
|
1480
|
-
s->flow_controlled_bytes_written +
|
1481
|
-
static_cast<int64_t>(s->flow_controlled_buffer.length) +
|
1482
|
-
static_cast<int64_t>(len);
|
1483
|
-
if (flags & GRPC_WRITE_BUFFER_HINT) {
|
1484
|
-
s->next_message_end_offset -= t->write_buffer_size;
|
1485
|
-
s->write_buffering = true;
|
1486
|
-
} else {
|
1487
|
-
s->write_buffering = false;
|
1488
|
-
}
|
1489
|
-
|
1490
|
-
grpc_slice* const slices =
|
1491
|
-
op_payload->send_message.send_message->c_slice_buffer()->slices;
|
1492
|
-
grpc_slice* const end =
|
1493
|
-
slices + op_payload->send_message.send_message->Count();
|
1494
|
-
for (grpc_slice* slice = slices; slice != end; slice++) {
|
1495
|
-
grpc_slice_buffer_add(&s->flow_controlled_buffer,
|
1496
|
-
grpc_core::CSliceRef(*slice));
|
1497
|
-
}
|
1498
|
-
|
1499
|
-
int64_t notify_offset = s->next_message_end_offset;
|
1500
|
-
if (notify_offset <= s->flow_controlled_bytes_written) {
|
1501
|
-
grpc_chttp2_complete_closure_step(t, &s->send_message_finished,
|
1502
|
-
absl::OkStatus(),
|
1503
|
-
"fetching_send_message_finished");
|
1504
|
-
} else {
|
1505
|
-
grpc_chttp2_write_cb* cb = t->write_cb_pool;
|
1506
|
-
if (cb == nullptr) {
|
1507
|
-
cb = static_cast<grpc_chttp2_write_cb*>(gpr_malloc(sizeof(*cb)));
|
1508
|
-
} else {
|
1509
|
-
t->write_cb_pool = cb->next;
|
1510
|
-
}
|
1511
|
-
cb->call_at_byte = notify_offset;
|
1512
|
-
cb->closure = s->send_message_finished;
|
1513
|
-
s->send_message_finished = nullptr;
|
1514
|
-
grpc_chttp2_write_cb** list = flags & GRPC_WRITE_THROUGH
|
1515
|
-
? &s->on_write_finished_cbs
|
1516
|
-
: &s->on_flow_controlled_cbs;
|
1517
|
-
cb->next = *list;
|
1518
|
-
*list = cb;
|
1519
|
-
}
|
1520
|
-
|
1521
|
-
if (s->id != 0 &&
|
1522
|
-
(!s->write_buffering ||
|
1523
|
-
s->flow_controlled_buffer.length > t->write_buffer_size)) {
|
1524
|
-
grpc_chttp2_mark_stream_writable(t, s);
|
1525
|
-
grpc_chttp2_initiate_write(t, GRPC_CHTTP2_INITIATE_WRITE_SEND_MESSAGE);
|
1526
|
-
}
|
1527
|
-
}
|
1622
|
+
send_message_locked(op, s, op_payload, t, on_complete);
|
1528
1623
|
}
|
1529
1624
|
|
1530
1625
|
if (op->send_trailing_metadata) {
|
1531
|
-
|
1532
|
-
on_complete->next_data.scratch |= t->closure_barrier_may_cover_write;
|
1533
|
-
s->send_trailing_metadata_finished = add_closure_barrier(on_complete);
|
1534
|
-
s->send_trailing_metadata =
|
1535
|
-
op_payload->send_trailing_metadata.send_trailing_metadata;
|
1536
|
-
s->sent_trailing_metadata_op = op_payload->send_trailing_metadata.sent;
|
1537
|
-
s->write_buffering = false;
|
1538
|
-
if (contains_non_ok_status(s->send_trailing_metadata)) {
|
1539
|
-
s->seen_error = true;
|
1540
|
-
}
|
1541
|
-
if (s->write_closed) {
|
1542
|
-
s->send_trailing_metadata = nullptr;
|
1543
|
-
s->sent_trailing_metadata_op = nullptr;
|
1544
|
-
grpc_chttp2_complete_closure_step(
|
1545
|
-
t, &s->send_trailing_metadata_finished,
|
1546
|
-
op->payload->send_trailing_metadata.send_trailing_metadata->empty()
|
1547
|
-
? absl::OkStatus()
|
1548
|
-
: GRPC_ERROR_CREATE("Attempt to send trailing metadata after "
|
1549
|
-
"stream was closed"),
|
1550
|
-
"send_trailing_metadata_finished");
|
1551
|
-
} else if (s->id != 0) {
|
1552
|
-
// TODO(ctiller): check if there's flow control for any outstanding
|
1553
|
-
// bytes before going writable
|
1554
|
-
grpc_chttp2_mark_stream_writable(t, s);
|
1555
|
-
grpc_chttp2_initiate_write(
|
1556
|
-
t, GRPC_CHTTP2_INITIATE_WRITE_SEND_TRAILING_METADATA);
|
1557
|
-
}
|
1626
|
+
send_trailing_metadata_locked(op, s, op_payload, t, on_complete);
|
1558
1627
|
}
|
1559
1628
|
|
1560
1629
|
if (op->recv_initial_metadata) {
|
1561
|
-
|
1562
|
-
s->recv_initial_metadata_ready =
|
1563
|
-
op_payload->recv_initial_metadata.recv_initial_metadata_ready;
|
1564
|
-
s->recv_initial_metadata =
|
1565
|
-
op_payload->recv_initial_metadata.recv_initial_metadata;
|
1566
|
-
s->trailing_metadata_available =
|
1567
|
-
op_payload->recv_initial_metadata.trailing_metadata_available;
|
1568
|
-
if (s->parsed_trailers_only && s->trailing_metadata_available != nullptr) {
|
1569
|
-
*s->trailing_metadata_available = true;
|
1570
|
-
}
|
1571
|
-
grpc_chttp2_maybe_complete_recv_initial_metadata(t, s);
|
1630
|
+
recv_initial_metadata_locked(s, op_payload, t);
|
1572
1631
|
}
|
1573
1632
|
|
1574
1633
|
if (op->recv_message) {
|
1575
|
-
|
1576
|
-
s->recv_message_ready = op_payload->recv_message.recv_message_ready;
|
1577
|
-
s->recv_message = op_payload->recv_message.recv_message;
|
1578
|
-
s->recv_message->emplace();
|
1579
|
-
s->recv_message_flags = op_payload->recv_message.flags;
|
1580
|
-
s->call_failed_before_recv_message =
|
1581
|
-
op_payload->recv_message.call_failed_before_recv_message;
|
1582
|
-
grpc_chttp2_maybe_complete_recv_trailing_metadata(t, s);
|
1634
|
+
recv_message_locked(s, op_payload, t);
|
1583
1635
|
}
|
1584
1636
|
|
1585
1637
|
if (op->recv_trailing_metadata) {
|
1586
|
-
|
1587
|
-
s->collecting_stats = op_payload->recv_trailing_metadata.collect_stats;
|
1588
|
-
CHECK_EQ(s->recv_trailing_metadata_finished, nullptr);
|
1589
|
-
s->recv_trailing_metadata_finished =
|
1590
|
-
op_payload->recv_trailing_metadata.recv_trailing_metadata_ready;
|
1591
|
-
s->recv_trailing_metadata =
|
1592
|
-
op_payload->recv_trailing_metadata.recv_trailing_metadata;
|
1593
|
-
s->final_metadata_requested = true;
|
1594
|
-
grpc_chttp2_maybe_complete_recv_trailing_metadata(t, s);
|
1638
|
+
recv_trailing_metadata_locked(s, op_payload, t);
|
1595
1639
|
}
|
1596
1640
|
|
1597
1641
|
if (on_complete != nullptr) {
|
@@ -1619,10 +1663,9 @@ void grpc_chttp2_transport::PerformStreamOp(
|
|
1619
1663
|
}
|
1620
1664
|
}
|
1621
1665
|
|
1622
|
-
|
1623
|
-
|
1624
|
-
|
1625
|
-
}
|
1666
|
+
GRPC_TRACE_LOG(http, INFO)
|
1667
|
+
<< "perform_stream_op[s=" << s << "; op=" << op
|
1668
|
+
<< "]: " << grpc_transport_stream_op_batch_string(op, false);
|
1626
1669
|
|
1627
1670
|
GRPC_CHTTP2_STREAM_REF(s, "perform_stream_op");
|
1628
1671
|
op->handler_private.extra_arg = gs;
|
@@ -1632,8 +1675,8 @@ void grpc_chttp2_transport::PerformStreamOp(
|
|
1632
1675
|
}
|
1633
1676
|
|
1634
1677
|
static void cancel_pings(grpc_chttp2_transport* t, grpc_error_handle error) {
|
1635
|
-
|
1636
|
-
|
1678
|
+
GRPC_TRACE_LOG(http, INFO)
|
1679
|
+
<< t << " CANCEL PINGS: " << grpc_core::StatusToString(error);
|
1637
1680
|
// callback remaining pings: they're not allowed to call into the transport,
|
1638
1681
|
// and maybe they hold resources that need to be freed
|
1639
1682
|
t->ping_callbacks.CancelAll(t->event_engine.get());
|
@@ -1716,8 +1759,8 @@ static void retry_initiate_ping_locked(
|
|
1716
1759
|
|
1717
1760
|
void grpc_chttp2_ack_ping(grpc_chttp2_transport* t, uint64_t id) {
|
1718
1761
|
if (!t->ping_callbacks.AckPing(id, t->event_engine.get())) {
|
1719
|
-
|
1720
|
-
|
1762
|
+
VLOG(2) << "Unknown ping response from " << t->peer_string.as_string_view()
|
1763
|
+
<< ": " << id;
|
1721
1764
|
return;
|
1722
1765
|
}
|
1723
1766
|
if (t->ping_callbacks.ping_requested()) {
|
@@ -1729,8 +1772,8 @@ void grpc_chttp2_keepalive_timeout(
|
|
1729
1772
|
grpc_core::RefCountedPtr<grpc_chttp2_transport> t) {
|
1730
1773
|
t->combiner->Run(
|
1731
1774
|
grpc_core::NewClosure([t](grpc_error_handle) {
|
1732
|
-
|
1733
|
-
|
1775
|
+
GRPC_TRACE_LOG(http, INFO) << t->peer_string.as_string_view()
|
1776
|
+
<< ": Keepalive timeout. Closing transport.";
|
1734
1777
|
send_goaway(
|
1735
1778
|
t.get(),
|
1736
1779
|
grpc_error_set_int(GRPC_ERROR_CREATE("keepalive_timeout"),
|
@@ -1750,8 +1793,8 @@ void grpc_chttp2_ping_timeout(
|
|
1750
1793
|
grpc_core::RefCountedPtr<grpc_chttp2_transport> t) {
|
1751
1794
|
t->combiner->Run(
|
1752
1795
|
grpc_core::NewClosure([t](grpc_error_handle) {
|
1753
|
-
|
1754
|
-
|
1796
|
+
GRPC_TRACE_LOG(http, INFO) << t->peer_string.as_string_view()
|
1797
|
+
<< ": Ping timeout. Closing transport.";
|
1755
1798
|
send_goaway(
|
1756
1799
|
t.get(),
|
1757
1800
|
grpc_error_set_int(GRPC_ERROR_CREATE("ping_timeout"),
|
@@ -1771,8 +1814,8 @@ void grpc_chttp2_settings_timeout(
|
|
1771
1814
|
grpc_core::RefCountedPtr<grpc_chttp2_transport> t) {
|
1772
1815
|
t->combiner->Run(
|
1773
1816
|
grpc_core::NewClosure([t](grpc_error_handle) {
|
1774
|
-
|
1775
|
-
|
1817
|
+
GRPC_TRACE_LOG(http, INFO) << t->peer_string.as_string_view()
|
1818
|
+
<< ": Settings timeout. Closing transport.";
|
1776
1819
|
send_goaway(
|
1777
1820
|
t.get(),
|
1778
1821
|
grpc_error_set_int(GRPC_ERROR_CREATE("settings_timeout"),
|
@@ -1822,22 +1865,21 @@ class GracefulGoaway : public grpc_core::RefCounted<GracefulGoaway> {
|
|
1822
1865
|
return;
|
1823
1866
|
}
|
1824
1867
|
if (t_->destroying || !t_->closed_with_error.ok()) {
|
1825
|
-
|
1826
|
-
|
1827
|
-
|
1828
|
-
|
1829
|
-
|
1830
|
-
std::string(t_->peer_string.as_string_view()).c_str()));
|
1868
|
+
GRPC_TRACE_LOG(http, INFO) << "transport:" << t_.get() << " "
|
1869
|
+
<< (t_->is_client ? "CLIENT" : "SERVER")
|
1870
|
+
<< " peer:" << t_->peer_string.as_string_view()
|
1871
|
+
<< " Transport already shutting down. "
|
1872
|
+
"Graceful GOAWAY abandoned.";
|
1831
1873
|
return;
|
1832
1874
|
}
|
1833
1875
|
// Ping completed. Send final goaway.
|
1834
|
-
|
1835
|
-
|
1836
|
-
|
1837
|
-
|
1838
|
-
|
1839
|
-
|
1840
|
-
|
1876
|
+
GRPC_TRACE_LOG(http, INFO)
|
1877
|
+
<< "transport:" << t_.get() << " "
|
1878
|
+
<< (t_->is_client ? "CLIENT" : "SERVER")
|
1879
|
+
<< " peer:" << std::string(t_->peer_string.as_string_view())
|
1880
|
+
<< " Graceful shutdown: Ping received. "
|
1881
|
+
"Sending final GOAWAY with stream_id:"
|
1882
|
+
<< t_->last_new_stream_id;
|
1841
1883
|
t_->sent_goaway_state = GRPC_CHTTP2_FINAL_GOAWAY_SEND_SCHEDULED;
|
1842
1884
|
grpc_chttp2_goaway_append(t_->last_new_stream_id, 0, grpc_empty_slice(),
|
1843
1885
|
&t_->qbuf);
|
@@ -1865,7 +1907,7 @@ class GracefulGoaway : public grpc_core::RefCounted<GracefulGoaway> {
|
|
1865
1907
|
} // namespace
|
1866
1908
|
|
1867
1909
|
static void send_goaway(grpc_chttp2_transport* t, grpc_error_handle error,
|
1868
|
-
bool immediate_disconnect_hint) {
|
1910
|
+
const bool immediate_disconnect_hint) {
|
1869
1911
|
grpc_http2_error_code http_error;
|
1870
1912
|
std::string message;
|
1871
1913
|
grpc_error_get_status(error, grpc_core::Timestamp::InfFuture(), nullptr,
|
@@ -1881,10 +1923,10 @@ static void send_goaway(grpc_chttp2_transport* t, grpc_error_handle error,
|
|
1881
1923
|
} else if (t->sent_goaway_state == GRPC_CHTTP2_NO_GOAWAY_SEND ||
|
1882
1924
|
t->sent_goaway_state == GRPC_CHTTP2_GRACEFUL_GOAWAY) {
|
1883
1925
|
// We want to log this irrespective of whether http tracing is enabled
|
1884
|
-
|
1885
|
-
|
1886
|
-
|
1887
|
-
grpc_core::StatusToString(error)
|
1926
|
+
VLOG(2) << t->peer_string.as_string_view() << " "
|
1927
|
+
<< (t->is_client ? "CLIENT" : "SERVER")
|
1928
|
+
<< ": Sending goaway last_new_stream_id=" << t->last_new_stream_id
|
1929
|
+
<< " err=" << grpc_core::StatusToString(error);
|
1888
1930
|
t->sent_goaway_state = GRPC_CHTTP2_FINAL_GOAWAY_SEND_SCHEDULED;
|
1889
1931
|
grpc_chttp2_goaway_append(
|
1890
1932
|
t->last_new_stream_id, static_cast<uint32_t>(http_error),
|
@@ -1932,11 +1974,15 @@ static void perform_transport_op_locked(void* stream_op,
|
|
1932
1974
|
}
|
1933
1975
|
|
1934
1976
|
if (op->bind_pollset) {
|
1935
|
-
|
1977
|
+
if (t->ep != nullptr) {
|
1978
|
+
grpc_endpoint_add_to_pollset(t->ep.get(), op->bind_pollset);
|
1979
|
+
}
|
1936
1980
|
}
|
1937
1981
|
|
1938
1982
|
if (op->bind_pollset_set) {
|
1939
|
-
|
1983
|
+
if (t->ep != nullptr) {
|
1984
|
+
grpc_endpoint_add_to_pollset_set(t->ep.get(), op->bind_pollset_set);
|
1985
|
+
}
|
1940
1986
|
}
|
1941
1987
|
|
1942
1988
|
if (op->send_ping.on_initiate != nullptr || op->send_ping.on_ack != nullptr) {
|
@@ -1963,10 +2009,8 @@ static void perform_transport_op_locked(void* stream_op,
|
|
1963
2009
|
}
|
1964
2010
|
|
1965
2011
|
void grpc_chttp2_transport::PerformOp(grpc_transport_op* op) {
|
1966
|
-
|
1967
|
-
|
1968
|
-
grpc_transport_op_string(op).c_str());
|
1969
|
-
}
|
2012
|
+
GRPC_TRACE_LOG(http, INFO) << "perform_transport_op[t=" << this
|
2013
|
+
<< "]: " << grpc_transport_op_string(op);
|
1970
2014
|
op->handler_private.extra_arg = this;
|
1971
2015
|
Ref().release()->combiner->Run(
|
1972
2016
|
GRPC_CLOSURE_INIT(&op->handler_private.closure,
|
@@ -2016,12 +2060,10 @@ void grpc_chttp2_maybe_complete_recv_message(grpc_chttp2_transport* t,
|
|
2016
2060
|
// Lambda is immediately invoked as a big scoped section that can be
|
2017
2061
|
// exited out of at any point by returning.
|
2018
2062
|
[&]() {
|
2019
|
-
|
2020
|
-
|
2021
|
-
|
2022
|
-
|
2023
|
-
s, s->final_metadata_requested, s->seen_error);
|
2024
|
-
}
|
2063
|
+
GRPC_TRACE_VLOG(http, 2)
|
2064
|
+
<< "maybe_complete_recv_message " << s
|
2065
|
+
<< " final_metadata_requested=" << s->final_metadata_requested
|
2066
|
+
<< " seen_error=" << s->seen_error;
|
2025
2067
|
if (s->final_metadata_requested && s->seen_error) {
|
2026
2068
|
grpc_slice_buffer_reset_and_unref(&s->frame_storage);
|
2027
2069
|
s->recv_message->reset();
|
@@ -2032,12 +2074,10 @@ void grpc_chttp2_maybe_complete_recv_message(grpc_chttp2_transport* t,
|
|
2032
2074
|
int64_t min_progress_size;
|
2033
2075
|
auto r = grpc_deframe_unprocessed_incoming_frames(
|
2034
2076
|
s, &min_progress_size, &**s->recv_message, s->recv_message_flags);
|
2035
|
-
|
2036
|
-
|
2037
|
-
|
2038
|
-
|
2039
|
-
}).c_str());
|
2040
|
-
}
|
2077
|
+
GRPC_TRACE_VLOG(http, 2)
|
2078
|
+
<< "Deframe data frame: "
|
2079
|
+
<< grpc_core::PollToString(
|
2080
|
+
r, [](absl::Status r) { return r.ToString(); });
|
2041
2081
|
if (r.pending()) {
|
2042
2082
|
if (s->read_closed) {
|
2043
2083
|
grpc_slice_buffer_reset_and_unref(&s->frame_storage);
|
@@ -2088,14 +2128,12 @@ void grpc_chttp2_maybe_complete_recv_message(grpc_chttp2_transport* t,
|
|
2088
2128
|
void grpc_chttp2_maybe_complete_recv_trailing_metadata(grpc_chttp2_transport* t,
|
2089
2129
|
grpc_chttp2_stream* s) {
|
2090
2130
|
grpc_chttp2_maybe_complete_recv_message(t, s);
|
2091
|
-
|
2092
|
-
|
2093
|
-
|
2094
|
-
|
2095
|
-
|
2096
|
-
|
2097
|
-
s->write_closed, s->frame_storage.length);
|
2098
|
-
}
|
2131
|
+
GRPC_TRACE_VLOG(http, 2) << "maybe_complete_recv_trailing_metadata cli="
|
2132
|
+
<< t->is_client << " s=" << s
|
2133
|
+
<< " closure=" << s->recv_trailing_metadata_finished
|
2134
|
+
<< " read_closed=" << s->read_closed
|
2135
|
+
<< " write_closed=" << s->write_closed << " "
|
2136
|
+
<< s->frame_storage.length;
|
2099
2137
|
if (s->recv_trailing_metadata_finished != nullptr && s->read_closed &&
|
2100
2138
|
s->write_closed) {
|
2101
2139
|
if (s->seen_error || !t->is_client) {
|
@@ -2299,14 +2337,12 @@ grpc_chttp2_transport::RemovedStreamHandle grpc_chttp2_mark_stream_closed(
|
|
2299
2337
|
grpc_chttp2_transport* t, grpc_chttp2_stream* s, int close_reads,
|
2300
2338
|
int close_writes, grpc_error_handle error) {
|
2301
2339
|
grpc_chttp2_transport::RemovedStreamHandle rsh;
|
2302
|
-
|
2303
|
-
|
2304
|
-
|
2305
|
-
|
2306
|
-
|
2307
|
-
|
2308
|
-
grpc_core::StatusToString(error).c_str());
|
2309
|
-
}
|
2340
|
+
GRPC_TRACE_VLOG(http, 2)
|
2341
|
+
<< "MARK_STREAM_CLOSED: t=" << t << " s=" << s << "(id=" << s->id << ") "
|
2342
|
+
<< ((close_reads && close_writes)
|
2343
|
+
? "read+write"
|
2344
|
+
: (close_reads ? "read" : (close_writes ? "write" : "nothing??")))
|
2345
|
+
<< " [" << grpc_core::StatusToString(error) << "]";
|
2310
2346
|
if (s->read_closed && s->write_closed) {
|
2311
2347
|
// already closed, but we should still fake the status if needed.
|
2312
2348
|
grpc_error_handle overall_error = removal_error(error, s, "Stream removed");
|
@@ -2619,9 +2655,9 @@ static grpc_error_handle try_http_parsing(grpc_chttp2_transport* t) {
|
|
2619
2655
|
if (parse_error.ok() &&
|
2620
2656
|
(parse_error = grpc_http_parser_eof(&parser)) == absl::OkStatus()) {
|
2621
2657
|
error = grpc_error_set_int(
|
2622
|
-
|
2623
|
-
|
2624
|
-
|
2658
|
+
GRPC_ERROR_CREATE(
|
2659
|
+
absl::StrCat("Trying to connect an http1.x server (HTTP status ",
|
2660
|
+
response.status, ")")),
|
2625
2661
|
grpc_core::StatusIntProperty::kRpcStatus,
|
2626
2662
|
grpc_http2_status_to_grpc_status(response.status));
|
2627
2663
|
}
|
@@ -2642,6 +2678,7 @@ static void read_action(grpc_core::RefCountedPtr<grpc_chttp2_transport> t,
|
|
2642
2678
|
static void read_action_parse_loop_locked(
|
2643
2679
|
grpc_core::RefCountedPtr<grpc_chttp2_transport> t,
|
2644
2680
|
grpc_error_handle error) {
|
2681
|
+
GRPC_LATENT_SEE_INNER_SCOPE("read_action_parse_loop_locked");
|
2645
2682
|
if (t->closed_with_error.ok()) {
|
2646
2683
|
grpc_error_handle errors[3] = {error, absl::OkStatus(), absl::OkStatus()};
|
2647
2684
|
size_t requests_started = 0;
|
@@ -2713,11 +2750,10 @@ static void read_action_parse_loop_locked(
|
|
2713
2750
|
if (keep_reading) {
|
2714
2751
|
if (t->num_pending_induced_frames >= DEFAULT_MAX_PENDING_INDUCED_FRAMES) {
|
2715
2752
|
t->reading_paused_on_pending_induced_frames = true;
|
2716
|
-
|
2717
|
-
|
2718
|
-
|
2719
|
-
|
2720
|
-
t.get()));
|
2753
|
+
GRPC_TRACE_LOG(http, INFO)
|
2754
|
+
<< "transport " << t.get()
|
2755
|
+
<< " : Pausing reading due to too many unwritten "
|
2756
|
+
"SETTINGS ACK and RST_STREAM frames";
|
2721
2757
|
} else {
|
2722
2758
|
continue_read_action_locked(std::move(t));
|
2723
2759
|
}
|
@@ -2730,11 +2766,10 @@ static void read_action_locked(
|
|
2730
2766
|
// got an incoming read, cancel any pending keepalive timers
|
2731
2767
|
t->keepalive_incoming_data_wanted = false;
|
2732
2768
|
if (t->keepalive_ping_timeout_handle != TaskHandle::kInvalid) {
|
2733
|
-
if (GRPC_TRACE_FLAG_ENABLED(
|
2734
|
-
GRPC_TRACE_FLAG_ENABLED(
|
2735
|
-
|
2736
|
-
|
2737
|
-
t->is_client ? "CLIENT" : "SERVER", t.get());
|
2769
|
+
if (GRPC_TRACE_FLAG_ENABLED(http2_ping) ||
|
2770
|
+
GRPC_TRACE_FLAG_ENABLED(http_keepalive)) {
|
2771
|
+
LOG(INFO) << (t->is_client ? "CLIENT" : "SERVER") << "[" << t.get()
|
2772
|
+
<< "]: Clear keepalive timer because data was received";
|
2738
2773
|
}
|
2739
2774
|
t->event_engine->Cancel(
|
2740
2775
|
std::exchange(t->keepalive_ping_timeout_handle, TaskHandle::kInvalid));
|
@@ -2753,7 +2788,7 @@ static void continue_read_action_locked(
|
|
2753
2788
|
grpc_core::RefCountedPtr<grpc_chttp2_transport> t) {
|
2754
2789
|
const bool urgent = !t->goaway_error.ok();
|
2755
2790
|
auto* tp = t.get();
|
2756
|
-
grpc_endpoint_read(tp->ep, &tp->read_buffer,
|
2791
|
+
grpc_endpoint_read(tp->ep.get(), &tp->read_buffer,
|
2757
2792
|
grpc_core::InitTransportClosure<read_action>(
|
2758
2793
|
std::move(t), &tp->read_action_locked),
|
2759
2794
|
urgent, grpc_chttp2_min_read_progress_size(tp));
|
@@ -2784,11 +2819,9 @@ static void start_bdp_ping(grpc_core::RefCountedPtr<grpc_chttp2_transport> t,
|
|
2784
2819
|
static void start_bdp_ping_locked(
|
2785
2820
|
grpc_core::RefCountedPtr<grpc_chttp2_transport> t,
|
2786
2821
|
grpc_error_handle error) {
|
2787
|
-
|
2788
|
-
|
2789
|
-
|
2790
|
-
grpc_core::StatusToString(error).c_str());
|
2791
|
-
}
|
2822
|
+
GRPC_TRACE_LOG(http, INFO)
|
2823
|
+
<< t->peer_string.as_string_view()
|
2824
|
+
<< ": Start BDP ping err=" << grpc_core::StatusToString(error);
|
2792
2825
|
if (!error.ok() || !t->closed_with_error.ok()) {
|
2793
2826
|
return;
|
2794
2827
|
}
|
@@ -2811,11 +2844,9 @@ static void finish_bdp_ping(grpc_core::RefCountedPtr<grpc_chttp2_transport> t,
|
|
2811
2844
|
static void finish_bdp_ping_locked(
|
2812
2845
|
grpc_core::RefCountedPtr<grpc_chttp2_transport> t,
|
2813
2846
|
grpc_error_handle error) {
|
2814
|
-
|
2815
|
-
|
2816
|
-
|
2817
|
-
grpc_core::StatusToString(error).c_str());
|
2818
|
-
}
|
2847
|
+
GRPC_TRACE_LOG(http, INFO)
|
2848
|
+
<< t->peer_string.as_string_view()
|
2849
|
+
<< ": Complete BDP ping err=" << grpc_core::StatusToString(error);
|
2819
2850
|
if (!error.ok() || !t->closed_with_error.ok()) {
|
2820
2851
|
return;
|
2821
2852
|
}
|
@@ -2860,48 +2891,48 @@ static void next_bdp_ping_timer_expired_locked(
|
|
2860
2891
|
}
|
2861
2892
|
|
2862
2893
|
void grpc_chttp2_config_default_keepalive_args(grpc_channel_args* args,
|
2863
|
-
bool is_client) {
|
2894
|
+
const bool is_client) {
|
2864
2895
|
grpc_chttp2_config_default_keepalive_args(grpc_core::ChannelArgs::FromC(args),
|
2865
2896
|
is_client);
|
2866
2897
|
}
|
2867
2898
|
|
2868
|
-
void
|
2869
|
-
const grpc_core::ChannelArgs& channel_args
|
2870
|
-
|
2899
|
+
static void grpc_chttp2_config_default_keepalive_args_client(
|
2900
|
+
const grpc_core::ChannelArgs& channel_args) {
|
2901
|
+
g_default_client_keepalive_time =
|
2871
2902
|
std::max(grpc_core::Duration::Milliseconds(1),
|
2872
2903
|
channel_args.GetDurationFromIntMillis(GRPC_ARG_KEEPALIVE_TIME_MS)
|
2873
|
-
.value_or(
|
2874
|
-
|
2875
|
-
if (is_client) {
|
2876
|
-
g_default_client_keepalive_time = keepalive_time;
|
2877
|
-
} else {
|
2878
|
-
g_default_server_keepalive_time = keepalive_time;
|
2879
|
-
}
|
2880
|
-
|
2881
|
-
const auto keepalive_timeout = std::max(
|
2904
|
+
.value_or(g_default_client_keepalive_time));
|
2905
|
+
g_default_client_keepalive_timeout = std::max(
|
2882
2906
|
grpc_core::Duration::Zero(),
|
2883
2907
|
channel_args.GetDurationFromIntMillis(GRPC_ARG_KEEPALIVE_TIMEOUT_MS)
|
2884
|
-
.value_or(
|
2885
|
-
|
2886
|
-
|
2887
|
-
|
2888
|
-
|
2889
|
-
g_default_server_keepalive_timeout = keepalive_timeout;
|
2890
|
-
}
|
2908
|
+
.value_or(g_default_client_keepalive_timeout));
|
2909
|
+
g_default_client_keepalive_permit_without_calls =
|
2910
|
+
channel_args.GetBool(GRPC_ARG_KEEPALIVE_PERMIT_WITHOUT_CALLS)
|
2911
|
+
.value_or(g_default_client_keepalive_permit_without_calls);
|
2912
|
+
}
|
2891
2913
|
|
2892
|
-
|
2914
|
+
static void grpc_chttp2_config_default_keepalive_args_server(
|
2915
|
+
const grpc_core::ChannelArgs& channel_args) {
|
2916
|
+
g_default_server_keepalive_time =
|
2917
|
+
std::max(grpc_core::Duration::Milliseconds(1),
|
2918
|
+
channel_args.GetDurationFromIntMillis(GRPC_ARG_KEEPALIVE_TIME_MS)
|
2919
|
+
.value_or(g_default_server_keepalive_time));
|
2920
|
+
g_default_server_keepalive_timeout = std::max(
|
2921
|
+
grpc_core::Duration::Zero(),
|
2922
|
+
channel_args.GetDurationFromIntMillis(GRPC_ARG_KEEPALIVE_TIMEOUT_MS)
|
2923
|
+
.value_or(g_default_server_keepalive_timeout));
|
2924
|
+
g_default_server_keepalive_permit_without_calls =
|
2893
2925
|
channel_args.GetBool(GRPC_ARG_KEEPALIVE_PERMIT_WITHOUT_CALLS)
|
2894
|
-
.value_or(
|
2895
|
-
|
2896
|
-
|
2926
|
+
.value_or(g_default_server_keepalive_permit_without_calls);
|
2927
|
+
}
|
2928
|
+
|
2929
|
+
void grpc_chttp2_config_default_keepalive_args(
|
2930
|
+
const grpc_core::ChannelArgs& channel_args, const bool is_client) {
|
2897
2931
|
if (is_client) {
|
2898
|
-
|
2899
|
-
keepalive_permit_without_calls;
|
2932
|
+
grpc_chttp2_config_default_keepalive_args_client(channel_args);
|
2900
2933
|
} else {
|
2901
|
-
|
2902
|
-
keepalive_permit_without_calls;
|
2934
|
+
grpc_chttp2_config_default_keepalive_args_server(channel_args);
|
2903
2935
|
}
|
2904
|
-
|
2905
2936
|
grpc_core::Chttp2PingAbusePolicy::SetDefaults(channel_args);
|
2906
2937
|
grpc_core::Chttp2PingRatePolicy::SetDefaults(channel_args);
|
2907
2938
|
}
|
@@ -2955,10 +2986,10 @@ static void finish_keepalive_ping_locked(
|
|
2955
2986
|
grpc_error_handle error) {
|
2956
2987
|
if (t->keepalive_state == GRPC_CHTTP2_KEEPALIVE_STATE_PINGING) {
|
2957
2988
|
if (error.ok()) {
|
2958
|
-
if (GRPC_TRACE_FLAG_ENABLED(
|
2959
|
-
GRPC_TRACE_FLAG_ENABLED(
|
2960
|
-
|
2961
|
-
|
2989
|
+
if (GRPC_TRACE_FLAG_ENABLED(http) ||
|
2990
|
+
GRPC_TRACE_FLAG_ENABLED(http_keepalive)) {
|
2991
|
+
LOG(INFO) << t->peer_string.as_string_view()
|
2992
|
+
<< ": Finish keepalive ping";
|
2962
2993
|
}
|
2963
2994
|
t->keepalive_state = GRPC_CHTTP2_KEEPALIVE_STATE_WAITING;
|
2964
2995
|
CHECK(t->keepalive_ping_timer_handle == TaskHandle::kInvalid);
|
@@ -2977,10 +3008,10 @@ static void maybe_reset_keepalive_ping_timer_locked(grpc_chttp2_transport* t) {
|
|
2977
3008
|
t->event_engine->Cancel(t->keepalive_ping_timer_handle)) {
|
2978
3009
|
// Cancel succeeds, resets the keepalive ping timer. Note that we don't
|
2979
3010
|
// need to Ref or Unref here since we still hold the Ref.
|
2980
|
-
if (GRPC_TRACE_FLAG_ENABLED(
|
2981
|
-
GRPC_TRACE_FLAG_ENABLED(
|
2982
|
-
|
2983
|
-
|
3011
|
+
if (GRPC_TRACE_FLAG_ENABLED(http) ||
|
3012
|
+
GRPC_TRACE_FLAG_ENABLED(http_keepalive)) {
|
3013
|
+
LOG(INFO) << t->peer_string.as_string_view()
|
3014
|
+
<< ": Keepalive ping cancelled. Resetting timer.";
|
2984
3015
|
}
|
2985
3016
|
t->keepalive_ping_timer_handle =
|
2986
3017
|
t->event_engine->RunAfter(t->keepalive_time, [t = t->Ref()]() mutable {
|
@@ -2999,9 +3030,9 @@ static void connectivity_state_set(grpc_chttp2_transport* t,
|
|
2999
3030
|
grpc_connectivity_state state,
|
3000
3031
|
const absl::Status& status,
|
3001
3032
|
const char* reason) {
|
3002
|
-
|
3003
|
-
|
3004
|
-
|
3033
|
+
GRPC_TRACE_LOG(http, INFO)
|
3034
|
+
<< "transport " << t << " set connectivity_state=" << state
|
3035
|
+
<< "; status=" << status.ToString() << "; reason=" << reason;
|
3005
3036
|
t->state_tracker.SetState(state, status, reason);
|
3006
3037
|
}
|
3007
3038
|
|
@@ -3011,12 +3042,22 @@ static void connectivity_state_set(grpc_chttp2_transport* t,
|
|
3011
3042
|
|
3012
3043
|
void grpc_chttp2_transport::SetPollset(grpc_stream* /*gs*/,
|
3013
3044
|
grpc_pollset* pollset) {
|
3014
|
-
|
3045
|
+
// We don't want the overhead of acquiring the mutex unless we're
|
3046
|
+
// using the "poll" polling engine, which is the only one that
|
3047
|
+
// actually uses pollsets.
|
3048
|
+
if (strcmp(grpc_get_poll_strategy_name(), "poll") != 0) return;
|
3049
|
+
grpc_core::MutexLock lock(&ep_destroy_mu);
|
3050
|
+
if (ep != nullptr) grpc_endpoint_add_to_pollset(ep.get(), pollset);
|
3015
3051
|
}
|
3016
3052
|
|
3017
3053
|
void grpc_chttp2_transport::SetPollsetSet(grpc_stream* /*gs*/,
|
3018
3054
|
grpc_pollset_set* pollset_set) {
|
3019
|
-
|
3055
|
+
// We don't want the overhead of acquiring the mutex unless we're
|
3056
|
+
// using the "poll" polling engine, which is the only one that
|
3057
|
+
// actually uses pollsets.
|
3058
|
+
if (strcmp(grpc_get_poll_strategy_name(), "poll") != 0) return;
|
3059
|
+
grpc_core::MutexLock lock(&ep_destroy_mu);
|
3060
|
+
if (ep != nullptr) grpc_endpoint_add_to_pollset_set(ep.get(), pollset_set);
|
3020
3061
|
}
|
3021
3062
|
|
3022
3063
|
//
|
@@ -3067,21 +3108,19 @@ static void benign_reclaimer_locked(
|
|
3067
3108
|
if (error.ok() && t->stream_map.empty()) {
|
3068
3109
|
// Channel with no active streams: send a goaway to try and make it
|
3069
3110
|
// disconnect cleanly
|
3070
|
-
|
3071
|
-
|
3072
|
-
|
3073
|
-
|
3111
|
+
grpc_core::global_stats().IncrementRqConnectionsDropped();
|
3112
|
+
GRPC_TRACE_LOG(resource_quota, INFO)
|
3113
|
+
<< "HTTP2: " << t->peer_string.as_string_view()
|
3114
|
+
<< " - send goaway to free memory";
|
3074
3115
|
send_goaway(t.get(),
|
3075
3116
|
grpc_error_set_int(GRPC_ERROR_CREATE("Buffers full"),
|
3076
3117
|
grpc_core::StatusIntProperty::kHttp2Error,
|
3077
3118
|
GRPC_HTTP2_ENHANCE_YOUR_CALM),
|
3078
3119
|
/*immediate_disconnect_hint=*/true);
|
3079
|
-
} else if (error.ok() && GRPC_TRACE_FLAG_ENABLED(
|
3080
|
-
|
3081
|
-
|
3082
|
-
|
3083
|
-
std::string(t->peer_string.as_string_view()).c_str(),
|
3084
|
-
t->stream_map.size());
|
3120
|
+
} else if (error.ok() && GRPC_TRACE_FLAG_ENABLED(resource_quota)) {
|
3121
|
+
LOG(INFO) << "HTTP2: " << t->peer_string.as_string_view()
|
3122
|
+
<< " - skip benign reclamation, there are still "
|
3123
|
+
<< t->stream_map.size() << " streams";
|
3085
3124
|
}
|
3086
3125
|
t->benign_reclaimer_registered = false;
|
3087
3126
|
if (error != absl::CancelledError()) {
|
@@ -3096,10 +3135,10 @@ static void destructive_reclaimer_locked(
|
|
3096
3135
|
if (error.ok() && !t->stream_map.empty()) {
|
3097
3136
|
// As stream_map is a hash map, this selects effectively a random stream.
|
3098
3137
|
grpc_chttp2_stream* s = t->stream_map.begin()->second;
|
3099
|
-
|
3100
|
-
|
3101
|
-
|
3102
|
-
|
3138
|
+
GRPC_TRACE_LOG(resource_quota, INFO)
|
3139
|
+
<< "HTTP2: " << t->peer_string.as_string_view()
|
3140
|
+
<< " - abandon stream id " << s->id;
|
3141
|
+
grpc_core::global_stats().IncrementRqCallsDropped();
|
3103
3142
|
grpc_chttp2_cancel_stream(
|
3104
3143
|
t.get(), s,
|
3105
3144
|
grpc_error_set_int(GRPC_ERROR_CREATE("Buffers full"),
|
@@ -3174,8 +3213,6 @@ const char* grpc_chttp2_initiate_write_reason_string(
|
|
3174
3213
|
GPR_UNREACHABLE_CODE(return "unknown");
|
3175
3214
|
}
|
3176
3215
|
|
3177
|
-
grpc_endpoint* grpc_chttp2_transport::GetEndpoint() { return ep; }
|
3178
|
-
|
3179
3216
|
size_t grpc_chttp2_transport::SizeOfStream() const {
|
3180
3217
|
return sizeof(grpc_chttp2_stream);
|
3181
3218
|
}
|
@@ -3197,25 +3234,32 @@ grpc_chttp2_transport_get_socket_node(grpc_core::Transport* transport) {
|
|
3197
3234
|
}
|
3198
3235
|
|
3199
3236
|
grpc_core::Transport* grpc_create_chttp2_transport(
|
3200
|
-
const grpc_core::ChannelArgs& channel_args,
|
3201
|
-
bool is_client) {
|
3202
|
-
return new grpc_chttp2_transport(channel_args, ep, is_client);
|
3237
|
+
const grpc_core::ChannelArgs& channel_args,
|
3238
|
+
grpc_core::OrphanablePtr<grpc_endpoint> ep, const bool is_client) {
|
3239
|
+
return new grpc_chttp2_transport(channel_args, std::move(ep), is_client);
|
3203
3240
|
}
|
3204
3241
|
|
3205
3242
|
void grpc_chttp2_transport_start_reading(
|
3206
3243
|
grpc_core::Transport* transport, grpc_slice_buffer* read_buffer,
|
3207
|
-
grpc_closure* notify_on_receive_settings,
|
3244
|
+
grpc_closure* notify_on_receive_settings,
|
3245
|
+
grpc_pollset_set* interested_parties_until_recv_settings,
|
3246
|
+
grpc_closure* notify_on_close) {
|
3208
3247
|
auto t = reinterpret_cast<grpc_chttp2_transport*>(transport)->Ref();
|
3209
3248
|
if (read_buffer != nullptr) {
|
3210
3249
|
grpc_slice_buffer_move_into(read_buffer, &t->read_buffer);
|
3211
|
-
gpr_free(read_buffer);
|
3212
3250
|
}
|
3213
3251
|
auto* tp = t.get();
|
3214
3252
|
tp->combiner->Run(
|
3215
3253
|
grpc_core::NewClosure([t = std::move(t), notify_on_receive_settings,
|
3254
|
+
interested_parties_until_recv_settings,
|
3216
3255
|
notify_on_close](grpc_error_handle) mutable {
|
3217
3256
|
if (!t->closed_with_error.ok()) {
|
3218
3257
|
if (notify_on_receive_settings != nullptr) {
|
3258
|
+
if (t->ep != nullptr &&
|
3259
|
+
interested_parties_until_recv_settings != nullptr) {
|
3260
|
+
grpc_endpoint_delete_from_pollset_set(
|
3261
|
+
t->ep.get(), interested_parties_until_recv_settings);
|
3262
|
+
}
|
3219
3263
|
grpc_core::ExecCtx::Run(DEBUG_LOCATION, notify_on_receive_settings,
|
3220
3264
|
t->closed_with_error);
|
3221
3265
|
}
|
@@ -3225,6 +3269,8 @@ void grpc_chttp2_transport_start_reading(
|
|
3225
3269
|
}
|
3226
3270
|
return;
|
3227
3271
|
}
|
3272
|
+
t->interested_parties_until_recv_settings =
|
3273
|
+
interested_parties_until_recv_settings;
|
3228
3274
|
t->notify_on_receive_settings = notify_on_receive_settings;
|
3229
3275
|
t->notify_on_close = notify_on_close;
|
3230
3276
|
read_action_locked(std::move(t), absl::OkStatus());
|