grpc 1.53.0 → 1.59.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2080) hide show
  1. checksums.yaml +4 -4
  2. data/Makefile +729 -374
  3. data/include/grpc/event_engine/event_engine.h +55 -53
  4. data/include/grpc/event_engine/memory_allocator.h +2 -2
  5. data/include/grpc/grpc_audit_logging.h +96 -0
  6. data/include/grpc/grpc_security.h +23 -0
  7. data/include/grpc/impl/channel_arg_names.h +375 -0
  8. data/include/grpc/impl/grpc_types.h +1 -339
  9. data/include/grpc/module.modulemap +3 -0
  10. data/include/grpc/support/json.h +218 -0
  11. data/include/grpc/support/port_platform.h +107 -28
  12. data/src/core/ext/filters/backend_metrics/backend_metric_filter.cc +18 -2
  13. data/src/core/ext/filters/channel_idle/channel_idle_filter.cc +24 -10
  14. data/src/core/ext/filters/client_channel/backend_metric.cc +10 -1
  15. data/src/core/ext/filters/client_channel/backup_poller.cc +2 -11
  16. data/src/core/ext/filters/client_channel/backup_poller.h +0 -3
  17. data/src/core/ext/filters/client_channel/channel_connectivity.cc +4 -4
  18. data/src/core/ext/filters/client_channel/client_channel.cc +1366 -947
  19. data/src/core/ext/filters/client_channel/client_channel.h +180 -168
  20. data/src/core/ext/filters/client_channel/client_channel_channelz.cc +20 -19
  21. data/src/core/ext/filters/client_channel/client_channel_internal.h +77 -0
  22. data/src/core/ext/filters/client_channel/client_channel_plugin.cc +15 -1
  23. data/src/core/ext/filters/client_channel/client_channel_service_config.cc +2 -2
  24. data/src/core/ext/filters/client_channel/config_selector.h +13 -39
  25. data/src/core/ext/filters/client_channel/dynamic_filters.h +5 -3
  26. data/src/core/ext/filters/client_channel/{http_proxy.cc → http_proxy_mapper.cc} +42 -4
  27. data/src/core/ext/filters/client_channel/{http_proxy.h → http_proxy_mapper.h} +3 -3
  28. data/src/core/ext/filters/client_channel/lb_policy/address_filtering.cc +27 -53
  29. data/src/core/ext/filters/client_channel/lb_policy/address_filtering.h +23 -9
  30. data/src/core/ext/filters/client_channel/lb_policy/backend_metric_data.h +9 -1
  31. data/src/core/ext/filters/client_channel/lb_policy/child_policy_handler.cc +25 -35
  32. data/src/core/ext/filters/client_channel/lb_policy/endpoint_list.cc +188 -0
  33. data/src/core/ext/filters/client_channel/lb_policy/endpoint_list.h +214 -0
  34. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc +120 -160
  35. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.cc +2 -1
  36. data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.cc +5 -4
  37. data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h +4 -2
  38. data/src/core/ext/filters/client_channel/lb_policy/health_check_client.cc +515 -0
  39. data/src/core/ext/filters/client_channel/lb_policy/health_check_client.h +52 -0
  40. data/src/core/ext/filters/client_channel/lb_policy/health_check_client_internal.h +204 -0
  41. data/src/core/ext/filters/client_channel/lb_policy/oob_backend_metric.cc +6 -9
  42. data/src/core/ext/filters/client_channel/lb_policy/oob_backend_metric_internal.h +2 -0
  43. data/src/core/ext/filters/client_channel/lb_policy/outlier_detection/outlier_detection.cc +93 -106
  44. data/src/core/ext/filters/client_channel/lb_policy/outlier_detection/outlier_detection.h +2 -2
  45. data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc +532 -191
  46. data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.h +36 -0
  47. data/src/core/ext/filters/client_channel/lb_policy/priority/priority.cc +16 -45
  48. data/src/core/ext/filters/client_channel/lb_policy/ring_hash/ring_hash.cc +464 -498
  49. data/src/core/ext/filters/client_channel/lb_policy/ring_hash/ring_hash.h +18 -1
  50. data/src/core/ext/filters/client_channel/lb_policy/rls/rls.cc +75 -145
  51. data/src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc +430 -40
  52. data/src/core/ext/filters/client_channel/lb_policy/subchannel_list.h +26 -23
  53. data/src/core/ext/filters/client_channel/lb_policy/weighted_round_robin/static_stride_scheduler.cc +76 -6
  54. data/src/core/ext/filters/client_channel/lb_policy/weighted_round_robin/weighted_round_robin.cc +951 -110
  55. data/src/core/ext/filters/client_channel/lb_policy/weighted_target/weighted_target.cc +30 -57
  56. data/src/core/ext/filters/client_channel/lb_policy/xds/cds.cc +73 -126
  57. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_channel_args.h +8 -0
  58. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_impl.cc +43 -87
  59. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_manager.cc +25 -74
  60. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_resolver.cc +117 -173
  61. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_override_host.cc +83 -70
  62. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_wrr_locality.cc +28 -96
  63. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc +47 -157
  64. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.h +30 -0
  65. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc +102 -11
  66. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc +107 -177
  67. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc +58 -44
  68. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h +4 -1
  69. data/src/core/ext/filters/client_channel/resolver/dns/dns_resolver_plugin.cc +66 -0
  70. data/src/core/ext/filters/client_channel/resolver/dns/{dns_resolver_selection.h → dns_resolver_plugin.h} +10 -12
  71. data/src/core/ext/filters/client_channel/resolver/dns/event_engine/event_engine_client_channel_resolver.cc +586 -0
  72. data/src/core/ext/filters/client_channel/resolver/dns/event_engine/event_engine_client_channel_resolver.h +35 -0
  73. data/src/core/ext/filters/client_channel/resolver/dns/event_engine/service_config_helper.cc +97 -0
  74. data/src/core/ext/filters/client_channel/resolver/dns/event_engine/service_config_helper.h +32 -0
  75. data/src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc +20 -37
  76. data/src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.h +24 -0
  77. data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.cc +24 -6
  78. data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.h +36 -2
  79. data/src/core/ext/filters/client_channel/resolver/google_c2p/google_c2p_resolver.cc +61 -207
  80. data/src/core/ext/filters/client_channel/resolver/polling_resolver.cc +11 -6
  81. data/src/core/ext/filters/client_channel/resolver/polling_resolver.h +2 -2
  82. data/src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc +25 -13
  83. data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.cc +470 -313
  84. data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.h +32 -1
  85. data/src/core/ext/filters/client_channel/retry_filter.cc +40 -2538
  86. data/src/core/ext/filters/client_channel/retry_filter.h +92 -1
  87. data/src/core/ext/filters/client_channel/retry_filter_legacy_call_data.cc +2052 -0
  88. data/src/core/ext/filters/client_channel/retry_filter_legacy_call_data.h +442 -0
  89. data/src/core/ext/filters/client_channel/retry_service_config.cc +10 -9
  90. data/src/core/ext/filters/client_channel/service_config_channel_arg_filter.cc +40 -90
  91. data/src/core/ext/filters/client_channel/subchannel.cc +52 -203
  92. data/src/core/ext/filters/client_channel/subchannel.h +23 -48
  93. data/src/core/ext/filters/client_channel/subchannel_interface_internal.h +3 -0
  94. data/src/core/ext/filters/client_channel/subchannel_stream_client.cc +26 -27
  95. data/src/core/ext/filters/client_channel/subchannel_stream_client.h +8 -5
  96. data/src/core/ext/filters/deadline/deadline_filter.cc +1 -1
  97. data/src/core/ext/filters/fault_injection/fault_injection_service_config_parser.cc +1 -1
  98. data/src/core/ext/filters/http/client/http_client_filter.cc +4 -3
  99. data/src/core/ext/filters/http/client_authority_filter.cc +1 -1
  100. data/src/core/ext/filters/http/http_filters_plugin.cc +1 -12
  101. data/src/core/ext/filters/http/message_compress/compression_filter.cc +31 -14
  102. data/src/core/ext/filters/http/server/http_server_filter.cc +22 -18
  103. data/src/core/ext/filters/message_size/message_size_filter.cc +142 -224
  104. data/src/core/ext/filters/message_size/message_size_filter.h +48 -3
  105. data/src/core/ext/filters/rbac/rbac_filter.cc +40 -111
  106. data/src/core/ext/filters/rbac/rbac_filter.h +12 -30
  107. data/src/core/ext/filters/rbac/rbac_service_config_parser.cc +162 -72
  108. data/src/core/ext/filters/server_config_selector/server_config_selector_filter.cc +6 -8
  109. data/src/core/ext/filters/stateful_session/stateful_session_filter.cc +165 -88
  110. data/src/core/ext/filters/stateful_session/stateful_session_filter.h +16 -7
  111. data/src/core/ext/gcp/metadata_query.cc +137 -0
  112. data/src/core/ext/gcp/metadata_query.h +87 -0
  113. data/src/core/ext/transport/chttp2/client/chttp2_connector.cc +1 -0
  114. data/src/core/ext/transport/chttp2/server/chttp2_server.cc +84 -70
  115. data/src/core/ext/transport/chttp2/transport/bin_encoder.cc +12 -8
  116. data/src/core/ext/transport/chttp2/transport/bin_encoder.h +5 -1
  117. data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +1118 -882
  118. data/src/core/ext/transport/chttp2/transport/chttp2_transport.h +21 -0
  119. data/src/core/ext/transport/chttp2/transport/context_list_entry.h +70 -0
  120. data/src/core/ext/transport/chttp2/transport/decode_huff.cc +6569 -174
  121. data/src/core/ext/transport/chttp2/transport/decode_huff.h +2278 -441
  122. data/src/core/ext/transport/chttp2/transport/flow_control.cc +79 -119
  123. data/src/core/ext/transport/chttp2/transport/flow_control.h +29 -5
  124. data/src/core/ext/transport/chttp2/transport/frame_data.h +1 -1
  125. data/src/core/ext/transport/chttp2/transport/frame_goaway.h +1 -1
  126. data/src/core/ext/transport/chttp2/transport/frame_ping.cc +24 -25
  127. data/src/core/ext/transport/chttp2/transport/frame_ping.h +1 -4
  128. data/src/core/ext/transport/chttp2/transport/frame_rst_stream.cc +10 -1
  129. data/src/core/ext/transport/chttp2/transport/frame_rst_stream.h +1 -1
  130. data/src/core/ext/transport/chttp2/transport/frame_settings.cc +5 -2
  131. data/src/core/ext/transport/chttp2/transport/frame_settings.h +1 -1
  132. data/src/core/ext/transport/chttp2/transport/frame_window_update.h +1 -1
  133. data/src/core/ext/transport/chttp2/transport/hpack_encoder.cc +119 -223
  134. data/src/core/ext/transport/chttp2/transport/hpack_encoder.h +296 -113
  135. data/src/core/ext/transport/chttp2/transport/hpack_encoder_table.cc +2 -0
  136. data/src/core/ext/transport/chttp2/transport/hpack_encoder_table.h +2 -0
  137. data/src/core/ext/transport/chttp2/transport/hpack_parse_result.cc +176 -0
  138. data/src/core/ext/transport/chttp2/transport/hpack_parse_result.h +326 -0
  139. data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +774 -488
  140. data/src/core/ext/transport/chttp2/transport/hpack_parser.h +166 -14
  141. data/src/core/ext/transport/chttp2/transport/hpack_parser_table.cc +59 -42
  142. data/src/core/ext/transport/chttp2/transport/hpack_parser_table.h +26 -4
  143. data/src/core/ext/transport/chttp2/transport/internal.h +211 -151
  144. data/src/core/ext/transport/chttp2/transport/{frame.h → legacy_frame.h} +3 -3
  145. data/src/core/ext/transport/chttp2/transport/max_concurrent_streams_policy.cc +44 -0
  146. data/src/core/ext/transport/chttp2/transport/max_concurrent_streams_policy.h +67 -0
  147. data/src/core/ext/transport/chttp2/transport/parsing.cc +152 -33
  148. data/src/core/ext/transport/chttp2/transport/ping_abuse_policy.cc +90 -0
  149. data/src/core/ext/transport/chttp2/transport/ping_abuse_policy.h +59 -0
  150. data/src/core/ext/transport/chttp2/transport/ping_callbacks.cc +108 -0
  151. data/src/core/ext/transport/chttp2/transport/ping_callbacks.h +115 -0
  152. data/src/core/ext/transport/chttp2/transport/ping_rate_policy.cc +120 -0
  153. data/src/core/ext/transport/chttp2/transport/ping_rate_policy.h +88 -0
  154. data/src/core/ext/transport/chttp2/transport/stream_lists.cc +1 -1
  155. data/src/core/ext/transport/chttp2/transport/write_size_policy.cc +60 -0
  156. data/src/core/ext/transport/chttp2/transport/write_size_policy.h +66 -0
  157. data/src/core/ext/transport/chttp2/transport/writing.cc +222 -142
  158. data/src/core/ext/transport/inproc/inproc_transport.cc +30 -14
  159. data/src/core/ext/upb-generated/envoy/admin/v3/certs.upb.c +85 -52
  160. data/src/core/ext/upb-generated/envoy/admin/v3/certs.upb.h +407 -182
  161. data/src/core/ext/upb-generated/envoy/admin/v3/clusters.upb.c +119 -60
  162. data/src/core/ext/upb-generated/envoy/admin/v3/clusters.upb.h +474 -225
  163. data/src/core/ext/upb-generated/envoy/admin/v3/config_dump.upb.c +88 -55
  164. data/src/core/ext/upb-generated/envoy/admin/v3/config_dump.upb.h +408 -189
  165. data/src/core/ext/upb-generated/envoy/admin/v3/config_dump_shared.upb.c +355 -210
  166. data/src/core/ext/upb-generated/envoy/admin/v3/config_dump_shared.upb.h +1564 -729
  167. data/src/core/ext/upb-generated/envoy/admin/v3/init_dump.upb.c +28 -17
  168. data/src/core/ext/upb-generated/envoy/admin/v3/init_dump.upb.h +140 -51
  169. data/src/core/ext/upb-generated/envoy/admin/v3/listeners.upb.c +32 -21
  170. data/src/core/ext/upb-generated/envoy/admin/v3/listeners.upb.h +153 -63
  171. data/src/core/ext/upb-generated/envoy/admin/v3/memory.upb.c +25 -14
  172. data/src/core/ext/upb-generated/envoy/admin/v3/memory.upb.h +71 -39
  173. data/src/core/ext/upb-generated/envoy/admin/v3/metrics.upb.c +18 -11
  174. data/src/core/ext/upb-generated/envoy/admin/v3/metrics.upb.h +41 -27
  175. data/src/core/ext/upb-generated/envoy/admin/v3/mutex_stats.upb.c +18 -11
  176. data/src/core/ext/upb-generated/envoy/admin/v3/mutex_stats.upb.h +41 -27
  177. data/src/core/ext/upb-generated/envoy/admin/v3/server_info.upb.c +107 -62
  178. data/src/core/ext/upb-generated/envoy/admin/v3/server_info.upb.h +559 -245
  179. data/src/core/ext/upb-generated/envoy/admin/v3/tap.upb.c +19 -12
  180. data/src/core/ext/upb-generated/envoy/admin/v3/tap.upb.h +38 -31
  181. data/src/core/ext/upb-generated/envoy/annotations/deprecation.upb.c +20 -19
  182. data/src/core/ext/upb-generated/envoy/annotations/deprecation.upb.h +75 -30
  183. data/src/core/ext/upb-generated/envoy/annotations/resource.upb.c +21 -16
  184. data/src/core/ext/upb-generated/envoy/annotations/resource.upb.h +38 -31
  185. data/src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.c +253 -147
  186. data/src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.h +869 -405
  187. data/src/core/ext/upb-generated/envoy/config/bootstrap/v3/bootstrap.upb.c +415 -262
  188. data/src/core/ext/upb-generated/envoy/config/bootstrap/v3/bootstrap.upb.h +1842 -888
  189. data/src/core/ext/upb-generated/envoy/config/cluster/v3/circuit_breaker.upb.c +72 -41
  190. data/src/core/ext/upb-generated/envoy/config/cluster/v3/circuit_breaker.upb.h +279 -149
  191. data/src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.c +529 -334
  192. data/src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.h +2009 -1131
  193. data/src/core/ext/upb-generated/envoy/config/cluster/v3/filter.upb.c +19 -12
  194. data/src/core/ext/upb-generated/envoy/config/cluster/v3/filter.upb.h +38 -31
  195. data/src/core/ext/upb-generated/envoy/config/cluster/v3/outlier_detection.upb.c +87 -52
  196. data/src/core/ext/upb-generated/envoy/config/cluster/v3/outlier_detection.upb.h +340 -233
  197. data/src/core/ext/upb-generated/envoy/config/common/matcher/v3/matcher.upb.c +262 -165
  198. data/src/core/ext/upb-generated/envoy/config/common/matcher/v3/matcher.upb.h +881 -477
  199. data/src/core/ext/upb-generated/envoy/config/core/v3/address.upb.c +137 -80
  200. data/src/core/ext/upb-generated/envoy/config/core/v3/address.upb.h +520 -275
  201. data/src/core/ext/upb-generated/envoy/config/core/v3/backoff.upb.c +20 -13
  202. data/src/core/ext/upb-generated/envoy/config/core/v3/backoff.upb.h +43 -37
  203. data/src/core/ext/upb-generated/envoy/config/core/v3/base.upb.c +378 -221
  204. data/src/core/ext/upb-generated/envoy/config/core/v3/base.upb.h +1160 -611
  205. data/src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.c +155 -92
  206. data/src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.h +620 -293
  207. data/src/core/ext/upb-generated/envoy/config/core/v3/event_service_config.upb.c +16 -11
  208. data/src/core/ext/upb-generated/envoy/config/core/v3/event_service_config.upb.h +30 -27
  209. data/src/core/ext/upb-generated/envoy/config/core/v3/extension.upb.c +19 -12
  210. data/src/core/ext/upb-generated/envoy/config/core/v3/extension.upb.h +38 -31
  211. data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_method_list.upb.c +28 -17
  212. data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_method_list.upb.h +140 -51
  213. data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.c +277 -167
  214. data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.h +811 -441
  215. data/src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.c +230 -137
  216. data/src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.h +1157 -501
  217. data/src/core/ext/upb-generated/envoy/config/core/v3/http_uri.upb.c +20 -13
  218. data/src/core/ext/upb-generated/envoy/config/core/v3/http_uri.upb.h +53 -38
  219. data/src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.c +367 -209
  220. data/src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.h +1118 -636
  221. data/src/core/ext/upb-generated/envoy/config/core/v3/proxy_protocol.upb.c +42 -11
  222. data/src/core/ext/upb-generated/envoy/config/core/v3/proxy_protocol.upb.h +168 -19
  223. data/src/core/ext/upb-generated/envoy/config/core/v3/resolver.upb.c +32 -19
  224. data/src/core/ext/upb-generated/envoy/config/core/v3/resolver.upb.h +110 -56
  225. data/src/core/ext/upb-generated/envoy/config/core/v3/socket_option.upb.c +36 -21
  226. data/src/core/ext/upb-generated/envoy/config/core/v3/socket_option.upb.h +141 -65
  227. data/src/core/ext/upb-generated/envoy/config/core/v3/substitution_format_string.upb.c +29 -18
  228. data/src/core/ext/upb-generated/envoy/config/core/v3/substitution_format_string.upb.h +136 -66
  229. data/src/core/ext/upb-generated/envoy/config/core/v3/udp_socket_config.upb.c +20 -13
  230. data/src/core/ext/upb-generated/envoy/config/core/v3/udp_socket_config.upb.h +44 -38
  231. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint.upb.c +76 -43
  232. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint.upb.h +258 -128
  233. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint_components.upb.c +143 -88
  234. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint_components.upb.h +431 -242
  235. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/load_report.upb.c +113 -62
  236. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/load_report.upb.h +552 -228
  237. data/src/core/ext/upb-generated/envoy/config/listener/v3/api_listener.upb.c +16 -11
  238. data/src/core/ext/upb-generated/envoy/config/listener/v3/api_listener.upb.h +28 -27
  239. data/src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.c +185 -109
  240. data/src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.h +949 -422
  241. data/src/core/ext/upb-generated/envoy/config/listener/v3/listener_components.upb.c +170 -95
  242. data/src/core/ext/upb-generated/envoy/config/listener/v3/listener_components.upb.h +857 -375
  243. data/src/core/ext/upb-generated/envoy/config/listener/v3/quic_config.upb.c +47 -25
  244. data/src/core/ext/upb-generated/envoy/config/listener/v3/quic_config.upb.h +164 -101
  245. data/src/core/ext/upb-generated/envoy/config/listener/v3/udp_listener_config.upb.c +37 -18
  246. data/src/core/ext/upb-generated/envoy/config/listener/v3/udp_listener_config.upb.h +66 -56
  247. data/src/core/ext/upb-generated/envoy/config/metrics/v3/metrics_service.upb.c +27 -15
  248. data/src/core/ext/upb-generated/envoy/config/metrics/v3/metrics_service.upb.h +85 -46
  249. data/src/core/ext/upb-generated/envoy/config/metrics/v3/stats.upb.c +129 -74
  250. data/src/core/ext/upb-generated/envoy/config/metrics/v3/stats.upb.h +481 -249
  251. data/src/core/ext/upb-generated/envoy/config/overload/v3/overload.upb.c +161 -84
  252. data/src/core/ext/upb-generated/envoy/config/overload/v3/overload.upb.h +673 -241
  253. data/src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.c +254 -129
  254. data/src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.h +989 -398
  255. data/src/core/ext/upb-generated/envoy/config/route/v3/route.upb.c +78 -49
  256. data/src/core/ext/upb-generated/envoy/config/route/v3/route.upb.h +609 -202
  257. data/src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.c +1281 -774
  258. data/src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.h +5422 -2509
  259. data/src/core/ext/upb-generated/envoy/config/route/v3/scoped_route.upb.c +47 -28
  260. data/src/core/ext/upb-generated/envoy/config/route/v3/scoped_route.upb.h +157 -85
  261. data/src/core/ext/upb-generated/envoy/config/tap/v3/common.upb.c +226 -141
  262. data/src/core/ext/upb-generated/envoy/config/tap/v3/common.upb.h +731 -400
  263. data/src/core/ext/upb-generated/envoy/config/trace/v3/datadog.upb.c +18 -11
  264. data/src/core/ext/upb-generated/envoy/config/trace/v3/datadog.upb.h +41 -27
  265. data/src/core/ext/upb-generated/envoy/config/trace/v3/dynamic_ot.upb.c +19 -12
  266. data/src/core/ext/upb-generated/envoy/config/trace/v3/dynamic_ot.upb.h +38 -31
  267. data/src/core/ext/upb-generated/envoy/config/trace/v3/http_tracer.upb.c +30 -19
  268. data/src/core/ext/upb-generated/envoy/config/trace/v3/http_tracer.upb.h +62 -49
  269. data/src/core/ext/upb-generated/envoy/config/trace/v3/lightstep.upb.c +25 -14
  270. data/src/core/ext/upb-generated/envoy/config/trace/v3/lightstep.upb.h +103 -44
  271. data/src/core/ext/upb-generated/envoy/config/trace/v3/opencensus.upb.c +44 -25
  272. data/src/core/ext/upb-generated/envoy/config/trace/v3/opencensus.upb.h +252 -101
  273. data/src/core/ext/upb-generated/envoy/config/trace/v3/opentelemetry.upb.c +19 -13
  274. data/src/core/ext/upb-generated/envoy/config/trace/v3/opentelemetry.upb.h +38 -31
  275. data/src/core/ext/upb-generated/envoy/config/trace/v3/service.upb.c +16 -11
  276. data/src/core/ext/upb-generated/envoy/config/trace/v3/service.upb.h +28 -27
  277. data/src/core/ext/upb-generated/envoy/config/trace/v3/skywalking.upb.c +40 -23
  278. data/src/core/ext/upb-generated/envoy/config/trace/v3/skywalking.upb.h +101 -71
  279. data/src/core/ext/upb-generated/envoy/config/trace/v3/trace.upb.c +5 -4
  280. data/src/core/ext/upb-generated/envoy/config/trace/v3/trace.upb.h +14 -17
  281. data/src/core/ext/upb-generated/envoy/config/trace/v3/xray.upb.c +41 -24
  282. data/src/core/ext/upb-generated/envoy/config/trace/v3/xray.upb.h +103 -76
  283. data/src/core/ext/upb-generated/envoy/config/trace/v3/zipkin.upb.c +28 -17
  284. data/src/core/ext/upb-generated/envoy/config/trace/v3/zipkin.upb.h +88 -51
  285. data/src/core/ext/upb-generated/envoy/data/accesslog/v3/accesslog.upb.c +556 -0
  286. data/src/core/ext/upb-generated/envoy/data/accesslog/v3/accesslog.upb.h +2702 -0
  287. data/src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3/cluster.upb.c +14 -9
  288. data/src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3/cluster.upb.h +66 -24
  289. data/src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3/fault.upb.c +58 -37
  290. data/src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3/fault.upb.h +143 -109
  291. data/src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3/fault.upb.c +91 -43
  292. data/src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3/fault.upb.h +379 -168
  293. data/src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3/rbac.upb.c +42 -25
  294. data/src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3/rbac.upb.h +107 -81
  295. data/src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3/router.upb.c +66 -22
  296. data/src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3/router.upb.h +348 -83
  297. data/src/core/ext/upb-generated/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb.c +30 -19
  298. data/src/core/ext/upb-generated/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb.h +65 -51
  299. data/src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.c +502 -296
  300. data/src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h +2259 -1055
  301. data/src/core/ext/upb-generated/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb.c +16 -11
  302. data/src/core/ext/upb-generated/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb.h +28 -27
  303. 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 -19
  304. data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb.h +118 -68
  305. data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/common/v3/common.upb.c +70 -45
  306. data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/common/v3/common.upb.h +186 -139
  307. data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb.c +45 -0
  308. data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb.h +85 -0
  309. data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb.c +32 -19
  310. data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb.h +125 -68
  311. data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb.c +16 -11
  312. data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb.h +28 -27
  313. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/cert.upb.c +5 -4
  314. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/cert.upb.h +8 -11
  315. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/common.upb.c +182 -96
  316. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/common.upb.h +900 -361
  317. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/secret.upb.c +54 -33
  318. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/secret.upb.h +143 -102
  319. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls.upb.c +186 -111
  320. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls.upb.h +809 -420
  321. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb.c +30 -19
  322. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb.h +101 -53
  323. data/src/core/ext/upb-generated/envoy/service/discovery/v3/ads.upb.c +8 -7
  324. data/src/core/ext/upb-generated/envoy/service/discovery/v3/ads.upb.h +11 -15
  325. data/src/core/ext/upb-generated/envoy/service/discovery/v3/discovery.upb.c +298 -177
  326. data/src/core/ext/upb-generated/envoy/service/discovery/v3/discovery.upb.h +1277 -523
  327. data/src/core/ext/upb-generated/envoy/service/load_stats/v3/lrs.upb.c +40 -23
  328. data/src/core/ext/upb-generated/envoy/service/load_stats/v3/lrs.upb.h +181 -76
  329. data/src/core/ext/upb-generated/envoy/service/status/v3/csds.upb.c +128 -83
  330. data/src/core/ext/upb-generated/envoy/service/status/v3/csds.upb.h +503 -239
  331. data/src/core/ext/upb-generated/envoy/type/http/v3/cookie.upb.c +20 -13
  332. data/src/core/ext/upb-generated/envoy/type/http/v3/cookie.upb.h +48 -35
  333. data/src/core/ext/upb-generated/envoy/type/http/v3/path_transformation.upb.c +37 -26
  334. data/src/core/ext/upb-generated/envoy/type/http/v3/path_transformation.upb.h +117 -69
  335. data/src/core/ext/upb-generated/envoy/type/matcher/v3/filter_state.upb.c +19 -12
  336. data/src/core/ext/upb-generated/envoy/type/matcher/v3/filter_state.upb.h +40 -31
  337. data/src/core/ext/upb-generated/envoy/type/matcher/v3/http_inputs.upb.c +58 -26
  338. data/src/core/ext/upb-generated/envoy/type/matcher/v3/http_inputs.upb.h +123 -52
  339. data/src/core/ext/upb-generated/envoy/type/matcher/v3/metadata.upb.c +35 -20
  340. data/src/core/ext/upb-generated/envoy/type/matcher/v3/metadata.upb.h +126 -64
  341. data/src/core/ext/upb-generated/envoy/type/matcher/v3/node.upb.c +20 -13
  342. data/src/core/ext/upb-generated/envoy/type/matcher/v3/node.upb.h +84 -41
  343. data/src/core/ext/upb-generated/envoy/type/matcher/v3/number.upb.c +19 -12
  344. data/src/core/ext/upb-generated/envoy/type/matcher/v3/number.upb.h +43 -33
  345. data/src/core/ext/upb-generated/envoy/type/matcher/v3/path.upb.c +16 -11
  346. data/src/core/ext/upb-generated/envoy/type/matcher/v3/path.upb.h +30 -27
  347. data/src/core/ext/upb-generated/envoy/type/matcher/v3/regex.upb.c +44 -27
  348. data/src/core/ext/upb-generated/envoy/type/matcher/v3/regex.upb.h +94 -71
  349. data/src/core/ext/upb-generated/envoy/type/matcher/v3/status_code_input.upb.c +11 -10
  350. data/src/core/ext/upb-generated/envoy/type/matcher/v3/status_code_input.upb.h +17 -22
  351. data/src/core/ext/upb-generated/envoy/type/matcher/v3/string.upb.c +38 -23
  352. data/src/core/ext/upb-generated/envoy/type/matcher/v3/string.upb.h +154 -76
  353. data/src/core/ext/upb-generated/envoy/type/matcher/v3/struct.upb.c +29 -18
  354. data/src/core/ext/upb-generated/envoy/type/matcher/v3/struct.upb.h +106 -56
  355. data/src/core/ext/upb-generated/envoy/type/matcher/v3/value.upb.c +44 -29
  356. data/src/core/ext/upb-generated/envoy/type/matcher/v3/value.upb.h +132 -92
  357. data/src/core/ext/upb-generated/envoy/type/metadata/v3/metadata.upb.c +63 -42
  358. data/src/core/ext/upb-generated/envoy/type/metadata/v3/metadata.upb.h +192 -121
  359. data/src/core/ext/upb-generated/envoy/type/tracing/v3/custom_tag.upb.c +78 -45
  360. data/src/core/ext/upb-generated/envoy/type/tracing/v3/custom_tag.upb.h +201 -132
  361. data/src/core/ext/upb-generated/envoy/type/v3/hash_policy.upb.c +32 -21
  362. data/src/core/ext/upb-generated/envoy/type/v3/hash_policy.upb.h +66 -53
  363. data/src/core/ext/upb-generated/envoy/type/v3/http.upb.c +5 -4
  364. data/src/core/ext/upb-generated/envoy/type/v3/http.upb.h +5 -8
  365. data/src/core/ext/upb-generated/envoy/type/v3/http_status.upb.c +14 -9
  366. data/src/core/ext/upb-generated/envoy/type/v3/http_status.upb.h +21 -19
  367. data/src/core/ext/upb-generated/envoy/type/v3/percent.upb.c +26 -15
  368. data/src/core/ext/upb-generated/envoy/type/v3/percent.upb.h +47 -34
  369. data/src/core/ext/upb-generated/envoy/type/v3/range.upb.c +41 -22
  370. data/src/core/ext/upb-generated/envoy/type/v3/range.upb.h +83 -53
  371. data/src/core/ext/upb-generated/envoy/type/v3/ratelimit_strategy.upb.c +33 -20
  372. data/src/core/ext/upb-generated/envoy/type/v3/ratelimit_strategy.upb.h +84 -57
  373. data/src/core/ext/upb-generated/envoy/type/v3/ratelimit_unit.upb.c +5 -4
  374. data/src/core/ext/upb-generated/envoy/type/v3/ratelimit_unit.upb.h +5 -8
  375. data/src/core/ext/upb-generated/envoy/type/v3/semantic_version.upb.c +18 -11
  376. data/src/core/ext/upb-generated/envoy/type/v3/semantic_version.upb.h +41 -27
  377. data/src/core/ext/upb-generated/envoy/type/v3/token_bucket.upb.c +21 -14
  378. data/src/core/ext/upb-generated/envoy/type/v3/token_bucket.upb.h +54 -42
  379. data/src/core/ext/upb-generated/google/api/annotations.upb.c +12 -11
  380. data/src/core/ext/upb-generated/google/api/annotations.upb.h +22 -20
  381. data/src/core/ext/upb-generated/google/api/expr/v1alpha1/checked.upb.c +253 -154
  382. data/src/core/ext/upb-generated/google/api/expr/v1alpha1/checked.upb.h +927 -451
  383. data/src/core/ext/upb-generated/google/api/expr/v1alpha1/syntax.upb.c +297 -180
  384. data/src/core/ext/upb-generated/google/api/expr/v1alpha1/syntax.upb.h +939 -484
  385. data/src/core/ext/upb-generated/google/api/http.upb.c +66 -35
  386. data/src/core/ext/upb-generated/google/api/http.upb.h +277 -121
  387. data/src/core/ext/upb-generated/google/api/httpbody.upb.c +20 -13
  388. data/src/core/ext/upb-generated/google/api/httpbody.upb.h +88 -38
  389. data/src/core/ext/upb-generated/google/protobuf/any.upb.c +17 -10
  390. data/src/core/ext/upb-generated/google/protobuf/any.upb.h +31 -23
  391. data/src/core/ext/upb-generated/google/protobuf/descriptor.upb.c +1168 -419
  392. data/src/core/ext/upb-generated/google/protobuf/descriptor.upb.h +4431 -1412
  393. data/src/core/ext/upb-generated/google/protobuf/duration.upb.c +17 -10
  394. data/src/core/ext/upb-generated/google/protobuf/duration.upb.h +31 -23
  395. data/src/core/ext/upb-generated/google/protobuf/empty.upb.c +8 -7
  396. data/src/core/ext/upb-generated/google/protobuf/empty.upb.h +11 -15
  397. data/src/core/ext/upb-generated/google/protobuf/struct.upb.c +60 -39
  398. data/src/core/ext/upb-generated/google/protobuf/struct.upb.h +200 -103
  399. data/src/core/ext/upb-generated/google/protobuf/timestamp.upb.c +17 -10
  400. data/src/core/ext/upb-generated/google/protobuf/timestamp.upb.h +31 -23
  401. data/src/core/ext/upb-generated/google/protobuf/wrappers.upb.c +88 -51
  402. data/src/core/ext/upb-generated/google/protobuf/wrappers.upb.h +149 -107
  403. data/src/core/ext/upb-generated/google/rpc/status.upb.c +20 -13
  404. data/src/core/ext/upb-generated/google/rpc/status.upb.h +88 -38
  405. data/src/core/ext/upb-generated/opencensus/proto/trace/v1/trace_config.upb.c +57 -34
  406. data/src/core/ext/upb-generated/opencensus/proto/trace/v1/trace_config.upb.h +147 -93
  407. data/src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.c +41 -24
  408. data/src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.h +110 -60
  409. data/src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.c +248 -145
  410. data/src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.h +912 -416
  411. data/src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.c +32 -19
  412. data/src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.h +68 -51
  413. data/src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.c +23 -14
  414. data/src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.h +37 -30
  415. data/src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.c +142 -81
  416. data/src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.h +397 -217
  417. data/src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls.upb.c +49 -26
  418. data/src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls.upb.h +146 -62
  419. data/src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls_config.upb.c +171 -102
  420. data/src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls_config.upb.h +848 -299
  421. data/src/core/ext/upb-generated/udpa/annotations/migrate.upb.c +66 -49
  422. data/src/core/ext/upb-generated/udpa/annotations/migrate.upb.h +148 -105
  423. data/src/core/ext/upb-generated/udpa/annotations/security.upb.c +24 -17
  424. data/src/core/ext/upb-generated/udpa/annotations/security.upb.h +48 -35
  425. data/src/core/ext/upb-generated/udpa/annotations/sensitive.upb.c +10 -9
  426. data/src/core/ext/upb-generated/udpa/annotations/sensitive.upb.h +23 -14
  427. data/src/core/ext/upb-generated/udpa/annotations/status.upb.c +24 -17
  428. data/src/core/ext/upb-generated/udpa/annotations/status.upb.h +48 -35
  429. data/src/core/ext/upb-generated/udpa/annotations/versioning.upb.c +21 -16
  430. data/src/core/ext/upb-generated/udpa/annotations/versioning.upb.h +38 -31
  431. data/src/core/ext/upb-generated/validate/validate.upb.c +843 -455
  432. data/src/core/ext/upb-generated/validate/validate.upb.h +4340 -1909
  433. data/src/core/ext/upb-generated/xds/annotations/v3/migrate.upb.c +66 -49
  434. data/src/core/ext/upb-generated/xds/annotations/v3/migrate.upb.h +148 -105
  435. data/src/core/ext/upb-generated/xds/annotations/v3/security.upb.c +24 -17
  436. data/src/core/ext/upb-generated/xds/annotations/v3/security.upb.h +48 -35
  437. data/src/core/ext/upb-generated/xds/annotations/v3/sensitive.upb.c +10 -9
  438. data/src/core/ext/upb-generated/xds/annotations/v3/sensitive.upb.h +23 -14
  439. data/src/core/ext/upb-generated/xds/annotations/v3/status.upb.c +63 -44
  440. data/src/core/ext/upb-generated/xds/annotations/v3/status.upb.h +130 -92
  441. data/src/core/ext/upb-generated/xds/annotations/v3/versioning.upb.c +21 -16
  442. data/src/core/ext/upb-generated/xds/annotations/v3/versioning.upb.h +38 -31
  443. data/src/core/ext/upb-generated/xds/core/v3/authority.upb.c +14 -9
  444. data/src/core/ext/upb-generated/xds/core/v3/authority.upb.h +21 -19
  445. data/src/core/ext/upb-generated/xds/core/v3/cidr.upb.c +19 -12
  446. data/src/core/ext/upb-generated/xds/core/v3/cidr.upb.h +38 -31
  447. data/src/core/ext/upb-generated/xds/core/v3/collection_entry.upb.c +35 -22
  448. data/src/core/ext/upb-generated/xds/core/v3/collection_entry.upb.h +88 -63
  449. data/src/core/ext/upb-generated/xds/core/v3/context_params.upb.c +24 -17
  450. data/src/core/ext/upb-generated/xds/core/v3/context_params.upb.h +44 -29
  451. data/src/core/ext/upb-generated/xds/core/v3/extension.upb.c +19 -12
  452. data/src/core/ext/upb-generated/xds/core/v3/extension.upb.h +38 -31
  453. data/src/core/ext/upb-generated/xds/core/v3/resource.upb.c +21 -14
  454. data/src/core/ext/upb-generated/xds/core/v3/resource.upb.h +55 -43
  455. data/src/core/ext/upb-generated/xds/core/v3/resource_locator.upb.c +42 -25
  456. data/src/core/ext/upb-generated/xds/core/v3/resource_locator.upb.h +162 -80
  457. data/src/core/ext/upb-generated/xds/core/v3/resource_name.upb.c +25 -14
  458. data/src/core/ext/upb-generated/xds/core/v3/resource_name.upb.h +58 -39
  459. data/src/core/ext/upb-generated/xds/data/orca/v3/orca_load_report.upb.c +84 -31
  460. data/src/core/ext/upb-generated/xds/data/orca/v3/orca_load_report.upb.h +211 -59
  461. data/src/core/ext/upb-generated/xds/service/orca/v3/orca.upb.c +19 -12
  462. data/src/core/ext/upb-generated/xds/service/orca/v3/orca.upb.h +82 -35
  463. data/src/core/ext/upb-generated/xds/type/matcher/v3/cel.upb.c +16 -11
  464. data/src/core/ext/upb-generated/xds/type/matcher/v3/cel.upb.h +28 -27
  465. data/src/core/ext/upb-generated/xds/type/matcher/v3/domain.upb.c +30 -19
  466. data/src/core/ext/upb-generated/xds/type/matcher/v3/domain.upb.h +143 -55
  467. data/src/core/ext/upb-generated/xds/type/matcher/v3/http_inputs.upb.c +8 -7
  468. data/src/core/ext/upb-generated/xds/type/matcher/v3/http_inputs.upb.h +11 -15
  469. data/src/core/ext/upb-generated/xds/type/matcher/v3/ip.upb.c +32 -21
  470. data/src/core/ext/upb-generated/xds/type/matcher/v3/ip.upb.h +154 -64
  471. data/src/core/ext/upb-generated/xds/type/matcher/v3/matcher.upb.c +160 -101
  472. data/src/core/ext/upb-generated/xds/type/matcher/v3/matcher.upb.h +494 -294
  473. data/src/core/ext/upb-generated/xds/type/matcher/v3/range.upb.c +83 -52
  474. data/src/core/ext/upb-generated/xds/type/matcher/v3/range.upb.h +423 -165
  475. data/src/core/ext/upb-generated/xds/type/matcher/v3/regex.upb.c +22 -15
  476. data/src/core/ext/upb-generated/xds/type/matcher/v3/regex.upb.h +45 -37
  477. data/src/core/ext/upb-generated/xds/type/matcher/v3/string.upb.c +38 -23
  478. data/src/core/ext/upb-generated/xds/type/matcher/v3/string.upb.h +154 -76
  479. data/src/core/ext/upb-generated/xds/type/v3/cel.upb.c +35 -22
  480. data/src/core/ext/upb-generated/xds/type/v3/cel.upb.h +84 -66
  481. data/src/core/ext/upb-generated/xds/type/v3/range.upb.c +41 -22
  482. data/src/core/ext/upb-generated/xds/type/v3/range.upb.h +83 -53
  483. data/src/core/ext/upb-generated/xds/type/v3/typed_struct.upb.c +19 -12
  484. data/src/core/ext/upb-generated/xds/type/v3/typed_struct.upb.h +38 -31
  485. data/src/core/ext/upbdefs-generated/envoy/admin/v3/certs.upbdefs.c +1 -1
  486. data/src/core/ext/upbdefs-generated/envoy/admin/v3/certs.upbdefs.h +6 -5
  487. data/src/core/ext/upbdefs-generated/envoy/admin/v3/clusters.upbdefs.c +1 -1
  488. data/src/core/ext/upbdefs-generated/envoy/admin/v3/clusters.upbdefs.h +6 -5
  489. data/src/core/ext/upbdefs-generated/envoy/admin/v3/config_dump.upbdefs.c +1 -1
  490. data/src/core/ext/upbdefs-generated/envoy/admin/v3/config_dump.upbdefs.h +6 -5
  491. data/src/core/ext/upbdefs-generated/envoy/admin/v3/config_dump_shared.upbdefs.c +1 -1
  492. data/src/core/ext/upbdefs-generated/envoy/admin/v3/config_dump_shared.upbdefs.h +6 -5
  493. data/src/core/ext/upbdefs-generated/envoy/admin/v3/init_dump.upbdefs.c +1 -1
  494. data/src/core/ext/upbdefs-generated/envoy/admin/v3/init_dump.upbdefs.h +6 -5
  495. data/src/core/ext/upbdefs-generated/envoy/admin/v3/listeners.upbdefs.c +1 -1
  496. data/src/core/ext/upbdefs-generated/envoy/admin/v3/listeners.upbdefs.h +6 -5
  497. data/src/core/ext/upbdefs-generated/envoy/admin/v3/memory.upbdefs.c +1 -1
  498. data/src/core/ext/upbdefs-generated/envoy/admin/v3/memory.upbdefs.h +6 -5
  499. data/src/core/ext/upbdefs-generated/envoy/admin/v3/metrics.upbdefs.c +1 -1
  500. data/src/core/ext/upbdefs-generated/envoy/admin/v3/metrics.upbdefs.h +6 -5
  501. data/src/core/ext/upbdefs-generated/envoy/admin/v3/mutex_stats.upbdefs.c +1 -1
  502. data/src/core/ext/upbdefs-generated/envoy/admin/v3/mutex_stats.upbdefs.h +6 -5
  503. data/src/core/ext/upbdefs-generated/envoy/admin/v3/server_info.upbdefs.c +1 -1
  504. data/src/core/ext/upbdefs-generated/envoy/admin/v3/server_info.upbdefs.h +6 -5
  505. data/src/core/ext/upbdefs-generated/envoy/admin/v3/tap.upbdefs.c +1 -1
  506. data/src/core/ext/upbdefs-generated/envoy/admin/v3/tap.upbdefs.h +6 -5
  507. data/src/core/ext/upbdefs-generated/envoy/annotations/deprecation.upbdefs.c +1 -1
  508. data/src/core/ext/upbdefs-generated/envoy/annotations/deprecation.upbdefs.h +6 -5
  509. data/src/core/ext/upbdefs-generated/envoy/annotations/resource.upbdefs.c +1 -1
  510. data/src/core/ext/upbdefs-generated/envoy/annotations/resource.upbdefs.h +6 -5
  511. data/src/core/ext/upbdefs-generated/envoy/config/accesslog/v3/accesslog.upbdefs.c +89 -77
  512. data/src/core/ext/upbdefs-generated/envoy/config/accesslog/v3/accesslog.upbdefs.h +11 -5
  513. data/src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3/bootstrap.upbdefs.c +251 -248
  514. data/src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3/bootstrap.upbdefs.h +6 -5
  515. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/circuit_breaker.upbdefs.c +1 -1
  516. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/circuit_breaker.upbdefs.h +6 -5
  517. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/cluster.upbdefs.c +1 -1
  518. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/cluster.upbdefs.h +6 -5
  519. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/filter.upbdefs.c +1 -1
  520. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/filter.upbdefs.h +6 -5
  521. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/outlier_detection.upbdefs.c +1 -1
  522. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/outlier_detection.upbdefs.h +6 -5
  523. data/src/core/ext/upbdefs-generated/envoy/config/common/matcher/v3/matcher.upbdefs.c +1 -1
  524. data/src/core/ext/upbdefs-generated/envoy/config/common/matcher/v3/matcher.upbdefs.h +6 -5
  525. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/address.upbdefs.c +1 -1
  526. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/address.upbdefs.h +6 -5
  527. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/backoff.upbdefs.c +1 -1
  528. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/backoff.upbdefs.h +6 -5
  529. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/base.upbdefs.c +1 -1
  530. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/base.upbdefs.h +6 -5
  531. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/config_source.upbdefs.c +1 -1
  532. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/config_source.upbdefs.h +6 -5
  533. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/event_service_config.upbdefs.c +1 -1
  534. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/event_service_config.upbdefs.h +6 -5
  535. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/extension.upbdefs.c +1 -1
  536. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/extension.upbdefs.h +6 -5
  537. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_method_list.upbdefs.c +1 -1
  538. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_method_list.upbdefs.h +6 -5
  539. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_service.upbdefs.c +163 -161
  540. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_service.upbdefs.h +6 -5
  541. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/health_check.upbdefs.c +130 -119
  542. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/health_check.upbdefs.h +6 -5
  543. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/http_uri.upbdefs.c +1 -1
  544. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/http_uri.upbdefs.h +6 -5
  545. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/protocol.upbdefs.c +143 -134
  546. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/protocol.upbdefs.h +6 -5
  547. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/proxy_protocol.upbdefs.c +32 -16
  548. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/proxy_protocol.upbdefs.h +11 -5
  549. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/resolver.upbdefs.c +1 -1
  550. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/resolver.upbdefs.h +6 -5
  551. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/socket_option.upbdefs.c +1 -1
  552. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/socket_option.upbdefs.h +6 -5
  553. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/substitution_format_string.upbdefs.c +1 -1
  554. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/substitution_format_string.upbdefs.h +6 -5
  555. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/udp_socket_config.upbdefs.c +1 -1
  556. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/udp_socket_config.upbdefs.h +6 -5
  557. data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint.upbdefs.c +1 -1
  558. data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint.upbdefs.h +6 -5
  559. data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint_components.upbdefs.c +1 -1
  560. data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint_components.upbdefs.h +6 -5
  561. data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/load_report.upbdefs.c +1 -1
  562. data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/load_report.upbdefs.h +6 -5
  563. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/api_listener.upbdefs.c +1 -1
  564. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/api_listener.upbdefs.h +6 -5
  565. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener.upbdefs.c +13 -10
  566. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener.upbdefs.h +21 -5
  567. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener_components.upbdefs.c +1 -1
  568. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener_components.upbdefs.h +6 -5
  569. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/quic_config.upbdefs.c +55 -46
  570. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/quic_config.upbdefs.h +6 -5
  571. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/udp_listener_config.upbdefs.c +1 -1
  572. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/udp_listener_config.upbdefs.h +6 -5
  573. data/src/core/ext/upbdefs-generated/envoy/config/metrics/v3/metrics_service.upbdefs.c +20 -13
  574. data/src/core/ext/upbdefs-generated/envoy/config/metrics/v3/metrics_service.upbdefs.h +6 -5
  575. data/src/core/ext/upbdefs-generated/envoy/config/metrics/v3/stats.upbdefs.c +1 -1
  576. data/src/core/ext/upbdefs-generated/envoy/config/metrics/v3/stats.upbdefs.h +6 -5
  577. data/src/core/ext/upbdefs-generated/envoy/config/overload/v3/overload.upbdefs.c +39 -31
  578. data/src/core/ext/upbdefs-generated/envoy/config/overload/v3/overload.upbdefs.h +11 -5
  579. data/src/core/ext/upbdefs-generated/envoy/config/rbac/v3/rbac.upbdefs.c +142 -120
  580. data/src/core/ext/upbdefs-generated/envoy/config/rbac/v3/rbac.upbdefs.h +16 -5
  581. data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route.upbdefs.c +1 -1
  582. data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route.upbdefs.h +6 -5
  583. data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route_components.upbdefs.c +101 -98
  584. data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route_components.upbdefs.h +6 -5
  585. data/src/core/ext/upbdefs-generated/envoy/config/route/v3/scoped_route.upbdefs.c +1 -1
  586. data/src/core/ext/upbdefs-generated/envoy/config/route/v3/scoped_route.upbdefs.h +6 -5
  587. data/src/core/ext/upbdefs-generated/envoy/config/tap/v3/common.upbdefs.c +1 -1
  588. data/src/core/ext/upbdefs-generated/envoy/config/tap/v3/common.upbdefs.h +6 -5
  589. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/datadog.upbdefs.c +1 -1
  590. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/datadog.upbdefs.h +6 -5
  591. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/dynamic_ot.upbdefs.c +1 -1
  592. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/dynamic_ot.upbdefs.h +6 -5
  593. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/http_tracer.upbdefs.c +1 -1
  594. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/http_tracer.upbdefs.h +6 -5
  595. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/lightstep.upbdefs.c +1 -1
  596. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/lightstep.upbdefs.h +6 -5
  597. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/opencensus.upbdefs.c +1 -1
  598. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/opencensus.upbdefs.h +6 -5
  599. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/opentelemetry.upbdefs.c +16 -19
  600. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/opentelemetry.upbdefs.h +6 -5
  601. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/service.upbdefs.c +1 -1
  602. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/service.upbdefs.h +6 -5
  603. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/skywalking.upbdefs.c +1 -1
  604. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/skywalking.upbdefs.h +6 -5
  605. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/trace.upbdefs.c +1 -1
  606. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/trace.upbdefs.h +6 -5
  607. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/xray.upbdefs.c +1 -1
  608. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/xray.upbdefs.h +6 -5
  609. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/zipkin.upbdefs.c +1 -1
  610. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/zipkin.upbdefs.h +6 -5
  611. data/src/core/ext/upbdefs-generated/envoy/data/accesslog/v3/accesslog.upbdefs.c +402 -0
  612. data/src/core/ext/upbdefs-generated/envoy/data/accesslog/v3/accesslog.upbdefs.h +111 -0
  613. data/src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.c +1 -1
  614. data/src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.h +6 -5
  615. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3/fault.upbdefs.c +1 -1
  616. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3/fault.upbdefs.h +6 -5
  617. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3/fault.upbdefs.c +81 -75
  618. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3/fault.upbdefs.h +6 -5
  619. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.c +1 -1
  620. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.h +6 -5
  621. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3/router.upbdefs.c +64 -48
  622. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3/router.upbdefs.h +11 -5
  623. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upbdefs.c +1 -1
  624. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upbdefs.h +6 -5
  625. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.c +315 -282
  626. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.h +11 -5
  627. data/src/core/ext/upbdefs-generated/envoy/extensions/http/stateful_session/cookie/v3/cookie.upbdefs.c +1 -1
  628. data/src/core/ext/upbdefs-generated/envoy/extensions/http/stateful_session/cookie/v3/cookie.upbdefs.h +6 -5
  629. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.c +1 -1
  630. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.h +6 -5
  631. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.c +138 -136
  632. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.h +6 -5
  633. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.c +1 -1
  634. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.h +6 -5
  635. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.c +118 -118
  636. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.h +6 -5
  637. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upbdefs.c +1 -1
  638. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upbdefs.h +6 -5
  639. data/src/core/ext/upbdefs-generated/envoy/service/discovery/v3/ads.upbdefs.c +6 -6
  640. data/src/core/ext/upbdefs-generated/envoy/service/discovery/v3/ads.upbdefs.h +6 -5
  641. data/src/core/ext/upbdefs-generated/envoy/service/discovery/v3/discovery.upbdefs.c +1 -1
  642. data/src/core/ext/upbdefs-generated/envoy/service/discovery/v3/discovery.upbdefs.h +6 -5
  643. data/src/core/ext/upbdefs-generated/envoy/service/load_stats/v3/lrs.upbdefs.c +6 -6
  644. data/src/core/ext/upbdefs-generated/envoy/service/load_stats/v3/lrs.upbdefs.h +6 -5
  645. data/src/core/ext/upbdefs-generated/envoy/service/status/v3/csds.upbdefs.c +12 -13
  646. data/src/core/ext/upbdefs-generated/envoy/service/status/v3/csds.upbdefs.h +6 -5
  647. data/src/core/ext/upbdefs-generated/envoy/type/http/v3/cookie.upbdefs.c +1 -1
  648. data/src/core/ext/upbdefs-generated/envoy/type/http/v3/cookie.upbdefs.h +6 -5
  649. data/src/core/ext/upbdefs-generated/envoy/type/http/v3/path_transformation.upbdefs.c +1 -1
  650. data/src/core/ext/upbdefs-generated/envoy/type/http/v3/path_transformation.upbdefs.h +6 -5
  651. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/filter_state.upbdefs.c +1 -1
  652. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/filter_state.upbdefs.h +6 -5
  653. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/http_inputs.upbdefs.c +13 -10
  654. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/http_inputs.upbdefs.h +11 -5
  655. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/metadata.upbdefs.c +1 -1
  656. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/metadata.upbdefs.h +6 -5
  657. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/node.upbdefs.c +1 -1
  658. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/node.upbdefs.h +6 -5
  659. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/number.upbdefs.c +1 -1
  660. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/number.upbdefs.h +6 -5
  661. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/path.upbdefs.c +1 -1
  662. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/path.upbdefs.h +6 -5
  663. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/regex.upbdefs.c +30 -30
  664. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/regex.upbdefs.h +6 -5
  665. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/status_code_input.upbdefs.c +1 -1
  666. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/status_code_input.upbdefs.h +6 -5
  667. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/string.upbdefs.c +1 -1
  668. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/string.upbdefs.h +6 -5
  669. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/struct.upbdefs.c +1 -1
  670. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/struct.upbdefs.h +6 -5
  671. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/value.upbdefs.c +1 -1
  672. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/value.upbdefs.h +6 -5
  673. data/src/core/ext/upbdefs-generated/envoy/type/metadata/v3/metadata.upbdefs.c +1 -1
  674. data/src/core/ext/upbdefs-generated/envoy/type/metadata/v3/metadata.upbdefs.h +6 -5
  675. data/src/core/ext/upbdefs-generated/envoy/type/tracing/v3/custom_tag.upbdefs.c +1 -1
  676. data/src/core/ext/upbdefs-generated/envoy/type/tracing/v3/custom_tag.upbdefs.h +6 -5
  677. data/src/core/ext/upbdefs-generated/envoy/type/v3/hash_policy.upbdefs.c +1 -1
  678. data/src/core/ext/upbdefs-generated/envoy/type/v3/hash_policy.upbdefs.h +6 -5
  679. data/src/core/ext/upbdefs-generated/envoy/type/v3/http.upbdefs.c +1 -1
  680. data/src/core/ext/upbdefs-generated/envoy/type/v3/http.upbdefs.h +6 -5
  681. data/src/core/ext/upbdefs-generated/envoy/type/v3/http_status.upbdefs.c +1 -1
  682. data/src/core/ext/upbdefs-generated/envoy/type/v3/http_status.upbdefs.h +6 -5
  683. data/src/core/ext/upbdefs-generated/envoy/type/v3/percent.upbdefs.c +1 -1
  684. data/src/core/ext/upbdefs-generated/envoy/type/v3/percent.upbdefs.h +6 -5
  685. data/src/core/ext/upbdefs-generated/envoy/type/v3/range.upbdefs.c +1 -1
  686. data/src/core/ext/upbdefs-generated/envoy/type/v3/range.upbdefs.h +6 -5
  687. data/src/core/ext/upbdefs-generated/envoy/type/v3/ratelimit_strategy.upbdefs.c +1 -1
  688. data/src/core/ext/upbdefs-generated/envoy/type/v3/ratelimit_strategy.upbdefs.h +6 -5
  689. data/src/core/ext/upbdefs-generated/envoy/type/v3/ratelimit_unit.upbdefs.c +1 -1
  690. data/src/core/ext/upbdefs-generated/envoy/type/v3/ratelimit_unit.upbdefs.h +6 -5
  691. data/src/core/ext/upbdefs-generated/envoy/type/v3/semantic_version.upbdefs.c +1 -1
  692. data/src/core/ext/upbdefs-generated/envoy/type/v3/semantic_version.upbdefs.h +6 -5
  693. data/src/core/ext/upbdefs-generated/envoy/type/v3/token_bucket.upbdefs.c +1 -1
  694. data/src/core/ext/upbdefs-generated/envoy/type/v3/token_bucket.upbdefs.h +6 -5
  695. data/src/core/ext/upbdefs-generated/google/api/annotations.upbdefs.c +1 -1
  696. data/src/core/ext/upbdefs-generated/google/api/annotations.upbdefs.h +6 -5
  697. data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/checked.upbdefs.c +1 -1
  698. data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/checked.upbdefs.h +6 -5
  699. data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/syntax.upbdefs.c +1 -1
  700. data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/syntax.upbdefs.h +6 -5
  701. data/src/core/ext/upbdefs-generated/google/api/http.upbdefs.c +1 -1
  702. data/src/core/ext/upbdefs-generated/google/api/http.upbdefs.h +6 -5
  703. data/src/core/ext/upbdefs-generated/google/api/httpbody.upbdefs.c +1 -1
  704. data/src/core/ext/upbdefs-generated/google/api/httpbody.upbdefs.h +6 -5
  705. data/src/core/ext/upbdefs-generated/google/protobuf/any.upbdefs.c +1 -1
  706. data/src/core/ext/upbdefs-generated/google/protobuf/any.upbdefs.h +6 -5
  707. data/src/core/ext/upbdefs-generated/google/protobuf/descriptor.upbdefs.c +406 -273
  708. data/src/core/ext/upbdefs-generated/google/protobuf/descriptor.upbdefs.h +21 -5
  709. data/src/core/ext/upbdefs-generated/google/protobuf/duration.upbdefs.c +1 -1
  710. data/src/core/ext/upbdefs-generated/google/protobuf/duration.upbdefs.h +6 -5
  711. data/src/core/ext/upbdefs-generated/google/protobuf/empty.upbdefs.c +1 -1
  712. data/src/core/ext/upbdefs-generated/google/protobuf/empty.upbdefs.h +6 -5
  713. data/src/core/ext/upbdefs-generated/google/protobuf/struct.upbdefs.c +1 -1
  714. data/src/core/ext/upbdefs-generated/google/protobuf/struct.upbdefs.h +6 -5
  715. data/src/core/ext/upbdefs-generated/google/protobuf/timestamp.upbdefs.c +1 -1
  716. data/src/core/ext/upbdefs-generated/google/protobuf/timestamp.upbdefs.h +6 -5
  717. data/src/core/ext/upbdefs-generated/google/protobuf/wrappers.upbdefs.c +1 -1
  718. data/src/core/ext/upbdefs-generated/google/protobuf/wrappers.upbdefs.h +6 -5
  719. data/src/core/ext/upbdefs-generated/google/rpc/status.upbdefs.c +1 -1
  720. data/src/core/ext/upbdefs-generated/google/rpc/status.upbdefs.h +6 -5
  721. data/src/core/ext/upbdefs-generated/opencensus/proto/trace/v1/trace_config.upbdefs.c +1 -1
  722. data/src/core/ext/upbdefs-generated/opencensus/proto/trace/v1/trace_config.upbdefs.h +6 -5
  723. data/src/core/ext/upbdefs-generated/src/proto/grpc/lookup/v1/rls_config.upbdefs.c +1 -1
  724. data/src/core/ext/upbdefs-generated/src/proto/grpc/lookup/v1/rls_config.upbdefs.h +6 -5
  725. data/src/core/ext/upbdefs-generated/udpa/annotations/migrate.upbdefs.c +1 -1
  726. data/src/core/ext/upbdefs-generated/udpa/annotations/migrate.upbdefs.h +6 -5
  727. data/src/core/ext/upbdefs-generated/udpa/annotations/security.upbdefs.c +1 -1
  728. data/src/core/ext/upbdefs-generated/udpa/annotations/security.upbdefs.h +6 -5
  729. data/src/core/ext/upbdefs-generated/udpa/annotations/sensitive.upbdefs.c +1 -1
  730. data/src/core/ext/upbdefs-generated/udpa/annotations/sensitive.upbdefs.h +6 -5
  731. data/src/core/ext/upbdefs-generated/udpa/annotations/status.upbdefs.c +1 -1
  732. data/src/core/ext/upbdefs-generated/udpa/annotations/status.upbdefs.h +6 -5
  733. data/src/core/ext/upbdefs-generated/udpa/annotations/versioning.upbdefs.c +1 -1
  734. data/src/core/ext/upbdefs-generated/udpa/annotations/versioning.upbdefs.h +6 -5
  735. data/src/core/ext/upbdefs-generated/validate/validate.upbdefs.c +1 -1
  736. data/src/core/ext/upbdefs-generated/validate/validate.upbdefs.h +6 -5
  737. data/src/core/ext/upbdefs-generated/xds/annotations/v3/migrate.upbdefs.c +1 -1
  738. data/src/core/ext/upbdefs-generated/xds/annotations/v3/migrate.upbdefs.h +6 -5
  739. data/src/core/ext/upbdefs-generated/xds/annotations/v3/security.upbdefs.c +1 -1
  740. data/src/core/ext/upbdefs-generated/xds/annotations/v3/security.upbdefs.h +6 -5
  741. data/src/core/ext/upbdefs-generated/xds/annotations/v3/sensitive.upbdefs.c +1 -1
  742. data/src/core/ext/upbdefs-generated/xds/annotations/v3/sensitive.upbdefs.h +6 -5
  743. data/src/core/ext/upbdefs-generated/xds/annotations/v3/status.upbdefs.c +1 -1
  744. data/src/core/ext/upbdefs-generated/xds/annotations/v3/status.upbdefs.h +6 -5
  745. data/src/core/ext/upbdefs-generated/xds/annotations/v3/versioning.upbdefs.c +1 -1
  746. data/src/core/ext/upbdefs-generated/xds/annotations/v3/versioning.upbdefs.h +6 -5
  747. data/src/core/ext/upbdefs-generated/xds/core/v3/authority.upbdefs.c +1 -1
  748. data/src/core/ext/upbdefs-generated/xds/core/v3/authority.upbdefs.h +6 -5
  749. data/src/core/ext/upbdefs-generated/xds/core/v3/cidr.upbdefs.c +1 -1
  750. data/src/core/ext/upbdefs-generated/xds/core/v3/cidr.upbdefs.h +6 -5
  751. data/src/core/ext/upbdefs-generated/xds/core/v3/collection_entry.upbdefs.c +1 -1
  752. data/src/core/ext/upbdefs-generated/xds/core/v3/collection_entry.upbdefs.h +6 -5
  753. data/src/core/ext/upbdefs-generated/xds/core/v3/context_params.upbdefs.c +1 -1
  754. data/src/core/ext/upbdefs-generated/xds/core/v3/context_params.upbdefs.h +6 -5
  755. data/src/core/ext/upbdefs-generated/xds/core/v3/extension.upbdefs.c +1 -1
  756. data/src/core/ext/upbdefs-generated/xds/core/v3/extension.upbdefs.h +6 -5
  757. data/src/core/ext/upbdefs-generated/xds/core/v3/resource.upbdefs.c +1 -1
  758. data/src/core/ext/upbdefs-generated/xds/core/v3/resource.upbdefs.h +6 -5
  759. data/src/core/ext/upbdefs-generated/xds/core/v3/resource_locator.upbdefs.c +1 -1
  760. data/src/core/ext/upbdefs-generated/xds/core/v3/resource_locator.upbdefs.h +6 -5
  761. data/src/core/ext/upbdefs-generated/xds/core/v3/resource_name.upbdefs.c +1 -1
  762. data/src/core/ext/upbdefs-generated/xds/core/v3/resource_name.upbdefs.h +6 -5
  763. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/cel.upbdefs.c +1 -1
  764. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/cel.upbdefs.h +6 -5
  765. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/domain.upbdefs.c +1 -1
  766. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/domain.upbdefs.h +6 -5
  767. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/http_inputs.upbdefs.c +1 -1
  768. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/http_inputs.upbdefs.h +6 -5
  769. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/ip.upbdefs.c +1 -1
  770. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/ip.upbdefs.h +6 -5
  771. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/matcher.upbdefs.c +1 -1
  772. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/matcher.upbdefs.h +6 -5
  773. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/range.upbdefs.c +1 -1
  774. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/range.upbdefs.h +6 -5
  775. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/regex.upbdefs.c +1 -1
  776. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/regex.upbdefs.h +6 -5
  777. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/string.upbdefs.c +1 -1
  778. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/string.upbdefs.h +6 -5
  779. data/src/core/ext/upbdefs-generated/xds/type/v3/cel.upbdefs.c +1 -1
  780. data/src/core/ext/upbdefs-generated/xds/type/v3/cel.upbdefs.h +6 -5
  781. data/src/core/ext/upbdefs-generated/xds/type/v3/range.upbdefs.c +1 -1
  782. data/src/core/ext/upbdefs-generated/xds/type/v3/range.upbdefs.h +6 -5
  783. data/src/core/ext/upbdefs-generated/xds/type/v3/typed_struct.upbdefs.c +1 -1
  784. data/src/core/ext/upbdefs-generated/xds/type/v3/typed_struct.upbdefs.h +6 -5
  785. data/src/core/ext/xds/certificate_provider_store.cc +8 -13
  786. data/src/core/ext/xds/certificate_provider_store.h +1 -1
  787. data/src/core/ext/xds/file_watcher_certificate_provider_factory.cc +30 -42
  788. data/src/core/ext/xds/file_watcher_certificate_provider_factory.h +14 -9
  789. data/src/core/ext/xds/upb_utils.h +1 -1
  790. data/src/core/ext/xds/xds_api.cc +41 -18
  791. data/src/core/ext/xds/xds_api.h +5 -4
  792. data/src/core/ext/xds/xds_audit_logger_registry.cc +122 -0
  793. data/src/core/ext/xds/xds_audit_logger_registry.h +68 -0
  794. data/src/core/ext/xds/xds_bootstrap.cc +3 -3
  795. data/src/core/ext/xds/xds_bootstrap_grpc.cc +65 -50
  796. data/src/core/ext/xds/xds_bootstrap_grpc.h +10 -13
  797. data/src/core/ext/xds/xds_channel_stack_modifier.cc +1 -2
  798. data/src/core/ext/xds/xds_client.cc +35 -16
  799. data/src/core/ext/xds/xds_client.h +3 -3
  800. data/src/core/ext/xds/xds_client_grpc.cc +12 -6
  801. data/src/core/ext/xds/xds_client_grpc.h +16 -2
  802. data/src/core/ext/xds/xds_client_stats.cc +29 -15
  803. data/src/core/ext/xds/xds_client_stats.h +34 -20
  804. data/src/core/ext/xds/xds_cluster.cc +100 -109
  805. data/src/core/ext/xds/xds_cluster.h +1 -6
  806. data/src/core/ext/xds/xds_cluster_specifier_plugin.cc +15 -11
  807. data/src/core/ext/xds/xds_cluster_specifier_plugin.h +2 -2
  808. data/src/core/ext/xds/xds_common_types.cc +8 -5
  809. data/src/core/ext/xds/xds_endpoint.cc +26 -30
  810. data/src/core/ext/xds/xds_endpoint.h +10 -3
  811. data/src/core/ext/xds/xds_health_status.cc +0 -17
  812. data/src/core/ext/xds/xds_health_status.h +5 -25
  813. data/src/core/ext/xds/xds_http_fault_filter.cc +16 -14
  814. data/src/core/ext/xds/xds_http_fault_filter.h +1 -1
  815. data/src/core/ext/xds/xds_http_filters.cc +1 -4
  816. data/src/core/ext/xds/xds_http_filters.h +3 -2
  817. data/src/core/ext/xds/xds_http_rbac_filter.cc +153 -73
  818. data/src/core/ext/xds/xds_http_rbac_filter.h +1 -1
  819. data/src/core/ext/xds/xds_http_stateful_session_filter.cc +16 -16
  820. data/src/core/ext/xds/xds_http_stateful_session_filter.h +1 -1
  821. data/src/core/ext/xds/xds_lb_policy_registry.cc +72 -35
  822. data/src/core/ext/xds/xds_listener.cc +25 -18
  823. data/src/core/ext/xds/xds_listener.h +14 -4
  824. data/src/core/ext/xds/xds_resource_type.h +3 -9
  825. data/src/core/ext/xds/xds_resource_type_impl.h +9 -11
  826. data/src/core/ext/xds/xds_route_config.cc +62 -19
  827. data/src/core/ext/xds/xds_route_config.h +2 -2
  828. data/src/core/ext/xds/xds_server_config_fetcher.cc +53 -28
  829. data/src/core/ext/xds/xds_transport_grpc.cc +14 -3
  830. data/src/core/lib/address_utils/parse_address.cc +63 -1
  831. data/src/core/lib/address_utils/parse_address.h +8 -0
  832. data/src/core/lib/address_utils/sockaddr_utils.cc +46 -1
  833. data/src/core/lib/address_utils/sockaddr_utils.h +2 -2
  834. data/src/core/lib/avl/avl.h +15 -173
  835. data/src/core/lib/backoff/random_early_detection.cc +33 -0
  836. data/src/core/lib/backoff/random_early_detection.h +62 -0
  837. data/src/core/lib/channel/call_finalization.h +1 -1
  838. data/src/core/lib/channel/call_tracer.cc +346 -0
  839. data/src/core/lib/channel/call_tracer.h +140 -39
  840. data/src/core/lib/channel/channel_args.cc +120 -46
  841. data/src/core/lib/channel/channel_args.h +52 -4
  842. data/src/core/lib/channel/channel_trace.cc +16 -12
  843. data/src/core/lib/channel/channelz.cc +163 -135
  844. data/src/core/lib/channel/channelz.h +42 -35
  845. data/src/core/lib/channel/channelz_registry.cc +24 -20
  846. data/src/core/lib/channel/channelz_registry.h +4 -2
  847. data/src/core/lib/channel/connected_channel.cc +545 -1044
  848. data/src/core/lib/channel/context.h +8 -1
  849. data/src/core/lib/channel/promise_based_filter.cc +113 -51
  850. data/src/core/lib/channel/promise_based_filter.h +32 -14
  851. data/src/core/lib/channel/server_call_tracer_filter.cc +110 -0
  852. data/src/core/lib/compression/compression_internal.cc +8 -7
  853. data/src/core/lib/config/config_vars.cc +153 -0
  854. data/src/core/lib/config/config_vars.h +127 -0
  855. data/src/core/lib/config/config_vars_non_generated.cc +51 -0
  856. data/src/core/lib/config/core_configuration.cc +2 -1
  857. data/src/core/lib/config/core_configuration.h +5 -4
  858. data/src/core/lib/config/load_config.cc +79 -0
  859. data/src/core/lib/config/load_config.h +55 -0
  860. data/src/core/lib/debug/event_log.h +1 -1
  861. data/src/core/lib/debug/stats_data.cc +202 -35
  862. data/src/core/lib/debug/stats_data.h +103 -1
  863. data/src/core/lib/debug/trace.cc +35 -61
  864. data/src/core/lib/debug/trace.h +14 -9
  865. data/src/core/lib/event_engine/ares_resolver.cc +721 -0
  866. data/src/core/lib/event_engine/ares_resolver.h +150 -0
  867. data/src/core/lib/event_engine/cf_engine/cf_engine.cc +221 -0
  868. data/src/core/lib/event_engine/cf_engine/cf_engine.h +89 -0
  869. data/src/core/lib/event_engine/cf_engine/cfstream_endpoint.cc +357 -0
  870. data/src/core/lib/event_engine/cf_engine/cfstream_endpoint.h +149 -0
  871. data/src/core/lib/event_engine/cf_engine/cftype_unique_ref.h +82 -0
  872. data/src/core/lib/event_engine/cf_engine/dns_service_resolver.cc +241 -0
  873. data/src/core/lib/event_engine/cf_engine/dns_service_resolver.h +120 -0
  874. data/src/core/lib/event_engine/default_event_engine.cc +13 -1
  875. data/src/core/lib/event_engine/default_event_engine_factory.cc +14 -2
  876. data/src/core/lib/event_engine/event_engine.cc +25 -2
  877. data/src/core/lib/event_engine/forkable.cc +62 -43
  878. data/src/core/lib/event_engine/forkable.h +15 -0
  879. data/src/core/lib/event_engine/grpc_polled_fd.h +73 -0
  880. data/src/core/lib/event_engine/handle_containers.h +5 -24
  881. data/src/core/lib/event_engine/memory_allocator_factory.h +47 -0
  882. data/src/core/lib/event_engine/nameser.h +102 -0
  883. data/src/core/lib/event_engine/poller.h +2 -2
  884. data/src/core/lib/event_engine/posix.h +4 -0
  885. data/src/core/lib/event_engine/posix_engine/ev_epoll1_linux.cc +5 -7
  886. data/src/core/lib/event_engine/posix_engine/ev_poll_posix.cc +29 -13
  887. data/src/core/lib/event_engine/posix_engine/ev_poll_posix.h +10 -1
  888. data/src/core/lib/event_engine/posix_engine/event_poller_posix_default.cc +3 -9
  889. data/src/core/lib/event_engine/posix_engine/grpc_polled_fd_posix.h +197 -0
  890. data/src/core/lib/event_engine/posix_engine/lockfree_event.cc +7 -18
  891. data/src/core/lib/event_engine/posix_engine/posix_endpoint.cc +76 -29
  892. data/src/core/lib/event_engine/posix_engine/posix_endpoint.h +20 -9
  893. data/src/core/lib/event_engine/posix_engine/posix_engine.cc +96 -52
  894. data/src/core/lib/event_engine/posix_engine/posix_engine.h +22 -14
  895. data/src/core/lib/event_engine/posix_engine/posix_engine_listener.cc +75 -33
  896. data/src/core/lib/event_engine/posix_engine/posix_engine_listener.h +12 -8
  897. data/src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.cc +4 -2
  898. data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.cc +76 -21
  899. data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.h +9 -3
  900. data/src/core/lib/event_engine/posix_engine/timer.h +10 -37
  901. data/src/core/lib/event_engine/posix_engine/timer_manager.h +1 -1
  902. data/src/core/lib/event_engine/posix_engine/traced_buffer_list.cc +2 -0
  903. data/src/core/lib/event_engine/resolved_address.cc +2 -1
  904. data/src/core/lib/event_engine/shim.cc +9 -1
  905. data/src/core/lib/event_engine/tcp_socket_utils.cc +67 -7
  906. data/src/core/lib/event_engine/tcp_socket_utils.h +3 -0
  907. data/src/core/lib/event_engine/thread_pool/thread_count.cc +58 -0
  908. data/src/core/lib/event_engine/thread_pool/thread_count.h +176 -0
  909. data/src/core/lib/event_engine/thread_pool/thread_pool.h +50 -0
  910. data/src/core/lib/event_engine/{executor/executor.h → thread_pool/thread_pool_factory.cc} +12 -15
  911. data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.cc +523 -0
  912. data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.h +223 -0
  913. data/src/core/lib/event_engine/thready_event_engine/thready_event_engine.cc +157 -0
  914. data/src/core/lib/event_engine/thready_event_engine/thready_event_engine.h +104 -0
  915. data/src/core/lib/event_engine/trace.cc +1 -0
  916. data/src/core/lib/event_engine/trace.h +6 -0
  917. data/src/core/lib/event_engine/windows/iocp.cc +4 -3
  918. data/src/core/lib/event_engine/windows/iocp.h +3 -3
  919. data/src/core/lib/event_engine/windows/win_socket.cc +6 -7
  920. data/src/core/lib/event_engine/windows/win_socket.h +4 -4
  921. data/src/core/lib/event_engine/windows/windows_endpoint.cc +153 -105
  922. data/src/core/lib/event_engine/windows/windows_endpoint.h +30 -10
  923. data/src/core/lib/event_engine/windows/windows_engine.cc +57 -33
  924. data/src/core/lib/event_engine/windows/windows_engine.h +16 -19
  925. data/src/core/lib/event_engine/windows/windows_listener.cc +370 -0
  926. data/src/core/lib/event_engine/windows/windows_listener.h +156 -0
  927. data/src/core/lib/event_engine/work_queue/basic_work_queue.cc +63 -0
  928. data/src/core/lib/event_engine/work_queue/basic_work_queue.h +71 -0
  929. data/src/core/lib/event_engine/work_queue/work_queue.h +62 -0
  930. data/src/core/lib/experiments/config.cc +122 -38
  931. data/src/core/lib/experiments/config.h +33 -5
  932. data/src/core/lib/experiments/experiments.cc +680 -21
  933. data/src/core/lib/experiments/experiments.h +348 -25
  934. data/src/core/lib/gpr/log.cc +15 -28
  935. data/src/core/lib/gpr/log_internal.h +55 -0
  936. data/src/core/lib/gpr/{time_posix.cc → posix/time.cc} +5 -0
  937. data/src/core/lib/gprpp/crash.cc +10 -0
  938. data/src/core/lib/gprpp/crash.h +3 -0
  939. data/src/core/lib/gprpp/dual_ref_counted.h +9 -9
  940. data/src/core/lib/gprpp/fork.cc +16 -23
  941. data/src/core/lib/gprpp/fork.h +7 -6
  942. data/src/core/lib/gprpp/if_list.h +4530 -0
  943. data/src/core/lib/gprpp/manual_constructor.h +1 -2
  944. data/src/core/lib/gprpp/no_destruct.h +1 -1
  945. data/src/core/lib/gprpp/orphanable.h +7 -6
  946. data/src/core/lib/gprpp/per_cpu.cc +35 -0
  947. data/src/core/lib/gprpp/per_cpu.h +64 -6
  948. data/src/core/lib/gprpp/{thd_posix.cc → posix/thd.cc} +49 -37
  949. data/src/core/lib/gprpp/ref_counted.h +42 -41
  950. data/src/core/lib/gprpp/ref_counted_ptr.h +63 -0
  951. data/src/core/lib/gprpp/ref_counted_string.cc +44 -0
  952. data/src/core/lib/gprpp/ref_counted_string.h +146 -0
  953. data/src/core/lib/gprpp/sorted_pack.h +3 -12
  954. data/src/core/lib/gprpp/status_helper.cc +2 -2
  955. data/src/core/lib/gprpp/status_helper.h +16 -15
  956. data/src/core/lib/gprpp/thd.h +16 -0
  957. data/src/core/lib/gprpp/time.cc +2 -0
  958. data/src/core/lib/gprpp/time.h +16 -4
  959. data/src/core/lib/gprpp/{global_config_custom.h → type_list.h} +17 -14
  960. data/src/core/lib/gprpp/validation_errors.cc +8 -3
  961. data/src/core/lib/gprpp/validation_errors.h +16 -9
  962. data/src/core/lib/gprpp/{thd_windows.cc → windows/thd.cc} +2 -2
  963. data/src/core/lib/gprpp/work_serializer.cc +320 -12
  964. data/src/core/lib/gprpp/work_serializer.h +30 -9
  965. data/src/core/lib/http/httpcli.h +6 -9
  966. data/src/core/lib/http/httpcli_security_connector.cc +1 -0
  967. data/src/core/lib/iomgr/buffer_list.cc +2 -0
  968. data/src/core/lib/iomgr/buffer_list.h +0 -1
  969. data/src/core/lib/iomgr/call_combiner.h +2 -2
  970. data/src/core/lib/iomgr/cfstream_handle.cc +1 -1
  971. data/src/core/lib/iomgr/combiner.cc +57 -15
  972. data/src/core/lib/iomgr/combiner.h +8 -3
  973. data/src/core/lib/iomgr/endpoint_cfstream.cc +14 -10
  974. data/src/core/lib/iomgr/endpoint_pair.h +2 -2
  975. data/src/core/lib/iomgr/endpoint_pair_posix.cc +2 -2
  976. data/src/core/lib/iomgr/endpoint_pair_windows.cc +1 -1
  977. data/src/core/lib/iomgr/error.cc +32 -2
  978. data/src/core/lib/iomgr/error.h +9 -10
  979. data/src/core/lib/iomgr/ev_apple.cc +12 -12
  980. data/src/core/lib/iomgr/ev_epoll1_linux.cc +15 -10
  981. data/src/core/lib/iomgr/ev_poll_posix.cc +6 -5
  982. data/src/core/lib/iomgr/ev_posix.cc +13 -53
  983. data/src/core/lib/iomgr/ev_posix.h +0 -3
  984. data/src/core/lib/iomgr/event_engine_shims/endpoint.cc +125 -101
  985. data/src/core/lib/iomgr/exec_ctx.cc +12 -0
  986. data/src/core/lib/iomgr/exec_ctx.h +66 -19
  987. data/src/core/lib/iomgr/iocp_windows.cc +24 -3
  988. data/src/core/lib/iomgr/iocp_windows.h +11 -0
  989. data/src/core/lib/iomgr/iomgr.cc +4 -8
  990. data/src/core/lib/iomgr/iomgr_posix_cfstream.cc +1 -1
  991. data/src/core/lib/iomgr/iomgr_windows.cc +8 -2
  992. data/src/core/lib/iomgr/polling_entity.cc +10 -0
  993. data/src/core/lib/iomgr/polling_entity.h +2 -0
  994. data/src/core/lib/iomgr/pollset.h +4 -5
  995. data/src/core/lib/iomgr/pollset_set_windows.cc +9 -9
  996. data/src/core/lib/iomgr/pollset_windows.cc +1 -1
  997. data/src/core/lib/iomgr/port.h +24 -0
  998. data/src/core/lib/iomgr/resolve_address.cc +13 -1
  999. data/src/core/lib/iomgr/resolve_address.h +17 -3
  1000. data/src/core/lib/iomgr/sockaddr_posix.h +7 -0
  1001. data/src/core/lib/iomgr/socket_utils_common_posix.cc +49 -5
  1002. data/src/core/lib/iomgr/socket_utils_posix.cc +5 -0
  1003. data/src/core/lib/iomgr/socket_utils_posix.h +9 -0
  1004. data/src/core/lib/iomgr/socket_windows.cc +61 -7
  1005. data/src/core/lib/iomgr/socket_windows.h +9 -2
  1006. data/src/core/lib/iomgr/tcp_client_cfstream.cc +14 -3
  1007. data/src/core/lib/iomgr/tcp_client_posix.cc +8 -1
  1008. data/src/core/lib/iomgr/tcp_client_windows.cc +2 -2
  1009. data/src/core/lib/iomgr/tcp_posix.cc +41 -22
  1010. data/src/core/lib/iomgr/tcp_server_posix.cc +186 -133
  1011. data/src/core/lib/iomgr/tcp_server_utils_posix.h +13 -1
  1012. data/src/core/lib/iomgr/tcp_server_utils_posix_common.cc +26 -2
  1013. data/src/core/lib/iomgr/tcp_server_windows.cc +176 -9
  1014. data/src/core/lib/iomgr/tcp_windows.cc +13 -11
  1015. data/src/core/lib/iomgr/timer_generic.cc +17 -16
  1016. data/src/core/lib/iomgr/vsock.cc +59 -0
  1017. data/src/core/lib/iomgr/vsock.h +38 -0
  1018. data/src/core/lib/iomgr/wakeup_fd_posix.h +3 -6
  1019. data/src/core/lib/json/json.h +2 -218
  1020. data/src/core/lib/json/json_object_loader.cc +24 -25
  1021. data/src/core/lib/json/json_object_loader.h +30 -18
  1022. data/src/core/lib/json/json_reader.cc +69 -42
  1023. data/src/core/{ext/filters/client_channel/lb_call_state_internal.h → lib/json/json_reader.h} +7 -12
  1024. data/src/core/lib/json/json_util.cc +10 -15
  1025. data/src/core/lib/json/json_util.h +5 -4
  1026. data/src/core/lib/json/json_writer.cc +24 -25
  1027. data/src/core/lib/{security/security_connector/ssl_utils_config.h → json/json_writer.h} +14 -10
  1028. data/src/core/lib/load_balancing/delegating_helper.h +115 -0
  1029. data/src/core/lib/load_balancing/lb_policy.cc +9 -13
  1030. data/src/core/lib/load_balancing/lb_policy.h +47 -11
  1031. data/src/core/lib/load_balancing/lb_policy_registry.cc +9 -8
  1032. data/src/core/lib/load_balancing/subchannel_interface.h +6 -0
  1033. data/src/core/lib/matchers/matchers.cc +3 -4
  1034. data/src/core/lib/matchers/matchers.h +2 -1
  1035. data/src/core/lib/promise/activity.cc +27 -6
  1036. data/src/core/lib/promise/activity.h +71 -24
  1037. data/src/core/lib/promise/arena_promise.h +5 -1
  1038. data/src/core/lib/promise/cancel_callback.h +77 -0
  1039. data/src/core/lib/promise/detail/basic_seq.h +1 -372
  1040. data/src/core/lib/promise/detail/promise_factory.h +5 -1
  1041. data/src/core/lib/promise/detail/seq_state.h +2494 -0
  1042. data/src/core/lib/promise/for_each.h +176 -0
  1043. data/src/core/lib/promise/if.h +9 -0
  1044. data/src/core/lib/promise/interceptor_list.h +23 -2
  1045. data/src/core/lib/promise/latch.h +90 -3
  1046. data/src/core/lib/promise/loop.h +19 -12
  1047. data/src/core/lib/promise/map.h +7 -0
  1048. data/src/core/lib/promise/party.cc +304 -0
  1049. data/src/core/lib/promise/party.h +508 -0
  1050. data/src/core/lib/promise/pipe.h +213 -59
  1051. data/src/core/lib/promise/poll.h +52 -6
  1052. data/src/core/lib/promise/prioritized_race.h +95 -0
  1053. data/src/core/lib/promise/promise.h +2 -2
  1054. data/src/core/lib/promise/seq.h +19 -2
  1055. data/src/core/lib/promise/sleep.cc +2 -1
  1056. data/src/core/lib/promise/sleep.h +5 -10
  1057. data/src/core/lib/promise/try_seq.h +34 -2
  1058. data/src/core/lib/resolver/resolver_factory.h +3 -2
  1059. data/src/core/lib/resolver/server_address.cc +9 -102
  1060. data/src/core/lib/resolver/server_address.h +11 -70
  1061. data/src/core/lib/resource_quota/api.cc +1 -0
  1062. data/src/core/lib/resource_quota/arena.cc +21 -3
  1063. data/src/core/lib/resource_quota/arena.h +158 -10
  1064. data/src/core/lib/resource_quota/memory_quota.cc +66 -11
  1065. data/src/core/lib/resource_quota/memory_quota.h +6 -4
  1066. data/src/core/lib/resource_quota/resource_quota.h +1 -0
  1067. data/src/core/lib/security/authorization/audit_logging.cc +98 -0
  1068. data/src/core/lib/security/authorization/audit_logging.h +73 -0
  1069. data/src/core/lib/security/authorization/authorization_policy_provider.h +1 -1
  1070. data/src/core/lib/security/authorization/grpc_authorization_engine.cc +47 -2
  1071. data/src/core/lib/security/authorization/grpc_authorization_engine.h +18 -1
  1072. data/src/core/lib/security/authorization/rbac_policy.cc +36 -4
  1073. data/src/core/lib/security/authorization/rbac_policy.h +19 -2
  1074. data/src/core/lib/security/authorization/stdout_logger.cc +75 -0
  1075. data/src/core/lib/security/authorization/stdout_logger.h +61 -0
  1076. data/src/core/lib/security/certificate_provider/certificate_provider_factory.h +8 -4
  1077. data/src/core/lib/security/certificate_provider/certificate_provider_registry.cc +8 -18
  1078. data/src/core/lib/security/certificate_provider/certificate_provider_registry.h +14 -8
  1079. data/src/core/lib/security/credentials/channel_creds_registry.h +51 -27
  1080. data/src/core/lib/security/credentials/channel_creds_registry_init.cc +169 -9
  1081. data/src/core/lib/security/credentials/composite/composite_credentials.cc +1 -1
  1082. data/src/core/lib/security/credentials/composite/composite_credentials.h +3 -1
  1083. data/src/core/lib/security/credentials/external/aws_external_account_credentials.cc +66 -84
  1084. data/src/core/lib/security/credentials/external/aws_external_account_credentials.h +1 -0
  1085. data/src/core/lib/security/credentials/external/aws_request_signer.cc +8 -0
  1086. data/src/core/lib/security/credentials/external/external_account_credentials.cc +104 -65
  1087. data/src/core/lib/security/credentials/external/external_account_credentials.h +6 -0
  1088. data/src/core/lib/security/credentials/external/file_external_account_credentials.cc +23 -21
  1089. data/src/core/lib/security/credentials/external/url_external_account_credentials.cc +29 -27
  1090. data/src/core/lib/security/credentials/fake/fake_credentials.cc +30 -38
  1091. data/src/core/lib/security/credentials/fake/fake_credentials.h +28 -0
  1092. data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +6 -61
  1093. data/src/core/lib/security/credentials/jwt/json_token.cc +36 -16
  1094. data/src/core/lib/security/credentials/jwt/json_token.h +4 -0
  1095. data/src/core/lib/security/credentials/jwt/jwt_credentials.cc +10 -5
  1096. data/src/core/lib/security/credentials/jwt/jwt_verifier.cc +82 -38
  1097. data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +28 -21
  1098. data/src/core/lib/security/credentials/oauth2/oauth2_credentials.h +1 -1
  1099. data/src/core/lib/security/credentials/ssl/ssl_credentials.cc +116 -9
  1100. data/src/core/lib/security/credentials/ssl/ssl_credentials.h +14 -0
  1101. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_match.cc +86 -0
  1102. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.cc +11 -53
  1103. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.h +2 -0
  1104. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.h +2 -0
  1105. data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc +8 -0
  1106. data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h +5 -1
  1107. data/src/core/lib/security/credentials/tls/tls_credentials.cc +2 -1
  1108. data/src/core/lib/security/credentials/tls/tls_credentials.h +3 -1
  1109. data/src/core/lib/security/credentials/xds/xds_credentials.cc +1 -0
  1110. data/src/core/lib/security/security_connector/alts/alts_security_connector.cc +2 -5
  1111. data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +1 -0
  1112. data/src/core/lib/security/security_connector/load_system_roots_supported.cc +5 -9
  1113. data/src/core/lib/security/security_connector/ssl/ssl_security_connector.cc +7 -57
  1114. data/src/core/lib/security/security_connector/ssl/ssl_security_connector.h +1 -1
  1115. data/src/core/lib/security/security_connector/ssl_utils.cc +14 -26
  1116. data/src/core/lib/security/security_connector/ssl_utils.h +1 -1
  1117. data/src/core/lib/security/security_connector/tls/tls_security_connector.cc +15 -15
  1118. data/src/core/lib/security/transport/client_auth_filter.cc +8 -5
  1119. data/src/core/lib/security/transport/secure_endpoint.cc +4 -2
  1120. data/src/core/lib/security/transport/security_handshaker.cc +1 -0
  1121. data/src/core/lib/security/transport/server_auth_filter.cc +21 -1
  1122. data/src/core/lib/security/util/json_util.cc +6 -5
  1123. data/src/core/lib/service_config/service_config_call_data.h +54 -20
  1124. data/src/core/lib/service_config/service_config_impl.cc +13 -6
  1125. data/src/core/lib/slice/slice.cc +1 -1
  1126. data/src/core/lib/slice/slice.h +24 -0
  1127. data/src/core/lib/slice/slice_buffer.cc +15 -0
  1128. data/src/core/lib/slice/slice_buffer.h +16 -4
  1129. data/src/core/lib/slice/slice_refcount.h +1 -1
  1130. data/src/core/lib/surface/builtins.cc +2 -0
  1131. data/src/core/lib/surface/call.cc +1108 -1062
  1132. data/src/core/lib/surface/call.h +15 -5
  1133. data/src/core/lib/surface/channel.cc +8 -4
  1134. data/src/core/lib/surface/channel_init.h +3 -2
  1135. data/src/core/lib/surface/completion_queue.cc +18 -3
  1136. data/src/core/lib/surface/init.cc +1 -0
  1137. data/src/core/lib/surface/lame_client.cc +1 -0
  1138. data/src/core/lib/surface/server.cc +151 -80
  1139. data/src/core/lib/surface/server.h +19 -21
  1140. data/src/core/lib/surface/validate_metadata.cc +57 -41
  1141. data/src/core/lib/surface/validate_metadata.h +19 -0
  1142. data/src/core/lib/surface/version.cc +2 -2
  1143. data/src/core/lib/transport/batch_builder.cc +180 -0
  1144. data/src/core/lib/transport/batch_builder.h +480 -0
  1145. data/src/core/lib/transport/bdp_estimator.cc +7 -7
  1146. data/src/core/lib/transport/bdp_estimator.h +10 -6
  1147. data/src/core/lib/transport/custom_metadata.h +30 -0
  1148. data/src/core/lib/transport/metadata_batch.cc +22 -13
  1149. data/src/core/lib/transport/metadata_batch.h +239 -79
  1150. data/src/core/lib/transport/metadata_compression_traits.h +67 -0
  1151. data/src/core/lib/transport/parsed_metadata.h +50 -28
  1152. data/src/core/lib/transport/simple_slice_based_metadata.h +54 -0
  1153. data/src/core/lib/transport/timeout_encoding.cc +6 -1
  1154. data/src/core/lib/transport/transport.cc +30 -2
  1155. data/src/core/lib/transport/transport.h +100 -25
  1156. data/src/core/lib/transport/transport_impl.h +7 -0
  1157. data/src/core/lib/transport/transport_op_string.cc +52 -42
  1158. data/src/core/plugin_registry/grpc_plugin_registry.cc +4 -8
  1159. data/src/core/plugin_registry/grpc_plugin_registry_extra.cc +2 -0
  1160. data/src/core/tsi/alts/crypt/aes_gcm.cc +27 -2
  1161. data/src/core/tsi/alts/frame_protector/alts_frame_protector.cc +1 -0
  1162. data/src/core/tsi/alts/handshaker/alts_handshaker_client.cc +21 -4
  1163. data/src/core/tsi/alts/handshaker/alts_handshaker_client.h +5 -0
  1164. data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc +1 -1
  1165. data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.cc +4 -6
  1166. data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc +1 -2
  1167. data/src/core/tsi/ssl_transport_security.cc +55 -11
  1168. data/src/core/tsi/ssl_transport_security.h +17 -1
  1169. data/src/ruby/bin/math_pb.rb +24 -18
  1170. data/src/ruby/ext/grpc/extconf.rb +27 -27
  1171. data/src/ruby/ext/grpc/rb_call.c +62 -39
  1172. data/src/ruby/ext/grpc/rb_call_credentials.c +0 -1
  1173. data/src/ruby/ext/grpc/rb_channel.c +109 -84
  1174. data/src/ruby/ext/grpc/rb_channel.h +1 -0
  1175. data/src/ruby/ext/grpc/rb_channel_args.c +18 -2
  1176. data/src/ruby/ext/grpc/rb_channel_args.h +4 -0
  1177. data/src/ruby/ext/grpc/rb_channel_credentials.c +0 -1
  1178. data/src/ruby/ext/grpc/rb_compression_options.c +0 -1
  1179. data/src/ruby/ext/grpc/rb_event_thread.c +22 -6
  1180. data/src/ruby/ext/grpc/rb_event_thread.h +1 -0
  1181. data/src/ruby/ext/grpc/rb_grpc.c +192 -30
  1182. data/src/ruby/ext/grpc/rb_grpc.h +8 -2
  1183. data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +2 -0
  1184. data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +3 -0
  1185. data/src/ruby/ext/grpc/rb_server.c +62 -45
  1186. data/src/ruby/ext/grpc/rb_server_credentials.c +0 -1
  1187. data/src/ruby/ext/grpc/rb_xds_channel_credentials.c +0 -1
  1188. data/src/ruby/ext/grpc/rb_xds_server_credentials.c +0 -1
  1189. data/src/ruby/lib/grpc/generic/active_call.rb +9 -14
  1190. data/src/ruby/lib/grpc/generic/bidi_call.rb +2 -0
  1191. data/src/ruby/lib/grpc/version.rb +1 -1
  1192. data/src/ruby/pb/grpc/health/v1/health_pb.rb +24 -13
  1193. data/src/ruby/pb/src/proto/grpc/testing/empty_pb.rb +24 -3
  1194. data/src/ruby/pb/src/proto/grpc/testing/messages_pb.rb +28 -111
  1195. data/src/ruby/pb/src/proto/grpc/testing/test_pb.rb +25 -2
  1196. data/src/ruby/pb/test/client.rb +16 -0
  1197. data/src/ruby/spec/generic/rpc_server_spec.rb +3 -3
  1198. data/third_party/abseil-cpp/absl/algorithm/container.h +3 -2
  1199. data/third_party/abseil-cpp/absl/base/attributes.h +58 -5
  1200. data/third_party/abseil-cpp/absl/base/call_once.h +1 -1
  1201. data/third_party/abseil-cpp/absl/base/casts.h +8 -8
  1202. data/third_party/abseil-cpp/absl/base/config.h +88 -105
  1203. data/third_party/abseil-cpp/absl/base/dynamic_annotations.h +26 -1
  1204. data/third_party/abseil-cpp/absl/base/internal/direct_mmap.h +2 -2
  1205. data/third_party/abseil-cpp/absl/base/internal/low_level_alloc.cc +50 -39
  1206. data/third_party/abseil-cpp/absl/base/internal/low_level_alloc.h +2 -1
  1207. data/third_party/abseil-cpp/absl/base/internal/prefetch.h +17 -18
  1208. data/third_party/abseil-cpp/absl/base/internal/raw_logging.cc +32 -3
  1209. data/third_party/abseil-cpp/absl/base/internal/raw_logging.h +24 -4
  1210. data/third_party/abseil-cpp/absl/base/internal/sysinfo.cc +31 -73
  1211. data/third_party/abseil-cpp/absl/base/internal/thread_identity.cc +9 -8
  1212. data/third_party/abseil-cpp/absl/base/internal/thread_identity.h +11 -11
  1213. data/third_party/abseil-cpp/absl/base/internal/throw_delegate.cc +23 -32
  1214. data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.cc +2 -3
  1215. data/third_party/abseil-cpp/absl/base/options.h +1 -1
  1216. data/third_party/abseil-cpp/absl/base/policy_checks.h +3 -3
  1217. data/third_party/abseil-cpp/absl/base/prefetch.h +198 -0
  1218. data/third_party/abseil-cpp/absl/container/fixed_array.h +54 -29
  1219. data/third_party/abseil-cpp/absl/container/flat_hash_map.h +5 -1
  1220. data/third_party/abseil-cpp/absl/container/flat_hash_set.h +6 -2
  1221. data/third_party/abseil-cpp/absl/container/inlined_vector.h +167 -79
  1222. data/third_party/abseil-cpp/absl/container/internal/common_policy_traits.h +1 -1
  1223. data/third_party/abseil-cpp/absl/container/internal/compressed_tuple.h +3 -21
  1224. data/third_party/abseil-cpp/absl/container/internal/container_memory.h +1 -1
  1225. data/third_party/abseil-cpp/absl/container/internal/hash_function_defaults.h +46 -0
  1226. data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.cc +2 -0
  1227. data/third_party/abseil-cpp/absl/container/internal/inlined_vector.h +85 -26
  1228. data/third_party/abseil-cpp/absl/container/internal/raw_hash_map.h +35 -18
  1229. data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.cc +70 -29
  1230. data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.h +437 -236
  1231. data/third_party/abseil-cpp/absl/crc/crc32c.h +8 -1
  1232. data/third_party/abseil-cpp/absl/crc/internal/cpu_detect.cc +14 -8
  1233. data/third_party/abseil-cpp/absl/crc/internal/crc.cc +4 -35
  1234. data/third_party/abseil-cpp/absl/crc/internal/crc.h +2 -10
  1235. data/third_party/abseil-cpp/absl/crc/internal/crc32_x86_arm_combined_simd.h +1 -1
  1236. data/third_party/abseil-cpp/absl/crc/internal/crc_cord_state.cc +1 -1
  1237. data/third_party/abseil-cpp/absl/crc/internal/crc_cord_state.h +4 -4
  1238. data/third_party/abseil-cpp/absl/crc/internal/crc_internal.h +8 -10
  1239. data/third_party/abseil-cpp/absl/crc/internal/crc_memcpy_x86_64.cc +17 -19
  1240. data/third_party/abseil-cpp/absl/crc/internal/crc_x86_arm_combined.cc +8 -8
  1241. data/third_party/abseil-cpp/absl/debugging/internal/elf_mem_image.h +2 -1
  1242. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_aarch64-inl.inc +59 -23
  1243. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_powerpc-inl.inc +1 -1
  1244. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_x86-inl.inc +1 -1
  1245. data/third_party/abseil-cpp/absl/debugging/internal/symbolize.h +1 -1
  1246. data/third_party/abseil-cpp/absl/debugging/symbolize_elf.inc +43 -19
  1247. data/third_party/abseil-cpp/absl/debugging/symbolize_emscripten.inc +3 -0
  1248. data/third_party/abseil-cpp/absl/flags/commandlineflag.cc +34 -0
  1249. data/third_party/abseil-cpp/absl/flags/commandlineflag.h +200 -0
  1250. data/third_party/abseil-cpp/absl/flags/config.h +68 -0
  1251. data/third_party/abseil-cpp/absl/flags/declare.h +73 -0
  1252. data/third_party/abseil-cpp/absl/flags/flag.cc +38 -0
  1253. data/third_party/abseil-cpp/absl/flags/flag.h +310 -0
  1254. data/third_party/abseil-cpp/absl/flags/internal/commandlineflag.cc +26 -0
  1255. data/third_party/abseil-cpp/absl/flags/internal/commandlineflag.h +68 -0
  1256. data/third_party/abseil-cpp/absl/flags/internal/flag.cc +615 -0
  1257. data/third_party/abseil-cpp/absl/flags/internal/flag.h +801 -0
  1258. data/third_party/abseil-cpp/absl/flags/internal/flag_msvc.inc +116 -0
  1259. data/third_party/abseil-cpp/absl/flags/internal/path_util.h +62 -0
  1260. data/third_party/abseil-cpp/absl/flags/internal/private_handle_accessor.cc +65 -0
  1261. data/third_party/abseil-cpp/absl/flags/internal/private_handle_accessor.h +61 -0
  1262. data/third_party/abseil-cpp/absl/flags/internal/program_name.cc +60 -0
  1263. data/third_party/abseil-cpp/absl/flags/internal/program_name.h +50 -0
  1264. data/third_party/abseil-cpp/absl/flags/internal/registry.h +97 -0
  1265. data/third_party/abseil-cpp/absl/flags/internal/sequence_lock.h +187 -0
  1266. data/third_party/abseil-cpp/absl/flags/marshalling.cc +282 -0
  1267. data/third_party/abseil-cpp/absl/flags/marshalling.h +361 -0
  1268. data/third_party/abseil-cpp/absl/flags/reflection.cc +354 -0
  1269. data/third_party/abseil-cpp/absl/flags/reflection.h +90 -0
  1270. data/third_party/abseil-cpp/absl/flags/usage_config.cc +165 -0
  1271. data/third_party/abseil-cpp/absl/flags/usage_config.h +135 -0
  1272. data/third_party/abseil-cpp/absl/functional/any_invocable.h +9 -1
  1273. data/third_party/abseil-cpp/absl/functional/bind_front.h +1 -1
  1274. data/third_party/abseil-cpp/absl/functional/function_ref.h +3 -3
  1275. data/third_party/abseil-cpp/absl/functional/internal/any_invocable.h +37 -24
  1276. data/third_party/abseil-cpp/absl/functional/internal/function_ref.h +19 -9
  1277. data/third_party/abseil-cpp/absl/hash/hash.h +7 -4
  1278. data/third_party/abseil-cpp/absl/hash/internal/hash.h +38 -15
  1279. data/third_party/abseil-cpp/absl/hash/internal/low_level_hash.cc +6 -0
  1280. data/third_party/abseil-cpp/absl/meta/type_traits.h +48 -373
  1281. data/third_party/abseil-cpp/absl/numeric/bits.h +4 -4
  1282. data/third_party/abseil-cpp/absl/numeric/int128.cc +20 -8
  1283. data/third_party/abseil-cpp/absl/numeric/int128.h +36 -39
  1284. data/third_party/abseil-cpp/absl/numeric/int128_have_intrinsic.inc +0 -3
  1285. data/third_party/abseil-cpp/absl/numeric/int128_no_intrinsic.inc +47 -30
  1286. data/third_party/abseil-cpp/absl/random/bit_gen_ref.h +185 -0
  1287. data/third_party/abseil-cpp/absl/random/internal/fast_uniform_bits.h +4 -3
  1288. data/third_party/abseil-cpp/absl/random/internal/generate_real.h +1 -1
  1289. data/third_party/abseil-cpp/absl/random/internal/platform.h +1 -1
  1290. data/third_party/abseil-cpp/absl/random/internal/randen_detect.cc +4 -0
  1291. data/third_party/abseil-cpp/absl/random/internal/randen_engine.h +1 -1
  1292. data/third_party/abseil-cpp/absl/random/internal/randen_hwaes.cc +1 -1
  1293. data/third_party/abseil-cpp/absl/random/internal/uniform_helper.h +1 -1
  1294. data/third_party/abseil-cpp/absl/status/internal/status_internal.h +4 -0
  1295. data/third_party/abseil-cpp/absl/status/internal/statusor_internal.h +12 -24
  1296. data/third_party/abseil-cpp/absl/status/status.cc +11 -7
  1297. data/third_party/abseil-cpp/absl/status/status.h +11 -2
  1298. data/third_party/abseil-cpp/absl/status/statusor.h +22 -8
  1299. data/third_party/abseil-cpp/absl/strings/ascii.cc +54 -6
  1300. data/third_party/abseil-cpp/absl/strings/charconv.cc +21 -4
  1301. data/third_party/abseil-cpp/absl/strings/charconv.h +2 -2
  1302. data/third_party/abseil-cpp/absl/strings/cord.cc +1 -2
  1303. data/third_party/abseil-cpp/absl/strings/cord.h +32 -5
  1304. data/third_party/abseil-cpp/absl/strings/cord_analysis.cc +23 -1
  1305. data/third_party/abseil-cpp/absl/strings/cord_analysis.h +18 -0
  1306. data/third_party/abseil-cpp/absl/strings/cord_buffer.h +2 -5
  1307. data/third_party/abseil-cpp/absl/strings/escaping.cc +10 -32
  1308. data/third_party/abseil-cpp/absl/strings/escaping.h +1 -1
  1309. data/third_party/abseil-cpp/absl/strings/internal/charconv_bigint.cc +2 -4
  1310. data/third_party/abseil-cpp/absl/strings/internal/charconv_bigint.h +3 -3
  1311. data/third_party/abseil-cpp/absl/strings/internal/cord_internal.cc +0 -1
  1312. data/third_party/abseil-cpp/absl/strings/internal/cord_internal.h +27 -21
  1313. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree.cc +13 -4
  1314. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree.h +8 -0
  1315. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_consume.cc +5 -3
  1316. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_consume.h +4 -7
  1317. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_flat.h +8 -0
  1318. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_ring.h +2 -2
  1319. data/third_party/abseil-cpp/absl/strings/internal/cordz_handle.cc +46 -20
  1320. data/third_party/abseil-cpp/absl/strings/internal/cordz_handle.h +1 -34
  1321. data/third_party/abseil-cpp/absl/strings/internal/cordz_info.cc +2 -1
  1322. data/third_party/abseil-cpp/absl/strings/internal/escaping.cc +23 -0
  1323. data/third_party/abseil-cpp/absl/strings/internal/escaping.h +1 -0
  1324. data/third_party/abseil-cpp/absl/strings/internal/memutil.cc +2 -77
  1325. data/third_party/abseil-cpp/absl/strings/internal/memutil.h +4 -112
  1326. data/third_party/abseil-cpp/absl/strings/internal/stl_type_traits.h +1 -1
  1327. data/third_party/abseil-cpp/absl/strings/internal/str_format/arg.cc +10 -31
  1328. data/third_party/abseil-cpp/absl/strings/internal/str_format/arg.h +8 -8
  1329. data/third_party/abseil-cpp/absl/strings/internal/str_format/bind.h +5 -20
  1330. data/third_party/abseil-cpp/absl/strings/internal/str_format/constexpr_parser.h +1 -0
  1331. data/third_party/abseil-cpp/absl/strings/internal/str_format/extension.h +1 -1
  1332. data/third_party/abseil-cpp/absl/strings/internal/str_format/float_conversion.cc +9 -9
  1333. data/third_party/abseil-cpp/absl/strings/internal/str_split_internal.h +56 -6
  1334. data/third_party/abseil-cpp/absl/strings/match.cc +87 -0
  1335. data/third_party/abseil-cpp/absl/strings/match.h +19 -0
  1336. data/third_party/abseil-cpp/absl/strings/numbers.cc +154 -122
  1337. data/third_party/abseil-cpp/absl/strings/numbers.h +1 -6
  1338. data/third_party/abseil-cpp/absl/strings/str_cat.cc +7 -50
  1339. data/third_party/abseil-cpp/absl/strings/str_cat.h +83 -15
  1340. data/third_party/abseil-cpp/absl/strings/str_format.h +6 -3
  1341. data/third_party/abseil-cpp/absl/strings/str_split.cc +9 -6
  1342. data/third_party/abseil-cpp/absl/strings/string_view.cc +26 -4
  1343. data/third_party/abseil-cpp/absl/synchronization/internal/create_thread_identity.cc +5 -0
  1344. data/third_party/abseil-cpp/absl/synchronization/internal/futex.h +63 -43
  1345. data/third_party/abseil-cpp/absl/synchronization/internal/futex_waiter.cc +111 -0
  1346. data/third_party/abseil-cpp/absl/synchronization/internal/futex_waiter.h +63 -0
  1347. data/third_party/abseil-cpp/absl/synchronization/internal/graphcycles.cc +11 -7
  1348. data/third_party/abseil-cpp/absl/synchronization/internal/kernel_timeout.cc +225 -0
  1349. data/third_party/abseil-cpp/absl/synchronization/internal/kernel_timeout.h +122 -114
  1350. data/third_party/abseil-cpp/absl/synchronization/internal/per_thread_sem.cc +12 -8
  1351. data/third_party/abseil-cpp/absl/synchronization/internal/per_thread_sem.h +10 -1
  1352. data/third_party/abseil-cpp/absl/synchronization/internal/pthread_waiter.cc +167 -0
  1353. data/third_party/abseil-cpp/absl/synchronization/internal/pthread_waiter.h +60 -0
  1354. data/third_party/abseil-cpp/absl/synchronization/internal/sem_waiter.cc +122 -0
  1355. data/third_party/abseil-cpp/absl/synchronization/internal/sem_waiter.h +65 -0
  1356. data/third_party/abseil-cpp/absl/synchronization/internal/stdcpp_waiter.cc +91 -0
  1357. data/third_party/abseil-cpp/absl/synchronization/internal/stdcpp_waiter.h +56 -0
  1358. data/third_party/abseil-cpp/absl/synchronization/internal/waiter.h +19 -113
  1359. data/third_party/abseil-cpp/absl/synchronization/internal/waiter_base.cc +42 -0
  1360. data/third_party/abseil-cpp/absl/synchronization/internal/waiter_base.h +90 -0
  1361. data/third_party/abseil-cpp/absl/synchronization/internal/win32_waiter.cc +151 -0
  1362. data/third_party/abseil-cpp/absl/synchronization/internal/win32_waiter.h +70 -0
  1363. data/third_party/abseil-cpp/absl/synchronization/mutex.cc +407 -411
  1364. data/third_party/abseil-cpp/absl/synchronization/mutex.h +152 -118
  1365. data/third_party/abseil-cpp/absl/time/clock.cc +6 -7
  1366. data/third_party/abseil-cpp/absl/time/duration.cc +24 -26
  1367. data/third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/time_zone.h +1 -0
  1368. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_fixed.cc +1 -1
  1369. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_format.cc +3 -3
  1370. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_if.cc +8 -6
  1371. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_if.h +6 -3
  1372. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_impl.cc +4 -2
  1373. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_impl.h +4 -0
  1374. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_info.cc +322 -295
  1375. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_info.h +8 -17
  1376. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.cc +51 -33
  1377. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.h +7 -2
  1378. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_lookup.cc +128 -2
  1379. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_posix.h +1 -1
  1380. data/third_party/abseil-cpp/absl/time/internal/cctz/src/tzfile.h +5 -1
  1381. data/third_party/abseil-cpp/absl/time/internal/cctz/src/zone_info_source.cc +34 -34
  1382. data/third_party/abseil-cpp/absl/time/time.cc +9 -2
  1383. data/third_party/abseil-cpp/absl/time/time.h +115 -15
  1384. data/third_party/abseil-cpp/absl/types/internal/optional.h +0 -52
  1385. data/third_party/abseil-cpp/absl/types/internal/span.h +2 -2
  1386. data/third_party/abseil-cpp/absl/types/internal/variant.h +2 -2
  1387. data/third_party/abseil-cpp/absl/types/optional.h +15 -13
  1388. data/third_party/abseil-cpp/absl/types/span.h +1 -2
  1389. data/third_party/boringssl-with-bazel/err_data.c +731 -714
  1390. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_bitstr.c +177 -177
  1391. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_bool.c +28 -55
  1392. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_d2i_fp.c +21 -23
  1393. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_dup.c +20 -23
  1394. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_gentm.c +70 -185
  1395. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_i2d_fp.c +18 -21
  1396. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_int.c +356 -311
  1397. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_mbstr.c +177 -196
  1398. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_object.c +146 -210
  1399. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_octet.c +6 -9
  1400. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_strex.c +346 -526
  1401. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_strnid.c +111 -132
  1402. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_time.c +158 -111
  1403. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_type.c +93 -60
  1404. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_utctm.c +101 -182
  1405. data/third_party/boringssl-with-bazel/src/crypto/asn1/asn1_lib.c +242 -305
  1406. data/third_party/boringssl-with-bazel/src/crypto/asn1/asn1_par.c +41 -18
  1407. data/third_party/boringssl-with-bazel/src/crypto/asn1/asn_pack.c +30 -33
  1408. data/third_party/boringssl-with-bazel/src/crypto/asn1/f_int.c +36 -33
  1409. data/third_party/boringssl-with-bazel/src/crypto/asn1/f_string.c +29 -26
  1410. data/third_party/boringssl-with-bazel/src/crypto/asn1/internal.h +135 -90
  1411. data/third_party/boringssl-with-bazel/src/crypto/asn1/posix_time.c +230 -0
  1412. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_dec.c +797 -793
  1413. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_enc.c +529 -526
  1414. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_fre.c +114 -135
  1415. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_new.c +201 -207
  1416. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_typ.c +21 -26
  1417. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_utl.c +55 -68
  1418. data/third_party/boringssl-with-bazel/src/crypto/base64/base64.c +2 -4
  1419. data/third_party/boringssl-with-bazel/src/crypto/bio/bio.c +20 -14
  1420. data/third_party/boringssl-with-bazel/src/crypto/bio/bio_mem.c +42 -57
  1421. data/third_party/boringssl-with-bazel/src/crypto/bio/connect.c +22 -16
  1422. data/third_party/boringssl-with-bazel/src/crypto/{asn1/a_print.c → bio/errno.c} +29 -20
  1423. data/third_party/boringssl-with-bazel/src/crypto/bio/fd.c +18 -58
  1424. data/third_party/boringssl-with-bazel/src/crypto/bio/file.c +39 -31
  1425. data/third_party/boringssl-with-bazel/src/crypto/bio/internal.h +16 -6
  1426. data/third_party/boringssl-with-bazel/src/crypto/bio/pair.c +5 -5
  1427. data/third_party/boringssl-with-bazel/src/crypto/bio/printf.c +0 -13
  1428. data/third_party/boringssl-with-bazel/src/crypto/bio/socket.c +7 -10
  1429. data/third_party/boringssl-with-bazel/src/crypto/bio/socket_helper.c +13 -2
  1430. data/third_party/boringssl-with-bazel/src/crypto/blake2/blake2.c +40 -27
  1431. data/third_party/boringssl-with-bazel/src/crypto/bn_extra/convert.c +10 -23
  1432. data/third_party/boringssl-with-bazel/src/crypto/buf/buf.c +2 -6
  1433. data/third_party/boringssl-with-bazel/src/crypto/bytestring/asn1_compat.c +2 -1
  1434. data/third_party/boringssl-with-bazel/src/crypto/bytestring/ber.c +29 -28
  1435. data/third_party/boringssl-with-bazel/src/crypto/bytestring/cbb.c +161 -201
  1436. data/third_party/boringssl-with-bazel/src/crypto/bytestring/cbs.c +255 -40
  1437. data/third_party/boringssl-with-bazel/src/crypto/bytestring/internal.h +2 -2
  1438. data/third_party/boringssl-with-bazel/src/crypto/chacha/chacha.c +19 -3
  1439. data/third_party/boringssl-with-bazel/src/crypto/chacha/internal.h +8 -1
  1440. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/derive_key.c +4 -4
  1441. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_aesctrhmac.c +9 -8
  1442. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_aesgcmsiv.c +37 -75
  1443. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_chacha20poly1305.c +8 -10
  1444. data/third_party/boringssl-with-bazel/src/crypto/{fipsmodule/cipher → cipher_extra}/e_des.c +100 -78
  1445. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_null.c +1 -0
  1446. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_rc2.c +1 -0
  1447. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_rc4.c +2 -0
  1448. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_tls.c +34 -37
  1449. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/internal.h +22 -11
  1450. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/tls_cbc.c +189 -13
  1451. data/third_party/boringssl-with-bazel/src/crypto/conf/conf.c +37 -202
  1452. data/third_party/boringssl-with-bazel/src/crypto/conf/conf_def.h +3 -8
  1453. data/third_party/boringssl-with-bazel/src/crypto/conf/internal.h +20 -0
  1454. data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_apple.c +75 -0
  1455. data/third_party/boringssl-with-bazel/src/crypto/{cpu-aarch64-fuchsia.c → cpu_aarch64_fuchsia.c} +8 -8
  1456. data/third_party/boringssl-with-bazel/src/crypto/{cpu-aarch64-linux.c → cpu_aarch64_linux.c} +6 -6
  1457. data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_openbsd.c +61 -0
  1458. data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_sysreg.c +93 -0
  1459. data/third_party/boringssl-with-bazel/src/crypto/{cpu-aarch64-win.c → cpu_aarch64_win.c} +4 -4
  1460. data/third_party/boringssl-with-bazel/src/crypto/cpu_arm_freebsd.c +54 -0
  1461. data/third_party/boringssl-with-bazel/src/crypto/{cpu-arm-linux.c → cpu_arm_linux.c} +11 -92
  1462. data/third_party/boringssl-with-bazel/src/crypto/{cpu-arm-linux.h → cpu_arm_linux.h} +0 -38
  1463. data/third_party/boringssl-with-bazel/src/crypto/{cpu-intel.c → cpu_intel.c} +1 -2
  1464. data/third_party/boringssl-with-bazel/src/crypto/crypto.c +25 -20
  1465. data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519.c +71 -77
  1466. data/third_party/boringssl-with-bazel/src/crypto/{cpu-ppc64le.c → curve25519/curve25519_64_adx.c} +3 -23
  1467. data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519_tables.h +2834 -7442
  1468. data/third_party/boringssl-with-bazel/src/crypto/curve25519/internal.h +26 -8
  1469. data/third_party/boringssl-with-bazel/src/crypto/curve25519/spake25519.c +17 -32
  1470. data/third_party/boringssl-with-bazel/src/crypto/{fipsmodule/des → des}/des.c +232 -232
  1471. data/third_party/boringssl-with-bazel/src/crypto/{fipsmodule/des → des}/internal.h +1 -1
  1472. data/third_party/boringssl-with-bazel/src/crypto/dh_extra/dh_asn1.c +5 -0
  1473. data/third_party/boringssl-with-bazel/src/crypto/dh_extra/params.c +237 -29
  1474. data/third_party/boringssl-with-bazel/src/crypto/digest_extra/digest_extra.c +0 -3
  1475. data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa.c +43 -16
  1476. data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa_asn1.c +37 -7
  1477. data/third_party/boringssl-with-bazel/src/crypto/dsa/internal.h +23 -3
  1478. data/third_party/boringssl-with-bazel/src/crypto/ec_extra/ec_asn1.c +118 -105
  1479. data/third_party/boringssl-with-bazel/src/crypto/ec_extra/ec_derive.c +4 -3
  1480. data/third_party/boringssl-with-bazel/src/crypto/ec_extra/hash_to_curve.c +234 -111
  1481. data/third_party/boringssl-with-bazel/src/crypto/ec_extra/internal.h +29 -7
  1482. data/third_party/boringssl-with-bazel/src/crypto/ecdh_extra/ecdh_extra.c +1 -1
  1483. data/third_party/boringssl-with-bazel/src/crypto/ecdsa_extra/ecdsa_asn1.c +2 -4
  1484. data/third_party/boringssl-with-bazel/src/crypto/err/err.c +106 -81
  1485. data/third_party/boringssl-with-bazel/src/crypto/evp/evp.c +80 -23
  1486. data/third_party/boringssl-with-bazel/src/crypto/evp/evp_asn1.c +3 -3
  1487. data/third_party/boringssl-with-bazel/src/crypto/evp/evp_ctx.c +25 -23
  1488. data/third_party/boringssl-with-bazel/src/crypto/evp/internal.h +43 -9
  1489. data/third_party/boringssl-with-bazel/src/crypto/evp/p_dsa_asn1.c +75 -44
  1490. data/third_party/boringssl-with-bazel/src/crypto/evp/p_ec.c +21 -29
  1491. data/third_party/boringssl-with-bazel/src/crypto/evp/p_ec_asn1.c +99 -52
  1492. data/third_party/boringssl-with-bazel/src/crypto/evp/p_ed25519.c +7 -8
  1493. data/third_party/boringssl-with-bazel/src/crypto/evp/p_ed25519_asn1.c +26 -23
  1494. data/third_party/boringssl-with-bazel/src/crypto/evp/p_hkdf.c +233 -0
  1495. data/third_party/boringssl-with-bazel/src/crypto/evp/p_rsa.c +6 -6
  1496. data/third_party/boringssl-with-bazel/src/crypto/evp/p_rsa_asn1.c +42 -25
  1497. data/third_party/boringssl-with-bazel/src/crypto/evp/p_x25519.c +4 -5
  1498. data/third_party/boringssl-with-bazel/src/crypto/evp/p_x25519_asn1.c +35 -47
  1499. data/third_party/boringssl-with-bazel/src/crypto/evp/pbkdf.c +3 -3
  1500. data/third_party/boringssl-with-bazel/src/crypto/evp/print.c +138 -246
  1501. data/third_party/boringssl-with-bazel/src/crypto/evp/scrypt.c +2 -4
  1502. data/third_party/boringssl-with-bazel/src/crypto/evp/sign.c +15 -10
  1503. data/third_party/boringssl-with-bazel/src/crypto/ex_data.c +47 -71
  1504. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/aes.c +0 -2
  1505. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/aes_nohw.c +13 -14
  1506. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/internal.h +3 -13
  1507. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/key_wrap.c +13 -7
  1508. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/mode_wrappers.c +9 -7
  1509. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm.c +37 -28
  1510. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/bn.c +16 -26
  1511. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/bytes.c +88 -60
  1512. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/cmp.c +4 -3
  1513. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/ctx.c +0 -2
  1514. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div.c +13 -6
  1515. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div_extra.c +1 -1
  1516. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/exponentiation.c +99 -113
  1517. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/gcd.c +5 -7
  1518. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/gcd_extra.c +5 -3
  1519. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/generic.c +112 -168
  1520. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/internal.h +98 -37
  1521. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery.c +28 -24
  1522. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery_inv.c +55 -20
  1523. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/mul.c +4 -5
  1524. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/prime.c +13 -0
  1525. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/random.c +13 -5
  1526. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/rsaz_exp.c +25 -114
  1527. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/rsaz_exp.h +19 -15
  1528. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/shift.c +15 -16
  1529. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/sqrt.c +22 -21
  1530. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/aead.c +3 -0
  1531. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/cipher.c +79 -19
  1532. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/e_aes.c +102 -99
  1533. data/third_party/boringssl-with-bazel/src/crypto/{cipher_extra → fipsmodule/cipher}/e_aesccm.c +52 -46
  1534. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/internal.h +39 -0
  1535. data/third_party/boringssl-with-bazel/src/crypto/{cmac → fipsmodule/cmac}/cmac.c +55 -11
  1536. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/delocate.h +5 -6
  1537. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/check.c +39 -11
  1538. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/dh.c +62 -25
  1539. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/internal.h +65 -0
  1540. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/digest.c +5 -3
  1541. data/third_party/boringssl-with-bazel/src/crypto/{evp → fipsmodule/digestsign}/digestsign.c +51 -15
  1542. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/builtin_curves.h +277 -0
  1543. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec.c +226 -450
  1544. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_key.c +95 -21
  1545. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_montgomery.c +36 -69
  1546. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/felem.c +17 -13
  1547. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/internal.h +139 -155
  1548. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/oct.c +71 -40
  1549. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p224-64.c +60 -78
  1550. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{p256-x86_64-table.h → p256-nistz-table.h} +1 -1
  1551. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{p256-x86_64.c → p256-nistz.c} +87 -83
  1552. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{p256-x86_64.h → p256-nistz.h} +5 -13
  1553. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256.c +71 -62
  1554. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256_table.h +1 -1
  1555. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/scalar.c +24 -30
  1556. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/simple.c +21 -42
  1557. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/simple_mul.c +33 -34
  1558. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/wnaf.c +16 -17
  1559. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdh/ecdh.c +9 -1
  1560. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/ecdsa.c +53 -19
  1561. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/internal.h +6 -0
  1562. data/third_party/boringssl-with-bazel/src/crypto/{hkdf → fipsmodule/hkdf}/hkdf.c +2 -2
  1563. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/hmac/hmac.c +52 -24
  1564. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/cbc.c +9 -23
  1565. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/cfb.c +1 -4
  1566. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/ctr.c +3 -8
  1567. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/gcm.c +170 -160
  1568. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/gcm_nohw.c +12 -14
  1569. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/internal.h +69 -61
  1570. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/ofb.c +2 -12
  1571. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/polyval.c +27 -28
  1572. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/ctrdrbg.c +31 -13
  1573. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/fork_detect.c +56 -34
  1574. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/fork_detect.h +3 -2
  1575. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/getrandom_fillin.h +2 -2
  1576. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/internal.h +30 -45
  1577. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/rand.c +111 -78
  1578. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/urandom.c +12 -85
  1579. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/blinding.c +0 -1
  1580. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/internal.h +98 -16
  1581. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/padding.c +42 -314
  1582. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa.c +244 -139
  1583. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa_impl.c +175 -255
  1584. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/fips.c +41 -0
  1585. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/self_check.c +617 -427
  1586. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/service_indicator/internal.h +89 -0
  1587. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/service_indicator/service_indicator.c +331 -0
  1588. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/internal.h +3 -12
  1589. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha1.c +2 -0
  1590. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha256.c +12 -8
  1591. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha512.c +14 -12
  1592. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/tls/internal.h +8 -0
  1593. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/tls/kdf.c +52 -6
  1594. data/third_party/boringssl-with-bazel/src/crypto/hpke/hpke.c +199 -18
  1595. data/third_party/boringssl-with-bazel/src/crypto/hrss/hrss.c +65 -29
  1596. data/third_party/boringssl-with-bazel/src/crypto/internal.h +568 -84
  1597. data/third_party/boringssl-with-bazel/src/crypto/kyber/internal.h +91 -0
  1598. data/third_party/boringssl-with-bazel/src/crypto/kyber/keccak.c +204 -0
  1599. data/third_party/boringssl-with-bazel/src/crypto/kyber/kyber.c +834 -0
  1600. data/third_party/boringssl-with-bazel/src/crypto/lhash/internal.h +13 -1
  1601. data/third_party/boringssl-with-bazel/src/crypto/mem.c +219 -13
  1602. data/third_party/boringssl-with-bazel/src/crypto/obj/obj.c +43 -52
  1603. data/third_party/boringssl-with-bazel/src/crypto/obj/obj_dat.h +9 -4
  1604. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_all.c +81 -90
  1605. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_info.c +150 -245
  1606. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_lib.c +633 -613
  1607. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_oth.c +17 -17
  1608. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pk8.c +142 -149
  1609. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pkey.c +99 -131
  1610. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_x509.c +0 -1
  1611. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_xaux.c +0 -1
  1612. data/third_party/boringssl-with-bazel/src/crypto/pkcs7/pkcs7_x509.c +0 -1
  1613. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/internal.h +3 -3
  1614. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/p5_pbev2.c +3 -3
  1615. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8.c +7 -10
  1616. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8_x509.c +44 -71
  1617. data/third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305.c +31 -38
  1618. data/third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305_arm.c +2 -1
  1619. data/third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305_vec.c +18 -31
  1620. data/third_party/boringssl-with-bazel/src/crypto/pool/internal.h +2 -0
  1621. data/third_party/boringssl-with-bazel/src/crypto/pool/pool.c +8 -1
  1622. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/deterministic.c +7 -6
  1623. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/forkunsafe.c +6 -12
  1624. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/getentropy.c +52 -0
  1625. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/{fuchsia.c → ios.c} +8 -8
  1626. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/passive.c +129 -5
  1627. data/third_party/boringssl-with-bazel/src/crypto/{cpu-arm.c → rand_extra/trusty.c} +16 -16
  1628. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/windows.c +41 -19
  1629. data/third_party/boringssl-with-bazel/src/crypto/{refcount_c11.c → refcount.c} +11 -19
  1630. data/third_party/boringssl-with-bazel/src/crypto/{asn1/a_enum.c → rsa_extra/internal.h} +14 -132
  1631. data/third_party/boringssl-with-bazel/src/crypto/rsa_extra/rsa_crypt.c +568 -0
  1632. data/third_party/boringssl-with-bazel/src/crypto/siphash/siphash.c +8 -11
  1633. data/third_party/boringssl-with-bazel/src/crypto/stack/stack.c +176 -62
  1634. data/third_party/boringssl-with-bazel/src/crypto/thread_none.c +0 -8
  1635. data/third_party/boringssl-with-bazel/src/crypto/thread_pthread.c +12 -44
  1636. data/third_party/boringssl-with-bazel/src/crypto/thread_win.c +11 -35
  1637. data/third_party/boringssl-with-bazel/src/crypto/trust_token/internal.h +128 -34
  1638. data/third_party/boringssl-with-bazel/src/crypto/trust_token/pmbtoken.c +428 -147
  1639. data/third_party/boringssl-with-bazel/src/crypto/trust_token/trust_token.c +116 -284
  1640. data/third_party/boringssl-with-bazel/src/crypto/trust_token/voprf.c +686 -161
  1641. data/third_party/boringssl-with-bazel/src/crypto/x509/a_digest.c +22 -24
  1642. data/third_party/boringssl-with-bazel/src/crypto/x509/a_sign.c +63 -55
  1643. data/third_party/boringssl-with-bazel/src/crypto/x509/a_verify.c +32 -34
  1644. data/third_party/boringssl-with-bazel/src/crypto/x509/algorithm.c +32 -16
  1645. data/third_party/boringssl-with-bazel/src/crypto/x509/asn1_gen.c +465 -704
  1646. data/third_party/boringssl-with-bazel/src/crypto/x509/by_dir.c +278 -335
  1647. data/third_party/boringssl-with-bazel/src/crypto/x509/by_file.c +182 -180
  1648. data/third_party/boringssl-with-bazel/src/crypto/x509/i2d_pr.c +11 -15
  1649. data/third_party/boringssl-with-bazel/src/crypto/x509/internal.h +69 -51
  1650. data/third_party/boringssl-with-bazel/src/crypto/x509/name_print.c +132 -151
  1651. data/third_party/boringssl-with-bazel/src/crypto/x509/policy.c +790 -0
  1652. data/third_party/boringssl-with-bazel/src/crypto/x509/rsa_pss.c +95 -102
  1653. data/third_party/boringssl-with-bazel/src/crypto/x509/t_crl.c +72 -57
  1654. data/third_party/boringssl-with-bazel/src/crypto/x509/t_req.c +12 -10
  1655. data/third_party/boringssl-with-bazel/src/crypto/x509/t_x509.c +220 -254
  1656. data/third_party/boringssl-with-bazel/src/crypto/x509/t_x509a.c +52 -47
  1657. data/third_party/boringssl-with-bazel/src/crypto/x509/x509.c +3 -4
  1658. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_att.c +136 -270
  1659. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_cmp.c +161 -327
  1660. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_d2.c +38 -36
  1661. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_def.c +14 -31
  1662. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_ext.c +55 -85
  1663. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_lu.c +526 -616
  1664. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_obj.c +129 -122
  1665. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_req.c +164 -181
  1666. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_set.c +132 -132
  1667. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_trs.c +186 -203
  1668. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_txt.c +64 -79
  1669. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_v3.c +171 -160
  1670. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vfy.c +1863 -2050
  1671. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vpm.c +380 -480
  1672. data/third_party/boringssl-with-bazel/src/crypto/x509/x509cset.c +156 -163
  1673. data/third_party/boringssl-with-bazel/src/crypto/x509/x509name.c +262 -265
  1674. data/third_party/boringssl-with-bazel/src/crypto/x509/x509rset.c +40 -15
  1675. data/third_party/boringssl-with-bazel/src/crypto/x509/x509spki.c +59 -63
  1676. data/third_party/boringssl-with-bazel/src/crypto/x509/x_algor.c +63 -67
  1677. data/third_party/boringssl-with-bazel/src/crypto/x509/x_all.c +114 -144
  1678. data/third_party/boringssl-with-bazel/src/crypto/x509/x_attrib.c +25 -26
  1679. data/third_party/boringssl-with-bazel/src/crypto/x509/x_crl.c +330 -417
  1680. data/third_party/boringssl-with-bazel/src/crypto/x509/x_exten.c +8 -7
  1681. data/third_party/boringssl-with-bazel/src/crypto/x509/x_info.c +30 -28
  1682. data/third_party/boringssl-with-bazel/src/crypto/x509/x_name.c +354 -370
  1683. data/third_party/boringssl-with-bazel/src/crypto/x509/x_pkey.c +37 -32
  1684. data/third_party/boringssl-with-bazel/src/crypto/x509/x_pubkey.c +121 -124
  1685. data/third_party/boringssl-with-bazel/src/crypto/x509/x_req.c +36 -26
  1686. data/third_party/boringssl-with-bazel/src/crypto/x509/x_sig.c +3 -4
  1687. data/third_party/boringssl-with-bazel/src/crypto/x509/x_spki.c +10 -13
  1688. data/third_party/boringssl-with-bazel/src/crypto/x509/x_val.c +3 -4
  1689. data/third_party/boringssl-with-bazel/src/crypto/x509/x_x509.c +419 -261
  1690. data/third_party/boringssl-with-bazel/src/crypto/x509/x_x509a.c +113 -105
  1691. data/third_party/boringssl-with-bazel/src/crypto/x509v3/ext_dat.h +11 -15
  1692. data/third_party/boringssl-with-bazel/src/crypto/x509v3/internal.h +79 -171
  1693. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_akey.c +126 -131
  1694. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_akeya.c +3 -4
  1695. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_alt.c +464 -469
  1696. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_bcons.c +56 -54
  1697. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_bitst.c +46 -49
  1698. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_conf.c +294 -344
  1699. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_cpols.c +342 -365
  1700. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_crld.c +429 -393
  1701. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_enum.c +29 -24
  1702. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_extku.c +65 -59
  1703. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_genn.c +125 -121
  1704. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_ia5.c +43 -42
  1705. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_info.c +120 -125
  1706. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_int.c +50 -20
  1707. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_lib.c +227 -265
  1708. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_ncons.c +386 -389
  1709. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_ocsp.c +45 -32
  1710. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_pcons.c +57 -54
  1711. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_pmaps.c +63 -67
  1712. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_prn.c +130 -135
  1713. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_purp.c +650 -691
  1714. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_skey.c +90 -75
  1715. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_utl.c +1063 -1145
  1716. data/third_party/boringssl-with-bazel/src/include/openssl/aead.h +13 -11
  1717. data/third_party/boringssl-with-bazel/src/include/openssl/arm_arch.h +25 -160
  1718. data/third_party/boringssl-with-bazel/src/include/openssl/asm_base.h +207 -0
  1719. data/third_party/boringssl-with-bazel/src/include/openssl/asn1.h +222 -191
  1720. data/third_party/boringssl-with-bazel/src/include/openssl/asn1t.h +26 -78
  1721. data/third_party/boringssl-with-bazel/src/include/openssl/base.h +54 -124
  1722. data/third_party/boringssl-with-bazel/src/include/openssl/bio.h +40 -15
  1723. data/third_party/boringssl-with-bazel/src/include/openssl/blake2.h +1 -4
  1724. data/third_party/boringssl-with-bazel/src/include/openssl/bn.h +49 -19
  1725. data/third_party/boringssl-with-bazel/src/include/openssl/bytestring.h +99 -29
  1726. data/third_party/boringssl-with-bazel/src/include/openssl/chacha.h +6 -0
  1727. data/third_party/boringssl-with-bazel/src/include/openssl/cipher.h +49 -60
  1728. data/third_party/boringssl-with-bazel/src/include/openssl/conf.h +7 -16
  1729. data/third_party/boringssl-with-bazel/src/include/openssl/cpu.h +16 -200
  1730. data/third_party/boringssl-with-bazel/src/include/openssl/crypto.h +34 -0
  1731. data/third_party/boringssl-with-bazel/src/include/openssl/ctrdrbg.h +82 -0
  1732. data/third_party/boringssl-with-bazel/src/include/openssl/dh.h +36 -31
  1733. data/third_party/boringssl-with-bazel/src/include/openssl/digest.h +7 -0
  1734. data/third_party/boringssl-with-bazel/src/include/openssl/dsa.h +4 -21
  1735. data/third_party/boringssl-with-bazel/src/include/openssl/ec.h +67 -7
  1736. data/third_party/boringssl-with-bazel/src/include/openssl/ec_key.h +56 -14
  1737. data/third_party/boringssl-with-bazel/src/include/openssl/ecdsa.h +1 -0
  1738. data/third_party/boringssl-with-bazel/src/include/openssl/err.h +33 -5
  1739. data/third_party/boringssl-with-bazel/src/include/openssl/evp.h +36 -40
  1740. data/third_party/boringssl-with-bazel/src/include/openssl/ex_data.h +1 -1
  1741. data/third_party/boringssl-with-bazel/src/include/openssl/hmac.h +7 -0
  1742. data/third_party/boringssl-with-bazel/src/include/openssl/hpke.h +75 -18
  1743. data/third_party/boringssl-with-bazel/src/include/openssl/kdf.h +91 -0
  1744. data/third_party/boringssl-with-bazel/src/include/openssl/kyber.h +128 -0
  1745. data/third_party/boringssl-with-bazel/src/include/openssl/mem.h +74 -8
  1746. data/third_party/boringssl-with-bazel/src/include/openssl/nid.h +7 -3
  1747. data/third_party/boringssl-with-bazel/src/include/openssl/obj.h +8 -1
  1748. data/third_party/boringssl-with-bazel/src/include/openssl/opensslconf.h +1 -0
  1749. data/third_party/boringssl-with-bazel/src/include/openssl/pem.h +11 -18
  1750. data/third_party/boringssl-with-bazel/src/include/openssl/pkcs8.h +8 -0
  1751. data/third_party/boringssl-with-bazel/src/include/openssl/rand.h +15 -5
  1752. data/third_party/boringssl-with-bazel/src/include/openssl/rsa.h +97 -65
  1753. data/third_party/boringssl-with-bazel/src/include/openssl/service_indicator.h +96 -0
  1754. data/third_party/boringssl-with-bazel/src/include/openssl/span.h +40 -41
  1755. data/third_party/boringssl-with-bazel/src/include/openssl/ssl.h +400 -157
  1756. data/third_party/boringssl-with-bazel/src/include/openssl/ssl3.h +1 -6
  1757. data/third_party/boringssl-with-bazel/src/include/openssl/stack.h +349 -232
  1758. data/third_party/boringssl-with-bazel/src/include/openssl/target.h +201 -0
  1759. data/third_party/boringssl-with-bazel/src/include/openssl/thread.h +1 -26
  1760. data/third_party/boringssl-with-bazel/src/include/openssl/time.h +41 -0
  1761. data/third_party/boringssl-with-bazel/src/include/openssl/tls1.h +22 -7
  1762. data/third_party/boringssl-with-bazel/src/include/openssl/trust_token.h +57 -23
  1763. data/third_party/boringssl-with-bazel/src/include/openssl/type_check.h +0 -11
  1764. data/third_party/boringssl-with-bazel/src/include/openssl/x509.h +2071 -1407
  1765. data/third_party/boringssl-with-bazel/src/include/openssl/x509v3.h +244 -214
  1766. data/third_party/boringssl-with-bazel/src/ssl/bio_ssl.cc +2 -2
  1767. data/third_party/boringssl-with-bazel/src/ssl/d1_both.cc +6 -13
  1768. data/third_party/boringssl-with-bazel/src/ssl/d1_pkt.cc +17 -18
  1769. data/third_party/boringssl-with-bazel/src/ssl/dtls_method.cc +4 -5
  1770. data/third_party/boringssl-with-bazel/src/ssl/dtls_record.cc +25 -33
  1771. data/third_party/boringssl-with-bazel/src/ssl/encrypted_client_hello.cc +45 -26
  1772. data/third_party/boringssl-with-bazel/src/ssl/extensions.cc +72 -99
  1773. data/third_party/boringssl-with-bazel/src/ssl/handoff.cc +218 -74
  1774. data/third_party/boringssl-with-bazel/src/ssl/handshake.cc +5 -5
  1775. data/third_party/boringssl-with-bazel/src/ssl/handshake_client.cc +53 -34
  1776. data/third_party/boringssl-with-bazel/src/ssl/handshake_server.cc +77 -45
  1777. data/third_party/boringssl-with-bazel/src/ssl/internal.h +204 -132
  1778. data/third_party/boringssl-with-bazel/src/ssl/s3_both.cc +47 -12
  1779. data/third_party/boringssl-with-bazel/src/ssl/s3_lib.cc +2 -2
  1780. data/third_party/boringssl-with-bazel/src/ssl/s3_pkt.cc +91 -75
  1781. data/third_party/boringssl-with-bazel/src/ssl/ssl_aead_ctx.cc +8 -10
  1782. data/third_party/boringssl-with-bazel/src/ssl/ssl_asn1.cc +47 -69
  1783. data/third_party/boringssl-with-bazel/src/ssl/ssl_buffer.cc +1 -0
  1784. data/third_party/boringssl-with-bazel/src/ssl/ssl_cert.cc +5 -9
  1785. data/third_party/boringssl-with-bazel/src/ssl/ssl_cipher.cc +239 -242
  1786. data/third_party/boringssl-with-bazel/src/ssl/ssl_file.cc +78 -101
  1787. data/third_party/boringssl-with-bazel/src/ssl/ssl_key_share.cc +126 -155
  1788. data/third_party/boringssl-with-bazel/src/ssl/ssl_lib.cc +358 -48
  1789. data/third_party/boringssl-with-bazel/src/ssl/ssl_privkey.cc +167 -64
  1790. data/third_party/boringssl-with-bazel/src/ssl/ssl_session.cc +41 -32
  1791. data/third_party/boringssl-with-bazel/src/ssl/ssl_versions.cc +27 -19
  1792. data/third_party/boringssl-with-bazel/src/ssl/ssl_x509.cc +22 -6
  1793. data/third_party/boringssl-with-bazel/src/ssl/t1_enc.cc +15 -13
  1794. data/third_party/boringssl-with-bazel/src/ssl/tls13_both.cc +7 -44
  1795. data/third_party/boringssl-with-bazel/src/ssl/tls13_client.cc +6 -4
  1796. data/third_party/boringssl-with-bazel/src/ssl/tls13_enc.cc +7 -23
  1797. data/third_party/boringssl-with-bazel/src/ssl/tls13_server.cc +25 -34
  1798. data/third_party/boringssl-with-bazel/src/ssl/tls_method.cc +2 -2
  1799. data/third_party/boringssl-with-bazel/src/ssl/tls_record.cc +16 -98
  1800. data/third_party/boringssl-with-bazel/src/third_party/fiat/curve25519_32.h +1241 -657
  1801. data/third_party/boringssl-with-bazel/src/third_party/fiat/curve25519_64.h +751 -398
  1802. data/third_party/boringssl-with-bazel/src/third_party/fiat/curve25519_64_adx.h +691 -0
  1803. data/third_party/boringssl-with-bazel/src/third_party/fiat/curve25519_64_msvc.h +1281 -0
  1804. data/third_party/boringssl-with-bazel/src/third_party/fiat/p256_32.h +3551 -1938
  1805. data/third_party/boringssl-with-bazel/src/third_party/fiat/p256_64.h +1272 -487
  1806. data/third_party/boringssl-with-bazel/src/third_party/fiat/p256_64_msvc.h +2002 -0
  1807. data/third_party/cares/cares/include/ares.h +23 -1
  1808. data/third_party/cares/cares/{src/lib → include}/ares_nameser.h +9 -7
  1809. data/third_party/cares/cares/include/ares_rules.h +2 -2
  1810. data/third_party/cares/cares/include/ares_version.h +3 -3
  1811. data/third_party/cares/cares/src/lib/ares__addrinfo2hostent.c +266 -0
  1812. data/third_party/cares/cares/src/lib/ares__addrinfo_localhost.c +240 -0
  1813. data/third_party/cares/cares/src/lib/ares__parse_into_addrinfo.c +49 -80
  1814. data/third_party/cares/cares/src/lib/ares__readaddrinfo.c +37 -43
  1815. data/third_party/cares/cares/src/lib/ares__sortaddrinfo.c +12 -4
  1816. data/third_party/cares/cares/src/lib/ares_data.c +16 -0
  1817. data/third_party/cares/cares/src/lib/ares_data.h +7 -0
  1818. data/third_party/cares/cares/src/lib/ares_destroy.c +8 -0
  1819. data/third_party/cares/cares/src/lib/ares_expand_name.c +17 -6
  1820. data/third_party/cares/cares/src/lib/ares_freeaddrinfo.c +1 -0
  1821. data/third_party/cares/cares/src/lib/ares_getaddrinfo.c +156 -78
  1822. data/third_party/cares/cares/src/lib/ares_gethostbyname.c +130 -326
  1823. data/third_party/cares/cares/src/lib/ares_init.c +97 -485
  1824. data/third_party/cares/cares/src/lib/ares_library_init.c +2 -89
  1825. data/third_party/cares/cares/src/lib/ares_parse_a_reply.c +23 -142
  1826. data/third_party/cares/cares/src/lib/ares_parse_aaaa_reply.c +22 -142
  1827. data/third_party/cares/cares/src/lib/ares_parse_uri_reply.c +184 -0
  1828. data/third_party/cares/cares/src/lib/ares_private.h +30 -16
  1829. data/third_party/cares/cares/src/lib/ares_process.c +55 -16
  1830. data/third_party/cares/cares/src/lib/ares_query.c +1 -35
  1831. data/third_party/cares/cares/src/lib/ares_rand.c +279 -0
  1832. data/third_party/cares/cares/src/lib/ares_send.c +5 -7
  1833. data/third_party/cares/cares/src/lib/ares_strdup.c +12 -19
  1834. data/third_party/cares/cares/src/lib/ares_strsplit.c +44 -128
  1835. data/third_party/cares/cares/src/lib/ares_strsplit.h +9 -10
  1836. data/third_party/cares/cares/src/lib/inet_net_pton.c +78 -116
  1837. data/third_party/cares/cares/src/tools/ares_getopt.h +53 -0
  1838. data/third_party/upb/upb/{table_internal.h → alloc.h} +6 -6
  1839. data/third_party/upb/upb/arena.h +4 -193
  1840. data/third_party/upb/upb/array.h +4 -51
  1841. data/third_party/upb/upb/base/descriptor_constants.h +104 -0
  1842. data/third_party/upb/upb/base/log2.h +57 -0
  1843. data/third_party/upb/upb/{status.c → base/status.c} +2 -7
  1844. data/third_party/upb/upb/base/status.h +66 -0
  1845. data/third_party/upb/upb/base/string_view.h +75 -0
  1846. data/third_party/upb/upb/{array.c → collections/array.c} +73 -36
  1847. data/third_party/upb/upb/collections/array.h +91 -0
  1848. data/third_party/upb/upb/collections/array_internal.h +135 -0
  1849. data/third_party/upb/upb/{map.c → collections/map.c} +60 -26
  1850. data/third_party/upb/upb/collections/map.h +140 -0
  1851. data/third_party/upb/upb/collections/map_gencode_util.h +78 -0
  1852. data/third_party/upb/upb/collections/map_internal.h +170 -0
  1853. data/third_party/upb/upb/collections/map_sorter.c +166 -0
  1854. data/third_party/upb/upb/collections/map_sorter_internal.h +109 -0
  1855. data/third_party/upb/upb/{message_value.h → collections/message_value.h} +19 -13
  1856. data/third_party/upb/upb/decode.h +3 -62
  1857. data/third_party/upb/upb/def.h +4 -384
  1858. data/third_party/upb/upb/def.hpp +3 -411
  1859. data/third_party/upb/upb/encode.h +3 -48
  1860. data/third_party/upb/upb/extension_registry.h +3 -52
  1861. data/third_party/upb/upb/generated_code_support.h +54 -0
  1862. data/third_party/upb/upb/{table.c → hash/common.c} +55 -108
  1863. data/third_party/upb/upb/hash/common.h +200 -0
  1864. data/third_party/upb/upb/hash/int_table.h +102 -0
  1865. data/third_party/upb/upb/hash/str_table.h +162 -0
  1866. data/third_party/upb/upb/{json_decode.c → json/decode.c} +63 -98
  1867. data/third_party/upb/upb/{json_decode.h → json/decode.h} +8 -3
  1868. data/third_party/upb/upb/{json_encode.c → json/encode.c} +69 -45
  1869. data/third_party/upb/upb/{json_encode.h → json/encode.h} +8 -3
  1870. data/third_party/upb/upb/lex/atoi.c +68 -0
  1871. data/third_party/upb/upb/lex/atoi.h +53 -0
  1872. data/third_party/upb/upb/{upb.c → lex/round_trip.c} +2 -11
  1873. data/third_party/upb/upb/{internal/upb.h → lex/round_trip.h} +17 -30
  1874. data/third_party/upb/upb/lex/strtod.c +97 -0
  1875. data/third_party/upb/upb/lex/strtod.h +46 -0
  1876. data/third_party/upb/upb/lex/unicode.c +57 -0
  1877. data/third_party/upb/upb/lex/unicode.h +77 -0
  1878. data/third_party/upb/upb/map.h +4 -85
  1879. data/third_party/upb/upb/mem/alloc.c +47 -0
  1880. data/third_party/upb/upb/mem/alloc.h +98 -0
  1881. data/third_party/upb/upb/mem/arena.c +367 -0
  1882. data/third_party/upb/upb/mem/arena.h +160 -0
  1883. data/third_party/upb/upb/mem/arena_internal.h +114 -0
  1884. data/third_party/upb/upb/message/accessors.c +92 -0
  1885. data/third_party/upb/upb/message/accessors.h +400 -0
  1886. data/third_party/upb/upb/message/accessors_internal.h +391 -0
  1887. data/third_party/upb/upb/message/extension_internal.h +83 -0
  1888. data/third_party/upb/upb/message/internal/map_entry.h +64 -0
  1889. data/third_party/upb/upb/message/internal.h +131 -0
  1890. data/third_party/upb/upb/message/message.c +174 -0
  1891. data/third_party/upb/upb/message/message.h +69 -0
  1892. data/third_party/upb/upb/message/tagged_ptr.h +89 -0
  1893. data/third_party/upb/upb/mini_descriptor/build_enum.c +150 -0
  1894. data/third_party/upb/upb/mini_descriptor/build_enum.h +63 -0
  1895. data/third_party/upb/upb/mini_descriptor/decode.c +875 -0
  1896. data/third_party/upb/upb/mini_descriptor/decode.h +140 -0
  1897. data/third_party/upb/upb/mini_descriptor/internal/base92.c +46 -0
  1898. data/third_party/upb/upb/mini_descriptor/internal/base92.h +81 -0
  1899. data/third_party/upb/upb/mini_descriptor/internal/decoder.h +73 -0
  1900. data/third_party/upb/upb/mini_descriptor/internal/encode.c +326 -0
  1901. data/third_party/upb/upb/mini_descriptor/internal/encode.h +110 -0
  1902. data/third_party/upb/upb/{mini_table.hpp → mini_descriptor/internal/encode.hpp} +32 -8
  1903. data/third_party/upb/upb/mini_descriptor/internal/modifiers.h +50 -0
  1904. data/third_party/upb/upb/mini_descriptor/internal/wire_constants.h +91 -0
  1905. data/third_party/upb/upb/mini_descriptor/link.c +142 -0
  1906. data/third_party/upb/upb/mini_descriptor/link.h +104 -0
  1907. data/third_party/upb/upb/mini_table/enum.h +50 -0
  1908. data/third_party/upb/upb/mini_table/extension.h +40 -0
  1909. data/third_party/upb/upb/{extension_registry.c → mini_table/extension_registry.c} +27 -24
  1910. data/third_party/upb/upb/mini_table/extension_registry.h +105 -0
  1911. data/third_party/upb/upb/mini_table/field.h +118 -0
  1912. data/third_party/upb/upb/{collections.h → mini_table/file.h} +6 -7
  1913. data/third_party/upb/upb/mini_table/internal/enum.h +76 -0
  1914. data/third_party/upb/upb/mini_table/internal/extension.h +47 -0
  1915. data/third_party/upb/upb/mini_table/internal/field.h +136 -0
  1916. data/third_party/upb/upb/mini_table/internal/file.h +49 -0
  1917. data/third_party/upb/upb/mini_table/internal/message.c +39 -0
  1918. data/third_party/upb/upb/mini_table/internal/message.h +113 -0
  1919. data/third_party/upb/upb/mini_table/internal/sub.h +39 -0
  1920. data/third_party/upb/upb/mini_table/message.c +97 -0
  1921. data/third_party/upb/upb/mini_table/message.h +105 -0
  1922. data/third_party/upb/upb/mini_table/sub.h +35 -0
  1923. data/third_party/upb/upb/msg.h +3 -38
  1924. data/third_party/upb/upb/port/atomic.h +101 -0
  1925. data/third_party/upb/upb/{port_def.inc → port/def.inc} +94 -27
  1926. data/third_party/upb/upb/{port_undef.inc → port/undef.inc} +13 -3
  1927. data/third_party/upb/upb/{internal → port}/vsnprintf_compat.h +5 -7
  1928. data/third_party/upb/upb/reflection/common.h +67 -0
  1929. data/third_party/upb/upb/reflection/def.h +42 -0
  1930. data/third_party/upb/upb/reflection/def.hpp +622 -0
  1931. data/third_party/upb/upb/reflection/def_builder.c +357 -0
  1932. data/third_party/upb/upb/reflection/def_builder_internal.h +157 -0
  1933. data/third_party/upb/upb/reflection/def_pool.c +462 -0
  1934. data/third_party/upb/upb/reflection/def_pool.h +108 -0
  1935. data/third_party/upb/upb/reflection/def_pool_internal.h +77 -0
  1936. data/third_party/upb/upb/reflection/def_type.c +50 -0
  1937. data/third_party/upb/upb/reflection/def_type.h +81 -0
  1938. data/third_party/upb/upb/reflection/desc_state.c +53 -0
  1939. data/third_party/upb/upb/reflection/desc_state_internal.h +64 -0
  1940. data/third_party/upb/upb/reflection/enum_def.c +310 -0
  1941. data/third_party/upb/upb/reflection/enum_def.h +80 -0
  1942. data/third_party/upb/upb/reflection/enum_def_internal.h +56 -0
  1943. data/third_party/upb/upb/reflection/enum_reserved_range.c +84 -0
  1944. data/third_party/upb/upb/reflection/enum_reserved_range.h +51 -0
  1945. data/third_party/upb/upb/reflection/enum_reserved_range_internal.h +55 -0
  1946. data/third_party/upb/upb/reflection/enum_value_def.c +144 -0
  1947. data/third_party/upb/upb/reflection/enum_value_def.h +57 -0
  1948. data/third_party/upb/upb/reflection/enum_value_def_internal.h +57 -0
  1949. data/third_party/upb/upb/reflection/extension_range.c +93 -0
  1950. data/third_party/upb/upb/reflection/extension_range.h +55 -0
  1951. data/third_party/upb/upb/reflection/extension_range_internal.h +54 -0
  1952. data/third_party/upb/upb/reflection/field_def.c +931 -0
  1953. data/third_party/upb/upb/reflection/field_def.h +91 -0
  1954. data/third_party/upb/upb/reflection/field_def_internal.h +76 -0
  1955. data/third_party/upb/upb/reflection/file_def.c +370 -0
  1956. data/third_party/upb/upb/reflection/file_def.h +77 -0
  1957. data/third_party/upb/upb/reflection/file_def_internal.h +57 -0
  1958. data/third_party/upb/upb/reflection/message.c +233 -0
  1959. data/third_party/upb/upb/reflection/message.h +102 -0
  1960. data/third_party/upb/upb/reflection/message.hpp +37 -0
  1961. data/third_party/upb/upb/reflection/message_def.c +720 -0
  1962. data/third_party/upb/upb/reflection/message_def.h +174 -0
  1963. data/third_party/upb/upb/reflection/message_def_internal.h +63 -0
  1964. data/third_party/upb/upb/reflection/message_reserved_range.c +81 -0
  1965. data/third_party/upb/upb/reflection/message_reserved_range.h +51 -0
  1966. data/third_party/upb/upb/reflection/message_reserved_range_internal.h +55 -0
  1967. data/third_party/upb/upb/reflection/method_def.c +124 -0
  1968. data/third_party/upb/upb/reflection/method_def.h +59 -0
  1969. data/third_party/upb/upb/reflection/method_def_internal.h +53 -0
  1970. data/third_party/upb/upb/reflection/oneof_def.c +226 -0
  1971. data/third_party/upb/upb/reflection/oneof_def.h +66 -0
  1972. data/third_party/upb/upb/reflection/oneof_def_internal.h +57 -0
  1973. data/third_party/upb/upb/reflection/service_def.c +128 -0
  1974. data/third_party/upb/upb/reflection/service_def.h +60 -0
  1975. data/third_party/upb/upb/reflection/service_def_internal.h +53 -0
  1976. data/third_party/upb/upb/reflection.h +4 -78
  1977. data/third_party/upb/upb/reflection.hpp +3 -7
  1978. data/third_party/upb/upb/status.h +4 -34
  1979. data/third_party/upb/upb/string_view.h +36 -0
  1980. data/third_party/upb/upb/{text_encode.c → text/encode.c} +74 -70
  1981. data/third_party/upb/upb/text/encode.h +69 -0
  1982. data/third_party/upb/upb/text_encode.h +4 -32
  1983. data/third_party/upb/upb/upb.h +6 -151
  1984. data/third_party/upb/upb/upb.hpp +10 -18
  1985. data/third_party/upb/upb/wire/common.h +44 -0
  1986. data/third_party/upb/upb/wire/common_internal.h +50 -0
  1987. data/third_party/upb/upb/wire/decode.c +1382 -0
  1988. data/third_party/upb/upb/wire/decode.h +148 -0
  1989. data/third_party/upb/upb/{decode_fast.c → wire/decode_fast.c} +184 -225
  1990. data/third_party/upb/upb/{decode_fast.h → wire/decode_fast.h} +21 -7
  1991. data/third_party/upb/upb/{internal/decode.h → wire/decode_internal.h} +44 -92
  1992. data/third_party/upb/upb/{encode.c → wire/encode.c} +134 -105
  1993. data/third_party/upb/upb/wire/encode.h +92 -0
  1994. data/third_party/upb/upb/wire/eps_copy_input_stream.c +39 -0
  1995. data/third_party/upb/upb/wire/eps_copy_input_stream.h +425 -0
  1996. data/third_party/upb/upb/wire/reader.c +67 -0
  1997. data/third_party/upb/upb/wire/reader.h +227 -0
  1998. data/third_party/upb/upb/wire/swap_internal.h +63 -0
  1999. data/third_party/upb/upb/wire/types.h +41 -0
  2000. data/third_party/{upb/third_party/utf8_range → utf8_range}/range2-neon.c +1 -1
  2001. data/third_party/{upb/third_party/utf8_range → utf8_range}/utf8_range.h +12 -0
  2002. metadata +386 -152
  2003. data/src/core/ext/filters/client_channel/health/health_check_client.cc +0 -175
  2004. data/src/core/ext/filters/client_channel/health/health_check_client.h +0 -43
  2005. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_attributes.cc +0 -42
  2006. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_attributes.h +0 -64
  2007. data/src/core/ext/filters/client_channel/resolver/dns/dns_resolver_selection.cc +0 -30
  2008. data/src/core/ext/transport/chttp2/transport/context_list.cc +0 -71
  2009. data/src/core/ext/transport/chttp2/transport/context_list.h +0 -54
  2010. data/src/core/ext/transport/chttp2/transport/stream_map.cc +0 -177
  2011. data/src/core/ext/transport/chttp2/transport/stream_map.h +0 -68
  2012. data/src/core/lib/event_engine/thread_pool.cc +0 -253
  2013. data/src/core/lib/event_engine/thread_pool.h +0 -141
  2014. data/src/core/lib/gprpp/global_config.h +0 -93
  2015. data/src/core/lib/gprpp/global_config_env.cc +0 -140
  2016. data/src/core/lib/gprpp/global_config_env.h +0 -133
  2017. data/src/core/lib/gprpp/global_config_generic.h +0 -40
  2018. data/src/core/lib/promise/detail/basic_join.h +0 -197
  2019. data/src/core/lib/promise/detail/switch.h +0 -1455
  2020. data/src/core/lib/promise/intra_activity_waiter.h +0 -55
  2021. data/src/core/lib/promise/try_join.h +0 -82
  2022. data/src/core/lib/security/security_connector/ssl_utils_config.cc +0 -32
  2023. data/third_party/abseil-cpp/absl/synchronization/internal/waiter.cc +0 -403
  2024. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_utf8.c +0 -236
  2025. data/third_party/boringssl-with-bazel/src/crypto/asn1/charmap.h +0 -15
  2026. data/third_party/boringssl-with-bazel/src/crypto/asn1/time_support.c +0 -206
  2027. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha1-altivec.c +0 -361
  2028. data/third_party/boringssl-with-bazel/src/crypto/refcount_lock.c +0 -53
  2029. data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_cache.c +0 -287
  2030. data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_data.c +0 -132
  2031. data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_lib.c +0 -155
  2032. data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_map.c +0 -131
  2033. data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_node.c +0 -189
  2034. data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_tree.c +0 -843
  2035. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_pci.c +0 -289
  2036. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_pcia.c +0 -57
  2037. data/third_party/cares/cares/src/lib/ares_library_init.h +0 -43
  2038. data/third_party/re2/util/benchmark.h +0 -156
  2039. data/third_party/re2/util/flags.h +0 -26
  2040. data/third_party/re2/util/malloc_counter.h +0 -19
  2041. data/third_party/re2/util/pcre.cc +0 -1025
  2042. data/third_party/re2/util/pcre.h +0 -681
  2043. data/third_party/re2/util/test.h +0 -50
  2044. data/third_party/upb/upb/arena.c +0 -277
  2045. data/third_party/upb/upb/decode.c +0 -1221
  2046. data/third_party/upb/upb/def.c +0 -3269
  2047. data/third_party/upb/upb/internal/table.h +0 -385
  2048. data/third_party/upb/upb/mini_table.c +0 -1147
  2049. data/third_party/upb/upb/mini_table.h +0 -189
  2050. data/third_party/upb/upb/msg.c +0 -368
  2051. data/third_party/upb/upb/msg_internal.h +0 -837
  2052. data/third_party/upb/upb/reflection.c +0 -323
  2053. data/third_party/zlib/gzclose.c +0 -25
  2054. data/third_party/zlib/gzlib.c +0 -639
  2055. data/third_party/zlib/gzread.c +0 -650
  2056. data/third_party/zlib/gzwrite.c +0 -677
  2057. /data/src/core/lib/gpr/{log_android.cc → android/log.cc} +0 -0
  2058. /data/src/core/lib/gpr/{cpu_iphone.cc → iphone/cpu.cc} +0 -0
  2059. /data/src/core/lib/gpr/{cpu_linux.cc → linux/cpu.cc} +0 -0
  2060. /data/src/core/lib/gpr/{log_linux.cc → linux/log.cc} +0 -0
  2061. /data/src/core/lib/gpr/{tmpfile_msys.cc → msys/tmpfile.cc} +0 -0
  2062. /data/src/core/lib/gpr/{cpu_posix.cc → posix/cpu.cc} +0 -0
  2063. /data/src/core/lib/gpr/{log_posix.cc → posix/log.cc} +0 -0
  2064. /data/src/core/lib/gpr/{string_posix.cc → posix/string.cc} +0 -0
  2065. /data/src/core/lib/gpr/{sync_posix.cc → posix/sync.cc} +0 -0
  2066. /data/src/core/lib/gpr/{tmpfile_posix.cc → posix/tmpfile.cc} +0 -0
  2067. /data/src/core/lib/gpr/{cpu_windows.cc → windows/cpu.cc} +0 -0
  2068. /data/src/core/lib/gpr/{log_windows.cc → windows/log.cc} +0 -0
  2069. /data/src/core/lib/gpr/{string_windows.cc → windows/string.cc} +0 -0
  2070. /data/src/core/lib/gpr/{string_util_windows.cc → windows/string_util.cc} +0 -0
  2071. /data/src/core/lib/gpr/{sync_windows.cc → windows/sync.cc} +0 -0
  2072. /data/src/core/lib/gpr/{time_windows.cc → windows/time.cc} +0 -0
  2073. /data/src/core/lib/gpr/{tmpfile_windows.cc → windows/tmpfile.cc} +0 -0
  2074. /data/src/core/lib/gprpp/{env_linux.cc → linux/env.cc} +0 -0
  2075. /data/src/core/lib/gprpp/{env_posix.cc → posix/env.cc} +0 -0
  2076. /data/src/core/lib/gprpp/{stat_posix.cc → posix/stat.cc} +0 -0
  2077. /data/src/core/lib/gprpp/{env_windows.cc → windows/env.cc} +0 -0
  2078. /data/src/core/lib/gprpp/{stat_windows.cc → windows/stat.cc} +0 -0
  2079. /data/third_party/{upb/third_party/utf8_range → utf8_range}/naive.c +0 -0
  2080. /data/third_party/{upb/third_party/utf8_range → utf8_range}/range2-sse.c +0 -0
@@ -18,61 +18,26 @@
18
18
 
19
19
  #include "src/core/ext/filters/client_channel/retry_filter.h"
20
20
 
21
- #include <inttypes.h>
22
- #include <limits.h>
23
- #include <stddef.h>
24
-
25
- #include <memory>
26
- #include <new>
27
21
  #include <string>
28
- #include <utility>
29
22
 
30
- #include "absl/container/inlined_vector.h"
31
- #include "absl/status/status.h"
32
23
  #include "absl/status/statusor.h"
33
- #include "absl/strings/str_cat.h"
34
24
  #include "absl/strings/string_view.h"
35
25
  #include "absl/strings/strip.h"
36
26
  #include "absl/types/optional.h"
37
27
 
38
- #include <grpc/grpc.h>
39
- #include <grpc/slice.h>
40
- #include <grpc/status.h>
41
- #include <grpc/support/atm.h>
42
- #include <grpc/support/log.h>
28
+ #include <grpc/event_engine/event_engine.h>
43
29
 
44
30
  #include "src/core/ext/filters/client_channel/client_channel.h"
45
- #include "src/core/ext/filters/client_channel/config_selector.h"
31
+ #include "src/core/ext/filters/client_channel/retry_filter_legacy_call_data.h"
46
32
  #include "src/core/ext/filters/client_channel/retry_service_config.h"
47
33
  #include "src/core/ext/filters/client_channel/retry_throttle.h"
48
- #include "src/core/lib/backoff/backoff.h"
49
34
  #include "src/core/lib/channel/channel_args.h"
50
35
  #include "src/core/lib/channel/channel_stack.h"
51
- #include "src/core/lib/channel/context.h"
52
- #include "src/core/lib/channel/status_util.h"
53
36
  #include "src/core/lib/debug/trace.h"
54
- #include "src/core/lib/gpr/useful.h"
55
- #include "src/core/lib/gprpp/construct_destruct.h"
56
- #include "src/core/lib/gprpp/debug_location.h"
57
- #include "src/core/lib/gprpp/orphanable.h"
58
- #include "src/core/lib/gprpp/ref_counted.h"
59
37
  #include "src/core/lib/gprpp/ref_counted_ptr.h"
60
- #include "src/core/lib/gprpp/status_helper.h"
61
- #include "src/core/lib/gprpp/time.h"
62
- #include "src/core/lib/iomgr/call_combiner.h"
63
- #include "src/core/lib/iomgr/closure.h"
64
38
  #include "src/core/lib/iomgr/error.h"
65
- #include "src/core/lib/iomgr/exec_ctx.h"
66
- #include "src/core/lib/iomgr/polling_entity.h"
67
- #include "src/core/lib/iomgr/timer.h"
68
- #include "src/core/lib/resource_quota/arena.h"
69
39
  #include "src/core/lib/service_config/service_config.h"
70
40
  #include "src/core/lib/service_config/service_config_call_data.h"
71
- #include "src/core/lib/slice/slice.h"
72
- #include "src/core/lib/slice/slice_buffer.h"
73
- #include "src/core/lib/transport/error_utils.h"
74
- #include "src/core/lib/transport/metadata_batch.h"
75
- #include "src/core/lib/transport/transport.h"
76
41
  #include "src/core/lib/uri/uri_parser.h"
77
42
 
78
43
  //
@@ -120,2007 +85,52 @@
120
85
  // TODO(roth): In subsequent PRs:
121
86
  // - implement hedging
122
87
 
123
- // By default, we buffer 256 KiB per RPC for retries.
124
- // TODO(roth): Do we have any data to suggest a better value?
125
- #define DEFAULT_PER_RPC_RETRY_BUFFER_SIZE (256 << 10)
88
+ using grpc_core::internal::RetryGlobalConfig;
89
+ using grpc_core::internal::RetryMethodConfig;
90
+ using grpc_core::internal::RetryServiceConfigParser;
91
+ using grpc_event_engine::experimental::EventEngine;
126
92
 
127
- // This value was picked arbitrarily. It can be changed if there is
128
- // any even moderately compelling reason to do so.
129
- #define RETRY_BACKOFF_JITTER 0.2
93
+ grpc_core::TraceFlag grpc_retry_trace(false, "retry");
130
94
 
131
95
  namespace grpc_core {
132
96
 
133
- namespace {
134
-
135
- using internal::RetryGlobalConfig;
136
- using internal::RetryMethodConfig;
137
- using internal::RetryServiceConfigParser;
138
- using internal::ServerRetryThrottleData;
139
-
140
- TraceFlag grpc_retry_trace(false, "retry");
141
-
142
97
  //
143
98
  // RetryFilter
144
99
  //
145
100
 
146
- class RetryFilter {
147
- public:
148
- class CallData;
149
-
150
- static grpc_error_handle Init(grpc_channel_element* elem,
151
- grpc_channel_element_args* args) {
152
- GPR_ASSERT(args->is_last);
153
- GPR_ASSERT(elem->filter == &kRetryFilterVtable);
154
- grpc_error_handle error;
155
- new (elem->channel_data) RetryFilter(args->channel_args, &error);
156
- return error;
157
- }
158
-
159
- static void Destroy(grpc_channel_element* elem) {
160
- auto* chand = static_cast<RetryFilter*>(elem->channel_data);
161
- chand->~RetryFilter();
162
- }
163
-
164
- // Will never be called.
165
- static void StartTransportOp(grpc_channel_element* /*elem*/,
166
- grpc_transport_op* /*op*/) {}
167
- static void GetChannelInfo(grpc_channel_element* /*elem*/,
168
- const grpc_channel_info* /*info*/) {}
169
-
170
- private:
171
- static size_t GetMaxPerRpcRetryBufferSize(const ChannelArgs& args) {
172
- return Clamp(args.GetInt(GRPC_ARG_PER_RPC_RETRY_BUFFER_SIZE)
173
- .value_or(DEFAULT_PER_RPC_RETRY_BUFFER_SIZE),
174
- 0, INT_MAX);
175
- }
176
-
177
- RetryFilter(const ChannelArgs& args, grpc_error_handle* error)
178
- : client_channel_(args.GetObject<ClientChannel>()),
179
- per_rpc_retry_buffer_size_(GetMaxPerRpcRetryBufferSize(args)),
180
- service_config_parser_index_(
181
- internal::RetryServiceConfigParser::ParserIndex()) {
182
- // Get retry throttling parameters from service config.
183
- auto* service_config = args.GetObject<ServiceConfig>();
184
- if (service_config == nullptr) return;
185
- const auto* config = static_cast<const RetryGlobalConfig*>(
186
- service_config->GetGlobalParsedConfig(
187
- RetryServiceConfigParser::ParserIndex()));
188
- if (config == nullptr) return;
189
- // Get server name from target URI.
190
- auto server_uri = args.GetString(GRPC_ARG_SERVER_URI);
191
- if (!server_uri.has_value()) {
192
- *error = GRPC_ERROR_CREATE(
193
- "server URI channel arg missing or wrong type in client channel "
194
- "filter");
195
- return;
196
- }
197
- absl::StatusOr<URI> uri = URI::Parse(*server_uri);
198
- if (!uri.ok() || uri->path().empty()) {
199
- *error =
200
- GRPC_ERROR_CREATE("could not extract server name from target URI");
201
- return;
202
- }
203
- std::string server_name(absl::StripPrefix(uri->path(), "/"));
204
- // Get throttling config for server_name.
205
- retry_throttle_data_ =
206
- internal::ServerRetryThrottleMap::Get()->GetDataForServer(
207
- server_name, config->max_milli_tokens(),
208
- config->milli_token_ratio());
209
- }
210
-
211
- const RetryMethodConfig* GetRetryPolicy(
212
- const grpc_call_context_element* context);
213
-
214
- ClientChannel* client_channel_;
215
- size_t per_rpc_retry_buffer_size_;
216
- RefCountedPtr<ServerRetryThrottleData> retry_throttle_data_;
217
- const size_t service_config_parser_index_;
218
- };
219
-
220
- //
221
- // RetryFilter::CallData
222
- //
223
-
224
- class RetryFilter::CallData {
225
- public:
226
- static grpc_error_handle Init(grpc_call_element* elem,
227
- const grpc_call_element_args* args);
228
- static void Destroy(grpc_call_element* elem,
229
- const grpc_call_final_info* /*final_info*/,
230
- grpc_closure* then_schedule_closure);
231
- static void StartTransportStreamOpBatch(
232
- grpc_call_element* elem, grpc_transport_stream_op_batch* batch);
233
- static void SetPollent(grpc_call_element* elem, grpc_polling_entity* pollent);
234
-
235
- private:
236
- class CallStackDestructionBarrier;
237
-
238
- // Pending batches stored in call data.
239
- struct PendingBatch {
240
- // The pending batch. If nullptr, this slot is empty.
241
- grpc_transport_stream_op_batch* batch = nullptr;
242
- // Indicates whether payload for send ops has been cached in CallData.
243
- bool send_ops_cached = false;
244
- };
245
-
246
- // State associated with each call attempt.
247
- class CallAttempt : public RefCounted<CallAttempt> {
248
- public:
249
- CallAttempt(CallData* calld, bool is_transparent_retry);
250
- ~CallAttempt() override;
251
-
252
- bool lb_call_committed() const { return lb_call_committed_; }
253
-
254
- // Constructs and starts whatever batches are needed on this call
255
- // attempt.
256
- void StartRetriableBatches();
257
-
258
- // Frees cached send ops that have already been completed after
259
- // committing the call.
260
- void FreeCachedSendOpDataAfterCommit();
261
-
262
- // Cancels the call attempt.
263
- void CancelFromSurface(grpc_transport_stream_op_batch* cancel_batch);
264
-
265
- private:
266
- // State used for starting a retryable batch on the call attempt's LB call.
267
- // This provides its own grpc_transport_stream_op_batch and other data
268
- // structures needed to populate the ops in the batch.
269
- // We allocate one struct on the arena for each attempt at starting a
270
- // batch on a given LB call.
271
- class BatchData
272
- : public RefCounted<BatchData, PolymorphicRefCount, kUnrefCallDtor> {
273
- public:
274
- BatchData(RefCountedPtr<CallAttempt> call_attempt, int refcount,
275
- bool set_on_complete);
276
- ~BatchData() override;
277
-
278
- grpc_transport_stream_op_batch* batch() { return &batch_; }
279
-
280
- // Adds retriable send_initial_metadata op.
281
- void AddRetriableSendInitialMetadataOp();
282
- // Adds retriable send_message op.
283
- void AddRetriableSendMessageOp();
284
- // Adds retriable send_trailing_metadata op.
285
- void AddRetriableSendTrailingMetadataOp();
286
- // Adds retriable recv_initial_metadata op.
287
- void AddRetriableRecvInitialMetadataOp();
288
- // Adds retriable recv_message op.
289
- void AddRetriableRecvMessageOp();
290
- // Adds retriable recv_trailing_metadata op.
291
- void AddRetriableRecvTrailingMetadataOp();
292
- // Adds cancel_stream op.
293
- void AddCancelStreamOp(grpc_error_handle error);
294
-
295
- private:
296
- // Frees cached send ops that were completed by the completed batch in
297
- // batch_data. Used when batches are completed after the call is
298
- // committed.
299
- void FreeCachedSendOpDataForCompletedBatch();
300
-
301
- // If there is a pending recv_initial_metadata op, adds a closure
302
- // to closures for recv_initial_metadata_ready.
303
- void MaybeAddClosureForRecvInitialMetadataCallback(
304
- grpc_error_handle error, CallCombinerClosureList* closures);
305
- // Intercepts recv_initial_metadata_ready callback for retries.
306
- // Commits the call and returns the initial metadata up the stack.
307
- static void RecvInitialMetadataReady(void* arg, grpc_error_handle error);
308
-
309
- // If there is a pending recv_message op, adds a closure to closures
310
- // for recv_message_ready.
311
- void MaybeAddClosureForRecvMessageCallback(
312
- grpc_error_handle error, CallCombinerClosureList* closures);
313
- // Intercepts recv_message_ready callback for retries.
314
- // Commits the call and returns the message up the stack.
315
- static void RecvMessageReady(void* arg, grpc_error_handle error);
316
-
317
- // If there is a pending recv_trailing_metadata op, adds a closure to
318
- // closures for recv_trailing_metadata_ready.
319
- void MaybeAddClosureForRecvTrailingMetadataReady(
320
- grpc_error_handle error, CallCombinerClosureList* closures);
321
- // Adds any necessary closures for deferred batch completion
322
- // callbacks to closures.
323
- void AddClosuresForDeferredCompletionCallbacks(
324
- CallCombinerClosureList* closures);
325
- // For any pending batch containing an op that has not yet been started,
326
- // adds the pending batch's completion closures to closures.
327
- void AddClosuresToFailUnstartedPendingBatches(
328
- grpc_error_handle error, CallCombinerClosureList* closures);
329
- // Runs necessary closures upon completion of a call attempt.
330
- void RunClosuresForCompletedCall(grpc_error_handle error);
331
- // Intercepts recv_trailing_metadata_ready callback for retries.
332
- // Commits the call and returns the trailing metadata up the stack.
333
- static void RecvTrailingMetadataReady(void* arg, grpc_error_handle error);
334
-
335
- // Adds the on_complete closure for the pending batch completed in
336
- // batch_data to closures.
337
- void AddClosuresForCompletedPendingBatch(
338
- grpc_error_handle error, CallCombinerClosureList* closures);
339
-
340
- // If there are any cached ops to replay or pending ops to start on the
341
- // LB call, adds them to closures.
342
- void AddClosuresForReplayOrPendingSendOps(
343
- CallCombinerClosureList* closures);
344
-
345
- // Callback used to intercept on_complete from LB calls.
346
- static void OnComplete(void* arg, grpc_error_handle error);
347
-
348
- // Callback used to handle on_complete for internally generated
349
- // cancel_stream op.
350
- static void OnCompleteForCancelOp(void* arg, grpc_error_handle error);
351
-
352
- // This DOES hold a ref, but it cannot be a RefCountedPtr<>, because
353
- // our dtor unrefs the owning call, which may delete the arena in
354
- // which we are allocated, which means that running the dtor of any
355
- // data members after that would cause a crash.
356
- CallAttempt* call_attempt_;
357
- // The batch to use in the LB call.
358
- // Its payload field points to CallAttempt::batch_payload_.
359
- grpc_transport_stream_op_batch batch_;
360
- // For intercepting on_complete.
361
- grpc_closure on_complete_;
362
- };
363
-
364
- class AttemptDispatchController
365
- : public ConfigSelector::CallDispatchController {
366
- public:
367
- explicit AttemptDispatchController(CallAttempt* call_attempt)
368
- : call_attempt_(call_attempt) {}
369
-
370
- // Will never be called.
371
- bool ShouldRetry() override { return false; }
372
-
373
- void Commit() override {
374
- call_attempt_->lb_call_committed_ = true;
375
- auto* calld = call_attempt_->calld_;
376
- if (calld->retry_committed_) {
377
- auto* service_config_call_data =
378
- static_cast<ClientChannelServiceConfigCallData*>(
379
- calld->call_context_[GRPC_CONTEXT_SERVICE_CONFIG_CALL_DATA]
380
- .value);
381
- service_config_call_data->call_dispatch_controller()->Commit();
382
- }
383
- }
384
-
385
- private:
386
- CallAttempt* call_attempt_;
387
- };
388
-
389
- // Creates a BatchData object on the call's arena with the
390
- // specified refcount. If set_on_complete is true, the batch's
391
- // on_complete callback will be set to point to on_complete();
392
- // otherwise, the batch's on_complete callback will be null.
393
- BatchData* CreateBatch(int refcount, bool set_on_complete) {
394
- return calld_->arena_->New<BatchData>(Ref(DEBUG_LOCATION, "CreateBatch"),
395
- refcount, set_on_complete);
396
- }
397
-
398
- // If there are any cached send ops that need to be replayed on this
399
- // call attempt, creates and returns a new batch to replay those ops.
400
- // Otherwise, returns nullptr.
401
- BatchData* MaybeCreateBatchForReplay();
402
-
403
- // Adds a closure to closures that will execute batch in the call combiner.
404
- void AddClosureForBatch(grpc_transport_stream_op_batch* batch,
405
- const char* reason,
406
- CallCombinerClosureList* closures);
407
-
408
- // Helper function used to start a recv_trailing_metadata batch. This
409
- // is used in the case where a recv_initial_metadata or recv_message
410
- // op fails in a way that we know the call is over but when the application
411
- // has not yet started its own recv_trailing_metadata op.
412
- void AddBatchForInternalRecvTrailingMetadata(
413
- CallCombinerClosureList* closures);
414
-
415
- // Adds a batch to closures to cancel this call attempt, if
416
- // cancellation has not already been sent on the LB call.
417
- void MaybeAddBatchForCancelOp(grpc_error_handle error,
418
- CallCombinerClosureList* closures);
419
-
420
- // Adds batches for pending batches to closures.
421
- void AddBatchesForPendingBatches(CallCombinerClosureList* closures);
422
-
423
- // Adds whatever batches are needed on this attempt to closures.
424
- void AddRetriableBatches(CallCombinerClosureList* closures);
425
-
426
- // Returns true if any send op in the batch was not yet started on this
427
- // attempt.
428
- bool PendingBatchContainsUnstartedSendOps(PendingBatch* pending);
429
-
430
- // Returns true if there are cached send ops to replay.
431
- bool HaveSendOpsToReplay();
432
-
433
- // If our retry state is no longer needed, switch to fast path by moving
434
- // our LB call into calld_->committed_call_ and having calld_ drop
435
- // its ref to us.
436
- void MaybeSwitchToFastPath();
437
-
438
- // Returns true if the call should be retried.
439
- bool ShouldRetry(absl::optional<grpc_status_code> status,
440
- absl::optional<Duration> server_pushback_ms);
441
-
442
- // Abandons the call attempt. Unrefs any deferred batches.
443
- void Abandon();
444
-
445
- static void OnPerAttemptRecvTimer(void* arg, grpc_error_handle error);
446
- static void OnPerAttemptRecvTimerLocked(void* arg, grpc_error_handle error);
447
- void MaybeCancelPerAttemptRecvTimer();
448
-
449
- CallData* calld_;
450
- AttemptDispatchController attempt_dispatch_controller_;
451
- OrphanablePtr<ClientChannel::LoadBalancedCall> lb_call_;
452
- bool lb_call_committed_ = false;
453
-
454
- grpc_timer per_attempt_recv_timer_;
455
- grpc_closure on_per_attempt_recv_timer_;
456
- bool per_attempt_recv_timer_pending_ = false;
457
-
458
- // BatchData.batch.payload points to this.
459
- grpc_transport_stream_op_batch_payload batch_payload_;
460
- // For send_initial_metadata.
461
- grpc_metadata_batch send_initial_metadata_{calld_->arena_};
462
- // For send_trailing_metadata.
463
- grpc_metadata_batch send_trailing_metadata_{calld_->arena_};
464
- // For intercepting recv_initial_metadata.
465
- grpc_metadata_batch recv_initial_metadata_{calld_->arena_};
466
- grpc_closure recv_initial_metadata_ready_;
467
- bool trailing_metadata_available_ = false;
468
- // For intercepting recv_message.
469
- grpc_closure recv_message_ready_;
470
- absl::optional<SliceBuffer> recv_message_;
471
- uint32_t recv_message_flags_;
472
- // For intercepting recv_trailing_metadata.
473
- grpc_metadata_batch recv_trailing_metadata_{calld_->arena_};
474
- grpc_transport_stream_stats collect_stats_;
475
- grpc_closure recv_trailing_metadata_ready_;
476
- // These fields indicate which ops have been started and completed on
477
- // this call attempt.
478
- size_t started_send_message_count_ = 0;
479
- size_t completed_send_message_count_ = 0;
480
- size_t started_recv_message_count_ = 0;
481
- size_t completed_recv_message_count_ = 0;
482
- bool started_send_initial_metadata_ : 1;
483
- bool completed_send_initial_metadata_ : 1;
484
- bool started_send_trailing_metadata_ : 1;
485
- bool completed_send_trailing_metadata_ : 1;
486
- bool started_recv_initial_metadata_ : 1;
487
- bool completed_recv_initial_metadata_ : 1;
488
- bool started_recv_trailing_metadata_ : 1;
489
- bool completed_recv_trailing_metadata_ : 1;
490
- bool sent_cancel_stream_ : 1;
491
- // State for callback processing.
492
- RefCountedPtr<BatchData> recv_initial_metadata_ready_deferred_batch_;
493
- grpc_error_handle recv_initial_metadata_error_;
494
- RefCountedPtr<BatchData> recv_message_ready_deferred_batch_;
495
- grpc_error_handle recv_message_error_;
496
- struct OnCompleteDeferredBatch {
497
- OnCompleteDeferredBatch(RefCountedPtr<BatchData> batch,
498
- grpc_error_handle error)
499
- : batch(std::move(batch)), error(error) {}
500
- RefCountedPtr<BatchData> batch;
501
- grpc_error_handle error;
502
- };
503
- // There cannot be more than 3 pending send op batches at a time.
504
- absl::InlinedVector<OnCompleteDeferredBatch, 3>
505
- on_complete_deferred_batches_;
506
- RefCountedPtr<BatchData> recv_trailing_metadata_internal_batch_;
507
- grpc_error_handle recv_trailing_metadata_error_;
508
- bool seen_recv_trailing_metadata_from_surface_ : 1;
509
- // NOTE: Do not move this next to the metadata bitfields above. That would
510
- // save space but will also result in a data race because compiler
511
- // will generate a 2 byte store which overwrites the meta-data
512
- // fields upon setting this field.
513
- bool abandoned_ : 1;
514
- };
515
-
516
- CallData(RetryFilter* chand, const grpc_call_element_args& args);
517
- ~CallData();
518
-
519
- void StartTransportStreamOpBatch(grpc_transport_stream_op_batch* batch);
520
-
521
- // Returns the index into pending_batches_ to be used for batch.
522
- static size_t GetBatchIndex(grpc_transport_stream_op_batch* batch);
523
- PendingBatch* PendingBatchesAdd(grpc_transport_stream_op_batch* batch);
524
- void PendingBatchClear(PendingBatch* pending);
525
- void MaybeClearPendingBatch(PendingBatch* pending);
526
- static void FailPendingBatchInCallCombiner(void* arg,
527
- grpc_error_handle error);
528
- // Fails all pending batches. Does NOT yield call combiner.
529
- void PendingBatchesFail(grpc_error_handle error);
530
- // Returns a pointer to the first pending batch for which predicate(batch)
531
- // returns true, or null if not found.
532
- template <typename Predicate>
533
- PendingBatch* PendingBatchFind(const char* log_message, Predicate predicate);
534
-
535
- // Caches data for send ops so that it can be retried later, if not
536
- // already cached.
537
- void MaybeCacheSendOpsForBatch(PendingBatch* pending);
538
- void FreeCachedSendInitialMetadata();
539
- // Frees cached send_message at index idx.
540
- void FreeCachedSendMessage(size_t idx);
541
- void FreeCachedSendTrailingMetadata();
542
- void FreeAllCachedSendOpData();
543
-
544
- // Commits the call so that no further retry attempts will be performed.
545
- void RetryCommit(CallAttempt* call_attempt);
546
-
547
- // Starts a timer to retry after appropriate back-off.
548
- // If server_pushback is nullopt, retry_backoff_ is used.
549
- void StartRetryTimer(absl::optional<Duration> server_pushback);
550
-
551
- static void OnRetryTimer(void* arg, grpc_error_handle error);
552
- static void OnRetryTimerLocked(void* arg, grpc_error_handle error);
553
-
554
- // Adds a closure to closures to start a transparent retry.
555
- void AddClosureToStartTransparentRetry(CallCombinerClosureList* closures);
556
- static void StartTransparentRetry(void* arg, grpc_error_handle error);
557
-
558
- OrphanablePtr<ClientChannel::LoadBalancedCall> CreateLoadBalancedCall(
559
- ConfigSelector::CallDispatchController* call_dispatch_controller,
560
- bool is_transparent_retry);
561
-
562
- void CreateCallAttempt(bool is_transparent_retry);
563
-
564
- RetryFilter* chand_;
565
- grpc_polling_entity* pollent_;
566
- RefCountedPtr<ServerRetryThrottleData> retry_throttle_data_;
567
- const RetryMethodConfig* retry_policy_ = nullptr;
568
- BackOff retry_backoff_;
569
-
570
- grpc_slice path_; // Request path.
571
- Timestamp deadline_;
572
- Arena* arena_;
573
- grpc_call_stack* owning_call_;
574
- CallCombiner* call_combiner_;
575
- grpc_call_context_element* call_context_;
576
-
577
- grpc_error_handle cancelled_from_surface_;
578
-
579
- RefCountedPtr<CallStackDestructionBarrier> call_stack_destruction_barrier_;
580
-
581
- // TODO(roth): As part of implementing hedging, we will need to maintain a
582
- // list of all pending attempts, so that we can cancel them all if the call
583
- // gets cancelled.
584
- RefCountedPtr<CallAttempt> call_attempt_;
585
-
586
- // LB call used when we've committed to a call attempt and the retry
587
- // state for that attempt is no longer needed. This provides a fast
588
- // path for long-running streaming calls that minimizes overhead.
589
- OrphanablePtr<ClientChannel::LoadBalancedCall> committed_call_;
590
-
591
- // When are are not yet fully committed to a particular call (i.e.,
592
- // either we might still retry or we have committed to the call but
593
- // there are still some cached ops to be replayed on the call),
594
- // batches received from above will be added to this list, and they
595
- // will not be removed until we have invoked their completion callbacks.
596
- size_t bytes_buffered_for_retry_ = 0;
597
- PendingBatch pending_batches_[MAX_PENDING_BATCHES];
598
- bool pending_send_initial_metadata_ : 1;
599
- bool pending_send_message_ : 1;
600
- bool pending_send_trailing_metadata_ : 1;
601
-
602
- // Retry state.
603
- bool retry_committed_ : 1;
604
- bool retry_timer_pending_ : 1;
605
- bool retry_codepath_started_ : 1;
606
- bool sent_transparent_retry_not_seen_by_server_ : 1;
607
- int num_attempts_completed_ = 0;
608
- grpc_timer retry_timer_;
609
- grpc_closure retry_closure_;
610
-
611
- // Cached data for retrying send ops.
612
- // send_initial_metadata
613
- bool seen_send_initial_metadata_ = false;
614
- grpc_metadata_batch send_initial_metadata_{arena_};
615
- // TODO(roth): As part of implementing hedging, we'll probably need to
616
- // have the LB call set a value in CallAttempt and then propagate it
617
- // from CallAttempt to the parent call when we commit. Otherwise, we
618
- // may leave this with a value for a peer other than the one we
619
- // actually commit to. Alternatively, maybe see if there's a way to
620
- // change the surface API such that the peer isn't available until
621
- // after initial metadata is received? (Could even change the
622
- // transport API to return this with the recv_initial_metadata op.)
623
- gpr_atm* peer_string_;
624
- // send_message
625
- // When we get a send_message op, we replace the original byte stream
626
- // with a CachingByteStream that caches the slices to a local buffer for
627
- // use in retries.
628
- // Note: We inline the cache for the first 3 send_message ops and use
629
- // dynamic allocation after that. This number was essentially picked
630
- // at random; it could be changed in the future to tune performance.
631
- struct CachedSendMessage {
632
- SliceBuffer* slices;
633
- uint32_t flags;
634
- };
635
- absl::InlinedVector<CachedSendMessage, 3> send_messages_;
636
- // send_trailing_metadata
637
- bool seen_send_trailing_metadata_ = false;
638
- grpc_metadata_batch send_trailing_metadata_{arena_};
639
- };
640
-
641
- //
642
- // RetryFilter::CallData::CallStackDestructionBarrier
643
- //
644
-
645
- // A class to track the existence of LoadBalancedCall call stacks that
646
- // we've created. We wait until all such call stacks have been
647
- // destroyed before we return the on_call_stack_destruction closure up
648
- // to the surface.
649
- //
650
- // The parent RetryFilter::CallData object holds a ref to this object.
651
- // When it is destroyed, it will store the on_call_stack_destruction
652
- // closure from the surface in this object and then release its ref.
653
- // We also take a ref to this object for each LB call we create, and
654
- // those refs are not released until the LB call stack is destroyed.
655
- // When this object is destroyed, it will invoke the
656
- // on_call_stack_destruction closure from the surface.
657
- class RetryFilter::CallData::CallStackDestructionBarrier
658
- : public RefCounted<CallStackDestructionBarrier, PolymorphicRefCount,
659
- kUnrefCallDtor> {
660
- public:
661
- CallStackDestructionBarrier() {}
662
-
663
- ~CallStackDestructionBarrier() override {
664
- // TODO(yashkt) : This can potentially be a Closure::Run
665
- ExecCtx::Run(DEBUG_LOCATION, on_call_stack_destruction_, absl::OkStatus());
666
- }
667
-
668
- // Set the closure from the surface. This closure will be invoked
669
- // when this object is destroyed.
670
- void set_on_call_stack_destruction(grpc_closure* on_call_stack_destruction) {
671
- on_call_stack_destruction_ = on_call_stack_destruction;
672
- }
673
-
674
- // Invoked to get an on_call_stack_destruction closure for a new LB call.
675
- grpc_closure* MakeLbCallDestructionClosure(CallData* calld) {
676
- Ref().release(); // Ref held by callback.
677
- grpc_closure* on_lb_call_destruction_complete =
678
- calld->arena_->New<grpc_closure>();
679
- GRPC_CLOSURE_INIT(on_lb_call_destruction_complete,
680
- OnLbCallDestructionComplete, this, nullptr);
681
- return on_lb_call_destruction_complete;
682
- }
683
-
684
- private:
685
- static void OnLbCallDestructionComplete(void* arg,
686
- grpc_error_handle /*error*/) {
687
- auto* self = static_cast<CallStackDestructionBarrier*>(arg);
688
- self->Unref();
689
- }
690
-
691
- grpc_closure* on_call_stack_destruction_ = nullptr;
692
- };
693
-
694
- //
695
- // RetryFilter::CallData::CallAttempt
696
- //
697
-
698
- RetryFilter::CallData::CallAttempt::CallAttempt(CallData* calld,
699
- bool is_transparent_retry)
700
- : RefCounted(GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace) ? "CallAttempt"
701
- : nullptr),
702
- calld_(calld),
703
- attempt_dispatch_controller_(this),
704
- batch_payload_(calld->call_context_),
705
- started_send_initial_metadata_(false),
706
- completed_send_initial_metadata_(false),
707
- started_send_trailing_metadata_(false),
708
- completed_send_trailing_metadata_(false),
709
- started_recv_initial_metadata_(false),
710
- completed_recv_initial_metadata_(false),
711
- started_recv_trailing_metadata_(false),
712
- completed_recv_trailing_metadata_(false),
713
- sent_cancel_stream_(false),
714
- seen_recv_trailing_metadata_from_surface_(false),
715
- abandoned_(false) {
716
- lb_call_ = calld->CreateLoadBalancedCall(&attempt_dispatch_controller_,
717
- is_transparent_retry);
718
- if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
719
- gpr_log(GPR_INFO,
720
- "chand=%p calld=%p attempt=%p: created attempt, lb_call=%p",
721
- calld->chand_, calld, this, lb_call_.get());
722
- }
723
- // If per_attempt_recv_timeout is set, start a timer.
724
- if (calld->retry_policy_ != nullptr &&
725
- calld->retry_policy_->per_attempt_recv_timeout().has_value()) {
726
- Timestamp per_attempt_recv_deadline =
727
- Timestamp::Now() + *calld->retry_policy_->per_attempt_recv_timeout();
728
- if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
729
- gpr_log(GPR_INFO,
730
- "chand=%p calld=%p attempt=%p: per-attempt timeout in %" PRId64
731
- " ms",
732
- calld->chand_, calld, this,
733
- calld->retry_policy_->per_attempt_recv_timeout()->millis());
734
- }
735
- // Schedule retry after computed delay.
736
- GRPC_CLOSURE_INIT(&on_per_attempt_recv_timer_, OnPerAttemptRecvTimer, this,
737
- nullptr);
738
- GRPC_CALL_STACK_REF(calld->owning_call_, "OnPerAttemptRecvTimer");
739
- Ref(DEBUG_LOCATION, "OnPerAttemptRecvTimer").release();
740
- per_attempt_recv_timer_pending_ = true;
741
- grpc_timer_init(&per_attempt_recv_timer_, per_attempt_recv_deadline,
742
- &on_per_attempt_recv_timer_);
743
- }
744
- }
745
-
746
- RetryFilter::CallData::CallAttempt::~CallAttempt() {
747
- if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
748
- gpr_log(GPR_INFO, "chand=%p calld=%p attempt=%p: destroying call attempt",
749
- calld_->chand_, calld_, this);
750
- }
751
- }
752
-
753
- void RetryFilter::CallData::CallAttempt::FreeCachedSendOpDataAfterCommit() {
754
- // TODO(roth): When we implement hedging, this logic will need to get
755
- // a bit more complex, because there may be other (now abandoned) call
756
- // attempts still using this data. We may need to do some sort of
757
- // ref-counting instead.
758
- if (completed_send_initial_metadata_) {
759
- calld_->FreeCachedSendInitialMetadata();
760
- }
761
- for (size_t i = 0; i < completed_send_message_count_; ++i) {
762
- calld_->FreeCachedSendMessage(i);
763
- }
764
- if (completed_send_trailing_metadata_) {
765
- calld_->FreeCachedSendTrailingMetadata();
766
- }
767
- }
768
-
769
- bool RetryFilter::CallData::CallAttempt::PendingBatchContainsUnstartedSendOps(
770
- PendingBatch* pending) {
771
- if (pending->batch->on_complete == nullptr) return false;
772
- if (pending->batch->send_initial_metadata &&
773
- !started_send_initial_metadata_) {
774
- return true;
775
- }
776
- if (pending->batch->send_message &&
777
- started_send_message_count_ < calld_->send_messages_.size()) {
778
- return true;
779
- }
780
- if (pending->batch->send_trailing_metadata &&
781
- !started_send_trailing_metadata_) {
782
- return true;
783
- }
784
- return false;
785
- }
786
-
787
- bool RetryFilter::CallData::CallAttempt::HaveSendOpsToReplay() {
788
- // We don't check send_initial_metadata here, because that op will always
789
- // be started as soon as it is received from the surface, so it will
790
- // never need to be started at this point.
791
- return started_send_message_count_ < calld_->send_messages_.size() ||
792
- (calld_->seen_send_trailing_metadata_ &&
793
- !started_send_trailing_metadata_);
794
- }
795
-
796
- void RetryFilter::CallData::CallAttempt::MaybeSwitchToFastPath() {
797
- // If we're not yet committed, we can't switch yet.
798
- // TODO(roth): As part of implementing hedging, this logic needs to
799
- // check that *this* call attempt is the one that we've committed to.
800
- // Might need to replace abandoned_ with an enum indicating whether we're
801
- // in flight, abandoned, or the winning call attempt.
802
- if (!calld_->retry_committed_) return;
803
- // If we've already switched to fast path, there's nothing to do here.
804
- if (calld_->committed_call_ != nullptr) return;
805
- // If the perAttemptRecvTimeout timer is pending, we can't switch yet.
806
- if (per_attempt_recv_timer_pending_) return;
807
- // If there are still send ops to replay, we can't switch yet.
808
- if (HaveSendOpsToReplay()) return;
809
- // If we started an internal batch for recv_trailing_metadata but have not
810
- // yet seen that op from the surface, we can't switch yet.
811
- if (recv_trailing_metadata_internal_batch_ != nullptr) return;
812
- // Switch to fast path.
813
- if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
814
- gpr_log(GPR_INFO,
815
- "chand=%p calld=%p attempt=%p: retry state no longer needed; "
816
- "moving LB call to parent and unreffing the call attempt",
817
- calld_->chand_, calld_, this);
818
- }
819
- calld_->committed_call_ = std::move(lb_call_);
820
- calld_->call_attempt_.reset(DEBUG_LOCATION, "MaybeSwitchToFastPath");
821
- }
822
-
823
- // If there are any cached send ops that need to be replayed on the
824
- // current call attempt, creates and returns a new batch to replay those ops.
825
- // Otherwise, returns nullptr.
826
- RetryFilter::CallData::CallAttempt::BatchData*
827
- RetryFilter::CallData::CallAttempt::MaybeCreateBatchForReplay() {
828
- BatchData* replay_batch_data = nullptr;
829
- // send_initial_metadata.
830
- if (calld_->seen_send_initial_metadata_ && !started_send_initial_metadata_ &&
831
- !calld_->pending_send_initial_metadata_) {
832
- if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
833
- gpr_log(GPR_INFO,
834
- "chand=%p calld=%p attempt=%p: replaying previously completed "
835
- "send_initial_metadata op",
836
- calld_->chand_, calld_, this);
837
- }
838
- replay_batch_data = CreateBatch(1, true /* set_on_complete */);
839
- replay_batch_data->AddRetriableSendInitialMetadataOp();
840
- }
841
- // send_message.
842
- // Note that we can only have one send_message op in flight at a time.
843
- if (started_send_message_count_ < calld_->send_messages_.size() &&
844
- started_send_message_count_ == completed_send_message_count_ &&
845
- !calld_->pending_send_message_) {
846
- if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
847
- gpr_log(GPR_INFO,
848
- "chand=%p calld=%p attempt=%p: replaying previously completed "
849
- "send_message op",
850
- calld_->chand_, calld_, this);
851
- }
852
- if (replay_batch_data == nullptr) {
853
- replay_batch_data = CreateBatch(1, true /* set_on_complete */);
854
- }
855
- replay_batch_data->AddRetriableSendMessageOp();
856
- }
857
- // send_trailing_metadata.
858
- // Note that we only add this op if we have no more send_message ops
859
- // to start, since we can't send down any more send_message ops after
860
- // send_trailing_metadata.
861
- if (calld_->seen_send_trailing_metadata_ &&
862
- started_send_message_count_ == calld_->send_messages_.size() &&
863
- !started_send_trailing_metadata_ &&
864
- !calld_->pending_send_trailing_metadata_) {
865
- if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
866
- gpr_log(GPR_INFO,
867
- "chand=%p calld=%p attempt=%p: replaying previously completed "
868
- "send_trailing_metadata op",
869
- calld_->chand_, calld_, this);
870
- }
871
- if (replay_batch_data == nullptr) {
872
- replay_batch_data = CreateBatch(1, true /* set_on_complete */);
873
- }
874
- replay_batch_data->AddRetriableSendTrailingMetadataOp();
875
- }
876
- return replay_batch_data;
877
- }
878
-
879
- namespace {
880
-
881
- void StartBatchInCallCombiner(void* arg, grpc_error_handle /*ignored*/) {
882
- grpc_transport_stream_op_batch* batch =
883
- static_cast<grpc_transport_stream_op_batch*>(arg);
884
- auto* lb_call = static_cast<ClientChannel::LoadBalancedCall*>(
885
- batch->handler_private.extra_arg);
886
- // Note: This will release the call combiner.
887
- lb_call->StartTransportStreamOpBatch(batch);
888
- }
889
-
890
- } // namespace
891
-
892
- void RetryFilter::CallData::CallAttempt::AddClosureForBatch(
893
- grpc_transport_stream_op_batch* batch, const char* reason,
894
- CallCombinerClosureList* closures) {
895
- if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
896
- gpr_log(GPR_INFO, "chand=%p calld=%p attempt=%p: adding batch (%s): %s",
897
- calld_->chand_, calld_, this, reason,
898
- grpc_transport_stream_op_batch_string(batch).c_str());
899
- }
900
- batch->handler_private.extra_arg = lb_call_.get();
901
- GRPC_CLOSURE_INIT(&batch->handler_private.closure, StartBatchInCallCombiner,
902
- batch, grpc_schedule_on_exec_ctx);
903
- closures->Add(&batch->handler_private.closure, absl::OkStatus(), reason);
904
- }
905
-
906
- void RetryFilter::CallData::CallAttempt::
907
- AddBatchForInternalRecvTrailingMetadata(CallCombinerClosureList* closures) {
908
- if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
909
- gpr_log(GPR_INFO,
910
- "chand=%p calld=%p attempt=%p: call failed but "
911
- "recv_trailing_metadata not started; starting it internally",
912
- calld_->chand_, calld_, this);
913
- }
914
- // Create batch_data with 2 refs, since this batch will be unreffed twice:
915
- // once for the recv_trailing_metadata_ready callback when the batch
916
- // completes, and again when we actually get a recv_trailing_metadata
917
- // op from the surface.
918
- BatchData* batch_data = CreateBatch(2, false /* set_on_complete */);
919
- batch_data->AddRetriableRecvTrailingMetadataOp();
920
- recv_trailing_metadata_internal_batch_.reset(batch_data);
921
- AddClosureForBatch(batch_data->batch(),
922
- "starting internal recv_trailing_metadata", closures);
923
- }
924
-
925
- void RetryFilter::CallData::CallAttempt::MaybeAddBatchForCancelOp(
926
- grpc_error_handle error, CallCombinerClosureList* closures) {
927
- if (sent_cancel_stream_) {
928
- return;
929
- }
930
- sent_cancel_stream_ = true;
931
- BatchData* cancel_batch_data = CreateBatch(1, /*set_on_complete=*/true);
932
- cancel_batch_data->AddCancelStreamOp(error);
933
- AddClosureForBatch(cancel_batch_data->batch(),
934
- "start cancellation batch on call attempt", closures);
935
- }
936
-
937
- void RetryFilter::CallData::CallAttempt::AddBatchesForPendingBatches(
938
- CallCombinerClosureList* closures) {
939
- for (size_t i = 0; i < GPR_ARRAY_SIZE(calld_->pending_batches_); ++i) {
940
- PendingBatch* pending = &calld_->pending_batches_[i];
941
- grpc_transport_stream_op_batch* batch = pending->batch;
942
- if (batch == nullptr) continue;
943
- bool has_send_ops = false;
944
- // Skip any batch that either (a) has already been started on this
945
- // call attempt or (b) we can't start yet because we're still
946
- // replaying send ops that need to be completed first.
947
- // TODO(roth): Note that if any one op in the batch can't be sent
948
- // yet due to ops that we're replaying, we don't start any of the ops
949
- // in the batch. This is probably okay, but it could conceivably
950
- // lead to increased latency in some cases -- e.g., we could delay
951
- // starting a recv op due to it being in the same batch with a send
952
- // op. If/when we revamp the callback protocol in
953
- // transport_stream_op_batch, we may be able to fix this.
954
- if (batch->send_initial_metadata) {
955
- if (started_send_initial_metadata_) continue;
956
- has_send_ops = true;
957
- }
958
- if (batch->send_message) {
959
- // Cases where we can't start this send_message op:
960
- // - We are currently replaying a previous cached send_message op.
961
- // - We have already replayed all send_message ops, including this
962
- // one. (This can happen if a send_message op is in the same
963
- // batch as a recv op, the send_message op has already completed
964
- // but the recv op hasn't, and then a subsequent batch with another
965
- // recv op is started from the surface.)
966
- if (completed_send_message_count_ < started_send_message_count_ ||
967
- completed_send_message_count_ ==
968
- (calld_->send_messages_.size() + !pending->send_ops_cached)) {
969
- continue;
970
- }
971
- has_send_ops = true;
972
- }
973
- // Note that we only start send_trailing_metadata if we have no more
974
- // send_message ops to start, since we can't send down any more
975
- // send_message ops after send_trailing_metadata.
976
- if (batch->send_trailing_metadata) {
977
- if (started_send_message_count_ + batch->send_message <
978
- calld_->send_messages_.size() ||
979
- started_send_trailing_metadata_) {
980
- continue;
981
- }
982
- has_send_ops = true;
983
- }
984
- int num_callbacks = has_send_ops; // All send ops share one callback.
985
- if (batch->recv_initial_metadata) {
986
- if (started_recv_initial_metadata_) continue;
987
- ++num_callbacks;
988
- }
989
- if (batch->recv_message) {
990
- // Skip if the op is already in flight, or if it has already completed
991
- // but the completion has not yet been sent to the surface.
992
- if (completed_recv_message_count_ < started_recv_message_count_ ||
993
- recv_message_ready_deferred_batch_ != nullptr) {
994
- continue;
995
- }
996
- ++num_callbacks;
997
- }
998
- if (batch->recv_trailing_metadata) {
999
- if (started_recv_trailing_metadata_) {
1000
- seen_recv_trailing_metadata_from_surface_ = true;
1001
- // If we previously completed a recv_trailing_metadata op
1002
- // initiated by AddBatchForInternalRecvTrailingMetadata(), use the
1003
- // result of that instead of trying to re-start this op.
1004
- if (GPR_UNLIKELY(recv_trailing_metadata_internal_batch_ != nullptr)) {
1005
- // If the batch completed, then trigger the completion callback
1006
- // directly, so that we return the previously returned results to
1007
- // the application. Otherwise, just unref the internally started
1008
- // batch, since we'll propagate the completion when it completes.
1009
- if (completed_recv_trailing_metadata_) {
1010
- closures->Add(
1011
- &recv_trailing_metadata_ready_, recv_trailing_metadata_error_,
1012
- "re-executing recv_trailing_metadata_ready to propagate "
1013
- "internally triggered result");
1014
- // Ref will be released by callback.
1015
- recv_trailing_metadata_internal_batch_.release();
1016
- } else {
1017
- recv_trailing_metadata_internal_batch_.reset(
1018
- DEBUG_LOCATION,
1019
- "internally started recv_trailing_metadata batch pending and "
1020
- "recv_trailing_metadata started from surface");
1021
- }
1022
- recv_trailing_metadata_error_ = absl::OkStatus();
1023
- }
1024
- // We don't want the fact that we've already started this op internally
1025
- // to prevent us from adding a batch that may contain other ops.
1026
- // Instead, we'll just skip adding this op below.
1027
- if (num_callbacks == 0) continue;
1028
- } else {
1029
- ++num_callbacks;
1030
- }
1031
- }
1032
- // If we're already committed and the following conditions are met,
1033
- // just send the batch down as-is:
1034
- // - The batch contains no cached send ops. (If it does, we need
1035
- // the logic below to use the cached payloads.)
1036
- // - The batch does not contain recv_trailing_metadata when we have
1037
- // already started an internal recv_trailing_metadata batch. (If
1038
- // we've already started an internal recv_trailing_metadata batch,
1039
- // then we need the logic below to send all ops in the batch
1040
- // *except* the recv_trailing_metadata op.)
1041
- if (calld_->retry_committed_ && !pending->send_ops_cached &&
1042
- (!batch->recv_trailing_metadata || !started_recv_trailing_metadata_)) {
1043
- AddClosureForBatch(
1044
- batch,
1045
- "start non-replayable pending batch on call attempt after commit",
1046
- closures);
1047
- calld_->PendingBatchClear(pending);
1048
- continue;
1049
- }
1050
- // Create batch with the right number of callbacks.
1051
- BatchData* batch_data =
1052
- CreateBatch(num_callbacks, has_send_ops /* set_on_complete */);
1053
- // Cache send ops if needed.
1054
- calld_->MaybeCacheSendOpsForBatch(pending);
1055
- // send_initial_metadata.
1056
- if (batch->send_initial_metadata) {
1057
- batch_data->AddRetriableSendInitialMetadataOp();
1058
- }
1059
- // send_message.
1060
- if (batch->send_message) {
1061
- batch_data->AddRetriableSendMessageOp();
1062
- }
1063
- // send_trailing_metadata.
1064
- if (batch->send_trailing_metadata) {
1065
- batch_data->AddRetriableSendTrailingMetadataOp();
1066
- }
1067
- // recv_initial_metadata.
1068
- if (batch->recv_initial_metadata) {
1069
- batch_data->AddRetriableRecvInitialMetadataOp();
1070
- }
1071
- // recv_message.
1072
- if (batch->recv_message) {
1073
- batch_data->AddRetriableRecvMessageOp();
1074
- }
1075
- // recv_trailing_metadata.
1076
- if (batch->recv_trailing_metadata && !started_recv_trailing_metadata_) {
1077
- batch_data->AddRetriableRecvTrailingMetadataOp();
1078
- }
1079
- AddClosureForBatch(batch_data->batch(),
1080
- "start replayable pending batch on call attempt",
1081
- closures);
1082
- }
1083
- }
1084
-
1085
- void RetryFilter::CallData::CallAttempt::AddRetriableBatches(
1086
- CallCombinerClosureList* closures) {
1087
- // Replay previously-returned send_* ops if needed.
1088
- BatchData* replay_batch_data = MaybeCreateBatchForReplay();
1089
- if (replay_batch_data != nullptr) {
1090
- AddClosureForBatch(replay_batch_data->batch(),
1091
- "start replay batch on call attempt", closures);
1092
- }
1093
- // Now add pending batches.
1094
- AddBatchesForPendingBatches(closures);
1095
- }
1096
-
1097
- void RetryFilter::CallData::CallAttempt::StartRetriableBatches() {
1098
- if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
1099
- gpr_log(GPR_INFO,
1100
- "chand=%p calld=%p attempt=%p: constructing retriable batches",
1101
- calld_->chand_, calld_, this);
1102
- }
1103
- // Construct list of closures to execute, one for each pending batch.
1104
- CallCombinerClosureList closures;
1105
- AddRetriableBatches(&closures);
1106
- // Note: This will yield the call combiner.
1107
- // Start batches on LB call.
1108
- if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
1109
- gpr_log(GPR_INFO,
1110
- "chand=%p calld=%p attempt=%p: starting %" PRIuPTR
1111
- " retriable batches on lb_call=%p",
1112
- calld_->chand_, calld_, this, closures.size(), lb_call_.get());
1113
- }
1114
- closures.RunClosures(calld_->call_combiner_);
1115
- }
1116
-
1117
- void RetryFilter::CallData::CallAttempt::CancelFromSurface(
1118
- grpc_transport_stream_op_batch* cancel_batch) {
1119
- MaybeCancelPerAttemptRecvTimer();
1120
- Abandon();
1121
- // Propagate cancellation to LB call.
1122
- lb_call_->StartTransportStreamOpBatch(cancel_batch);
1123
- }
1124
-
1125
- bool RetryFilter::CallData::CallAttempt::ShouldRetry(
1126
- absl::optional<grpc_status_code> status,
1127
- absl::optional<Duration> server_pushback) {
1128
- // If no retry policy, don't retry.
1129
- if (calld_->retry_policy_ == nullptr) return false;
1130
- // Check status.
1131
- if (status.has_value()) {
1132
- if (GPR_LIKELY(*status == GRPC_STATUS_OK)) {
1133
- if (calld_->retry_throttle_data_ != nullptr) {
1134
- calld_->retry_throttle_data_->RecordSuccess();
1135
- }
1136
- if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
1137
- gpr_log(GPR_INFO, "chand=%p calld=%p attempt=%p: call succeeded",
1138
- calld_->chand_, calld_, this);
1139
- }
1140
- return false;
1141
- }
1142
- // Status is not OK. Check whether the status is retryable.
1143
- if (!calld_->retry_policy_->retryable_status_codes().Contains(*status)) {
1144
- if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
1145
- gpr_log(GPR_INFO,
1146
- "chand=%p calld=%p attempt=%p: status %s not configured as "
1147
- "retryable",
1148
- calld_->chand_, calld_, this,
1149
- grpc_status_code_to_string(*status));
1150
- }
1151
- return false;
1152
- }
1153
- }
1154
- // Record the failure and check whether retries are throttled.
1155
- // Note that it's important for this check to come after the status
1156
- // code check above, since we should only record failures whose statuses
1157
- // match the configured retryable status codes, so that we don't count
1158
- // things like failures due to malformed requests (INVALID_ARGUMENT).
1159
- // Conversely, it's important for this to come before the remaining
1160
- // checks, so that we don't fail to record failures due to other factors.
1161
- if (calld_->retry_throttle_data_ != nullptr &&
1162
- !calld_->retry_throttle_data_->RecordFailure()) {
1163
- if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
1164
- gpr_log(GPR_INFO, "chand=%p calld=%p attempt=%p: retries throttled",
1165
- calld_->chand_, calld_, this);
1166
- }
1167
- return false;
1168
- }
1169
- // Check whether the call is committed.
1170
- if (calld_->retry_committed_) {
1171
- if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
1172
- gpr_log(GPR_INFO,
1173
- "chand=%p calld=%p attempt=%p: retries already committed",
1174
- calld_->chand_, calld_, this);
1175
- }
1176
- return false;
1177
- }
1178
- // Check whether we have retries remaining.
1179
- ++calld_->num_attempts_completed_;
1180
- if (calld_->num_attempts_completed_ >=
1181
- calld_->retry_policy_->max_attempts()) {
1182
- if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
1183
- gpr_log(
1184
- GPR_INFO, "chand=%p calld=%p attempt=%p: exceeded %d retry attempts",
1185
- calld_->chand_, calld_, this, calld_->retry_policy_->max_attempts());
1186
- }
1187
- return false;
1188
- }
1189
- // Check server push-back.
1190
- if (server_pushback.has_value()) {
1191
- if (*server_pushback < Duration::Zero()) {
1192
- if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
1193
- gpr_log(GPR_INFO,
1194
- "chand=%p calld=%p attempt=%p: not retrying due to server "
1195
- "push-back",
1196
- calld_->chand_, calld_, this);
1197
- }
1198
- return false;
1199
- } else {
1200
- if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
1201
- gpr_log(
1202
- GPR_INFO,
1203
- "chand=%p calld=%p attempt=%p: server push-back: retry in %" PRIu64
1204
- " ms",
1205
- calld_->chand_, calld_, this, server_pushback->millis());
1206
- }
1207
- }
1208
- }
1209
- // Check with call dispatch controller.
1210
- auto* service_config_call_data =
1211
- static_cast<ClientChannelServiceConfigCallData*>(
1212
- calld_->call_context_[GRPC_CONTEXT_SERVICE_CONFIG_CALL_DATA].value);
1213
- if (!service_config_call_data->call_dispatch_controller()->ShouldRetry()) {
1214
- if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
1215
- gpr_log(
1216
- GPR_INFO,
1217
- "chand=%p calld=%p attempt=%p: call dispatch controller denied retry",
1218
- calld_->chand_, calld_, this);
1219
- }
1220
- return false;
1221
- }
1222
- // We should retry.
1223
- return true;
1224
- }
1225
-
1226
- void RetryFilter::CallData::CallAttempt::Abandon() {
1227
- abandoned_ = true;
1228
- // Unref batches for deferred completion callbacks that will now never
1229
- // be invoked.
1230
- if (started_recv_trailing_metadata_ &&
1231
- !seen_recv_trailing_metadata_from_surface_) {
1232
- recv_trailing_metadata_internal_batch_.reset(
1233
- DEBUG_LOCATION,
1234
- "unref internal recv_trailing_metadata_ready batch; attempt abandoned");
1235
- }
1236
- recv_trailing_metadata_error_ = absl::OkStatus();
1237
- recv_initial_metadata_ready_deferred_batch_.reset(
1238
- DEBUG_LOCATION,
1239
- "unref deferred recv_initial_metadata_ready batch; attempt abandoned");
1240
- recv_initial_metadata_error_ = absl::OkStatus();
1241
- recv_message_ready_deferred_batch_.reset(
1242
- DEBUG_LOCATION,
1243
- "unref deferred recv_message_ready batch; attempt abandoned");
1244
- recv_message_error_ = absl::OkStatus();
1245
- for (auto& on_complete_deferred_batch : on_complete_deferred_batches_) {
1246
- on_complete_deferred_batch.batch.reset(
1247
- DEBUG_LOCATION, "unref deferred on_complete batch; attempt abandoned");
1248
- }
1249
- on_complete_deferred_batches_.clear();
1250
- }
1251
-
1252
- void RetryFilter::CallData::CallAttempt::OnPerAttemptRecvTimer(
1253
- void* arg, grpc_error_handle error) {
1254
- auto* call_attempt = static_cast<CallAttempt*>(arg);
1255
- GRPC_CLOSURE_INIT(&call_attempt->on_per_attempt_recv_timer_,
1256
- OnPerAttemptRecvTimerLocked, call_attempt, nullptr);
1257
- GRPC_CALL_COMBINER_START(call_attempt->calld_->call_combiner_,
1258
- &call_attempt->on_per_attempt_recv_timer_, error,
1259
- "per-attempt timer fired");
1260
- }
1261
-
1262
- void RetryFilter::CallData::CallAttempt::OnPerAttemptRecvTimerLocked(
1263
- void* arg, grpc_error_handle error) {
1264
- auto* call_attempt = static_cast<CallAttempt*>(arg);
1265
- auto* calld = call_attempt->calld_;
1266
- if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
1267
- gpr_log(GPR_INFO,
1268
- "chand=%p calld=%p attempt=%p: perAttemptRecvTimeout timer fired: "
1269
- "error=%s, per_attempt_recv_timer_pending_=%d",
1270
- calld->chand_, calld, call_attempt, StatusToString(error).c_str(),
1271
- call_attempt->per_attempt_recv_timer_pending_);
1272
- }
1273
- CallCombinerClosureList closures;
1274
- if (error.ok() && call_attempt->per_attempt_recv_timer_pending_) {
1275
- call_attempt->per_attempt_recv_timer_pending_ = false;
1276
- // Cancel this attempt.
1277
- // TODO(roth): When implementing hedging, we should not cancel the
1278
- // current attempt.
1279
- call_attempt->MaybeAddBatchForCancelOp(
1280
- grpc_error_set_int(
1281
- GRPC_ERROR_CREATE("retry perAttemptRecvTimeout exceeded"),
1282
- StatusIntProperty::kRpcStatus, GRPC_STATUS_CANCELLED),
1283
- &closures);
1284
- // Check whether we should retry.
1285
- if (call_attempt->ShouldRetry(/*status=*/absl::nullopt,
1286
- /*server_pushback_ms=*/absl::nullopt)) {
1287
- // Mark current attempt as abandoned.
1288
- call_attempt->Abandon();
1289
- // We are retrying. Start backoff timer.
1290
- calld->StartRetryTimer(/*server_pushback=*/absl::nullopt);
1291
- } else {
1292
- // Not retrying, so commit the call.
1293
- calld->RetryCommit(call_attempt);
1294
- // If retry state is no longer needed, switch to fast path for
1295
- // subsequent batches.
1296
- call_attempt->MaybeSwitchToFastPath();
1297
- }
1298
- }
1299
- closures.RunClosures(calld->call_combiner_);
1300
- call_attempt->Unref(DEBUG_LOCATION, "OnPerAttemptRecvTimer");
1301
- GRPC_CALL_STACK_UNREF(calld->owning_call_, "OnPerAttemptRecvTimer");
1302
- }
1303
-
1304
- void RetryFilter::CallData::CallAttempt::MaybeCancelPerAttemptRecvTimer() {
1305
- if (per_attempt_recv_timer_pending_) {
1306
- if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
1307
- gpr_log(GPR_INFO,
1308
- "chand=%p calld=%p attempt=%p: cancelling "
1309
- "perAttemptRecvTimeout timer",
1310
- calld_->chand_, calld_, this);
1311
- }
1312
- per_attempt_recv_timer_pending_ = false;
1313
- grpc_timer_cancel(&per_attempt_recv_timer_);
1314
- }
1315
- }
1316
-
1317
- //
1318
- // RetryFilter::CallData::CallAttempt::BatchData
1319
- //
1320
-
1321
- RetryFilter::CallData::CallAttempt::BatchData::BatchData(
1322
- RefCountedPtr<CallAttempt> attempt, int refcount, bool set_on_complete)
1323
- : RefCounted(
1324
- GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace) ? "BatchData" : nullptr,
1325
- refcount),
1326
- call_attempt_(attempt.release()) {
1327
- if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
1328
- gpr_log(GPR_INFO, "chand=%p calld=%p attempt=%p: creating batch %p",
1329
- call_attempt_->calld_->chand_, call_attempt_->calld_, call_attempt_,
1330
- this);
1331
- }
1332
- // We hold a ref to the call stack for every batch sent on a call attempt.
1333
- // This is because some batches on the call attempt may not complete
1334
- // until after all of the batches are completed at the surface (because
1335
- // each batch that is pending at the surface holds a ref). This
1336
- // can happen for replayed send ops, and it can happen for
1337
- // recv_initial_metadata and recv_message ops on a call attempt that has
1338
- // been abandoned.
1339
- GRPC_CALL_STACK_REF(call_attempt_->calld_->owning_call_, "Retry BatchData");
1340
- batch_.payload = &call_attempt_->batch_payload_;
1341
- if (set_on_complete) {
1342
- GRPC_CLOSURE_INIT(&on_complete_, OnComplete, this, nullptr);
1343
- batch_.on_complete = &on_complete_;
1344
- }
1345
- }
1346
-
1347
- RetryFilter::CallData::CallAttempt::BatchData::~BatchData() {
1348
- if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
1349
- gpr_log(GPR_INFO, "chand=%p calld=%p attempt=%p: destroying batch %p",
1350
- call_attempt_->calld_->chand_, call_attempt_->calld_, call_attempt_,
1351
- this);
1352
- }
1353
- CallAttempt* call_attempt = std::exchange(call_attempt_, nullptr);
1354
- GRPC_CALL_STACK_UNREF(call_attempt->calld_->owning_call_, "Retry BatchData");
1355
- call_attempt->Unref(DEBUG_LOCATION, "~BatchData");
1356
- }
1357
-
1358
- void RetryFilter::CallData::CallAttempt::BatchData::
1359
- FreeCachedSendOpDataForCompletedBatch() {
1360
- auto* calld = call_attempt_->calld_;
1361
- // TODO(roth): When we implement hedging, this logic will need to get
1362
- // a bit more complex, because there may be other (now abandoned) call
1363
- // attempts still using this data. We may need to do some sort of
1364
- // ref-counting instead.
1365
- if (batch_.send_initial_metadata) {
1366
- calld->FreeCachedSendInitialMetadata();
1367
- }
1368
- if (batch_.send_message) {
1369
- calld->FreeCachedSendMessage(call_attempt_->completed_send_message_count_ -
1370
- 1);
1371
- }
1372
- if (batch_.send_trailing_metadata) {
1373
- calld->FreeCachedSendTrailingMetadata();
1374
- }
1375
- }
1376
-
1377
- //
1378
- // recv_initial_metadata callback handling
1379
- //
1380
-
1381
- void RetryFilter::CallData::CallAttempt::BatchData::
1382
- MaybeAddClosureForRecvInitialMetadataCallback(
1383
- grpc_error_handle error, CallCombinerClosureList* closures) {
1384
- // Find pending batch.
1385
- PendingBatch* pending = call_attempt_->calld_->PendingBatchFind(
1386
- "invoking recv_initial_metadata_ready for",
1387
- [](grpc_transport_stream_op_batch* batch) {
1388
- return batch->recv_initial_metadata &&
1389
- batch->payload->recv_initial_metadata
1390
- .recv_initial_metadata_ready != nullptr;
1391
- });
1392
- if (pending == nullptr) {
101
+ RetryFilter::RetryFilter(const ChannelArgs& args, grpc_error_handle* error)
102
+ : client_channel_(args.GetObject<ClientChannel>()),
103
+ event_engine_(args.GetObject<EventEngine>()),
104
+ per_rpc_retry_buffer_size_(GetMaxPerRpcRetryBufferSize(args)),
105
+ service_config_parser_index_(
106
+ internal::RetryServiceConfigParser::ParserIndex()) {
107
+ // Get retry throttling parameters from service config.
108
+ auto* service_config = args.GetObject<ServiceConfig>();
109
+ if (service_config == nullptr) return;
110
+ const auto* config = static_cast<const RetryGlobalConfig*>(
111
+ service_config->GetGlobalParsedConfig(
112
+ RetryServiceConfigParser::ParserIndex()));
113
+ if (config == nullptr) return;
114
+ // Get server name from target URI.
115
+ auto server_uri = args.GetString(GRPC_ARG_SERVER_URI);
116
+ if (!server_uri.has_value()) {
117
+ *error = GRPC_ERROR_CREATE(
118
+ "server URI channel arg missing or wrong type in client channel "
119
+ "filter");
1393
120
  return;
1394
121
  }
1395
- // Return metadata.
1396
- *pending->batch->payload->recv_initial_metadata.recv_initial_metadata =
1397
- std::move(call_attempt_->recv_initial_metadata_);
1398
- // Propagate trailing_metadata_available.
1399
- *pending->batch->payload->recv_initial_metadata.trailing_metadata_available =
1400
- call_attempt_->trailing_metadata_available_;
1401
- // Update bookkeeping.
1402
- // Note: Need to do this before invoking the callback, since invoking
1403
- // the callback will result in yielding the call combiner.
1404
- grpc_closure* recv_initial_metadata_ready =
1405
- pending->batch->payload->recv_initial_metadata
1406
- .recv_initial_metadata_ready;
1407
- pending->batch->payload->recv_initial_metadata.recv_initial_metadata_ready =
1408
- nullptr;
1409
- call_attempt_->calld_->MaybeClearPendingBatch(pending);
1410
- // Add callback to closures.
1411
- closures->Add(recv_initial_metadata_ready, error,
1412
- "recv_initial_metadata_ready for pending batch");
1413
- }
1414
-
1415
- void RetryFilter::CallData::CallAttempt::BatchData::RecvInitialMetadataReady(
1416
- void* arg, grpc_error_handle error) {
1417
- RefCountedPtr<BatchData> batch_data(static_cast<BatchData*>(arg));
1418
- CallAttempt* call_attempt = batch_data->call_attempt_;
1419
- CallData* calld = call_attempt->calld_;
1420
- if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
1421
- gpr_log(GPR_INFO,
1422
- "chand=%p calld=%p attempt=%p batch_data=%p: "
1423
- "got recv_initial_metadata_ready, error=%s",
1424
- calld->chand_, calld, call_attempt, batch_data.get(),
1425
- StatusToString(error).c_str());
1426
- }
1427
- call_attempt->completed_recv_initial_metadata_ = true;
1428
- // If this attempt has been abandoned, then we're not going to use the
1429
- // result of this recv_initial_metadata op, so do nothing.
1430
- if (call_attempt->abandoned_) {
1431
- GRPC_CALL_COMBINER_STOP(
1432
- calld->call_combiner_,
1433
- "recv_initial_metadata_ready for abandoned attempt");
122
+ absl::StatusOr<URI> uri = URI::Parse(*server_uri);
123
+ if (!uri.ok() || uri->path().empty()) {
124
+ *error = GRPC_ERROR_CREATE("could not extract server name from target URI");
1434
125
  return;
1435
126
  }
1436
- // Cancel per-attempt recv timer, if any.
1437
- call_attempt->MaybeCancelPerAttemptRecvTimer();
1438
- // If we're not committed, check the response to see if we need to commit.
1439
- if (!calld->retry_committed_) {
1440
- // If we got an error or a Trailers-Only response and have not yet gotten
1441
- // the recv_trailing_metadata_ready callback, then defer propagating this
1442
- // callback back to the surface. We can evaluate whether to retry when
1443
- // recv_trailing_metadata comes back.
1444
- if (GPR_UNLIKELY(
1445
- (call_attempt->trailing_metadata_available_ || !error.ok()) &&
1446
- !call_attempt->completed_recv_trailing_metadata_)) {
1447
- if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
1448
- gpr_log(GPR_INFO,
1449
- "chand=%p calld=%p attempt=%p: deferring "
1450
- "recv_initial_metadata_ready (Trailers-Only)",
1451
- calld->chand_, calld, call_attempt);
1452
- }
1453
- call_attempt->recv_initial_metadata_ready_deferred_batch_ =
1454
- std::move(batch_data);
1455
- call_attempt->recv_initial_metadata_error_ = error;
1456
- CallCombinerClosureList closures;
1457
- if (!error.ok()) {
1458
- call_attempt->MaybeAddBatchForCancelOp(error, &closures);
1459
- }
1460
- if (!call_attempt->started_recv_trailing_metadata_) {
1461
- // recv_trailing_metadata not yet started by application; start it
1462
- // ourselves to get status.
1463
- call_attempt->AddBatchForInternalRecvTrailingMetadata(&closures);
1464
- }
1465
- closures.RunClosures(calld->call_combiner_);
1466
- return;
1467
- }
1468
- // Received valid initial metadata, so commit the call.
1469
- calld->RetryCommit(call_attempt);
1470
- // If retry state is no longer needed, switch to fast path for
1471
- // subsequent batches.
1472
- call_attempt->MaybeSwitchToFastPath();
1473
- }
1474
- // Invoke the callback to return the result to the surface.
1475
- CallCombinerClosureList closures;
1476
- batch_data->MaybeAddClosureForRecvInitialMetadataCallback(error, &closures);
1477
- closures.RunClosures(calld->call_combiner_);
127
+ std::string server_name(absl::StripPrefix(uri->path(), "/"));
128
+ // Get throttling config for server_name.
129
+ retry_throttle_data_ =
130
+ internal::ServerRetryThrottleMap::Get()->GetDataForServer(
131
+ server_name, config->max_milli_tokens(), config->milli_token_ratio());
1478
132
  }
1479
133
 
1480
- //
1481
- // recv_message callback handling
1482
- //
1483
-
1484
- void RetryFilter::CallData::CallAttempt::BatchData::
1485
- MaybeAddClosureForRecvMessageCallback(grpc_error_handle error,
1486
- CallCombinerClosureList* closures) {
1487
- // Find pending op.
1488
- PendingBatch* pending = call_attempt_->calld_->PendingBatchFind(
1489
- "invoking recv_message_ready for",
1490
- [](grpc_transport_stream_op_batch* batch) {
1491
- return batch->recv_message &&
1492
- batch->payload->recv_message.recv_message_ready != nullptr;
1493
- });
1494
- if (pending == nullptr) {
1495
- return;
1496
- }
1497
- // Return payload.
1498
- *pending->batch->payload->recv_message.recv_message =
1499
- std::move(call_attempt_->recv_message_);
1500
- *pending->batch->payload->recv_message.flags =
1501
- call_attempt_->recv_message_flags_;
1502
- // Update bookkeeping.
1503
- // Note: Need to do this before invoking the callback, since invoking
1504
- // the callback will result in yielding the call combiner.
1505
- grpc_closure* recv_message_ready =
1506
- pending->batch->payload->recv_message.recv_message_ready;
1507
- pending->batch->payload->recv_message.recv_message_ready = nullptr;
1508
- call_attempt_->calld_->MaybeClearPendingBatch(pending);
1509
- // Add callback to closures.
1510
- closures->Add(recv_message_ready, error,
1511
- "recv_message_ready for pending batch");
1512
- }
1513
-
1514
- void RetryFilter::CallData::CallAttempt::BatchData::RecvMessageReady(
1515
- void* arg, grpc_error_handle error) {
1516
- RefCountedPtr<BatchData> batch_data(static_cast<BatchData*>(arg));
1517
- CallAttempt* call_attempt = batch_data->call_attempt_;
1518
- CallData* calld = call_attempt->calld_;
1519
- if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
1520
- gpr_log(GPR_INFO,
1521
- "chand=%p calld=%p attempt=%p batch_data=%p: "
1522
- "got recv_message_ready, error=%s",
1523
- calld->chand_, calld, call_attempt, batch_data.get(),
1524
- StatusToString(error).c_str());
1525
- }
1526
- ++call_attempt->completed_recv_message_count_;
1527
- // If this attempt has been abandoned, then we're not going to use the
1528
- // result of this recv_message op, so do nothing.
1529
- if (call_attempt->abandoned_) {
1530
- // The transport will not invoke recv_trailing_metadata_ready until the byte
1531
- // stream for any recv_message op is orphaned, so we do that here to ensure
1532
- // that any pending recv_trailing_metadata op can complete.
1533
- call_attempt->recv_message_.reset();
1534
- GRPC_CALL_COMBINER_STOP(calld->call_combiner_,
1535
- "recv_message_ready for abandoned attempt");
1536
- return;
1537
- }
1538
- // Cancel per-attempt recv timer, if any.
1539
- call_attempt->MaybeCancelPerAttemptRecvTimer();
1540
- // If we're not committed, check the response to see if we need to commit.
1541
- if (!calld->retry_committed_) {
1542
- // If we got an error or the payload was nullptr and we have not yet gotten
1543
- // the recv_trailing_metadata_ready callback, then defer propagating this
1544
- // callback back to the surface. We can evaluate whether to retry when
1545
- // recv_trailing_metadata comes back.
1546
- if (GPR_UNLIKELY(
1547
- (!call_attempt->recv_message_.has_value() || !error.ok()) &&
1548
- !call_attempt->completed_recv_trailing_metadata_)) {
1549
- if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
1550
- gpr_log(GPR_INFO,
1551
- "chand=%p calld=%p attempt=%p: deferring recv_message_ready "
1552
- "(nullptr message and recv_trailing_metadata pending)",
1553
- calld->chand_, calld, call_attempt);
1554
- }
1555
- call_attempt->recv_message_ready_deferred_batch_ = std::move(batch_data);
1556
- call_attempt->recv_message_error_ = error;
1557
- CallCombinerClosureList closures;
1558
- if (!error.ok()) {
1559
- call_attempt->MaybeAddBatchForCancelOp(error, &closures);
1560
- }
1561
- if (!call_attempt->started_recv_trailing_metadata_) {
1562
- // recv_trailing_metadata not yet started by application; start it
1563
- // ourselves to get status.
1564
- call_attempt->AddBatchForInternalRecvTrailingMetadata(&closures);
1565
- }
1566
- closures.RunClosures(calld->call_combiner_);
1567
- return;
1568
- }
1569
- // Received a valid message, so commit the call.
1570
- calld->RetryCommit(call_attempt);
1571
- // If retry state is no longer needed, switch to fast path for
1572
- // subsequent batches.
1573
- call_attempt->MaybeSwitchToFastPath();
1574
- }
1575
- // Invoke the callback to return the result to the surface.
1576
- CallCombinerClosureList closures;
1577
- batch_data->MaybeAddClosureForRecvMessageCallback(error, &closures);
1578
- closures.RunClosures(calld->call_combiner_);
1579
- }
1580
-
1581
- //
1582
- // recv_trailing_metadata handling
1583
- //
1584
-
1585
- namespace {
1586
-
1587
- // Sets *status, *server_pushback, and *is_lb_drop based on md_batch
1588
- // and error.
1589
- void GetCallStatus(
1590
- Timestamp deadline, grpc_metadata_batch* md_batch, grpc_error_handle error,
1591
- grpc_status_code* status, absl::optional<Duration>* server_pushback,
1592
- bool* is_lb_drop,
1593
- absl::optional<GrpcStreamNetworkState::ValueType>* stream_network_state) {
1594
- if (!error.ok()) {
1595
- grpc_error_get_status(error, deadline, status, nullptr, nullptr, nullptr);
1596
- intptr_t value = 0;
1597
- if (grpc_error_get_int(error, StatusIntProperty::kLbPolicyDrop, &value) &&
1598
- value != 0) {
1599
- *is_lb_drop = true;
1600
- }
1601
- } else {
1602
- *status = *md_batch->get(GrpcStatusMetadata());
1603
- }
1604
- *server_pushback = md_batch->get(GrpcRetryPushbackMsMetadata());
1605
- *stream_network_state = md_batch->get(GrpcStreamNetworkState());
1606
- }
1607
-
1608
- } // namespace
1609
-
1610
- void RetryFilter::CallData::CallAttempt::BatchData::
1611
- MaybeAddClosureForRecvTrailingMetadataReady(
1612
- grpc_error_handle error, CallCombinerClosureList* closures) {
1613
- auto* calld = call_attempt_->calld_;
1614
- // Find pending batch.
1615
- PendingBatch* pending = calld->PendingBatchFind(
1616
- "invoking recv_trailing_metadata_ready for",
1617
- [](grpc_transport_stream_op_batch* batch) {
1618
- return batch->recv_trailing_metadata &&
1619
- batch->payload->recv_trailing_metadata
1620
- .recv_trailing_metadata_ready != nullptr;
1621
- });
1622
- // If we generated the recv_trailing_metadata op internally via
1623
- // AddBatchForInternalRecvTrailingMetadata(), then there will be no
1624
- // pending batch.
1625
- if (pending == nullptr) {
1626
- call_attempt_->recv_trailing_metadata_error_ = error;
1627
- return;
1628
- }
1629
- // Copy transport stats to be delivered up to the surface.
1630
- grpc_transport_move_stats(
1631
- &call_attempt_->collect_stats_,
1632
- pending->batch->payload->recv_trailing_metadata.collect_stats);
1633
- // Return metadata.
1634
- *pending->batch->payload->recv_trailing_metadata.recv_trailing_metadata =
1635
- std::move(call_attempt_->recv_trailing_metadata_);
1636
- // Add closure.
1637
- closures->Add(pending->batch->payload->recv_trailing_metadata
1638
- .recv_trailing_metadata_ready,
1639
- error, "recv_trailing_metadata_ready for pending batch");
1640
- // Update bookkeeping.
1641
- pending->batch->payload->recv_trailing_metadata.recv_trailing_metadata_ready =
1642
- nullptr;
1643
- calld->MaybeClearPendingBatch(pending);
1644
- }
1645
-
1646
- void RetryFilter::CallData::CallAttempt::BatchData::
1647
- AddClosuresForDeferredCompletionCallbacks(
1648
- CallCombinerClosureList* closures) {
1649
- // Add closure for deferred recv_initial_metadata_ready.
1650
- if (GPR_UNLIKELY(call_attempt_->recv_initial_metadata_ready_deferred_batch_ !=
1651
- nullptr)) {
1652
- MaybeAddClosureForRecvInitialMetadataCallback(
1653
- call_attempt_->recv_initial_metadata_error_, closures);
1654
- call_attempt_->recv_initial_metadata_ready_deferred_batch_.reset(
1655
- DEBUG_LOCATION, "resuming deferred recv_initial_metadata_ready");
1656
- call_attempt_->recv_initial_metadata_error_ = absl::OkStatus();
1657
- }
1658
- // Add closure for deferred recv_message_ready.
1659
- if (GPR_UNLIKELY(call_attempt_->recv_message_ready_deferred_batch_ !=
1660
- nullptr)) {
1661
- MaybeAddClosureForRecvMessageCallback(call_attempt_->recv_message_error_,
1662
- closures);
1663
- call_attempt_->recv_message_ready_deferred_batch_.reset(
1664
- DEBUG_LOCATION, "resuming deferred recv_message_ready");
1665
- call_attempt_->recv_message_error_ = absl::OkStatus();
1666
- }
1667
- // Add closures for deferred on_complete callbacks.
1668
- for (auto& on_complete_deferred_batch :
1669
- call_attempt_->on_complete_deferred_batches_) {
1670
- closures->Add(&on_complete_deferred_batch.batch->on_complete_,
1671
- on_complete_deferred_batch.error, "resuming on_complete");
1672
- on_complete_deferred_batch.batch.release();
1673
- }
1674
- call_attempt_->on_complete_deferred_batches_.clear();
1675
- }
1676
-
1677
- void RetryFilter::CallData::CallAttempt::BatchData::
1678
- AddClosuresToFailUnstartedPendingBatches(
1679
- grpc_error_handle error, CallCombinerClosureList* closures) {
1680
- auto* calld = call_attempt_->calld_;
1681
- for (size_t i = 0; i < GPR_ARRAY_SIZE(calld->pending_batches_); ++i) {
1682
- PendingBatch* pending = &calld->pending_batches_[i];
1683
- if (pending->batch == nullptr) continue;
1684
- if (call_attempt_->PendingBatchContainsUnstartedSendOps(pending)) {
1685
- closures->Add(pending->batch->on_complete, error,
1686
- "failing on_complete for pending batch");
1687
- pending->batch->on_complete = nullptr;
1688
- calld->MaybeClearPendingBatch(pending);
1689
- }
1690
- }
1691
- }
1692
-
1693
- void RetryFilter::CallData::CallAttempt::BatchData::RunClosuresForCompletedCall(
1694
- grpc_error_handle error) {
1695
- // Construct list of closures to execute.
1696
- CallCombinerClosureList closures;
1697
- // First, add closure for recv_trailing_metadata_ready.
1698
- MaybeAddClosureForRecvTrailingMetadataReady(error, &closures);
1699
- // If there are deferred batch completion callbacks, add them to closures.
1700
- AddClosuresForDeferredCompletionCallbacks(&closures);
1701
- // Add closures to fail any pending batches that have not yet been started.
1702
- AddClosuresToFailUnstartedPendingBatches(error, &closures);
1703
- // Schedule all of the closures identified above.
1704
- // Note: This will release the call combiner.
1705
- closures.RunClosures(call_attempt_->calld_->call_combiner_);
1706
- }
1707
-
1708
- void RetryFilter::CallData::CallAttempt::BatchData::RecvTrailingMetadataReady(
1709
- void* arg, grpc_error_handle error) {
1710
- RefCountedPtr<BatchData> batch_data(static_cast<BatchData*>(arg));
1711
- CallAttempt* call_attempt = batch_data->call_attempt_;
1712
- CallData* calld = call_attempt->calld_;
1713
- if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
1714
- gpr_log(GPR_INFO,
1715
- "chand=%p calld=%p attempt=%p batch_data=%p: "
1716
- "got recv_trailing_metadata_ready, error=%s",
1717
- calld->chand_, calld, call_attempt, batch_data.get(),
1718
- StatusToString(error).c_str());
1719
- }
1720
- call_attempt->completed_recv_trailing_metadata_ = true;
1721
- // If this attempt has been abandoned, then we're not going to use the
1722
- // result of this recv_trailing_metadata op, so do nothing.
1723
- if (call_attempt->abandoned_) {
1724
- GRPC_CALL_COMBINER_STOP(
1725
- calld->call_combiner_,
1726
- "recv_trailing_metadata_ready for abandoned attempt");
1727
- return;
1728
- }
1729
- // Cancel per-attempt recv timer, if any.
1730
- call_attempt->MaybeCancelPerAttemptRecvTimer();
1731
- // Get the call's status and check for server pushback metadata.
1732
- grpc_status_code status = GRPC_STATUS_OK;
1733
- absl::optional<Duration> server_pushback;
1734
- bool is_lb_drop = false;
1735
- absl::optional<GrpcStreamNetworkState::ValueType> stream_network_state;
1736
- grpc_metadata_batch* md_batch =
1737
- batch_data->batch_.payload->recv_trailing_metadata.recv_trailing_metadata;
1738
- GetCallStatus(calld->deadline_, md_batch, error, &status, &server_pushback,
1739
- &is_lb_drop, &stream_network_state);
1740
- if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
1741
- gpr_log(GPR_INFO,
1742
- "chand=%p calld=%p attempt=%p: call finished, status=%s "
1743
- "server_pushback=%s is_lb_drop=%d stream_network_state=%s",
1744
- calld->chand_, calld, call_attempt,
1745
- grpc_status_code_to_string(status),
1746
- server_pushback.has_value() ? server_pushback->ToString().c_str()
1747
- : "N/A",
1748
- is_lb_drop,
1749
- stream_network_state.has_value()
1750
- ? absl::StrCat(*stream_network_state).c_str()
1751
- : "N/A");
1752
- }
1753
- // Check if we should retry.
1754
- if (!is_lb_drop) { // Never retry on LB drops.
1755
- enum { kNoRetry, kTransparentRetry, kConfigurableRetry } retry = kNoRetry;
1756
- // Handle transparent retries.
1757
- if (stream_network_state.has_value() && !calld->retry_committed_) {
1758
- // If not sent on wire, then always retry.
1759
- // If sent on wire but not seen by server, retry exactly once.
1760
- if (*stream_network_state == GrpcStreamNetworkState::kNotSentOnWire) {
1761
- retry = kTransparentRetry;
1762
- } else if (*stream_network_state ==
1763
- GrpcStreamNetworkState::kNotSeenByServer &&
1764
- !calld->sent_transparent_retry_not_seen_by_server_) {
1765
- calld->sent_transparent_retry_not_seen_by_server_ = true;
1766
- retry = kTransparentRetry;
1767
- }
1768
- }
1769
- // If not transparently retrying, check for configurable retry.
1770
- if (retry == kNoRetry &&
1771
- call_attempt->ShouldRetry(status, server_pushback)) {
1772
- retry = kConfigurableRetry;
1773
- }
1774
- // If we're retrying, do so.
1775
- if (retry != kNoRetry) {
1776
- CallCombinerClosureList closures;
1777
- // Cancel call attempt.
1778
- call_attempt->MaybeAddBatchForCancelOp(
1779
- error.ok() ? grpc_error_set_int(
1780
- GRPC_ERROR_CREATE("call attempt failed"),
1781
- StatusIntProperty::kRpcStatus, GRPC_STATUS_CANCELLED)
1782
- : error,
1783
- &closures);
1784
- // For transparent retries, add a closure to immediately start a new
1785
- // call attempt.
1786
- // For configurable retries, start retry timer.
1787
- if (retry == kTransparentRetry) {
1788
- calld->AddClosureToStartTransparentRetry(&closures);
1789
- } else {
1790
- calld->StartRetryTimer(server_pushback);
1791
- }
1792
- // Record that this attempt has been abandoned.
1793
- call_attempt->Abandon();
1794
- // Yields call combiner.
1795
- closures.RunClosures(calld->call_combiner_);
1796
- return;
1797
- }
1798
- }
1799
- // Not retrying, so commit the call.
1800
- calld->RetryCommit(call_attempt);
1801
- // If retry state is no longer needed, switch to fast path for
1802
- // subsequent batches.
1803
- call_attempt->MaybeSwitchToFastPath();
1804
- // Run any necessary closures.
1805
- batch_data->RunClosuresForCompletedCall(error);
1806
- }
1807
-
1808
- //
1809
- // on_complete callback handling
1810
- //
1811
-
1812
- void RetryFilter::CallData::CallAttempt::BatchData::
1813
- AddClosuresForCompletedPendingBatch(grpc_error_handle error,
1814
- CallCombinerClosureList* closures) {
1815
- auto* calld = call_attempt_->calld_;
1816
- PendingBatch* pending = calld->PendingBatchFind(
1817
- "completed", [this](grpc_transport_stream_op_batch* batch) {
1818
- // Match the pending batch with the same set of send ops as the
1819
- // batch we've just completed.
1820
- return batch->on_complete != nullptr &&
1821
- batch_.send_initial_metadata == batch->send_initial_metadata &&
1822
- batch_.send_message == batch->send_message &&
1823
- batch_.send_trailing_metadata == batch->send_trailing_metadata;
1824
- });
1825
- // If batch_data is a replay batch, then there will be no pending
1826
- // batch to complete.
1827
- if (pending == nullptr) {
1828
- return;
1829
- }
1830
- // Propagate payload.
1831
- if (batch_.send_message) {
1832
- pending->batch->payload->send_message.stream_write_closed =
1833
- batch_.payload->send_message.stream_write_closed;
1834
- }
1835
- // Add closure.
1836
- closures->Add(pending->batch->on_complete, error,
1837
- "on_complete for pending batch");
1838
- pending->batch->on_complete = nullptr;
1839
- calld->MaybeClearPendingBatch(pending);
1840
- }
1841
-
1842
- void RetryFilter::CallData::CallAttempt::BatchData::
1843
- AddClosuresForReplayOrPendingSendOps(CallCombinerClosureList* closures) {
1844
- auto* calld = call_attempt_->calld_;
1845
- bool have_pending_send_ops = call_attempt_->HaveSendOpsToReplay();
1846
- // We don't check send_initial_metadata here, because that op will always
1847
- // be started as soon as it is received from the surface, so it will
1848
- // never need to be started at this point.
1849
- if (!have_pending_send_ops) {
1850
- for (size_t i = 0; i < GPR_ARRAY_SIZE(calld->pending_batches_); ++i) {
1851
- PendingBatch* pending = &calld->pending_batches_[i];
1852
- grpc_transport_stream_op_batch* batch = pending->batch;
1853
- if (batch == nullptr || pending->send_ops_cached) continue;
1854
- if (batch->send_message || batch->send_trailing_metadata) {
1855
- have_pending_send_ops = true;
1856
- break;
1857
- }
1858
- }
1859
- }
1860
- if (have_pending_send_ops) {
1861
- if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
1862
- gpr_log(GPR_INFO,
1863
- "chand=%p calld=%p attempt=%p: starting next batch for pending "
1864
- "send op(s)",
1865
- calld->chand_, calld, call_attempt_);
1866
- }
1867
- call_attempt_->AddRetriableBatches(closures);
1868
- }
1869
- }
1870
-
1871
- void RetryFilter::CallData::CallAttempt::BatchData::OnComplete(
1872
- void* arg, grpc_error_handle error) {
1873
- RefCountedPtr<BatchData> batch_data(static_cast<BatchData*>(arg));
1874
- CallAttempt* call_attempt = batch_data->call_attempt_;
1875
- CallData* calld = call_attempt->calld_;
1876
- if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
1877
- gpr_log(GPR_INFO,
1878
- "chand=%p calld=%p attempt=%p batch_data=%p: "
1879
- "got on_complete, error=%s, batch=%s",
1880
- calld->chand_, calld, call_attempt, batch_data.get(),
1881
- StatusToString(error).c_str(),
1882
- grpc_transport_stream_op_batch_string(&batch_data->batch_).c_str());
1883
- }
1884
- // If this attempt has been abandoned, then we're not going to propagate
1885
- // the completion of this batch, so do nothing.
1886
- if (call_attempt->abandoned_) {
1887
- GRPC_CALL_COMBINER_STOP(calld->call_combiner_,
1888
- "on_complete for abandoned attempt");
1889
- return;
1890
- }
1891
- // If we got an error and have not yet gotten the
1892
- // recv_trailing_metadata_ready callback, then defer propagating this
1893
- // callback back to the surface. We can evaluate whether to retry when
1894
- // recv_trailing_metadata comes back.
1895
- if (GPR_UNLIKELY(!calld->retry_committed_ && !error.ok() &&
1896
- !call_attempt->completed_recv_trailing_metadata_)) {
1897
- if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
1898
- gpr_log(GPR_INFO, "chand=%p calld=%p attempt=%p: deferring on_complete",
1899
- calld->chand_, calld, call_attempt);
1900
- }
1901
- call_attempt->on_complete_deferred_batches_.emplace_back(
1902
- std::move(batch_data), error);
1903
- CallCombinerClosureList closures;
1904
- call_attempt->MaybeAddBatchForCancelOp(error, &closures);
1905
- if (!call_attempt->started_recv_trailing_metadata_) {
1906
- // recv_trailing_metadata not yet started by application; start it
1907
- // ourselves to get status.
1908
- call_attempt->AddBatchForInternalRecvTrailingMetadata(&closures);
1909
- }
1910
- closures.RunClosures(calld->call_combiner_);
1911
- return;
1912
- }
1913
- // Update bookkeeping in call_attempt.
1914
- if (batch_data->batch_.send_initial_metadata) {
1915
- call_attempt->completed_send_initial_metadata_ = true;
1916
- }
1917
- if (batch_data->batch_.send_message) {
1918
- ++call_attempt->completed_send_message_count_;
1919
- }
1920
- if (batch_data->batch_.send_trailing_metadata) {
1921
- call_attempt->completed_send_trailing_metadata_ = true;
1922
- }
1923
- // If the call is committed, free cached data for send ops that we've just
1924
- // completed.
1925
- if (calld->retry_committed_) {
1926
- batch_data->FreeCachedSendOpDataForCompletedBatch();
1927
- }
1928
- // Construct list of closures to execute.
1929
- CallCombinerClosureList closures;
1930
- // Add closure for the completed pending batch, if any.
1931
- batch_data->AddClosuresForCompletedPendingBatch(error, &closures);
1932
- // If needed, add a callback to start any replay or pending send ops on
1933
- // the LB call.
1934
- if (!call_attempt->completed_recv_trailing_metadata_) {
1935
- batch_data->AddClosuresForReplayOrPendingSendOps(&closures);
1936
- }
1937
- // If retry state is no longer needed (i.e., we're committed and there
1938
- // are no more send ops to replay), switch to fast path for subsequent
1939
- // batches.
1940
- call_attempt->MaybeSwitchToFastPath();
1941
- // Schedule all of the closures identified above.
1942
- // Note: This yields the call combiner.
1943
- closures.RunClosures(calld->call_combiner_);
1944
- }
1945
-
1946
- void RetryFilter::CallData::CallAttempt::BatchData::OnCompleteForCancelOp(
1947
- void* arg, grpc_error_handle error) {
1948
- RefCountedPtr<BatchData> batch_data(static_cast<BatchData*>(arg));
1949
- CallAttempt* call_attempt = batch_data->call_attempt_;
1950
- CallData* calld = call_attempt->calld_;
1951
- if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
1952
- gpr_log(GPR_INFO,
1953
- "chand=%p calld=%p attempt=%p batch_data=%p: "
1954
- "got on_complete for cancel_stream batch, error=%s, batch=%s",
1955
- calld->chand_, calld, call_attempt, batch_data.get(),
1956
- StatusToString(error).c_str(),
1957
- grpc_transport_stream_op_batch_string(&batch_data->batch_).c_str());
1958
- }
1959
- GRPC_CALL_COMBINER_STOP(
1960
- calld->call_combiner_,
1961
- "on_complete for internally generated cancel_stream op");
1962
- }
1963
-
1964
- //
1965
- // retriable batch construction
1966
- //
1967
-
1968
- void RetryFilter::CallData::CallAttempt::BatchData::
1969
- AddRetriableSendInitialMetadataOp() {
1970
- auto* calld = call_attempt_->calld_;
1971
- // We need to make a copy of the metadata batch for each attempt, since
1972
- // the filters in the subchannel stack may modify this batch, and we don't
1973
- // want those modifications to be passed forward to subsequent attempts.
1974
- //
1975
- // If we've already completed one or more attempts, add the
1976
- // grpc-retry-attempts header.
1977
- call_attempt_->send_initial_metadata_ = calld->send_initial_metadata_.Copy();
1978
- if (GPR_UNLIKELY(calld->num_attempts_completed_ > 0)) {
1979
- call_attempt_->send_initial_metadata_.Set(GrpcPreviousRpcAttemptsMetadata(),
1980
- calld->num_attempts_completed_);
1981
- } else {
1982
- call_attempt_->send_initial_metadata_.Remove(
1983
- GrpcPreviousRpcAttemptsMetadata());
1984
- }
1985
- call_attempt_->started_send_initial_metadata_ = true;
1986
- batch_.send_initial_metadata = true;
1987
- batch_.payload->send_initial_metadata.send_initial_metadata =
1988
- &call_attempt_->send_initial_metadata_;
1989
- batch_.payload->send_initial_metadata.peer_string = calld->peer_string_;
1990
- }
1991
-
1992
- void RetryFilter::CallData::CallAttempt::BatchData::
1993
- AddRetriableSendMessageOp() {
1994
- auto* calld = call_attempt_->calld_;
1995
- if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
1996
- gpr_log(
1997
- GPR_INFO,
1998
- "chand=%p calld=%p attempt=%p: starting calld->send_messages[%" PRIuPTR
1999
- "]",
2000
- calld->chand_, calld, call_attempt_,
2001
- call_attempt_->started_send_message_count_);
2002
- }
2003
- CachedSendMessage cache =
2004
- calld->send_messages_[call_attempt_->started_send_message_count_];
2005
- ++call_attempt_->started_send_message_count_;
2006
- batch_.send_message = true;
2007
- batch_.payload->send_message.send_message = cache.slices;
2008
- batch_.payload->send_message.flags = cache.flags;
2009
- }
2010
-
2011
- void RetryFilter::CallData::CallAttempt::BatchData::
2012
- AddRetriableSendTrailingMetadataOp() {
2013
- auto* calld = call_attempt_->calld_;
2014
- // We need to make a copy of the metadata batch for each attempt, since
2015
- // the filters in the subchannel stack may modify this batch, and we don't
2016
- // want those modifications to be passed forward to subsequent attempts.
2017
- call_attempt_->send_trailing_metadata_ =
2018
- calld->send_trailing_metadata_.Copy();
2019
- call_attempt_->started_send_trailing_metadata_ = true;
2020
- batch_.send_trailing_metadata = true;
2021
- batch_.payload->send_trailing_metadata.send_trailing_metadata =
2022
- &call_attempt_->send_trailing_metadata_;
2023
- }
2024
-
2025
- void RetryFilter::CallData::CallAttempt::BatchData::
2026
- AddRetriableRecvInitialMetadataOp() {
2027
- call_attempt_->started_recv_initial_metadata_ = true;
2028
- batch_.recv_initial_metadata = true;
2029
- call_attempt_->recv_initial_metadata_.Clear();
2030
- batch_.payload->recv_initial_metadata.recv_initial_metadata =
2031
- &call_attempt_->recv_initial_metadata_;
2032
- batch_.payload->recv_initial_metadata.trailing_metadata_available =
2033
- &call_attempt_->trailing_metadata_available_;
2034
- GRPC_CLOSURE_INIT(&call_attempt_->recv_initial_metadata_ready_,
2035
- RecvInitialMetadataReady, this, grpc_schedule_on_exec_ctx);
2036
- batch_.payload->recv_initial_metadata.recv_initial_metadata_ready =
2037
- &call_attempt_->recv_initial_metadata_ready_;
2038
- }
2039
-
2040
- void RetryFilter::CallData::CallAttempt::BatchData::
2041
- AddRetriableRecvMessageOp() {
2042
- ++call_attempt_->started_recv_message_count_;
2043
- batch_.recv_message = true;
2044
- batch_.payload->recv_message.recv_message = &call_attempt_->recv_message_;
2045
- batch_.payload->recv_message.flags = &call_attempt_->recv_message_flags_;
2046
- batch_.payload->recv_message.call_failed_before_recv_message = nullptr;
2047
- GRPC_CLOSURE_INIT(&call_attempt_->recv_message_ready_, RecvMessageReady, this,
2048
- grpc_schedule_on_exec_ctx);
2049
- batch_.payload->recv_message.recv_message_ready =
2050
- &call_attempt_->recv_message_ready_;
2051
- }
2052
-
2053
- void RetryFilter::CallData::CallAttempt::BatchData::
2054
- AddRetriableRecvTrailingMetadataOp() {
2055
- call_attempt_->started_recv_trailing_metadata_ = true;
2056
- batch_.recv_trailing_metadata = true;
2057
- call_attempt_->recv_trailing_metadata_.Clear();
2058
- batch_.payload->recv_trailing_metadata.recv_trailing_metadata =
2059
- &call_attempt_->recv_trailing_metadata_;
2060
- batch_.payload->recv_trailing_metadata.collect_stats =
2061
- &call_attempt_->collect_stats_;
2062
- GRPC_CLOSURE_INIT(&call_attempt_->recv_trailing_metadata_ready_,
2063
- RecvTrailingMetadataReady, this, grpc_schedule_on_exec_ctx);
2064
- batch_.payload->recv_trailing_metadata.recv_trailing_metadata_ready =
2065
- &call_attempt_->recv_trailing_metadata_ready_;
2066
- }
2067
-
2068
- void RetryFilter::CallData::CallAttempt::BatchData::AddCancelStreamOp(
2069
- grpc_error_handle error) {
2070
- batch_.cancel_stream = true;
2071
- batch_.payload->cancel_stream.cancel_error = error;
2072
- // Override on_complete callback.
2073
- GRPC_CLOSURE_INIT(&on_complete_, OnCompleteForCancelOp, this, nullptr);
2074
- }
2075
-
2076
- //
2077
- // CallData vtable functions
2078
- //
2079
-
2080
- grpc_error_handle RetryFilter::CallData::Init(
2081
- grpc_call_element* elem, const grpc_call_element_args* args) {
2082
- auto* chand = static_cast<RetryFilter*>(elem->channel_data);
2083
- new (elem->call_data) CallData(chand, *args);
2084
- if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
2085
- gpr_log(GPR_INFO, "chand=%p calld=%p: created call", chand,
2086
- elem->call_data);
2087
- }
2088
- return absl::OkStatus();
2089
- }
2090
-
2091
- void RetryFilter::CallData::Destroy(grpc_call_element* elem,
2092
- const grpc_call_final_info* /*final_info*/,
2093
- grpc_closure* then_schedule_closure) {
2094
- auto* calld = static_cast<CallData*>(elem->call_data);
2095
- // Save our ref to the CallStackDestructionBarrier until after our
2096
- // dtor is invoked.
2097
- RefCountedPtr<CallStackDestructionBarrier> call_stack_destruction_barrier =
2098
- std::move(calld->call_stack_destruction_barrier_);
2099
- calld->~CallData();
2100
- // Now set the callback in the CallStackDestructionBarrier object,
2101
- // right before we release our ref to it (implicitly upon returning).
2102
- // The callback will be invoked when the CallStackDestructionBarrier
2103
- // is destroyed.
2104
- call_stack_destruction_barrier->set_on_call_stack_destruction(
2105
- then_schedule_closure);
2106
- }
2107
-
2108
- void RetryFilter::CallData::StartTransportStreamOpBatch(
2109
- grpc_call_element* elem, grpc_transport_stream_op_batch* batch) {
2110
- auto* calld = static_cast<CallData*>(elem->call_data);
2111
- calld->StartTransportStreamOpBatch(batch);
2112
- }
2113
-
2114
- void RetryFilter::CallData::SetPollent(grpc_call_element* elem,
2115
- grpc_polling_entity* pollent) {
2116
- auto* calld = static_cast<CallData*>(elem->call_data);
2117
- calld->pollent_ = pollent;
2118
- }
2119
-
2120
- //
2121
- // CallData implementation
2122
- //
2123
-
2124
134
  const RetryMethodConfig* RetryFilter::GetRetryPolicy(
2125
135
  const grpc_call_context_element* context) {
2126
136
  if (context == nullptr) return nullptr;
@@ -2131,522 +141,14 @@ const RetryMethodConfig* RetryFilter::GetRetryPolicy(
2131
141
  svc_cfg_call_data->GetMethodParsedConfig(service_config_parser_index_));
2132
142
  }
2133
143
 
2134
- RetryFilter::CallData::CallData(RetryFilter* chand,
2135
- const grpc_call_element_args& args)
2136
- : chand_(chand),
2137
- retry_throttle_data_(chand->retry_throttle_data_),
2138
- retry_policy_(chand->GetRetryPolicy(args.context)),
2139
- retry_backoff_(
2140
- BackOff::Options()
2141
- .set_initial_backoff(retry_policy_ == nullptr
2142
- ? Duration::Zero()
2143
- : retry_policy_->initial_backoff())
2144
- .set_multiplier(retry_policy_ == nullptr
2145
- ? 0
2146
- : retry_policy_->backoff_multiplier())
2147
- .set_jitter(RETRY_BACKOFF_JITTER)
2148
- .set_max_backoff(retry_policy_ == nullptr
2149
- ? Duration::Zero()
2150
- : retry_policy_->max_backoff())),
2151
- path_(CSliceRef(args.path)),
2152
- deadline_(args.deadline),
2153
- arena_(args.arena),
2154
- owning_call_(args.call_stack),
2155
- call_combiner_(args.call_combiner),
2156
- call_context_(args.context),
2157
- call_stack_destruction_barrier_(
2158
- arena_->New<CallStackDestructionBarrier>()),
2159
- pending_send_initial_metadata_(false),
2160
- pending_send_message_(false),
2161
- pending_send_trailing_metadata_(false),
2162
- retry_committed_(false),
2163
- retry_timer_pending_(false),
2164
- retry_codepath_started_(false),
2165
- sent_transparent_retry_not_seen_by_server_(false) {}
2166
-
2167
- RetryFilter::CallData::~CallData() {
2168
- FreeAllCachedSendOpData();
2169
- CSliceUnref(path_);
2170
- // Make sure there are no remaining pending batches.
2171
- for (size_t i = 0; i < GPR_ARRAY_SIZE(pending_batches_); ++i) {
2172
- GPR_ASSERT(pending_batches_[i].batch == nullptr);
2173
- }
2174
- }
2175
-
2176
- void RetryFilter::CallData::StartTransportStreamOpBatch(
2177
- grpc_transport_stream_op_batch* batch) {
2178
- if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace) &&
2179
- !GRPC_TRACE_FLAG_ENABLED(grpc_trace_channel)) {
2180
- gpr_log(GPR_INFO, "chand=%p calld=%p: batch started from surface: %s",
2181
- chand_, this, grpc_transport_stream_op_batch_string(batch).c_str());
2182
- }
2183
- // If we have an LB call, delegate to the LB call.
2184
- if (committed_call_ != nullptr) {
2185
- // Note: This will release the call combiner.
2186
- committed_call_->StartTransportStreamOpBatch(batch);
2187
- return;
2188
- }
2189
- // If we were previously cancelled from the surface, fail this
2190
- // batch immediately.
2191
- if (!cancelled_from_surface_.ok()) {
2192
- // Note: This will release the call combiner.
2193
- grpc_transport_stream_op_batch_finish_with_failure(
2194
- batch, cancelled_from_surface_, call_combiner_);
2195
- return;
2196
- }
2197
- // Handle cancellation.
2198
- if (GPR_UNLIKELY(batch->cancel_stream)) {
2199
- // Save cancel_error in case subsequent batches are started.
2200
- cancelled_from_surface_ = batch->payload->cancel_stream.cancel_error;
2201
- if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
2202
- gpr_log(GPR_INFO, "chand=%p calld=%p: cancelled from surface: %s", chand_,
2203
- this, StatusToString(cancelled_from_surface_).c_str());
2204
- }
2205
- // Fail any pending batches.
2206
- PendingBatchesFail(cancelled_from_surface_);
2207
- // If we have a current call attempt, commit the call, then send
2208
- // the cancellation down to that attempt. When the call fails, it
2209
- // will not be retried, because we have committed it here.
2210
- if (call_attempt_ != nullptr) {
2211
- RetryCommit(call_attempt_.get());
2212
- // TODO(roth): When implementing hedging, this will get more
2213
- // complex, because instead of just passing the batch down to a
2214
- // single call attempt, we'll need to cancel multiple call
2215
- // attempts and wait for the cancellation on_complete from each call
2216
- // attempt before we propagate the on_complete from this batch
2217
- // back to the surface.
2218
- // Note: This will release the call combiner.
2219
- call_attempt_->CancelFromSurface(batch);
2220
- return;
2221
- }
2222
- // Cancel retry timer if needed.
2223
- if (retry_timer_pending_) {
2224
- if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
2225
- gpr_log(GPR_INFO, "chand=%p calld=%p: cancelling retry timer", chand_,
2226
- this);
2227
- }
2228
- retry_timer_pending_ = false; // Lame timer callback.
2229
- grpc_timer_cancel(&retry_timer_);
2230
- FreeAllCachedSendOpData();
2231
- }
2232
- // We have no call attempt, so there's nowhere to send the cancellation
2233
- // batch. Return it back to the surface immediately.
2234
- // Note: This will release the call combiner.
2235
- grpc_transport_stream_op_batch_finish_with_failure(
2236
- batch, cancelled_from_surface_, call_combiner_);
2237
- return;
2238
- }
2239
- // Add the batch to the pending list.
2240
- PendingBatch* pending = PendingBatchesAdd(batch);
2241
- // If the timer is pending, yield the call combiner and wait for it to
2242
- // run, since we don't want to start another call attempt until it does.
2243
- if (retry_timer_pending_) {
2244
- GRPC_CALL_COMBINER_STOP(call_combiner_,
2245
- "added pending batch while retry timer pending");
2246
- return;
2247
- }
2248
- // If we do not yet have a call attempt, create one.
2249
- if (call_attempt_ == nullptr) {
2250
- // If this is the first batch and retries are already committed
2251
- // (e.g., if this batch put the call above the buffer size limit), then
2252
- // immediately create an LB call and delegate the batch to it. This
2253
- // avoids the overhead of unnecessarily allocating a CallAttempt
2254
- // object or caching any of the send op data.
2255
- // Note that we would ideally like to do this also on subsequent
2256
- // attempts (e.g., if a batch puts the call above the buffer size
2257
- // limit since the last attempt was complete), but in practice that's
2258
- // not really worthwhile, because we will almost always have cached and
2259
- // completed at least the send_initial_metadata op on the previous
2260
- // attempt, which means that we'd need special logic to replay the
2261
- // batch anyway, which is exactly what the CallAttempt object provides.
2262
- // We also skip this optimization if perAttemptRecvTimeout is set in the
2263
- // retry policy, because we need the code in CallAttempt to handle
2264
- // the associated timer.
2265
- if (!retry_codepath_started_ && retry_committed_ &&
2266
- (retry_policy_ == nullptr ||
2267
- !retry_policy_->per_attempt_recv_timeout().has_value())) {
2268
- if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
2269
- gpr_log(GPR_INFO,
2270
- "chand=%p calld=%p: retry committed before first attempt; "
2271
- "creating LB call",
2272
- chand_, this);
2273
- }
2274
- PendingBatchClear(pending);
2275
- auto* service_config_call_data =
2276
- static_cast<ClientChannelServiceConfigCallData*>(
2277
- call_context_[GRPC_CONTEXT_SERVICE_CONFIG_CALL_DATA].value);
2278
- committed_call_ = CreateLoadBalancedCall(
2279
- service_config_call_data->call_dispatch_controller(),
2280
- /*is_transparent_retry=*/false);
2281
- committed_call_->StartTransportStreamOpBatch(batch);
2282
- return;
2283
- }
2284
- // Otherwise, create a call attempt.
2285
- // The attempt will automatically start any necessary replays or
2286
- // pending batches.
2287
- if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
2288
- gpr_log(GPR_INFO, "chand=%p calld=%p: creating call attempt", chand_,
2289
- this);
2290
- }
2291
- retry_codepath_started_ = true;
2292
- CreateCallAttempt(/*is_transparent_retry=*/false);
2293
- return;
2294
- }
2295
- // Send batches to call attempt.
2296
- if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
2297
- gpr_log(GPR_INFO, "chand=%p calld=%p: starting batch on attempt=%p", chand_,
2298
- this, call_attempt_.get());
2299
- }
2300
- call_attempt_->StartRetriableBatches();
2301
- }
2302
-
2303
- OrphanablePtr<ClientChannel::LoadBalancedCall>
2304
- RetryFilter::CallData::CreateLoadBalancedCall(
2305
- ConfigSelector::CallDispatchController* call_dispatch_controller,
2306
- bool is_transparent_retry) {
2307
- grpc_call_element_args args = {owning_call_, nullptr, call_context_,
2308
- path_, /*start_time=*/0, deadline_,
2309
- arena_, call_combiner_};
2310
- return chand_->client_channel_->CreateLoadBalancedCall(
2311
- args, pollent_,
2312
- // This callback holds a ref to the CallStackDestructionBarrier
2313
- // object until the LB call is destroyed.
2314
- call_stack_destruction_barrier_->MakeLbCallDestructionClosure(this),
2315
- call_dispatch_controller, is_transparent_retry);
2316
- }
2317
-
2318
- void RetryFilter::CallData::CreateCallAttempt(bool is_transparent_retry) {
2319
- call_attempt_ = MakeRefCounted<CallAttempt>(this, is_transparent_retry);
2320
- call_attempt_->StartRetriableBatches();
2321
- }
2322
-
2323
- //
2324
- // send op data caching
2325
- //
2326
-
2327
- void RetryFilter::CallData::MaybeCacheSendOpsForBatch(PendingBatch* pending) {
2328
- if (pending->send_ops_cached) return;
2329
- pending->send_ops_cached = true;
2330
- grpc_transport_stream_op_batch* batch = pending->batch;
2331
- // Save a copy of metadata for send_initial_metadata ops.
2332
- if (batch->send_initial_metadata) {
2333
- seen_send_initial_metadata_ = true;
2334
- grpc_metadata_batch* send_initial_metadata =
2335
- batch->payload->send_initial_metadata.send_initial_metadata;
2336
- send_initial_metadata_ = send_initial_metadata->Copy();
2337
- peer_string_ = batch->payload->send_initial_metadata.peer_string;
2338
- }
2339
- // Set up cache for send_message ops.
2340
- if (batch->send_message) {
2341
- SliceBuffer* cache = arena_->New<SliceBuffer>(std::move(
2342
- *std::exchange(batch->payload->send_message.send_message, nullptr)));
2343
- send_messages_.push_back({cache, batch->payload->send_message.flags});
2344
- }
2345
- // Save metadata batch for send_trailing_metadata ops.
2346
- if (batch->send_trailing_metadata) {
2347
- seen_send_trailing_metadata_ = true;
2348
- grpc_metadata_batch* send_trailing_metadata =
2349
- batch->payload->send_trailing_metadata.send_trailing_metadata;
2350
- send_trailing_metadata_ = send_trailing_metadata->Copy();
2351
- }
2352
- }
2353
-
2354
- void RetryFilter::CallData::FreeCachedSendInitialMetadata() {
2355
- if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
2356
- gpr_log(GPR_INFO, "chand=%p calld=%p: destroying send_initial_metadata",
2357
- chand_, this);
2358
- }
2359
- send_initial_metadata_.Clear();
2360
- }
2361
-
2362
- void RetryFilter::CallData::FreeCachedSendMessage(size_t idx) {
2363
- if (send_messages_[idx].slices != nullptr) {
2364
- if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
2365
- gpr_log(GPR_INFO,
2366
- "chand=%p calld=%p: destroying send_messages[%" PRIuPTR "]",
2367
- chand_, this, idx);
2368
- }
2369
- Destruct(std::exchange(send_messages_[idx].slices, nullptr));
2370
- }
2371
- }
2372
-
2373
- void RetryFilter::CallData::FreeCachedSendTrailingMetadata() {
2374
- if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
2375
- gpr_log(GPR_INFO, "chand=%p calld=%p: destroying send_trailing_metadata",
2376
- chand_, this);
2377
- }
2378
- send_trailing_metadata_.Clear();
2379
- }
2380
-
2381
- void RetryFilter::CallData::FreeAllCachedSendOpData() {
2382
- if (seen_send_initial_metadata_) {
2383
- FreeCachedSendInitialMetadata();
2384
- }
2385
- for (size_t i = 0; i < send_messages_.size(); ++i) {
2386
- FreeCachedSendMessage(i);
2387
- }
2388
- if (seen_send_trailing_metadata_) {
2389
- FreeCachedSendTrailingMetadata();
2390
- }
2391
- }
2392
-
2393
- //
2394
- // pending_batches management
2395
- //
2396
-
2397
- size_t RetryFilter::CallData::GetBatchIndex(
2398
- grpc_transport_stream_op_batch* batch) {
2399
- if (batch->send_initial_metadata) return 0;
2400
- if (batch->send_message) return 1;
2401
- if (batch->send_trailing_metadata) return 2;
2402
- if (batch->recv_initial_metadata) return 3;
2403
- if (batch->recv_message) return 4;
2404
- if (batch->recv_trailing_metadata) return 5;
2405
- GPR_UNREACHABLE_CODE(return (size_t)-1);
2406
- }
2407
-
2408
- // This is called via the call combiner, so access to calld is synchronized.
2409
- RetryFilter::CallData::PendingBatch* RetryFilter::CallData::PendingBatchesAdd(
2410
- grpc_transport_stream_op_batch* batch) {
2411
- const size_t idx = GetBatchIndex(batch);
2412
- if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
2413
- gpr_log(GPR_INFO,
2414
- "chand=%p calld=%p: adding pending batch at index %" PRIuPTR,
2415
- chand_, this, idx);
2416
- }
2417
- PendingBatch* pending = &pending_batches_[idx];
2418
- GPR_ASSERT(pending->batch == nullptr);
2419
- pending->batch = batch;
2420
- pending->send_ops_cached = false;
2421
- // Update state in calld about pending batches.
2422
- // Also check if the batch takes us over the retry buffer limit.
2423
- // Note: We don't check the size of trailing metadata here, because
2424
- // gRPC clients do not send trailing metadata.
2425
- if (batch->send_initial_metadata) {
2426
- pending_send_initial_metadata_ = true;
2427
- bytes_buffered_for_retry_ += batch->payload->send_initial_metadata
2428
- .send_initial_metadata->TransportSize();
2429
- }
2430
- if (batch->send_message) {
2431
- pending_send_message_ = true;
2432
- bytes_buffered_for_retry_ +=
2433
- batch->payload->send_message.send_message->Length();
2434
- }
2435
- if (batch->send_trailing_metadata) {
2436
- pending_send_trailing_metadata_ = true;
2437
- }
2438
- // TODO(roth): When we implement hedging, if there are currently attempts
2439
- // in flight, we will need to pick the one on which the max number of send
2440
- // ops have already been sent, and we commit to that attempt.
2441
- if (GPR_UNLIKELY(bytes_buffered_for_retry_ >
2442
- chand_->per_rpc_retry_buffer_size_)) {
2443
- if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
2444
- gpr_log(GPR_INFO,
2445
- "chand=%p calld=%p: exceeded retry buffer size, committing",
2446
- chand_, this);
2447
- }
2448
- RetryCommit(call_attempt_.get());
2449
- }
2450
- return pending;
2451
- }
2452
-
2453
- void RetryFilter::CallData::PendingBatchClear(PendingBatch* pending) {
2454
- if (pending->batch->send_initial_metadata) {
2455
- pending_send_initial_metadata_ = false;
2456
- }
2457
- if (pending->batch->send_message) {
2458
- pending_send_message_ = false;
2459
- }
2460
- if (pending->batch->send_trailing_metadata) {
2461
- pending_send_trailing_metadata_ = false;
2462
- }
2463
- pending->batch = nullptr;
2464
- }
2465
-
2466
- void RetryFilter::CallData::MaybeClearPendingBatch(PendingBatch* pending) {
2467
- grpc_transport_stream_op_batch* batch = pending->batch;
2468
- // We clear the pending batch if all of its callbacks have been
2469
- // scheduled and reset to nullptr.
2470
- if (batch->on_complete == nullptr &&
2471
- (!batch->recv_initial_metadata ||
2472
- batch->payload->recv_initial_metadata.recv_initial_metadata_ready ==
2473
- nullptr) &&
2474
- (!batch->recv_message ||
2475
- batch->payload->recv_message.recv_message_ready == nullptr) &&
2476
- (!batch->recv_trailing_metadata ||
2477
- batch->payload->recv_trailing_metadata.recv_trailing_metadata_ready ==
2478
- nullptr)) {
2479
- if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
2480
- gpr_log(GPR_INFO, "chand=%p calld=%p: clearing pending batch", chand_,
2481
- this);
2482
- }
2483
- PendingBatchClear(pending);
2484
- }
2485
- }
2486
-
2487
- // This is called via the call combiner, so access to calld is synchronized.
2488
- void RetryFilter::CallData::FailPendingBatchInCallCombiner(
2489
- void* arg, grpc_error_handle error) {
2490
- grpc_transport_stream_op_batch* batch =
2491
- static_cast<grpc_transport_stream_op_batch*>(arg);
2492
- CallData* call = static_cast<CallData*>(batch->handler_private.extra_arg);
2493
- // Note: This will release the call combiner.
2494
- grpc_transport_stream_op_batch_finish_with_failure(batch, error,
2495
- call->call_combiner_);
2496
- }
2497
-
2498
- // This is called via the call combiner, so access to calld is synchronized.
2499
- void RetryFilter::CallData::PendingBatchesFail(grpc_error_handle error) {
2500
- GPR_ASSERT(!error.ok());
2501
- if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
2502
- size_t num_batches = 0;
2503
- for (size_t i = 0; i < GPR_ARRAY_SIZE(pending_batches_); ++i) {
2504
- if (pending_batches_[i].batch != nullptr) ++num_batches;
2505
- }
2506
- gpr_log(GPR_INFO,
2507
- "chand=%p calld=%p: failing %" PRIuPTR " pending batches: %s",
2508
- chand_, this, num_batches, StatusToString(error).c_str());
2509
- }
2510
- CallCombinerClosureList closures;
2511
- for (size_t i = 0; i < GPR_ARRAY_SIZE(pending_batches_); ++i) {
2512
- PendingBatch* pending = &pending_batches_[i];
2513
- grpc_transport_stream_op_batch* batch = pending->batch;
2514
- if (batch != nullptr) {
2515
- batch->handler_private.extra_arg = this;
2516
- GRPC_CLOSURE_INIT(&batch->handler_private.closure,
2517
- FailPendingBatchInCallCombiner, batch,
2518
- grpc_schedule_on_exec_ctx);
2519
- closures.Add(&batch->handler_private.closure, error,
2520
- "PendingBatchesFail");
2521
- PendingBatchClear(pending);
2522
- }
2523
- }
2524
- closures.RunClosuresWithoutYielding(call_combiner_);
2525
- }
2526
-
2527
- template <typename Predicate>
2528
- RetryFilter::CallData::PendingBatch* RetryFilter::CallData::PendingBatchFind(
2529
- const char* log_message, Predicate predicate) {
2530
- for (size_t i = 0; i < GPR_ARRAY_SIZE(pending_batches_); ++i) {
2531
- PendingBatch* pending = &pending_batches_[i];
2532
- grpc_transport_stream_op_batch* batch = pending->batch;
2533
- if (batch != nullptr && predicate(batch)) {
2534
- if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
2535
- gpr_log(GPR_INFO,
2536
- "chand=%p calld=%p: %s pending batch at index %" PRIuPTR,
2537
- chand_, this, log_message, i);
2538
- }
2539
- return pending;
2540
- }
2541
- }
2542
- return nullptr;
2543
- }
2544
-
2545
- //
2546
- // retry code
2547
- //
2548
-
2549
- void RetryFilter::CallData::RetryCommit(CallAttempt* call_attempt) {
2550
- if (retry_committed_) return;
2551
- retry_committed_ = true;
2552
- if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
2553
- gpr_log(GPR_INFO, "chand=%p calld=%p: committing retries", chand_, this);
2554
- }
2555
- if (call_attempt != nullptr) {
2556
- // If the call attempt's LB call has been committed, inform the call
2557
- // dispatch controller that the call has been committed.
2558
- // Note: If call_attempt is null, this is happening before the first
2559
- // retry attempt is started, in which case we'll just pass the real
2560
- // call dispatch controller down into the LB call, and it won't be
2561
- // our problem anymore.
2562
- if (call_attempt->lb_call_committed()) {
2563
- auto* service_config_call_data =
2564
- static_cast<ClientChannelServiceConfigCallData*>(
2565
- call_context_[GRPC_CONTEXT_SERVICE_CONFIG_CALL_DATA].value);
2566
- service_config_call_data->call_dispatch_controller()->Commit();
2567
- }
2568
- // Free cached send ops.
2569
- call_attempt->FreeCachedSendOpDataAfterCommit();
2570
- }
2571
- }
2572
-
2573
- void RetryFilter::CallData::StartRetryTimer(
2574
- absl::optional<Duration> server_pushback) {
2575
- // Reset call attempt.
2576
- call_attempt_.reset(DEBUG_LOCATION, "StartRetryTimer");
2577
- // Compute backoff delay.
2578
- Timestamp next_attempt_time;
2579
- if (server_pushback.has_value()) {
2580
- GPR_ASSERT(*server_pushback >= Duration::Zero());
2581
- next_attempt_time = Timestamp::Now() + *server_pushback;
2582
- retry_backoff_.Reset();
2583
- } else {
2584
- next_attempt_time = retry_backoff_.NextAttemptTime();
2585
- }
2586
- if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
2587
- gpr_log(GPR_INFO,
2588
- "chand=%p calld=%p: retrying failed call in %" PRId64 " ms", chand_,
2589
- this, (next_attempt_time - Timestamp::Now()).millis());
2590
- }
2591
- // Schedule retry after computed delay.
2592
- GRPC_CLOSURE_INIT(&retry_closure_, OnRetryTimer, this, nullptr);
2593
- GRPC_CALL_STACK_REF(owning_call_, "OnRetryTimer");
2594
- retry_timer_pending_ = true;
2595
- grpc_timer_init(&retry_timer_, next_attempt_time, &retry_closure_);
2596
- }
2597
-
2598
- void RetryFilter::CallData::OnRetryTimer(void* arg, grpc_error_handle error) {
2599
- auto* calld = static_cast<CallData*>(arg);
2600
- GRPC_CLOSURE_INIT(&calld->retry_closure_, OnRetryTimerLocked, calld, nullptr);
2601
- GRPC_CALL_COMBINER_START(calld->call_combiner_, &calld->retry_closure_, error,
2602
- "retry timer fired");
2603
- }
2604
-
2605
- void RetryFilter::CallData::OnRetryTimerLocked(void* arg,
2606
- grpc_error_handle error) {
2607
- auto* calld = static_cast<CallData*>(arg);
2608
- if (error.ok() && calld->retry_timer_pending_) {
2609
- calld->retry_timer_pending_ = false;
2610
- calld->CreateCallAttempt(/*is_transparent_retry=*/false);
2611
- } else {
2612
- GRPC_CALL_COMBINER_STOP(calld->call_combiner_, "retry timer cancelled");
2613
- }
2614
- GRPC_CALL_STACK_UNREF(calld->owning_call_, "OnRetryTimer");
2615
- }
2616
-
2617
- void RetryFilter::CallData::AddClosureToStartTransparentRetry(
2618
- CallCombinerClosureList* closures) {
2619
- if (GRPC_TRACE_FLAG_ENABLED(grpc_retry_trace)) {
2620
- gpr_log(GPR_INFO, "chand=%p calld=%p: scheduling transparent retry", chand_,
2621
- this);
2622
- }
2623
- GRPC_CALL_STACK_REF(owning_call_, "OnRetryTimer");
2624
- GRPC_CLOSURE_INIT(&retry_closure_, StartTransparentRetry, this, nullptr);
2625
- closures->Add(&retry_closure_, absl::OkStatus(), "start transparent retry");
2626
- }
2627
-
2628
- void RetryFilter::CallData::StartTransparentRetry(void* arg,
2629
- grpc_error_handle /*error*/) {
2630
- auto* calld = static_cast<CallData*>(arg);
2631
- if (calld->cancelled_from_surface_.ok()) {
2632
- calld->CreateCallAttempt(/*is_transparent_retry=*/true);
2633
- } else {
2634
- GRPC_CALL_COMBINER_STOP(calld->call_combiner_,
2635
- "call cancelled before transparent retry");
2636
- }
2637
- GRPC_CALL_STACK_UNREF(calld->owning_call_, "OnRetryTimer");
2638
- }
2639
-
2640
- } // namespace
2641
-
2642
- const grpc_channel_filter kRetryFilterVtable = {
2643
- RetryFilter::CallData::StartTransportStreamOpBatch,
144
+ const grpc_channel_filter RetryFilter::kVtable = {
145
+ RetryFilter::LegacyCallData::StartTransportStreamOpBatch,
2644
146
  nullptr,
2645
147
  RetryFilter::StartTransportOp,
2646
- sizeof(RetryFilter::CallData),
2647
- RetryFilter::CallData::Init,
2648
- RetryFilter::CallData::SetPollent,
2649
- RetryFilter::CallData::Destroy,
148
+ sizeof(RetryFilter::LegacyCallData),
149
+ RetryFilter::LegacyCallData::Init,
150
+ RetryFilter::LegacyCallData::SetPollent,
151
+ RetryFilter::LegacyCallData::Destroy,
2650
152
  sizeof(RetryFilter),
2651
153
  RetryFilter::Init,
2652
154
  grpc_channel_stack_no_post_init,