grpc 1.54.3 → 1.59.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Makefile +665 -324
- data/include/grpc/event_engine/event_engine.h +32 -46
- data/include/grpc/event_engine/memory_allocator.h +2 -2
- data/include/grpc/grpc_audit_logging.h +96 -0
- data/include/grpc/grpc_security.h +19 -0
- data/include/grpc/impl/channel_arg_names.h +375 -0
- data/include/grpc/impl/grpc_types.h +1 -348
- data/include/grpc/module.modulemap +3 -0
- data/include/grpc/support/json.h +218 -0
- data/include/grpc/support/port_platform.h +103 -24
- data/src/core/ext/filters/backend_metrics/backend_metric_filter.cc +7 -2
- data/src/core/ext/filters/channel_idle/channel_idle_filter.cc +24 -10
- data/src/core/ext/filters/client_channel/backend_metric.cc +4 -1
- data/src/core/ext/filters/client_channel/channel_connectivity.cc +4 -4
- data/src/core/ext/filters/client_channel/client_channel.cc +564 -178
- data/src/core/ext/filters/client_channel/client_channel.h +75 -23
- data/src/core/ext/filters/client_channel/client_channel_channelz.cc +20 -19
- data/src/core/ext/filters/client_channel/client_channel_internal.h +22 -59
- data/src/core/ext/filters/client_channel/client_channel_plugin.cc +15 -1
- data/src/core/ext/filters/client_channel/client_channel_service_config.cc +2 -2
- data/src/core/ext/filters/client_channel/config_selector.h +9 -36
- data/src/core/ext/filters/client_channel/dynamic_filters.h +5 -3
- data/src/core/ext/filters/client_channel/{http_proxy.cc → http_proxy_mapper.cc} +41 -3
- data/src/core/ext/filters/client_channel/{http_proxy.h → http_proxy_mapper.h} +3 -3
- data/src/core/ext/filters/client_channel/lb_policy/address_filtering.cc +27 -53
- data/src/core/ext/filters/client_channel/lb_policy/address_filtering.h +23 -9
- data/src/core/ext/filters/client_channel/lb_policy/backend_metric_data.h +3 -0
- data/src/core/ext/filters/client_channel/lb_policy/child_policy_handler.cc +25 -35
- data/src/core/ext/filters/client_channel/lb_policy/endpoint_list.cc +188 -0
- data/src/core/ext/filters/client_channel/lb_policy/endpoint_list.h +214 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc +103 -142
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.cc +2 -1
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.cc +5 -4
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h +4 -2
- data/src/core/ext/filters/client_channel/lb_policy/health_check_client.cc +515 -0
- data/src/core/ext/filters/client_channel/lb_policy/health_check_client.h +52 -0
- data/src/core/ext/filters/client_channel/lb_policy/health_check_client_internal.h +204 -0
- data/src/core/ext/filters/client_channel/lb_policy/oob_backend_metric.cc +6 -9
- data/src/core/ext/filters/client_channel/lb_policy/oob_backend_metric_internal.h +2 -0
- data/src/core/ext/filters/client_channel/lb_policy/outlier_detection/outlier_detection.cc +93 -106
- data/src/core/ext/filters/client_channel/lb_policy/outlier_detection/outlier_detection.h +2 -2
- data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc +532 -191
- data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.h +36 -0
- data/src/core/ext/filters/client_channel/lb_policy/priority/priority.cc +16 -45
- data/src/core/ext/filters/client_channel/lb_policy/ring_hash/ring_hash.cc +447 -464
- data/src/core/ext/filters/client_channel/lb_policy/ring_hash/ring_hash.h +18 -1
- data/src/core/ext/filters/client_channel/lb_policy/rls/rls.cc +73 -129
- data/src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc +416 -30
- data/src/core/ext/filters/client_channel/lb_policy/subchannel_list.h +26 -23
- data/src/core/ext/filters/client_channel/lb_policy/weighted_round_robin/static_stride_scheduler.cc +76 -6
- data/src/core/ext/filters/client_channel/lb_policy/weighted_round_robin/weighted_round_robin.cc +904 -101
- data/src/core/ext/filters/client_channel/lb_policy/weighted_target/weighted_target.cc +19 -54
- data/src/core/ext/filters/client_channel/lb_policy/xds/cds.cc +73 -126
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_channel_args.h +8 -0
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_impl.cc +35 -86
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_manager.cc +23 -69
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_resolver.cc +117 -173
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_override_host.cc +81 -68
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_wrr_locality.cc +28 -96
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc +21 -123
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.h +30 -0
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc +102 -11
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc +105 -175
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc +58 -44
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h +4 -1
- data/src/core/ext/filters/client_channel/resolver/dns/dns_resolver_plugin.cc +66 -0
- data/src/core/ext/filters/client_channel/resolver/dns/dns_resolver_plugin.h +27 -0
- data/src/core/ext/filters/client_channel/resolver/dns/event_engine/event_engine_client_channel_resolver.cc +586 -0
- data/src/core/ext/filters/client_channel/resolver/dns/event_engine/event_engine_client_channel_resolver.h +35 -0
- data/src/core/ext/filters/client_channel/resolver/dns/event_engine/service_config_helper.cc +97 -0
- data/src/core/ext/filters/client_channel/resolver/dns/event_engine/service_config_helper.h +32 -0
- data/src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc +3 -14
- data/src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.h +24 -0
- data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.cc +24 -6
- data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.h +36 -2
- data/src/core/ext/filters/client_channel/resolver/google_c2p/google_c2p_resolver.cc +30 -28
- data/src/core/ext/filters/client_channel/resolver/polling_resolver.cc +10 -4
- data/src/core/ext/filters/client_channel/resolver/polling_resolver.h +1 -0
- data/src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc +25 -13
- data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.cc +467 -312
- data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.h +32 -1
- data/src/core/ext/filters/client_channel/retry_filter.cc +39 -2530
- data/src/core/ext/filters/client_channel/retry_filter.h +92 -1
- data/src/core/ext/filters/client_channel/retry_filter_legacy_call_data.cc +2052 -0
- data/src/core/ext/filters/client_channel/retry_filter_legacy_call_data.h +442 -0
- data/src/core/ext/filters/client_channel/retry_service_config.cc +10 -9
- data/src/core/ext/filters/client_channel/service_config_channel_arg_filter.cc +40 -90
- data/src/core/ext/filters/client_channel/subchannel.cc +50 -199
- data/src/core/ext/filters/client_channel/subchannel.h +23 -48
- data/src/core/ext/filters/client_channel/subchannel_interface_internal.h +3 -0
- data/src/core/ext/filters/deadline/deadline_filter.cc +1 -1
- data/src/core/ext/filters/fault_injection/fault_injection_service_config_parser.cc +1 -1
- data/src/core/ext/filters/http/client/http_client_filter.cc +1 -0
- data/src/core/ext/filters/http/client_authority_filter.cc +1 -1
- data/src/core/ext/filters/http/message_compress/compression_filter.cc +8 -7
- data/src/core/ext/filters/http/server/http_server_filter.cc +22 -18
- data/src/core/ext/filters/message_size/message_size_filter.cc +1 -0
- data/src/core/ext/filters/rbac/rbac_filter.cc +40 -111
- data/src/core/ext/filters/rbac/rbac_filter.h +12 -30
- data/src/core/ext/filters/rbac/rbac_service_config_parser.cc +162 -72
- data/src/core/ext/filters/server_config_selector/server_config_selector_filter.cc +6 -8
- data/src/core/ext/filters/stateful_session/stateful_session_filter.cc +164 -88
- data/src/core/ext/filters/stateful_session/stateful_session_filter.h +16 -7
- data/src/core/ext/transport/chttp2/client/chttp2_connector.cc +1 -0
- data/src/core/ext/transport/chttp2/server/chttp2_server.cc +16 -17
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +979 -832
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.h +21 -0
- data/src/core/ext/transport/chttp2/transport/context_list_entry.h +70 -0
- data/src/core/ext/transport/chttp2/transport/decode_huff.cc +6569 -174
- data/src/core/ext/transport/chttp2/transport/decode_huff.h +2278 -441
- data/src/core/ext/transport/chttp2/transport/flow_control.cc +74 -117
- data/src/core/ext/transport/chttp2/transport/flow_control.h +27 -4
- data/src/core/ext/transport/chttp2/transport/frame_data.h +1 -1
- data/src/core/ext/transport/chttp2/transport/frame_goaway.h +1 -1
- data/src/core/ext/transport/chttp2/transport/frame_ping.cc +24 -25
- data/src/core/ext/transport/chttp2/transport/frame_ping.h +1 -4
- data/src/core/ext/transport/chttp2/transport/frame_rst_stream.cc +10 -1
- data/src/core/ext/transport/chttp2/transport/frame_rst_stream.h +1 -1
- data/src/core/ext/transport/chttp2/transport/frame_settings.cc +1 -1
- data/src/core/ext/transport/chttp2/transport/frame_settings.h +1 -1
- data/src/core/ext/transport/chttp2/transport/frame_window_update.h +1 -1
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.cc +1 -1
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.h +1 -0
- data/src/core/ext/transport/chttp2/transport/hpack_parse_result.cc +176 -0
- data/src/core/ext/transport/chttp2/transport/hpack_parse_result.h +326 -0
- data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +640 -547
- data/src/core/ext/transport/chttp2/transport/hpack_parser.h +160 -12
- data/src/core/ext/transport/chttp2/transport/hpack_parser_table.cc +48 -33
- data/src/core/ext/transport/chttp2/transport/hpack_parser_table.h +19 -5
- data/src/core/ext/transport/chttp2/transport/internal.h +194 -149
- data/src/core/ext/transport/chttp2/transport/{frame.h → legacy_frame.h} +3 -3
- data/src/core/ext/transport/chttp2/transport/max_concurrent_streams_policy.cc +44 -0
- data/src/core/ext/transport/chttp2/transport/max_concurrent_streams_policy.h +67 -0
- data/src/core/ext/transport/chttp2/transport/parsing.cc +143 -31
- data/src/core/ext/transport/chttp2/transport/ping_abuse_policy.cc +90 -0
- data/src/core/ext/transport/chttp2/transport/ping_abuse_policy.h +59 -0
- data/src/core/ext/transport/chttp2/transport/ping_callbacks.cc +108 -0
- data/src/core/ext/transport/chttp2/transport/ping_callbacks.h +115 -0
- data/src/core/ext/transport/chttp2/transport/ping_rate_policy.cc +120 -0
- data/src/core/ext/transport/chttp2/transport/ping_rate_policy.h +88 -0
- data/src/core/ext/transport/chttp2/transport/stream_lists.cc +1 -1
- data/src/core/ext/transport/chttp2/transport/write_size_policy.cc +60 -0
- data/src/core/ext/transport/chttp2/transport/write_size_policy.h +66 -0
- data/src/core/ext/transport/chttp2/transport/writing.cc +220 -145
- data/src/core/ext/transport/inproc/inproc_transport.cc +10 -0
- data/src/core/ext/upb-generated/envoy/admin/v3/certs.upb.c +85 -52
- data/src/core/ext/upb-generated/envoy/admin/v3/certs.upb.h +407 -182
- data/src/core/ext/upb-generated/envoy/admin/v3/clusters.upb.c +119 -60
- data/src/core/ext/upb-generated/envoy/admin/v3/clusters.upb.h +474 -225
- data/src/core/ext/upb-generated/envoy/admin/v3/config_dump.upb.c +88 -55
- data/src/core/ext/upb-generated/envoy/admin/v3/config_dump.upb.h +408 -189
- data/src/core/ext/upb-generated/envoy/admin/v3/config_dump_shared.upb.c +355 -210
- data/src/core/ext/upb-generated/envoy/admin/v3/config_dump_shared.upb.h +1564 -729
- data/src/core/ext/upb-generated/envoy/admin/v3/init_dump.upb.c +28 -17
- data/src/core/ext/upb-generated/envoy/admin/v3/init_dump.upb.h +140 -51
- data/src/core/ext/upb-generated/envoy/admin/v3/listeners.upb.c +32 -21
- data/src/core/ext/upb-generated/envoy/admin/v3/listeners.upb.h +153 -63
- data/src/core/ext/upb-generated/envoy/admin/v3/memory.upb.c +25 -14
- data/src/core/ext/upb-generated/envoy/admin/v3/memory.upb.h +71 -39
- data/src/core/ext/upb-generated/envoy/admin/v3/metrics.upb.c +18 -11
- data/src/core/ext/upb-generated/envoy/admin/v3/metrics.upb.h +41 -27
- data/src/core/ext/upb-generated/envoy/admin/v3/mutex_stats.upb.c +18 -11
- data/src/core/ext/upb-generated/envoy/admin/v3/mutex_stats.upb.h +41 -27
- data/src/core/ext/upb-generated/envoy/admin/v3/server_info.upb.c +107 -62
- data/src/core/ext/upb-generated/envoy/admin/v3/server_info.upb.h +559 -245
- data/src/core/ext/upb-generated/envoy/admin/v3/tap.upb.c +19 -12
- data/src/core/ext/upb-generated/envoy/admin/v3/tap.upb.h +38 -31
- data/src/core/ext/upb-generated/envoy/annotations/deprecation.upb.c +20 -19
- data/src/core/ext/upb-generated/envoy/annotations/deprecation.upb.h +75 -30
- data/src/core/ext/upb-generated/envoy/annotations/resource.upb.c +21 -16
- data/src/core/ext/upb-generated/envoy/annotations/resource.upb.h +38 -31
- data/src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.c +253 -147
- data/src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.h +869 -405
- data/src/core/ext/upb-generated/envoy/config/bootstrap/v3/bootstrap.upb.c +415 -264
- data/src/core/ext/upb-generated/envoy/config/bootstrap/v3/bootstrap.upb.h +1831 -899
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/circuit_breaker.upb.c +72 -41
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/circuit_breaker.upb.h +279 -149
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.c +529 -334
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.h +2009 -1131
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/filter.upb.c +19 -12
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/filter.upb.h +38 -31
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/outlier_detection.upb.c +87 -52
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/outlier_detection.upb.h +340 -233
- data/src/core/ext/upb-generated/envoy/config/common/matcher/v3/matcher.upb.c +262 -165
- data/src/core/ext/upb-generated/envoy/config/common/matcher/v3/matcher.upb.h +881 -477
- data/src/core/ext/upb-generated/envoy/config/core/v3/address.upb.c +137 -80
- data/src/core/ext/upb-generated/envoy/config/core/v3/address.upb.h +520 -275
- data/src/core/ext/upb-generated/envoy/config/core/v3/backoff.upb.c +20 -13
- data/src/core/ext/upb-generated/envoy/config/core/v3/backoff.upb.h +43 -37
- data/src/core/ext/upb-generated/envoy/config/core/v3/base.upb.c +378 -221
- data/src/core/ext/upb-generated/envoy/config/core/v3/base.upb.h +1160 -611
- data/src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.c +155 -92
- data/src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.h +620 -293
- data/src/core/ext/upb-generated/envoy/config/core/v3/event_service_config.upb.c +16 -11
- data/src/core/ext/upb-generated/envoy/config/core/v3/event_service_config.upb.h +30 -27
- data/src/core/ext/upb-generated/envoy/config/core/v3/extension.upb.c +19 -12
- data/src/core/ext/upb-generated/envoy/config/core/v3/extension.upb.h +38 -31
- data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_method_list.upb.c +28 -17
- data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_method_list.upb.h +140 -51
- data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.c +277 -167
- data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.h +811 -441
- data/src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.c +230 -137
- data/src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.h +1157 -501
- data/src/core/ext/upb-generated/envoy/config/core/v3/http_uri.upb.c +20 -13
- data/src/core/ext/upb-generated/envoy/config/core/v3/http_uri.upb.h +53 -38
- data/src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.c +367 -211
- data/src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.h +1107 -647
- data/src/core/ext/upb-generated/envoy/config/core/v3/proxy_protocol.upb.c +31 -18
- data/src/core/ext/upb-generated/envoy/config/core/v3/proxy_protocol.upb.h +109 -51
- data/src/core/ext/upb-generated/envoy/config/core/v3/resolver.upb.c +32 -19
- data/src/core/ext/upb-generated/envoy/config/core/v3/resolver.upb.h +110 -56
- data/src/core/ext/upb-generated/envoy/config/core/v3/socket_option.upb.c +36 -21
- data/src/core/ext/upb-generated/envoy/config/core/v3/socket_option.upb.h +141 -65
- data/src/core/ext/upb-generated/envoy/config/core/v3/substitution_format_string.upb.c +29 -18
- data/src/core/ext/upb-generated/envoy/config/core/v3/substitution_format_string.upb.h +136 -66
- data/src/core/ext/upb-generated/envoy/config/core/v3/udp_socket_config.upb.c +20 -13
- data/src/core/ext/upb-generated/envoy/config/core/v3/udp_socket_config.upb.h +44 -38
- data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint.upb.c +76 -43
- data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint.upb.h +258 -128
- data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint_components.upb.c +143 -88
- data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint_components.upb.h +431 -242
- data/src/core/ext/upb-generated/envoy/config/endpoint/v3/load_report.upb.c +113 -62
- data/src/core/ext/upb-generated/envoy/config/endpoint/v3/load_report.upb.h +552 -228
- data/src/core/ext/upb-generated/envoy/config/listener/v3/api_listener.upb.c +16 -11
- data/src/core/ext/upb-generated/envoy/config/listener/v3/api_listener.upb.h +28 -27
- data/src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.c +173 -118
- data/src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.h +850 -443
- data/src/core/ext/upb-generated/envoy/config/listener/v3/listener_components.upb.c +170 -95
- data/src/core/ext/upb-generated/envoy/config/listener/v3/listener_components.upb.h +857 -375
- data/src/core/ext/upb-generated/envoy/config/listener/v3/quic_config.upb.c +46 -27
- data/src/core/ext/upb-generated/envoy/config/listener/v3/quic_config.upb.h +152 -111
- data/src/core/ext/upb-generated/envoy/config/listener/v3/udp_listener_config.upb.c +37 -18
- data/src/core/ext/upb-generated/envoy/config/listener/v3/udp_listener_config.upb.h +66 -56
- data/src/core/ext/upb-generated/envoy/config/metrics/v3/metrics_service.upb.c +27 -15
- data/src/core/ext/upb-generated/envoy/config/metrics/v3/metrics_service.upb.h +85 -46
- data/src/core/ext/upb-generated/envoy/config/metrics/v3/stats.upb.c +129 -74
- data/src/core/ext/upb-generated/envoy/config/metrics/v3/stats.upb.h +481 -249
- data/src/core/ext/upb-generated/envoy/config/overload/v3/overload.upb.c +161 -84
- data/src/core/ext/upb-generated/envoy/config/overload/v3/overload.upb.h +673 -241
- data/src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.c +246 -139
- data/src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.h +926 -434
- data/src/core/ext/upb-generated/envoy/config/route/v3/route.upb.c +78 -49
- data/src/core/ext/upb-generated/envoy/config/route/v3/route.upb.h +609 -202
- data/src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.c +1281 -776
- data/src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.h +5414 -2519
- data/src/core/ext/upb-generated/envoy/config/route/v3/scoped_route.upb.c +47 -28
- data/src/core/ext/upb-generated/envoy/config/route/v3/scoped_route.upb.h +157 -85
- data/src/core/ext/upb-generated/envoy/config/tap/v3/common.upb.c +226 -141
- data/src/core/ext/upb-generated/envoy/config/tap/v3/common.upb.h +731 -400
- data/src/core/ext/upb-generated/envoy/config/trace/v3/datadog.upb.c +18 -11
- data/src/core/ext/upb-generated/envoy/config/trace/v3/datadog.upb.h +41 -27
- data/src/core/ext/upb-generated/envoy/config/trace/v3/dynamic_ot.upb.c +19 -12
- data/src/core/ext/upb-generated/envoy/config/trace/v3/dynamic_ot.upb.h +38 -31
- data/src/core/ext/upb-generated/envoy/config/trace/v3/http_tracer.upb.c +30 -19
- data/src/core/ext/upb-generated/envoy/config/trace/v3/http_tracer.upb.h +62 -49
- data/src/core/ext/upb-generated/envoy/config/trace/v3/lightstep.upb.c +25 -14
- data/src/core/ext/upb-generated/envoy/config/trace/v3/lightstep.upb.h +103 -44
- data/src/core/ext/upb-generated/envoy/config/trace/v3/opencensus.upb.c +44 -25
- data/src/core/ext/upb-generated/envoy/config/trace/v3/opencensus.upb.h +252 -101
- data/src/core/ext/upb-generated/envoy/config/trace/v3/opentelemetry.upb.c +19 -12
- data/src/core/ext/upb-generated/envoy/config/trace/v3/opentelemetry.upb.h +38 -31
- data/src/core/ext/upb-generated/envoy/config/trace/v3/service.upb.c +16 -11
- data/src/core/ext/upb-generated/envoy/config/trace/v3/service.upb.h +28 -27
- data/src/core/ext/upb-generated/envoy/config/trace/v3/skywalking.upb.c +40 -23
- data/src/core/ext/upb-generated/envoy/config/trace/v3/skywalking.upb.h +101 -71
- data/src/core/ext/upb-generated/envoy/config/trace/v3/trace.upb.c +5 -4
- data/src/core/ext/upb-generated/envoy/config/trace/v3/trace.upb.h +14 -17
- data/src/core/ext/upb-generated/envoy/config/trace/v3/xray.upb.c +41 -24
- data/src/core/ext/upb-generated/envoy/config/trace/v3/xray.upb.h +103 -76
- data/src/core/ext/upb-generated/envoy/config/trace/v3/zipkin.upb.c +28 -17
- data/src/core/ext/upb-generated/envoy/config/trace/v3/zipkin.upb.h +88 -51
- data/src/core/ext/upb-generated/envoy/data/accesslog/v3/accesslog.upb.c +556 -0
- data/src/core/ext/upb-generated/envoy/data/accesslog/v3/accesslog.upb.h +2702 -0
- data/src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3/cluster.upb.c +14 -9
- data/src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3/cluster.upb.h +66 -24
- data/src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3/fault.upb.c +58 -37
- data/src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3/fault.upb.h +143 -109
- data/src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3/fault.upb.c +91 -43
- data/src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3/fault.upb.h +379 -168
- data/src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3/rbac.upb.c +42 -25
- data/src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3/rbac.upb.h +107 -81
- data/src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3/router.upb.c +66 -22
- data/src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3/router.upb.h +348 -83
- data/src/core/ext/upb-generated/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb.c +30 -19
- data/src/core/ext/upb-generated/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb.h +65 -51
- data/src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.c +502 -300
- data/src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h +2235 -1075
- data/src/core/ext/upb-generated/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb.c +16 -11
- data/src/core/ext/upb-generated/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb.h +28 -27
- data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb.c +33 -21
- data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb.h +105 -79
- data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/common/v3/common.upb.c +70 -45
- data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/common/v3/common.upb.h +186 -139
- data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb.c +45 -0
- data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb.h +85 -0
- data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb.c +32 -21
- data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb.h +112 -79
- data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb.c +16 -11
- data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb.h +28 -27
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/cert.upb.c +5 -4
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/cert.upb.h +8 -11
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/common.upb.c +182 -96
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/common.upb.h +900 -361
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/secret.upb.c +54 -33
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/secret.upb.h +143 -102
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls.upb.c +186 -111
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls.upb.h +809 -420
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb.c +30 -19
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb.h +101 -53
- data/src/core/ext/upb-generated/envoy/service/discovery/v3/ads.upb.c +8 -7
- data/src/core/ext/upb-generated/envoy/service/discovery/v3/ads.upb.h +11 -15
- data/src/core/ext/upb-generated/envoy/service/discovery/v3/discovery.upb.c +298 -177
- data/src/core/ext/upb-generated/envoy/service/discovery/v3/discovery.upb.h +1277 -523
- data/src/core/ext/upb-generated/envoy/service/load_stats/v3/lrs.upb.c +40 -23
- data/src/core/ext/upb-generated/envoy/service/load_stats/v3/lrs.upb.h +181 -76
- data/src/core/ext/upb-generated/envoy/service/status/v3/csds.upb.c +128 -83
- data/src/core/ext/upb-generated/envoy/service/status/v3/csds.upb.h +503 -239
- data/src/core/ext/upb-generated/envoy/type/http/v3/cookie.upb.c +20 -13
- data/src/core/ext/upb-generated/envoy/type/http/v3/cookie.upb.h +48 -35
- data/src/core/ext/upb-generated/envoy/type/http/v3/path_transformation.upb.c +37 -26
- data/src/core/ext/upb-generated/envoy/type/http/v3/path_transformation.upb.h +117 -69
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/filter_state.upb.c +19 -12
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/filter_state.upb.h +40 -31
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/http_inputs.upb.c +50 -29
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/http_inputs.upb.h +85 -63
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/metadata.upb.c +35 -20
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/metadata.upb.h +126 -64
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/node.upb.c +20 -13
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/node.upb.h +84 -41
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/number.upb.c +19 -12
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/number.upb.h +43 -33
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/path.upb.c +16 -11
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/path.upb.h +30 -27
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/regex.upb.c +44 -27
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/regex.upb.h +94 -71
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/status_code_input.upb.c +11 -10
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/status_code_input.upb.h +17 -22
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/string.upb.c +38 -23
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/string.upb.h +154 -76
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/struct.upb.c +29 -18
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/struct.upb.h +106 -56
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/value.upb.c +44 -29
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/value.upb.h +132 -92
- data/src/core/ext/upb-generated/envoy/type/metadata/v3/metadata.upb.c +63 -42
- data/src/core/ext/upb-generated/envoy/type/metadata/v3/metadata.upb.h +192 -121
- data/src/core/ext/upb-generated/envoy/type/tracing/v3/custom_tag.upb.c +78 -45
- data/src/core/ext/upb-generated/envoy/type/tracing/v3/custom_tag.upb.h +201 -132
- data/src/core/ext/upb-generated/envoy/type/v3/hash_policy.upb.c +32 -21
- data/src/core/ext/upb-generated/envoy/type/v3/hash_policy.upb.h +66 -53
- data/src/core/ext/upb-generated/envoy/type/v3/http.upb.c +5 -4
- data/src/core/ext/upb-generated/envoy/type/v3/http.upb.h +5 -8
- data/src/core/ext/upb-generated/envoy/type/v3/http_status.upb.c +14 -9
- data/src/core/ext/upb-generated/envoy/type/v3/http_status.upb.h +21 -19
- data/src/core/ext/upb-generated/envoy/type/v3/percent.upb.c +26 -15
- data/src/core/ext/upb-generated/envoy/type/v3/percent.upb.h +47 -34
- data/src/core/ext/upb-generated/envoy/type/v3/range.upb.c +41 -22
- data/src/core/ext/upb-generated/envoy/type/v3/range.upb.h +83 -53
- data/src/core/ext/upb-generated/envoy/type/v3/ratelimit_strategy.upb.c +33 -20
- data/src/core/ext/upb-generated/envoy/type/v3/ratelimit_strategy.upb.h +84 -57
- data/src/core/ext/upb-generated/envoy/type/v3/ratelimit_unit.upb.c +5 -4
- data/src/core/ext/upb-generated/envoy/type/v3/ratelimit_unit.upb.h +5 -8
- data/src/core/ext/upb-generated/envoy/type/v3/semantic_version.upb.c +18 -11
- data/src/core/ext/upb-generated/envoy/type/v3/semantic_version.upb.h +41 -27
- data/src/core/ext/upb-generated/envoy/type/v3/token_bucket.upb.c +21 -14
- data/src/core/ext/upb-generated/envoy/type/v3/token_bucket.upb.h +54 -42
- data/src/core/ext/upb-generated/google/api/annotations.upb.c +12 -11
- data/src/core/ext/upb-generated/google/api/annotations.upb.h +22 -20
- data/src/core/ext/upb-generated/google/api/expr/v1alpha1/checked.upb.c +253 -154
- data/src/core/ext/upb-generated/google/api/expr/v1alpha1/checked.upb.h +927 -451
- data/src/core/ext/upb-generated/google/api/expr/v1alpha1/syntax.upb.c +297 -180
- data/src/core/ext/upb-generated/google/api/expr/v1alpha1/syntax.upb.h +939 -484
- data/src/core/ext/upb-generated/google/api/http.upb.c +66 -35
- data/src/core/ext/upb-generated/google/api/http.upb.h +277 -121
- data/src/core/ext/upb-generated/google/api/httpbody.upb.c +20 -13
- data/src/core/ext/upb-generated/google/api/httpbody.upb.h +88 -38
- data/src/core/ext/upb-generated/google/protobuf/any.upb.c +17 -10
- data/src/core/ext/upb-generated/google/protobuf/any.upb.h +31 -23
- data/src/core/ext/upb-generated/google/protobuf/descriptor.upb.c +1168 -419
- data/src/core/ext/upb-generated/google/protobuf/descriptor.upb.h +4431 -1412
- data/src/core/ext/upb-generated/google/protobuf/duration.upb.c +17 -10
- data/src/core/ext/upb-generated/google/protobuf/duration.upb.h +31 -23
- data/src/core/ext/upb-generated/google/protobuf/empty.upb.c +8 -7
- data/src/core/ext/upb-generated/google/protobuf/empty.upb.h +11 -15
- data/src/core/ext/upb-generated/google/protobuf/struct.upb.c +60 -39
- data/src/core/ext/upb-generated/google/protobuf/struct.upb.h +200 -103
- data/src/core/ext/upb-generated/google/protobuf/timestamp.upb.c +17 -10
- data/src/core/ext/upb-generated/google/protobuf/timestamp.upb.h +31 -23
- data/src/core/ext/upb-generated/google/protobuf/wrappers.upb.c +88 -51
- data/src/core/ext/upb-generated/google/protobuf/wrappers.upb.h +149 -107
- data/src/core/ext/upb-generated/google/rpc/status.upb.c +20 -13
- data/src/core/ext/upb-generated/google/rpc/status.upb.h +88 -38
- data/src/core/ext/upb-generated/opencensus/proto/trace/v1/trace_config.upb.c +57 -34
- data/src/core/ext/upb-generated/opencensus/proto/trace/v1/trace_config.upb.h +147 -93
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.c +41 -24
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.h +110 -60
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.c +248 -145
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.h +912 -416
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.c +32 -19
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.h +68 -51
- data/src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.c +23 -14
- data/src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.h +37 -30
- data/src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.c +142 -81
- data/src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.h +397 -217
- data/src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls.upb.c +49 -26
- data/src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls.upb.h +146 -62
- data/src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls_config.upb.c +171 -102
- data/src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls_config.upb.h +848 -299
- data/src/core/ext/upb-generated/udpa/annotations/migrate.upb.c +66 -49
- data/src/core/ext/upb-generated/udpa/annotations/migrate.upb.h +148 -105
- data/src/core/ext/upb-generated/udpa/annotations/security.upb.c +24 -17
- data/src/core/ext/upb-generated/udpa/annotations/security.upb.h +48 -35
- data/src/core/ext/upb-generated/udpa/annotations/sensitive.upb.c +10 -9
- data/src/core/ext/upb-generated/udpa/annotations/sensitive.upb.h +23 -14
- data/src/core/ext/upb-generated/udpa/annotations/status.upb.c +24 -17
- data/src/core/ext/upb-generated/udpa/annotations/status.upb.h +48 -35
- data/src/core/ext/upb-generated/udpa/annotations/versioning.upb.c +21 -16
- data/src/core/ext/upb-generated/udpa/annotations/versioning.upb.h +38 -31
- data/src/core/ext/upb-generated/validate/validate.upb.c +843 -455
- data/src/core/ext/upb-generated/validate/validate.upb.h +4340 -1909
- data/src/core/ext/upb-generated/xds/annotations/v3/migrate.upb.c +66 -49
- data/src/core/ext/upb-generated/xds/annotations/v3/migrate.upb.h +148 -105
- data/src/core/ext/upb-generated/xds/annotations/v3/security.upb.c +24 -17
- data/src/core/ext/upb-generated/xds/annotations/v3/security.upb.h +48 -35
- data/src/core/ext/upb-generated/xds/annotations/v3/sensitive.upb.c +10 -9
- data/src/core/ext/upb-generated/xds/annotations/v3/sensitive.upb.h +23 -14
- data/src/core/ext/upb-generated/xds/annotations/v3/status.upb.c +63 -44
- data/src/core/ext/upb-generated/xds/annotations/v3/status.upb.h +130 -92
- data/src/core/ext/upb-generated/xds/annotations/v3/versioning.upb.c +21 -16
- data/src/core/ext/upb-generated/xds/annotations/v3/versioning.upb.h +38 -31
- data/src/core/ext/upb-generated/xds/core/v3/authority.upb.c +14 -9
- data/src/core/ext/upb-generated/xds/core/v3/authority.upb.h +21 -19
- data/src/core/ext/upb-generated/xds/core/v3/cidr.upb.c +19 -12
- data/src/core/ext/upb-generated/xds/core/v3/cidr.upb.h +38 -31
- data/src/core/ext/upb-generated/xds/core/v3/collection_entry.upb.c +35 -22
- data/src/core/ext/upb-generated/xds/core/v3/collection_entry.upb.h +88 -63
- data/src/core/ext/upb-generated/xds/core/v3/context_params.upb.c +24 -17
- data/src/core/ext/upb-generated/xds/core/v3/context_params.upb.h +44 -29
- data/src/core/ext/upb-generated/xds/core/v3/extension.upb.c +19 -12
- data/src/core/ext/upb-generated/xds/core/v3/extension.upb.h +38 -31
- data/src/core/ext/upb-generated/xds/core/v3/resource.upb.c +21 -14
- data/src/core/ext/upb-generated/xds/core/v3/resource.upb.h +55 -43
- data/src/core/ext/upb-generated/xds/core/v3/resource_locator.upb.c +42 -25
- data/src/core/ext/upb-generated/xds/core/v3/resource_locator.upb.h +162 -80
- data/src/core/ext/upb-generated/xds/core/v3/resource_name.upb.c +25 -14
- data/src/core/ext/upb-generated/xds/core/v3/resource_name.upb.h +58 -39
- data/src/core/ext/upb-generated/xds/data/orca/v3/orca_load_report.upb.c +76 -38
- data/src/core/ext/upb-generated/xds/data/orca/v3/orca_load_report.upb.h +175 -77
- data/src/core/ext/upb-generated/xds/service/orca/v3/orca.upb.c +19 -12
- data/src/core/ext/upb-generated/xds/service/orca/v3/orca.upb.h +82 -35
- data/src/core/ext/upb-generated/xds/type/matcher/v3/cel.upb.c +16 -11
- data/src/core/ext/upb-generated/xds/type/matcher/v3/cel.upb.h +28 -27
- data/src/core/ext/upb-generated/xds/type/matcher/v3/domain.upb.c +30 -19
- data/src/core/ext/upb-generated/xds/type/matcher/v3/domain.upb.h +143 -55
- data/src/core/ext/upb-generated/xds/type/matcher/v3/http_inputs.upb.c +8 -7
- data/src/core/ext/upb-generated/xds/type/matcher/v3/http_inputs.upb.h +11 -15
- data/src/core/ext/upb-generated/xds/type/matcher/v3/ip.upb.c +32 -21
- data/src/core/ext/upb-generated/xds/type/matcher/v3/ip.upb.h +154 -64
- data/src/core/ext/upb-generated/xds/type/matcher/v3/matcher.upb.c +160 -101
- data/src/core/ext/upb-generated/xds/type/matcher/v3/matcher.upb.h +494 -294
- data/src/core/ext/upb-generated/xds/type/matcher/v3/range.upb.c +83 -52
- data/src/core/ext/upb-generated/xds/type/matcher/v3/range.upb.h +423 -165
- data/src/core/ext/upb-generated/xds/type/matcher/v3/regex.upb.c +22 -15
- data/src/core/ext/upb-generated/xds/type/matcher/v3/regex.upb.h +45 -37
- data/src/core/ext/upb-generated/xds/type/matcher/v3/string.upb.c +38 -23
- data/src/core/ext/upb-generated/xds/type/matcher/v3/string.upb.h +154 -76
- data/src/core/ext/upb-generated/xds/type/v3/cel.upb.c +35 -22
- data/src/core/ext/upb-generated/xds/type/v3/cel.upb.h +84 -66
- data/src/core/ext/upb-generated/xds/type/v3/range.upb.c +41 -22
- data/src/core/ext/upb-generated/xds/type/v3/range.upb.h +83 -53
- data/src/core/ext/upb-generated/xds/type/v3/typed_struct.upb.c +19 -12
- data/src/core/ext/upb-generated/xds/type/v3/typed_struct.upb.h +38 -31
- data/src/core/ext/upbdefs-generated/envoy/admin/v3/certs.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/admin/v3/certs.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/admin/v3/clusters.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/admin/v3/clusters.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/admin/v3/config_dump.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/admin/v3/config_dump.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/admin/v3/config_dump_shared.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/admin/v3/config_dump_shared.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/admin/v3/init_dump.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/admin/v3/init_dump.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/admin/v3/listeners.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/admin/v3/listeners.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/admin/v3/memory.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/admin/v3/memory.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/admin/v3/metrics.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/admin/v3/metrics.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/admin/v3/mutex_stats.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/admin/v3/mutex_stats.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/admin/v3/server_info.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/admin/v3/server_info.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/admin/v3/tap.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/admin/v3/tap.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/annotations/deprecation.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/annotations/deprecation.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/annotations/resource.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/annotations/resource.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/config/accesslog/v3/accesslog.upbdefs.c +89 -77
- data/src/core/ext/upbdefs-generated/envoy/config/accesslog/v3/accesslog.upbdefs.h +11 -5
- data/src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3/bootstrap.upbdefs.c +252 -253
- data/src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3/bootstrap.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/circuit_breaker.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/circuit_breaker.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/cluster.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/cluster.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/filter.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/filter.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/outlier_detection.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/outlier_detection.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/config/common/matcher/v3/matcher.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/config/common/matcher/v3/matcher.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/address.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/address.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/backoff.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/backoff.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/base.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/base.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/config_source.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/config_source.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/event_service_config.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/event_service_config.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/extension.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/extension.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_method_list.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_method_list.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_service.upbdefs.c +163 -161
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_service.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/health_check.upbdefs.c +130 -119
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/health_check.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/http_uri.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/http_uri.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/protocol.upbdefs.c +142 -136
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/protocol.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/proxy_protocol.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/proxy_protocol.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/resolver.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/resolver.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/socket_option.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/socket_option.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/substitution_format_string.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/substitution_format_string.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/udp_socket_config.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/udp_socket_config.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint_components.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint_components.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/load_report.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/load_report.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/api_listener.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/api_listener.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener_components.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener_components.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/quic_config.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/quic_config.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/udp_listener_config.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/udp_listener_config.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/config/metrics/v3/metrics_service.upbdefs.c +20 -13
- data/src/core/ext/upbdefs-generated/envoy/config/metrics/v3/metrics_service.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/config/metrics/v3/stats.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/config/metrics/v3/stats.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/config/overload/v3/overload.upbdefs.c +39 -31
- data/src/core/ext/upbdefs-generated/envoy/config/overload/v3/overload.upbdefs.h +11 -5
- data/src/core/ext/upbdefs-generated/envoy/config/rbac/v3/rbac.upbdefs.c +134 -128
- data/src/core/ext/upbdefs-generated/envoy/config/rbac/v3/rbac.upbdefs.h +11 -5
- data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route_components.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route_components.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/config/route/v3/scoped_route.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/config/route/v3/scoped_route.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/config/tap/v3/common.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/config/tap/v3/common.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/datadog.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/datadog.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/dynamic_ot.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/dynamic_ot.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/http_tracer.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/http_tracer.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/lightstep.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/lightstep.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/opencensus.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/opencensus.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/opentelemetry.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/opentelemetry.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/service.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/service.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/skywalking.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/skywalking.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/trace.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/trace.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/xray.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/xray.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/zipkin.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/zipkin.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/data/accesslog/v3/accesslog.upbdefs.c +402 -0
- data/src/core/ext/upbdefs-generated/envoy/data/accesslog/v3/accesslog.upbdefs.h +111 -0
- data/src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3/fault.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3/fault.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3/fault.upbdefs.c +81 -75
- data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3/fault.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3/router.upbdefs.c +64 -48
- data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3/router.upbdefs.h +11 -5
- data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.c +495 -470
- data/src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.h +11 -5
- data/src/core/ext/upbdefs-generated/envoy/extensions/http/stateful_session/cookie/v3/cookie.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/extensions/http/stateful_session/cookie/v3/cookie.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.c +138 -136
- data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/service/discovery/v3/ads.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/service/discovery/v3/ads.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/service/discovery/v3/discovery.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/service/discovery/v3/discovery.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/service/load_stats/v3/lrs.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/service/load_stats/v3/lrs.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/service/status/v3/csds.upbdefs.c +12 -13
- data/src/core/ext/upbdefs-generated/envoy/service/status/v3/csds.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/type/http/v3/cookie.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/type/http/v3/cookie.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/type/http/v3/path_transformation.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/type/http/v3/path_transformation.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/filter_state.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/filter_state.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/http_inputs.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/http_inputs.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/metadata.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/metadata.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/node.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/node.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/number.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/number.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/path.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/path.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/regex.upbdefs.c +30 -30
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/regex.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/status_code_input.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/status_code_input.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/string.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/string.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/struct.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/struct.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/value.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/value.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/type/metadata/v3/metadata.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/type/metadata/v3/metadata.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/type/tracing/v3/custom_tag.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/type/tracing/v3/custom_tag.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/type/v3/hash_policy.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/type/v3/hash_policy.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/type/v3/http.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/type/v3/http.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/type/v3/http_status.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/type/v3/http_status.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/type/v3/percent.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/type/v3/percent.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/type/v3/range.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/type/v3/range.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/type/v3/ratelimit_strategy.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/type/v3/ratelimit_strategy.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/type/v3/ratelimit_unit.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/type/v3/ratelimit_unit.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/type/v3/semantic_version.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/type/v3/semantic_version.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/envoy/type/v3/token_bucket.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/envoy/type/v3/token_bucket.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/google/api/annotations.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/google/api/annotations.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/checked.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/checked.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/syntax.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/syntax.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/google/api/http.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/google/api/http.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/google/api/httpbody.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/google/api/httpbody.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/google/protobuf/any.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/google/protobuf/any.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/google/protobuf/descriptor.upbdefs.c +406 -273
- data/src/core/ext/upbdefs-generated/google/protobuf/descriptor.upbdefs.h +21 -5
- data/src/core/ext/upbdefs-generated/google/protobuf/duration.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/google/protobuf/duration.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/google/protobuf/empty.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/google/protobuf/empty.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/google/protobuf/struct.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/google/protobuf/struct.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/google/protobuf/timestamp.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/google/protobuf/timestamp.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/google/protobuf/wrappers.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/google/protobuf/wrappers.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/google/rpc/status.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/google/rpc/status.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/opencensus/proto/trace/v1/trace_config.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/opencensus/proto/trace/v1/trace_config.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/src/proto/grpc/lookup/v1/rls_config.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/src/proto/grpc/lookup/v1/rls_config.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/udpa/annotations/migrate.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/udpa/annotations/migrate.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/udpa/annotations/security.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/udpa/annotations/security.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/udpa/annotations/sensitive.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/udpa/annotations/sensitive.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/udpa/annotations/status.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/udpa/annotations/status.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/udpa/annotations/versioning.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/udpa/annotations/versioning.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/validate/validate.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/validate/validate.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/xds/annotations/v3/migrate.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/xds/annotations/v3/migrate.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/xds/annotations/v3/security.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/xds/annotations/v3/security.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/xds/annotations/v3/sensitive.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/xds/annotations/v3/sensitive.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/xds/annotations/v3/status.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/xds/annotations/v3/status.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/xds/annotations/v3/versioning.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/xds/annotations/v3/versioning.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/xds/core/v3/authority.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/xds/core/v3/authority.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/xds/core/v3/cidr.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/xds/core/v3/cidr.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/xds/core/v3/collection_entry.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/xds/core/v3/collection_entry.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/xds/core/v3/context_params.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/xds/core/v3/context_params.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/xds/core/v3/extension.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/xds/core/v3/extension.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/xds/core/v3/resource.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/xds/core/v3/resource.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/xds/core/v3/resource_locator.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/xds/core/v3/resource_locator.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/xds/core/v3/resource_name.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/xds/core/v3/resource_name.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/cel.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/cel.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/domain.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/domain.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/http_inputs.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/http_inputs.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/ip.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/ip.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/matcher.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/matcher.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/range.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/range.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/regex.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/regex.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/string.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/string.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/xds/type/v3/cel.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/xds/type/v3/cel.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/xds/type/v3/range.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/xds/type/v3/range.upbdefs.h +6 -5
- data/src/core/ext/upbdefs-generated/xds/type/v3/typed_struct.upbdefs.c +1 -1
- data/src/core/ext/upbdefs-generated/xds/type/v3/typed_struct.upbdefs.h +6 -5
- data/src/core/ext/xds/certificate_provider_store.cc +8 -13
- data/src/core/ext/xds/certificate_provider_store.h +1 -1
- data/src/core/ext/xds/file_watcher_certificate_provider_factory.cc +30 -42
- data/src/core/ext/xds/file_watcher_certificate_provider_factory.h +14 -9
- data/src/core/ext/xds/upb_utils.h +1 -1
- data/src/core/ext/xds/xds_api.cc +41 -18
- data/src/core/ext/xds/xds_api.h +5 -4
- data/src/core/ext/xds/xds_audit_logger_registry.cc +122 -0
- data/src/core/ext/xds/xds_audit_logger_registry.h +68 -0
- data/src/core/ext/xds/xds_bootstrap.cc +3 -3
- data/src/core/ext/xds/xds_bootstrap_grpc.cc +65 -50
- data/src/core/ext/xds/xds_bootstrap_grpc.h +10 -13
- data/src/core/ext/xds/xds_client.cc +35 -16
- data/src/core/ext/xds/xds_client.h +3 -3
- data/src/core/ext/xds/xds_client_grpc.cc +12 -6
- data/src/core/ext/xds/xds_client_grpc.h +16 -2
- data/src/core/ext/xds/xds_client_stats.h +11 -1
- data/src/core/ext/xds/xds_cluster.cc +100 -109
- data/src/core/ext/xds/xds_cluster.h +1 -6
- data/src/core/ext/xds/xds_cluster_specifier_plugin.cc +15 -11
- data/src/core/ext/xds/xds_cluster_specifier_plugin.h +2 -2
- data/src/core/ext/xds/xds_common_types.cc +8 -5
- data/src/core/ext/xds/xds_endpoint.cc +21 -28
- data/src/core/ext/xds/xds_endpoint.h +1 -2
- data/src/core/ext/xds/xds_health_status.cc +0 -17
- data/src/core/ext/xds/xds_health_status.h +5 -25
- data/src/core/ext/xds/xds_http_fault_filter.cc +16 -14
- data/src/core/ext/xds/xds_http_fault_filter.h +1 -1
- data/src/core/ext/xds/xds_http_filters.cc +1 -4
- data/src/core/ext/xds/xds_http_filters.h +3 -2
- data/src/core/ext/xds/xds_http_rbac_filter.cc +152 -72
- data/src/core/ext/xds/xds_http_rbac_filter.h +1 -1
- data/src/core/ext/xds/xds_http_stateful_session_filter.cc +16 -16
- data/src/core/ext/xds/xds_http_stateful_session_filter.h +1 -1
- data/src/core/ext/xds/xds_lb_policy_registry.cc +60 -36
- data/src/core/ext/xds/xds_listener.cc +25 -18
- data/src/core/ext/xds/xds_listener.h +14 -4
- data/src/core/ext/xds/xds_resource_type.h +3 -9
- data/src/core/ext/xds/xds_resource_type_impl.h +9 -11
- data/src/core/ext/xds/xds_route_config.cc +62 -19
- data/src/core/ext/xds/xds_route_config.h +2 -2
- data/src/core/ext/xds/xds_server_config_fetcher.cc +53 -28
- data/src/core/ext/xds/xds_transport_grpc.cc +13 -2
- data/src/core/lib/address_utils/parse_address.cc +63 -1
- data/src/core/lib/address_utils/parse_address.h +8 -0
- data/src/core/lib/address_utils/sockaddr_utils.cc +46 -1
- data/src/core/lib/address_utils/sockaddr_utils.h +2 -2
- data/src/core/lib/avl/avl.h +15 -173
- data/src/core/lib/backoff/random_early_detection.cc +4 -2
- data/src/core/lib/backoff/random_early_detection.h +7 -4
- data/src/core/lib/channel/call_tracer.cc +296 -1
- data/src/core/lib/channel/call_tracer.h +39 -1
- data/src/core/lib/channel/channel_args.cc +120 -46
- data/src/core/lib/channel/channel_args.h +52 -4
- data/src/core/lib/channel/channel_trace.cc +16 -12
- data/src/core/lib/channel/channelz.cc +163 -135
- data/src/core/lib/channel/channelz.h +42 -35
- data/src/core/lib/channel/channelz_registry.cc +24 -20
- data/src/core/lib/channel/channelz_registry.h +4 -2
- data/src/core/lib/channel/connected_channel.cc +103 -35
- data/src/core/lib/channel/promise_based_filter.cc +15 -17
- data/src/core/lib/channel/promise_based_filter.h +5 -1
- data/src/core/lib/compression/compression_internal.cc +8 -7
- data/src/core/lib/config/config_vars.cc +20 -18
- data/src/core/lib/config/config_vars.h +5 -5
- data/src/core/lib/config/core_configuration.cc +2 -1
- data/src/core/lib/config/core_configuration.h +5 -4
- data/src/core/lib/config/load_config.cc +13 -0
- data/src/core/lib/config/load_config.h +6 -0
- data/src/core/lib/debug/event_log.h +1 -1
- data/src/core/lib/debug/stats_data.cc +202 -35
- data/src/core/lib/debug/stats_data.h +103 -1
- data/src/core/lib/debug/trace.cc +31 -56
- data/src/core/lib/debug/trace.h +14 -4
- data/src/core/lib/event_engine/ares_resolver.cc +721 -0
- data/src/core/lib/event_engine/ares_resolver.h +150 -0
- data/src/core/lib/event_engine/cf_engine/cf_engine.cc +221 -0
- data/src/core/lib/event_engine/cf_engine/cf_engine.h +89 -0
- data/src/core/lib/event_engine/cf_engine/cfstream_endpoint.cc +357 -0
- data/src/core/lib/event_engine/cf_engine/cfstream_endpoint.h +149 -0
- data/src/core/lib/event_engine/cf_engine/cftype_unique_ref.h +82 -0
- data/src/core/lib/event_engine/cf_engine/dns_service_resolver.cc +241 -0
- data/src/core/lib/event_engine/cf_engine/dns_service_resolver.h +120 -0
- data/src/core/lib/event_engine/default_event_engine.cc +13 -1
- data/src/core/lib/event_engine/default_event_engine_factory.cc +14 -2
- data/src/core/lib/event_engine/event_engine.cc +0 -12
- data/src/core/lib/event_engine/forkable.cc +62 -43
- data/src/core/lib/event_engine/forkable.h +15 -0
- data/src/core/lib/event_engine/grpc_polled_fd.h +73 -0
- data/src/core/lib/event_engine/handle_containers.h +0 -4
- data/src/core/lib/event_engine/nameser.h +102 -0
- data/src/core/lib/event_engine/poller.h +2 -2
- data/src/core/lib/event_engine/posix.h +4 -0
- data/src/core/lib/event_engine/posix_engine/ev_epoll1_linux.cc +5 -7
- data/src/core/lib/event_engine/posix_engine/ev_poll_posix.cc +29 -9
- data/src/core/lib/event_engine/posix_engine/ev_poll_posix.h +10 -1
- data/src/core/lib/event_engine/posix_engine/grpc_polled_fd_posix.h +197 -0
- data/src/core/lib/event_engine/posix_engine/lockfree_event.cc +7 -18
- data/src/core/lib/event_engine/posix_engine/posix_endpoint.cc +28 -14
- data/src/core/lib/event_engine/posix_engine/posix_endpoint.h +12 -1
- data/src/core/lib/event_engine/posix_engine/posix_engine.cc +90 -47
- data/src/core/lib/event_engine/posix_engine/posix_engine.h +21 -14
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener.cc +41 -31
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener.h +9 -8
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.cc +4 -2
- data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.cc +50 -4
- data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.h +9 -0
- data/src/core/lib/event_engine/posix_engine/timer.h +10 -37
- data/src/core/lib/event_engine/posix_engine/timer_manager.h +1 -1
- data/src/core/lib/event_engine/posix_engine/traced_buffer_list.cc +2 -0
- data/src/core/lib/event_engine/shim.cc +9 -1
- data/src/core/lib/event_engine/tcp_socket_utils.cc +67 -7
- data/src/core/lib/event_engine/tcp_socket_utils.h +3 -0
- data/src/core/lib/event_engine/thread_pool/thread_count.cc +58 -0
- data/src/core/lib/event_engine/thread_pool/thread_count.h +176 -0
- data/src/core/lib/event_engine/thread_pool/thread_pool.h +50 -0
- data/src/core/lib/event_engine/{executor/executor.h → thread_pool/thread_pool_factory.cc} +12 -15
- data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.cc +523 -0
- data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.h +223 -0
- data/src/core/lib/event_engine/thready_event_engine/thready_event_engine.cc +157 -0
- data/src/core/lib/event_engine/thready_event_engine/thready_event_engine.h +104 -0
- data/src/core/lib/event_engine/trace.cc +1 -0
- data/src/core/lib/event_engine/trace.h +6 -0
- data/src/core/lib/event_engine/windows/iocp.cc +4 -3
- data/src/core/lib/event_engine/windows/iocp.h +3 -3
- data/src/core/lib/event_engine/windows/win_socket.cc +6 -6
- data/src/core/lib/event_engine/windows/win_socket.h +4 -4
- data/src/core/lib/event_engine/windows/windows_endpoint.cc +60 -59
- data/src/core/lib/event_engine/windows/windows_endpoint.h +17 -13
- data/src/core/lib/event_engine/windows/windows_engine.cc +21 -18
- data/src/core/lib/event_engine/windows/windows_engine.h +14 -18
- data/src/core/lib/event_engine/windows/windows_listener.cc +3 -3
- data/src/core/lib/event_engine/windows/windows_listener.h +3 -2
- data/src/core/lib/event_engine/work_queue/basic_work_queue.cc +63 -0
- data/src/core/lib/event_engine/work_queue/basic_work_queue.h +71 -0
- data/src/core/lib/event_engine/work_queue/work_queue.h +62 -0
- data/src/core/lib/experiments/config.cc +121 -30
- data/src/core/lib/experiments/config.h +33 -5
- data/src/core/lib/experiments/experiments.cc +675 -23
- data/src/core/lib/experiments/experiments.h +342 -27
- data/src/core/lib/gpr/log_internal.h +55 -0
- data/src/core/lib/gpr/posix/time.cc +5 -0
- data/src/core/lib/gprpp/crash.cc +10 -0
- data/src/core/lib/gprpp/crash.h +3 -0
- data/src/core/lib/gprpp/dual_ref_counted.h +9 -9
- data/src/core/lib/gprpp/fork.cc +8 -9
- data/src/core/lib/gprpp/fork.h +7 -6
- data/src/core/lib/gprpp/if_list.h +4530 -0
- data/src/core/lib/gprpp/manual_constructor.h +1 -2
- data/src/core/lib/gprpp/no_destruct.h +1 -1
- data/src/core/lib/gprpp/orphanable.h +3 -3
- data/src/core/lib/gprpp/per_cpu.cc +35 -0
- data/src/core/lib/gprpp/per_cpu.h +61 -9
- data/src/core/lib/gprpp/ref_counted.h +9 -7
- data/src/core/lib/gprpp/ref_counted_ptr.h +63 -0
- data/src/core/lib/gprpp/ref_counted_string.cc +44 -0
- data/src/core/lib/gprpp/ref_counted_string.h +146 -0
- data/src/core/lib/gprpp/sorted_pack.h +3 -12
- data/src/core/lib/gprpp/status_helper.cc +2 -2
- data/src/core/lib/gprpp/status_helper.h +16 -15
- data/src/core/lib/gprpp/time.cc +1 -0
- data/src/core/lib/gprpp/time.h +13 -1
- data/src/core/lib/gprpp/type_list.h +32 -0
- data/src/core/lib/gprpp/validation_errors.cc +8 -3
- data/src/core/lib/gprpp/validation_errors.h +16 -9
- data/src/core/lib/gprpp/work_serializer.cc +320 -12
- data/src/core/lib/gprpp/work_serializer.h +30 -9
- data/src/core/lib/http/httpcli.h +6 -9
- data/src/core/lib/http/httpcli_security_connector.cc +1 -0
- data/src/core/lib/iomgr/buffer_list.cc +2 -0
- data/src/core/lib/iomgr/buffer_list.h +0 -1
- data/src/core/lib/iomgr/cfstream_handle.cc +1 -1
- data/src/core/lib/iomgr/combiner.cc +57 -15
- data/src/core/lib/iomgr/combiner.h +8 -3
- data/src/core/lib/iomgr/endpoint_cfstream.cc +10 -8
- data/src/core/lib/iomgr/error.cc +32 -2
- data/src/core/lib/iomgr/error.h +9 -10
- data/src/core/lib/iomgr/ev_apple.cc +12 -12
- data/src/core/lib/iomgr/ev_epoll1_linux.cc +15 -10
- data/src/core/lib/iomgr/ev_poll_posix.cc +6 -5
- data/src/core/lib/iomgr/event_engine_shims/endpoint.cc +24 -27
- data/src/core/lib/iomgr/exec_ctx.cc +12 -0
- data/src/core/lib/iomgr/exec_ctx.h +66 -19
- data/src/core/lib/iomgr/iocp_windows.cc +24 -3
- data/src/core/lib/iomgr/iocp_windows.h +11 -0
- data/src/core/lib/iomgr/iomgr_posix_cfstream.cc +1 -1
- data/src/core/lib/iomgr/polling_entity.cc +10 -0
- data/src/core/lib/iomgr/polling_entity.h +2 -0
- data/src/core/lib/iomgr/pollset.h +4 -5
- data/src/core/lib/iomgr/port.h +24 -0
- data/src/core/lib/iomgr/resolve_address.cc +13 -1
- data/src/core/lib/iomgr/resolve_address.h +17 -3
- data/src/core/lib/iomgr/sockaddr_posix.h +7 -0
- data/src/core/lib/iomgr/socket_utils_common_posix.cc +33 -2
- data/src/core/lib/iomgr/socket_utils_posix.cc +5 -0
- data/src/core/lib/iomgr/socket_utils_posix.h +9 -0
- data/src/core/lib/iomgr/socket_windows.cc +61 -7
- data/src/core/lib/iomgr/socket_windows.h +9 -2
- data/src/core/lib/iomgr/tcp_client_cfstream.cc +14 -3
- data/src/core/lib/iomgr/tcp_client_posix.cc +8 -1
- data/src/core/lib/iomgr/tcp_posix.cc +41 -21
- data/src/core/lib/iomgr/tcp_server_posix.cc +145 -106
- data/src/core/lib/iomgr/tcp_server_utils_posix.h +1 -1
- data/src/core/lib/iomgr/tcp_server_utils_posix_common.cc +5 -2
- data/src/core/lib/iomgr/tcp_server_windows.cc +1 -1
- data/src/core/lib/iomgr/tcp_windows.cc +1 -3
- data/src/core/lib/iomgr/timer_generic.cc +17 -16
- data/src/core/lib/iomgr/vsock.cc +59 -0
- data/src/core/lib/iomgr/vsock.h +38 -0
- data/src/core/lib/iomgr/wakeup_fd_posix.h +3 -6
- data/src/core/lib/json/json.h +2 -218
- data/src/core/lib/json/json_object_loader.cc +24 -25
- data/src/core/lib/json/json_object_loader.h +30 -18
- data/src/core/lib/json/json_reader.cc +69 -42
- data/src/core/lib/json/json_reader.h +34 -0
- data/src/core/lib/json/json_util.cc +10 -15
- data/src/core/lib/json/json_util.h +5 -4
- data/src/core/lib/json/json_writer.cc +24 -25
- data/src/core/lib/json/json_writer.h +33 -0
- data/src/core/lib/load_balancing/delegating_helper.h +115 -0
- data/src/core/lib/load_balancing/lb_policy.h +43 -9
- data/src/core/lib/load_balancing/lb_policy_registry.cc +9 -8
- data/src/core/lib/load_balancing/subchannel_interface.h +6 -0
- data/src/core/lib/matchers/matchers.cc +3 -4
- data/src/core/lib/matchers/matchers.h +2 -1
- data/src/core/lib/promise/activity.cc +5 -0
- data/src/core/lib/promise/activity.h +10 -0
- data/src/core/lib/promise/arena_promise.h +5 -1
- data/src/core/lib/promise/detail/basic_seq.h +1 -372
- data/src/core/lib/promise/detail/promise_factory.h +1 -1
- data/src/core/lib/promise/detail/seq_state.h +2494 -0
- data/src/core/lib/promise/latch.h +1 -0
- data/src/core/lib/promise/loop.h +8 -5
- data/src/core/lib/promise/party.cc +31 -13
- data/src/core/lib/promise/party.h +12 -3
- data/src/core/lib/promise/pipe.h +40 -26
- data/src/core/lib/promise/poll.h +4 -6
- data/src/core/lib/promise/prioritized_race.h +95 -0
- data/src/core/lib/promise/seq.h +19 -2
- data/src/core/lib/promise/sleep.cc +2 -1
- data/src/core/lib/promise/sleep.h +5 -10
- data/src/core/lib/promise/try_seq.h +34 -2
- data/src/core/lib/resolver/resolver_factory.h +3 -2
- data/src/core/lib/resolver/server_address.cc +9 -102
- data/src/core/lib/resolver/server_address.h +11 -70
- data/src/core/lib/resource_quota/api.cc +1 -0
- data/src/core/lib/resource_quota/arena.cc +2 -0
- data/src/core/lib/resource_quota/arena.h +42 -8
- data/src/core/lib/resource_quota/memory_quota.cc +65 -10
- data/src/core/lib/resource_quota/memory_quota.h +6 -4
- data/src/core/lib/resource_quota/resource_quota.h +1 -0
- data/src/core/lib/security/authorization/audit_logging.cc +98 -0
- data/src/core/lib/security/authorization/audit_logging.h +73 -0
- data/src/core/lib/security/authorization/authorization_policy_provider.h +1 -1
- data/src/core/lib/security/authorization/grpc_authorization_engine.cc +47 -2
- data/src/core/lib/security/authorization/grpc_authorization_engine.h +18 -1
- data/src/core/lib/security/authorization/rbac_policy.cc +36 -4
- data/src/core/lib/security/authorization/rbac_policy.h +19 -2
- data/src/core/lib/security/authorization/stdout_logger.cc +75 -0
- data/src/core/lib/security/authorization/stdout_logger.h +61 -0
- data/src/core/lib/security/certificate_provider/certificate_provider_factory.h +8 -4
- data/src/core/lib/security/certificate_provider/certificate_provider_registry.cc +8 -18
- data/src/core/lib/security/certificate_provider/certificate_provider_registry.h +14 -8
- data/src/core/lib/security/credentials/channel_creds_registry.h +51 -27
- data/src/core/lib/security/credentials/channel_creds_registry_init.cc +169 -9
- data/src/core/lib/security/credentials/composite/composite_credentials.cc +1 -1
- data/src/core/lib/security/credentials/composite/composite_credentials.h +3 -1
- data/src/core/lib/security/credentials/external/aws_external_account_credentials.cc +54 -49
- data/src/core/lib/security/credentials/external/aws_request_signer.cc +8 -0
- data/src/core/lib/security/credentials/external/external_account_credentials.cc +104 -65
- data/src/core/lib/security/credentials/external/external_account_credentials.h +6 -0
- data/src/core/lib/security/credentials/external/file_external_account_credentials.cc +23 -21
- data/src/core/lib/security/credentials/external/url_external_account_credentials.cc +29 -27
- data/src/core/lib/security/credentials/fake/fake_credentials.cc +30 -38
- data/src/core/lib/security/credentials/fake/fake_credentials.h +28 -0
- data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +6 -2
- data/src/core/lib/security/credentials/jwt/json_token.cc +36 -16
- data/src/core/lib/security/credentials/jwt/json_token.h +4 -0
- data/src/core/lib/security/credentials/jwt/jwt_credentials.cc +10 -5
- data/src/core/lib/security/credentials/jwt/jwt_verifier.cc +82 -38
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +18 -16
- data/src/core/lib/security/credentials/ssl/ssl_credentials.cc +116 -9
- data/src/core/lib/security/credentials/ssl/ssl_credentials.h +14 -0
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_match.cc +86 -0
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.cc +0 -55
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.h +2 -0
- data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc +8 -0
- data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h +5 -1
- data/src/core/lib/security/credentials/tls/tls_credentials.cc +2 -1
- data/src/core/lib/security/credentials/tls/tls_credentials.h +3 -1
- data/src/core/lib/security/credentials/xds/xds_credentials.cc +1 -0
- data/src/core/lib/security/security_connector/alts/alts_security_connector.cc +2 -5
- data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +1 -0
- data/src/core/lib/security/security_connector/ssl/ssl_security_connector.cc +7 -57
- data/src/core/lib/security/security_connector/ssl/ssl_security_connector.h +1 -1
- data/src/core/lib/security/security_connector/ssl_utils.cc +3 -1
- data/src/core/lib/security/security_connector/ssl_utils.h +1 -1
- data/src/core/lib/security/security_connector/tls/tls_security_connector.cc +3 -15
- data/src/core/lib/security/transport/client_auth_filter.cc +8 -5
- data/src/core/lib/security/transport/security_handshaker.cc +1 -0
- data/src/core/lib/security/transport/server_auth_filter.cc +2 -0
- data/src/core/lib/security/util/json_util.cc +6 -5
- data/src/core/lib/service_config/service_config_call_data.h +54 -20
- data/src/core/lib/service_config/service_config_impl.cc +13 -6
- data/src/core/lib/slice/slice.h +24 -0
- data/src/core/lib/slice/slice_buffer.cc +15 -0
- data/src/core/lib/slice/slice_buffer.h +16 -4
- data/src/core/lib/slice/slice_refcount.h +1 -1
- data/src/core/lib/surface/call.cc +244 -100
- data/src/core/lib/surface/call.h +5 -5
- data/src/core/lib/surface/channel.cc +8 -4
- data/src/core/lib/surface/channel_init.h +3 -2
- data/src/core/lib/surface/completion_queue.cc +18 -3
- data/src/core/lib/surface/init.cc +1 -0
- data/src/core/lib/surface/server.cc +151 -80
- data/src/core/lib/surface/server.h +19 -21
- data/src/core/lib/surface/validate_metadata.cc +37 -22
- data/src/core/lib/surface/validate_metadata.h +13 -3
- data/src/core/lib/surface/version.cc +2 -2
- data/src/core/lib/transport/batch_builder.cc +16 -15
- data/src/core/lib/transport/batch_builder.h +48 -36
- data/src/core/lib/transport/metadata_batch.cc +13 -7
- data/src/core/lib/transport/metadata_batch.h +118 -108
- data/src/core/lib/transport/metadata_compression_traits.h +67 -0
- data/src/core/lib/transport/parsed_metadata.h +32 -20
- data/src/core/lib/transport/simple_slice_based_metadata.h +54 -0
- data/src/core/lib/transport/transport.h +30 -11
- data/src/core/plugin_registry/grpc_plugin_registry.cc +2 -6
- data/src/core/plugin_registry/grpc_plugin_registry_extra.cc +2 -0
- data/src/core/tsi/alts/crypt/aes_gcm.cc +27 -2
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.cc +4 -6
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc +1 -2
- data/src/core/tsi/ssl_transport_security.cc +51 -9
- data/src/core/tsi/ssl_transport_security.h +17 -1
- data/src/ruby/bin/math_pb.rb +24 -18
- data/src/ruby/ext/grpc/extconf.rb +27 -27
- data/src/ruby/ext/grpc/rb_call.c +62 -39
- data/src/ruby/ext/grpc/rb_call_credentials.c +0 -1
- data/src/ruby/ext/grpc/rb_channel.c +109 -84
- data/src/ruby/ext/grpc/rb_channel.h +1 -0
- data/src/ruby/ext/grpc/rb_channel_args.c +18 -2
- data/src/ruby/ext/grpc/rb_channel_args.h +4 -0
- data/src/ruby/ext/grpc/rb_channel_credentials.c +0 -1
- data/src/ruby/ext/grpc/rb_compression_options.c +0 -1
- data/src/ruby/ext/grpc/rb_event_thread.c +22 -6
- data/src/ruby/ext/grpc/rb_event_thread.h +1 -0
- data/src/ruby/ext/grpc/rb_grpc.c +192 -30
- data/src/ruby/ext/grpc/rb_grpc.h +8 -2
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +2 -0
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +3 -0
- data/src/ruby/ext/grpc/rb_server.c +62 -45
- data/src/ruby/ext/grpc/rb_server_credentials.c +0 -1
- data/src/ruby/ext/grpc/rb_xds_channel_credentials.c +0 -1
- data/src/ruby/ext/grpc/rb_xds_server_credentials.c +0 -1
- data/src/ruby/lib/grpc/generic/active_call.rb +9 -14
- data/src/ruby/lib/grpc/generic/bidi_call.rb +2 -0
- data/src/ruby/lib/grpc/version.rb +1 -1
- data/src/ruby/pb/grpc/health/v1/health_pb.rb +24 -13
- data/src/ruby/pb/src/proto/grpc/testing/empty_pb.rb +24 -3
- data/src/ruby/pb/src/proto/grpc/testing/messages_pb.rb +28 -111
- data/src/ruby/pb/src/proto/grpc/testing/test_pb.rb +25 -2
- data/src/ruby/pb/test/client.rb +16 -0
- data/src/ruby/spec/generic/rpc_server_spec.rb +3 -3
- data/third_party/abseil-cpp/absl/algorithm/container.h +3 -2
- data/third_party/abseil-cpp/absl/base/attributes.h +58 -5
- data/third_party/abseil-cpp/absl/base/call_once.h +1 -1
- data/third_party/abseil-cpp/absl/base/casts.h +8 -8
- data/third_party/abseil-cpp/absl/base/config.h +89 -106
- data/third_party/abseil-cpp/absl/base/dynamic_annotations.h +26 -1
- data/third_party/abseil-cpp/absl/base/internal/direct_mmap.h +2 -2
- data/third_party/abseil-cpp/absl/base/internal/low_level_alloc.cc +50 -39
- data/third_party/abseil-cpp/absl/base/internal/low_level_alloc.h +2 -1
- data/third_party/abseil-cpp/absl/base/internal/prefetch.h +17 -18
- data/third_party/abseil-cpp/absl/base/internal/raw_logging.cc +32 -3
- data/third_party/abseil-cpp/absl/base/internal/raw_logging.h +24 -4
- data/third_party/abseil-cpp/absl/base/internal/sysinfo.cc +31 -73
- data/third_party/abseil-cpp/absl/base/internal/thread_identity.cc +9 -8
- data/third_party/abseil-cpp/absl/base/internal/thread_identity.h +11 -11
- data/third_party/abseil-cpp/absl/base/internal/throw_delegate.cc +23 -32
- data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.cc +2 -3
- data/third_party/abseil-cpp/absl/base/options.h +1 -1
- data/third_party/abseil-cpp/absl/base/policy_checks.h +3 -3
- data/third_party/abseil-cpp/absl/base/prefetch.h +198 -0
- data/third_party/abseil-cpp/absl/container/fixed_array.h +54 -29
- data/third_party/abseil-cpp/absl/container/flat_hash_map.h +5 -1
- data/third_party/abseil-cpp/absl/container/flat_hash_set.h +6 -2
- data/third_party/abseil-cpp/absl/container/inlined_vector.h +167 -79
- data/third_party/abseil-cpp/absl/container/internal/common_policy_traits.h +1 -1
- data/third_party/abseil-cpp/absl/container/internal/compressed_tuple.h +3 -21
- data/third_party/abseil-cpp/absl/container/internal/container_memory.h +1 -1
- data/third_party/abseil-cpp/absl/container/internal/hash_function_defaults.h +46 -0
- data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.cc +2 -0
- data/third_party/abseil-cpp/absl/container/internal/inlined_vector.h +85 -26
- data/third_party/abseil-cpp/absl/container/internal/raw_hash_map.h +35 -18
- data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.cc +70 -29
- data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.h +437 -236
- data/third_party/abseil-cpp/absl/crc/crc32c.h +8 -1
- data/third_party/abseil-cpp/absl/crc/internal/cpu_detect.cc +14 -8
- data/third_party/abseil-cpp/absl/crc/internal/crc.cc +4 -35
- data/third_party/abseil-cpp/absl/crc/internal/crc.h +2 -10
- data/third_party/abseil-cpp/absl/crc/internal/crc32_x86_arm_combined_simd.h +1 -1
- data/third_party/abseil-cpp/absl/crc/internal/crc_cord_state.cc +1 -1
- data/third_party/abseil-cpp/absl/crc/internal/crc_cord_state.h +4 -4
- data/third_party/abseil-cpp/absl/crc/internal/crc_internal.h +8 -10
- data/third_party/abseil-cpp/absl/crc/internal/crc_memcpy_x86_64.cc +17 -19
- data/third_party/abseil-cpp/absl/crc/internal/crc_x86_arm_combined.cc +8 -8
- data/third_party/abseil-cpp/absl/debugging/internal/elf_mem_image.h +2 -1
- data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_aarch64-inl.inc +59 -23
- data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_powerpc-inl.inc +1 -1
- data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_x86-inl.inc +1 -1
- data/third_party/abseil-cpp/absl/debugging/internal/symbolize.h +1 -1
- data/third_party/abseil-cpp/absl/debugging/symbolize_elf.inc +43 -19
- data/third_party/abseil-cpp/absl/debugging/symbolize_emscripten.inc +3 -0
- data/third_party/abseil-cpp/absl/flags/commandlineflag.h +1 -1
- data/third_party/abseil-cpp/absl/flags/internal/commandlineflag.cc +1 -1
- data/third_party/abseil-cpp/absl/flags/internal/flag.cc +2 -2
- data/third_party/abseil-cpp/absl/flags/internal/flag.h +16 -15
- data/third_party/abseil-cpp/absl/flags/internal/flag_msvc.inc +1 -1
- data/third_party/abseil-cpp/absl/flags/marshalling.cc +43 -2
- data/third_party/abseil-cpp/absl/flags/marshalling.h +5 -0
- data/third_party/abseil-cpp/absl/functional/any_invocable.h +9 -1
- data/third_party/abseil-cpp/absl/functional/bind_front.h +1 -1
- data/third_party/abseil-cpp/absl/functional/function_ref.h +3 -3
- data/third_party/abseil-cpp/absl/functional/internal/any_invocable.h +37 -24
- data/third_party/abseil-cpp/absl/functional/internal/function_ref.h +19 -9
- data/third_party/abseil-cpp/absl/hash/hash.h +7 -4
- data/third_party/abseil-cpp/absl/hash/internal/hash.h +38 -15
- data/third_party/abseil-cpp/absl/hash/internal/low_level_hash.cc +6 -0
- data/third_party/abseil-cpp/absl/meta/type_traits.h +48 -373
- data/third_party/abseil-cpp/absl/numeric/bits.h +4 -4
- data/third_party/abseil-cpp/absl/numeric/int128.cc +20 -8
- data/third_party/abseil-cpp/absl/numeric/int128.h +36 -39
- data/third_party/abseil-cpp/absl/numeric/int128_have_intrinsic.inc +0 -3
- data/third_party/abseil-cpp/absl/numeric/int128_no_intrinsic.inc +47 -30
- data/third_party/abseil-cpp/absl/random/bit_gen_ref.h +185 -0
- data/third_party/abseil-cpp/absl/random/internal/fast_uniform_bits.h +4 -3
- data/third_party/abseil-cpp/absl/random/internal/generate_real.h +1 -1
- data/third_party/abseil-cpp/absl/random/internal/platform.h +1 -1
- data/third_party/abseil-cpp/absl/random/internal/randen_detect.cc +4 -0
- data/third_party/abseil-cpp/absl/random/internal/randen_engine.h +1 -1
- data/third_party/abseil-cpp/absl/random/internal/randen_hwaes.cc +1 -1
- data/third_party/abseil-cpp/absl/random/internal/uniform_helper.h +1 -1
- data/third_party/abseil-cpp/absl/status/internal/status_internal.h +4 -0
- data/third_party/abseil-cpp/absl/status/internal/statusor_internal.h +12 -24
- data/third_party/abseil-cpp/absl/status/status.cc +11 -7
- data/third_party/abseil-cpp/absl/status/status.h +11 -2
- data/third_party/abseil-cpp/absl/status/statusor.h +22 -8
- data/third_party/abseil-cpp/absl/strings/ascii.cc +54 -6
- data/third_party/abseil-cpp/absl/strings/charconv.cc +21 -4
- data/third_party/abseil-cpp/absl/strings/charconv.h +2 -2
- data/third_party/abseil-cpp/absl/strings/cord.cc +1 -2
- data/third_party/abseil-cpp/absl/strings/cord.h +32 -5
- data/third_party/abseil-cpp/absl/strings/cord_analysis.cc +23 -1
- data/third_party/abseil-cpp/absl/strings/cord_analysis.h +18 -0
- data/third_party/abseil-cpp/absl/strings/cord_buffer.h +2 -5
- data/third_party/abseil-cpp/absl/strings/escaping.cc +10 -32
- data/third_party/abseil-cpp/absl/strings/escaping.h +1 -1
- data/third_party/abseil-cpp/absl/strings/internal/charconv_bigint.cc +2 -4
- data/third_party/abseil-cpp/absl/strings/internal/charconv_bigint.h +3 -3
- data/third_party/abseil-cpp/absl/strings/internal/cord_internal.cc +0 -1
- data/third_party/abseil-cpp/absl/strings/internal/cord_internal.h +15 -13
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree.cc +13 -4
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree.h +8 -0
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_consume.cc +5 -3
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_consume.h +4 -7
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_flat.h +8 -0
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_ring.h +2 -2
- data/third_party/abseil-cpp/absl/strings/internal/cordz_handle.cc +46 -20
- data/third_party/abseil-cpp/absl/strings/internal/cordz_handle.h +1 -34
- data/third_party/abseil-cpp/absl/strings/internal/cordz_info.cc +2 -1
- data/third_party/abseil-cpp/absl/strings/internal/escaping.cc +23 -0
- data/third_party/abseil-cpp/absl/strings/internal/escaping.h +1 -0
- data/third_party/abseil-cpp/absl/strings/internal/memutil.cc +2 -77
- data/third_party/abseil-cpp/absl/strings/internal/memutil.h +4 -112
- data/third_party/abseil-cpp/absl/strings/internal/stl_type_traits.h +1 -1
- data/third_party/abseil-cpp/absl/strings/internal/str_format/arg.cc +10 -31
- data/third_party/abseil-cpp/absl/strings/internal/str_format/arg.h +8 -8
- data/third_party/abseil-cpp/absl/strings/internal/str_format/bind.h +5 -20
- data/third_party/abseil-cpp/absl/strings/internal/str_format/constexpr_parser.h +1 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/extension.h +1 -1
- data/third_party/abseil-cpp/absl/strings/internal/str_format/float_conversion.cc +9 -9
- data/third_party/abseil-cpp/absl/strings/internal/str_split_internal.h +56 -6
- data/third_party/abseil-cpp/absl/strings/match.cc +87 -0
- data/third_party/abseil-cpp/absl/strings/match.h +19 -0
- data/third_party/abseil-cpp/absl/strings/numbers.cc +154 -122
- data/third_party/abseil-cpp/absl/strings/numbers.h +1 -6
- data/third_party/abseil-cpp/absl/strings/str_cat.cc +7 -50
- data/third_party/abseil-cpp/absl/strings/str_cat.h +83 -15
- data/third_party/abseil-cpp/absl/strings/str_format.h +6 -3
- data/third_party/abseil-cpp/absl/strings/str_split.cc +9 -6
- data/third_party/abseil-cpp/absl/strings/string_view.cc +26 -4
- data/third_party/abseil-cpp/absl/synchronization/internal/create_thread_identity.cc +5 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/futex.h +63 -43
- data/third_party/abseil-cpp/absl/synchronization/internal/futex_waiter.cc +111 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/futex_waiter.h +63 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/graphcycles.cc +11 -7
- data/third_party/abseil-cpp/absl/synchronization/internal/kernel_timeout.cc +225 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/kernel_timeout.h +122 -114
- data/third_party/abseil-cpp/absl/synchronization/internal/per_thread_sem.cc +12 -8
- data/third_party/abseil-cpp/absl/synchronization/internal/per_thread_sem.h +10 -1
- data/third_party/abseil-cpp/absl/synchronization/internal/pthread_waiter.cc +167 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/pthread_waiter.h +60 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/sem_waiter.cc +122 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/sem_waiter.h +65 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/stdcpp_waiter.cc +91 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/stdcpp_waiter.h +56 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/waiter.h +19 -113
- data/third_party/abseil-cpp/absl/synchronization/internal/waiter_base.cc +42 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/waiter_base.h +90 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/win32_waiter.cc +151 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/win32_waiter.h +70 -0
- data/third_party/abseil-cpp/absl/synchronization/mutex.cc +407 -411
- data/third_party/abseil-cpp/absl/synchronization/mutex.h +152 -118
- data/third_party/abseil-cpp/absl/time/clock.cc +6 -7
- data/third_party/abseil-cpp/absl/time/duration.cc +24 -26
- data/third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/time_zone.h +1 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_fixed.cc +1 -1
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_format.cc +3 -3
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_if.cc +8 -6
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_if.h +6 -3
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_impl.cc +4 -2
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_impl.h +4 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_info.cc +322 -295
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_info.h +8 -17
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.cc +51 -33
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.h +7 -2
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_lookup.cc +128 -2
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_posix.h +1 -1
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/tzfile.h +5 -1
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/zone_info_source.cc +34 -34
- data/third_party/abseil-cpp/absl/time/time.cc +9 -2
- data/third_party/abseil-cpp/absl/time/time.h +115 -15
- data/third_party/abseil-cpp/absl/types/internal/optional.h +0 -52
- data/third_party/abseil-cpp/absl/types/internal/span.h +2 -2
- data/third_party/abseil-cpp/absl/types/internal/variant.h +2 -2
- data/third_party/abseil-cpp/absl/types/optional.h +15 -13
- data/third_party/abseil-cpp/absl/types/span.h +1 -2
- data/third_party/boringssl-with-bazel/err_data.c +554 -553
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_gentm.c +7 -3
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_mbstr.c +9 -8
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_strex.c +7 -7
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_strnid.c +6 -6
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_time.c +34 -1
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_utctm.c +11 -4
- data/third_party/boringssl-with-bazel/src/crypto/asn1/internal.h +3 -3
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_dec.c +10 -6
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_enc.c +7 -4
- data/third_party/boringssl-with-bazel/src/crypto/bio/bio.c +9 -7
- data/third_party/boringssl-with-bazel/src/crypto/bio/bio_mem.c +40 -55
- data/third_party/boringssl-with-bazel/src/crypto/bio/connect.c +7 -7
- data/third_party/boringssl-with-bazel/src/crypto/bio/errno.c +92 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/fd.c +14 -54
- data/third_party/boringssl-with-bazel/src/crypto/bio/file.c +23 -22
- data/third_party/boringssl-with-bazel/src/crypto/bio/internal.h +16 -6
- data/third_party/boringssl-with-bazel/src/crypto/bio/pair.c +4 -2
- data/third_party/boringssl-with-bazel/src/crypto/bio/socket.c +4 -4
- data/third_party/boringssl-with-bazel/src/crypto/bio/socket_helper.c +11 -2
- data/third_party/boringssl-with-bazel/src/crypto/blake2/blake2.c +31 -22
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/cbs.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/chacha/chacha.c +19 -1
- data/third_party/boringssl-with-bazel/src/crypto/chacha/internal.h +8 -1
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_tls.c +29 -26
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/internal.h +8 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/tls_cbc.c +189 -13
- data/third_party/boringssl-with-bazel/src/crypto/conf/conf.c +31 -192
- data/third_party/boringssl-with-bazel/src/crypto/conf/conf_def.h +3 -7
- data/third_party/boringssl-with-bazel/src/crypto/conf/internal.h +8 -0
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_apple.c +3 -2
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_fuchsia.c +0 -1
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_linux.c +0 -2
- data/third_party/boringssl-with-bazel/src/crypto/{cpu_aarch64_freebsd.c → cpu_aarch64_openbsd.c} +23 -24
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_sysreg.c +93 -0
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_win.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/cpu_arm_freebsd.c +0 -1
- data/third_party/boringssl-with-bazel/src/crypto/cpu_arm_linux.c +0 -2
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519.c +55 -50
- data/third_party/boringssl-with-bazel/src/crypto/{cpu_arm.c → curve25519/curve25519_64_adx.c} +4 -24
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519_tables.h +2834 -7442
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/internal.h +26 -8
- data/third_party/boringssl-with-bazel/src/crypto/dh_extra/dh_asn1.c +4 -0
- data/third_party/boringssl-with-bazel/src/crypto/dh_extra/params.c +5 -0
- data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa.c +4 -0
- data/third_party/boringssl-with-bazel/src/crypto/dsa/internal.h +20 -0
- data/third_party/boringssl-with-bazel/src/crypto/ec_extra/ec_asn1.c +110 -72
- data/third_party/boringssl-with-bazel/src/crypto/ec_extra/ec_derive.c +4 -3
- data/third_party/boringssl-with-bazel/src/crypto/ec_extra/hash_to_curve.c +42 -34
- data/third_party/boringssl-with-bazel/src/crypto/ec_extra/internal.h +17 -11
- data/third_party/boringssl-with-bazel/src/crypto/ecdh_extra/ecdh_extra.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/err/err.c +23 -21
- data/third_party/boringssl-with-bazel/src/crypto/evp/evp.c +35 -12
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_ec.c +2 -4
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_ec_asn1.c +3 -7
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_rsa.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/evp/pbkdf.c +3 -3
- data/third_party/boringssl-with-bazel/src/crypto/evp/print.c +7 -6
- data/third_party/boringssl-with-bazel/src/crypto/ex_data.c +34 -72
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm.c +2 -1
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div.c +12 -5
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/gcd.c +5 -6
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/internal.h +12 -6
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery.c +17 -18
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery_inv.c +51 -15
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/rsaz_exp.c +7 -7
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/delocate.h +5 -6
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/check.c +37 -8
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/dh.c +41 -19
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/internal.h +9 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/builtin_curves.h +277 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec.c +204 -428
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_key.c +4 -4
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_montgomery.c +31 -64
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/felem.c +17 -13
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/internal.h +105 -143
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/oct.c +19 -19
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p224-64.c +16 -18
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-nistz.c +27 -30
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256.c +23 -26
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256_table.h +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/scalar.c +24 -24
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/simple.c +21 -37
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/simple_mul.c +31 -31
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/wnaf.c +16 -16
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdh/ecdh.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/ecdsa.c +11 -5
- data/third_party/boringssl-with-bazel/src/crypto/{hkdf → fipsmodule/hkdf}/hkdf.c +2 -2
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/cbc.c +2 -10
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/ctr.c +1 -4
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/gcm.c +115 -133
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/gcm_nohw.c +12 -14
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/internal.h +57 -47
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/ofb.c +1 -8
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/polyval.c +27 -28
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/fork_detect.c +40 -26
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/internal.h +21 -7
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/rand.c +38 -19
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/urandom.c +2 -41
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/internal.h +76 -16
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/padding.c +5 -288
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa.c +143 -83
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa_impl.c +126 -233
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/self_check.c +113 -24
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/service_indicator/service_indicator.c +4 -7
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/tls/internal.h +8 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/tls/kdf.c +33 -0
- data/third_party/boringssl-with-bazel/src/crypto/hpke/hpke.c +169 -6
- data/third_party/boringssl-with-bazel/src/crypto/internal.h +216 -87
- data/third_party/boringssl-with-bazel/src/crypto/kyber/internal.h +32 -2
- data/third_party/boringssl-with-bazel/src/crypto/kyber/keccak.c +11 -12
- data/third_party/boringssl-with-bazel/src/crypto/kyber/kyber.c +834 -0
- data/third_party/boringssl-with-bazel/src/crypto/mem.c +7 -8
- data/third_party/boringssl-with-bazel/src/crypto/obj/obj.c +25 -46
- data/third_party/boringssl-with-bazel/src/crypto/obj/obj_dat.h +6 -13
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_lib.c +18 -14
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/internal.h +3 -3
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/p5_pbev2.c +3 -3
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8.c +7 -7
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8_x509.c +8 -5
- data/third_party/boringssl-with-bazel/src/crypto/pool/internal.h +1 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/deterministic.c +7 -6
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/forkunsafe.c +6 -12
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/getentropy.c +52 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/{fuchsia.c → ios.c} +8 -8
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/trusty.c +38 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/windows.c +41 -19
- data/third_party/boringssl-with-bazel/src/crypto/{refcount_c11.c → refcount.c} +11 -17
- data/third_party/boringssl-with-bazel/src/crypto/rsa_extra/internal.h +77 -0
- data/third_party/boringssl-with-bazel/src/crypto/rsa_extra/rsa_crypt.c +568 -0
- data/third_party/boringssl-with-bazel/src/crypto/stack/stack.c +152 -72
- data/third_party/boringssl-with-bazel/src/crypto/thread_none.c +0 -8
- data/third_party/boringssl-with-bazel/src/crypto/thread_pthread.c +6 -35
- data/third_party/boringssl-with-bazel/src/crypto/thread_win.c +5 -26
- data/third_party/boringssl-with-bazel/src/crypto/trust_token/internal.h +62 -0
- data/third_party/boringssl-with-bazel/src/crypto/trust_token/pmbtoken.c +240 -72
- data/third_party/boringssl-with-bazel/src/crypto/trust_token/trust_token.c +35 -0
- data/third_party/boringssl-with-bazel/src/crypto/trust_token/voprf.c +588 -130
- data/third_party/boringssl-with-bazel/src/crypto/x509/a_sign.c +27 -18
- data/third_party/boringssl-with-bazel/src/crypto/x509/asn1_gen.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/x509/by_dir.c +10 -20
- data/third_party/boringssl-with-bazel/src/crypto/x509/by_file.c +0 -3
- data/third_party/boringssl-with-bazel/src/crypto/x509/internal.h +3 -2
- data/third_party/boringssl-with-bazel/src/crypto/x509/name_print.c +17 -39
- data/third_party/boringssl-with-bazel/src/crypto/x509/policy.c +18 -14
- data/third_party/boringssl-with-bazel/src/crypto/x509/t_x509.c +39 -48
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_att.c +1 -141
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_d2.c +1 -3
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_lu.c +19 -25
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_req.c +72 -23
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_trs.c +8 -4
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_v3.c +8 -12
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vfy.c +22 -24
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vpm.c +1 -72
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509name.c +22 -29
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509spki.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_crl.c +9 -7
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_name.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_pubkey.c +7 -7
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_x509a.c +2 -2
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/internal.h +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_alt.c +2 -3
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_conf.c +33 -46
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_cpols.c +1 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_info.c +3 -5
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_lib.c +20 -52
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_prn.c +14 -26
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_purp.c +11 -9
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_skey.c +17 -10
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_utl.c +5 -3
- data/third_party/boringssl-with-bazel/src/include/openssl/aead.h +5 -7
- data/third_party/boringssl-with-bazel/src/include/openssl/arm_arch.h +4 -119
- data/third_party/boringssl-with-bazel/src/include/openssl/asm_base.h +207 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/asn1.h +11 -4
- data/third_party/boringssl-with-bazel/src/include/openssl/base.h +37 -112
- data/third_party/boringssl-with-bazel/src/include/openssl/bio.h +19 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/blake2.h +1 -4
- data/third_party/boringssl-with-bazel/src/include/openssl/bn.h +0 -2
- data/third_party/boringssl-with-bazel/src/include/openssl/chacha.h +6 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/conf.h +5 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/dh.h +4 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/dsa.h +0 -21
- data/third_party/boringssl-with-bazel/src/include/openssl/ec.h +28 -11
- data/third_party/boringssl-with-bazel/src/include/openssl/ec_key.h +19 -6
- data/third_party/boringssl-with-bazel/src/include/openssl/evp.h +14 -10
- data/third_party/boringssl-with-bazel/src/include/openssl/hpke.h +34 -2
- data/third_party/boringssl-with-bazel/src/include/openssl/kyber.h +128 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/nid.h +2 -11
- data/third_party/boringssl-with-bazel/src/include/openssl/obj.h +8 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/pem.h +0 -3
- data/third_party/boringssl-with-bazel/src/include/openssl/rand.h +13 -14
- data/third_party/boringssl-with-bazel/src/include/openssl/rsa.h +91 -62
- data/third_party/boringssl-with-bazel/src/include/openssl/span.h +26 -19
- data/third_party/boringssl-with-bazel/src/include/openssl/ssl.h +275 -96
- data/third_party/boringssl-with-bazel/src/include/openssl/stack.h +242 -223
- data/third_party/boringssl-with-bazel/src/include/openssl/target.h +201 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/thread.h +1 -25
- data/third_party/boringssl-with-bazel/src/include/openssl/tls1.h +4 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/trust_token.h +8 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/x509.h +760 -614
- data/third_party/boringssl-with-bazel/src/include/openssl/x509v3.h +45 -12
- data/third_party/boringssl-with-bazel/src/ssl/encrypted_client_hello.cc +11 -6
- data/third_party/boringssl-with-bazel/src/ssl/extensions.cc +10 -68
- data/third_party/boringssl-with-bazel/src/ssl/handoff.cc +20 -20
- data/third_party/boringssl-with-bazel/src/ssl/handshake_client.cc +33 -18
- data/third_party/boringssl-with-bazel/src/ssl/handshake_server.cc +1 -1
- data/third_party/boringssl-with-bazel/src/ssl/internal.h +86 -46
- data/third_party/boringssl-with-bazel/src/ssl/s3_both.cc +37 -18
- data/third_party/boringssl-with-bazel/src/ssl/ssl_asn1.cc +8 -4
- data/third_party/boringssl-with-bazel/src/ssl/ssl_cipher.cc +209 -209
- data/third_party/boringssl-with-bazel/src/ssl/ssl_file.cc +6 -6
- data/third_party/boringssl-with-bazel/src/ssl/ssl_key_share.cc +76 -118
- data/third_party/boringssl-with-bazel/src/ssl/ssl_lib.cc +209 -33
- data/third_party/boringssl-with-bazel/src/ssl/ssl_privkey.cc +17 -4
- data/third_party/boringssl-with-bazel/src/ssl/ssl_session.cc +19 -21
- data/third_party/boringssl-with-bazel/src/ssl/ssl_versions.cc +27 -19
- data/third_party/boringssl-with-bazel/src/ssl/tls13_both.cc +2 -1
- data/third_party/boringssl-with-bazel/src/ssl/tls13_client.cc +2 -3
- data/third_party/boringssl-with-bazel/src/ssl/tls13_enc.cc +5 -21
- data/third_party/boringssl-with-bazel/src/ssl/tls13_server.cc +5 -2
- data/third_party/boringssl-with-bazel/src/third_party/fiat/curve25519_64_adx.h +691 -0
- data/third_party/boringssl-with-bazel/src/third_party/fiat/curve25519_64_msvc.h +1281 -0
- data/third_party/boringssl-with-bazel/src/third_party/fiat/p256_64_msvc.h +2002 -0
- data/third_party/cares/cares/include/ares.h +23 -1
- data/third_party/cares/cares/{src/lib → include}/ares_nameser.h +9 -7
- data/third_party/cares/cares/include/ares_rules.h +2 -2
- data/third_party/cares/cares/include/ares_version.h +3 -3
- data/third_party/cares/cares/src/lib/ares__addrinfo2hostent.c +266 -0
- data/third_party/cares/cares/src/lib/ares__addrinfo_localhost.c +240 -0
- data/third_party/cares/cares/src/lib/ares__parse_into_addrinfo.c +49 -80
- data/third_party/cares/cares/src/lib/ares__readaddrinfo.c +37 -43
- data/third_party/cares/cares/src/lib/ares__sortaddrinfo.c +12 -4
- data/third_party/cares/cares/src/lib/ares_data.c +16 -0
- data/third_party/cares/cares/src/lib/ares_data.h +7 -0
- data/third_party/cares/cares/src/lib/ares_destroy.c +8 -0
- data/third_party/cares/cares/src/lib/ares_expand_name.c +17 -6
- data/third_party/cares/cares/src/lib/ares_freeaddrinfo.c +1 -0
- data/third_party/cares/cares/src/lib/ares_getaddrinfo.c +156 -78
- data/third_party/cares/cares/src/lib/ares_gethostbyname.c +130 -326
- data/third_party/cares/cares/src/lib/ares_init.c +97 -485
- data/third_party/cares/cares/src/lib/ares_library_init.c +2 -89
- data/third_party/cares/cares/src/lib/ares_parse_a_reply.c +23 -142
- data/third_party/cares/cares/src/lib/ares_parse_aaaa_reply.c +22 -142
- data/third_party/cares/cares/src/lib/ares_parse_uri_reply.c +184 -0
- data/third_party/cares/cares/src/lib/ares_private.h +30 -16
- data/third_party/cares/cares/src/lib/ares_process.c +55 -16
- data/third_party/cares/cares/src/lib/ares_query.c +1 -35
- data/third_party/cares/cares/src/lib/ares_rand.c +279 -0
- data/third_party/cares/cares/src/lib/ares_send.c +5 -7
- data/third_party/cares/cares/src/lib/ares_strdup.c +12 -19
- data/third_party/cares/cares/src/lib/ares_strsplit.c +44 -128
- data/third_party/cares/cares/src/lib/ares_strsplit.h +9 -10
- data/third_party/cares/cares/src/lib/inet_net_pton.c +78 -116
- data/third_party/cares/cares/src/tools/ares_getopt.h +53 -0
- data/third_party/upb/upb/{table_internal.h → alloc.h} +6 -6
- data/third_party/upb/upb/arena.h +4 -193
- data/third_party/upb/upb/array.h +4 -51
- data/third_party/upb/upb/base/descriptor_constants.h +104 -0
- data/third_party/upb/upb/base/log2.h +57 -0
- data/third_party/upb/upb/{status.c → base/status.c} +2 -7
- data/third_party/upb/upb/base/status.h +66 -0
- data/third_party/upb/upb/base/string_view.h +75 -0
- data/third_party/upb/upb/{array.c → collections/array.c} +73 -36
- data/third_party/upb/upb/collections/array.h +91 -0
- data/third_party/upb/upb/collections/array_internal.h +135 -0
- data/third_party/upb/upb/{map.c → collections/map.c} +60 -26
- data/third_party/upb/upb/collections/map.h +140 -0
- data/third_party/upb/upb/collections/map_gencode_util.h +78 -0
- data/third_party/upb/upb/collections/map_internal.h +170 -0
- data/third_party/upb/upb/collections/map_sorter.c +166 -0
- data/third_party/upb/upb/collections/map_sorter_internal.h +109 -0
- data/third_party/upb/upb/{message_value.h → collections/message_value.h} +19 -13
- data/third_party/upb/upb/decode.h +3 -62
- data/third_party/upb/upb/def.h +4 -384
- data/third_party/upb/upb/def.hpp +3 -411
- data/third_party/upb/upb/encode.h +3 -48
- data/third_party/upb/upb/extension_registry.h +3 -52
- data/third_party/upb/upb/generated_code_support.h +54 -0
- data/third_party/upb/upb/{table.c → hash/common.c} +55 -108
- data/third_party/upb/upb/hash/common.h +200 -0
- data/third_party/upb/upb/hash/int_table.h +102 -0
- data/third_party/upb/upb/hash/str_table.h +162 -0
- data/third_party/upb/upb/{json_decode.c → json/decode.c} +63 -98
- data/third_party/upb/upb/{json_decode.h → json/decode.h} +8 -3
- data/third_party/upb/upb/{json_encode.c → json/encode.c} +69 -45
- data/third_party/upb/upb/{json_encode.h → json/encode.h} +8 -3
- data/third_party/upb/upb/lex/atoi.c +68 -0
- data/third_party/upb/upb/lex/atoi.h +53 -0
- data/third_party/upb/upb/{upb.c → lex/round_trip.c} +2 -11
- data/third_party/upb/upb/{internal/upb.h → lex/round_trip.h} +17 -30
- data/third_party/upb/upb/lex/strtod.c +97 -0
- data/third_party/upb/upb/lex/strtod.h +46 -0
- data/third_party/upb/upb/lex/unicode.c +57 -0
- data/third_party/upb/upb/lex/unicode.h +77 -0
- data/third_party/upb/upb/map.h +4 -85
- data/third_party/upb/upb/mem/alloc.c +47 -0
- data/third_party/upb/upb/mem/alloc.h +98 -0
- data/third_party/upb/upb/mem/arena.c +367 -0
- data/third_party/upb/upb/mem/arena.h +160 -0
- data/third_party/upb/upb/mem/arena_internal.h +114 -0
- data/third_party/upb/upb/message/accessors.c +92 -0
- data/third_party/upb/upb/message/accessors.h +400 -0
- data/third_party/upb/upb/message/accessors_internal.h +391 -0
- data/third_party/upb/upb/message/extension_internal.h +83 -0
- data/third_party/upb/upb/message/internal/map_entry.h +64 -0
- data/third_party/upb/upb/message/internal.h +131 -0
- data/third_party/upb/upb/message/message.c +174 -0
- data/third_party/upb/upb/message/message.h +69 -0
- data/third_party/upb/upb/message/tagged_ptr.h +89 -0
- data/third_party/upb/upb/mini_descriptor/build_enum.c +150 -0
- data/third_party/upb/upb/mini_descriptor/build_enum.h +63 -0
- data/third_party/upb/upb/mini_descriptor/decode.c +875 -0
- data/third_party/upb/upb/mini_descriptor/decode.h +140 -0
- data/third_party/upb/upb/mini_descriptor/internal/base92.c +46 -0
- data/third_party/upb/upb/mini_descriptor/internal/base92.h +81 -0
- data/third_party/upb/upb/mini_descriptor/internal/decoder.h +73 -0
- data/third_party/upb/upb/mini_descriptor/internal/encode.c +326 -0
- data/third_party/upb/upb/mini_descriptor/internal/encode.h +110 -0
- data/third_party/upb/upb/{mini_table.hpp → mini_descriptor/internal/encode.hpp} +32 -8
- data/third_party/upb/upb/mini_descriptor/internal/modifiers.h +50 -0
- data/third_party/upb/upb/mini_descriptor/internal/wire_constants.h +91 -0
- data/third_party/upb/upb/mini_descriptor/link.c +142 -0
- data/third_party/upb/upb/mini_descriptor/link.h +104 -0
- data/third_party/upb/upb/mini_table/enum.h +50 -0
- data/third_party/upb/upb/mini_table/extension.h +40 -0
- data/third_party/upb/upb/{extension_registry.c → mini_table/extension_registry.c} +27 -24
- data/third_party/upb/upb/mini_table/extension_registry.h +105 -0
- data/third_party/upb/upb/mini_table/field.h +118 -0
- data/third_party/upb/upb/{collections.h → mini_table/file.h} +6 -7
- data/third_party/upb/upb/mini_table/internal/enum.h +76 -0
- data/third_party/upb/upb/mini_table/internal/extension.h +47 -0
- data/third_party/upb/upb/mini_table/internal/field.h +136 -0
- data/third_party/upb/upb/mini_table/internal/file.h +49 -0
- data/third_party/upb/upb/mini_table/internal/message.c +39 -0
- data/third_party/upb/upb/mini_table/internal/message.h +113 -0
- data/third_party/upb/upb/mini_table/internal/sub.h +39 -0
- data/third_party/upb/upb/mini_table/message.c +97 -0
- data/third_party/upb/upb/mini_table/message.h +105 -0
- data/third_party/upb/upb/mini_table/sub.h +35 -0
- data/third_party/upb/upb/msg.h +3 -38
- data/third_party/upb/upb/port/atomic.h +101 -0
- data/third_party/upb/upb/{port_def.inc → port/def.inc} +94 -27
- data/third_party/upb/upb/{port_undef.inc → port/undef.inc} +13 -3
- data/third_party/upb/upb/{internal → port}/vsnprintf_compat.h +5 -7
- data/third_party/upb/upb/reflection/common.h +67 -0
- data/third_party/upb/upb/reflection/def.h +42 -0
- data/third_party/upb/upb/reflection/def.hpp +622 -0
- data/third_party/upb/upb/reflection/def_builder.c +357 -0
- data/third_party/upb/upb/reflection/def_builder_internal.h +157 -0
- data/third_party/upb/upb/reflection/def_pool.c +462 -0
- data/third_party/upb/upb/reflection/def_pool.h +108 -0
- data/third_party/upb/upb/reflection/def_pool_internal.h +77 -0
- data/third_party/upb/upb/reflection/def_type.c +50 -0
- data/third_party/upb/upb/reflection/def_type.h +81 -0
- data/third_party/upb/upb/reflection/desc_state.c +53 -0
- data/third_party/upb/upb/reflection/desc_state_internal.h +64 -0
- data/third_party/upb/upb/reflection/enum_def.c +310 -0
- data/third_party/upb/upb/reflection/enum_def.h +80 -0
- data/third_party/upb/upb/reflection/enum_def_internal.h +56 -0
- data/third_party/upb/upb/reflection/enum_reserved_range.c +84 -0
- data/third_party/upb/upb/reflection/enum_reserved_range.h +51 -0
- data/third_party/upb/upb/reflection/enum_reserved_range_internal.h +55 -0
- data/third_party/upb/upb/reflection/enum_value_def.c +144 -0
- data/third_party/upb/upb/reflection/enum_value_def.h +57 -0
- data/third_party/upb/upb/reflection/enum_value_def_internal.h +57 -0
- data/third_party/upb/upb/reflection/extension_range.c +93 -0
- data/third_party/upb/upb/reflection/extension_range.h +55 -0
- data/third_party/upb/upb/reflection/extension_range_internal.h +54 -0
- data/third_party/upb/upb/reflection/field_def.c +931 -0
- data/third_party/upb/upb/reflection/field_def.h +91 -0
- data/third_party/upb/upb/reflection/field_def_internal.h +76 -0
- data/third_party/upb/upb/reflection/file_def.c +370 -0
- data/third_party/upb/upb/reflection/file_def.h +77 -0
- data/third_party/upb/upb/reflection/file_def_internal.h +57 -0
- data/third_party/upb/upb/reflection/message.c +233 -0
- data/third_party/upb/upb/reflection/message.h +102 -0
- data/third_party/upb/upb/reflection/message.hpp +37 -0
- data/third_party/upb/upb/reflection/message_def.c +720 -0
- data/third_party/upb/upb/reflection/message_def.h +174 -0
- data/third_party/upb/upb/reflection/message_def_internal.h +63 -0
- data/third_party/upb/upb/reflection/message_reserved_range.c +81 -0
- data/third_party/upb/upb/reflection/message_reserved_range.h +51 -0
- data/third_party/upb/upb/reflection/message_reserved_range_internal.h +55 -0
- data/third_party/upb/upb/reflection/method_def.c +124 -0
- data/third_party/upb/upb/reflection/method_def.h +59 -0
- data/third_party/upb/upb/reflection/method_def_internal.h +53 -0
- data/third_party/upb/upb/reflection/oneof_def.c +226 -0
- data/third_party/upb/upb/reflection/oneof_def.h +66 -0
- data/third_party/upb/upb/reflection/oneof_def_internal.h +57 -0
- data/third_party/upb/upb/reflection/service_def.c +128 -0
- data/third_party/upb/upb/reflection/service_def.h +60 -0
- data/third_party/upb/upb/reflection/service_def_internal.h +53 -0
- data/third_party/upb/upb/reflection.h +4 -78
- data/third_party/upb/upb/reflection.hpp +3 -7
- data/third_party/upb/upb/status.h +4 -34
- data/third_party/upb/upb/string_view.h +36 -0
- data/third_party/upb/upb/{text_encode.c → text/encode.c} +74 -70
- data/third_party/upb/upb/text/encode.h +69 -0
- data/third_party/upb/upb/text_encode.h +4 -32
- data/third_party/upb/upb/upb.h +6 -151
- data/third_party/upb/upb/upb.hpp +10 -18
- data/third_party/upb/upb/wire/common.h +44 -0
- data/third_party/upb/upb/wire/common_internal.h +50 -0
- data/third_party/upb/upb/wire/decode.c +1382 -0
- data/third_party/upb/upb/wire/decode.h +148 -0
- data/third_party/upb/upb/{decode_fast.c → wire/decode_fast.c} +184 -225
- data/third_party/upb/upb/{decode_fast.h → wire/decode_fast.h} +21 -7
- data/third_party/upb/upb/{internal/decode.h → wire/decode_internal.h} +44 -92
- data/third_party/upb/upb/{encode.c → wire/encode.c} +134 -105
- data/third_party/upb/upb/wire/encode.h +92 -0
- data/third_party/upb/upb/wire/eps_copy_input_stream.c +39 -0
- data/third_party/upb/upb/wire/eps_copy_input_stream.h +425 -0
- data/third_party/upb/upb/wire/reader.c +67 -0
- data/third_party/upb/upb/wire/reader.h +227 -0
- data/third_party/upb/upb/wire/swap_internal.h +63 -0
- data/third_party/upb/upb/wire/types.h +41 -0
- data/third_party/{upb/third_party/utf8_range → utf8_range}/range2-neon.c +1 -1
- data/third_party/{upb/third_party/utf8_range → utf8_range}/utf8_range.h +12 -0
- metadata +286 -87
- data/src/core/ext/filters/client_channel/health/health_check_client.cc +0 -175
- data/src/core/ext/filters/client_channel/health/health_check_client.h +0 -43
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_attributes.cc +0 -42
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_attributes.h +0 -64
- data/src/core/ext/transport/chttp2/transport/context_list.cc +0 -71
- data/src/core/ext/transport/chttp2/transport/context_list.h +0 -54
- data/src/core/ext/transport/chttp2/transport/stream_map.cc +0 -177
- data/src/core/ext/transport/chttp2/transport/stream_map.h +0 -68
- data/src/core/lib/event_engine/thread_pool.cc +0 -253
- data/src/core/lib/event_engine/thread_pool.h +0 -141
- data/src/core/lib/promise/detail/basic_join.h +0 -197
- data/src/core/lib/promise/detail/switch.h +0 -1455
- data/src/core/lib/promise/try_join.h +0 -82
- data/third_party/abseil-cpp/absl/synchronization/internal/waiter.cc +0 -403
- data/third_party/boringssl-with-bazel/src/crypto/refcount_lock.c +0 -52
- data/third_party/cares/cares/src/lib/ares_library_init.h +0 -43
- data/third_party/re2/util/benchmark.h +0 -156
- data/third_party/re2/util/flags.h +0 -26
- data/third_party/re2/util/malloc_counter.h +0 -19
- data/third_party/re2/util/pcre.cc +0 -1025
- data/third_party/re2/util/pcre.h +0 -681
- data/third_party/re2/util/test.h +0 -50
- data/third_party/upb/upb/arena.c +0 -277
- data/third_party/upb/upb/decode.c +0 -1221
- data/third_party/upb/upb/def.c +0 -3269
- data/third_party/upb/upb/internal/table.h +0 -385
- data/third_party/upb/upb/mini_table.c +0 -1147
- data/third_party/upb/upb/mini_table.h +0 -189
- data/third_party/upb/upb/msg.c +0 -368
- data/third_party/upb/upb/msg_internal.h +0 -837
- data/third_party/upb/upb/reflection.c +0 -323
- data/third_party/zlib/gzclose.c +0 -25
- data/third_party/zlib/gzlib.c +0 -639
- data/third_party/zlib/gzread.c +0 -650
- data/third_party/zlib/gzwrite.c +0 -677
- /data/third_party/{upb/third_party/utf8_range → utf8_range}/naive.c +0 -0
- /data/third_party/{upb/third_party/utf8_range → utf8_range}/range2-sse.c +0 -0
@@ -0,0 +1,2052 @@
|
|
1
|
+
// Copyright 2023 gRPC authors.
|
2
|
+
//
|
3
|
+
// Licensed under the Apache License, Version 2.0 (the "License");
|
4
|
+
// you may not use this file except in compliance with the License.
|
5
|
+
// You may obtain a copy of the License at
|
6
|
+
//
|
7
|
+
// http://www.apache.org/licenses/LICENSE-2.0
|
8
|
+
//
|
9
|
+
// Unless required by applicable law or agreed to in writing, software
|
10
|
+
// distributed under the License is distributed on an "AS IS" BASIS,
|
11
|
+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
12
|
+
// See the License for the specific language governing permissions and
|
13
|
+
// limitations under the License.
|
14
|
+
|
15
|
+
#include <grpc/support/port_platform.h>
|
16
|
+
|
17
|
+
#include "src/core/ext/filters/client_channel/retry_filter_legacy_call_data.h"
|
18
|
+
|
19
|
+
#include <inttypes.h>
|
20
|
+
|
21
|
+
#include <memory>
|
22
|
+
#include <new>
|
23
|
+
#include <string>
|
24
|
+
|
25
|
+
#include "absl/status/status.h"
|
26
|
+
#include "absl/strings/str_cat.h"
|
27
|
+
|
28
|
+
#include <grpc/support/log.h>
|
29
|
+
|
30
|
+
#include "src/core/ext/filters/client_channel/client_channel_internal.h"
|
31
|
+
#include "src/core/ext/filters/client_channel/retry_service_config.h"
|
32
|
+
#include "src/core/ext/filters/client_channel/retry_throttle.h"
|
33
|
+
#include "src/core/lib/backoff/backoff.h"
|
34
|
+
#include "src/core/lib/channel/channel_stack.h"
|
35
|
+
#include "src/core/lib/channel/context.h"
|
36
|
+
#include "src/core/lib/channel/status_util.h"
|
37
|
+
#include "src/core/lib/debug/trace.h"
|
38
|
+
#include "src/core/lib/gpr/useful.h"
|
39
|
+
#include "src/core/lib/gprpp/construct_destruct.h"
|
40
|
+
#include "src/core/lib/gprpp/debug_location.h"
|
41
|
+
#include "src/core/lib/gprpp/orphanable.h"
|
42
|
+
#include "src/core/lib/gprpp/ref_counted.h"
|
43
|
+
#include "src/core/lib/gprpp/ref_counted_ptr.h"
|
44
|
+
#include "src/core/lib/gprpp/status_helper.h"
|
45
|
+
#include "src/core/lib/gprpp/time.h"
|
46
|
+
#include "src/core/lib/iomgr/call_combiner.h"
|
47
|
+
#include "src/core/lib/iomgr/closure.h"
|
48
|
+
#include "src/core/lib/iomgr/error.h"
|
49
|
+
#include "src/core/lib/iomgr/exec_ctx.h"
|
50
|
+
#include "src/core/lib/iomgr/polling_entity.h"
|
51
|
+
#include "src/core/lib/resource_quota/arena.h"
|
52
|
+
#include "src/core/lib/slice/slice.h"
|
53
|
+
#include "src/core/lib/slice/slice_buffer.h"
|
54
|
+
#include "src/core/lib/transport/error_utils.h"
|
55
|
+
#include "src/core/lib/transport/metadata_batch.h"
|
56
|
+
#include "src/core/lib/transport/transport.h"
|
57
|
+
|
58
|
+
namespace grpc_core {
|
59
|
+
|
60
|
+
//
|
61
|
+
// RetryFilter::LegacyCallData::CallStackDestructionBarrier
|
62
|
+
//
|
63
|
+
|
64
|
+
// A class to track the existence of LoadBalancedCall call stacks that
|
65
|
+
// we've created. We wait until all such call stacks have been
|
66
|
+
// destroyed before we return the on_call_stack_destruction closure up
|
67
|
+
// to the surface.
|
68
|
+
//
|
69
|
+
// The parent RetryFilter::LegacyCallData object holds a ref to this object.
|
70
|
+
// When it is destroyed, it will store the on_call_stack_destruction
|
71
|
+
// closure from the surface in this object and then release its ref.
|
72
|
+
// We also take a ref to this object for each LB call we create, and
|
73
|
+
// those refs are not released until the LB call stack is destroyed.
|
74
|
+
// When this object is destroyed, it will invoke the
|
75
|
+
// on_call_stack_destruction closure from the surface.
|
76
|
+
class RetryFilter::LegacyCallData::CallStackDestructionBarrier
|
77
|
+
: public RefCounted<CallStackDestructionBarrier, PolymorphicRefCount,
|
78
|
+
UnrefCallDtor> {
|
79
|
+
public:
|
80
|
+
CallStackDestructionBarrier() {}
|
81
|
+
|
82
|
+
~CallStackDestructionBarrier() override {
|
83
|
+
// TODO(yashkt) : This can potentially be a Closure::Run
|
84
|
+
ExecCtx::Run(DEBUG_LOCATION, on_call_stack_destruction_, absl::OkStatus());
|
85
|
+
}
|
86
|
+
|
87
|
+
// Set the closure from the surface. This closure will be invoked
|
88
|
+
// when this object is destroyed.
|
89
|
+
void set_on_call_stack_destruction(grpc_closure* on_call_stack_destruction) {
|
90
|
+
on_call_stack_destruction_ = on_call_stack_destruction;
|
91
|
+
}
|
92
|
+
|
93
|
+
// Invoked to get an on_call_stack_destruction closure for a new LB call.
|
94
|
+
grpc_closure* MakeLbCallDestructionClosure(
|
95
|
+
RetryFilter::LegacyCallData* calld) {
|
96
|
+
Ref().release(); // Ref held by callback.
|
97
|
+
grpc_closure* on_lb_call_destruction_complete =
|
98
|
+
calld->arena_->New<grpc_closure>();
|
99
|
+
GRPC_CLOSURE_INIT(on_lb_call_destruction_complete,
|
100
|
+
OnLbCallDestructionComplete, this, nullptr);
|
101
|
+
return on_lb_call_destruction_complete;
|
102
|
+
}
|
103
|
+
|
104
|
+
private:
|
105
|
+
static void OnLbCallDestructionComplete(void* arg,
|
106
|
+
grpc_error_handle /*error*/) {
|
107
|
+
auto* self = static_cast<CallStackDestructionBarrier*>(arg);
|
108
|
+
self->Unref();
|
109
|
+
}
|
110
|
+
|
111
|
+
grpc_closure* on_call_stack_destruction_ = nullptr;
|
112
|
+
};
|
113
|
+
|
114
|
+
//
|
115
|
+
// RetryFilter::LegacyCallData::CallAttempt
|
116
|
+
//
|
117
|
+
|
118
|
+
RetryFilter::LegacyCallData::CallAttempt::CallAttempt(
|
119
|
+
RetryFilter::LegacyCallData* calld, bool is_transparent_retry)
|
120
|
+
: RefCounted(GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace) ? "CallAttempt"
|
121
|
+
: nullptr),
|
122
|
+
calld_(calld),
|
123
|
+
batch_payload_(calld->call_context_),
|
124
|
+
started_send_initial_metadata_(false),
|
125
|
+
completed_send_initial_metadata_(false),
|
126
|
+
started_send_trailing_metadata_(false),
|
127
|
+
completed_send_trailing_metadata_(false),
|
128
|
+
started_recv_initial_metadata_(false),
|
129
|
+
completed_recv_initial_metadata_(false),
|
130
|
+
started_recv_trailing_metadata_(false),
|
131
|
+
completed_recv_trailing_metadata_(false),
|
132
|
+
sent_cancel_stream_(false),
|
133
|
+
seen_recv_trailing_metadata_from_surface_(false),
|
134
|
+
abandoned_(false) {
|
135
|
+
lb_call_ = calld->CreateLoadBalancedCall(
|
136
|
+
[this]() {
|
137
|
+
lb_call_committed_ = true;
|
138
|
+
if (calld_->retry_committed_) {
|
139
|
+
auto* service_config_call_data =
|
140
|
+
static_cast<ClientChannelServiceConfigCallData*>(
|
141
|
+
calld_->call_context_[GRPC_CONTEXT_SERVICE_CONFIG_CALL_DATA]
|
142
|
+
.value);
|
143
|
+
service_config_call_data->Commit();
|
144
|
+
}
|
145
|
+
},
|
146
|
+
is_transparent_retry);
|
147
|
+
if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
|
148
|
+
gpr_log(GPR_INFO,
|
149
|
+
"chand=%p calld=%p attempt=%p: created attempt, lb_call=%p",
|
150
|
+
calld->chand_, calld, this, lb_call_.get());
|
151
|
+
}
|
152
|
+
// If per_attempt_recv_timeout is set, start a timer.
|
153
|
+
if (calld->retry_policy_ != nullptr &&
|
154
|
+
calld->retry_policy_->per_attempt_recv_timeout().has_value()) {
|
155
|
+
const Duration per_attempt_recv_timeout =
|
156
|
+
*calld->retry_policy_->per_attempt_recv_timeout();
|
157
|
+
if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
|
158
|
+
gpr_log(GPR_INFO,
|
159
|
+
"chand=%p calld=%p attempt=%p: per-attempt timeout in %" PRId64
|
160
|
+
" ms",
|
161
|
+
calld->chand_, calld, this, per_attempt_recv_timeout.millis());
|
162
|
+
}
|
163
|
+
// Schedule retry after computed delay.
|
164
|
+
GRPC_CALL_STACK_REF(calld->owning_call_, "OnPerAttemptRecvTimer");
|
165
|
+
Ref(DEBUG_LOCATION, "OnPerAttemptRecvTimer").release();
|
166
|
+
per_attempt_recv_timer_handle_ = calld_->chand_->event_engine()->RunAfter(
|
167
|
+
per_attempt_recv_timeout, [this] {
|
168
|
+
ApplicationCallbackExecCtx callback_exec_ctx;
|
169
|
+
ExecCtx exec_ctx;
|
170
|
+
OnPerAttemptRecvTimer();
|
171
|
+
});
|
172
|
+
}
|
173
|
+
}
|
174
|
+
|
175
|
+
RetryFilter::LegacyCallData::CallAttempt::~CallAttempt() {
|
176
|
+
if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
|
177
|
+
gpr_log(GPR_INFO, "chand=%p calld=%p attempt=%p: destroying call attempt",
|
178
|
+
calld_->chand_, calld_, this);
|
179
|
+
}
|
180
|
+
}
|
181
|
+
|
182
|
+
void RetryFilter::LegacyCallData::CallAttempt::
|
183
|
+
FreeCachedSendOpDataAfterCommit() {
|
184
|
+
// TODO(roth): When we implement hedging, this logic will need to get
|
185
|
+
// a bit more complex, because there may be other (now abandoned) call
|
186
|
+
// attempts still using this data. We may need to do some sort of
|
187
|
+
// ref-counting instead.
|
188
|
+
if (completed_send_initial_metadata_) {
|
189
|
+
calld_->FreeCachedSendInitialMetadata();
|
190
|
+
}
|
191
|
+
for (size_t i = 0; i < completed_send_message_count_; ++i) {
|
192
|
+
calld_->FreeCachedSendMessage(i);
|
193
|
+
}
|
194
|
+
if (completed_send_trailing_metadata_) {
|
195
|
+
calld_->FreeCachedSendTrailingMetadata();
|
196
|
+
}
|
197
|
+
}
|
198
|
+
|
199
|
+
bool RetryFilter::LegacyCallData::CallAttempt::
|
200
|
+
PendingBatchContainsUnstartedSendOps(PendingBatch* pending) {
|
201
|
+
if (pending->batch->on_complete == nullptr) return false;
|
202
|
+
if (pending->batch->send_initial_metadata &&
|
203
|
+
!started_send_initial_metadata_) {
|
204
|
+
return true;
|
205
|
+
}
|
206
|
+
if (pending->batch->send_message &&
|
207
|
+
started_send_message_count_ < calld_->send_messages_.size()) {
|
208
|
+
return true;
|
209
|
+
}
|
210
|
+
if (pending->batch->send_trailing_metadata &&
|
211
|
+
!started_send_trailing_metadata_) {
|
212
|
+
return true;
|
213
|
+
}
|
214
|
+
return false;
|
215
|
+
}
|
216
|
+
|
217
|
+
bool RetryFilter::LegacyCallData::CallAttempt::HaveSendOpsToReplay() {
|
218
|
+
// We don't check send_initial_metadata here, because that op will always
|
219
|
+
// be started as soon as it is received from the surface, so it will
|
220
|
+
// never need to be started at this point.
|
221
|
+
return started_send_message_count_ < calld_->send_messages_.size() ||
|
222
|
+
(calld_->seen_send_trailing_metadata_ &&
|
223
|
+
!started_send_trailing_metadata_);
|
224
|
+
}
|
225
|
+
|
226
|
+
void RetryFilter::LegacyCallData::CallAttempt::MaybeSwitchToFastPath() {
|
227
|
+
// If we're not yet committed, we can't switch yet.
|
228
|
+
// TODO(roth): As part of implementing hedging, this logic needs to
|
229
|
+
// check that *this* call attempt is the one that we've committed to.
|
230
|
+
// Might need to replace abandoned_ with an enum indicating whether we're
|
231
|
+
// in flight, abandoned, or the winning call attempt.
|
232
|
+
if (!calld_->retry_committed_) return;
|
233
|
+
// If we've already switched to fast path, there's nothing to do here.
|
234
|
+
if (calld_->committed_call_ != nullptr) return;
|
235
|
+
// If the perAttemptRecvTimeout timer is pending, we can't switch yet.
|
236
|
+
if (per_attempt_recv_timer_handle_.has_value()) return;
|
237
|
+
// If there are still send ops to replay, we can't switch yet.
|
238
|
+
if (HaveSendOpsToReplay()) return;
|
239
|
+
// If we started an internal batch for recv_trailing_metadata but have not
|
240
|
+
// yet seen that op from the surface, we can't switch yet.
|
241
|
+
if (recv_trailing_metadata_internal_batch_ != nullptr) return;
|
242
|
+
// Switch to fast path.
|
243
|
+
if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
|
244
|
+
gpr_log(GPR_INFO,
|
245
|
+
"chand=%p calld=%p attempt=%p: retry state no longer needed; "
|
246
|
+
"moving LB call to parent and unreffing the call attempt",
|
247
|
+
calld_->chand_, calld_, this);
|
248
|
+
}
|
249
|
+
calld_->committed_call_ = std::move(lb_call_);
|
250
|
+
calld_->call_attempt_.reset(DEBUG_LOCATION, "MaybeSwitchToFastPath");
|
251
|
+
}
|
252
|
+
|
253
|
+
// If there are any cached send ops that need to be replayed on the
|
254
|
+
// current call attempt, creates and returns a new batch to replay those ops.
|
255
|
+
// Otherwise, returns nullptr.
|
256
|
+
RetryFilter::LegacyCallData::CallAttempt::BatchData*
|
257
|
+
RetryFilter::LegacyCallData::CallAttempt::MaybeCreateBatchForReplay() {
|
258
|
+
BatchData* replay_batch_data = nullptr;
|
259
|
+
// send_initial_metadata.
|
260
|
+
if (calld_->seen_send_initial_metadata_ && !started_send_initial_metadata_ &&
|
261
|
+
!calld_->pending_send_initial_metadata_) {
|
262
|
+
if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
|
263
|
+
gpr_log(GPR_INFO,
|
264
|
+
"chand=%p calld=%p attempt=%p: replaying previously completed "
|
265
|
+
"send_initial_metadata op",
|
266
|
+
calld_->chand_, calld_, this);
|
267
|
+
}
|
268
|
+
replay_batch_data = CreateBatch(1, true /* set_on_complete */);
|
269
|
+
replay_batch_data->AddRetriableSendInitialMetadataOp();
|
270
|
+
}
|
271
|
+
// send_message.
|
272
|
+
// Note that we can only have one send_message op in flight at a time.
|
273
|
+
if (started_send_message_count_ < calld_->send_messages_.size() &&
|
274
|
+
started_send_message_count_ == completed_send_message_count_ &&
|
275
|
+
!calld_->pending_send_message_) {
|
276
|
+
if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
|
277
|
+
gpr_log(GPR_INFO,
|
278
|
+
"chand=%p calld=%p attempt=%p: replaying previously completed "
|
279
|
+
"send_message op",
|
280
|
+
calld_->chand_, calld_, this);
|
281
|
+
}
|
282
|
+
if (replay_batch_data == nullptr) {
|
283
|
+
replay_batch_data = CreateBatch(1, true /* set_on_complete */);
|
284
|
+
}
|
285
|
+
replay_batch_data->AddRetriableSendMessageOp();
|
286
|
+
}
|
287
|
+
// send_trailing_metadata.
|
288
|
+
// Note that we only add this op if we have no more send_message ops
|
289
|
+
// to start, since we can't send down any more send_message ops after
|
290
|
+
// send_trailing_metadata.
|
291
|
+
if (calld_->seen_send_trailing_metadata_ &&
|
292
|
+
started_send_message_count_ == calld_->send_messages_.size() &&
|
293
|
+
!started_send_trailing_metadata_ &&
|
294
|
+
!calld_->pending_send_trailing_metadata_) {
|
295
|
+
if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
|
296
|
+
gpr_log(GPR_INFO,
|
297
|
+
"chand=%p calld=%p attempt=%p: replaying previously completed "
|
298
|
+
"send_trailing_metadata op",
|
299
|
+
calld_->chand_, calld_, this);
|
300
|
+
}
|
301
|
+
if (replay_batch_data == nullptr) {
|
302
|
+
replay_batch_data = CreateBatch(1, true /* set_on_complete */);
|
303
|
+
}
|
304
|
+
replay_batch_data->AddRetriableSendTrailingMetadataOp();
|
305
|
+
}
|
306
|
+
return replay_batch_data;
|
307
|
+
}
|
308
|
+
|
309
|
+
namespace {
|
310
|
+
|
311
|
+
void StartBatchInCallCombiner(void* arg, grpc_error_handle /*ignored*/) {
|
312
|
+
grpc_transport_stream_op_batch* batch =
|
313
|
+
static_cast<grpc_transport_stream_op_batch*>(arg);
|
314
|
+
auto* lb_call = static_cast<ClientChannel::FilterBasedLoadBalancedCall*>(
|
315
|
+
batch->handler_private.extra_arg);
|
316
|
+
// Note: This will release the call combiner.
|
317
|
+
lb_call->StartTransportStreamOpBatch(batch);
|
318
|
+
}
|
319
|
+
|
320
|
+
} // namespace
|
321
|
+
|
322
|
+
void RetryFilter::LegacyCallData::CallAttempt::AddClosureForBatch(
|
323
|
+
grpc_transport_stream_op_batch* batch, const char* reason,
|
324
|
+
CallCombinerClosureList* closures) {
|
325
|
+
if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
|
326
|
+
gpr_log(GPR_INFO, "chand=%p calld=%p attempt=%p: adding batch (%s): %s",
|
327
|
+
calld_->chand_, calld_, this, reason,
|
328
|
+
grpc_transport_stream_op_batch_string(batch, false).c_str());
|
329
|
+
}
|
330
|
+
batch->handler_private.extra_arg = lb_call_.get();
|
331
|
+
GRPC_CLOSURE_INIT(&batch->handler_private.closure, StartBatchInCallCombiner,
|
332
|
+
batch, grpc_schedule_on_exec_ctx);
|
333
|
+
closures->Add(&batch->handler_private.closure, absl::OkStatus(), reason);
|
334
|
+
}
|
335
|
+
|
336
|
+
void RetryFilter::LegacyCallData::CallAttempt::
|
337
|
+
AddBatchForInternalRecvTrailingMetadata(CallCombinerClosureList* closures) {
|
338
|
+
if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
|
339
|
+
gpr_log(GPR_INFO,
|
340
|
+
"chand=%p calld=%p attempt=%p: call failed but "
|
341
|
+
"recv_trailing_metadata not started; starting it internally",
|
342
|
+
calld_->chand_, calld_, this);
|
343
|
+
}
|
344
|
+
// Create batch_data with 2 refs, since this batch will be unreffed twice:
|
345
|
+
// once for the recv_trailing_metadata_ready callback when the batch
|
346
|
+
// completes, and again when we actually get a recv_trailing_metadata
|
347
|
+
// op from the surface.
|
348
|
+
BatchData* batch_data = CreateBatch(2, false /* set_on_complete */);
|
349
|
+
batch_data->AddRetriableRecvTrailingMetadataOp();
|
350
|
+
recv_trailing_metadata_internal_batch_.reset(batch_data);
|
351
|
+
AddClosureForBatch(batch_data->batch(),
|
352
|
+
"starting internal recv_trailing_metadata", closures);
|
353
|
+
}
|
354
|
+
|
355
|
+
void RetryFilter::LegacyCallData::CallAttempt::MaybeAddBatchForCancelOp(
|
356
|
+
grpc_error_handle error, CallCombinerClosureList* closures) {
|
357
|
+
if (sent_cancel_stream_) {
|
358
|
+
return;
|
359
|
+
}
|
360
|
+
sent_cancel_stream_ = true;
|
361
|
+
BatchData* cancel_batch_data = CreateBatch(1, /*set_on_complete=*/true);
|
362
|
+
cancel_batch_data->AddCancelStreamOp(error);
|
363
|
+
AddClosureForBatch(cancel_batch_data->batch(),
|
364
|
+
"start cancellation batch on call attempt", closures);
|
365
|
+
}
|
366
|
+
|
367
|
+
void RetryFilter::LegacyCallData::CallAttempt::AddBatchesForPendingBatches(
|
368
|
+
CallCombinerClosureList* closures) {
|
369
|
+
for (size_t i = 0; i < GPR_ARRAY_SIZE(calld_->pending_batches_); ++i) {
|
370
|
+
PendingBatch* pending = &calld_->pending_batches_[i];
|
371
|
+
grpc_transport_stream_op_batch* batch = pending->batch;
|
372
|
+
if (batch == nullptr) continue;
|
373
|
+
bool has_send_ops = false;
|
374
|
+
// Skip any batch that either (a) has already been started on this
|
375
|
+
// call attempt or (b) we can't start yet because we're still
|
376
|
+
// replaying send ops that need to be completed first.
|
377
|
+
// TODO(roth): Note that if any one op in the batch can't be sent
|
378
|
+
// yet due to ops that we're replaying, we don't start any of the ops
|
379
|
+
// in the batch. This is probably okay, but it could conceivably
|
380
|
+
// lead to increased latency in some cases -- e.g., we could delay
|
381
|
+
// starting a recv op due to it being in the same batch with a send
|
382
|
+
// op. If/when we revamp the callback protocol in
|
383
|
+
// transport_stream_op_batch, we may be able to fix this.
|
384
|
+
if (batch->send_initial_metadata) {
|
385
|
+
if (started_send_initial_metadata_) continue;
|
386
|
+
has_send_ops = true;
|
387
|
+
}
|
388
|
+
if (batch->send_message) {
|
389
|
+
// Cases where we can't start this send_message op:
|
390
|
+
// - We are currently replaying a previous cached send_message op.
|
391
|
+
// - We have already replayed all send_message ops, including this
|
392
|
+
// one. (This can happen if a send_message op is in the same
|
393
|
+
// batch as a recv op, the send_message op has already completed
|
394
|
+
// but the recv op hasn't, and then a subsequent batch with another
|
395
|
+
// recv op is started from the surface.)
|
396
|
+
if (completed_send_message_count_ < started_send_message_count_ ||
|
397
|
+
completed_send_message_count_ ==
|
398
|
+
(calld_->send_messages_.size() + !pending->send_ops_cached)) {
|
399
|
+
continue;
|
400
|
+
}
|
401
|
+
has_send_ops = true;
|
402
|
+
}
|
403
|
+
// Note that we only start send_trailing_metadata if we have no more
|
404
|
+
// send_message ops to start, since we can't send down any more
|
405
|
+
// send_message ops after send_trailing_metadata.
|
406
|
+
if (batch->send_trailing_metadata) {
|
407
|
+
if (started_send_message_count_ + batch->send_message <
|
408
|
+
calld_->send_messages_.size() ||
|
409
|
+
started_send_trailing_metadata_) {
|
410
|
+
continue;
|
411
|
+
}
|
412
|
+
has_send_ops = true;
|
413
|
+
}
|
414
|
+
int num_callbacks = has_send_ops; // All send ops share one callback.
|
415
|
+
if (batch->recv_initial_metadata) {
|
416
|
+
if (started_recv_initial_metadata_) continue;
|
417
|
+
++num_callbacks;
|
418
|
+
}
|
419
|
+
if (batch->recv_message) {
|
420
|
+
// Skip if the op is already in flight, or if it has already completed
|
421
|
+
// but the completion has not yet been sent to the surface.
|
422
|
+
if (completed_recv_message_count_ < started_recv_message_count_ ||
|
423
|
+
recv_message_ready_deferred_batch_ != nullptr) {
|
424
|
+
continue;
|
425
|
+
}
|
426
|
+
++num_callbacks;
|
427
|
+
}
|
428
|
+
if (batch->recv_trailing_metadata) {
|
429
|
+
if (started_recv_trailing_metadata_) {
|
430
|
+
seen_recv_trailing_metadata_from_surface_ = true;
|
431
|
+
// If we previously completed a recv_trailing_metadata op
|
432
|
+
// initiated by AddBatchForInternalRecvTrailingMetadata(), use the
|
433
|
+
// result of that instead of trying to re-start this op.
|
434
|
+
if (GPR_UNLIKELY(recv_trailing_metadata_internal_batch_ != nullptr)) {
|
435
|
+
// If the batch completed, then trigger the completion callback
|
436
|
+
// directly, so that we return the previously returned results to
|
437
|
+
// the application. Otherwise, just unref the internally started
|
438
|
+
// batch, since we'll propagate the completion when it completes.
|
439
|
+
if (completed_recv_trailing_metadata_) {
|
440
|
+
closures->Add(
|
441
|
+
&recv_trailing_metadata_ready_, recv_trailing_metadata_error_,
|
442
|
+
"re-executing recv_trailing_metadata_ready to propagate "
|
443
|
+
"internally triggered result");
|
444
|
+
// Ref will be released by callback.
|
445
|
+
recv_trailing_metadata_internal_batch_.release();
|
446
|
+
} else {
|
447
|
+
recv_trailing_metadata_internal_batch_.reset(
|
448
|
+
DEBUG_LOCATION,
|
449
|
+
"internally started recv_trailing_metadata batch pending and "
|
450
|
+
"recv_trailing_metadata started from surface");
|
451
|
+
}
|
452
|
+
recv_trailing_metadata_error_ = absl::OkStatus();
|
453
|
+
}
|
454
|
+
// We don't want the fact that we've already started this op internally
|
455
|
+
// to prevent us from adding a batch that may contain other ops.
|
456
|
+
// Instead, we'll just skip adding this op below.
|
457
|
+
if (num_callbacks == 0) continue;
|
458
|
+
} else {
|
459
|
+
++num_callbacks;
|
460
|
+
}
|
461
|
+
}
|
462
|
+
// If we're already committed and the following conditions are met,
|
463
|
+
// just send the batch down as-is:
|
464
|
+
// - The batch contains no cached send ops. (If it does, we need
|
465
|
+
// the logic below to use the cached payloads.)
|
466
|
+
// - The batch does not contain recv_trailing_metadata when we have
|
467
|
+
// already started an internal recv_trailing_metadata batch. (If
|
468
|
+
// we've already started an internal recv_trailing_metadata batch,
|
469
|
+
// then we need the logic below to send all ops in the batch
|
470
|
+
// *except* the recv_trailing_metadata op.)
|
471
|
+
if (calld_->retry_committed_ && !pending->send_ops_cached &&
|
472
|
+
(!batch->recv_trailing_metadata || !started_recv_trailing_metadata_)) {
|
473
|
+
AddClosureForBatch(
|
474
|
+
batch,
|
475
|
+
"start non-replayable pending batch on call attempt after commit",
|
476
|
+
closures);
|
477
|
+
calld_->PendingBatchClear(pending);
|
478
|
+
continue;
|
479
|
+
}
|
480
|
+
// Create batch with the right number of callbacks.
|
481
|
+
BatchData* batch_data =
|
482
|
+
CreateBatch(num_callbacks, has_send_ops /* set_on_complete */);
|
483
|
+
// Cache send ops if needed.
|
484
|
+
calld_->MaybeCacheSendOpsForBatch(pending);
|
485
|
+
// send_initial_metadata.
|
486
|
+
if (batch->send_initial_metadata) {
|
487
|
+
batch_data->AddRetriableSendInitialMetadataOp();
|
488
|
+
}
|
489
|
+
// send_message.
|
490
|
+
if (batch->send_message) {
|
491
|
+
batch_data->AddRetriableSendMessageOp();
|
492
|
+
}
|
493
|
+
// send_trailing_metadata.
|
494
|
+
if (batch->send_trailing_metadata) {
|
495
|
+
batch_data->AddRetriableSendTrailingMetadataOp();
|
496
|
+
}
|
497
|
+
// recv_initial_metadata.
|
498
|
+
if (batch->recv_initial_metadata) {
|
499
|
+
batch_data->AddRetriableRecvInitialMetadataOp();
|
500
|
+
}
|
501
|
+
// recv_message.
|
502
|
+
if (batch->recv_message) {
|
503
|
+
batch_data->AddRetriableRecvMessageOp();
|
504
|
+
}
|
505
|
+
// recv_trailing_metadata.
|
506
|
+
if (batch->recv_trailing_metadata && !started_recv_trailing_metadata_) {
|
507
|
+
batch_data->AddRetriableRecvTrailingMetadataOp();
|
508
|
+
}
|
509
|
+
AddClosureForBatch(batch_data->batch(),
|
510
|
+
"start replayable pending batch on call attempt",
|
511
|
+
closures);
|
512
|
+
}
|
513
|
+
}
|
514
|
+
|
515
|
+
void RetryFilter::LegacyCallData::CallAttempt::AddRetriableBatches(
|
516
|
+
CallCombinerClosureList* closures) {
|
517
|
+
// Replay previously-returned send_* ops if needed.
|
518
|
+
BatchData* replay_batch_data = MaybeCreateBatchForReplay();
|
519
|
+
if (replay_batch_data != nullptr) {
|
520
|
+
AddClosureForBatch(replay_batch_data->batch(),
|
521
|
+
"start replay batch on call attempt", closures);
|
522
|
+
}
|
523
|
+
// Now add pending batches.
|
524
|
+
AddBatchesForPendingBatches(closures);
|
525
|
+
}
|
526
|
+
|
527
|
+
void RetryFilter::LegacyCallData::CallAttempt::StartRetriableBatches() {
|
528
|
+
if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
|
529
|
+
gpr_log(GPR_INFO,
|
530
|
+
"chand=%p calld=%p attempt=%p: constructing retriable batches",
|
531
|
+
calld_->chand_, calld_, this);
|
532
|
+
}
|
533
|
+
// Construct list of closures to execute, one for each pending batch.
|
534
|
+
CallCombinerClosureList closures;
|
535
|
+
AddRetriableBatches(&closures);
|
536
|
+
// Note: This will yield the call combiner.
|
537
|
+
// Start batches on LB call.
|
538
|
+
if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
|
539
|
+
gpr_log(GPR_INFO,
|
540
|
+
"chand=%p calld=%p attempt=%p: starting %" PRIuPTR
|
541
|
+
" retriable batches on lb_call=%p",
|
542
|
+
calld_->chand_, calld_, this, closures.size(), lb_call_.get());
|
543
|
+
}
|
544
|
+
closures.RunClosures(calld_->call_combiner_);
|
545
|
+
}
|
546
|
+
|
547
|
+
void RetryFilter::LegacyCallData::CallAttempt::CancelFromSurface(
|
548
|
+
grpc_transport_stream_op_batch* cancel_batch) {
|
549
|
+
MaybeCancelPerAttemptRecvTimer();
|
550
|
+
Abandon();
|
551
|
+
// Propagate cancellation to LB call.
|
552
|
+
lb_call_->StartTransportStreamOpBatch(cancel_batch);
|
553
|
+
}
|
554
|
+
|
555
|
+
bool RetryFilter::LegacyCallData::CallAttempt::ShouldRetry(
|
556
|
+
absl::optional<grpc_status_code> status,
|
557
|
+
absl::optional<Duration> server_pushback) {
|
558
|
+
// If no retry policy, don't retry.
|
559
|
+
if (calld_->retry_policy_ == nullptr) return false;
|
560
|
+
// Check status.
|
561
|
+
if (status.has_value()) {
|
562
|
+
if (GPR_LIKELY(*status == GRPC_STATUS_OK)) {
|
563
|
+
if (calld_->retry_throttle_data_ != nullptr) {
|
564
|
+
calld_->retry_throttle_data_->RecordSuccess();
|
565
|
+
}
|
566
|
+
if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
|
567
|
+
gpr_log(GPR_INFO, "chand=%p calld=%p attempt=%p: call succeeded",
|
568
|
+
calld_->chand_, calld_, this);
|
569
|
+
}
|
570
|
+
return false;
|
571
|
+
}
|
572
|
+
// Status is not OK. Check whether the status is retryable.
|
573
|
+
if (!calld_->retry_policy_->retryable_status_codes().Contains(*status)) {
|
574
|
+
if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
|
575
|
+
gpr_log(GPR_INFO,
|
576
|
+
"chand=%p calld=%p attempt=%p: status %s not configured as "
|
577
|
+
"retryable",
|
578
|
+
calld_->chand_, calld_, this,
|
579
|
+
grpc_status_code_to_string(*status));
|
580
|
+
}
|
581
|
+
return false;
|
582
|
+
}
|
583
|
+
}
|
584
|
+
// Record the failure and check whether retries are throttled.
|
585
|
+
// Note that it's important for this check to come after the status
|
586
|
+
// code check above, since we should only record failures whose statuses
|
587
|
+
// match the configured retryable status codes, so that we don't count
|
588
|
+
// things like failures due to malformed requests (INVALID_ARGUMENT).
|
589
|
+
// Conversely, it's important for this to come before the remaining
|
590
|
+
// checks, so that we don't fail to record failures due to other factors.
|
591
|
+
if (calld_->retry_throttle_data_ != nullptr &&
|
592
|
+
!calld_->retry_throttle_data_->RecordFailure()) {
|
593
|
+
if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
|
594
|
+
gpr_log(GPR_INFO, "chand=%p calld=%p attempt=%p: retries throttled",
|
595
|
+
calld_->chand_, calld_, this);
|
596
|
+
}
|
597
|
+
return false;
|
598
|
+
}
|
599
|
+
// Check whether the call is committed.
|
600
|
+
if (calld_->retry_committed_) {
|
601
|
+
if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
|
602
|
+
gpr_log(GPR_INFO,
|
603
|
+
"chand=%p calld=%p attempt=%p: retries already committed",
|
604
|
+
calld_->chand_, calld_, this);
|
605
|
+
}
|
606
|
+
return false;
|
607
|
+
}
|
608
|
+
// Check whether we have retries remaining.
|
609
|
+
++calld_->num_attempts_completed_;
|
610
|
+
if (calld_->num_attempts_completed_ >=
|
611
|
+
calld_->retry_policy_->max_attempts()) {
|
612
|
+
if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
|
613
|
+
gpr_log(
|
614
|
+
GPR_INFO, "chand=%p calld=%p attempt=%p: exceeded %d retry attempts",
|
615
|
+
calld_->chand_, calld_, this, calld_->retry_policy_->max_attempts());
|
616
|
+
}
|
617
|
+
return false;
|
618
|
+
}
|
619
|
+
// Check server push-back.
|
620
|
+
if (server_pushback.has_value()) {
|
621
|
+
if (*server_pushback < Duration::Zero()) {
|
622
|
+
if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
|
623
|
+
gpr_log(GPR_INFO,
|
624
|
+
"chand=%p calld=%p attempt=%p: not retrying due to server "
|
625
|
+
"push-back",
|
626
|
+
calld_->chand_, calld_, this);
|
627
|
+
}
|
628
|
+
return false;
|
629
|
+
} else {
|
630
|
+
if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
|
631
|
+
gpr_log(
|
632
|
+
GPR_INFO,
|
633
|
+
"chand=%p calld=%p attempt=%p: server push-back: retry in %" PRIu64
|
634
|
+
" ms",
|
635
|
+
calld_->chand_, calld_, this, server_pushback->millis());
|
636
|
+
}
|
637
|
+
}
|
638
|
+
}
|
639
|
+
// We should retry.
|
640
|
+
return true;
|
641
|
+
}
|
642
|
+
|
643
|
+
void RetryFilter::LegacyCallData::CallAttempt::Abandon() {
|
644
|
+
abandoned_ = true;
|
645
|
+
// Unref batches for deferred completion callbacks that will now never
|
646
|
+
// be invoked.
|
647
|
+
if (started_recv_trailing_metadata_ &&
|
648
|
+
!seen_recv_trailing_metadata_from_surface_) {
|
649
|
+
recv_trailing_metadata_internal_batch_.reset(
|
650
|
+
DEBUG_LOCATION,
|
651
|
+
"unref internal recv_trailing_metadata_ready batch; attempt abandoned");
|
652
|
+
}
|
653
|
+
recv_trailing_metadata_error_ = absl::OkStatus();
|
654
|
+
recv_initial_metadata_ready_deferred_batch_.reset(
|
655
|
+
DEBUG_LOCATION,
|
656
|
+
"unref deferred recv_initial_metadata_ready batch; attempt abandoned");
|
657
|
+
recv_initial_metadata_error_ = absl::OkStatus();
|
658
|
+
recv_message_ready_deferred_batch_.reset(
|
659
|
+
DEBUG_LOCATION,
|
660
|
+
"unref deferred recv_message_ready batch; attempt abandoned");
|
661
|
+
recv_message_error_ = absl::OkStatus();
|
662
|
+
for (auto& on_complete_deferred_batch : on_complete_deferred_batches_) {
|
663
|
+
on_complete_deferred_batch.batch.reset(
|
664
|
+
DEBUG_LOCATION, "unref deferred on_complete batch; attempt abandoned");
|
665
|
+
}
|
666
|
+
on_complete_deferred_batches_.clear();
|
667
|
+
}
|
668
|
+
|
669
|
+
void RetryFilter::LegacyCallData::CallAttempt::OnPerAttemptRecvTimer() {
|
670
|
+
GRPC_CLOSURE_INIT(&on_per_attempt_recv_timer_, OnPerAttemptRecvTimerLocked,
|
671
|
+
this, nullptr);
|
672
|
+
GRPC_CALL_COMBINER_START(calld_->call_combiner_, &on_per_attempt_recv_timer_,
|
673
|
+
absl::OkStatus(), "per-attempt timer fired");
|
674
|
+
}
|
675
|
+
|
676
|
+
void RetryFilter::LegacyCallData::CallAttempt::OnPerAttemptRecvTimerLocked(
|
677
|
+
void* arg, grpc_error_handle error) {
|
678
|
+
auto* call_attempt = static_cast<CallAttempt*>(arg);
|
679
|
+
auto* calld = call_attempt->calld_;
|
680
|
+
if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
|
681
|
+
gpr_log(GPR_INFO,
|
682
|
+
"chand=%p calld=%p attempt=%p: perAttemptRecvTimeout timer fired: "
|
683
|
+
"error=%s, per_attempt_recv_timer_handle_.has_value()=%d",
|
684
|
+
calld->chand_, calld, call_attempt, StatusToString(error).c_str(),
|
685
|
+
call_attempt->per_attempt_recv_timer_handle_.has_value());
|
686
|
+
}
|
687
|
+
CallCombinerClosureList closures;
|
688
|
+
call_attempt->per_attempt_recv_timer_handle_.reset();
|
689
|
+
// Cancel this attempt.
|
690
|
+
// TODO(roth): When implementing hedging, we should not cancel the
|
691
|
+
// current attempt.
|
692
|
+
call_attempt->MaybeAddBatchForCancelOp(
|
693
|
+
grpc_error_set_int(
|
694
|
+
GRPC_ERROR_CREATE("retry perAttemptRecvTimeout exceeded"),
|
695
|
+
StatusIntProperty::kRpcStatus, GRPC_STATUS_CANCELLED),
|
696
|
+
&closures);
|
697
|
+
// Check whether we should retry.
|
698
|
+
if (call_attempt->ShouldRetry(/*status=*/absl::nullopt,
|
699
|
+
/*server_pushback_ms=*/absl::nullopt)) {
|
700
|
+
// Mark current attempt as abandoned.
|
701
|
+
call_attempt->Abandon();
|
702
|
+
// We are retrying. Start backoff timer.
|
703
|
+
calld->StartRetryTimer(/*server_pushback=*/absl::nullopt);
|
704
|
+
} else {
|
705
|
+
// Not retrying, so commit the call.
|
706
|
+
calld->RetryCommit(call_attempt);
|
707
|
+
// If retry state is no longer needed, switch to fast path for
|
708
|
+
// subsequent batches.
|
709
|
+
call_attempt->MaybeSwitchToFastPath();
|
710
|
+
}
|
711
|
+
closures.RunClosures(calld->call_combiner_);
|
712
|
+
call_attempt->Unref(DEBUG_LOCATION, "OnPerAttemptRecvTimer");
|
713
|
+
GRPC_CALL_STACK_UNREF(calld->owning_call_, "OnPerAttemptRecvTimer");
|
714
|
+
}
|
715
|
+
|
716
|
+
void RetryFilter::LegacyCallData::CallAttempt::
|
717
|
+
MaybeCancelPerAttemptRecvTimer() {
|
718
|
+
if (per_attempt_recv_timer_handle_.has_value()) {
|
719
|
+
if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
|
720
|
+
gpr_log(GPR_INFO,
|
721
|
+
"chand=%p calld=%p attempt=%p: cancelling "
|
722
|
+
"perAttemptRecvTimeout timer",
|
723
|
+
calld_->chand_, calld_, this);
|
724
|
+
}
|
725
|
+
if (calld_->chand_->event_engine()->Cancel(
|
726
|
+
*per_attempt_recv_timer_handle_)) {
|
727
|
+
Unref(DEBUG_LOCATION, "OnPerAttemptRecvTimer");
|
728
|
+
GRPC_CALL_STACK_UNREF(calld_->owning_call_, "OnPerAttemptRecvTimer");
|
729
|
+
}
|
730
|
+
per_attempt_recv_timer_handle_.reset();
|
731
|
+
}
|
732
|
+
}
|
733
|
+
|
734
|
+
//
|
735
|
+
// RetryFilter::LegacyCallData::CallAttempt::BatchData
|
736
|
+
//
|
737
|
+
|
738
|
+
RetryFilter::LegacyCallData::CallAttempt::BatchData::BatchData(
|
739
|
+
RefCountedPtr<CallAttempt> attempt, int refcount, bool set_on_complete)
|
740
|
+
: RefCounted(
|
741
|
+
GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace) ? "BatchData" : nullptr,
|
742
|
+
refcount),
|
743
|
+
call_attempt_(attempt.release()) {
|
744
|
+
if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
|
745
|
+
gpr_log(GPR_INFO, "chand=%p calld=%p attempt=%p: creating batch %p",
|
746
|
+
call_attempt_->calld_->chand_, call_attempt_->calld_, call_attempt_,
|
747
|
+
this);
|
748
|
+
}
|
749
|
+
// We hold a ref to the call stack for every batch sent on a call attempt.
|
750
|
+
// This is because some batches on the call attempt may not complete
|
751
|
+
// until after all of the batches are completed at the surface (because
|
752
|
+
// each batch that is pending at the surface holds a ref). This
|
753
|
+
// can happen for replayed send ops, and it can happen for
|
754
|
+
// recv_initial_metadata and recv_message ops on a call attempt that has
|
755
|
+
// been abandoned.
|
756
|
+
GRPC_CALL_STACK_REF(call_attempt_->calld_->owning_call_, "Retry BatchData");
|
757
|
+
batch_.payload = &call_attempt_->batch_payload_;
|
758
|
+
if (set_on_complete) {
|
759
|
+
GRPC_CLOSURE_INIT(&on_complete_, OnComplete, this, nullptr);
|
760
|
+
batch_.on_complete = &on_complete_;
|
761
|
+
}
|
762
|
+
}
|
763
|
+
|
764
|
+
RetryFilter::LegacyCallData::CallAttempt::BatchData::~BatchData() {
|
765
|
+
if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
|
766
|
+
gpr_log(GPR_INFO, "chand=%p calld=%p attempt=%p: destroying batch %p",
|
767
|
+
call_attempt_->calld_->chand_, call_attempt_->calld_, call_attempt_,
|
768
|
+
this);
|
769
|
+
}
|
770
|
+
CallAttempt* call_attempt = std::exchange(call_attempt_, nullptr);
|
771
|
+
grpc_call_stack* owning_call = call_attempt->calld_->owning_call_;
|
772
|
+
call_attempt->Unref(DEBUG_LOCATION, "~BatchData");
|
773
|
+
GRPC_CALL_STACK_UNREF(owning_call, "Retry BatchData");
|
774
|
+
}
|
775
|
+
|
776
|
+
void RetryFilter::LegacyCallData::CallAttempt::BatchData::
|
777
|
+
FreeCachedSendOpDataForCompletedBatch() {
|
778
|
+
auto* calld = call_attempt_->calld_;
|
779
|
+
// TODO(roth): When we implement hedging, this logic will need to get
|
780
|
+
// a bit more complex, because there may be other (now abandoned) call
|
781
|
+
// attempts still using this data. We may need to do some sort of
|
782
|
+
// ref-counting instead.
|
783
|
+
if (batch_.send_initial_metadata) {
|
784
|
+
calld->FreeCachedSendInitialMetadata();
|
785
|
+
}
|
786
|
+
if (batch_.send_message) {
|
787
|
+
calld->FreeCachedSendMessage(call_attempt_->completed_send_message_count_ -
|
788
|
+
1);
|
789
|
+
}
|
790
|
+
if (batch_.send_trailing_metadata) {
|
791
|
+
calld->FreeCachedSendTrailingMetadata();
|
792
|
+
}
|
793
|
+
}
|
794
|
+
|
795
|
+
//
|
796
|
+
// recv_initial_metadata callback handling
|
797
|
+
//
|
798
|
+
|
799
|
+
void RetryFilter::LegacyCallData::CallAttempt::BatchData::
|
800
|
+
MaybeAddClosureForRecvInitialMetadataCallback(
|
801
|
+
grpc_error_handle error, CallCombinerClosureList* closures) {
|
802
|
+
// Find pending batch.
|
803
|
+
PendingBatch* pending = call_attempt_->calld_->PendingBatchFind(
|
804
|
+
"invoking recv_initial_metadata_ready for",
|
805
|
+
[](grpc_transport_stream_op_batch* batch) {
|
806
|
+
return batch->recv_initial_metadata &&
|
807
|
+
batch->payload->recv_initial_metadata
|
808
|
+
.recv_initial_metadata_ready != nullptr;
|
809
|
+
});
|
810
|
+
if (pending == nullptr) {
|
811
|
+
return;
|
812
|
+
}
|
813
|
+
// Return metadata.
|
814
|
+
*pending->batch->payload->recv_initial_metadata.recv_initial_metadata =
|
815
|
+
std::move(call_attempt_->recv_initial_metadata_);
|
816
|
+
// Propagate trailing_metadata_available.
|
817
|
+
*pending->batch->payload->recv_initial_metadata.trailing_metadata_available =
|
818
|
+
call_attempt_->trailing_metadata_available_;
|
819
|
+
// Update bookkeeping.
|
820
|
+
// Note: Need to do this before invoking the callback, since invoking
|
821
|
+
// the callback will result in yielding the call combiner.
|
822
|
+
grpc_closure* recv_initial_metadata_ready =
|
823
|
+
pending->batch->payload->recv_initial_metadata
|
824
|
+
.recv_initial_metadata_ready;
|
825
|
+
pending->batch->payload->recv_initial_metadata.recv_initial_metadata_ready =
|
826
|
+
nullptr;
|
827
|
+
call_attempt_->calld_->MaybeClearPendingBatch(pending);
|
828
|
+
// Add callback to closures.
|
829
|
+
closures->Add(recv_initial_metadata_ready, error,
|
830
|
+
"recv_initial_metadata_ready for pending batch");
|
831
|
+
}
|
832
|
+
|
833
|
+
void RetryFilter::LegacyCallData::CallAttempt::BatchData::
|
834
|
+
RecvInitialMetadataReady(void* arg, grpc_error_handle error) {
|
835
|
+
RefCountedPtr<BatchData> batch_data(static_cast<BatchData*>(arg));
|
836
|
+
CallAttempt* call_attempt = batch_data->call_attempt_;
|
837
|
+
RetryFilter::LegacyCallData* calld = call_attempt->calld_;
|
838
|
+
if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
|
839
|
+
gpr_log(GPR_INFO,
|
840
|
+
"chand=%p calld=%p attempt=%p batch_data=%p: "
|
841
|
+
"got recv_initial_metadata_ready, error=%s",
|
842
|
+
calld->chand_, calld, call_attempt, batch_data.get(),
|
843
|
+
StatusToString(error).c_str());
|
844
|
+
}
|
845
|
+
call_attempt->completed_recv_initial_metadata_ = true;
|
846
|
+
// If this attempt has been abandoned, then we're not going to use the
|
847
|
+
// result of this recv_initial_metadata op, so do nothing.
|
848
|
+
if (call_attempt->abandoned_) {
|
849
|
+
GRPC_CALL_COMBINER_STOP(
|
850
|
+
calld->call_combiner_,
|
851
|
+
"recv_initial_metadata_ready for abandoned attempt");
|
852
|
+
return;
|
853
|
+
}
|
854
|
+
// Cancel per-attempt recv timer, if any.
|
855
|
+
call_attempt->MaybeCancelPerAttemptRecvTimer();
|
856
|
+
// If we're not committed, check the response to see if we need to commit.
|
857
|
+
if (!calld->retry_committed_) {
|
858
|
+
// If we got an error or a Trailers-Only response and have not yet gotten
|
859
|
+
// the recv_trailing_metadata_ready callback, then defer propagating this
|
860
|
+
// callback back to the surface. We can evaluate whether to retry when
|
861
|
+
// recv_trailing_metadata comes back.
|
862
|
+
if (GPR_UNLIKELY(
|
863
|
+
(call_attempt->trailing_metadata_available_ || !error.ok()) &&
|
864
|
+
!call_attempt->completed_recv_trailing_metadata_)) {
|
865
|
+
if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
|
866
|
+
gpr_log(GPR_INFO,
|
867
|
+
"chand=%p calld=%p attempt=%p: deferring "
|
868
|
+
"recv_initial_metadata_ready (Trailers-Only)",
|
869
|
+
calld->chand_, calld, call_attempt);
|
870
|
+
}
|
871
|
+
call_attempt->recv_initial_metadata_ready_deferred_batch_ =
|
872
|
+
std::move(batch_data);
|
873
|
+
call_attempt->recv_initial_metadata_error_ = error;
|
874
|
+
CallCombinerClosureList closures;
|
875
|
+
if (!error.ok()) {
|
876
|
+
call_attempt->MaybeAddBatchForCancelOp(error, &closures);
|
877
|
+
}
|
878
|
+
if (!call_attempt->started_recv_trailing_metadata_) {
|
879
|
+
// recv_trailing_metadata not yet started by application; start it
|
880
|
+
// ourselves to get status.
|
881
|
+
call_attempt->AddBatchForInternalRecvTrailingMetadata(&closures);
|
882
|
+
}
|
883
|
+
closures.RunClosures(calld->call_combiner_);
|
884
|
+
return;
|
885
|
+
}
|
886
|
+
// Received valid initial metadata, so commit the call.
|
887
|
+
calld->RetryCommit(call_attempt);
|
888
|
+
// If retry state is no longer needed, switch to fast path for
|
889
|
+
// subsequent batches.
|
890
|
+
call_attempt->MaybeSwitchToFastPath();
|
891
|
+
}
|
892
|
+
// Invoke the callback to return the result to the surface.
|
893
|
+
CallCombinerClosureList closures;
|
894
|
+
batch_data->MaybeAddClosureForRecvInitialMetadataCallback(error, &closures);
|
895
|
+
closures.RunClosures(calld->call_combiner_);
|
896
|
+
}
|
897
|
+
|
898
|
+
//
|
899
|
+
// recv_message callback handling
|
900
|
+
//
|
901
|
+
|
902
|
+
void RetryFilter::LegacyCallData::CallAttempt::BatchData::
|
903
|
+
MaybeAddClosureForRecvMessageCallback(grpc_error_handle error,
|
904
|
+
CallCombinerClosureList* closures) {
|
905
|
+
// Find pending op.
|
906
|
+
PendingBatch* pending = call_attempt_->calld_->PendingBatchFind(
|
907
|
+
"invoking recv_message_ready for",
|
908
|
+
[](grpc_transport_stream_op_batch* batch) {
|
909
|
+
return batch->recv_message &&
|
910
|
+
batch->payload->recv_message.recv_message_ready != nullptr;
|
911
|
+
});
|
912
|
+
if (pending == nullptr) {
|
913
|
+
return;
|
914
|
+
}
|
915
|
+
// Return payload.
|
916
|
+
*pending->batch->payload->recv_message.recv_message =
|
917
|
+
std::move(call_attempt_->recv_message_);
|
918
|
+
*pending->batch->payload->recv_message.flags =
|
919
|
+
call_attempt_->recv_message_flags_;
|
920
|
+
// Update bookkeeping.
|
921
|
+
// Note: Need to do this before invoking the callback, since invoking
|
922
|
+
// the callback will result in yielding the call combiner.
|
923
|
+
grpc_closure* recv_message_ready =
|
924
|
+
pending->batch->payload->recv_message.recv_message_ready;
|
925
|
+
pending->batch->payload->recv_message.recv_message_ready = nullptr;
|
926
|
+
call_attempt_->calld_->MaybeClearPendingBatch(pending);
|
927
|
+
// Add callback to closures.
|
928
|
+
closures->Add(recv_message_ready, error,
|
929
|
+
"recv_message_ready for pending batch");
|
930
|
+
}
|
931
|
+
|
932
|
+
void RetryFilter::LegacyCallData::CallAttempt::BatchData::RecvMessageReady(
|
933
|
+
void* arg, grpc_error_handle error) {
|
934
|
+
RefCountedPtr<BatchData> batch_data(static_cast<BatchData*>(arg));
|
935
|
+
CallAttempt* call_attempt = batch_data->call_attempt_;
|
936
|
+
RetryFilter::LegacyCallData* calld = call_attempt->calld_;
|
937
|
+
if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
|
938
|
+
gpr_log(GPR_INFO,
|
939
|
+
"chand=%p calld=%p attempt=%p batch_data=%p: "
|
940
|
+
"got recv_message_ready, error=%s",
|
941
|
+
calld->chand_, calld, call_attempt, batch_data.get(),
|
942
|
+
StatusToString(error).c_str());
|
943
|
+
}
|
944
|
+
++call_attempt->completed_recv_message_count_;
|
945
|
+
// If this attempt has been abandoned, then we're not going to use the
|
946
|
+
// result of this recv_message op, so do nothing.
|
947
|
+
if (call_attempt->abandoned_) {
|
948
|
+
// The transport will not invoke recv_trailing_metadata_ready until the byte
|
949
|
+
// stream for any recv_message op is orphaned, so we do that here to ensure
|
950
|
+
// that any pending recv_trailing_metadata op can complete.
|
951
|
+
call_attempt->recv_message_.reset();
|
952
|
+
GRPC_CALL_COMBINER_STOP(calld->call_combiner_,
|
953
|
+
"recv_message_ready for abandoned attempt");
|
954
|
+
return;
|
955
|
+
}
|
956
|
+
// Cancel per-attempt recv timer, if any.
|
957
|
+
call_attempt->MaybeCancelPerAttemptRecvTimer();
|
958
|
+
// If we're not committed, check the response to see if we need to commit.
|
959
|
+
if (!calld->retry_committed_) {
|
960
|
+
// If we got an error or the payload was nullptr and we have not yet gotten
|
961
|
+
// the recv_trailing_metadata_ready callback, then defer propagating this
|
962
|
+
// callback back to the surface. We can evaluate whether to retry when
|
963
|
+
// recv_trailing_metadata comes back.
|
964
|
+
if (GPR_UNLIKELY(
|
965
|
+
(!call_attempt->recv_message_.has_value() || !error.ok()) &&
|
966
|
+
!call_attempt->completed_recv_trailing_metadata_)) {
|
967
|
+
if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
|
968
|
+
gpr_log(GPR_INFO,
|
969
|
+
"chand=%p calld=%p attempt=%p: deferring recv_message_ready "
|
970
|
+
"(nullptr message and recv_trailing_metadata pending)",
|
971
|
+
calld->chand_, calld, call_attempt);
|
972
|
+
}
|
973
|
+
call_attempt->recv_message_ready_deferred_batch_ = std::move(batch_data);
|
974
|
+
call_attempt->recv_message_error_ = error;
|
975
|
+
CallCombinerClosureList closures;
|
976
|
+
if (!error.ok()) {
|
977
|
+
call_attempt->MaybeAddBatchForCancelOp(error, &closures);
|
978
|
+
}
|
979
|
+
if (!call_attempt->started_recv_trailing_metadata_) {
|
980
|
+
// recv_trailing_metadata not yet started by application; start it
|
981
|
+
// ourselves to get status.
|
982
|
+
call_attempt->AddBatchForInternalRecvTrailingMetadata(&closures);
|
983
|
+
}
|
984
|
+
closures.RunClosures(calld->call_combiner_);
|
985
|
+
return;
|
986
|
+
}
|
987
|
+
// Received a valid message, so commit the call.
|
988
|
+
calld->RetryCommit(call_attempt);
|
989
|
+
// If retry state is no longer needed, switch to fast path for
|
990
|
+
// subsequent batches.
|
991
|
+
call_attempt->MaybeSwitchToFastPath();
|
992
|
+
}
|
993
|
+
// Invoke the callback to return the result to the surface.
|
994
|
+
CallCombinerClosureList closures;
|
995
|
+
batch_data->MaybeAddClosureForRecvMessageCallback(error, &closures);
|
996
|
+
closures.RunClosures(calld->call_combiner_);
|
997
|
+
}
|
998
|
+
|
999
|
+
//
|
1000
|
+
// recv_trailing_metadata handling
|
1001
|
+
//
|
1002
|
+
|
1003
|
+
namespace {
|
1004
|
+
|
1005
|
+
// Sets *status, *server_pushback, and *is_lb_drop based on md_batch
|
1006
|
+
// and error.
|
1007
|
+
void GetCallStatus(
|
1008
|
+
Timestamp deadline, grpc_metadata_batch* md_batch, grpc_error_handle error,
|
1009
|
+
grpc_status_code* status, absl::optional<Duration>* server_pushback,
|
1010
|
+
bool* is_lb_drop,
|
1011
|
+
absl::optional<GrpcStreamNetworkState::ValueType>* stream_network_state) {
|
1012
|
+
if (!error.ok()) {
|
1013
|
+
grpc_error_get_status(error, deadline, status, nullptr, nullptr, nullptr);
|
1014
|
+
intptr_t value = 0;
|
1015
|
+
if (grpc_error_get_int(error, StatusIntProperty::kLbPolicyDrop, &value) &&
|
1016
|
+
value != 0) {
|
1017
|
+
*is_lb_drop = true;
|
1018
|
+
}
|
1019
|
+
} else {
|
1020
|
+
*status = *md_batch->get(GrpcStatusMetadata());
|
1021
|
+
}
|
1022
|
+
*server_pushback = md_batch->get(GrpcRetryPushbackMsMetadata());
|
1023
|
+
*stream_network_state = md_batch->get(GrpcStreamNetworkState());
|
1024
|
+
}
|
1025
|
+
|
1026
|
+
} // namespace
|
1027
|
+
|
1028
|
+
void RetryFilter::LegacyCallData::CallAttempt::BatchData::
|
1029
|
+
MaybeAddClosureForRecvTrailingMetadataReady(
|
1030
|
+
grpc_error_handle error, CallCombinerClosureList* closures) {
|
1031
|
+
auto* calld = call_attempt_->calld_;
|
1032
|
+
// Find pending batch.
|
1033
|
+
PendingBatch* pending = calld->PendingBatchFind(
|
1034
|
+
"invoking recv_trailing_metadata_ready for",
|
1035
|
+
[](grpc_transport_stream_op_batch* batch) {
|
1036
|
+
return batch->recv_trailing_metadata &&
|
1037
|
+
batch->payload->recv_trailing_metadata
|
1038
|
+
.recv_trailing_metadata_ready != nullptr;
|
1039
|
+
});
|
1040
|
+
// If we generated the recv_trailing_metadata op internally via
|
1041
|
+
// AddBatchForInternalRecvTrailingMetadata(), then there will be no
|
1042
|
+
// pending batch.
|
1043
|
+
if (pending == nullptr) {
|
1044
|
+
call_attempt_->recv_trailing_metadata_error_ = error;
|
1045
|
+
return;
|
1046
|
+
}
|
1047
|
+
// Copy transport stats to be delivered up to the surface.
|
1048
|
+
grpc_transport_move_stats(
|
1049
|
+
&call_attempt_->collect_stats_,
|
1050
|
+
pending->batch->payload->recv_trailing_metadata.collect_stats);
|
1051
|
+
// Return metadata.
|
1052
|
+
*pending->batch->payload->recv_trailing_metadata.recv_trailing_metadata =
|
1053
|
+
std::move(call_attempt_->recv_trailing_metadata_);
|
1054
|
+
// Add closure.
|
1055
|
+
closures->Add(pending->batch->payload->recv_trailing_metadata
|
1056
|
+
.recv_trailing_metadata_ready,
|
1057
|
+
error, "recv_trailing_metadata_ready for pending batch");
|
1058
|
+
// Update bookkeeping.
|
1059
|
+
pending->batch->payload->recv_trailing_metadata.recv_trailing_metadata_ready =
|
1060
|
+
nullptr;
|
1061
|
+
calld->MaybeClearPendingBatch(pending);
|
1062
|
+
}
|
1063
|
+
|
1064
|
+
void RetryFilter::LegacyCallData::CallAttempt::BatchData::
|
1065
|
+
AddClosuresForDeferredCompletionCallbacks(
|
1066
|
+
CallCombinerClosureList* closures) {
|
1067
|
+
// Add closure for deferred recv_initial_metadata_ready.
|
1068
|
+
if (GPR_UNLIKELY(call_attempt_->recv_initial_metadata_ready_deferred_batch_ !=
|
1069
|
+
nullptr)) {
|
1070
|
+
MaybeAddClosureForRecvInitialMetadataCallback(
|
1071
|
+
call_attempt_->recv_initial_metadata_error_, closures);
|
1072
|
+
call_attempt_->recv_initial_metadata_ready_deferred_batch_.reset(
|
1073
|
+
DEBUG_LOCATION, "resuming deferred recv_initial_metadata_ready");
|
1074
|
+
call_attempt_->recv_initial_metadata_error_ = absl::OkStatus();
|
1075
|
+
}
|
1076
|
+
// Add closure for deferred recv_message_ready.
|
1077
|
+
if (GPR_UNLIKELY(call_attempt_->recv_message_ready_deferred_batch_ !=
|
1078
|
+
nullptr)) {
|
1079
|
+
MaybeAddClosureForRecvMessageCallback(call_attempt_->recv_message_error_,
|
1080
|
+
closures);
|
1081
|
+
call_attempt_->recv_message_ready_deferred_batch_.reset(
|
1082
|
+
DEBUG_LOCATION, "resuming deferred recv_message_ready");
|
1083
|
+
call_attempt_->recv_message_error_ = absl::OkStatus();
|
1084
|
+
}
|
1085
|
+
// Add closures for deferred on_complete callbacks.
|
1086
|
+
for (auto& on_complete_deferred_batch :
|
1087
|
+
call_attempt_->on_complete_deferred_batches_) {
|
1088
|
+
closures->Add(&on_complete_deferred_batch.batch->on_complete_,
|
1089
|
+
on_complete_deferred_batch.error, "resuming on_complete");
|
1090
|
+
on_complete_deferred_batch.batch.release();
|
1091
|
+
}
|
1092
|
+
call_attempt_->on_complete_deferred_batches_.clear();
|
1093
|
+
}
|
1094
|
+
|
1095
|
+
void RetryFilter::LegacyCallData::CallAttempt::BatchData::
|
1096
|
+
AddClosuresToFailUnstartedPendingBatches(
|
1097
|
+
grpc_error_handle error, CallCombinerClosureList* closures) {
|
1098
|
+
auto* calld = call_attempt_->calld_;
|
1099
|
+
for (size_t i = 0; i < GPR_ARRAY_SIZE(calld->pending_batches_); ++i) {
|
1100
|
+
PendingBatch* pending = &calld->pending_batches_[i];
|
1101
|
+
if (pending->batch == nullptr) continue;
|
1102
|
+
if (call_attempt_->PendingBatchContainsUnstartedSendOps(pending)) {
|
1103
|
+
closures->Add(pending->batch->on_complete, error,
|
1104
|
+
"failing on_complete for pending batch");
|
1105
|
+
pending->batch->on_complete = nullptr;
|
1106
|
+
calld->MaybeClearPendingBatch(pending);
|
1107
|
+
}
|
1108
|
+
}
|
1109
|
+
}
|
1110
|
+
|
1111
|
+
void RetryFilter::LegacyCallData::CallAttempt::BatchData::
|
1112
|
+
RunClosuresForCompletedCall(grpc_error_handle error) {
|
1113
|
+
// Construct list of closures to execute.
|
1114
|
+
CallCombinerClosureList closures;
|
1115
|
+
// First, add closure for recv_trailing_metadata_ready.
|
1116
|
+
MaybeAddClosureForRecvTrailingMetadataReady(error, &closures);
|
1117
|
+
// If there are deferred batch completion callbacks, add them to closures.
|
1118
|
+
AddClosuresForDeferredCompletionCallbacks(&closures);
|
1119
|
+
// Add closures to fail any pending batches that have not yet been started.
|
1120
|
+
AddClosuresToFailUnstartedPendingBatches(error, &closures);
|
1121
|
+
// Schedule all of the closures identified above.
|
1122
|
+
// Note: This will release the call combiner.
|
1123
|
+
closures.RunClosures(call_attempt_->calld_->call_combiner_);
|
1124
|
+
}
|
1125
|
+
|
1126
|
+
void RetryFilter::LegacyCallData::CallAttempt::BatchData::
|
1127
|
+
RecvTrailingMetadataReady(void* arg, grpc_error_handle error) {
|
1128
|
+
RefCountedPtr<BatchData> batch_data(static_cast<BatchData*>(arg));
|
1129
|
+
CallAttempt* call_attempt = batch_data->call_attempt_;
|
1130
|
+
RetryFilter::LegacyCallData* calld = call_attempt->calld_;
|
1131
|
+
if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
|
1132
|
+
gpr_log(GPR_INFO,
|
1133
|
+
"chand=%p calld=%p attempt=%p batch_data=%p: "
|
1134
|
+
"got recv_trailing_metadata_ready, error=%s",
|
1135
|
+
calld->chand_, calld, call_attempt, batch_data.get(),
|
1136
|
+
StatusToString(error).c_str());
|
1137
|
+
}
|
1138
|
+
call_attempt->completed_recv_trailing_metadata_ = true;
|
1139
|
+
// If this attempt has been abandoned, then we're not going to use the
|
1140
|
+
// result of this recv_trailing_metadata op, so do nothing.
|
1141
|
+
if (call_attempt->abandoned_) {
|
1142
|
+
GRPC_CALL_COMBINER_STOP(
|
1143
|
+
calld->call_combiner_,
|
1144
|
+
"recv_trailing_metadata_ready for abandoned attempt");
|
1145
|
+
return;
|
1146
|
+
}
|
1147
|
+
// Cancel per-attempt recv timer, if any.
|
1148
|
+
call_attempt->MaybeCancelPerAttemptRecvTimer();
|
1149
|
+
// Get the call's status and check for server pushback metadata.
|
1150
|
+
grpc_status_code status = GRPC_STATUS_OK;
|
1151
|
+
absl::optional<Duration> server_pushback;
|
1152
|
+
bool is_lb_drop = false;
|
1153
|
+
absl::optional<GrpcStreamNetworkState::ValueType> stream_network_state;
|
1154
|
+
grpc_metadata_batch* md_batch =
|
1155
|
+
batch_data->batch_.payload->recv_trailing_metadata.recv_trailing_metadata;
|
1156
|
+
GetCallStatus(calld->deadline_, md_batch, error, &status, &server_pushback,
|
1157
|
+
&is_lb_drop, &stream_network_state);
|
1158
|
+
if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
|
1159
|
+
gpr_log(GPR_INFO,
|
1160
|
+
"chand=%p calld=%p attempt=%p: call finished, status=%s "
|
1161
|
+
"server_pushback=%s is_lb_drop=%d stream_network_state=%s",
|
1162
|
+
calld->chand_, calld, call_attempt,
|
1163
|
+
grpc_status_code_to_string(status),
|
1164
|
+
server_pushback.has_value() ? server_pushback->ToString().c_str()
|
1165
|
+
: "N/A",
|
1166
|
+
is_lb_drop,
|
1167
|
+
stream_network_state.has_value()
|
1168
|
+
? absl::StrCat(*stream_network_state).c_str()
|
1169
|
+
: "N/A");
|
1170
|
+
}
|
1171
|
+
// Check if we should retry.
|
1172
|
+
if (!is_lb_drop) { // Never retry on LB drops.
|
1173
|
+
enum { kNoRetry, kTransparentRetry, kConfigurableRetry } retry = kNoRetry;
|
1174
|
+
// Handle transparent retries.
|
1175
|
+
if (stream_network_state.has_value() && !calld->retry_committed_) {
|
1176
|
+
// If not sent on wire, then always retry.
|
1177
|
+
// If sent on wire but not seen by server, retry exactly once.
|
1178
|
+
if (*stream_network_state == GrpcStreamNetworkState::kNotSentOnWire) {
|
1179
|
+
retry = kTransparentRetry;
|
1180
|
+
} else if (*stream_network_state ==
|
1181
|
+
GrpcStreamNetworkState::kNotSeenByServer &&
|
1182
|
+
!calld->sent_transparent_retry_not_seen_by_server_) {
|
1183
|
+
calld->sent_transparent_retry_not_seen_by_server_ = true;
|
1184
|
+
retry = kTransparentRetry;
|
1185
|
+
}
|
1186
|
+
}
|
1187
|
+
// If not transparently retrying, check for configurable retry.
|
1188
|
+
if (retry == kNoRetry &&
|
1189
|
+
call_attempt->ShouldRetry(status, server_pushback)) {
|
1190
|
+
retry = kConfigurableRetry;
|
1191
|
+
}
|
1192
|
+
// If we're retrying, do so.
|
1193
|
+
if (retry != kNoRetry) {
|
1194
|
+
CallCombinerClosureList closures;
|
1195
|
+
// Cancel call attempt.
|
1196
|
+
call_attempt->MaybeAddBatchForCancelOp(
|
1197
|
+
error.ok() ? grpc_error_set_int(
|
1198
|
+
GRPC_ERROR_CREATE("call attempt failed"),
|
1199
|
+
StatusIntProperty::kRpcStatus, GRPC_STATUS_CANCELLED)
|
1200
|
+
: error,
|
1201
|
+
&closures);
|
1202
|
+
// For transparent retries, add a closure to immediately start a new
|
1203
|
+
// call attempt.
|
1204
|
+
// For configurable retries, start retry timer.
|
1205
|
+
if (retry == kTransparentRetry) {
|
1206
|
+
calld->AddClosureToStartTransparentRetry(&closures);
|
1207
|
+
} else {
|
1208
|
+
calld->StartRetryTimer(server_pushback);
|
1209
|
+
}
|
1210
|
+
// Record that this attempt has been abandoned.
|
1211
|
+
call_attempt->Abandon();
|
1212
|
+
// Yields call combiner.
|
1213
|
+
closures.RunClosures(calld->call_combiner_);
|
1214
|
+
return;
|
1215
|
+
}
|
1216
|
+
}
|
1217
|
+
// Not retrying, so commit the call.
|
1218
|
+
calld->RetryCommit(call_attempt);
|
1219
|
+
// If retry state is no longer needed, switch to fast path for
|
1220
|
+
// subsequent batches.
|
1221
|
+
call_attempt->MaybeSwitchToFastPath();
|
1222
|
+
// Run any necessary closures.
|
1223
|
+
batch_data->RunClosuresForCompletedCall(error);
|
1224
|
+
}
|
1225
|
+
|
1226
|
+
//
|
1227
|
+
// on_complete callback handling
|
1228
|
+
//
|
1229
|
+
|
1230
|
+
void RetryFilter::LegacyCallData::CallAttempt::BatchData::
|
1231
|
+
AddClosuresForCompletedPendingBatch(grpc_error_handle error,
|
1232
|
+
CallCombinerClosureList* closures) {
|
1233
|
+
auto* calld = call_attempt_->calld_;
|
1234
|
+
PendingBatch* pending = calld->PendingBatchFind(
|
1235
|
+
"completed", [this](grpc_transport_stream_op_batch* batch) {
|
1236
|
+
// Match the pending batch with the same set of send ops as the
|
1237
|
+
// batch we've just completed.
|
1238
|
+
return batch->on_complete != nullptr &&
|
1239
|
+
batch_.send_initial_metadata == batch->send_initial_metadata &&
|
1240
|
+
batch_.send_message == batch->send_message &&
|
1241
|
+
batch_.send_trailing_metadata == batch->send_trailing_metadata;
|
1242
|
+
});
|
1243
|
+
// If batch_data is a replay batch, then there will be no pending
|
1244
|
+
// batch to complete.
|
1245
|
+
if (pending == nullptr) {
|
1246
|
+
return;
|
1247
|
+
}
|
1248
|
+
// Propagate payload.
|
1249
|
+
if (batch_.send_message) {
|
1250
|
+
pending->batch->payload->send_message.stream_write_closed =
|
1251
|
+
batch_.payload->send_message.stream_write_closed;
|
1252
|
+
}
|
1253
|
+
// Add closure.
|
1254
|
+
closures->Add(pending->batch->on_complete, error,
|
1255
|
+
"on_complete for pending batch");
|
1256
|
+
pending->batch->on_complete = nullptr;
|
1257
|
+
calld->MaybeClearPendingBatch(pending);
|
1258
|
+
}
|
1259
|
+
|
1260
|
+
void RetryFilter::LegacyCallData::CallAttempt::BatchData::
|
1261
|
+
AddClosuresForReplayOrPendingSendOps(CallCombinerClosureList* closures) {
|
1262
|
+
auto* calld = call_attempt_->calld_;
|
1263
|
+
bool have_pending_send_ops = call_attempt_->HaveSendOpsToReplay();
|
1264
|
+
// We don't check send_initial_metadata here, because that op will always
|
1265
|
+
// be started as soon as it is received from the surface, so it will
|
1266
|
+
// never need to be started at this point.
|
1267
|
+
if (!have_pending_send_ops) {
|
1268
|
+
for (size_t i = 0; i < GPR_ARRAY_SIZE(calld->pending_batches_); ++i) {
|
1269
|
+
PendingBatch* pending = &calld->pending_batches_[i];
|
1270
|
+
grpc_transport_stream_op_batch* batch = pending->batch;
|
1271
|
+
if (batch == nullptr || pending->send_ops_cached) continue;
|
1272
|
+
if (batch->send_message || batch->send_trailing_metadata) {
|
1273
|
+
have_pending_send_ops = true;
|
1274
|
+
break;
|
1275
|
+
}
|
1276
|
+
}
|
1277
|
+
}
|
1278
|
+
if (have_pending_send_ops) {
|
1279
|
+
if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
|
1280
|
+
gpr_log(GPR_INFO,
|
1281
|
+
"chand=%p calld=%p attempt=%p: starting next batch for pending "
|
1282
|
+
"send op(s)",
|
1283
|
+
calld->chand_, calld, call_attempt_);
|
1284
|
+
}
|
1285
|
+
call_attempt_->AddRetriableBatches(closures);
|
1286
|
+
}
|
1287
|
+
}
|
1288
|
+
|
1289
|
+
void RetryFilter::LegacyCallData::CallAttempt::BatchData::OnComplete(
|
1290
|
+
void* arg, grpc_error_handle error) {
|
1291
|
+
RefCountedPtr<BatchData> batch_data(static_cast<BatchData*>(arg));
|
1292
|
+
CallAttempt* call_attempt = batch_data->call_attempt_;
|
1293
|
+
RetryFilter::LegacyCallData* calld = call_attempt->calld_;
|
1294
|
+
if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
|
1295
|
+
gpr_log(GPR_INFO,
|
1296
|
+
"chand=%p calld=%p attempt=%p batch_data=%p: "
|
1297
|
+
"got on_complete, error=%s, batch=%s",
|
1298
|
+
calld->chand_, calld, call_attempt, batch_data.get(),
|
1299
|
+
StatusToString(error).c_str(),
|
1300
|
+
grpc_transport_stream_op_batch_string(&batch_data->batch_, false)
|
1301
|
+
.c_str());
|
1302
|
+
}
|
1303
|
+
// If this attempt has been abandoned, then we're not going to propagate
|
1304
|
+
// the completion of this batch, so do nothing.
|
1305
|
+
if (call_attempt->abandoned_) {
|
1306
|
+
GRPC_CALL_COMBINER_STOP(calld->call_combiner_,
|
1307
|
+
"on_complete for abandoned attempt");
|
1308
|
+
return;
|
1309
|
+
}
|
1310
|
+
// If we got an error and have not yet gotten the
|
1311
|
+
// recv_trailing_metadata_ready callback, then defer propagating this
|
1312
|
+
// callback back to the surface. We can evaluate whether to retry when
|
1313
|
+
// recv_trailing_metadata comes back.
|
1314
|
+
if (GPR_UNLIKELY(!calld->retry_committed_ && !error.ok() &&
|
1315
|
+
!call_attempt->completed_recv_trailing_metadata_)) {
|
1316
|
+
if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
|
1317
|
+
gpr_log(GPR_INFO, "chand=%p calld=%p attempt=%p: deferring on_complete",
|
1318
|
+
calld->chand_, calld, call_attempt);
|
1319
|
+
}
|
1320
|
+
call_attempt->on_complete_deferred_batches_.emplace_back(
|
1321
|
+
std::move(batch_data), error);
|
1322
|
+
CallCombinerClosureList closures;
|
1323
|
+
call_attempt->MaybeAddBatchForCancelOp(error, &closures);
|
1324
|
+
if (!call_attempt->started_recv_trailing_metadata_) {
|
1325
|
+
// recv_trailing_metadata not yet started by application; start it
|
1326
|
+
// ourselves to get status.
|
1327
|
+
call_attempt->AddBatchForInternalRecvTrailingMetadata(&closures);
|
1328
|
+
}
|
1329
|
+
closures.RunClosures(calld->call_combiner_);
|
1330
|
+
return;
|
1331
|
+
}
|
1332
|
+
// Update bookkeeping in call_attempt.
|
1333
|
+
if (batch_data->batch_.send_initial_metadata) {
|
1334
|
+
call_attempt->completed_send_initial_metadata_ = true;
|
1335
|
+
}
|
1336
|
+
if (batch_data->batch_.send_message) {
|
1337
|
+
++call_attempt->completed_send_message_count_;
|
1338
|
+
}
|
1339
|
+
if (batch_data->batch_.send_trailing_metadata) {
|
1340
|
+
call_attempt->completed_send_trailing_metadata_ = true;
|
1341
|
+
}
|
1342
|
+
// If the call is committed, free cached data for send ops that we've just
|
1343
|
+
// completed.
|
1344
|
+
if (calld->retry_committed_) {
|
1345
|
+
batch_data->FreeCachedSendOpDataForCompletedBatch();
|
1346
|
+
}
|
1347
|
+
// Construct list of closures to execute.
|
1348
|
+
CallCombinerClosureList closures;
|
1349
|
+
// Add closure for the completed pending batch, if any.
|
1350
|
+
batch_data->AddClosuresForCompletedPendingBatch(error, &closures);
|
1351
|
+
// If needed, add a callback to start any replay or pending send ops on
|
1352
|
+
// the LB call.
|
1353
|
+
if (!call_attempt->completed_recv_trailing_metadata_) {
|
1354
|
+
batch_data->AddClosuresForReplayOrPendingSendOps(&closures);
|
1355
|
+
}
|
1356
|
+
// If retry state is no longer needed (i.e., we're committed and there
|
1357
|
+
// are no more send ops to replay), switch to fast path for subsequent
|
1358
|
+
// batches.
|
1359
|
+
call_attempt->MaybeSwitchToFastPath();
|
1360
|
+
// Schedule all of the closures identified above.
|
1361
|
+
// Note: This yields the call combiner.
|
1362
|
+
closures.RunClosures(calld->call_combiner_);
|
1363
|
+
}
|
1364
|
+
|
1365
|
+
void RetryFilter::LegacyCallData::CallAttempt::BatchData::OnCompleteForCancelOp(
|
1366
|
+
void* arg, grpc_error_handle error) {
|
1367
|
+
RefCountedPtr<BatchData> batch_data(static_cast<BatchData*>(arg));
|
1368
|
+
CallAttempt* call_attempt = batch_data->call_attempt_;
|
1369
|
+
RetryFilter::LegacyCallData* calld = call_attempt->calld_;
|
1370
|
+
if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
|
1371
|
+
gpr_log(GPR_INFO,
|
1372
|
+
"chand=%p calld=%p attempt=%p batch_data=%p: "
|
1373
|
+
"got on_complete for cancel_stream batch, error=%s, batch=%s",
|
1374
|
+
calld->chand_, calld, call_attempt, batch_data.get(),
|
1375
|
+
StatusToString(error).c_str(),
|
1376
|
+
grpc_transport_stream_op_batch_string(&batch_data->batch_, false)
|
1377
|
+
.c_str());
|
1378
|
+
}
|
1379
|
+
GRPC_CALL_COMBINER_STOP(
|
1380
|
+
calld->call_combiner_,
|
1381
|
+
"on_complete for internally generated cancel_stream op");
|
1382
|
+
}
|
1383
|
+
|
1384
|
+
//
|
1385
|
+
// retriable batch construction
|
1386
|
+
//
|
1387
|
+
|
1388
|
+
void RetryFilter::LegacyCallData::CallAttempt::BatchData::
|
1389
|
+
AddRetriableSendInitialMetadataOp() {
|
1390
|
+
auto* calld = call_attempt_->calld_;
|
1391
|
+
// We need to make a copy of the metadata batch for each attempt, since
|
1392
|
+
// the filters in the subchannel stack may modify this batch, and we don't
|
1393
|
+
// want those modifications to be passed forward to subsequent attempts.
|
1394
|
+
//
|
1395
|
+
// If we've already completed one or more attempts, add the
|
1396
|
+
// grpc-retry-attempts header.
|
1397
|
+
call_attempt_->send_initial_metadata_ = calld->send_initial_metadata_.Copy();
|
1398
|
+
if (GPR_UNLIKELY(calld->num_attempts_completed_ > 0)) {
|
1399
|
+
call_attempt_->send_initial_metadata_.Set(GrpcPreviousRpcAttemptsMetadata(),
|
1400
|
+
calld->num_attempts_completed_);
|
1401
|
+
} else {
|
1402
|
+
call_attempt_->send_initial_metadata_.Remove(
|
1403
|
+
GrpcPreviousRpcAttemptsMetadata());
|
1404
|
+
}
|
1405
|
+
call_attempt_->started_send_initial_metadata_ = true;
|
1406
|
+
batch_.send_initial_metadata = true;
|
1407
|
+
batch_.payload->send_initial_metadata.send_initial_metadata =
|
1408
|
+
&call_attempt_->send_initial_metadata_;
|
1409
|
+
}
|
1410
|
+
|
1411
|
+
void RetryFilter::LegacyCallData::CallAttempt::BatchData::
|
1412
|
+
AddRetriableSendMessageOp() {
|
1413
|
+
auto* calld = call_attempt_->calld_;
|
1414
|
+
if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
|
1415
|
+
gpr_log(
|
1416
|
+
GPR_INFO,
|
1417
|
+
"chand=%p calld=%p attempt=%p: starting calld->send_messages[%" PRIuPTR
|
1418
|
+
"]",
|
1419
|
+
calld->chand_, calld, call_attempt_,
|
1420
|
+
call_attempt_->started_send_message_count_);
|
1421
|
+
}
|
1422
|
+
CachedSendMessage cache =
|
1423
|
+
calld->send_messages_[call_attempt_->started_send_message_count_];
|
1424
|
+
++call_attempt_->started_send_message_count_;
|
1425
|
+
batch_.send_message = true;
|
1426
|
+
batch_.payload->send_message.send_message = cache.slices;
|
1427
|
+
batch_.payload->send_message.flags = cache.flags;
|
1428
|
+
}
|
1429
|
+
|
1430
|
+
void RetryFilter::LegacyCallData::CallAttempt::BatchData::
|
1431
|
+
AddRetriableSendTrailingMetadataOp() {
|
1432
|
+
auto* calld = call_attempt_->calld_;
|
1433
|
+
// We need to make a copy of the metadata batch for each attempt, since
|
1434
|
+
// the filters in the subchannel stack may modify this batch, and we don't
|
1435
|
+
// want those modifications to be passed forward to subsequent attempts.
|
1436
|
+
call_attempt_->send_trailing_metadata_ =
|
1437
|
+
calld->send_trailing_metadata_.Copy();
|
1438
|
+
call_attempt_->started_send_trailing_metadata_ = true;
|
1439
|
+
batch_.send_trailing_metadata = true;
|
1440
|
+
batch_.payload->send_trailing_metadata.send_trailing_metadata =
|
1441
|
+
&call_attempt_->send_trailing_metadata_;
|
1442
|
+
}
|
1443
|
+
|
1444
|
+
void RetryFilter::LegacyCallData::CallAttempt::BatchData::
|
1445
|
+
AddRetriableRecvInitialMetadataOp() {
|
1446
|
+
call_attempt_->started_recv_initial_metadata_ = true;
|
1447
|
+
batch_.recv_initial_metadata = true;
|
1448
|
+
call_attempt_->recv_initial_metadata_.Clear();
|
1449
|
+
batch_.payload->recv_initial_metadata.recv_initial_metadata =
|
1450
|
+
&call_attempt_->recv_initial_metadata_;
|
1451
|
+
batch_.payload->recv_initial_metadata.trailing_metadata_available =
|
1452
|
+
&call_attempt_->trailing_metadata_available_;
|
1453
|
+
GRPC_CLOSURE_INIT(&call_attempt_->recv_initial_metadata_ready_,
|
1454
|
+
RecvInitialMetadataReady, this, grpc_schedule_on_exec_ctx);
|
1455
|
+
batch_.payload->recv_initial_metadata.recv_initial_metadata_ready =
|
1456
|
+
&call_attempt_->recv_initial_metadata_ready_;
|
1457
|
+
}
|
1458
|
+
|
1459
|
+
void RetryFilter::LegacyCallData::CallAttempt::BatchData::
|
1460
|
+
AddRetriableRecvMessageOp() {
|
1461
|
+
++call_attempt_->started_recv_message_count_;
|
1462
|
+
batch_.recv_message = true;
|
1463
|
+
batch_.payload->recv_message.recv_message = &call_attempt_->recv_message_;
|
1464
|
+
batch_.payload->recv_message.flags = &call_attempt_->recv_message_flags_;
|
1465
|
+
batch_.payload->recv_message.call_failed_before_recv_message = nullptr;
|
1466
|
+
GRPC_CLOSURE_INIT(&call_attempt_->recv_message_ready_, RecvMessageReady, this,
|
1467
|
+
grpc_schedule_on_exec_ctx);
|
1468
|
+
batch_.payload->recv_message.recv_message_ready =
|
1469
|
+
&call_attempt_->recv_message_ready_;
|
1470
|
+
}
|
1471
|
+
|
1472
|
+
void RetryFilter::LegacyCallData::CallAttempt::BatchData::
|
1473
|
+
AddRetriableRecvTrailingMetadataOp() {
|
1474
|
+
call_attempt_->started_recv_trailing_metadata_ = true;
|
1475
|
+
batch_.recv_trailing_metadata = true;
|
1476
|
+
call_attempt_->recv_trailing_metadata_.Clear();
|
1477
|
+
batch_.payload->recv_trailing_metadata.recv_trailing_metadata =
|
1478
|
+
&call_attempt_->recv_trailing_metadata_;
|
1479
|
+
batch_.payload->recv_trailing_metadata.collect_stats =
|
1480
|
+
&call_attempt_->collect_stats_;
|
1481
|
+
GRPC_CLOSURE_INIT(&call_attempt_->recv_trailing_metadata_ready_,
|
1482
|
+
RecvTrailingMetadataReady, this, grpc_schedule_on_exec_ctx);
|
1483
|
+
batch_.payload->recv_trailing_metadata.recv_trailing_metadata_ready =
|
1484
|
+
&call_attempt_->recv_trailing_metadata_ready_;
|
1485
|
+
}
|
1486
|
+
|
1487
|
+
void RetryFilter::LegacyCallData::CallAttempt::BatchData::AddCancelStreamOp(
|
1488
|
+
grpc_error_handle error) {
|
1489
|
+
batch_.cancel_stream = true;
|
1490
|
+
batch_.payload->cancel_stream.cancel_error = error;
|
1491
|
+
// Override on_complete callback.
|
1492
|
+
GRPC_CLOSURE_INIT(&on_complete_, OnCompleteForCancelOp, this, nullptr);
|
1493
|
+
}
|
1494
|
+
|
1495
|
+
//
|
1496
|
+
// RetryFilter::LegacyCallData vtable functions
|
1497
|
+
//
|
1498
|
+
|
1499
|
+
grpc_error_handle RetryFilter::LegacyCallData::Init(
|
1500
|
+
grpc_call_element* elem, const grpc_call_element_args* args) {
|
1501
|
+
auto* chand = static_cast<RetryFilter*>(elem->channel_data);
|
1502
|
+
new (elem->call_data) RetryFilter::LegacyCallData(chand, *args);
|
1503
|
+
if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
|
1504
|
+
gpr_log(GPR_INFO, "chand=%p calld=%p: created call", chand,
|
1505
|
+
elem->call_data);
|
1506
|
+
}
|
1507
|
+
return absl::OkStatus();
|
1508
|
+
}
|
1509
|
+
|
1510
|
+
void RetryFilter::LegacyCallData::Destroy(
|
1511
|
+
grpc_call_element* elem, const grpc_call_final_info* /*final_info*/,
|
1512
|
+
grpc_closure* then_schedule_closure) {
|
1513
|
+
auto* calld = static_cast<RetryFilter::LegacyCallData*>(elem->call_data);
|
1514
|
+
// Save our ref to the CallStackDestructionBarrier until after our
|
1515
|
+
// dtor is invoked.
|
1516
|
+
RefCountedPtr<CallStackDestructionBarrier> call_stack_destruction_barrier =
|
1517
|
+
std::move(calld->call_stack_destruction_barrier_);
|
1518
|
+
calld->~LegacyCallData();
|
1519
|
+
// Now set the callback in the CallStackDestructionBarrier object,
|
1520
|
+
// right before we release our ref to it (implicitly upon returning).
|
1521
|
+
// The callback will be invoked when the CallStackDestructionBarrier
|
1522
|
+
// is destroyed.
|
1523
|
+
call_stack_destruction_barrier->set_on_call_stack_destruction(
|
1524
|
+
then_schedule_closure);
|
1525
|
+
}
|
1526
|
+
|
1527
|
+
void RetryFilter::LegacyCallData::StartTransportStreamOpBatch(
|
1528
|
+
grpc_call_element* elem, grpc_transport_stream_op_batch* batch) {
|
1529
|
+
auto* calld = static_cast<RetryFilter::LegacyCallData*>(elem->call_data);
|
1530
|
+
calld->StartTransportStreamOpBatch(batch);
|
1531
|
+
}
|
1532
|
+
|
1533
|
+
void RetryFilter::LegacyCallData::SetPollent(grpc_call_element* elem,
|
1534
|
+
grpc_polling_entity* pollent) {
|
1535
|
+
auto* calld = static_cast<RetryFilter::LegacyCallData*>(elem->call_data);
|
1536
|
+
calld->pollent_ = pollent;
|
1537
|
+
}
|
1538
|
+
|
1539
|
+
//
|
1540
|
+
// RetryFilter::LegacyCallData implementation
|
1541
|
+
//
|
1542
|
+
|
1543
|
+
RetryFilter::LegacyCallData::LegacyCallData(RetryFilter* chand,
|
1544
|
+
const grpc_call_element_args& args)
|
1545
|
+
: chand_(chand),
|
1546
|
+
retry_throttle_data_(chand->retry_throttle_data()),
|
1547
|
+
retry_policy_(chand->GetRetryPolicy(args.context)),
|
1548
|
+
retry_backoff_(
|
1549
|
+
BackOff::Options()
|
1550
|
+
.set_initial_backoff(retry_policy_ == nullptr
|
1551
|
+
? Duration::Zero()
|
1552
|
+
: retry_policy_->initial_backoff())
|
1553
|
+
.set_multiplier(retry_policy_ == nullptr
|
1554
|
+
? 0
|
1555
|
+
: retry_policy_->backoff_multiplier())
|
1556
|
+
.set_jitter(RetryFilter::BackoffJitter())
|
1557
|
+
.set_max_backoff(retry_policy_ == nullptr
|
1558
|
+
? Duration::Zero()
|
1559
|
+
: retry_policy_->max_backoff())),
|
1560
|
+
path_(CSliceRef(args.path)),
|
1561
|
+
deadline_(args.deadline),
|
1562
|
+
arena_(args.arena),
|
1563
|
+
owning_call_(args.call_stack),
|
1564
|
+
call_combiner_(args.call_combiner),
|
1565
|
+
call_context_(args.context),
|
1566
|
+
call_stack_destruction_barrier_(
|
1567
|
+
arena_->New<CallStackDestructionBarrier>()),
|
1568
|
+
pending_send_initial_metadata_(false),
|
1569
|
+
pending_send_message_(false),
|
1570
|
+
pending_send_trailing_metadata_(false),
|
1571
|
+
retry_committed_(false),
|
1572
|
+
retry_codepath_started_(false),
|
1573
|
+
sent_transparent_retry_not_seen_by_server_(false) {}
|
1574
|
+
|
1575
|
+
RetryFilter::LegacyCallData::~LegacyCallData() {
|
1576
|
+
FreeAllCachedSendOpData();
|
1577
|
+
CSliceUnref(path_);
|
1578
|
+
// Make sure there are no remaining pending batches.
|
1579
|
+
for (size_t i = 0; i < GPR_ARRAY_SIZE(pending_batches_); ++i) {
|
1580
|
+
GPR_ASSERT(pending_batches_[i].batch == nullptr);
|
1581
|
+
}
|
1582
|
+
}
|
1583
|
+
|
1584
|
+
void RetryFilter::LegacyCallData::StartTransportStreamOpBatch(
|
1585
|
+
grpc_transport_stream_op_batch* batch) {
|
1586
|
+
if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace) &&
|
1587
|
+
!GRPC_TRACE_FLAG_ENABLED(grpc_trace_channel)) {
|
1588
|
+
gpr_log(GPR_INFO, "chand=%p calld=%p: batch started from surface: %s",
|
1589
|
+
chand_, this,
|
1590
|
+
grpc_transport_stream_op_batch_string(batch, false).c_str());
|
1591
|
+
}
|
1592
|
+
// If we have an LB call, delegate to the LB call.
|
1593
|
+
if (committed_call_ != nullptr) {
|
1594
|
+
// Note: This will release the call combiner.
|
1595
|
+
committed_call_->StartTransportStreamOpBatch(batch);
|
1596
|
+
return;
|
1597
|
+
}
|
1598
|
+
// If we were previously cancelled from the surface, fail this
|
1599
|
+
// batch immediately.
|
1600
|
+
if (!cancelled_from_surface_.ok()) {
|
1601
|
+
// Note: This will release the call combiner.
|
1602
|
+
grpc_transport_stream_op_batch_finish_with_failure(
|
1603
|
+
batch, cancelled_from_surface_, call_combiner_);
|
1604
|
+
return;
|
1605
|
+
}
|
1606
|
+
// Handle cancellation.
|
1607
|
+
if (GPR_UNLIKELY(batch->cancel_stream)) {
|
1608
|
+
// Save cancel_error in case subsequent batches are started.
|
1609
|
+
cancelled_from_surface_ = batch->payload->cancel_stream.cancel_error;
|
1610
|
+
if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
|
1611
|
+
gpr_log(GPR_INFO, "chand=%p calld=%p: cancelled from surface: %s", chand_,
|
1612
|
+
this, StatusToString(cancelled_from_surface_).c_str());
|
1613
|
+
}
|
1614
|
+
// Fail any pending batches.
|
1615
|
+
PendingBatchesFail(cancelled_from_surface_);
|
1616
|
+
// If we have a current call attempt, commit the call, then send
|
1617
|
+
// the cancellation down to that attempt. When the call fails, it
|
1618
|
+
// will not be retried, because we have committed it here.
|
1619
|
+
if (call_attempt_ != nullptr) {
|
1620
|
+
RetryCommit(call_attempt_.get());
|
1621
|
+
// TODO(roth): When implementing hedging, this will get more
|
1622
|
+
// complex, because instead of just passing the batch down to a
|
1623
|
+
// single call attempt, we'll need to cancel multiple call
|
1624
|
+
// attempts and wait for the cancellation on_complete from each call
|
1625
|
+
// attempt before we propagate the on_complete from this batch
|
1626
|
+
// back to the surface.
|
1627
|
+
// Note: This will release the call combiner.
|
1628
|
+
call_attempt_->CancelFromSurface(batch);
|
1629
|
+
return;
|
1630
|
+
}
|
1631
|
+
// Cancel retry timer if needed.
|
1632
|
+
if (retry_timer_handle_.has_value()) {
|
1633
|
+
if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
|
1634
|
+
gpr_log(GPR_INFO, "chand=%p calld=%p: cancelling retry timer", chand_,
|
1635
|
+
this);
|
1636
|
+
}
|
1637
|
+
if (chand_->event_engine()->Cancel(*retry_timer_handle_)) {
|
1638
|
+
GRPC_CALL_STACK_UNREF(owning_call_, "OnRetryTimer");
|
1639
|
+
}
|
1640
|
+
retry_timer_handle_.reset();
|
1641
|
+
FreeAllCachedSendOpData();
|
1642
|
+
}
|
1643
|
+
// We have no call attempt, so there's nowhere to send the cancellation
|
1644
|
+
// batch. Return it back to the surface immediately.
|
1645
|
+
// Note: This will release the call combiner.
|
1646
|
+
grpc_transport_stream_op_batch_finish_with_failure(
|
1647
|
+
batch, cancelled_from_surface_, call_combiner_);
|
1648
|
+
return;
|
1649
|
+
}
|
1650
|
+
// Add the batch to the pending list.
|
1651
|
+
PendingBatch* pending = PendingBatchesAdd(batch);
|
1652
|
+
// If the timer is pending, yield the call combiner and wait for it to
|
1653
|
+
// run, since we don't want to start another call attempt until it does.
|
1654
|
+
if (retry_timer_handle_.has_value()) {
|
1655
|
+
GRPC_CALL_COMBINER_STOP(call_combiner_,
|
1656
|
+
"added pending batch while retry timer pending");
|
1657
|
+
return;
|
1658
|
+
}
|
1659
|
+
// If we do not yet have a call attempt, create one.
|
1660
|
+
if (call_attempt_ == nullptr) {
|
1661
|
+
// If this is the first batch and retries are already committed
|
1662
|
+
// (e.g., if this batch put the call above the buffer size limit), then
|
1663
|
+
// immediately create an LB call and delegate the batch to it. This
|
1664
|
+
// avoids the overhead of unnecessarily allocating a CallAttempt
|
1665
|
+
// object or caching any of the send op data.
|
1666
|
+
// Note that we would ideally like to do this also on subsequent
|
1667
|
+
// attempts (e.g., if a batch puts the call above the buffer size
|
1668
|
+
// limit since the last attempt was complete), but in practice that's
|
1669
|
+
// not really worthwhile, because we will almost always have cached and
|
1670
|
+
// completed at least the send_initial_metadata op on the previous
|
1671
|
+
// attempt, which means that we'd need special logic to replay the
|
1672
|
+
// batch anyway, which is exactly what the CallAttempt object provides.
|
1673
|
+
// We also skip this optimization if perAttemptRecvTimeout is set in the
|
1674
|
+
// retry policy, because we need the code in CallAttempt to handle
|
1675
|
+
// the associated timer.
|
1676
|
+
if (!retry_codepath_started_ && retry_committed_ &&
|
1677
|
+
(retry_policy_ == nullptr ||
|
1678
|
+
!retry_policy_->per_attempt_recv_timeout().has_value())) {
|
1679
|
+
if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
|
1680
|
+
gpr_log(GPR_INFO,
|
1681
|
+
"chand=%p calld=%p: retry committed before first attempt; "
|
1682
|
+
"creating LB call",
|
1683
|
+
chand_, this);
|
1684
|
+
}
|
1685
|
+
PendingBatchClear(pending);
|
1686
|
+
auto* service_config_call_data =
|
1687
|
+
static_cast<ClientChannelServiceConfigCallData*>(
|
1688
|
+
call_context_[GRPC_CONTEXT_SERVICE_CONFIG_CALL_DATA].value);
|
1689
|
+
committed_call_ = CreateLoadBalancedCall(
|
1690
|
+
[service_config_call_data]() { service_config_call_data->Commit(); },
|
1691
|
+
/*is_transparent_retry=*/false);
|
1692
|
+
committed_call_->StartTransportStreamOpBatch(batch);
|
1693
|
+
return;
|
1694
|
+
}
|
1695
|
+
// Otherwise, create a call attempt.
|
1696
|
+
// The attempt will automatically start any necessary replays or
|
1697
|
+
// pending batches.
|
1698
|
+
if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
|
1699
|
+
gpr_log(GPR_INFO, "chand=%p calld=%p: creating call attempt", chand_,
|
1700
|
+
this);
|
1701
|
+
}
|
1702
|
+
retry_codepath_started_ = true;
|
1703
|
+
CreateCallAttempt(/*is_transparent_retry=*/false);
|
1704
|
+
return;
|
1705
|
+
}
|
1706
|
+
// Send batches to call attempt.
|
1707
|
+
if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
|
1708
|
+
gpr_log(GPR_INFO, "chand=%p calld=%p: starting batch on attempt=%p", chand_,
|
1709
|
+
this, call_attempt_.get());
|
1710
|
+
}
|
1711
|
+
call_attempt_->StartRetriableBatches();
|
1712
|
+
}
|
1713
|
+
|
1714
|
+
OrphanablePtr<ClientChannel::FilterBasedLoadBalancedCall>
|
1715
|
+
RetryFilter::LegacyCallData::CreateLoadBalancedCall(
|
1716
|
+
absl::AnyInvocable<void()> on_commit, bool is_transparent_retry) {
|
1717
|
+
grpc_call_element_args args = {owning_call_, nullptr, call_context_,
|
1718
|
+
path_, /*start_time=*/0, deadline_,
|
1719
|
+
arena_, call_combiner_};
|
1720
|
+
return chand_->client_channel()->CreateLoadBalancedCall(
|
1721
|
+
args, pollent_,
|
1722
|
+
// This callback holds a ref to the CallStackDestructionBarrier
|
1723
|
+
// object until the LB call is destroyed.
|
1724
|
+
call_stack_destruction_barrier_->MakeLbCallDestructionClosure(this),
|
1725
|
+
std::move(on_commit), is_transparent_retry);
|
1726
|
+
}
|
1727
|
+
|
1728
|
+
void RetryFilter::LegacyCallData::CreateCallAttempt(bool is_transparent_retry) {
|
1729
|
+
call_attempt_ = MakeRefCounted<CallAttempt>(this, is_transparent_retry);
|
1730
|
+
call_attempt_->StartRetriableBatches();
|
1731
|
+
}
|
1732
|
+
|
1733
|
+
//
|
1734
|
+
// send op data caching
|
1735
|
+
//
|
1736
|
+
|
1737
|
+
void RetryFilter::LegacyCallData::MaybeCacheSendOpsForBatch(
|
1738
|
+
PendingBatch* pending) {
|
1739
|
+
if (pending->send_ops_cached) return;
|
1740
|
+
pending->send_ops_cached = true;
|
1741
|
+
grpc_transport_stream_op_batch* batch = pending->batch;
|
1742
|
+
// Save a copy of metadata for send_initial_metadata ops.
|
1743
|
+
if (batch->send_initial_metadata) {
|
1744
|
+
seen_send_initial_metadata_ = true;
|
1745
|
+
grpc_metadata_batch* send_initial_metadata =
|
1746
|
+
batch->payload->send_initial_metadata.send_initial_metadata;
|
1747
|
+
send_initial_metadata_ = send_initial_metadata->Copy();
|
1748
|
+
}
|
1749
|
+
// Set up cache for send_message ops.
|
1750
|
+
if (batch->send_message) {
|
1751
|
+
SliceBuffer* cache = arena_->New<SliceBuffer>(std::move(
|
1752
|
+
*std::exchange(batch->payload->send_message.send_message, nullptr)));
|
1753
|
+
send_messages_.push_back({cache, batch->payload->send_message.flags});
|
1754
|
+
}
|
1755
|
+
// Save metadata batch for send_trailing_metadata ops.
|
1756
|
+
if (batch->send_trailing_metadata) {
|
1757
|
+
seen_send_trailing_metadata_ = true;
|
1758
|
+
grpc_metadata_batch* send_trailing_metadata =
|
1759
|
+
batch->payload->send_trailing_metadata.send_trailing_metadata;
|
1760
|
+
send_trailing_metadata_ = send_trailing_metadata->Copy();
|
1761
|
+
}
|
1762
|
+
}
|
1763
|
+
|
1764
|
+
void RetryFilter::LegacyCallData::FreeCachedSendInitialMetadata() {
|
1765
|
+
if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
|
1766
|
+
gpr_log(GPR_INFO, "chand=%p calld=%p: destroying send_initial_metadata",
|
1767
|
+
chand_, this);
|
1768
|
+
}
|
1769
|
+
send_initial_metadata_.Clear();
|
1770
|
+
}
|
1771
|
+
|
1772
|
+
void RetryFilter::LegacyCallData::FreeCachedSendMessage(size_t idx) {
|
1773
|
+
if (send_messages_[idx].slices != nullptr) {
|
1774
|
+
if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
|
1775
|
+
gpr_log(GPR_INFO,
|
1776
|
+
"chand=%p calld=%p: destroying send_messages[%" PRIuPTR "]",
|
1777
|
+
chand_, this, idx);
|
1778
|
+
}
|
1779
|
+
Destruct(std::exchange(send_messages_[idx].slices, nullptr));
|
1780
|
+
}
|
1781
|
+
}
|
1782
|
+
|
1783
|
+
void RetryFilter::LegacyCallData::FreeCachedSendTrailingMetadata() {
|
1784
|
+
if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
|
1785
|
+
gpr_log(GPR_INFO, "chand=%p calld=%p: destroying send_trailing_metadata",
|
1786
|
+
chand_, this);
|
1787
|
+
}
|
1788
|
+
send_trailing_metadata_.Clear();
|
1789
|
+
}
|
1790
|
+
|
1791
|
+
void RetryFilter::LegacyCallData::FreeAllCachedSendOpData() {
|
1792
|
+
if (seen_send_initial_metadata_) {
|
1793
|
+
FreeCachedSendInitialMetadata();
|
1794
|
+
}
|
1795
|
+
for (size_t i = 0; i < send_messages_.size(); ++i) {
|
1796
|
+
FreeCachedSendMessage(i);
|
1797
|
+
}
|
1798
|
+
if (seen_send_trailing_metadata_) {
|
1799
|
+
FreeCachedSendTrailingMetadata();
|
1800
|
+
}
|
1801
|
+
}
|
1802
|
+
|
1803
|
+
//
|
1804
|
+
// pending_batches management
|
1805
|
+
//
|
1806
|
+
|
1807
|
+
size_t RetryFilter::LegacyCallData::GetBatchIndex(
|
1808
|
+
grpc_transport_stream_op_batch* batch) {
|
1809
|
+
if (batch->send_initial_metadata) return 0;
|
1810
|
+
if (batch->send_message) return 1;
|
1811
|
+
if (batch->send_trailing_metadata) return 2;
|
1812
|
+
if (batch->recv_initial_metadata) return 3;
|
1813
|
+
if (batch->recv_message) return 4;
|
1814
|
+
if (batch->recv_trailing_metadata) return 5;
|
1815
|
+
GPR_UNREACHABLE_CODE(return (size_t)-1);
|
1816
|
+
}
|
1817
|
+
|
1818
|
+
// This is called via the call combiner, so access to calld is synchronized.
|
1819
|
+
RetryFilter::LegacyCallData::PendingBatch*
|
1820
|
+
RetryFilter::LegacyCallData::PendingBatchesAdd(
|
1821
|
+
grpc_transport_stream_op_batch* batch) {
|
1822
|
+
const size_t idx = GetBatchIndex(batch);
|
1823
|
+
if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
|
1824
|
+
gpr_log(GPR_INFO,
|
1825
|
+
"chand=%p calld=%p: adding pending batch at index %" PRIuPTR,
|
1826
|
+
chand_, this, idx);
|
1827
|
+
}
|
1828
|
+
PendingBatch* pending = &pending_batches_[idx];
|
1829
|
+
GPR_ASSERT(pending->batch == nullptr);
|
1830
|
+
pending->batch = batch;
|
1831
|
+
pending->send_ops_cached = false;
|
1832
|
+
// Update state in calld about pending batches.
|
1833
|
+
// Also check if the batch takes us over the retry buffer limit.
|
1834
|
+
// Note: We don't check the size of trailing metadata here, because
|
1835
|
+
// gRPC clients do not send trailing metadata.
|
1836
|
+
if (batch->send_initial_metadata) {
|
1837
|
+
pending_send_initial_metadata_ = true;
|
1838
|
+
bytes_buffered_for_retry_ += batch->payload->send_initial_metadata
|
1839
|
+
.send_initial_metadata->TransportSize();
|
1840
|
+
}
|
1841
|
+
if (batch->send_message) {
|
1842
|
+
pending_send_message_ = true;
|
1843
|
+
bytes_buffered_for_retry_ +=
|
1844
|
+
batch->payload->send_message.send_message->Length();
|
1845
|
+
}
|
1846
|
+
if (batch->send_trailing_metadata) {
|
1847
|
+
pending_send_trailing_metadata_ = true;
|
1848
|
+
}
|
1849
|
+
// TODO(roth): When we implement hedging, if there are currently attempts
|
1850
|
+
// in flight, we will need to pick the one on which the max number of send
|
1851
|
+
// ops have already been sent, and we commit to that attempt.
|
1852
|
+
if (GPR_UNLIKELY(bytes_buffered_for_retry_ >
|
1853
|
+
chand_->per_rpc_retry_buffer_size())) {
|
1854
|
+
if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
|
1855
|
+
gpr_log(GPR_INFO,
|
1856
|
+
"chand=%p calld=%p: exceeded retry buffer size, committing",
|
1857
|
+
chand_, this);
|
1858
|
+
}
|
1859
|
+
RetryCommit(call_attempt_.get());
|
1860
|
+
}
|
1861
|
+
return pending;
|
1862
|
+
}
|
1863
|
+
|
1864
|
+
void RetryFilter::LegacyCallData::PendingBatchClear(PendingBatch* pending) {
|
1865
|
+
if (pending->batch->send_initial_metadata) {
|
1866
|
+
pending_send_initial_metadata_ = false;
|
1867
|
+
}
|
1868
|
+
if (pending->batch->send_message) {
|
1869
|
+
pending_send_message_ = false;
|
1870
|
+
}
|
1871
|
+
if (pending->batch->send_trailing_metadata) {
|
1872
|
+
pending_send_trailing_metadata_ = false;
|
1873
|
+
}
|
1874
|
+
pending->batch = nullptr;
|
1875
|
+
}
|
1876
|
+
|
1877
|
+
void RetryFilter::LegacyCallData::MaybeClearPendingBatch(
|
1878
|
+
PendingBatch* pending) {
|
1879
|
+
grpc_transport_stream_op_batch* batch = pending->batch;
|
1880
|
+
// We clear the pending batch if all of its callbacks have been
|
1881
|
+
// scheduled and reset to nullptr.
|
1882
|
+
if (batch->on_complete == nullptr &&
|
1883
|
+
(!batch->recv_initial_metadata ||
|
1884
|
+
batch->payload->recv_initial_metadata.recv_initial_metadata_ready ==
|
1885
|
+
nullptr) &&
|
1886
|
+
(!batch->recv_message ||
|
1887
|
+
batch->payload->recv_message.recv_message_ready == nullptr) &&
|
1888
|
+
(!batch->recv_trailing_metadata ||
|
1889
|
+
batch->payload->recv_trailing_metadata.recv_trailing_metadata_ready ==
|
1890
|
+
nullptr)) {
|
1891
|
+
if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
|
1892
|
+
gpr_log(GPR_INFO, "chand=%p calld=%p: clearing pending batch", chand_,
|
1893
|
+
this);
|
1894
|
+
}
|
1895
|
+
PendingBatchClear(pending);
|
1896
|
+
}
|
1897
|
+
}
|
1898
|
+
|
1899
|
+
// This is called via the call combiner, so access to calld is synchronized.
|
1900
|
+
void RetryFilter::LegacyCallData::FailPendingBatchInCallCombiner(
|
1901
|
+
void* arg, grpc_error_handle error) {
|
1902
|
+
grpc_transport_stream_op_batch* batch =
|
1903
|
+
static_cast<grpc_transport_stream_op_batch*>(arg);
|
1904
|
+
RetryFilter::LegacyCallData* call = static_cast<RetryFilter::LegacyCallData*>(
|
1905
|
+
batch->handler_private.extra_arg);
|
1906
|
+
// Note: This will release the call combiner.
|
1907
|
+
grpc_transport_stream_op_batch_finish_with_failure(batch, error,
|
1908
|
+
call->call_combiner_);
|
1909
|
+
}
|
1910
|
+
|
1911
|
+
// This is called via the call combiner, so access to calld is synchronized.
|
1912
|
+
void RetryFilter::LegacyCallData::PendingBatchesFail(grpc_error_handle error) {
|
1913
|
+
GPR_ASSERT(!error.ok());
|
1914
|
+
if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
|
1915
|
+
size_t num_batches = 0;
|
1916
|
+
for (size_t i = 0; i < GPR_ARRAY_SIZE(pending_batches_); ++i) {
|
1917
|
+
if (pending_batches_[i].batch != nullptr) ++num_batches;
|
1918
|
+
}
|
1919
|
+
gpr_log(GPR_INFO,
|
1920
|
+
"chand=%p calld=%p: failing %" PRIuPTR " pending batches: %s",
|
1921
|
+
chand_, this, num_batches, StatusToString(error).c_str());
|
1922
|
+
}
|
1923
|
+
CallCombinerClosureList closures;
|
1924
|
+
for (size_t i = 0; i < GPR_ARRAY_SIZE(pending_batches_); ++i) {
|
1925
|
+
PendingBatch* pending = &pending_batches_[i];
|
1926
|
+
grpc_transport_stream_op_batch* batch = pending->batch;
|
1927
|
+
if (batch != nullptr) {
|
1928
|
+
batch->handler_private.extra_arg = this;
|
1929
|
+
GRPC_CLOSURE_INIT(&batch->handler_private.closure,
|
1930
|
+
FailPendingBatchInCallCombiner, batch,
|
1931
|
+
grpc_schedule_on_exec_ctx);
|
1932
|
+
closures.Add(&batch->handler_private.closure, error,
|
1933
|
+
"PendingBatchesFail");
|
1934
|
+
PendingBatchClear(pending);
|
1935
|
+
}
|
1936
|
+
}
|
1937
|
+
closures.RunClosuresWithoutYielding(call_combiner_);
|
1938
|
+
}
|
1939
|
+
|
1940
|
+
template <typename Predicate>
|
1941
|
+
RetryFilter::LegacyCallData::PendingBatch*
|
1942
|
+
RetryFilter::LegacyCallData::PendingBatchFind(const char* log_message,
|
1943
|
+
Predicate predicate) {
|
1944
|
+
for (size_t i = 0; i < GPR_ARRAY_SIZE(pending_batches_); ++i) {
|
1945
|
+
PendingBatch* pending = &pending_batches_[i];
|
1946
|
+
grpc_transport_stream_op_batch* batch = pending->batch;
|
1947
|
+
if (batch != nullptr && predicate(batch)) {
|
1948
|
+
if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
|
1949
|
+
gpr_log(GPR_INFO,
|
1950
|
+
"chand=%p calld=%p: %s pending batch at index %" PRIuPTR,
|
1951
|
+
chand_, this, log_message, i);
|
1952
|
+
}
|
1953
|
+
return pending;
|
1954
|
+
}
|
1955
|
+
}
|
1956
|
+
return nullptr;
|
1957
|
+
}
|
1958
|
+
|
1959
|
+
//
|
1960
|
+
// retry code
|
1961
|
+
//
|
1962
|
+
|
1963
|
+
void RetryFilter::LegacyCallData::RetryCommit(CallAttempt* call_attempt) {
|
1964
|
+
if (retry_committed_) return;
|
1965
|
+
retry_committed_ = true;
|
1966
|
+
if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
|
1967
|
+
gpr_log(GPR_INFO, "chand=%p calld=%p: committing retries", chand_, this);
|
1968
|
+
}
|
1969
|
+
if (call_attempt != nullptr) {
|
1970
|
+
// If the call attempt's LB call has been committed, invoke the
|
1971
|
+
// call's on_commit callback.
|
1972
|
+
// Note: If call_attempt is null, this is happening before the first
|
1973
|
+
// retry attempt is started, in which case we'll just pass the real
|
1974
|
+
// on_commit callback down into the LB call, and it won't be our
|
1975
|
+
// problem anymore.
|
1976
|
+
if (call_attempt->lb_call_committed()) {
|
1977
|
+
auto* service_config_call_data =
|
1978
|
+
static_cast<ClientChannelServiceConfigCallData*>(
|
1979
|
+
call_context_[GRPC_CONTEXT_SERVICE_CONFIG_CALL_DATA].value);
|
1980
|
+
service_config_call_data->Commit();
|
1981
|
+
}
|
1982
|
+
// Free cached send ops.
|
1983
|
+
call_attempt->FreeCachedSendOpDataAfterCommit();
|
1984
|
+
}
|
1985
|
+
}
|
1986
|
+
|
1987
|
+
void RetryFilter::LegacyCallData::StartRetryTimer(
|
1988
|
+
absl::optional<Duration> server_pushback) {
|
1989
|
+
// Reset call attempt.
|
1990
|
+
call_attempt_.reset(DEBUG_LOCATION, "StartRetryTimer");
|
1991
|
+
// Compute backoff delay.
|
1992
|
+
Duration next_attempt_timeout;
|
1993
|
+
if (server_pushback.has_value()) {
|
1994
|
+
GPR_ASSERT(*server_pushback >= Duration::Zero());
|
1995
|
+
next_attempt_timeout = *server_pushback;
|
1996
|
+
retry_backoff_.Reset();
|
1997
|
+
} else {
|
1998
|
+
next_attempt_timeout = retry_backoff_.NextAttemptTime() - Timestamp::Now();
|
1999
|
+
}
|
2000
|
+
if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
|
2001
|
+
gpr_log(GPR_INFO,
|
2002
|
+
"chand=%p calld=%p: retrying failed call in %" PRId64 " ms", chand_,
|
2003
|
+
this, next_attempt_timeout.millis());
|
2004
|
+
}
|
2005
|
+
// Schedule retry after computed delay.
|
2006
|
+
GRPC_CALL_STACK_REF(owning_call_, "OnRetryTimer");
|
2007
|
+
retry_timer_handle_ =
|
2008
|
+
chand_->event_engine()->RunAfter(next_attempt_timeout, [this] {
|
2009
|
+
ApplicationCallbackExecCtx callback_exec_ctx;
|
2010
|
+
ExecCtx exec_ctx;
|
2011
|
+
OnRetryTimer();
|
2012
|
+
});
|
2013
|
+
}
|
2014
|
+
|
2015
|
+
void RetryFilter::LegacyCallData::OnRetryTimer() {
|
2016
|
+
GRPC_CLOSURE_INIT(&retry_closure_, OnRetryTimerLocked, this, nullptr);
|
2017
|
+
GRPC_CALL_COMBINER_START(call_combiner_, &retry_closure_, absl::OkStatus(),
|
2018
|
+
"retry timer fired");
|
2019
|
+
}
|
2020
|
+
|
2021
|
+
void RetryFilter::LegacyCallData::OnRetryTimerLocked(
|
2022
|
+
void* arg, grpc_error_handle /*error*/) {
|
2023
|
+
auto* calld = static_cast<RetryFilter::LegacyCallData*>(arg);
|
2024
|
+
calld->retry_timer_handle_.reset();
|
2025
|
+
calld->CreateCallAttempt(/*is_transparent_retry=*/false);
|
2026
|
+
GRPC_CALL_STACK_UNREF(calld->owning_call_, "OnRetryTimer");
|
2027
|
+
}
|
2028
|
+
|
2029
|
+
void RetryFilter::LegacyCallData::AddClosureToStartTransparentRetry(
|
2030
|
+
CallCombinerClosureList* closures) {
|
2031
|
+
if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
|
2032
|
+
gpr_log(GPR_INFO, "chand=%p calld=%p: scheduling transparent retry", chand_,
|
2033
|
+
this);
|
2034
|
+
}
|
2035
|
+
GRPC_CALL_STACK_REF(owning_call_, "OnRetryTimer");
|
2036
|
+
GRPC_CLOSURE_INIT(&retry_closure_, StartTransparentRetry, this, nullptr);
|
2037
|
+
closures->Add(&retry_closure_, absl::OkStatus(), "start transparent retry");
|
2038
|
+
}
|
2039
|
+
|
2040
|
+
void RetryFilter::LegacyCallData::StartTransparentRetry(
|
2041
|
+
void* arg, grpc_error_handle /*error*/) {
|
2042
|
+
auto* calld = static_cast<RetryFilter::LegacyCallData*>(arg);
|
2043
|
+
if (calld->cancelled_from_surface_.ok()) {
|
2044
|
+
calld->CreateCallAttempt(/*is_transparent_retry=*/true);
|
2045
|
+
} else {
|
2046
|
+
GRPC_CALL_COMBINER_STOP(calld->call_combiner_,
|
2047
|
+
"call cancelled before transparent retry");
|
2048
|
+
}
|
2049
|
+
GRPC_CALL_STACK_UNREF(calld->owning_call_, "OnRetryTimer");
|
2050
|
+
}
|
2051
|
+
|
2052
|
+
} // namespace grpc_core
|