grpc 1.62.0 → 1.65.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1867) hide show
  1. checksums.yaml +4 -4
  2. data/Makefile +497 -2042
  3. data/include/grpc/byte_buffer.h +1 -2
  4. data/include/grpc/census.h +1 -2
  5. data/include/grpc/compression.h +1 -2
  6. data/include/grpc/credentials.h +1222 -0
  7. data/include/grpc/event_engine/endpoint_config.h +2 -2
  8. data/include/grpc/event_engine/event_engine.h +17 -8
  9. data/include/grpc/event_engine/extensible.h +2 -2
  10. data/include/grpc/event_engine/internal/memory_allocator_impl.h +1 -2
  11. data/include/grpc/event_engine/memory_allocator.h +1 -2
  12. data/include/grpc/event_engine/memory_request.h +2 -2
  13. data/include/grpc/event_engine/slice.h +1 -2
  14. data/include/grpc/event_engine/slice_buffer.h +1 -2
  15. data/include/grpc/grpc.h +8 -8
  16. data/include/grpc/grpc_audit_logging.h +1 -2
  17. data/include/grpc/grpc_crl_provider.h +3 -2
  18. data/include/grpc/grpc_cronet.h +1 -2
  19. data/include/grpc/grpc_posix.h +1 -2
  20. data/include/grpc/grpc_security.h +1 -1173
  21. data/include/grpc/impl/call.h +1 -2
  22. data/include/grpc/impl/channel_arg_names.h +11 -6
  23. data/include/grpc/impl/grpc_types.h +1 -2
  24. data/include/grpc/impl/slice_type.h +2 -2
  25. data/include/grpc/module.modulemap +3 -0
  26. data/include/grpc/passive_listener.h +62 -0
  27. data/include/grpc/slice.h +1 -2
  28. data/include/grpc/slice_buffer.h +1 -2
  29. data/include/grpc/support/alloc.h +2 -2
  30. data/include/grpc/support/json.h +2 -2
  31. data/include/grpc/support/log.h +9 -19
  32. data/include/grpc/support/metrics.h +51 -0
  33. data/include/grpc/support/port_platform.h +3 -0
  34. data/include/grpc/support/string_util.h +0 -1
  35. data/include/grpc/support/sync.h +0 -1
  36. data/include/grpc/support/sync_abseil.h +0 -1
  37. data/include/grpc/support/sync_custom.h +0 -1
  38. data/include/grpc/support/sync_generic.h +1 -2
  39. data/include/grpc/support/sync_posix.h +1 -2
  40. data/include/grpc/support/time.h +2 -2
  41. data/src/core/{lib/channel → channelz}/channel_trace.cc +57 -63
  42. data/src/core/{lib/channel → channelz}/channel_trace.h +22 -20
  43. data/src/core/{lib/channel → channelz}/channelz.cc +71 -9
  44. data/src/core/{lib/channel → channelz}/channelz.h +61 -19
  45. data/src/core/{lib/channel → channelz}/channelz_registry.cc +11 -9
  46. data/src/core/{lib/channel → channelz}/channelz_registry.h +7 -7
  47. data/src/core/client_channel/backup_poller.cc +4 -5
  48. data/src/core/client_channel/client_channel.cc +1324 -0
  49. data/src/core/client_channel/client_channel.h +243 -0
  50. data/src/core/client_channel/client_channel_filter.cc +354 -791
  51. data/src/core/client_channel/client_channel_filter.h +18 -81
  52. data/src/core/client_channel/client_channel_internal.h +20 -8
  53. data/src/core/client_channel/client_channel_plugin.cc +1 -14
  54. data/src/core/client_channel/client_channel_service_config.h +8 -7
  55. data/src/core/client_channel/config_selector.cc +1 -1
  56. data/src/core/client_channel/config_selector.h +6 -5
  57. data/src/core/client_channel/connector.h +1 -1
  58. data/src/core/client_channel/dynamic_filters.cc +6 -5
  59. data/src/core/client_channel/dynamic_filters.h +2 -4
  60. data/src/core/client_channel/load_balanced_call_destination.cc +336 -0
  61. data/src/core/client_channel/load_balanced_call_destination.h +49 -0
  62. data/src/core/client_channel/local_subchannel_pool.cc +5 -3
  63. data/src/core/client_channel/retry_filter.cc +3 -10
  64. data/src/core/client_channel/retry_filter.h +6 -10
  65. data/src/core/client_channel/retry_filter_legacy_call_data.cc +71 -77
  66. data/src/core/client_channel/retry_filter_legacy_call_data.h +9 -11
  67. data/src/core/client_channel/retry_service_config.cc +4 -5
  68. data/src/core/client_channel/retry_service_config.h +6 -6
  69. data/src/core/client_channel/retry_throttle.h +3 -2
  70. data/src/core/client_channel/subchannel.cc +233 -124
  71. data/src/core/client_channel/subchannel.h +36 -24
  72. data/src/core/client_channel/subchannel_pool_interface.cc +0 -2
  73. data/src/core/client_channel/subchannel_pool_interface.h +3 -5
  74. data/src/core/client_channel/subchannel_stream_client.cc +41 -56
  75. data/src/core/client_channel/subchannel_stream_client.h +4 -6
  76. data/src/core/ext/filters/backend_metrics/backend_metric_filter.cc +14 -62
  77. data/src/core/ext/filters/backend_metrics/backend_metric_filter.h +3 -14
  78. data/src/core/ext/filters/backend_metrics/backend_metric_provider.h +7 -0
  79. data/src/core/ext/filters/census/grpc_context.cc +2 -4
  80. data/src/core/ext/filters/channel_idle/legacy_channel_idle_filter.cc +20 -25
  81. data/src/core/ext/filters/channel_idle/legacy_channel_idle_filter.h +12 -11
  82. data/src/core/ext/filters/fault_injection/fault_injection_filter.cc +11 -16
  83. data/src/core/ext/filters/fault_injection/fault_injection_filter.h +5 -4
  84. data/src/core/ext/filters/fault_injection/fault_injection_service_config_parser.h +3 -3
  85. data/src/core/ext/filters/http/client/http_client_filter.cc +6 -4
  86. data/src/core/ext/filters/http/client/http_client_filter.h +6 -5
  87. data/src/core/ext/filters/http/client_authority_filter.cc +5 -3
  88. data/src/core/ext/filters/http/client_authority_filter.h +6 -4
  89. data/src/core/ext/filters/http/http_filters_plugin.cc +15 -35
  90. data/src/core/ext/filters/http/message_compress/compression_filter.cc +27 -30
  91. data/src/core/ext/filters/http/message_compress/compression_filter.h +12 -9
  92. data/src/core/ext/filters/http/server/http_server_filter.cc +5 -5
  93. data/src/core/ext/filters/http/server/http_server_filter.h +6 -5
  94. data/src/core/ext/filters/message_size/message_size_filter.cc +30 -37
  95. data/src/core/ext/filters/message_size/message_size_filter.h +14 -12
  96. data/src/core/ext/filters/rbac/rbac_filter.cc +7 -12
  97. data/src/core/ext/filters/rbac/rbac_filter.h +6 -5
  98. data/src/core/ext/filters/rbac/rbac_service_config_parser.cc +4 -4
  99. data/src/core/ext/filters/rbac/rbac_service_config_parser.h +1 -1
  100. data/src/core/ext/filters/stateful_session/stateful_session_filter.cc +14 -18
  101. data/src/core/ext/filters/stateful_session/stateful_session_filter.h +4 -2
  102. data/src/core/ext/filters/stateful_session/stateful_session_service_config_parser.h +3 -3
  103. data/src/core/ext/transport/chttp2/alpn/alpn.cc +5 -4
  104. data/src/core/ext/transport/chttp2/alpn/alpn.h +2 -2
  105. data/src/core/ext/transport/chttp2/client/chttp2_connector.cc +22 -44
  106. data/src/core/ext/transport/chttp2/client/chttp2_connector.h +2 -8
  107. data/src/core/ext/transport/chttp2/server/chttp2_server.cc +266 -154
  108. data/src/core/ext/transport/chttp2/server/chttp2_server.h +36 -3
  109. data/src/core/ext/transport/chttp2/transport/bin_decoder.cc +6 -6
  110. data/src/core/ext/transport/chttp2/transport/bin_decoder.h +1 -2
  111. data/src/core/ext/transport/chttp2/transport/bin_encoder.cc +8 -7
  112. data/src/core/ext/transport/chttp2/transport/bin_encoder.h +1 -2
  113. data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +204 -228
  114. data/src/core/ext/transport/chttp2/transport/chttp2_transport.h +33 -15
  115. data/src/core/ext/transport/chttp2/transport/context_list_entry.h +16 -13
  116. data/src/core/ext/transport/chttp2/transport/decode_huff.cc +2 -2
  117. data/src/core/ext/transport/chttp2/transport/decode_huff.h +2 -2
  118. data/src/core/ext/transport/chttp2/transport/flow_control.cc +6 -8
  119. data/src/core/ext/transport/chttp2/transport/flow_control.h +4 -6
  120. data/src/core/ext/transport/chttp2/transport/frame.cc +4 -4
  121. data/src/core/ext/transport/chttp2/transport/frame.h +2 -2
  122. data/src/core/ext/transport/chttp2/transport/frame_data.cc +3 -3
  123. data/src/core/ext/transport/chttp2/transport/frame_data.h +1 -2
  124. data/src/core/ext/transport/chttp2/transport/frame_goaway.cc +5 -5
  125. data/src/core/ext/transport/chttp2/transport/frame_goaway.h +1 -2
  126. data/src/core/ext/transport/chttp2/transport/frame_ping.cc +7 -9
  127. data/src/core/ext/transport/chttp2/transport/frame_ping.h +1 -2
  128. data/src/core/ext/transport/chttp2/transport/frame_rst_stream.cc +4 -5
  129. data/src/core/ext/transport/chttp2/transport/frame_rst_stream.h +1 -2
  130. data/src/core/ext/transport/chttp2/transport/frame_settings.cc +10 -7
  131. data/src/core/ext/transport/chttp2/transport/frame_settings.h +1 -2
  132. data/src/core/ext/transport/chttp2/transport/frame_window_update.cc +4 -4
  133. data/src/core/ext/transport/chttp2/transport/frame_window_update.h +1 -2
  134. data/src/core/ext/transport/chttp2/transport/hpack_constants.h +2 -2
  135. data/src/core/ext/transport/chttp2/transport/hpack_encoder.cc +9 -7
  136. data/src/core/ext/transport/chttp2/transport/hpack_encoder.h +10 -4
  137. data/src/core/ext/transport/chttp2/transport/hpack_encoder_table.cc +10 -9
  138. data/src/core/ext/transport/chttp2/transport/hpack_encoder_table.h +2 -2
  139. data/src/core/ext/transport/chttp2/transport/hpack_parse_result.cc +4 -3
  140. data/src/core/ext/transport/chttp2/transport/hpack_parse_result.h +3 -3
  141. data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +30 -80
  142. data/src/core/ext/transport/chttp2/transport/hpack_parser.h +2 -5
  143. data/src/core/ext/transport/chttp2/transport/hpack_parser_table.cc +8 -13
  144. data/src/core/ext/transport/chttp2/transport/hpack_parser_table.h +2 -2
  145. data/src/core/ext/transport/chttp2/transport/http2_settings.cc +3 -3
  146. data/src/core/ext/transport/chttp2/transport/http2_settings.h +3 -3
  147. data/src/core/ext/transport/chttp2/transport/huffsyms.cc +2 -2
  148. data/src/core/ext/transport/chttp2/transport/internal.h +33 -23
  149. data/src/core/ext/transport/chttp2/transport/max_concurrent_streams_policy.cc +4 -3
  150. data/src/core/ext/transport/chttp2/transport/max_concurrent_streams_policy.h +2 -2
  151. data/src/core/ext/transport/chttp2/transport/parsing.cc +34 -49
  152. data/src/core/ext/transport/chttp2/transport/ping_abuse_policy.cc +1 -2
  153. data/src/core/ext/transport/chttp2/transport/ping_abuse_policy.h +2 -2
  154. data/src/core/ext/transport/chttp2/transport/ping_callbacks.cc +3 -5
  155. data/src/core/ext/transport/chttp2/transport/ping_callbacks.h +1 -4
  156. data/src/core/ext/transport/chttp2/transport/ping_rate_policy.cc +30 -15
  157. data/src/core/ext/transport/chttp2/transport/ping_rate_policy.h +7 -6
  158. data/src/core/ext/transport/chttp2/transport/stream_lists.cc +10 -11
  159. data/src/core/ext/transport/chttp2/transport/varint.cc +2 -2
  160. data/src/core/ext/transport/chttp2/transport/varint.h +4 -3
  161. data/src/core/ext/transport/chttp2/transport/write_size_policy.cc +4 -3
  162. data/src/core/ext/transport/chttp2/transport/write_size_policy.h +2 -2
  163. data/src/core/ext/transport/chttp2/transport/writing.cc +91 -76
  164. data/src/core/ext/transport/inproc/inproc_transport.cc +65 -39
  165. data/src/core/ext/transport/inproc/inproc_transport.h +2 -5
  166. data/src/core/ext/transport/inproc/legacy_inproc_transport.cc +29 -31
  167. data/src/core/ext/transport/inproc/legacy_inproc_transport.h +1 -4
  168. data/src/core/ext/upb-gen/envoy/admin/v3/certs.upb.h +243 -230
  169. data/src/core/ext/upb-gen/envoy/admin/v3/certs.upb_minitable.c +42 -48
  170. data/src/core/ext/upb-gen/envoy/admin/v3/clusters.upb.h +289 -265
  171. data/src/core/ext/upb-gen/envoy/admin/v3/clusters.upb_minitable.c +62 -70
  172. data/src/core/ext/upb-gen/envoy/admin/v3/config_dump.upb.h +238 -226
  173. data/src/core/ext/upb-gen/envoy/admin/v3/config_dump.upb_minitable.c +42 -50
  174. data/src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb.h +937 -882
  175. data/src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb_minitable.c +182 -208
  176. data/src/core/ext/upb-gen/envoy/admin/v3/init_dump.upb.h +77 -76
  177. data/src/core/ext/upb-gen/envoy/admin/v3/init_dump.upb_minitable.c +9 -9
  178. data/src/core/ext/upb-gen/envoy/admin/v3/listeners.upb.h +86 -84
  179. data/src/core/ext/upb-gen/envoy/admin/v3/listeners.upb_minitable.c +13 -13
  180. data/src/core/ext/upb-gen/envoy/admin/v3/memory.upb.h +49 -42
  181. data/src/core/ext/upb-gen/envoy/admin/v3/memory.upb_minitable.c +13 -13
  182. data/src/core/ext/upb-gen/envoy/admin/v3/metrics.upb.h +28 -24
  183. data/src/core/ext/upb-gen/envoy/admin/v3/metrics.upb_minitable.c +7 -7
  184. data/src/core/ext/upb-gen/envoy/admin/v3/mutex_stats.upb.h +28 -24
  185. data/src/core/ext/upb-gen/envoy/admin/v3/mutex_stats.upb_minitable.c +7 -7
  186. data/src/core/ext/upb-gen/envoy/admin/v3/server_info.upb.h +357 -318
  187. data/src/core/ext/upb-gen/envoy/admin/v3/server_info.upb_minitable.c +86 -86
  188. data/src/core/ext/upb-gen/envoy/admin/v3/tap.upb.h +23 -20
  189. data/src/core/ext/upb-gen/envoy/admin/v3/tap.upb_minitable.c +5 -7
  190. data/src/core/ext/upb-gen/envoy/annotations/deprecation.upb.h +40 -32
  191. data/src/core/ext/upb-gen/envoy/annotations/deprecation.upb_minitable.c +4 -4
  192. data/src/core/ext/upb-gen/envoy/annotations/resource.upb.h +24 -20
  193. data/src/core/ext/upb-gen/envoy/annotations/resource.upb_minitable.c +4 -4
  194. data/src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb.h +517 -473
  195. data/src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb_minitable.c +105 -125
  196. data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb.h +1207 -1108
  197. data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb_minitable.c +261 -289
  198. data/src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb.h +163 -152
  199. data/src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb_minitable.c +29 -43
  200. data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb.h +1265 -1137
  201. data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb_minitable.c +276 -346
  202. data/src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb.h +32 -28
  203. data/src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb_minitable.c +7 -9
  204. data/src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb.h +212 -188
  205. data/src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb_minitable.c +53 -69
  206. data/src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb.h +564 -508
  207. data/src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb_minitable.c +123 -131
  208. data/src/core/ext/upb-gen/envoy/config/core/v3/address.upb.h +340 -309
  209. data/src/core/ext/upb-gen/envoy/config/core/v3/address.upb_minitable.c +69 -83
  210. data/src/core/ext/upb-gen/envoy/config/core/v3/backoff.upb.h +25 -22
  211. data/src/core/ext/upb-gen/envoy/config/core/v3/backoff.upb_minitable.c +5 -11
  212. data/src/core/ext/upb-gen/envoy/config/core/v3/base.upb.h +786 -688
  213. data/src/core/ext/upb-gen/envoy/config/core/v3/base.upb_minitable.c +171 -189
  214. data/src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb.h +367 -343
  215. data/src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb_minitable.c +72 -80
  216. data/src/core/ext/upb-gen/envoy/config/core/v3/event_service_config.upb.h +19 -16
  217. data/src/core/ext/upb-gen/envoy/config/core/v3/event_service_config.upb_minitable.c +4 -4
  218. data/src/core/ext/upb-gen/envoy/config/core/v3/extension.upb.h +23 -20
  219. data/src/core/ext/upb-gen/envoy/config/core/v3/extension.upb_minitable.c +5 -7
  220. data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_method_list.upb.h +77 -76
  221. data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_method_list.upb_minitable.c +9 -9
  222. data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb.h +539 -471
  223. data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb_minitable.c +125 -141
  224. data/src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb.h +672 -632
  225. data/src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb_minitable.c +137 -137
  226. data/src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb.h +44 -43
  227. data/src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb_minitable.c +7 -7
  228. data/src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb.h +35 -30
  229. data/src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb_minitable.c +8 -8
  230. data/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb.h +713 -637
  231. data/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb_minitable.c +166 -208
  232. data/src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb.h +65 -61
  233. data/src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb_minitable.c +10 -12
  234. data/src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb.h +65 -61
  235. data/src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb_minitable.c +11 -13
  236. data/src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb.h +91 -83
  237. data/src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb_minitable.c +17 -17
  238. data/src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb.h +102 -93
  239. data/src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb_minitable.c +22 -22
  240. data/src/core/ext/upb-gen/envoy/config/core/v3/udp_socket_config.upb.h +25 -22
  241. data/src/core/ext/upb-gen/envoy/config/core/v3/udp_socket_config.upb_minitable.c +5 -11
  242. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb.h +162 -145
  243. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb_minitable.c +32 -40
  244. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb.h +314 -287
  245. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb_minitable.c +70 -74
  246. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb.h +330 -309
  247. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb_minitable.c +66 -66
  248. data/src/core/ext/upb-gen/envoy/config/listener/v3/api_listener.upb.h +16 -14
  249. data/src/core/ext/upb-gen/envoy/config/listener/v3/api_listener.upb_minitable.c +3 -7
  250. data/src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb.h +516 -478
  251. data/src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb_minitable.c +110 -120
  252. data/src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb.h +495 -468
  253. data/src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb_minitable.c +89 -101
  254. data/src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb.h +88 -78
  255. data/src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb_minitable.c +19 -37
  256. data/src/core/ext/upb-gen/envoy/config/listener/v3/udp_listener_config.upb.h +41 -36
  257. data/src/core/ext/upb-gen/envoy/config/listener/v3/udp_listener_config.upb_minitable.c +8 -26
  258. data/src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb.h +46 -40
  259. data/src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb_minitable.c +13 -13
  260. data/src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb.h +307 -279
  261. data/src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb_minitable.c +60 -64
  262. data/src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb.h +382 -358
  263. data/src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb_minitable.c +70 -70
  264. data/src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb.h +540 -490
  265. data/src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb_minitable.c +122 -136
  266. data/src/core/ext/upb-gen/envoy/config/route/v3/route.upb.h +339 -327
  267. data/src/core/ext/upb-gen/envoy/config/route/v3/route.upb_minitable.c +48 -70
  268. data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb.h +3407 -3145
  269. data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb_minitable.c +700 -752
  270. data/src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb.h +100 -91
  271. data/src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb_minitable.c +20 -20
  272. data/src/core/ext/upb-gen/envoy/config/tap/v3/common.upb.h +472 -430
  273. data/src/core/ext/upb-gen/envoy/config/tap/v3/common.upb_minitable.c +102 -116
  274. data/src/core/ext/upb-gen/envoy/config/trace/v3/datadog.upb.h +28 -24
  275. data/src/core/ext/upb-gen/envoy/config/trace/v3/datadog.upb_minitable.c +7 -7
  276. data/src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb.h +23 -20
  277. data/src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb_minitable.c +5 -7
  278. data/src/core/ext/upb-gen/envoy/config/trace/v3/http_tracer.upb.h +42 -36
  279. data/src/core/ext/upb-gen/envoy/config/trace/v3/http_tracer.upb_minitable.c +9 -13
  280. data/src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb.h +58 -55
  281. data/src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb_minitable.c +9 -13
  282. data/src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb.h +146 -136
  283. data/src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb_minitable.c +30 -30
  284. data/src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb.h +69 -65
  285. data/src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb_minitable.c +15 -15
  286. data/src/core/ext/upb-gen/envoy/config/trace/v3/service.upb.h +16 -14
  287. data/src/core/ext/upb-gen/envoy/config/trace/v3/service.upb_minitable.c +3 -7
  288. data/src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb.h +67 -58
  289. data/src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb_minitable.c +14 -24
  290. data/src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb.h +64 -56
  291. data/src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb_minitable.c +14 -20
  292. data/src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb.h +58 -50
  293. data/src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb_minitable.c +16 -16
  294. data/src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb.h +986 -832
  295. data/src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb_minitable.c +269 -281
  296. data/src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb.h +35 -35
  297. data/src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb_minitable.c +3 -3
  298. data/src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3/fault.upb.h +102 -88
  299. data/src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3/fault.upb_minitable.c +25 -25
  300. data/src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb.h +224 -204
  301. data/src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb_minitable.c +46 -62
  302. data/src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb.h +66 -58
  303. data/src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb_minitable.c +14 -24
  304. data/src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb.h +160 -153
  305. data/src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb_minitable.c +28 -30
  306. data/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb.h +51 -44
  307. data/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb_minitable.c +12 -12
  308. data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h +1349 -1230
  309. data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb_minitable.c +293 -309
  310. data/src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb.h +16 -14
  311. data/src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb_minitable.c +3 -7
  312. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb.h +61 -54
  313. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb_minitable.c +13 -23
  314. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb.h +124 -108
  315. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb_minitable.c +29 -37
  316. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb.h +14 -12
  317. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb_minitable.c +3 -3
  318. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb.h +66 -58
  319. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb_minitable.c +20 -20
  320. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb.h +16 -14
  321. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb_minitable.c +3 -7
  322. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb.h +518 -493
  323. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb_minitable.c +82 -108
  324. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb.h +92 -80
  325. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb_minitable.c +23 -29
  326. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb.h +497 -457
  327. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb_minitable.c +110 -124
  328. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb.h +58 -55
  329. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb_minitable.c +9 -11
  330. data/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb.h +206 -185
  331. data/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb_minitable.c +48 -64
  332. data/src/core/ext/upb-gen/envoy/service/discovery/v3/ads.upb.h +7 -6
  333. data/src/core/ext/upb-gen/envoy/service/discovery/v3/ads.upb_minitable.c +1 -1
  334. data/src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb.h +766 -710
  335. data/src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb_minitable.c +140 -150
  336. data/src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb.h +102 -98
  337. data/src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb_minitable.c +17 -17
  338. data/src/core/ext/upb-gen/envoy/service/status/v3/csds.upb.h +310 -288
  339. data/src/core/ext/upb-gen/envoy/service/status/v3/csds.upb_minitable.c +67 -67
  340. data/src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb.h +30 -26
  341. data/src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb_minitable.c +8 -8
  342. data/src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb.h +77 -71
  343. data/src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb_minitable.c +13 -13
  344. data/src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb.h +26 -22
  345. data/src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb_minitable.c +6 -6
  346. data/src/core/ext/upb-gen/envoy/type/matcher/v3/http_inputs.upb.h +70 -60
  347. data/src/core/ext/upb-gen/envoy/type/matcher/v3/http_inputs.upb_minitable.c +15 -15
  348. data/src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb.h +77 -71
  349. data/src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb_minitable.c +14 -14
  350. data/src/core/ext/upb-gen/envoy/type/matcher/v3/node.upb.h +44 -43
  351. data/src/core/ext/upb-gen/envoy/type/matcher/v3/node.upb_minitable.c +7 -7
  352. data/src/core/ext/upb-gen/envoy/type/matcher/v3/number.upb.h +28 -24
  353. data/src/core/ext/upb-gen/envoy/type/matcher/v3/number.upb_minitable.c +6 -6
  354. data/src/core/ext/upb-gen/envoy/type/matcher/v3/path.upb.h +19 -16
  355. data/src/core/ext/upb-gen/envoy/type/matcher/v3/path.upb_minitable.c +4 -4
  356. data/src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb.h +65 -56
  357. data/src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb_minitable.c +15 -19
  358. data/src/core/ext/upb-gen/envoy/type/matcher/v3/status_code_input.upb.h +14 -12
  359. data/src/core/ext/upb-gen/envoy/type/matcher/v3/status_code_input.upb_minitable.c +2 -2
  360. data/src/core/ext/upb-gen/envoy/type/matcher/v3/string.upb.h +97 -89
  361. data/src/core/ext/upb-gen/envoy/type/matcher/v3/string.upb_minitable.c +18 -18
  362. data/src/core/ext/upb-gen/envoy/type/matcher/v3/struct.upb.h +63 -59
  363. data/src/core/ext/upb-gen/envoy/type/matcher/v3/struct.upb_minitable.c +10 -10
  364. data/src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb.h +134 -121
  365. data/src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb_minitable.c +29 -29
  366. data/src/core/ext/upb-gen/envoy/type/metadata/v3/metadata.upb.h +135 -121
  367. data/src/core/ext/upb-gen/envoy/type/metadata/v3/metadata.upb_minitable.c +26 -26
  368. data/src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb.h +141 -122
  369. data/src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb_minitable.c +37 -37
  370. data/src/core/ext/upb-gen/envoy/type/v3/hash_policy.upb.h +49 -42
  371. data/src/core/ext/upb-gen/envoy/type/v3/hash_policy.upb_minitable.c +11 -11
  372. data/src/core/ext/upb-gen/envoy/type/v3/http_status.upb.h +14 -12
  373. data/src/core/ext/upb-gen/envoy/type/v3/http_status.upb_minitable.c +3 -3
  374. data/src/core/ext/upb-gen/envoy/type/v3/percent.upb.h +35 -30
  375. data/src/core/ext/upb-gen/envoy/type/v3/percent.upb_minitable.c +8 -8
  376. data/src/core/ext/upb-gen/envoy/type/v3/range.upb.h +63 -54
  377. data/src/core/ext/upb-gen/envoy/type/v3/range.upb_minitable.c +15 -15
  378. data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_strategy.upb.h +58 -50
  379. data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_strategy.upb_minitable.c +14 -14
  380. data/src/core/ext/upb-gen/envoy/type/v3/semantic_version.upb.h +28 -24
  381. data/src/core/ext/upb-gen/envoy/type/v3/semantic_version.upb_minitable.c +7 -7
  382. data/src/core/ext/upb-gen/envoy/type/v3/token_bucket.upb.h +32 -28
  383. data/src/core/ext/upb-gen/envoy/type/v3/token_bucket.upb_minitable.c +7 -9
  384. data/src/core/ext/upb-gen/google/api/annotations.upb.h +10 -8
  385. data/src/core/ext/upb-gen/google/api/annotations.upb_minitable.c +1 -1
  386. data/src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb.h +581 -524
  387. data/src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb_minitable.c +118 -146
  388. data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb.h +616 -544
  389. data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb_minitable.c +136 -152
  390. data/src/core/ext/upb-gen/google/api/http.upb.h +176 -162
  391. data/src/core/ext/upb-gen/google/api/http.upb_minitable.c +34 -34
  392. data/src/core/ext/upb-gen/google/api/httpbody.upb.h +49 -47
  393. data/src/core/ext/upb-gen/google/api/httpbody.upb_minitable.c +8 -8
  394. data/src/core/ext/upb-gen/google/protobuf/any.upb.h +21 -18
  395. data/src/core/ext/upb-gen/google/protobuf/any.upb_minitable.c +5 -5
  396. data/src/core/ext/upb-gen/google/protobuf/descriptor.upb.h +2456 -2358
  397. data/src/core/ext/upb-gen/google/protobuf/descriptor.upb_minitable.c +367 -486
  398. data/src/core/ext/upb-gen/google/protobuf/duration.upb.h +21 -18
  399. data/src/core/ext/upb-gen/google/protobuf/duration.upb_minitable.c +5 -5
  400. data/src/core/ext/upb-gen/google/protobuf/empty.upb.h +7 -6
  401. data/src/core/ext/upb-gen/google/protobuf/empty.upb_minitable.c +1 -1
  402. data/src/core/ext/upb-gen/google/protobuf/struct.upb.h +134 -116
  403. data/src/core/ext/upb-gen/google/protobuf/struct.upb_minitable.c +27 -29
  404. data/src/core/ext/upb-gen/google/protobuf/timestamp.upb.h +21 -18
  405. data/src/core/ext/upb-gen/google/protobuf/timestamp.upb_minitable.c +5 -5
  406. data/src/core/ext/upb-gen/google/protobuf/wrappers.upb.h +126 -108
  407. data/src/core/ext/upb-gen/google/protobuf/wrappers.upb_minitable.c +27 -27
  408. data/src/core/ext/upb-gen/google/rpc/status.upb.h +49 -47
  409. data/src/core/ext/upb-gen/google/rpc/status.upb_minitable.c +8 -8
  410. data/src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb.h +107 -92
  411. data/src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb_minitable.c +27 -27
  412. data/src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb.h +77 -61
  413. data/src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb_minitable.c +21 -21
  414. data/src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb.h +577 -518
  415. data/src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb_minitable.c +121 -127
  416. data/src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb.h +46 -40
  417. data/src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb_minitable.c +10 -16
  418. data/src/core/ext/upb-gen/src/proto/grpc/health/v1/health.upb.h +28 -24
  419. data/src/core/ext/upb-gen/src/proto/grpc/health/v1/health.upb_minitable.c +6 -6
  420. data/src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb.h +265 -238
  421. data/src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb_minitable.c +57 -63
  422. data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb.h +96 -82
  423. data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb_minitable.c +19 -19
  424. data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb.h +496 -466
  425. data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb_minitable.c +81 -85
  426. data/src/core/ext/upb-gen/udpa/annotations/migrate.upb.h +99 -82
  427. data/src/core/ext/upb-gen/udpa/annotations/migrate.upb_minitable.c +16 -16
  428. data/src/core/ext/upb-gen/udpa/annotations/security.upb.h +31 -26
  429. data/src/core/ext/upb-gen/udpa/annotations/security.upb_minitable.c +6 -6
  430. data/src/core/ext/upb-gen/udpa/annotations/sensitive.upb.h +10 -8
  431. data/src/core/ext/upb-gen/udpa/annotations/sensitive.upb_minitable.c +1 -1
  432. data/src/core/ext/upb-gen/udpa/annotations/status.upb.h +31 -26
  433. data/src/core/ext/upb-gen/udpa/annotations/status.upb_minitable.c +6 -6
  434. data/src/core/ext/upb-gen/udpa/annotations/versioning.upb.h +24 -20
  435. data/src/core/ext/upb-gen/udpa/annotations/versioning.upb_minitable.c +4 -4
  436. data/src/core/ext/upb-gen/validate/validate.upb.h +2620 -2458
  437. data/src/core/ext/upb-gen/validate/validate.upb_minitable.c +363 -507
  438. data/src/core/ext/upb-gen/xds/annotations/v3/migrate.upb.h +99 -82
  439. data/src/core/ext/upb-gen/xds/annotations/v3/migrate.upb_minitable.c +16 -16
  440. data/src/core/ext/upb-gen/xds/annotations/v3/security.upb.h +31 -26
  441. data/src/core/ext/upb-gen/xds/annotations/v3/security.upb_minitable.c +6 -6
  442. data/src/core/ext/upb-gen/xds/annotations/v3/sensitive.upb.h +10 -8
  443. data/src/core/ext/upb-gen/xds/annotations/v3/sensitive.upb_minitable.c +1 -1
  444. data/src/core/ext/upb-gen/xds/annotations/v3/status.upb.h +93 -78
  445. data/src/core/ext/upb-gen/xds/annotations/v3/status.upb_minitable.c +17 -17
  446. data/src/core/ext/upb-gen/xds/annotations/v3/versioning.upb.h +24 -20
  447. data/src/core/ext/upb-gen/xds/annotations/v3/versioning.upb_minitable.c +4 -4
  448. data/src/core/ext/upb-gen/xds/core/v3/authority.upb.h +14 -12
  449. data/src/core/ext/upb-gen/xds/core/v3/authority.upb_minitable.c +3 -3
  450. data/src/core/ext/upb-gen/xds/core/v3/cidr.upb.h +23 -20
  451. data/src/core/ext/upb-gen/xds/core/v3/cidr.upb_minitable.c +5 -7
  452. data/src/core/ext/upb-gen/xds/core/v3/collection_entry.upb.h +58 -50
  453. data/src/core/ext/upb-gen/xds/core/v3/collection_entry.upb_minitable.c +15 -15
  454. data/src/core/ext/upb-gen/xds/core/v3/context_params.upb.h +33 -23
  455. data/src/core/ext/upb-gen/xds/core/v3/context_params.upb_minitable.c +8 -8
  456. data/src/core/ext/upb-gen/xds/core/v3/extension.upb.h +23 -20
  457. data/src/core/ext/upb-gen/xds/core/v3/extension.upb_minitable.c +5 -7
  458. data/src/core/ext/upb-gen/xds/core/v3/resource.upb.h +32 -28
  459. data/src/core/ext/upb-gen/xds/core/v3/resource.upb_minitable.c +9 -9
  460. data/src/core/ext/upb-gen/xds/core/v3/resource_locator.upb.h +103 -93
  461. data/src/core/ext/upb-gen/xds/core/v3/resource_locator.upb_minitable.c +21 -21
  462. data/src/core/ext/upb-gen/xds/core/v3/resource_name.upb.h +37 -32
  463. data/src/core/ext/upb-gen/xds/core/v3/resource_name.upb_minitable.c +9 -13
  464. data/src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb.h +127 -93
  465. data/src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb_minitable.c +34 -34
  466. data/src/core/ext/upb-gen/xds/service/orca/v3/orca.upb.h +44 -43
  467. data/src/core/ext/upb-gen/xds/service/orca/v3/orca.upb_minitable.c +6 -6
  468. data/src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb.h +23 -20
  469. data/src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb_minitable.c +6 -6
  470. data/src/core/ext/upb-gen/xds/type/matcher/v3/domain.upb.h +79 -78
  471. data/src/core/ext/upb-gen/xds/type/matcher/v3/domain.upb_minitable.c +9 -11
  472. data/src/core/ext/upb-gen/xds/type/matcher/v3/http_inputs.upb.h +7 -6
  473. data/src/core/ext/upb-gen/xds/type/matcher/v3/http_inputs.upb_minitable.c +1 -1
  474. data/src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb.h +86 -84
  475. data/src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb_minitable.c +13 -13
  476. data/src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb.h +324 -285
  477. data/src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb_minitable.c +74 -82
  478. data/src/core/ext/upb-gen/xds/type/matcher/v3/range.upb.h +237 -234
  479. data/src/core/ext/upb-gen/xds/type/matcher/v3/range.upb_minitable.c +30 -36
  480. data/src/core/ext/upb-gen/xds/type/matcher/v3/regex.upb.h +33 -28
  481. data/src/core/ext/upb-gen/xds/type/matcher/v3/regex.upb_minitable.c +7 -7
  482. data/src/core/ext/upb-gen/xds/type/matcher/v3/string.upb.h +97 -89
  483. data/src/core/ext/upb-gen/xds/type/matcher/v3/string.upb_minitable.c +18 -18
  484. data/src/core/ext/upb-gen/xds/type/v3/cel.upb.h +53 -46
  485. data/src/core/ext/upb-gen/xds/type/v3/cel.upb_minitable.c +12 -18
  486. data/src/core/ext/upb-gen/xds/type/v3/range.upb.h +63 -54
  487. data/src/core/ext/upb-gen/xds/type/v3/range.upb_minitable.c +15 -15
  488. data/src/core/ext/upb-gen/xds/type/v3/typed_struct.upb.h +23 -20
  489. data/src/core/ext/upb-gen/xds/type/v3/typed_struct.upb_minitable.c +5 -7
  490. data/src/core/ext/upbdefs-gen/envoy/admin/v3/certs.upbdefs.h +2 -5
  491. data/src/core/ext/upbdefs-gen/envoy/admin/v3/clusters.upbdefs.h +2 -5
  492. data/src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump.upbdefs.h +2 -5
  493. data/src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump_shared.upbdefs.h +2 -5
  494. data/src/core/ext/upbdefs-gen/envoy/admin/v3/init_dump.upbdefs.h +2 -5
  495. data/src/core/ext/upbdefs-gen/envoy/admin/v3/listeners.upbdefs.h +2 -5
  496. data/src/core/ext/upbdefs-gen/envoy/admin/v3/memory.upbdefs.h +2 -5
  497. data/src/core/ext/upbdefs-gen/envoy/admin/v3/metrics.upbdefs.h +2 -5
  498. data/src/core/ext/upbdefs-gen/envoy/admin/v3/mutex_stats.upbdefs.h +2 -5
  499. data/src/core/ext/upbdefs-gen/envoy/admin/v3/server_info.upbdefs.h +2 -5
  500. data/src/core/ext/upbdefs-gen/envoy/admin/v3/tap.upbdefs.h +2 -5
  501. data/src/core/ext/upbdefs-gen/envoy/annotations/deprecation.upbdefs.h +2 -5
  502. data/src/core/ext/upbdefs-gen/envoy/annotations/resource.upbdefs.h +2 -5
  503. data/src/core/ext/upbdefs-gen/envoy/config/accesslog/v3/accesslog.upbdefs.h +2 -5
  504. data/src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3/bootstrap.upbdefs.h +2 -5
  505. data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/circuit_breaker.upbdefs.h +2 -5
  506. data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/cluster.upbdefs.h +2 -5
  507. data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/filter.upbdefs.h +2 -5
  508. data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/outlier_detection.upbdefs.h +2 -5
  509. data/src/core/ext/upbdefs-gen/envoy/config/common/matcher/v3/matcher.upbdefs.h +2 -5
  510. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/address.upbdefs.h +2 -5
  511. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/backoff.upbdefs.h +2 -5
  512. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/base.upbdefs.h +2 -5
  513. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/config_source.upbdefs.h +2 -5
  514. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/event_service_config.upbdefs.h +2 -5
  515. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/extension.upbdefs.h +2 -5
  516. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_method_list.upbdefs.h +2 -5
  517. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_service.upbdefs.h +2 -5
  518. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/health_check.upbdefs.h +2 -5
  519. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_service.upbdefs.h +2 -5
  520. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_uri.upbdefs.h +2 -5
  521. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/protocol.upbdefs.h +2 -5
  522. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/proxy_protocol.upbdefs.h +2 -5
  523. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/resolver.upbdefs.h +2 -5
  524. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/socket_option.upbdefs.h +2 -5
  525. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/substitution_format_string.upbdefs.h +2 -5
  526. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/udp_socket_config.upbdefs.h +2 -5
  527. data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint.upbdefs.h +2 -5
  528. data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint_components.upbdefs.h +2 -5
  529. data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/load_report.upbdefs.h +2 -5
  530. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/api_listener.upbdefs.h +2 -5
  531. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener.upbdefs.h +2 -5
  532. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener_components.upbdefs.h +2 -5
  533. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/quic_config.upbdefs.h +2 -5
  534. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/udp_listener_config.upbdefs.h +2 -5
  535. data/src/core/ext/upbdefs-gen/envoy/config/metrics/v3/metrics_service.upbdefs.h +2 -5
  536. data/src/core/ext/upbdefs-gen/envoy/config/metrics/v3/stats.upbdefs.h +2 -5
  537. data/src/core/ext/upbdefs-gen/envoy/config/overload/v3/overload.upbdefs.h +2 -5
  538. data/src/core/ext/upbdefs-gen/envoy/config/rbac/v3/rbac.upbdefs.h +2 -5
  539. data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route.upbdefs.h +2 -5
  540. data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route_components.upbdefs.h +2 -5
  541. data/src/core/ext/upbdefs-gen/envoy/config/route/v3/scoped_route.upbdefs.h +2 -5
  542. data/src/core/ext/upbdefs-gen/envoy/config/tap/v3/common.upbdefs.h +2 -5
  543. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/datadog.upbdefs.h +2 -5
  544. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/dynamic_ot.upbdefs.h +2 -5
  545. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/http_tracer.upbdefs.h +2 -5
  546. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/lightstep.upbdefs.h +2 -5
  547. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opencensus.upbdefs.h +2 -5
  548. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opentelemetry.upbdefs.h +2 -5
  549. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/service.upbdefs.h +2 -5
  550. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/skywalking.upbdefs.h +2 -5
  551. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/trace.upbdefs.h +2 -5
  552. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/xray.upbdefs.h +2 -5
  553. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/zipkin.upbdefs.h +2 -5
  554. data/src/core/ext/upbdefs-gen/envoy/data/accesslog/v3/accesslog.upbdefs.h +2 -5
  555. data/src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.h +2 -5
  556. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/common/fault/v3/fault.upbdefs.h +2 -5
  557. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/fault/v3/fault.upbdefs.h +2 -5
  558. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.h +2 -5
  559. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/router/v3/router.upbdefs.h +2 -5
  560. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upbdefs.h +2 -5
  561. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.h +2 -5
  562. data/src/core/ext/upbdefs-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upbdefs.h +2 -5
  563. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.h +2 -5
  564. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.h +2 -5
  565. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.h +2 -5
  566. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.h +2 -5
  567. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upbdefs.h +2 -5
  568. data/src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upbdefs.h +2 -5
  569. data/src/core/ext/upbdefs-gen/envoy/service/discovery/v3/ads.upbdefs.h +2 -5
  570. data/src/core/ext/upbdefs-gen/envoy/service/discovery/v3/discovery.upbdefs.h +2 -5
  571. data/src/core/ext/upbdefs-gen/envoy/service/load_stats/v3/lrs.upbdefs.h +2 -5
  572. data/src/core/ext/upbdefs-gen/envoy/service/status/v3/csds.upbdefs.h +2 -5
  573. data/src/core/ext/upbdefs-gen/envoy/type/http/v3/cookie.upbdefs.h +2 -5
  574. data/src/core/ext/upbdefs-gen/envoy/type/http/v3/path_transformation.upbdefs.h +2 -5
  575. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/filter_state.upbdefs.h +2 -5
  576. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/http_inputs.upbdefs.h +2 -5
  577. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/metadata.upbdefs.h +2 -5
  578. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/node.upbdefs.h +2 -5
  579. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/number.upbdefs.h +2 -5
  580. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/path.upbdefs.h +2 -5
  581. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/regex.upbdefs.h +2 -5
  582. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/status_code_input.upbdefs.h +2 -5
  583. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/string.upbdefs.h +2 -5
  584. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/struct.upbdefs.h +2 -5
  585. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/value.upbdefs.h +2 -5
  586. data/src/core/ext/upbdefs-gen/envoy/type/metadata/v3/metadata.upbdefs.h +2 -5
  587. data/src/core/ext/upbdefs-gen/envoy/type/tracing/v3/custom_tag.upbdefs.h +2 -5
  588. data/src/core/ext/upbdefs-gen/envoy/type/v3/hash_policy.upbdefs.h +2 -5
  589. data/src/core/ext/upbdefs-gen/envoy/type/v3/http.upbdefs.h +2 -5
  590. data/src/core/ext/upbdefs-gen/envoy/type/v3/http_status.upbdefs.h +2 -5
  591. data/src/core/ext/upbdefs-gen/envoy/type/v3/percent.upbdefs.h +2 -5
  592. data/src/core/ext/upbdefs-gen/envoy/type/v3/range.upbdefs.h +2 -5
  593. data/src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_strategy.upbdefs.h +2 -5
  594. data/src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_unit.upbdefs.h +2 -5
  595. data/src/core/ext/upbdefs-gen/envoy/type/v3/semantic_version.upbdefs.h +2 -5
  596. data/src/core/ext/upbdefs-gen/envoy/type/v3/token_bucket.upbdefs.h +2 -5
  597. data/src/core/ext/upbdefs-gen/google/api/annotations.upbdefs.h +2 -5
  598. data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/checked.upbdefs.h +2 -5
  599. data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/syntax.upbdefs.h +2 -5
  600. data/src/core/ext/upbdefs-gen/google/api/http.upbdefs.h +2 -5
  601. data/src/core/ext/upbdefs-gen/google/api/httpbody.upbdefs.h +2 -5
  602. data/src/core/ext/upbdefs-gen/google/protobuf/any.upbdefs.h +2 -5
  603. data/src/core/ext/upbdefs-gen/google/protobuf/descriptor.upbdefs.c +385 -384
  604. data/src/core/ext/upbdefs-gen/google/protobuf/descriptor.upbdefs.h +2 -5
  605. data/src/core/ext/upbdefs-gen/google/protobuf/duration.upbdefs.h +2 -5
  606. data/src/core/ext/upbdefs-gen/google/protobuf/empty.upbdefs.h +2 -5
  607. data/src/core/ext/upbdefs-gen/google/protobuf/struct.upbdefs.h +2 -5
  608. data/src/core/ext/upbdefs-gen/google/protobuf/timestamp.upbdefs.h +2 -5
  609. data/src/core/ext/upbdefs-gen/google/protobuf/wrappers.upbdefs.h +2 -5
  610. data/src/core/ext/upbdefs-gen/google/rpc/status.upbdefs.h +2 -5
  611. data/src/core/ext/upbdefs-gen/opencensus/proto/trace/v1/trace_config.upbdefs.h +2 -5
  612. data/src/core/ext/upbdefs-gen/src/proto/grpc/lookup/v1/rls_config.upbdefs.h +2 -5
  613. data/src/core/ext/upbdefs-gen/udpa/annotations/migrate.upbdefs.h +2 -5
  614. data/src/core/ext/upbdefs-gen/udpa/annotations/security.upbdefs.h +2 -5
  615. data/src/core/ext/upbdefs-gen/udpa/annotations/sensitive.upbdefs.h +2 -5
  616. data/src/core/ext/upbdefs-gen/udpa/annotations/status.upbdefs.h +2 -5
  617. data/src/core/ext/upbdefs-gen/udpa/annotations/versioning.upbdefs.h +2 -5
  618. data/src/core/ext/upbdefs-gen/validate/validate.upbdefs.h +2 -5
  619. data/src/core/ext/upbdefs-gen/xds/annotations/v3/migrate.upbdefs.h +2 -5
  620. data/src/core/ext/upbdefs-gen/xds/annotations/v3/security.upbdefs.h +2 -5
  621. data/src/core/ext/upbdefs-gen/xds/annotations/v3/sensitive.upbdefs.h +2 -5
  622. data/src/core/ext/upbdefs-gen/xds/annotations/v3/status.upbdefs.h +2 -5
  623. data/src/core/ext/upbdefs-gen/xds/annotations/v3/versioning.upbdefs.h +2 -5
  624. data/src/core/ext/upbdefs-gen/xds/core/v3/authority.upbdefs.h +2 -5
  625. data/src/core/ext/upbdefs-gen/xds/core/v3/cidr.upbdefs.h +2 -5
  626. data/src/core/ext/upbdefs-gen/xds/core/v3/collection_entry.upbdefs.h +2 -5
  627. data/src/core/ext/upbdefs-gen/xds/core/v3/context_params.upbdefs.h +2 -5
  628. data/src/core/ext/upbdefs-gen/xds/core/v3/extension.upbdefs.h +2 -5
  629. data/src/core/ext/upbdefs-gen/xds/core/v3/resource.upbdefs.h +2 -5
  630. data/src/core/ext/upbdefs-gen/xds/core/v3/resource_locator.upbdefs.h +2 -5
  631. data/src/core/ext/upbdefs-gen/xds/core/v3/resource_name.upbdefs.h +2 -5
  632. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/cel.upbdefs.h +2 -5
  633. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/domain.upbdefs.h +2 -5
  634. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/http_inputs.upbdefs.h +2 -5
  635. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/ip.upbdefs.h +2 -5
  636. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/matcher.upbdefs.h +2 -5
  637. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/range.upbdefs.h +2 -5
  638. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/regex.upbdefs.h +2 -5
  639. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/string.upbdefs.h +2 -5
  640. data/src/core/ext/upbdefs-gen/xds/type/v3/cel.upbdefs.h +2 -5
  641. data/src/core/ext/upbdefs-gen/xds/type/v3/range.upbdefs.h +2 -5
  642. data/src/core/ext/upbdefs-gen/xds/type/v3/typed_struct.upbdefs.h +2 -5
  643. data/src/core/handshaker/endpoint_info/endpoint_info_handshaker.cc +80 -0
  644. data/src/core/handshaker/endpoint_info/endpoint_info_handshaker.h +37 -0
  645. data/src/core/{lib/transport → handshaker}/handshaker.cc +14 -20
  646. data/src/core/{lib/transport → handshaker}/handshaker.h +4 -5
  647. data/src/core/{lib/transport → handshaker}/handshaker_factory.h +20 -5
  648. data/src/core/{lib/transport → handshaker}/handshaker_registry.cc +3 -3
  649. data/src/core/{lib/transport → handshaker}/handshaker_registry.h +6 -6
  650. data/src/core/{lib/transport → handshaker/http_connect}/http_connect_handshaker.cc +16 -25
  651. data/src/core/{lib/transport → handshaker/http_connect}/http_connect_handshaker.h +3 -3
  652. data/src/core/{client_channel → handshaker/http_connect}/http_proxy_mapper.cc +12 -12
  653. data/src/core/{client_channel → handshaker/http_connect}/http_proxy_mapper.h +7 -7
  654. data/src/core/{lib/handshaker → handshaker}/proxy_mapper.h +5 -5
  655. data/src/core/{lib/handshaker → handshaker}/proxy_mapper_registry.cc +3 -3
  656. data/src/core/{lib/handshaker → handshaker}/proxy_mapper_registry.h +6 -6
  657. data/src/core/{lib/security/transport → handshaker/security}/secure_endpoint.cc +42 -36
  658. data/src/core/{lib/security/transport → handshaker/security}/secure_endpoint.h +4 -7
  659. data/src/core/{lib/security/transport → handshaker/security}/security_handshaker.cc +52 -55
  660. data/src/core/{lib/security/transport → handshaker/security}/security_handshaker.h +8 -7
  661. data/src/core/{lib/transport → handshaker/tcp_connect}/tcp_connect_handshaker.cc +10 -9
  662. data/src/core/{lib/transport → handshaker/tcp_connect}/tcp_connect_handshaker.h +3 -3
  663. data/src/core/lib/address_utils/parse_address.cc +38 -41
  664. data/src/core/lib/address_utils/parse_address.h +2 -2
  665. data/src/core/lib/address_utils/sockaddr_utils.cc +28 -16
  666. data/src/core/lib/address_utils/sockaddr_utils.h +2 -2
  667. data/src/core/lib/avl/avl.h +3 -3
  668. data/src/core/lib/backoff/backoff.cc +2 -2
  669. data/src/core/lib/backoff/backoff.h +2 -2
  670. data/src/core/lib/backoff/random_early_detection.cc +2 -2
  671. data/src/core/lib/backoff/random_early_detection.h +2 -2
  672. data/src/core/lib/channel/call_finalization.h +3 -3
  673. data/src/core/lib/channel/channel_args.cc +17 -21
  674. data/src/core/lib/channel/channel_args.h +20 -10
  675. data/src/core/lib/channel/channel_args_preconditioning.cc +2 -2
  676. data/src/core/lib/channel/channel_args_preconditioning.h +1 -2
  677. data/src/core/lib/channel/channel_stack.cc +20 -68
  678. data/src/core/lib/channel/channel_stack.h +18 -38
  679. data/src/core/lib/channel/channel_stack_builder.cc +2 -2
  680. data/src/core/lib/channel/channel_stack_builder.h +2 -7
  681. data/src/core/lib/channel/channel_stack_builder_impl.cc +17 -26
  682. data/src/core/lib/channel/channel_stack_builder_impl.h +2 -4
  683. data/src/core/lib/channel/connected_channel.cc +40 -697
  684. data/src/core/lib/channel/promise_based_filter.cc +111 -122
  685. data/src/core/lib/channel/promise_based_filter.h +224 -480
  686. data/src/core/lib/channel/status_util.cc +3 -3
  687. data/src/core/lib/channel/status_util.h +1 -2
  688. data/src/core/lib/compression/compression.cc +2 -3
  689. data/src/core/lib/compression/compression_internal.cc +36 -3
  690. data/src/core/lib/compression/compression_internal.h +4 -2
  691. data/src/core/lib/compression/message_compress.cc +15 -14
  692. data/src/core/lib/compression/message_compress.h +1 -2
  693. data/src/core/lib/config/config_vars.cc +4 -7
  694. data/src/core/lib/config/config_vars.h +3 -3
  695. data/src/core/lib/config/config_vars_non_generated.cc +2 -2
  696. data/src/core/lib/config/core_configuration.cc +9 -8
  697. data/src/core/lib/config/core_configuration.h +8 -8
  698. data/src/core/lib/config/load_config.cc +4 -4
  699. data/src/core/lib/config/load_config.h +2 -2
  700. data/src/core/lib/debug/event_log.cc +3 -3
  701. data/src/core/lib/debug/event_log.h +3 -3
  702. data/src/core/lib/debug/trace.cc +44 -61
  703. data/src/core/lib/debug/trace.h +2 -97
  704. data/src/core/lib/debug/trace_flags.cc +255 -0
  705. data/src/core/lib/debug/trace_flags.h +133 -0
  706. data/src/core/lib/debug/trace_impl.h +115 -0
  707. data/src/core/lib/event_engine/ares_resolver.cc +23 -26
  708. data/src/core/lib/event_engine/ares_resolver.h +3 -5
  709. data/src/core/lib/event_engine/cf_engine/cf_engine.cc +4 -2
  710. data/src/core/lib/event_engine/cf_engine/cfstream_endpoint.cc +3 -3
  711. data/src/core/lib/event_engine/cf_engine/dns_service_resolver.cc +19 -23
  712. data/src/core/lib/event_engine/cf_engine/dns_service_resolver.h +2 -1
  713. data/src/core/lib/event_engine/channel_args_endpoint_config.cc +1 -2
  714. data/src/core/lib/event_engine/channel_args_endpoint_config.h +1 -2
  715. data/src/core/lib/event_engine/common_closures.h +1 -2
  716. data/src/core/lib/event_engine/default_event_engine.cc +1 -2
  717. data/src/core/lib/event_engine/default_event_engine.h +1 -8
  718. data/src/core/lib/event_engine/default_event_engine_factory.cc +1 -2
  719. data/src/core/lib/event_engine/default_event_engine_factory.h +1 -2
  720. data/src/core/lib/event_engine/event_engine.cc +29 -5
  721. data/src/core/lib/event_engine/event_engine_context.h +30 -0
  722. data/src/core/lib/event_engine/extensions/can_track_errors.h +2 -2
  723. data/src/core/lib/event_engine/extensions/chaotic_good_extension.h +65 -0
  724. data/src/core/lib/event_engine/extensions/supports_fd.h +8 -2
  725. data/src/core/lib/event_engine/extensions/tcp_trace.h +43 -0
  726. data/src/core/lib/event_engine/forkable.cc +11 -11
  727. data/src/core/lib/event_engine/forkable.h +1 -13
  728. data/src/core/lib/event_engine/grpc_polled_fd.h +1 -2
  729. data/src/core/lib/event_engine/handle_containers.h +1 -2
  730. data/src/core/lib/event_engine/memory_allocator_factory.h +1 -2
  731. data/src/core/lib/event_engine/poller.h +1 -2
  732. data/src/core/lib/event_engine/posix.h +9 -2
  733. data/src/core/lib/event_engine/posix_engine/ev_epoll1_linux.cc +19 -19
  734. data/src/core/lib/event_engine/posix_engine/ev_epoll1_linux.h +1 -2
  735. data/src/core/lib/event_engine/posix_engine/ev_poll_posix.cc +11 -11
  736. data/src/core/lib/event_engine/posix_engine/ev_poll_posix.h +1 -2
  737. data/src/core/lib/event_engine/posix_engine/event_poller.h +1 -2
  738. data/src/core/lib/event_engine/posix_engine/event_poller_posix_default.cc +2 -2
  739. data/src/core/lib/event_engine/posix_engine/event_poller_posix_default.h +2 -2
  740. data/src/core/lib/event_engine/posix_engine/grpc_polled_fd_posix.h +1 -2
  741. data/src/core/lib/event_engine/posix_engine/internal_errqueue.cc +5 -5
  742. data/src/core/lib/event_engine/posix_engine/internal_errqueue.h +2 -2
  743. data/src/core/lib/event_engine/posix_engine/lockfree_event.cc +3 -3
  744. data/src/core/lib/event_engine/posix_engine/lockfree_event.h +2 -2
  745. data/src/core/lib/event_engine/posix_engine/native_posix_dns_resolver.cc +1 -1
  746. data/src/core/lib/event_engine/posix_engine/native_posix_dns_resolver.h +2 -2
  747. data/src/core/lib/event_engine/posix_engine/posix_endpoint.cc +43 -58
  748. data/src/core/lib/event_engine/posix_engine/posix_endpoint.h +14 -13
  749. data/src/core/lib/event_engine/posix_engine/posix_engine.cc +34 -17
  750. data/src/core/lib/event_engine/posix_engine/posix_engine.h +3 -2
  751. data/src/core/lib/event_engine/posix_engine/posix_engine_closure.h +1 -2
  752. data/src/core/lib/event_engine/posix_engine/posix_engine_listener.cc +18 -19
  753. data/src/core/lib/event_engine/posix_engine/posix_engine_listener.h +1 -2
  754. data/src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.cc +25 -28
  755. data/src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.h +1 -2
  756. data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.cc +26 -20
  757. data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.h +3 -3
  758. data/src/core/lib/event_engine/posix_engine/timer.cc +2 -3
  759. data/src/core/lib/event_engine/posix_engine/timer.h +1 -2
  760. data/src/core/lib/event_engine/posix_engine/timer_heap.cc +2 -2
  761. data/src/core/lib/event_engine/posix_engine/timer_heap.h +2 -2
  762. data/src/core/lib/event_engine/posix_engine/timer_manager.cc +9 -11
  763. data/src/core/lib/event_engine/posix_engine/timer_manager.h +1 -2
  764. data/src/core/lib/event_engine/posix_engine/traced_buffer_list.cc +3 -3
  765. data/src/core/lib/event_engine/posix_engine/traced_buffer_list.h +1 -2
  766. data/src/core/lib/event_engine/posix_engine/wakeup_fd_eventfd.cc +2 -2
  767. data/src/core/lib/event_engine/posix_engine/wakeup_fd_eventfd.h +2 -2
  768. data/src/core/lib/event_engine/posix_engine/wakeup_fd_pipe.cc +2 -2
  769. data/src/core/lib/event_engine/posix_engine/wakeup_fd_pipe.h +2 -2
  770. data/src/core/lib/event_engine/posix_engine/wakeup_fd_posix.h +2 -2
  771. data/src/core/lib/event_engine/posix_engine/wakeup_fd_posix_default.cc +2 -2
  772. data/src/core/lib/event_engine/posix_engine/wakeup_fd_posix_default.h +2 -2
  773. data/src/core/lib/event_engine/query_extensions.h +3 -2
  774. data/src/core/lib/event_engine/ref_counted_dns_resolver_interface.h +1 -2
  775. data/src/core/lib/event_engine/resolved_address.cc +5 -4
  776. data/src/core/lib/event_engine/resolved_address_internal.h +1 -2
  777. data/src/core/lib/event_engine/shim.cc +3 -3
  778. data/src/core/lib/event_engine/slice.cc +4 -3
  779. data/src/core/lib/event_engine/slice_buffer.cc +1 -2
  780. data/src/core/lib/event_engine/tcp_socket_utils.cc +26 -17
  781. data/src/core/lib/event_engine/tcp_socket_utils.h +3 -4
  782. data/src/core/lib/event_engine/thread_local.cc +2 -2
  783. data/src/core/lib/event_engine/thread_local.h +1 -1
  784. data/src/core/lib/event_engine/thread_pool/thread_count.cc +1 -2
  785. data/src/core/lib/event_engine/thread_pool/thread_count.h +2 -3
  786. data/src/core/lib/event_engine/thread_pool/thread_pool.h +1 -2
  787. data/src/core/lib/event_engine/thread_pool/thread_pool_factory.cc +2 -2
  788. data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.cc +25 -28
  789. data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.h +4 -8
  790. data/src/core/lib/event_engine/thready_event_engine/thready_event_engine.cc +16 -15
  791. data/src/core/lib/event_engine/thready_event_engine/thready_event_engine.h +5 -5
  792. data/src/core/lib/event_engine/time_util.cc +1 -2
  793. data/src/core/lib/event_engine/time_util.h +1 -2
  794. data/src/core/lib/event_engine/trace.h +7 -19
  795. data/src/core/lib/event_engine/utils.cc +1 -2
  796. data/src/core/lib/event_engine/utils.h +1 -2
  797. data/src/core/lib/event_engine/windows/grpc_polled_fd_windows.cc +31 -30
  798. data/src/core/lib/event_engine/windows/iocp.cc +10 -8
  799. data/src/core/lib/event_engine/windows/iocp.h +1 -1
  800. data/src/core/lib/event_engine/windows/win_socket.cc +34 -22
  801. data/src/core/lib/event_engine/windows/win_socket.h +7 -5
  802. data/src/core/lib/event_engine/windows/windows_endpoint.cc +19 -21
  803. data/src/core/lib/event_engine/windows/windows_engine.cc +225 -77
  804. data/src/core/lib/event_engine/windows/windows_engine.h +136 -25
  805. data/src/core/lib/event_engine/windows/windows_listener.cc +73 -35
  806. data/src/core/lib/event_engine/windows/windows_listener.h +14 -0
  807. data/src/core/lib/event_engine/work_queue/basic_work_queue.cc +2 -2
  808. data/src/core/lib/event_engine/work_queue/basic_work_queue.h +1 -2
  809. data/src/core/lib/event_engine/work_queue/work_queue.h +1 -2
  810. data/src/core/lib/experiments/config.cc +66 -48
  811. data/src/core/lib/experiments/config.h +2 -2
  812. data/src/core/lib/experiments/experiments.cc +55 -375
  813. data/src/core/lib/experiments/experiments.h +36 -168
  814. data/src/core/lib/gprpp/atomic_utils.h +2 -2
  815. data/src/core/lib/gprpp/bitset.h +3 -3
  816. data/src/core/lib/gprpp/chunked_vector.h +6 -5
  817. data/src/core/lib/gprpp/construct_destruct.h +2 -2
  818. data/src/core/lib/gprpp/crash.cc +3 -5
  819. data/src/core/lib/gprpp/crash.h +2 -2
  820. data/src/core/lib/gprpp/debug_location.h +2 -2
  821. data/src/core/lib/gprpp/directory_reader.h +2 -2
  822. data/src/core/lib/gprpp/down_cast.h +7 -7
  823. data/src/core/lib/gprpp/dual_ref_counted.h +69 -48
  824. data/src/core/lib/gprpp/dump_args.cc +54 -0
  825. data/src/core/lib/gprpp/dump_args.h +69 -0
  826. data/src/core/lib/gprpp/env.h +2 -2
  827. data/src/core/lib/gprpp/examine_stack.cc +2 -2
  828. data/src/core/lib/gprpp/examine_stack.h +2 -2
  829. data/src/core/lib/gprpp/fork.cc +1 -2
  830. data/src/core/lib/gprpp/fork.h +2 -2
  831. data/src/core/lib/gprpp/glob.cc +70 -0
  832. data/src/core/lib/gprpp/glob.h +29 -0
  833. data/src/core/lib/gprpp/host_port.cc +6 -4
  834. data/src/core/lib/gprpp/host_port.h +2 -2
  835. data/src/core/lib/gprpp/linux/env.cc +2 -2
  836. data/src/core/lib/gprpp/load_file.cc +4 -3
  837. data/src/core/lib/gprpp/load_file.h +2 -2
  838. data/src/core/lib/gprpp/manual_constructor.h +2 -2
  839. data/src/core/lib/gprpp/match.h +2 -2
  840. data/src/core/lib/gprpp/memory.h +1 -2
  841. data/src/core/lib/gprpp/mpscq.cc +2 -2
  842. data/src/core/lib/gprpp/mpscq.h +5 -4
  843. data/src/core/lib/gprpp/no_destruct.h +2 -2
  844. data/src/core/lib/gprpp/notification.h +2 -2
  845. data/src/core/lib/gprpp/orphanable.h +7 -4
  846. data/src/core/lib/gprpp/overload.h +2 -2
  847. data/src/core/lib/gprpp/per_cpu.cc +2 -3
  848. data/src/core/lib/gprpp/per_cpu.h +1 -2
  849. data/src/core/lib/gprpp/posix/directory_reader.cc +2 -2
  850. data/src/core/lib/gprpp/posix/stat.cc +8 -7
  851. data/src/core/lib/gprpp/posix/thd.cc +18 -19
  852. data/src/core/lib/gprpp/ref_counted.h +40 -28
  853. data/src/core/lib/gprpp/ref_counted_ptr.h +4 -3
  854. data/src/core/lib/gprpp/ref_counted_string.cc +1 -2
  855. data/src/core/lib/gprpp/ref_counted_string.h +2 -2
  856. data/src/core/lib/gprpp/single_set_ptr.h +9 -6
  857. data/src/core/lib/gprpp/sorted_pack.h +2 -2
  858. data/src/core/lib/gprpp/stat.h +2 -2
  859. data/src/core/lib/gprpp/status_helper.cc +14 -33
  860. data/src/core/lib/gprpp/status_helper.h +5 -33
  861. data/src/core/lib/gprpp/strerror.cc +2 -2
  862. data/src/core/lib/gprpp/strerror.h +2 -2
  863. data/src/core/lib/gprpp/sync.h +5 -5
  864. data/src/core/lib/gprpp/table.h +2 -2
  865. data/src/core/lib/gprpp/tchar.cc +2 -2
  866. data/src/core/lib/gprpp/thd.h +7 -7
  867. data/src/core/lib/gprpp/time.cc +9 -10
  868. data/src/core/lib/gprpp/time.h +10 -4
  869. data/src/core/lib/gprpp/time_averaged_stats.cc +2 -2
  870. data/src/core/lib/gprpp/time_util.cc +5 -4
  871. data/src/core/lib/gprpp/time_util.h +1 -2
  872. data/src/core/lib/gprpp/unique_type_name.h +3 -3
  873. data/src/core/lib/gprpp/uuid_v4.cc +37 -0
  874. data/src/core/{resolver/xds/xds_resolver_trace.h → lib/gprpp/uuid_v4.h} +13 -7
  875. data/src/core/lib/gprpp/validation_errors.cc +12 -3
  876. data/src/core/lib/gprpp/validation_errors.h +13 -2
  877. data/src/core/lib/gprpp/windows/stat.cc +6 -5
  878. data/src/core/lib/gprpp/windows/thd.cc +7 -4
  879. data/src/core/lib/gprpp/work_serializer.cc +53 -62
  880. data/src/core/lib/gprpp/work_serializer.h +1 -2
  881. data/src/core/lib/iomgr/buffer_list.cc +5 -4
  882. data/src/core/lib/iomgr/buffer_list.h +1 -2
  883. data/src/core/lib/iomgr/call_combiner.cc +23 -31
  884. data/src/core/lib/iomgr/call_combiner.h +2 -5
  885. data/src/core/lib/iomgr/cfstream_handle.cc +4 -6
  886. data/src/core/lib/iomgr/closure.cc +2 -2
  887. data/src/core/lib/iomgr/closure.h +6 -7
  888. data/src/core/lib/iomgr/combiner.cc +13 -14
  889. data/src/core/lib/iomgr/combiner.h +1 -4
  890. data/src/core/lib/iomgr/endpoint.cc +1 -7
  891. data/src/core/lib/iomgr/endpoint.h +1 -4
  892. data/src/core/lib/iomgr/endpoint_cfstream.cc +26 -46
  893. data/src/core/lib/iomgr/endpoint_pair_posix.cc +6 -5
  894. data/src/core/lib/iomgr/endpoint_pair_windows.cc +15 -15
  895. data/src/core/lib/iomgr/error.cc +16 -24
  896. data/src/core/lib/iomgr/error.h +4 -4
  897. data/src/core/lib/iomgr/ev_apple.cc +3 -5
  898. data/src/core/lib/iomgr/ev_epoll1_linux.cc +58 -56
  899. data/src/core/lib/iomgr/ev_poll_posix.cc +47 -38
  900. data/src/core/lib/iomgr/ev_posix.cc +9 -11
  901. data/src/core/lib/iomgr/ev_posix.h +11 -8
  902. data/src/core/lib/iomgr/event_engine_shims/closure.cc +3 -4
  903. data/src/core/lib/iomgr/event_engine_shims/closure.h +1 -2
  904. data/src/core/lib/iomgr/event_engine_shims/endpoint.cc +17 -31
  905. data/src/core/lib/iomgr/event_engine_shims/endpoint.h +1 -2
  906. data/src/core/lib/iomgr/event_engine_shims/tcp_client.cc +1 -2
  907. data/src/core/lib/iomgr/event_engine_shims/tcp_client.h +1 -2
  908. data/src/core/lib/iomgr/exec_ctx.cc +7 -7
  909. data/src/core/lib/iomgr/exec_ctx.h +7 -5
  910. data/src/core/lib/iomgr/executor.cc +13 -23
  911. data/src/core/lib/iomgr/executor.h +1 -1
  912. data/src/core/lib/iomgr/fork_posix.cc +8 -10
  913. data/src/core/lib/iomgr/fork_windows.cc +3 -1
  914. data/src/core/lib/iomgr/grpc_if_nametoindex.h +2 -2
  915. data/src/core/lib/iomgr/grpc_if_nametoindex_posix.cc +2 -3
  916. data/src/core/lib/iomgr/grpc_if_nametoindex_unsupported.cc +3 -5
  917. data/src/core/lib/iomgr/internal_errqueue.cc +5 -4
  918. data/src/core/lib/iomgr/iocp_windows.cc +13 -9
  919. data/src/core/lib/iomgr/iocp_windows.h +0 -1
  920. data/src/core/lib/iomgr/iomgr.cc +14 -19
  921. data/src/core/lib/iomgr/iomgr.h +2 -2
  922. data/src/core/lib/iomgr/iomgr_internal.cc +2 -2
  923. data/src/core/lib/iomgr/iomgr_internal.h +2 -2
  924. data/src/core/lib/iomgr/iomgr_windows.cc +4 -2
  925. data/src/core/lib/iomgr/lockfree_event.cc +7 -8
  926. data/src/core/lib/iomgr/lockfree_event.h +1 -2
  927. data/src/core/lib/iomgr/polling_entity.cc +5 -5
  928. data/src/core/lib/iomgr/pollset.cc +2 -2
  929. data/src/core/lib/iomgr/pollset.h +0 -3
  930. data/src/core/lib/iomgr/pollset_set.cc +2 -2
  931. data/src/core/lib/iomgr/pollset_set_windows.cc +2 -2
  932. data/src/core/lib/iomgr/pollset_windows.cc +0 -2
  933. data/src/core/lib/iomgr/pollset_windows.h +0 -1
  934. data/src/core/lib/iomgr/port.h +3 -0
  935. data/src/core/lib/iomgr/python_util.h +1 -2
  936. data/src/core/lib/iomgr/resolve_address.cc +1 -2
  937. data/src/core/lib/iomgr/resolve_address.h +1 -2
  938. data/src/core/lib/iomgr/resolve_address_impl.h +2 -2
  939. data/src/core/lib/iomgr/resolve_address_posix.cc +7 -14
  940. data/src/core/lib/iomgr/resolve_address_posix.h +2 -2
  941. data/src/core/lib/iomgr/resolve_address_windows.cc +1 -1
  942. data/src/core/lib/iomgr/resolve_address_windows.h +2 -2
  943. data/src/core/lib/iomgr/resolved_address.h +2 -2
  944. data/src/core/lib/iomgr/sockaddr_utils_posix.cc +3 -1
  945. data/src/core/lib/iomgr/socket_factory_posix.cc +1 -1
  946. data/src/core/lib/iomgr/socket_factory_posix.h +1 -2
  947. data/src/core/lib/iomgr/socket_mutator.cc +2 -3
  948. data/src/core/lib/iomgr/socket_mutator.h +1 -2
  949. data/src/core/lib/iomgr/socket_utils.h +2 -2
  950. data/src/core/lib/iomgr/socket_utils_common_posix.cc +28 -33
  951. data/src/core/lib/iomgr/socket_utils_posix.cc +2 -2
  952. data/src/core/lib/iomgr/socket_utils_posix.h +1 -2
  953. data/src/core/lib/iomgr/socket_windows.cc +8 -9
  954. data/src/core/lib/iomgr/tcp_client.cc +2 -2
  955. data/src/core/lib/iomgr/tcp_client.h +1 -2
  956. data/src/core/lib/iomgr/tcp_client_cfstream.cc +3 -5
  957. data/src/core/lib/iomgr/tcp_client_posix.cc +14 -19
  958. data/src/core/lib/iomgr/tcp_client_windows.cc +33 -14
  959. data/src/core/lib/iomgr/tcp_posix.cc +145 -125
  960. data/src/core/lib/iomgr/tcp_posix.h +0 -2
  961. data/src/core/lib/iomgr/tcp_server.cc +2 -2
  962. data/src/core/lib/iomgr/tcp_server.h +1 -2
  963. data/src/core/lib/iomgr/tcp_server_posix.cc +125 -111
  964. data/src/core/lib/iomgr/tcp_server_utils_posix.h +2 -2
  965. data/src/core/lib/iomgr/tcp_server_utils_posix_common.cc +10 -12
  966. data/src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc +9 -8
  967. data/src/core/lib/iomgr/tcp_server_windows.cc +85 -39
  968. data/src/core/lib/iomgr/tcp_windows.cc +33 -47
  969. data/src/core/lib/iomgr/timer.cc +2 -2
  970. data/src/core/lib/iomgr/timer.h +1 -2
  971. data/src/core/lib/iomgr/timer_generic.cc +20 -23
  972. data/src/core/lib/iomgr/timer_generic.h +0 -1
  973. data/src/core/lib/iomgr/timer_heap.cc +2 -3
  974. data/src/core/lib/iomgr/timer_manager.cc +21 -33
  975. data/src/core/lib/iomgr/timer_manager.h +2 -2
  976. data/src/core/lib/iomgr/unix_sockets_posix.cc +16 -2
  977. data/src/core/lib/iomgr/unix_sockets_posix.h +1 -2
  978. data/src/core/lib/iomgr/unix_sockets_posix_noop.cc +3 -1
  979. data/src/core/lib/iomgr/vsock.cc +3 -3
  980. data/src/core/lib/iomgr/vsock.h +1 -2
  981. data/src/core/lib/iomgr/wakeup_fd_pipe.cc +3 -3
  982. data/src/core/lib/matchers/matchers.cc +2 -2
  983. data/src/core/lib/matchers/matchers.h +2 -2
  984. data/src/core/lib/promise/activity.cc +4 -3
  985. data/src/core/lib/promise/activity.h +35 -11
  986. data/src/core/lib/promise/all_ok.h +2 -2
  987. data/src/core/lib/promise/arena_promise.h +2 -2
  988. data/src/core/lib/promise/cancel_callback.h +24 -0
  989. data/src/core/lib/promise/context.h +16 -5
  990. data/src/core/lib/promise/detail/basic_seq.h +1 -2
  991. data/src/core/lib/promise/detail/join_state.h +365 -408
  992. data/src/core/lib/promise/detail/promise_factory.h +2 -2
  993. data/src/core/lib/promise/detail/promise_like.h +15 -8
  994. data/src/core/lib/promise/detail/seq_state.h +1192 -1192
  995. data/src/core/lib/promise/detail/status.h +4 -3
  996. data/src/core/lib/promise/exec_ctx_wakeup_scheduler.h +2 -2
  997. data/src/core/lib/promise/for_each.h +91 -30
  998. data/src/core/lib/promise/if.h +2 -2
  999. data/src/core/lib/promise/interceptor_list.h +9 -10
  1000. data/src/core/lib/promise/latch.h +17 -17
  1001. data/src/core/lib/promise/loop.h +2 -2
  1002. data/src/core/lib/promise/map.h +19 -2
  1003. data/src/core/lib/promise/observable.h +182 -0
  1004. data/src/core/lib/promise/party.cc +52 -23
  1005. data/src/core/lib/promise/party.h +31 -31
  1006. data/src/core/lib/promise/pipe.h +31 -50
  1007. data/src/core/lib/promise/poll.h +6 -5
  1008. data/src/core/lib/promise/prioritized_race.h +2 -2
  1009. data/src/core/lib/promise/promise.h +3 -2
  1010. data/src/core/lib/promise/race.h +2 -2
  1011. data/src/core/lib/promise/seq.h +2 -2
  1012. data/src/core/lib/promise/sleep.cc +2 -3
  1013. data/src/core/lib/promise/sleep.h +1 -2
  1014. data/src/core/lib/promise/status_flag.h +18 -8
  1015. data/src/core/lib/promise/try_join.h +4 -3
  1016. data/src/core/lib/promise/try_seq.h +4 -3
  1017. data/src/core/lib/resource_quota/api.cc +1 -2
  1018. data/src/core/lib/resource_quota/api.h +1 -2
  1019. data/src/core/lib/resource_quota/arena.cc +57 -81
  1020. data/src/core/lib/resource_quota/arena.h +122 -211
  1021. data/src/core/lib/resource_quota/connection_quota.cc +70 -0
  1022. data/src/core/lib/resource_quota/connection_quota.h +61 -0
  1023. data/src/core/lib/resource_quota/memory_quota.cc +20 -21
  1024. data/src/core/lib/resource_quota/memory_quota.h +6 -7
  1025. data/src/core/lib/resource_quota/periodic_update.cc +3 -3
  1026. data/src/core/lib/resource_quota/periodic_update.h +2 -2
  1027. data/src/core/lib/resource_quota/resource_quota.cc +2 -2
  1028. data/src/core/lib/resource_quota/resource_quota.h +2 -3
  1029. data/src/core/lib/resource_quota/thread_quota.cc +4 -3
  1030. data/src/core/lib/resource_quota/thread_quota.h +2 -2
  1031. data/src/core/lib/security/authorization/audit_logging.cc +6 -6
  1032. data/src/core/lib/security/authorization/audit_logging.h +1 -2
  1033. data/src/core/lib/security/authorization/authorization_engine.h +2 -2
  1034. data/src/core/lib/security/authorization/authorization_policy_provider.h +2 -3
  1035. data/src/core/lib/security/authorization/authorization_policy_provider_vtable.cc +2 -3
  1036. data/src/core/lib/security/authorization/evaluate_args.cc +13 -15
  1037. data/src/core/lib/security/authorization/evaluate_args.h +4 -5
  1038. data/src/core/lib/security/authorization/grpc_authorization_engine.cc +4 -3
  1039. data/src/core/lib/security/authorization/grpc_authorization_engine.h +1 -2
  1040. data/src/core/lib/security/authorization/grpc_server_authz_filter.cc +13 -18
  1041. data/src/core/lib/security/authorization/grpc_server_authz_filter.h +8 -9
  1042. data/src/core/lib/security/authorization/matchers.cc +4 -5
  1043. data/src/core/lib/security/authorization/matchers.h +2 -2
  1044. data/src/core/lib/security/authorization/rbac_policy.cc +2 -2
  1045. data/src/core/lib/security/authorization/rbac_policy.h +1 -2
  1046. data/src/core/lib/security/authorization/stdout_logger.cc +4 -3
  1047. data/src/core/lib/security/authorization/stdout_logger.h +1 -2
  1048. data/src/core/lib/security/certificate_provider/certificate_provider_factory.h +4 -4
  1049. data/src/core/lib/security/certificate_provider/certificate_provider_registry.cc +6 -6
  1050. data/src/core/lib/security/certificate_provider/certificate_provider_registry.h +2 -2
  1051. data/src/core/lib/security/context/security_context.cc +17 -16
  1052. data/src/core/lib/security/context/security_context.h +33 -10
  1053. data/src/core/lib/security/credentials/alts/alts_credentials.cc +1 -2
  1054. data/src/core/lib/security/credentials/alts/alts_credentials.h +3 -3
  1055. data/src/core/lib/security/credentials/alts/check_gcp_environment.cc +4 -3
  1056. data/src/core/lib/security/credentials/alts/check_gcp_environment_no_op.cc +2 -3
  1057. data/src/core/lib/security/credentials/alts/grpc_alts_credentials_client_options.cc +5 -6
  1058. data/src/core/lib/security/credentials/alts/grpc_alts_credentials_options.cc +4 -5
  1059. data/src/core/lib/security/credentials/alts/grpc_alts_credentials_options.h +2 -2
  1060. data/src/core/lib/security/credentials/alts/grpc_alts_credentials_server_options.cc +1 -2
  1061. data/src/core/lib/security/credentials/call_creds_util.cc +3 -3
  1062. data/src/core/lib/security/credentials/call_creds_util.h +2 -2
  1063. data/src/core/lib/security/credentials/channel_creds_registry.h +4 -4
  1064. data/src/core/lib/security/credentials/channel_creds_registry_init.cc +7 -5
  1065. data/src/core/lib/security/credentials/composite/composite_credentials.cc +9 -8
  1066. data/src/core/lib/security/credentials/composite/composite_credentials.h +3 -3
  1067. data/src/core/lib/security/credentials/credentials.cc +10 -9
  1068. data/src/core/lib/security/credentials/credentials.h +5 -4
  1069. data/src/core/lib/security/credentials/external/aws_external_account_credentials.cc +9 -8
  1070. data/src/core/lib/security/credentials/external/aws_external_account_credentials.h +4 -4
  1071. data/src/core/lib/security/credentials/external/aws_request_signer.cc +2 -2
  1072. data/src/core/lib/security/credentials/external/aws_request_signer.h +2 -2
  1073. data/src/core/lib/security/credentials/external/external_account_credentials.cc +16 -17
  1074. data/src/core/lib/security/credentials/external/external_account_credentials.h +5 -5
  1075. data/src/core/lib/security/credentials/external/file_external_account_credentials.cc +3 -4
  1076. data/src/core/lib/security/credentials/external/file_external_account_credentials.h +2 -2
  1077. data/src/core/lib/security/credentials/external/url_external_account_credentials.cc +8 -7
  1078. data/src/core/lib/security/credentials/external/url_external_account_credentials.h +3 -3
  1079. data/src/core/lib/security/credentials/fake/fake_credentials.cc +2 -2
  1080. data/src/core/lib/security/credentials/fake/fake_credentials.h +3 -3
  1081. data/src/core/lib/security/credentials/google_default/credentials_generic.cc +4 -5
  1082. data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +19 -18
  1083. data/src/core/lib/security/credentials/google_default/google_default_credentials.h +3 -3
  1084. data/src/core/lib/security/credentials/iam/iam_credentials.cc +5 -5
  1085. data/src/core/lib/security/credentials/iam/iam_credentials.h +3 -3
  1086. data/src/core/lib/security/credentials/insecure/insecure_credentials.cc +2 -2
  1087. data/src/core/lib/security/credentials/insecure/insecure_credentials.h +2 -2
  1088. data/src/core/lib/security/credentials/jwt/json_token.cc +27 -23
  1089. data/src/core/lib/security/credentials/jwt/json_token.h +2 -3
  1090. data/src/core/lib/security/credentials/jwt/jwt_credentials.cc +10 -8
  1091. data/src/core/lib/security/credentials/jwt/jwt_credentials.h +3 -3
  1092. data/src/core/lib/security/credentials/jwt/jwt_verifier.cc +76 -85
  1093. data/src/core/lib/security/credentials/jwt/jwt_verifier.h +2 -3
  1094. data/src/core/lib/security/credentials/local/local_credentials.cc +1 -2
  1095. data/src/core/lib/security/credentials/local/local_credentials.h +3 -3
  1096. data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +21 -19
  1097. data/src/core/lib/security/credentials/oauth2/oauth2_credentials.h +6 -6
  1098. data/src/core/lib/security/credentials/plugin/plugin_credentials.cc +9 -10
  1099. data/src/core/lib/security/credentials/plugin/plugin_credentials.h +3 -5
  1100. data/src/core/lib/security/credentials/ssl/ssl_credentials.cc +28 -34
  1101. data/src/core/lib/security/credentials/ssl/ssl_credentials.h +6 -4
  1102. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.cc +26 -25
  1103. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.h +2 -2
  1104. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_match.cc +2 -2
  1105. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.cc +28 -36
  1106. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.h +4 -4
  1107. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.cc +3 -3
  1108. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.h +5 -4
  1109. data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc +23 -22
  1110. data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h +1 -0
  1111. data/src/core/lib/security/credentials/tls/grpc_tls_crl_provider.cc +22 -17
  1112. data/src/core/lib/security/credentials/tls/grpc_tls_crl_provider.h +8 -5
  1113. data/src/core/lib/security/credentials/tls/tls_credentials.cc +15 -18
  1114. data/src/core/lib/security/credentials/tls/tls_credentials.h +2 -2
  1115. data/src/core/lib/security/credentials/tls/tls_utils.cc +5 -6
  1116. data/src/core/lib/security/credentials/tls/tls_utils.h +1 -2
  1117. data/src/core/lib/security/credentials/xds/xds_credentials.cc +8 -8
  1118. data/src/core/lib/security/credentials/xds/xds_credentials.h +3 -3
  1119. data/src/core/lib/security/security_connector/alts/alts_security_connector.cc +27 -30
  1120. data/src/core/lib/security/security_connector/alts/alts_security_connector.h +2 -2
  1121. data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +20 -17
  1122. data/src/core/lib/security/security_connector/fake/fake_security_connector.h +2 -2
  1123. data/src/core/lib/security/security_connector/insecure/insecure_security_connector.cc +6 -5
  1124. data/src/core/lib/security/security_connector/insecure/insecure_security_connector.h +3 -3
  1125. data/src/core/lib/security/security_connector/load_system_roots.h +4 -2
  1126. data/src/core/lib/security/security_connector/load_system_roots_fallback.cc +3 -2
  1127. data/src/core/lib/security/security_connector/load_system_roots_supported.cc +8 -8
  1128. data/src/core/lib/security/security_connector/load_system_roots_supported.h +1 -2
  1129. data/src/core/lib/security/security_connector/load_system_roots_windows.cc +87 -0
  1130. data/src/core/lib/security/security_connector/local/local_security_connector.cc +19 -23
  1131. data/src/core/lib/security/security_connector/local/local_security_connector.h +2 -2
  1132. data/src/core/lib/security/security_connector/security_connector.cc +8 -10
  1133. data/src/core/lib/security/security_connector/security_connector.h +4 -6
  1134. data/src/core/lib/security/security_connector/ssl/ssl_security_connector.cc +23 -25
  1135. data/src/core/lib/security/security_connector/ssl/ssl_security_connector.h +2 -2
  1136. data/src/core/lib/security/security_connector/ssl_utils.cc +29 -30
  1137. data/src/core/lib/security/security_connector/ssl_utils.h +1 -2
  1138. data/src/core/lib/security/security_connector/tls/tls_security_connector.cc +42 -53
  1139. data/src/core/lib/security/security_connector/tls/tls_security_connector.h +3 -3
  1140. data/src/core/lib/security/transport/auth_filters.h +12 -36
  1141. data/src/core/lib/security/transport/client_auth_filter.cc +13 -18
  1142. data/src/core/lib/security/transport/server_auth_filter.cc +10 -13
  1143. data/src/core/lib/security/util/json_util.cc +1 -2
  1144. data/src/core/lib/security/util/json_util.h +1 -1
  1145. data/src/core/lib/slice/percent_encoding.cc +4 -3
  1146. data/src/core/lib/slice/slice.cc +42 -15
  1147. data/src/core/lib/slice/slice.h +5 -5
  1148. data/src/core/lib/slice/slice_buffer.cc +64 -25
  1149. data/src/core/lib/slice/slice_buffer.h +15 -3
  1150. data/src/core/lib/slice/slice_internal.h +10 -3
  1151. data/src/core/lib/slice/slice_refcount.h +3 -6
  1152. data/src/core/lib/slice/slice_string_helpers.cc +3 -3
  1153. data/src/core/lib/slice/slice_string_helpers.h +1 -2
  1154. data/src/core/lib/surface/api_trace.h +2 -5
  1155. data/src/core/lib/surface/byte_buffer.cc +1 -2
  1156. data/src/core/lib/surface/byte_buffer_reader.cc +4 -3
  1157. data/src/core/lib/surface/call.cc +102 -3904
  1158. data/src/core/lib/surface/call.h +159 -91
  1159. data/src/core/lib/surface/call_details.cc +1 -2
  1160. data/src/core/lib/surface/call_log_batch.cc +2 -3
  1161. data/src/core/lib/surface/call_test_only.h +1 -2
  1162. data/src/core/lib/surface/call_utils.cc +276 -0
  1163. data/src/core/lib/surface/call_utils.h +449 -0
  1164. data/src/core/lib/surface/channel.cc +118 -323
  1165. data/src/core/lib/surface/channel.h +92 -109
  1166. data/src/core/lib/surface/channel_create.cc +118 -0
  1167. data/src/core/lib/surface/{builtins.cc → channel_create.h} +22 -16
  1168. data/src/core/lib/surface/channel_init.cc +29 -84
  1169. data/src/core/lib/surface/channel_init.h +45 -102
  1170. data/src/core/lib/surface/channel_stack_type.cc +2 -2
  1171. data/src/core/lib/surface/client_call.cc +419 -0
  1172. data/src/core/lib/surface/client_call.h +180 -0
  1173. data/src/core/lib/surface/completion_queue.cc +45 -51
  1174. data/src/core/lib/surface/completion_queue.h +1 -10
  1175. data/src/core/lib/surface/completion_queue_factory.cc +9 -8
  1176. data/src/core/lib/surface/completion_queue_factory.h +1 -2
  1177. data/src/core/lib/surface/event_string.cc +2 -2
  1178. data/src/core/lib/surface/event_string.h +1 -2
  1179. data/src/core/lib/surface/filter_stack_call.cc +1157 -0
  1180. data/src/core/lib/surface/filter_stack_call.h +369 -0
  1181. data/src/core/lib/surface/init.cc +15 -20
  1182. data/src/core/lib/surface/init_internally.cc +2 -2
  1183. data/src/core/lib/surface/lame_client.cc +13 -41
  1184. data/src/core/lib/surface/lame_client.h +13 -13
  1185. data/src/core/lib/surface/legacy_channel.cc +427 -0
  1186. data/src/core/lib/surface/legacy_channel.h +114 -0
  1187. data/src/core/lib/surface/metadata_array.cc +1 -2
  1188. data/src/core/lib/surface/server_call.cc +222 -0
  1189. data/src/core/lib/surface/server_call.h +167 -0
  1190. data/src/core/lib/surface/validate_metadata.cc +1 -2
  1191. data/src/core/lib/surface/validate_metadata.h +3 -3
  1192. data/src/core/lib/surface/version.cc +3 -4
  1193. data/src/core/lib/transport/bdp_estimator.cc +7 -7
  1194. data/src/core/lib/transport/bdp_estimator.h +6 -8
  1195. data/src/core/lib/transport/{call_size_estimator.cc → call_arena_allocator.cc} +3 -3
  1196. data/src/core/lib/transport/{call_size_estimator.h → call_arena_allocator.h} +29 -6
  1197. data/src/core/lib/transport/call_destination.h +76 -0
  1198. data/src/core/lib/transport/call_filters.cc +166 -33
  1199. data/src/core/lib/transport/call_filters.h +517 -62
  1200. data/src/core/lib/transport/call_final_info.cc +2 -2
  1201. data/src/core/lib/transport/call_final_info.h +1 -2
  1202. data/src/core/lib/transport/call_spine.cc +17 -19
  1203. data/src/core/lib/transport/call_spine.h +242 -214
  1204. data/src/core/lib/transport/connectivity_state.cc +9 -12
  1205. data/src/core/lib/transport/connectivity_state.h +1 -4
  1206. data/src/core/lib/transport/error_utils.cc +1 -2
  1207. data/src/core/lib/transport/error_utils.h +1 -2
  1208. data/src/core/lib/transport/interception_chain.cc +155 -0
  1209. data/src/core/lib/transport/interception_chain.h +236 -0
  1210. data/src/core/lib/transport/message.cc +1 -2
  1211. data/src/core/lib/transport/metadata.cc +3 -3
  1212. data/src/core/lib/transport/metadata_batch.cc +68 -7
  1213. data/src/core/lib/transport/metadata_batch.h +55 -21
  1214. data/src/core/lib/transport/metadata_compression_traits.h +2 -2
  1215. data/src/core/lib/transport/metadata_info.cc +55 -0
  1216. data/src/core/lib/transport/metadata_info.h +85 -0
  1217. data/src/core/lib/transport/parsed_metadata.cc +2 -2
  1218. data/src/core/lib/transport/parsed_metadata.h +1 -2
  1219. data/src/core/lib/transport/simple_slice_based_metadata.h +2 -2
  1220. data/src/core/lib/transport/status_conversion.cc +2 -2
  1221. data/src/core/lib/transport/status_conversion.h +1 -2
  1222. data/src/core/lib/transport/timeout_encoding.cc +5 -5
  1223. data/src/core/lib/transport/timeout_encoding.h +2 -2
  1224. data/src/core/lib/transport/transport.cc +4 -8
  1225. data/src/core/lib/transport/transport.h +80 -74
  1226. data/src/core/lib/transport/transport_op_string.cc +1 -10
  1227. data/src/core/lib/uri/uri_parser.cc +3 -3
  1228. data/src/core/lib/uri/uri_parser.h +2 -2
  1229. data/src/core/load_balancing/address_filtering.cc +3 -3
  1230. data/src/core/load_balancing/address_filtering.h +3 -3
  1231. data/src/core/load_balancing/backend_metric_data.h +2 -2
  1232. data/src/core/{client_channel/backend_metric.cc → load_balancing/backend_metric_parser.cc} +3 -3
  1233. data/src/core/{client_channel/backend_metric.h → load_balancing/backend_metric_parser.h} +5 -5
  1234. data/src/core/load_balancing/child_policy_handler.cc +15 -15
  1235. data/src/core/load_balancing/child_policy_handler.h +2 -2
  1236. data/src/core/load_balancing/delegating_helper.h +10 -3
  1237. data/src/core/load_balancing/endpoint_list.cc +12 -14
  1238. data/src/core/load_balancing/endpoint_list.h +16 -10
  1239. data/src/core/load_balancing/grpclb/client_load_reporting_filter.cc +29 -30
  1240. data/src/core/load_balancing/grpclb/client_load_reporting_filter.h +22 -8
  1241. data/src/core/load_balancing/grpclb/grpclb.cc +89 -98
  1242. data/src/core/load_balancing/grpclb/grpclb_balancer_addresses.cc +3 -3
  1243. data/src/core/load_balancing/grpclb/grpclb_balancer_addresses.h +1 -2
  1244. data/src/core/load_balancing/grpclb/grpclb_client_stats.cc +1 -2
  1245. data/src/core/load_balancing/grpclb/grpclb_client_stats.h +2 -3
  1246. data/src/core/load_balancing/grpclb/load_balancer_api.cc +4 -6
  1247. data/src/core/load_balancing/grpclb/load_balancer_api.h +2 -3
  1248. data/src/core/load_balancing/health_check_client.cc +20 -24
  1249. data/src/core/load_balancing/health_check_client.h +2 -2
  1250. data/src/core/load_balancing/health_check_client_internal.h +5 -7
  1251. data/src/core/load_balancing/lb_policy.cc +7 -10
  1252. data/src/core/load_balancing/lb_policy.h +32 -8
  1253. data/src/core/load_balancing/lb_policy_factory.h +3 -3
  1254. data/src/core/load_balancing/lb_policy_registry.cc +5 -6
  1255. data/src/core/load_balancing/lb_policy_registry.h +5 -5
  1256. data/src/core/load_balancing/oob_backend_metric.cc +12 -15
  1257. data/src/core/load_balancing/oob_backend_metric.h +3 -3
  1258. data/src/core/load_balancing/oob_backend_metric_internal.h +7 -8
  1259. data/src/core/load_balancing/outlier_detection/outlier_detection.cc +65 -67
  1260. data/src/core/load_balancing/outlier_detection/outlier_detection.h +5 -5
  1261. data/src/core/load_balancing/pick_first/pick_first.cc +1186 -279
  1262. data/src/core/load_balancing/priority/priority.cc +49 -45
  1263. data/src/core/load_balancing/ring_hash/ring_hash.cc +53 -38
  1264. data/src/core/load_balancing/ring_hash/ring_hash.h +6 -6
  1265. data/src/core/load_balancing/rls/rls.cc +280 -150
  1266. data/src/core/{lib/iomgr/ev_windows.cc → load_balancing/rls/rls.h} +8 -12
  1267. data/src/core/load_balancing/round_robin/round_robin.cc +50 -497
  1268. data/src/core/load_balancing/subchannel_interface.h +4 -4
  1269. data/src/core/load_balancing/weighted_round_robin/static_stride_scheduler.cc +4 -4
  1270. data/src/core/load_balancing/weighted_round_robin/static_stride_scheduler.h +3 -3
  1271. data/src/core/load_balancing/weighted_round_robin/weighted_round_robin.cc +162 -936
  1272. data/src/core/load_balancing/weighted_target/weighted_target.cc +41 -41
  1273. data/src/core/load_balancing/weighted_target/weighted_target.h +28 -0
  1274. data/src/core/load_balancing/xds/cds.cc +33 -36
  1275. data/src/core/load_balancing/xds/xds_cluster_impl.cc +128 -84
  1276. data/src/core/load_balancing/xds/xds_cluster_manager.cc +23 -26
  1277. data/src/core/load_balancing/xds/xds_override_host.cc +61 -62
  1278. data/src/core/load_balancing/xds/xds_override_host.h +6 -6
  1279. data/src/core/load_balancing/xds/xds_wrr_locality.cc +21 -23
  1280. data/src/core/plugin_registry/grpc_plugin_registry.cc +27 -9
  1281. data/src/core/plugin_registry/grpc_plugin_registry_extra.cc +1 -3
  1282. data/src/core/resolver/binder/binder_resolver.cc +15 -7
  1283. data/src/core/resolver/dns/c_ares/dns_resolver_ares.cc +16 -15
  1284. data/src/core/resolver/dns/c_ares/dns_resolver_ares.h +2 -2
  1285. data/src/core/resolver/dns/c_ares/grpc_ares_ev_driver.h +3 -3
  1286. data/src/core/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc +6 -5
  1287. data/src/core/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc +39 -38
  1288. data/src/core/resolver/dns/c_ares/grpc_ares_wrapper.cc +21 -28
  1289. data/src/core/resolver/dns/c_ares/grpc_ares_wrapper.h +2 -7
  1290. data/src/core/resolver/dns/c_ares/grpc_ares_wrapper_posix.cc +1 -1
  1291. data/src/core/resolver/dns/c_ares/grpc_ares_wrapper_windows.cc +2 -2
  1292. data/src/core/resolver/dns/dns_resolver_plugin.cc +10 -10
  1293. data/src/core/resolver/dns/event_engine/event_engine_client_channel_resolver.cc +11 -16
  1294. data/src/core/resolver/dns/event_engine/event_engine_client_channel_resolver.h +6 -4
  1295. data/src/core/resolver/dns/event_engine/service_config_helper.cc +7 -7
  1296. data/src/core/resolver/dns/event_engine/service_config_helper.h +2 -2
  1297. data/src/core/resolver/dns/native/dns_resolver.cc +14 -16
  1298. data/src/core/resolver/endpoint_addresses.cc +5 -5
  1299. data/src/core/resolver/endpoint_addresses.h +6 -6
  1300. data/src/core/resolver/fake/fake_resolver.cc +7 -7
  1301. data/src/core/resolver/fake/fake_resolver.h +3 -4
  1302. data/src/core/resolver/google_c2p/google_c2p_resolver.cc +31 -27
  1303. data/src/core/resolver/polling_resolver.cc +35 -40
  1304. data/src/core/resolver/polling_resolver.h +1 -2
  1305. data/src/core/resolver/resolver.cc +3 -7
  1306. data/src/core/resolver/resolver.h +2 -4
  1307. data/src/core/resolver/resolver_factory.h +3 -3
  1308. data/src/core/resolver/resolver_registry.cc +11 -13
  1309. data/src/core/resolver/resolver_registry.h +5 -5
  1310. data/src/core/resolver/sockaddr/sockaddr_resolver.cc +11 -12
  1311. data/src/core/resolver/xds/xds_dependency_manager.cc +41 -36
  1312. data/src/core/resolver/xds/xds_dependency_manager.h +12 -12
  1313. data/src/core/resolver/xds/xds_resolver.cc +49 -55
  1314. data/src/core/resolver/xds/xds_resolver_attributes.h +3 -3
  1315. data/src/core/{lib/surface → server}/server.cc +313 -446
  1316. data/src/core/{lib/surface → server}/server.h +48 -27
  1317. data/src/core/{lib/channel → server}/server_call_tracer_filter.cc +16 -18
  1318. data/src/core/{lib/surface/builtins.h → server/server_call_tracer_filter.h} +7 -5
  1319. data/src/core/{ext/filters/server_config_selector → server}/server_config_selector.h +6 -6
  1320. data/src/core/{ext/filters/server_config_selector → server}/server_config_selector_filter.cc +40 -40
  1321. data/src/core/{ext/filters/server_config_selector → server}/server_config_selector_filter.h +3 -3
  1322. data/src/core/server/server_interface.h +45 -0
  1323. data/src/core/{ext/xds → server}/xds_channel_stack_modifier.cc +4 -4
  1324. data/src/core/{ext/xds → server}/xds_channel_stack_modifier.h +7 -7
  1325. data/src/core/{ext/xds → server}/xds_server_config_fetcher.cc +44 -45
  1326. data/src/core/service_config/service_config.h +2 -3
  1327. data/src/core/service_config/service_config_call_data.h +15 -13
  1328. data/src/core/{client_channel → service_config}/service_config_channel_arg_filter.cc +13 -12
  1329. data/src/core/service_config/service_config_impl.cc +7 -7
  1330. data/src/core/service_config/service_config_impl.h +4 -4
  1331. data/src/core/service_config/service_config_parser.cc +4 -8
  1332. data/src/core/service_config/service_config_parser.h +4 -4
  1333. data/src/core/{lib/channel → telemetry}/call_tracer.cc +28 -39
  1334. data/src/core/{lib/channel → telemetry}/call_tracer.h +47 -23
  1335. data/src/core/{lib/debug → telemetry}/histogram_view.cc +2 -2
  1336. data/src/core/{lib/debug → telemetry}/histogram_view.h +5 -5
  1337. data/src/core/telemetry/metrics.cc +178 -0
  1338. data/src/core/telemetry/metrics.h +562 -0
  1339. data/src/core/{lib/debug → telemetry}/stats.cc +3 -3
  1340. data/src/core/{lib/debug → telemetry}/stats.h +7 -7
  1341. data/src/core/{lib/debug → telemetry}/stats_data.cc +272 -29
  1342. data/src/core/{lib/debug → telemetry}/stats_data.h +182 -6
  1343. data/src/core/{lib/channel → telemetry}/tcp_tracer.h +9 -5
  1344. data/src/core/tsi/alts/crypt/aes_gcm.cc +1 -2
  1345. data/src/core/tsi/alts/crypt/gsec.cc +1 -2
  1346. data/src/core/tsi/alts/crypt/gsec.h +1 -2
  1347. data/src/core/tsi/alts/frame_protector/alts_counter.cc +1 -2
  1348. data/src/core/tsi/alts/frame_protector/alts_counter.h +1 -2
  1349. data/src/core/tsi/alts/frame_protector/alts_crypter.cc +1 -2
  1350. data/src/core/tsi/alts/frame_protector/alts_crypter.h +1 -2
  1351. data/src/core/tsi/alts/frame_protector/alts_frame_protector.cc +13 -15
  1352. data/src/core/tsi/alts/frame_protector/alts_frame_protector.h +2 -2
  1353. data/src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.cc +1 -2
  1354. data/src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.h +1 -2
  1355. data/src/core/tsi/alts/frame_protector/alts_seal_privacy_integrity_crypter.cc +1 -2
  1356. data/src/core/tsi/alts/frame_protector/alts_unseal_privacy_integrity_crypter.cc +1 -2
  1357. data/src/core/tsi/alts/frame_protector/frame_handler.cc +1 -2
  1358. data/src/core/tsi/alts/frame_protector/frame_handler.h +2 -2
  1359. data/src/core/tsi/alts/handshaker/alts_handshaker_client.cc +69 -68
  1360. data/src/core/tsi/alts/handshaker/alts_handshaker_client.h +1 -2
  1361. data/src/core/tsi/alts/handshaker/alts_shared_resource.cc +5 -4
  1362. data/src/core/tsi/alts/handshaker/alts_shared_resource.h +1 -2
  1363. data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc +55 -53
  1364. data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.h +1 -2
  1365. data/src/core/tsi/alts/handshaker/alts_tsi_utils.cc +7 -5
  1366. data/src/core/tsi/alts/handshaker/alts_tsi_utils.h +1 -2
  1367. data/src/core/tsi/alts/handshaker/transport_security_common_api.cc +4 -3
  1368. data/src/core/tsi/alts/handshaker/transport_security_common_api.h +1 -2
  1369. data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.cc +10 -8
  1370. data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.h +2 -2
  1371. data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.cc +6 -5
  1372. data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.h +2 -2
  1373. data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol.h +1 -2
  1374. data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.cc +10 -6
  1375. data/src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.cc +1 -2
  1376. data/src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.h +2 -2
  1377. data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc +9 -7
  1378. data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.h +2 -2
  1379. data/src/core/tsi/fake_transport_security.cc +20 -21
  1380. data/src/core/tsi/local_transport_security.cc +7 -7
  1381. data/src/core/tsi/local_transport_security.h +1 -2
  1382. data/src/core/tsi/ssl/key_logging/ssl_key_logging.cc +7 -6
  1383. data/src/core/tsi/ssl/key_logging/ssl_key_logging.h +1 -2
  1384. data/src/core/tsi/ssl/session_cache/ssl_session.h +1 -2
  1385. data/src/core/tsi/ssl/session_cache/ssl_session_cache.cc +15 -14
  1386. data/src/core/tsi/ssl/session_cache/ssl_session_cache.h +1 -2
  1387. data/src/core/tsi/ssl/session_cache/ssl_session_openssl.cc +3 -4
  1388. data/src/core/tsi/ssl_transport_security.cc +286 -162
  1389. data/src/core/tsi/ssl_transport_security.h +1 -2
  1390. data/src/core/tsi/ssl_transport_security_utils.cc +208 -24
  1391. data/src/core/tsi/ssl_transport_security_utils.h +39 -2
  1392. data/src/core/tsi/ssl_types.h +2 -2
  1393. data/src/core/tsi/transport_security.cc +1 -6
  1394. data/src/core/tsi/transport_security.h +2 -4
  1395. data/src/core/tsi/transport_security_grpc.cc +2 -2
  1396. data/src/core/tsi/transport_security_grpc.h +1 -2
  1397. data/src/core/tsi/transport_security_interface.h +2 -6
  1398. data/src/core/{lib/gpr → util}/alloc.cc +3 -1
  1399. data/src/core/{lib/gpr → util}/alloc.h +3 -3
  1400. data/src/core/{lib/gpr → util}/android/log.cc +0 -19
  1401. data/src/core/{lib/gpr → util}/atm.cc +1 -1
  1402. data/src/core/{ext/gcp/metadata_query.cc → util/gcp_metadata_query.cc} +26 -26
  1403. data/src/core/{ext/gcp/metadata_query.h → util/gcp_metadata_query.h} +9 -9
  1404. data/src/core/{lib/http → util/http_client}/format_request.cc +2 -2
  1405. data/src/core/{lib/http → util/http_client}/format_request.h +4 -4
  1406. data/src/core/{lib/http → util/http_client}/httpcli.cc +12 -13
  1407. data/src/core/{lib/http → util/http_client}/httpcli.h +5 -5
  1408. data/src/core/{lib/http → util/http_client}/httpcli_security_connector.cc +10 -10
  1409. data/src/core/{lib/http → util/http_client}/httpcli_ssl_credentials.h +3 -3
  1410. data/src/core/{lib/http → util/http_client}/parser.cc +6 -7
  1411. data/src/core/{lib/http → util/http_client}/parser.h +3 -5
  1412. data/src/core/{lib → util}/json/json.h +3 -3
  1413. data/src/core/{lib → util}/json/json_args.h +3 -3
  1414. data/src/core/{lib → util}/json/json_channel_args.h +4 -4
  1415. data/src/core/{lib → util}/json/json_object_loader.cc +1 -1
  1416. data/src/core/{lib → util}/json/json_object_loader.h +5 -5
  1417. data/src/core/{lib → util}/json/json_reader.cc +4 -3
  1418. data/src/core/{lib → util}/json/json_reader.h +4 -4
  1419. data/src/core/{lib → util}/json/json_util.cc +3 -3
  1420. data/src/core/{lib → util}/json/json_util.h +4 -4
  1421. data/src/core/{lib → util}/json/json_writer.cc +1 -1
  1422. data/src/core/{lib → util}/json/json_writer.h +4 -4
  1423. data/src/core/{lib/gpr → util}/linux/log.cc +0 -45
  1424. data/src/core/util/log.cc +167 -0
  1425. data/src/core/{lib/gpr → util}/msys/tmpfile.cc +2 -2
  1426. data/src/core/{lib/gpr → util}/posix/cpu.cc +1 -1
  1427. data/src/core/{lib/gpr → util}/posix/log.cc +0 -42
  1428. data/src/core/{lib/gpr → util}/posix/sync.cc +25 -23
  1429. data/src/core/{lib/gpr → util}/posix/time.cc +10 -67
  1430. data/src/core/{lib/gpr → util}/posix/tmpfile.cc +5 -3
  1431. data/src/core/{lib/gpr → util}/spinlock.h +3 -3
  1432. data/src/core/{lib/gpr → util}/string.cc +2 -2
  1433. data/src/core/{lib/gpr → util}/string.h +3 -3
  1434. data/src/core/{lib/gpr → util}/sync.cc +5 -3
  1435. data/src/core/{lib/gpr → util}/time.cc +10 -8
  1436. data/src/core/{lib/gpr → util}/time_precise.cc +1 -1
  1437. data/src/core/{lib/gpr → util}/time_precise.h +3 -3
  1438. data/src/core/{lib/gpr → util}/tmpfile.h +3 -3
  1439. data/src/core/{lib/gpr → util}/useful.h +3 -3
  1440. data/src/core/{lib/gpr → util}/windows/log.cc +1 -44
  1441. data/src/core/{lib/gpr → util}/windows/string.cc +1 -1
  1442. data/src/core/{lib/gpr → util}/windows/string_util.cc +1 -1
  1443. data/src/core/{lib/gpr → util}/windows/sync.cc +3 -1
  1444. data/src/core/{lib/gpr → util}/windows/time.cc +5 -2
  1445. data/src/core/{lib/gpr → util}/windows/tmpfile.cc +1 -1
  1446. data/src/core/{ext/xds → xds/grpc}/certificate_provider_store.cc +5 -6
  1447. data/src/core/{ext/xds → xds/grpc}/certificate_provider_store.h +11 -11
  1448. data/src/core/{ext/xds → xds/grpc}/file_watcher_certificate_provider_factory.cc +5 -6
  1449. data/src/core/{ext/xds → xds/grpc}/file_watcher_certificate_provider_factory.h +9 -10
  1450. data/src/core/{ext/xds → xds/grpc}/upb_utils.h +5 -5
  1451. data/src/core/{ext/xds → xds/grpc}/xds_audit_logger_registry.cc +6 -5
  1452. data/src/core/{ext/xds → xds/grpc}/xds_audit_logger_registry.h +8 -8
  1453. data/src/core/{ext/xds → xds/grpc}/xds_bootstrap_grpc.cc +44 -13
  1454. data/src/core/{ext/xds → xds/grpc}/xds_bootstrap_grpc.h +36 -21
  1455. data/src/core/{ext/xds → xds/grpc}/xds_certificate_provider.cc +7 -7
  1456. data/src/core/{ext/xds → xds/grpc}/xds_certificate_provider.h +6 -7
  1457. data/src/core/{ext/xds → xds/grpc}/xds_client_grpc.cc +218 -72
  1458. data/src/core/{ext/xds → xds/grpc}/xds_client_grpc.h +31 -18
  1459. data/src/core/{ext/xds → xds/grpc}/xds_cluster.cc +31 -23
  1460. data/src/core/{ext/xds → xds/grpc}/xds_cluster.h +17 -15
  1461. data/src/core/{ext/xds → xds/grpc}/xds_cluster_specifier_plugin.cc +6 -6
  1462. data/src/core/{ext/xds → xds/grpc}/xds_cluster_specifier_plugin.h +9 -9
  1463. data/src/core/{ext/xds → xds/grpc}/xds_common_types.cc +6 -7
  1464. data/src/core/{ext/xds → xds/grpc}/xds_common_types.h +7 -7
  1465. data/src/core/{ext/xds → xds/grpc}/xds_endpoint.cc +14 -14
  1466. data/src/core/{ext/xds → xds/grpc}/xds_endpoint.h +11 -11
  1467. data/src/core/{ext/xds → xds/grpc}/xds_health_status.cc +3 -3
  1468. data/src/core/{ext/xds → xds/grpc}/xds_health_status.h +7 -7
  1469. data/src/core/{ext/xds → xds/grpc}/xds_http_fault_filter.cc +6 -7
  1470. data/src/core/{ext/xds → xds/grpc}/xds_http_fault_filter.h +9 -9
  1471. data/src/core/{ext/xds → xds/grpc}/xds_http_filters.cc +8 -9
  1472. data/src/core/{ext/xds → xds/grpc}/xds_http_filters.h +11 -11
  1473. data/src/core/{ext/xds → xds/grpc}/xds_http_rbac_filter.cc +9 -10
  1474. data/src/core/{ext/xds → xds/grpc}/xds_http_rbac_filter.h +9 -9
  1475. data/src/core/{ext/xds → xds/grpc}/xds_http_stateful_session_filter.cc +7 -8
  1476. data/src/core/{ext/xds → xds/grpc}/xds_http_stateful_session_filter.h +9 -9
  1477. data/src/core/{ext/xds → xds/grpc}/xds_lb_policy_registry.cc +8 -9
  1478. data/src/core/{ext/xds → xds/grpc}/xds_lb_policy_registry.h +8 -8
  1479. data/src/core/{ext/xds → xds/grpc}/xds_listener.cc +12 -14
  1480. data/src/core/{ext/xds → xds/grpc}/xds_listener.h +13 -13
  1481. data/src/core/{ext/xds → xds/grpc}/xds_route_config.cc +23 -24
  1482. data/src/core/{ext/xds → xds/grpc}/xds_route_config.h +12 -12
  1483. data/src/core/{ext/xds → xds/grpc}/xds_routing.cc +6 -6
  1484. data/src/core/{ext/xds → xds/grpc}/xds_routing.h +9 -9
  1485. data/src/core/{ext/xds → xds/grpc}/xds_transport_grpc.cc +31 -46
  1486. data/src/core/{ext/xds → xds/grpc}/xds_transport_grpc.h +12 -13
  1487. data/src/core/{ext/xds → xds/xds_client}/xds_api.cc +9 -14
  1488. data/src/core/{ext/xds → xds/xds_client}/xds_api.h +8 -8
  1489. data/src/core/{ext/xds → xds/xds_client}/xds_bootstrap.cc +4 -4
  1490. data/src/core/{ext/xds → xds/xds_client}/xds_bootstrap.h +8 -10
  1491. data/src/core/{ext/xds → xds/xds_client}/xds_channel_args.h +3 -3
  1492. data/src/core/{ext/xds → xds/xds_client}/xds_client.cc +337 -159
  1493. data/src/core/{ext/xds → xds/xds_client}/xds_client.h +50 -21
  1494. data/src/core/{ext/xds → xds/xds_client}/xds_client_stats.cc +23 -22
  1495. data/src/core/{ext/xds → xds/xds_client}/xds_client_stats.h +21 -14
  1496. data/src/core/xds/xds_client/xds_metrics.h +41 -0
  1497. data/src/core/{ext/xds → xds/xds_client}/xds_resource_type.h +6 -6
  1498. data/src/core/{ext/xds → xds/xds_client}/xds_resource_type_impl.h +7 -7
  1499. data/src/core/{ext/xds → xds/xds_client}/xds_transport.h +6 -6
  1500. data/src/ruby/bin/math_pb.rb +1 -22
  1501. data/src/ruby/ext/grpc/extconf.rb +0 -3
  1502. data/src/ruby/ext/grpc/rb_call.c +8 -1
  1503. data/src/ruby/ext/grpc/rb_call_credentials.c +1 -0
  1504. data/src/ruby/ext/grpc/rb_call_credentials.h +1 -0
  1505. data/src/ruby/ext/grpc/rb_channel.c +1 -0
  1506. data/src/ruby/ext/grpc/rb_channel_credentials.c +1 -0
  1507. data/src/ruby/ext/grpc/rb_completion_queue.c +15 -32
  1508. data/src/ruby/ext/grpc/rb_completion_queue.h +7 -1
  1509. data/src/ruby/ext/grpc/rb_grpc.c +1 -0
  1510. data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +130 -132
  1511. data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +198 -200
  1512. data/src/ruby/ext/grpc/rb_server.c +40 -22
  1513. data/src/ruby/ext/grpc/rb_server_credentials.c +1 -0
  1514. data/src/ruby/ext/grpc/rb_server_credentials.h +1 -0
  1515. data/src/ruby/ext/grpc/rb_xds_channel_credentials.c +1 -0
  1516. data/src/ruby/ext/grpc/rb_xds_server_credentials.c +1 -0
  1517. data/src/ruby/ext/grpc/rb_xds_server_credentials.h +1 -0
  1518. data/src/ruby/lib/grpc/generic/active_call.rb +8 -2
  1519. data/src/ruby/lib/grpc/version.rb +1 -1
  1520. data/src/ruby/pb/grpc/health/v1/health_pb.rb +1 -22
  1521. data/src/ruby/pb/grpc/testing/duplicate/echo_duplicate_services_pb.rb +5 -5
  1522. data/src/ruby/pb/grpc/testing/metrics_pb.rb +10 -19
  1523. data/src/ruby/pb/grpc/testing/metrics_services_pb.rb +5 -5
  1524. data/src/ruby/pb/src/proto/grpc/testing/empty_pb.rb +1 -22
  1525. data/src/ruby/pb/src/proto/grpc/testing/messages_pb.rb +1 -22
  1526. data/src/ruby/pb/src/proto/grpc/testing/test_pb.rb +1 -22
  1527. data/src/ruby/spec/generic/rpc_server_spec.rb +25 -0
  1528. data/third_party/abseil-cpp/absl/debugging/internal/examine_stack.cc +320 -0
  1529. data/third_party/abseil-cpp/absl/debugging/internal/examine_stack.h +64 -0
  1530. data/third_party/abseil-cpp/absl/log/absl_vlog_is_on.h +93 -0
  1531. data/third_party/abseil-cpp/absl/log/check.h +209 -0
  1532. data/third_party/abseil-cpp/absl/log/globals.cc +178 -0
  1533. data/third_party/abseil-cpp/absl/log/globals.h +218 -0
  1534. data/third_party/abseil-cpp/absl/log/internal/append_truncated.h +47 -0
  1535. data/third_party/abseil-cpp/absl/log/internal/check_impl.h +150 -0
  1536. data/third_party/abseil-cpp/absl/log/internal/check_op.cc +118 -0
  1537. data/third_party/abseil-cpp/absl/log/internal/check_op.h +420 -0
  1538. data/third_party/abseil-cpp/absl/log/internal/conditions.cc +83 -0
  1539. data/third_party/abseil-cpp/absl/log/internal/conditions.h +239 -0
  1540. data/third_party/abseil-cpp/absl/log/internal/config.h +45 -0
  1541. data/third_party/abseil-cpp/absl/log/internal/fnmatch.cc +73 -0
  1542. data/third_party/abseil-cpp/absl/log/internal/fnmatch.h +35 -0
  1543. data/third_party/abseil-cpp/absl/log/internal/globals.cc +145 -0
  1544. data/third_party/abseil-cpp/absl/log/internal/globals.h +101 -0
  1545. data/third_party/abseil-cpp/absl/log/internal/log_format.cc +205 -0
  1546. data/third_party/abseil-cpp/absl/log/internal/log_format.h +78 -0
  1547. data/third_party/abseil-cpp/absl/log/internal/log_impl.h +282 -0
  1548. data/third_party/abseil-cpp/absl/log/internal/log_message.cc +633 -0
  1549. data/third_party/abseil-cpp/absl/log/internal/log_message.h +375 -0
  1550. data/third_party/abseil-cpp/absl/log/internal/log_sink_set.cc +296 -0
  1551. data/third_party/abseil-cpp/absl/log/internal/log_sink_set.h +54 -0
  1552. data/third_party/abseil-cpp/absl/log/internal/nullguard.cc +35 -0
  1553. data/third_party/abseil-cpp/absl/log/internal/nullguard.h +88 -0
  1554. data/third_party/abseil-cpp/absl/log/internal/nullstream.h +136 -0
  1555. data/third_party/abseil-cpp/absl/log/internal/proto.cc +220 -0
  1556. data/third_party/abseil-cpp/absl/log/internal/proto.h +288 -0
  1557. data/third_party/abseil-cpp/absl/log/internal/strip.h +72 -0
  1558. data/third_party/abseil-cpp/absl/log/internal/vlog_config.cc +340 -0
  1559. data/third_party/abseil-cpp/absl/log/internal/vlog_config.h +163 -0
  1560. data/third_party/abseil-cpp/absl/log/internal/voidify.h +44 -0
  1561. data/third_party/abseil-cpp/absl/log/log.h +361 -0
  1562. data/third_party/abseil-cpp/absl/log/log_entry.cc +41 -0
  1563. data/third_party/abseil-cpp/absl/log/log_entry.h +221 -0
  1564. data/{src/core/lib/channel/channel_stack_trace.cc → third_party/abseil-cpp/absl/log/log_sink.cc} +9 -5
  1565. data/third_party/abseil-cpp/absl/log/log_sink.h +64 -0
  1566. data/third_party/abseil-cpp/absl/log/log_sink_registry.h +61 -0
  1567. data/third_party/abseil-cpp/absl/log/vlog_is_on.h +72 -0
  1568. data/third_party/boringssl-with-bazel/src/crypto/asn1/internal.h +1 -7
  1569. data/third_party/boringssl-with-bazel/src/crypto/asn1/posix_time.c +50 -39
  1570. data/third_party/boringssl-with-bazel/src/crypto/base64/base64.c +4 -0
  1571. data/third_party/boringssl-with-bazel/src/crypto/bio/bio.c +15 -20
  1572. data/third_party/boringssl-with-bazel/src/crypto/bio/file.c +25 -10
  1573. data/third_party/boringssl-with-bazel/src/crypto/bytestring/cbs.c +0 -13
  1574. data/third_party/boringssl-with-bazel/src/crypto/bytestring/unicode.c +3 -2
  1575. data/third_party/boringssl-with-bazel/src/crypto/chacha/chacha.c +1 -1
  1576. data/third_party/boringssl-with-bazel/src/crypto/chacha/internal.h +19 -15
  1577. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_des.c +63 -94
  1578. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_null.c +7 -3
  1579. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_rc2.c +20 -28
  1580. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_rc4.c +9 -4
  1581. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/tls_cbc.c +2 -2
  1582. data/third_party/boringssl-with-bazel/src/crypto/conf/conf.c +66 -41
  1583. data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519.c +7 -7
  1584. data/third_party/boringssl-with-bazel/src/crypto/curve25519/internal.h +1 -1
  1585. data/third_party/boringssl-with-bazel/src/crypto/des/des.c +45 -32
  1586. data/third_party/boringssl-with-bazel/src/crypto/des/internal.h +24 -0
  1587. data/third_party/boringssl-with-bazel/src/crypto/digest_extra/digest_extra.c +1 -0
  1588. data/third_party/boringssl-with-bazel/src/crypto/dilithium/dilithium.c +1497 -0
  1589. data/third_party/boringssl-with-bazel/src/crypto/dilithium/internal.h +58 -0
  1590. data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa.c +36 -20
  1591. data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa_asn1.c +3 -4
  1592. data/third_party/boringssl-with-bazel/src/crypto/dsa/internal.h +2 -0
  1593. data/third_party/boringssl-with-bazel/src/crypto/err/err.c +81 -60
  1594. data/third_party/boringssl-with-bazel/src/crypto/evp/evp.c +41 -120
  1595. data/third_party/boringssl-with-bazel/src/crypto/evp/evp_asn1.c +13 -13
  1596. data/third_party/boringssl-with-bazel/src/crypto/evp/internal.h +7 -0
  1597. data/third_party/boringssl-with-bazel/src/crypto/evp/p_dh.c +137 -0
  1598. data/third_party/boringssl-with-bazel/src/crypto/evp/p_dh_asn1.c +120 -0
  1599. data/third_party/boringssl-with-bazel/src/crypto/evp/p_dsa_asn1.c +30 -0
  1600. data/third_party/boringssl-with-bazel/src/crypto/evp/p_ec.c +3 -4
  1601. data/third_party/boringssl-with-bazel/src/crypto/evp/p_ec_asn1.c +30 -0
  1602. data/third_party/boringssl-with-bazel/src/crypto/evp/p_ed25519.c +1 -4
  1603. data/third_party/boringssl-with-bazel/src/crypto/evp/p_rsa_asn1.c +30 -0
  1604. data/third_party/boringssl-with-bazel/src/crypto/evp/p_x25519.c +1 -4
  1605. data/third_party/boringssl-with-bazel/src/crypto/ex_data.c +6 -7
  1606. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm.c +5 -0
  1607. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/bytes.c +1 -1
  1608. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div.c +3 -3
  1609. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div_extra.c +1 -1
  1610. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/exponentiation.c +46 -2
  1611. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/gcd_extra.c +8 -5
  1612. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/internal.h +33 -23
  1613. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery_inv.c +1 -1
  1614. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/mul.c +2 -2
  1615. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/prime.c +14 -7
  1616. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/random.c +2 -1
  1617. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/internal.h +0 -3
  1618. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_key.c +11 -7
  1619. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/scalar.c +5 -1
  1620. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/fips_shared_support.c +3 -6
  1621. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/fork_detect.h +2 -1
  1622. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa.c +11 -11
  1623. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa_impl.c +22 -8
  1624. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/service_indicator/service_indicator.c +3 -6
  1625. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/internal.h +78 -29
  1626. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha1.c +4 -4
  1627. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha256.c +3 -3
  1628. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha512.c +10 -4
  1629. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/tls/kdf.c +7 -0
  1630. data/third_party/boringssl-with-bazel/src/crypto/hpke/hpke.c +2 -0
  1631. data/third_party/boringssl-with-bazel/src/crypto/internal.h +52 -21
  1632. data/third_party/boringssl-with-bazel/src/crypto/kyber/internal.h +1 -1
  1633. data/third_party/boringssl-with-bazel/src/crypto/kyber/kyber.c +1 -1
  1634. data/third_party/boringssl-with-bazel/src/crypto/mem.c +18 -9
  1635. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_lib.c +18 -17
  1636. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pk8.c +44 -41
  1637. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pkey.c +13 -12
  1638. data/third_party/boringssl-with-bazel/src/crypto/spx/spx.c +7 -6
  1639. data/third_party/boringssl-with-bazel/src/crypto/x509/by_dir.c +26 -33
  1640. data/third_party/boringssl-with-bazel/src/crypto/x509/by_file.c +1 -1
  1641. data/third_party/boringssl-with-bazel/src/crypto/x509/internal.h +8 -5
  1642. data/third_party/boringssl-with-bazel/src/crypto/x509/rsa_pss.c +5 -1
  1643. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_cpols.c +9 -4
  1644. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_crld.c +2 -2
  1645. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_info.c +1 -1
  1646. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_lib.c +2 -0
  1647. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_purp.c +40 -61
  1648. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_utl.c +49 -16
  1649. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_lu.c +24 -17
  1650. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_trs.c +51 -78
  1651. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vfy.c +12 -29
  1652. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vpm.c +13 -2
  1653. data/third_party/boringssl-with-bazel/src/crypto/x509/x_algor.c +2 -2
  1654. data/third_party/boringssl-with-bazel/src/crypto/x509/x_x509.c +1 -6
  1655. data/third_party/boringssl-with-bazel/{err_data.c → src/gen/crypto/err_data.c} +487 -485
  1656. data/third_party/boringssl-with-bazel/src/include/openssl/asn1.h +10 -10
  1657. data/third_party/boringssl-with-bazel/src/include/openssl/base.h +10 -2
  1658. data/third_party/boringssl-with-bazel/src/include/openssl/bio.h +88 -45
  1659. data/third_party/boringssl-with-bazel/src/include/openssl/bytestring.h +12 -4
  1660. data/third_party/boringssl-with-bazel/src/include/openssl/crypto.h +4 -0
  1661. data/third_party/boringssl-with-bazel/src/include/openssl/dh.h +17 -1
  1662. data/third_party/boringssl-with-bazel/src/include/openssl/dsa.h +10 -3
  1663. data/third_party/boringssl-with-bazel/src/include/openssl/err.h +13 -0
  1664. data/third_party/boringssl-with-bazel/src/include/openssl/evp.h +25 -14
  1665. data/third_party/boringssl-with-bazel/src/include/openssl/evp_errors.h +1 -0
  1666. data/third_party/boringssl-with-bazel/src/include/openssl/ex_data.h +15 -3
  1667. data/third_party/boringssl-with-bazel/src/include/openssl/experimental/dilithium.h +125 -0
  1668. data/third_party/boringssl-with-bazel/src/{crypto/spx/internal.h → include/openssl/experimental/spx.h} +24 -13
  1669. data/third_party/boringssl-with-bazel/src/include/openssl/obj.h +2 -2
  1670. data/third_party/boringssl-with-bazel/src/include/openssl/pem.h +63 -53
  1671. data/third_party/boringssl-with-bazel/src/include/openssl/posix_time.h +6 -0
  1672. data/third_party/boringssl-with-bazel/src/include/openssl/rand.h +19 -10
  1673. data/third_party/boringssl-with-bazel/src/include/openssl/rsa.h +19 -10
  1674. data/third_party/boringssl-with-bazel/src/include/openssl/span.h +14 -0
  1675. data/third_party/boringssl-with-bazel/src/include/openssl/ssl.h +291 -73
  1676. data/third_party/boringssl-with-bazel/src/include/openssl/stack.h +10 -3
  1677. data/third_party/boringssl-with-bazel/src/include/openssl/target.h +13 -10
  1678. data/third_party/boringssl-with-bazel/src/include/openssl/tls1.h +2 -2
  1679. data/third_party/boringssl-with-bazel/src/include/openssl/x509.h +2927 -2394
  1680. data/third_party/boringssl-with-bazel/src/ssl/dtls_method.cc +1 -1
  1681. data/third_party/boringssl-with-bazel/src/ssl/dtls_record.cc +5 -5
  1682. data/third_party/boringssl-with-bazel/src/ssl/encrypted_client_hello.cc +3 -9
  1683. data/third_party/boringssl-with-bazel/src/ssl/extensions.cc +43 -43
  1684. data/third_party/boringssl-with-bazel/src/ssl/handoff.cc +1 -1
  1685. data/third_party/boringssl-with-bazel/src/ssl/handshake.cc +17 -7
  1686. data/third_party/boringssl-with-bazel/src/ssl/handshake_client.cc +67 -15
  1687. data/third_party/boringssl-with-bazel/src/ssl/handshake_server.cc +143 -113
  1688. data/third_party/boringssl-with-bazel/src/ssl/internal.h +229 -175
  1689. data/third_party/boringssl-with-bazel/src/ssl/s3_both.cc +1 -1
  1690. data/third_party/boringssl-with-bazel/src/ssl/s3_lib.cc +0 -1
  1691. data/third_party/boringssl-with-bazel/src/ssl/ssl_cert.cc +66 -385
  1692. data/third_party/boringssl-with-bazel/src/ssl/ssl_cipher.cc +21 -19
  1693. data/third_party/boringssl-with-bazel/src/ssl/ssl_credential.cc +423 -0
  1694. data/third_party/boringssl-with-bazel/src/ssl/ssl_file.cc +2 -2
  1695. data/third_party/boringssl-with-bazel/src/ssl/ssl_key_share.cc +1 -1
  1696. data/third_party/boringssl-with-bazel/src/ssl/ssl_lib.cc +70 -54
  1697. data/third_party/boringssl-with-bazel/src/ssl/ssl_privkey.cc +59 -75
  1698. data/third_party/boringssl-with-bazel/src/ssl/ssl_session.cc +6 -14
  1699. data/third_party/boringssl-with-bazel/src/ssl/ssl_x509.cc +48 -116
  1700. data/third_party/boringssl-with-bazel/src/ssl/tls13_both.cc +19 -26
  1701. data/third_party/boringssl-with-bazel/src/ssl/tls13_client.cc +36 -3
  1702. data/third_party/boringssl-with-bazel/src/ssl/tls13_server.cc +53 -18
  1703. data/third_party/upb/upb/base/descriptor_constants.h +29 -2
  1704. data/third_party/upb/upb/{wire/internal/swap.h → base/internal/endian.h} +12 -11
  1705. data/third_party/upb/upb/base/status.h +1 -1
  1706. data/third_party/upb/upb/base/status.hpp +5 -1
  1707. data/third_party/upb/upb/base/string_view.h +7 -5
  1708. data/third_party/upb/upb/base/upcast.h +29 -0
  1709. data/third_party/upb/upb/generated_code_support.h +2 -1
  1710. data/third_party/upb/upb/json/decode.c +103 -53
  1711. data/third_party/upb/upb/json/decode.h +3 -26
  1712. data/third_party/upb/upb/json/encode.c +3 -26
  1713. data/third_party/upb/upb/json/encode.h +3 -26
  1714. data/third_party/upb/upb/mem/arena.c +233 -106
  1715. data/third_party/upb/upb/mem/arena.h +14 -66
  1716. data/third_party/upb/upb/mem/arena.hpp +8 -4
  1717. data/third_party/upb/upb/mem/internal/arena.h +76 -58
  1718. data/third_party/upb/upb/message/accessors.c +19 -46
  1719. data/third_party/upb/upb/message/accessors.h +208 -123
  1720. data/third_party/upb/upb/message/array.c +55 -83
  1721. data/third_party/upb/upb/message/array.h +18 -30
  1722. data/third_party/upb/upb/message/compat.c +39 -0
  1723. data/third_party/upb/upb/message/compat.h +41 -0
  1724. data/third_party/upb/upb/message/copy.c +322 -0
  1725. data/third_party/upb/upb/message/copy.h +56 -0
  1726. data/third_party/upb/upb/message/internal/accessors.h +178 -178
  1727. data/third_party/upb/upb/message/internal/array.h +80 -81
  1728. data/third_party/upb/upb/message/internal/extension.c +63 -0
  1729. data/third_party/upb/upb/message/internal/extension.h +12 -12
  1730. data/third_party/upb/upb/message/internal/map.h +28 -41
  1731. data/third_party/upb/upb/message/internal/map_entry.h +14 -39
  1732. data/third_party/upb/upb/message/internal/map_sorter.h +18 -37
  1733. data/third_party/upb/upb/message/internal/message.c +59 -0
  1734. data/third_party/upb/upb/message/internal/message.h +26 -42
  1735. data/third_party/upb/upb/message/internal/tagged_ptr.h +56 -0
  1736. data/third_party/upb/upb/message/internal/types.h +7 -12
  1737. data/third_party/upb/upb/message/map.c +3 -26
  1738. data/third_party/upb/upb/message/map.h +5 -33
  1739. data/third_party/upb/upb/message/map_gencode_util.h +3 -26
  1740. data/third_party/upb/upb/message/map_sorter.c +22 -34
  1741. data/third_party/upb/upb/message/message.c +28 -104
  1742. data/third_party/upb/upb/message/message.h +4 -8
  1743. data/third_party/upb/upb/message/tagged_ptr.h +14 -31
  1744. data/third_party/upb/upb/message/value.h +3 -5
  1745. data/third_party/upb/upb/mini_descriptor/build_enum.c +20 -11
  1746. data/third_party/upb/upb/mini_descriptor/decode.c +127 -107
  1747. data/third_party/upb/upb/mini_descriptor/decode.h +3 -8
  1748. data/third_party/upb/upb/mini_descriptor/link.c +34 -22
  1749. data/third_party/upb/upb/mini_descriptor/link.h +1 -1
  1750. data/third_party/upb/upb/mini_table/enum.h +4 -6
  1751. data/third_party/upb/upb/mini_table/extension.h +37 -0
  1752. data/third_party/upb/upb/mini_table/extension_registry.c +9 -2
  1753. data/third_party/upb/upb/mini_table/field.h +46 -60
  1754. data/third_party/upb/upb/mini_table/file.h +44 -0
  1755. data/third_party/upb/upb/mini_table/internal/enum.h +19 -20
  1756. data/third_party/upb/upb/mini_table/internal/extension.h +34 -3
  1757. data/third_party/upb/upb/mini_table/internal/field.h +136 -27
  1758. data/third_party/upb/upb/mini_table/internal/file.h +47 -10
  1759. data/third_party/upb/upb/mini_table/internal/message.c +17 -9
  1760. data/third_party/upb/upb/mini_table/internal/message.h +94 -23
  1761. data/third_party/upb/upb/mini_table/internal/size_log2.h +77 -0
  1762. data/third_party/upb/upb/mini_table/internal/sub.h +39 -4
  1763. data/third_party/upb/upb/mini_table/message.c +18 -19
  1764. data/third_party/upb/upb/mini_table/message.h +29 -20
  1765. data/third_party/upb/upb/mini_table/sub.h +40 -1
  1766. data/third_party/upb/upb/port/def.inc +18 -0
  1767. data/third_party/upb/upb/port/undef.inc +3 -0
  1768. data/third_party/upb/upb/reflection/def.hpp +8 -4
  1769. data/third_party/upb/upb/reflection/def_pool.c +81 -2
  1770. data/third_party/upb/upb/reflection/def_pool.h +8 -0
  1771. data/third_party/upb/upb/reflection/enum_def.c +42 -19
  1772. data/third_party/upb/upb/reflection/enum_def.h +1 -0
  1773. data/third_party/upb/upb/reflection/enum_value_def.c +43 -14
  1774. data/third_party/upb/upb/reflection/enum_value_def.h +2 -0
  1775. data/third_party/upb/upb/reflection/extension_range.c +13 -5
  1776. data/third_party/upb/upb/reflection/extension_range.h +2 -0
  1777. data/third_party/upb/upb/reflection/field_def.c +177 -130
  1778. data/third_party/upb/upb/reflection/field_def.h +10 -1
  1779. data/third_party/upb/upb/reflection/file_def.c +98 -9
  1780. data/third_party/upb/upb/reflection/file_def.h +3 -0
  1781. data/third_party/upb/upb/reflection/internal/def_builder.c +85 -7
  1782. data/third_party/upb/upb/reflection/internal/def_builder.h +23 -0
  1783. data/third_party/upb/upb/reflection/internal/enum_def.h +5 -4
  1784. data/third_party/upb/upb/reflection/internal/enum_reserved_range.h +1 -1
  1785. data/third_party/upb/upb/reflection/internal/enum_value_def.h +2 -1
  1786. data/third_party/upb/upb/reflection/internal/extension_range.h +2 -2
  1787. data/third_party/upb/upb/reflection/internal/field_def.h +11 -10
  1788. data/third_party/upb/upb/reflection/internal/message_def.h +6 -3
  1789. data/third_party/upb/upb/reflection/internal/method_def.h +5 -3
  1790. data/third_party/upb/upb/reflection/internal/oneof_def.h +5 -3
  1791. data/third_party/upb/upb/reflection/internal/service_def.h +5 -3
  1792. data/third_party/upb/upb/reflection/internal/upb_edition_defaults.h +20 -0
  1793. data/third_party/upb/upb/reflection/message.c +27 -12
  1794. data/third_party/upb/upb/reflection/message.h +5 -5
  1795. data/third_party/upb/upb/reflection/message_def.c +56 -27
  1796. data/third_party/upb/upb/reflection/message_def.h +2 -0
  1797. data/third_party/upb/upb/reflection/method_def.c +20 -9
  1798. data/third_party/upb/upb/reflection/method_def.h +2 -0
  1799. data/third_party/upb/upb/reflection/oneof_def.c +20 -11
  1800. data/third_party/upb/upb/reflection/oneof_def.h +3 -1
  1801. data/third_party/upb/upb/reflection/service_def.c +25 -13
  1802. data/third_party/upb/upb/reflection/service_def.h +2 -0
  1803. data/third_party/upb/upb/text/encode.c +126 -36
  1804. data/third_party/upb/upb/wire/decode.c +214 -196
  1805. data/third_party/upb/upb/wire/decode.h +10 -0
  1806. data/third_party/upb/upb/wire/encode.c +105 -91
  1807. data/third_party/upb/upb/wire/encode.h +4 -3
  1808. data/third_party/upb/upb/wire/{decode_fast.c → internal/decode_fast.c} +53 -48
  1809. data/third_party/upb/upb/wire/{decode_fast.h → internal/decode_fast.h} +6 -5
  1810. data/third_party/upb/upb/wire/internal/{decode.h → decoder.h} +15 -31
  1811. data/third_party/upb/upb/wire/internal/reader.h +61 -0
  1812. data/third_party/upb/upb/wire/reader.c +9 -6
  1813. data/third_party/upb/upb/wire/reader.h +18 -47
  1814. data/third_party/utf8_range/utf8_range.c +467 -0
  1815. data/third_party/utf8_range/utf8_range.h +9 -8
  1816. metadata +278 -214
  1817. data/src/core/client_channel/channel_connectivity.cc +0 -265
  1818. data/src/core/client_channel/client_channel_channelz.cc +0 -93
  1819. data/src/core/client_channel/client_channel_channelz.h +0 -85
  1820. data/src/core/ext/filters/channel_idle/channel_idle_filter.cc +0 -318
  1821. data/src/core/ext/filters/channel_idle/channel_idle_filter.h +0 -150
  1822. data/src/core/ext/filters/deadline/deadline_filter.cc +0 -407
  1823. data/src/core/ext/filters/deadline/deadline_filter.h +0 -85
  1824. data/src/core/ext/filters/http/message_compress/legacy_compression_filter.cc +0 -325
  1825. data/src/core/ext/filters/http/message_compress/legacy_compression_filter.h +0 -139
  1826. data/src/core/ext/transport/chttp2/transport/http_trace.cc +0 -19
  1827. data/src/core/ext/transport/chttp2/transport/http_trace.h +0 -24
  1828. data/src/core/ext/transport/inproc/inproc_plugin.cc +0 -23
  1829. data/src/core/lib/channel/channel_stack_trace.h +0 -24
  1830. data/src/core/lib/channel/context.h +0 -77
  1831. data/src/core/lib/event_engine/trace.cc +0 -25
  1832. data/src/core/lib/gpr/log.cc +0 -140
  1833. data/src/core/lib/gpr/log_internal.h +0 -55
  1834. data/src/core/lib/gpr/wrap_memcpy.cc +0 -43
  1835. data/src/core/lib/promise/trace.cc +0 -20
  1836. data/src/core/lib/promise/trace.h +0 -24
  1837. data/src/core/lib/resource_quota/trace.cc +0 -19
  1838. data/src/core/lib/resource_quota/trace.h +0 -24
  1839. data/src/core/lib/security/transport/legacy_server_auth_filter.cc +0 -244
  1840. data/src/core/lib/security/transport/tsi_error.cc +0 -31
  1841. data/src/core/lib/security/transport/tsi_error.h +0 -30
  1842. data/src/core/lib/slice/b64.cc +0 -239
  1843. data/src/core/lib/slice/b64.h +0 -52
  1844. data/src/core/lib/slice/slice_refcount.cc +0 -20
  1845. data/src/core/lib/surface/api_trace.cc +0 -25
  1846. data/src/core/lib/surface/call_trace.cc +0 -163
  1847. data/src/core/lib/surface/call_trace.h +0 -30
  1848. data/src/core/lib/surface/channel_ping.cc +0 -69
  1849. data/src/core/lib/surface/wait_for_cq_end_op.cc +0 -75
  1850. data/src/core/lib/surface/wait_for_cq_end_op.h +0 -72
  1851. data/src/core/lib/transport/batch_builder.cc +0 -179
  1852. data/src/core/lib/transport/batch_builder.h +0 -478
  1853. data/src/core/lib/transport/call_factory.cc +0 -41
  1854. data/src/core/lib/transport/call_factory.h +0 -56
  1855. data/src/core/load_balancing/subchannel_list.h +0 -455
  1856. data/src/core/resolver/xds/xds_resolver_trace.cc +0 -25
  1857. data/third_party/boringssl-with-bazel/src/crypto/conf/conf_def.h +0 -122
  1858. data/third_party/upb/upb/message/types.h +0 -15
  1859. data/third_party/utf8_range/naive.c +0 -92
  1860. data/third_party/utf8_range/range2-neon.c +0 -157
  1861. data/third_party/utf8_range/range2-sse.c +0 -170
  1862. /data/src/core/{lib/gpr → util}/iphone/cpu.cc +0 -0
  1863. /data/src/core/{lib/gpr → util}/linux/cpu.cc +0 -0
  1864. /data/src/core/{lib/gpr → util}/posix/string.cc +0 -0
  1865. /data/src/core/{lib/gpr → util}/sync_abseil.cc +0 -0
  1866. /data/src/core/{lib/gpr → util}/windows/cpu.cc +0 -0
  1867. /data/third_party/boringssl-with-bazel/src/include/openssl/{kyber.h → experimental/kyber.h} +0 -0
@@ -16,8 +16,6 @@
16
16
  //
17
17
  //
18
18
 
19
- #include <grpc/support/port_platform.h>
20
-
21
19
  #include "src/core/lib/surface/call.h"
22
20
 
23
21
  #include <inttypes.h>
@@ -27,14 +25,18 @@
27
25
 
28
26
  #include <algorithm>
29
27
  #include <atomic>
28
+ #include <cstdint>
30
29
  #include <memory>
31
30
  #include <new>
31
+ #include <queue>
32
32
  #include <string>
33
33
  #include <type_traits>
34
34
  #include <utility>
35
35
  #include <vector>
36
36
 
37
37
  #include "absl/base/thread_annotations.h"
38
+ #include "absl/log/check.h"
39
+ #include "absl/log/log.h"
38
40
  #include "absl/status/status.h"
39
41
  #include "absl/strings/str_cat.h"
40
42
  #include "absl/strings/str_format.h"
@@ -53,25 +55,20 @@
53
55
  #include <grpc/support/alloc.h>
54
56
  #include <grpc/support/atm.h>
55
57
  #include <grpc/support/log.h>
58
+ #include <grpc/support/port_platform.h>
56
59
  #include <grpc/support/string_util.h>
57
60
 
61
+ #include "src/core/channelz/channelz.h"
58
62
  #include "src/core/lib/channel/call_finalization.h"
59
- #include "src/core/lib/channel/call_tracer.h"
60
63
  #include "src/core/lib/channel/channel_stack.h"
61
- #include "src/core/lib/channel/channelz.h"
62
- #include "src/core/lib/channel/context.h"
63
64
  #include "src/core/lib/channel/status_util.h"
64
65
  #include "src/core/lib/compression/compression_internal.h"
65
- #include "src/core/lib/debug/stats.h"
66
- #include "src/core/lib/debug/stats_data.h"
67
66
  #include "src/core/lib/experiments/experiments.h"
68
- #include "src/core/lib/gpr/alloc.h"
69
- #include "src/core/lib/gpr/time_precise.h"
70
- #include "src/core/lib/gpr/useful.h"
71
67
  #include "src/core/lib/gprpp/bitset.h"
72
68
  #include "src/core/lib/gprpp/cpp_impl_of.h"
73
69
  #include "src/core/lib/gprpp/crash.h"
74
70
  #include "src/core/lib/gprpp/debug_location.h"
71
+ #include "src/core/lib/gprpp/match.h"
75
72
  #include "src/core/lib/gprpp/ref_counted.h"
76
73
  #include "src/core/lib/gprpp/ref_counted_ptr.h"
77
74
  #include "src/core/lib/gprpp/status_helper.h"
@@ -82,15 +79,16 @@
82
79
  #include "src/core/lib/promise/activity.h"
83
80
  #include "src/core/lib/promise/all_ok.h"
84
81
  #include "src/core/lib/promise/arena_promise.h"
82
+ #include "src/core/lib/promise/cancel_callback.h"
85
83
  #include "src/core/lib/promise/context.h"
86
84
  #include "src/core/lib/promise/latch.h"
87
85
  #include "src/core/lib/promise/map.h"
88
- #include "src/core/lib/promise/party.h"
89
86
  #include "src/core/lib/promise/pipe.h"
90
87
  #include "src/core/lib/promise/poll.h"
91
88
  #include "src/core/lib/promise/race.h"
92
89
  #include "src/core/lib/promise/seq.h"
93
90
  #include "src/core/lib/promise/status_flag.h"
91
+ #include "src/core/lib/promise/try_seq.h"
94
92
  #include "src/core/lib/resource_quota/arena.h"
95
93
  #include "src/core/lib/slice/slice_buffer.h"
96
94
  #include "src/core/lib/slice/slice_internal.h"
@@ -98,183 +96,41 @@
98
96
  #include "src/core/lib/surface/call_test_only.h"
99
97
  #include "src/core/lib/surface/channel.h"
100
98
  #include "src/core/lib/surface/completion_queue.h"
101
- #include "src/core/lib/surface/server.h"
102
99
  #include "src/core/lib/surface/validate_metadata.h"
103
- #include "src/core/lib/surface/wait_for_cq_end_op.h"
104
- #include "src/core/lib/transport/batch_builder.h"
105
100
  #include "src/core/lib/transport/error_utils.h"
101
+ #include "src/core/lib/transport/metadata.h"
106
102
  #include "src/core/lib/transport/metadata_batch.h"
107
103
  #include "src/core/lib/transport/transport.h"
108
-
109
- grpc_core::TraceFlag grpc_call_error_trace(false, "call_error");
110
- grpc_core::TraceFlag grpc_compression_trace(false, "compression");
111
- grpc_core::TraceFlag grpc_call_trace(false, "call");
112
- grpc_core::DebugOnlyTraceFlag grpc_call_refcount_trace(false, "call_refcount");
104
+ #include "src/core/server/server_interface.h"
105
+ #include "src/core/telemetry/call_tracer.h"
106
+ #include "src/core/telemetry/stats.h"
107
+ #include "src/core/telemetry/stats_data.h"
108
+ #include "src/core/util/alloc.h"
109
+ #include "src/core/util/time_precise.h"
110
+ #include "src/core/util/useful.h"
113
111
 
114
112
  namespace grpc_core {
115
113
 
114
+ // Alias to make this type available in Call implementation without a grpc_core
115
+ // prefix.
116
+ using GrpcClosure = Closure;
117
+
116
118
  ///////////////////////////////////////////////////////////////////////////////
117
119
  // Call
118
120
 
119
- class Call : public CppImplOf<Call, grpc_call> {
120
- public:
121
- Arena* arena() { return arena_; }
122
- bool is_client() const { return is_client_; }
123
-
124
- virtual void ContextSet(grpc_context_index elem, void* value,
125
- void (*destroy)(void* value)) = 0;
126
- virtual void* ContextGet(grpc_context_index elem) const = 0;
127
- virtual bool Completed() = 0;
128
- void CancelWithStatus(grpc_status_code status, const char* description);
129
- virtual void CancelWithError(grpc_error_handle error) = 0;
130
- virtual void SetCompletionQueue(grpc_completion_queue* cq) = 0;
131
- char* GetPeer();
132
- virtual grpc_call_error StartBatch(const grpc_op* ops, size_t nops,
133
- void* notify_tag,
134
- bool is_notify_tag_closure) = 0;
135
- virtual bool failed_before_recv_message() const = 0;
136
- virtual bool is_trailers_only() const = 0;
137
- virtual absl::string_view GetServerAuthority() const = 0;
138
- virtual void ExternalRef() = 0;
139
- virtual void ExternalUnref() = 0;
140
- virtual void InternalRef(const char* reason) = 0;
141
- virtual void InternalUnref(const char* reason) = 0;
142
-
143
- grpc_compression_algorithm test_only_compression_algorithm() {
144
- return incoming_compression_algorithm_;
145
- }
146
- uint32_t test_only_message_flags() { return test_only_last_message_flags_; }
147
- CompressionAlgorithmSet encodings_accepted_by_peer() {
148
- return encodings_accepted_by_peer_;
149
- }
150
-
151
- // This should return nullptr for the promise stack (and alternative means
152
- // for that functionality be invented)
153
- virtual grpc_call_stack* call_stack() = 0;
154
-
155
- // Return the EventEngine used for this call's async execution.
156
- virtual grpc_event_engine::experimental::EventEngine* event_engine()
157
- const = 0;
158
-
159
- protected:
160
- // The maximum number of concurrent batches possible.
161
- // Based upon the maximum number of individually queueable ops in the batch
162
- // api:
163
- // - initial metadata send
164
- // - message send
165
- // - status/close send (depending on client/server)
166
- // - initial metadata recv
167
- // - message recv
168
- // - status/close recv (depending on client/server)
169
- static constexpr size_t kMaxConcurrentBatches = 6;
170
-
171
- struct ParentCall {
172
- Mutex child_list_mu;
173
- Call* first_child ABSL_GUARDED_BY(child_list_mu) = nullptr;
174
- };
175
-
176
- struct ChildCall {
177
- explicit ChildCall(Call* parent) : parent(parent) {}
178
- Call* parent;
179
- /// siblings: children of the same parent form a list, and this list is
180
- /// protected under
181
- /// parent->mu
182
- Call* sibling_next = nullptr;
183
- Call* sibling_prev = nullptr;
184
- };
185
-
186
- Call(Arena* arena, bool is_client, Timestamp send_deadline,
187
- RefCountedPtr<Channel> channel)
188
- : channel_(std::move(channel)),
189
- arena_(arena),
190
- send_deadline_(send_deadline),
191
- is_client_(is_client) {
192
- GPR_DEBUG_ASSERT(arena_ != nullptr);
193
- GPR_DEBUG_ASSERT(channel_ != nullptr);
194
- }
195
- virtual ~Call() = default;
196
-
197
- void DeleteThis();
198
-
199
- ParentCall* GetOrCreateParentCall();
200
- ParentCall* parent_call();
201
- Channel* channel() const {
202
- GPR_DEBUG_ASSERT(channel_ != nullptr);
203
- return channel_.get();
204
- }
205
-
206
- absl::Status InitParent(Call* parent, uint32_t propagation_mask);
207
- void PublishToParent(Call* parent);
208
- void MaybeUnpublishFromParent();
209
- void PropagateCancellationToChildren();
210
-
211
- Timestamp send_deadline() const { return send_deadline_; }
212
- void set_send_deadline(Timestamp send_deadline) {
213
- send_deadline_ = send_deadline;
214
- }
215
-
216
- Slice GetPeerString() const {
217
- MutexLock lock(&peer_mu_);
218
- return peer_string_.Ref();
219
- }
220
-
221
- void SetPeerString(Slice peer_string) {
222
- MutexLock lock(&peer_mu_);
223
- peer_string_ = std::move(peer_string);
224
- }
225
-
226
- void ClearPeerString() { SetPeerString(Slice(grpc_empty_slice())); }
227
-
228
- // TODO(ctiller): cancel_func is for cancellation of the call - filter stack
229
- // holds no mutexes here, promise stack does, and so locking is different.
230
- // Remove this and cancel directly once promise conversion is done.
231
- void ProcessIncomingInitialMetadata(grpc_metadata_batch& md);
232
- // Fixup outgoing metadata before sending - adds compression, protects
233
- // internal headers against external modification.
234
- void PrepareOutgoingInitialMetadata(const grpc_op& op,
235
- grpc_metadata_batch& md);
236
- void NoteLastMessageFlags(uint32_t flags) {
237
- test_only_last_message_flags_ = flags;
238
- }
239
- grpc_compression_algorithm incoming_compression_algorithm() const {
240
- return incoming_compression_algorithm_;
241
- }
242
-
243
- void HandleCompressionAlgorithmDisabled(
244
- grpc_compression_algorithm compression_algorithm) GPR_ATTRIBUTE_NOINLINE;
245
- void HandleCompressionAlgorithmNotAccepted(
246
- grpc_compression_algorithm compression_algorithm) GPR_ATTRIBUTE_NOINLINE;
247
-
248
- gpr_cycle_counter start_time() const { return start_time_; }
249
-
250
- private:
251
- RefCountedPtr<Channel> channel_;
252
- Arena* const arena_;
253
- std::atomic<ParentCall*> parent_call_{nullptr};
254
- ChildCall* child_ = nullptr;
255
- Timestamp send_deadline_;
256
- const bool is_client_;
257
- // flag indicating that cancellation is inherited
258
- bool cancellation_is_inherited_ = false;
259
- // Compression algorithm for *incoming* data
260
- grpc_compression_algorithm incoming_compression_algorithm_ =
261
- GRPC_COMPRESS_NONE;
262
- // Supported encodings (compression algorithms), a bitset.
263
- // Always support no compression.
264
- CompressionAlgorithmSet encodings_accepted_by_peer_{GRPC_COMPRESS_NONE};
265
- uint32_t test_only_last_message_flags_ = 0;
266
- // Peer name is protected by a mutex because it can be accessed by the
267
- // application at the same moment as it is being set by the completion
268
- // of the recv_initial_metadata op. The mutex should be mostly uncontended.
269
- mutable Mutex peer_mu_;
270
- Slice peer_string_;
271
- gpr_cycle_counter start_time_ = gpr_get_cycle_counter();
272
- };
121
+ Call::Call(bool is_client, Timestamp send_deadline, RefCountedPtr<Arena> arena,
122
+ grpc_event_engine::experimental::EventEngine* event_engine)
123
+ : arena_(std::move(arena)),
124
+ send_deadline_(send_deadline),
125
+ is_client_(is_client),
126
+ event_engine_(event_engine) {
127
+ arena_->SetContext<Call>(this);
128
+ }
273
129
 
274
130
  Call::ParentCall* Call::GetOrCreateParentCall() {
275
131
  ParentCall* p = parent_call_.load(std::memory_order_acquire);
276
132
  if (p == nullptr) {
277
- p = arena_->New<ParentCall>();
133
+ p = arena()->New<ParentCall>();
278
134
  ParentCall* expected = nullptr;
279
135
  if (!parent_call_.compare_exchange_strong(expected, p,
280
136
  std::memory_order_release,
@@ -294,8 +150,8 @@ absl::Status Call::InitParent(Call* parent, uint32_t propagation_mask) {
294
150
  child_ = arena()->New<ChildCall>(parent);
295
151
 
296
152
  parent->InternalRef("child");
297
- GPR_ASSERT(is_client_);
298
- GPR_ASSERT(!parent->is_client_);
153
+ CHECK(is_client_);
154
+ CHECK(!parent->is_client_);
299
155
 
300
156
  if (propagation_mask & GRPC_PROPAGATE_DEADLINE) {
301
157
  send_deadline_ = std::min(send_deadline_, parent->send_deadline_);
@@ -310,8 +166,8 @@ absl::Status Call::InitParent(Call* parent, uint32_t propagation_mask) {
310
166
  "Census tracing propagation requested without Census context "
311
167
  "propagation");
312
168
  }
313
- ContextSet(GRPC_CONTEXT_TRACING, parent->ContextGet(GRPC_CONTEXT_TRACING),
314
- nullptr);
169
+ arena()->SetContext<census_context>(
170
+ parent->arena()->GetContext<census_context>());
315
171
  } else if (propagation_mask & GRPC_PROPAGATE_CENSUS_STATS_CONTEXT) {
316
172
  return absl::UnknownError(
317
173
  "Census context propagation requested without Census tracing "
@@ -393,28 +249,6 @@ void Call::PropagateCancellationToChildren() {
393
249
  }
394
250
  }
395
251
 
396
- char* Call::GetPeer() {
397
- Slice peer_slice = GetPeerString();
398
- if (!peer_slice.empty()) {
399
- absl::string_view peer_string_view = peer_slice.as_string_view();
400
- char* peer_string =
401
- static_cast<char*>(gpr_malloc(peer_string_view.size() + 1));
402
- memcpy(peer_string, peer_string_view.data(), peer_string_view.size());
403
- peer_string[peer_string_view.size()] = '\0';
404
- return peer_string;
405
- }
406
- char* peer_string = grpc_channel_get_target(channel_->c_ptr());
407
- if (peer_string != nullptr) return peer_string;
408
- return gpr_strdup("unknown");
409
- }
410
-
411
- void Call::DeleteThis() {
412
- RefCountedPtr<Channel> channel = std::move(channel_);
413
- Arena* arena = arena_;
414
- this->~Call();
415
- channel->DestroyArena(arena);
416
- }
417
-
418
252
  void Call::PrepareOutgoingInitialMetadata(const grpc_op& op,
419
253
  grpc_metadata_batch& md) {
420
254
  // TODO(juanlishen): If the user has already specified a compression
@@ -429,7 +263,7 @@ void Call::PrepareOutgoingInitialMetadata(const grpc_op& op,
429
263
  op.data.send_initial_metadata.maybe_compression_level.level;
430
264
  level_set = true;
431
265
  } else {
432
- const grpc_compression_options copts = channel()->compression_options();
266
+ const grpc_compression_options copts = compression_options();
433
267
  if (copts.default_level.is_set) {
434
268
  level_set = true;
435
269
  effective_compression_level = copts.default_level.level;
@@ -455,26 +289,25 @@ void Call::ProcessIncomingInitialMetadata(grpc_metadata_batch& md) {
455
289
  Slice* peer_string = md.get_pointer(PeerString());
456
290
  if (peer_string != nullptr) SetPeerString(peer_string->Ref());
457
291
 
458
- incoming_compression_algorithm_ =
459
- md.Take(GrpcEncodingMetadata()).value_or(GRPC_COMPRESS_NONE);
292
+ SetIncomingCompressionAlgorithm(
293
+ md.Take(GrpcEncodingMetadata()).value_or(GRPC_COMPRESS_NONE));
460
294
  encodings_accepted_by_peer_ =
461
295
  md.Take(GrpcAcceptEncodingMetadata())
462
296
  .value_or(CompressionAlgorithmSet{GRPC_COMPRESS_NONE});
463
297
 
464
- const grpc_compression_options compression_options =
465
- channel_->compression_options();
298
+ const grpc_compression_options copts = compression_options();
466
299
  const grpc_compression_algorithm compression_algorithm =
467
- incoming_compression_algorithm_;
468
- if (GPR_UNLIKELY(!CompressionAlgorithmSet::FromUint32(
469
- compression_options.enabled_algorithms_bitset)
470
- .IsSet(compression_algorithm))) {
300
+ incoming_compression_algorithm();
301
+ if (GPR_UNLIKELY(
302
+ !CompressionAlgorithmSet::FromUint32(copts.enabled_algorithms_bitset)
303
+ .IsSet(compression_algorithm))) {
471
304
  // check if algorithm is supported by current channel config
472
305
  HandleCompressionAlgorithmDisabled(compression_algorithm);
473
306
  }
474
307
  // GRPC_COMPRESS_NONE is always set.
475
- GPR_DEBUG_ASSERT(encodings_accepted_by_peer_.IsSet(GRPC_COMPRESS_NONE));
308
+ DCHECK(encodings_accepted_by_peer_.IsSet(GRPC_COMPRESS_NONE));
476
309
  if (GPR_UNLIKELY(!encodings_accepted_by_peer_.IsSet(compression_algorithm))) {
477
- if (GRPC_TRACE_FLAG_ENABLED(grpc_compression_trace)) {
310
+ if (GRPC_TRACE_FLAG_ENABLED(compression)) {
478
311
  HandleCompressionAlgorithmNotAccepted(compression_algorithm);
479
312
  }
480
313
  }
@@ -497,3725 +330,86 @@ void Call::HandleCompressionAlgorithmDisabled(
497
330
  grpc_compression_algorithm_name(compression_algorithm, &algo_name);
498
331
  std::string error_msg =
499
332
  absl::StrFormat("Compression algorithm '%s' is disabled.", algo_name);
500
- gpr_log(GPR_ERROR, "%s", error_msg.c_str());
333
+ LOG(ERROR) << error_msg;
501
334
  CancelWithError(grpc_error_set_int(absl::UnimplementedError(error_msg),
502
335
  StatusIntProperty::kRpcStatus,
503
336
  GRPC_STATUS_UNIMPLEMENTED));
504
337
  }
505
338
 
506
- ///////////////////////////////////////////////////////////////////////////////
507
- // FilterStackCall
508
- // To be removed once promise conversion is complete
509
-
510
- class FilterStackCall final : public Call {
511
- public:
512
- ~FilterStackCall() override {
513
- for (int i = 0; i < GRPC_CONTEXT_COUNT; ++i) {
514
- if (context_[i].destroy) {
515
- context_[i].destroy(context_[i].value);
516
- }
517
- }
518
- gpr_free(static_cast<void*>(const_cast<char*>(final_info_.error_string)));
519
- }
520
-
521
- bool Completed() override {
522
- return gpr_atm_acq_load(&received_final_op_atm_) != 0;
523
- }
524
-
525
- // TODO(ctiller): return absl::StatusOr<SomeSmartPointer<Call>>?
526
- static grpc_error_handle Create(grpc_call_create_args* args,
527
- grpc_call** out_call);
528
-
529
- static Call* FromTopElem(grpc_call_element* elem) {
530
- return FromCallStack(grpc_call_stack_from_top_element(elem));
531
- }
532
-
533
- grpc_call_stack* call_stack() override {
534
- return reinterpret_cast<grpc_call_stack*>(
535
- reinterpret_cast<char*>(this) +
536
- GPR_ROUND_UP_TO_ALIGNMENT_SIZE(sizeof(*this)));
537
- }
538
-
539
- grpc_event_engine::experimental::EventEngine* event_engine() const override {
540
- return channel()->event_engine();
541
- }
542
-
543
- grpc_call_element* call_elem(size_t idx) {
544
- return grpc_call_stack_element(call_stack(), idx);
545
- }
546
-
547
- CallCombiner* call_combiner() { return &call_combiner_; }
548
-
549
- void CancelWithError(grpc_error_handle error) override;
550
- void SetCompletionQueue(grpc_completion_queue* cq) override;
551
- grpc_call_error StartBatch(const grpc_op* ops, size_t nops, void* notify_tag,
552
- bool is_notify_tag_closure) override;
553
- void ExternalRef() override { ext_ref_.Ref(); }
554
- void ExternalUnref() override;
555
- void InternalRef(const char* reason) override {
556
- GRPC_CALL_STACK_REF(call_stack(), reason);
557
- }
558
- void InternalUnref(const char* reason) override {
559
- GRPC_CALL_STACK_UNREF(call_stack(), reason);
560
- }
561
-
562
- void ContextSet(grpc_context_index elem, void* value,
563
- void (*destroy)(void* value)) override;
564
- void* ContextGet(grpc_context_index elem) const override {
565
- return context_[elem].value;
566
- }
567
-
568
- bool is_trailers_only() const override {
569
- bool result = is_trailers_only_;
570
- GPR_DEBUG_ASSERT(!result || recv_initial_metadata_.TransportSize() == 0);
571
- return result;
572
- }
573
-
574
- bool failed_before_recv_message() const override {
575
- return call_failed_before_recv_message_;
339
+ void Call::UpdateDeadline(Timestamp deadline) {
340
+ ReleasableMutexLock lock(&deadline_mu_);
341
+ if (GRPC_TRACE_FLAG_ENABLED(call)) {
342
+ gpr_log(GPR_DEBUG, "[call %p] UpdateDeadline from=%s to=%s", this,
343
+ deadline_.ToString().c_str(), deadline.ToString().c_str());
576
344
  }
577
-
578
- absl::string_view GetServerAuthority() const override {
579
- const Slice* authority_metadata =
580
- recv_initial_metadata_.get_pointer(HttpAuthorityMetadata());
581
- if (authority_metadata == nullptr) return "";
582
- return authority_metadata->as_string_view();
583
- }
584
-
585
- static size_t InitialSizeEstimate() {
586
- return sizeof(FilterStackCall) +
587
- sizeof(BatchControl) * kMaxConcurrentBatches;
588
- }
589
-
590
- private:
591
- static constexpr gpr_atm kRecvNone = 0;
592
- static constexpr gpr_atm kRecvInitialMetadataFirst = 1;
593
-
594
- enum class PendingOp {
595
- kRecvMessage,
596
- kRecvInitialMetadata,
597
- kRecvTrailingMetadata,
598
- kSends
599
- };
600
- static intptr_t PendingOpMask(PendingOp op) {
601
- return static_cast<intptr_t>(1) << static_cast<intptr_t>(op);
602
- }
603
- static std::string PendingOpString(intptr_t pending_ops) {
604
- std::vector<absl::string_view> pending_op_strings;
605
- if (pending_ops & PendingOpMask(PendingOp::kRecvMessage)) {
606
- pending_op_strings.push_back("kRecvMessage");
607
- }
608
- if (pending_ops & PendingOpMask(PendingOp::kRecvInitialMetadata)) {
609
- pending_op_strings.push_back("kRecvInitialMetadata");
610
- }
611
- if (pending_ops & PendingOpMask(PendingOp::kRecvTrailingMetadata)) {
612
- pending_op_strings.push_back("kRecvTrailingMetadata");
613
- }
614
- if (pending_ops & PendingOpMask(PendingOp::kSends)) {
615
- pending_op_strings.push_back("kSends");
616
- }
617
- return absl::StrCat("{", absl::StrJoin(pending_op_strings, ","), "}");
618
- }
619
- struct BatchControl {
620
- FilterStackCall* call_ = nullptr;
621
- CallTracerAnnotationInterface* call_tracer_ = nullptr;
622
- grpc_transport_stream_op_batch op_;
623
- // Share memory for cq_completion and notify_tag as they are never needed
624
- // simultaneously. Each byte used in this data structure count as six bytes
625
- // per call, so any savings we can make are worthwhile,
626
-
627
- // We use notify_tag to determine whether or not to send notification to the
628
- // completion queue. Once we've made that determination, we can reuse the
629
- // memory for cq_completion.
630
- union {
631
- grpc_cq_completion cq_completion;
632
- struct {
633
- // Any given op indicates completion by either (a) calling a closure or
634
- // (b) sending a notification on the call's completion queue. If
635
- // \a is_closure is true, \a tag indicates a closure to be invoked;
636
- // otherwise, \a tag indicates the tag to be used in the notification to
637
- // be sent to the completion queue.
638
- void* tag;
639
- bool is_closure;
640
- } notify_tag;
641
- } completion_data_;
642
- grpc_closure start_batch_;
643
- grpc_closure finish_batch_;
644
- std::atomic<intptr_t> ops_pending_{0};
645
- AtomicError batch_error_;
646
- void set_pending_ops(uintptr_t ops) {
647
- ops_pending_.store(ops, std::memory_order_release);
648
- }
649
- bool completed_batch_step(PendingOp op) {
650
- auto mask = PendingOpMask(op);
651
- // Acquire call tracer before ops_pending_.fetch_sub to avoid races with
652
- // call_ being set to nullptr in PostCompletion method. Store the
653
- // call_tracer_ and call_ variables locally as well because they could be
654
- // modified by another thread after the fetch_sub operation.
655
- CallTracerAnnotationInterface* call_tracer = call_tracer_;
656
- FilterStackCall* call = call_;
657
- bool is_call_trace_enabled = grpc_call_trace.enabled();
658
- bool is_call_ops_annotate_enabled =
659
- (IsTraceRecordCallopsEnabled() && call_tracer != nullptr);
660
- if (is_call_ops_annotate_enabled) {
661
- call->InternalRef("Call ops annotate");
662
- }
663
- auto r = ops_pending_.fetch_sub(mask, std::memory_order_acq_rel);
664
- if (is_call_trace_enabled || is_call_ops_annotate_enabled) {
665
- std::string trace_string = absl::StrFormat(
666
- "BATCH:%p COMPLETE:%s REMAINING:%s (tag:%p)", this,
667
- PendingOpString(mask).c_str(), PendingOpString(r & ~mask).c_str(),
668
- completion_data_.notify_tag.tag);
669
- if (is_call_trace_enabled) {
670
- gpr_log(GPR_DEBUG, "%s", trace_string.c_str());
671
- }
672
- if (is_call_ops_annotate_enabled) {
673
- call_tracer->RecordAnnotation(trace_string);
674
- call->InternalUnref("Call ops annotate");
675
- }
676
- }
677
- GPR_ASSERT((r & mask) != 0);
678
- return r == mask;
679
- }
680
-
681
- void PostCompletion();
682
- void FinishStep(PendingOp op);
683
- void ProcessDataAfterMetadata();
684
- void ReceivingStreamReady(grpc_error_handle error);
685
- void ReceivingInitialMetadataReady(grpc_error_handle error);
686
- void ReceivingTrailingMetadataReady(grpc_error_handle error);
687
- void FinishBatch(grpc_error_handle error);
688
- };
689
-
690
- FilterStackCall(Arena* arena, const grpc_call_create_args& args)
691
- : Call(arena, args.server_transport_data == nullptr, args.send_deadline,
692
- args.channel->Ref()),
693
- cq_(args.cq),
694
- stream_op_payload_(context_) {}
695
-
696
- static void ReleaseCall(void* call, grpc_error_handle);
697
- static void DestroyCall(void* call, grpc_error_handle);
698
-
699
- static FilterStackCall* FromCallStack(grpc_call_stack* call_stack) {
700
- return reinterpret_cast<FilterStackCall*>(
701
- reinterpret_cast<char*>(call_stack) -
702
- GPR_ROUND_UP_TO_ALIGNMENT_SIZE(sizeof(FilterStackCall)));
345
+ if (deadline >= deadline_) return;
346
+ if (deadline < Timestamp::Now()) {
347
+ lock.Release();
348
+ CancelWithError(grpc_error_set_int(
349
+ absl::DeadlineExceededError("Deadline Exceeded"),
350
+ StatusIntProperty::kRpcStatus, GRPC_STATUS_DEADLINE_EXCEEDED));
351
+ return;
703
352
  }
704
-
705
- void ExecuteBatch(grpc_transport_stream_op_batch* batch,
706
- grpc_closure* start_batch_closure);
707
- void SetFinalStatus(grpc_error_handle error);
708
- BatchControl* ReuseOrAllocateBatchControl(const grpc_op* ops);
709
- bool PrepareApplicationMetadata(size_t count, grpc_metadata* metadata,
710
- bool is_trailing);
711
- void PublishAppMetadata(grpc_metadata_batch* b, bool is_trailing);
712
- void RecvInitialFilter(grpc_metadata_batch* b);
713
- void RecvTrailingFilter(grpc_metadata_batch* b,
714
- grpc_error_handle batch_error);
715
-
716
- RefCount ext_ref_;
717
- CallCombiner call_combiner_;
718
- grpc_completion_queue* cq_;
719
- grpc_polling_entity pollent_;
720
-
721
- /// has grpc_call_unref been called
722
- bool destroy_called_ = false;
723
- // Trailers-only response status
724
- bool is_trailers_only_ = false;
725
- /// which ops are in-flight
726
- bool sent_initial_metadata_ = false;
727
- bool sending_message_ = false;
728
- bool sent_final_op_ = false;
729
- bool received_initial_metadata_ = false;
730
- bool receiving_message_ = false;
731
- bool requested_final_op_ = false;
732
- gpr_atm received_final_op_atm_ = 0;
733
-
734
- BatchControl* active_batches_[kMaxConcurrentBatches] = {};
735
- grpc_transport_stream_op_batch_payload stream_op_payload_;
736
-
737
- // first idx: is_receiving, second idx: is_trailing
738
- grpc_metadata_batch send_initial_metadata_{arena()};
739
- grpc_metadata_batch send_trailing_metadata_{arena()};
740
- grpc_metadata_batch recv_initial_metadata_{arena()};
741
- grpc_metadata_batch recv_trailing_metadata_{arena()};
742
-
743
- // Buffered read metadata waiting to be returned to the application.
744
- // Element 0 is initial metadata, element 1 is trailing metadata.
745
- grpc_metadata_array* buffered_metadata_[2] = {};
746
-
747
- // Call data useful used for reporting. Only valid after the call has
748
- // completed
749
- grpc_call_final_info final_info_;
750
-
751
- // Contexts for various subsystems (security, tracing, ...).
752
- grpc_call_context_element context_[GRPC_CONTEXT_COUNT] = {};
753
-
754
- SliceBuffer send_slice_buffer_;
755
- absl::optional<SliceBuffer> receiving_slice_buffer_;
756
- uint32_t receiving_stream_flags_;
757
-
758
- bool call_failed_before_recv_message_ = false;
759
- grpc_byte_buffer** receiving_buffer_ = nullptr;
760
- grpc_slice receiving_slice_ = grpc_empty_slice();
761
- grpc_closure receiving_stream_ready_;
762
- grpc_closure receiving_initial_metadata_ready_;
763
- grpc_closure receiving_trailing_metadata_ready_;
764
- // Status about operation of call
765
- bool sent_server_trailing_metadata_ = false;
766
- gpr_atm cancelled_with_error_ = 0;
767
-
768
- grpc_closure release_call_;
769
-
770
- union {
771
- struct {
772
- grpc_status_code* status;
773
- grpc_slice* status_details;
774
- const char** error_string;
775
- } client;
776
- struct {
777
- int* cancelled;
778
- // backpointer to owning server if this is a server side call.
779
- Server* core_server;
780
- } server;
781
- } final_op_;
782
- AtomicError status_error_;
783
-
784
- // recv_state can contain one of the following values:
785
- // RECV_NONE : : no initial metadata and messages received
786
- // RECV_INITIAL_METADATA_FIRST : received initial metadata first
787
- // a batch_control* : received messages first
788
-
789
- // +------1------RECV_NONE------3-----+
790
- // | |
791
- // | |
792
- // v v
793
- // RECV_INITIAL_METADATA_FIRST receiving_stream_ready_bctlp
794
- // | ^ | ^
795
- // | | | |
796
- // +-----2-----+ +-----4-----+
797
-
798
- // For 1, 4: See receiving_initial_metadata_ready() function
799
- // For 2, 3: See receiving_stream_ready() function
800
- gpr_atm recv_state_ = 0;
801
- };
802
-
803
- grpc_error_handle FilterStackCall::Create(grpc_call_create_args* args,
804
- grpc_call** out_call) {
805
- Channel* channel = args->channel.get();
806
-
807
- auto add_init_error = [](grpc_error_handle* composite,
808
- grpc_error_handle new_err) {
809
- if (new_err.ok()) return;
810
- if (composite->ok()) {
811
- *composite = GRPC_ERROR_CREATE("Call creation failed");
812
- }
813
- *composite = grpc_error_add_child(*composite, new_err);
814
- };
815
-
816
- FilterStackCall* call;
817
- grpc_error_handle error;
818
- grpc_channel_stack* channel_stack = channel->channel_stack();
819
- size_t call_alloc_size =
820
- GPR_ROUND_UP_TO_ALIGNMENT_SIZE(sizeof(FilterStackCall)) +
821
- channel_stack->call_stack_size;
822
-
823
- Arena* arena = channel->CreateArena();
824
- call = new (arena->Alloc(call_alloc_size)) FilterStackCall(arena, *args);
825
- GPR_DEBUG_ASSERT(FromC(call->c_ptr()) == call);
826
- GPR_DEBUG_ASSERT(FromCallStack(call->call_stack()) == call);
827
- *out_call = call->c_ptr();
828
- grpc_slice path = grpc_empty_slice();
829
- if (call->is_client()) {
830
- call->final_op_.client.status_details = nullptr;
831
- call->final_op_.client.status = nullptr;
832
- call->final_op_.client.error_string = nullptr;
833
- global_stats().IncrementClientCallsCreated();
834
- path = CSliceRef(args->path->c_slice());
835
- call->send_initial_metadata_.Set(HttpPathMetadata(),
836
- std::move(*args->path));
837
- if (args->authority.has_value()) {
838
- call->send_initial_metadata_.Set(HttpAuthorityMetadata(),
839
- std::move(*args->authority));
840
- }
841
- call->send_initial_metadata_.Set(
842
- GrpcRegisteredMethod(), reinterpret_cast<void*>(static_cast<uintptr_t>(
843
- args->registered_method)));
353
+ if (deadline_ != Timestamp::InfFuture()) {
354
+ if (!event_engine_->Cancel(deadline_task_)) return;
844
355
  } else {
845
- global_stats().IncrementServerCallsCreated();
846
- call->final_op_.server.cancelled = nullptr;
847
- call->final_op_.server.core_server = args->server;
848
- // TODO(yashykt): In the future, we want to also enable stats and trace
849
- // collecting from when the call is created at the transport. The idea is
850
- // that the transport would create the call tracer and pass it in as part of
851
- // the metadata.
852
- if (args->server != nullptr &&
853
- args->server->server_call_tracer_factory() != nullptr) {
854
- auto* server_call_tracer =
855
- args->server->server_call_tracer_factory()->CreateNewServerCallTracer(
856
- arena, args->server->channel_args());
857
- if (server_call_tracer != nullptr) {
858
- // Note that we are setting both
859
- // GRPC_CONTEXT_CALL_TRACER_ANNOTATION_INTERFACE and
860
- // GRPC_CONTEXT_CALL_TRACER as a matter of convenience. In the future
861
- // promise-based world, we would just a single tracer object for each
862
- // stack (call, subchannel_call, server_call.)
863
- call->ContextSet(GRPC_CONTEXT_CALL_TRACER_ANNOTATION_INTERFACE,
864
- server_call_tracer, nullptr);
865
- call->ContextSet(GRPC_CONTEXT_CALL_TRACER, server_call_tracer, nullptr);
866
- }
867
- }
868
- }
869
-
870
- Call* parent = Call::FromC(args->parent);
871
- if (parent != nullptr) {
872
- add_init_error(&error, absl_status_to_grpc_error(call->InitParent(
873
- parent, args->propagation_mask)));
874
- }
875
- // initial refcount dropped by grpc_call_unref
876
- grpc_call_element_args call_args = {
877
- call->call_stack(), args->server_transport_data,
878
- call->context_, path,
879
- call->start_time(), call->send_deadline(),
880
- call->arena(), &call->call_combiner_};
881
- add_init_error(&error, grpc_call_stack_init(channel_stack, 1, DestroyCall,
882
- call, &call_args));
883
- // Publish this call to parent only after the call stack has been initialized.
884
- if (parent != nullptr) {
885
- call->PublishToParent(parent);
886
- }
887
-
888
- if (!error.ok()) {
889
- call->CancelWithError(error);
890
- }
891
- if (args->cq != nullptr) {
892
- GPR_ASSERT(args->pollset_set_alternative == nullptr &&
893
- "Only one of 'cq' and 'pollset_set_alternative' should be "
894
- "non-nullptr.");
895
- GRPC_CQ_INTERNAL_REF(args->cq, "bind");
896
- call->pollent_ =
897
- grpc_polling_entity_create_from_pollset(grpc_cq_pollset(args->cq));
898
- }
899
- if (args->pollset_set_alternative != nullptr) {
900
- call->pollent_ = grpc_polling_entity_create_from_pollset_set(
901
- args->pollset_set_alternative);
902
- }
903
- if (!grpc_polling_entity_is_empty(&call->pollent_)) {
904
- grpc_call_stack_set_pollset_or_pollset_set(call->call_stack(),
905
- &call->pollent_);
906
- }
907
-
908
- if (call->is_client()) {
909
- channelz::ChannelNode* channelz_channel = channel->channelz_node();
910
- if (channelz_channel != nullptr) {
911
- channelz_channel->RecordCallStarted();
912
- }
913
- } else if (call->final_op_.server.core_server != nullptr) {
914
- channelz::ServerNode* channelz_node =
915
- call->final_op_.server.core_server->channelz_node();
916
- if (channelz_node != nullptr) {
917
- channelz_node->RecordCallStarted();
918
- }
919
- }
920
-
921
- CSliceUnref(path);
922
-
923
- return error;
924
- }
925
-
926
- void FilterStackCall::SetCompletionQueue(grpc_completion_queue* cq) {
927
- GPR_ASSERT(cq);
928
-
929
- if (grpc_polling_entity_pollset_set(&pollent_) != nullptr) {
930
- Crash("A pollset_set is already registered for this call.");
356
+ InternalRef("deadline");
931
357
  }
932
- cq_ = cq;
933
- GRPC_CQ_INTERNAL_REF(cq, "bind");
934
- pollent_ = grpc_polling_entity_create_from_pollset(grpc_cq_pollset(cq));
935
- grpc_call_stack_set_pollset_or_pollset_set(call_stack(), &pollent_);
936
- }
937
-
938
- void FilterStackCall::ReleaseCall(void* call, grpc_error_handle /*error*/) {
939
- static_cast<FilterStackCall*>(call)->DeleteThis();
358
+ deadline_ = deadline;
359
+ deadline_task_ = event_engine_->RunAfter(deadline - Timestamp::Now(), this);
940
360
  }
941
361
 
942
- void FilterStackCall::DestroyCall(void* call, grpc_error_handle /*error*/) {
943
- auto* c = static_cast<FilterStackCall*>(call);
944
- c->recv_initial_metadata_.Clear();
945
- c->recv_trailing_metadata_.Clear();
946
- c->receiving_slice_buffer_.reset();
947
- ParentCall* pc = c->parent_call();
948
- if (pc != nullptr) {
949
- pc->~ParentCall();
950
- }
951
- if (c->cq_) {
952
- GRPC_CQ_INTERNAL_UNREF(c->cq_, "bind");
362
+ void Call::ResetDeadline() {
363
+ {
364
+ MutexLock lock(&deadline_mu_);
365
+ if (deadline_ == Timestamp::InfFuture()) return;
366
+ if (!event_engine_->Cancel(deadline_task_)) return;
367
+ deadline_ = Timestamp::InfFuture();
953
368
  }
954
-
955
- grpc_error_handle status_error = c->status_error_.get();
956
- grpc_error_get_status(status_error, c->send_deadline(),
957
- &c->final_info_.final_status, nullptr, nullptr,
958
- &(c->final_info_.error_string));
959
- c->status_error_.set(absl::OkStatus());
960
- c->final_info_.stats.latency =
961
- gpr_cycle_counter_sub(gpr_get_cycle_counter(), c->start_time());
962
- grpc_call_stack_destroy(c->call_stack(), &c->final_info_,
963
- GRPC_CLOSURE_INIT(&c->release_call_, ReleaseCall, c,
964
- grpc_schedule_on_exec_ctx));
369
+ InternalUnref("deadline[reset]");
965
370
  }
966
371
 
967
- void FilterStackCall::ExternalUnref() {
968
- if (GPR_LIKELY(!ext_ref_.Unref())) return;
969
-
372
+ void Call::Run() {
970
373
  ApplicationCallbackExecCtx callback_exec_ctx;
971
374
  ExecCtx exec_ctx;
972
-
973
- GRPC_API_TRACE("grpc_call_unref(c=%p)", 1, (this));
974
-
975
- MaybeUnpublishFromParent();
976
-
977
- GPR_ASSERT(!destroy_called_);
978
- destroy_called_ = true;
979
- bool cancel = gpr_atm_acq_load(&received_final_op_atm_) == 0;
980
- if (cancel) {
981
- CancelWithError(absl::CancelledError());
982
- } else {
983
- // Unset the call combiner cancellation closure. This has the
984
- // effect of scheduling the previously set cancellation closure, if
985
- // any, so that it can release any internal references it may be
986
- // holding to the call stack.
987
- call_combiner_.SetNotifyOnCancel(nullptr);
988
- }
989
- InternalUnref("destroy");
990
- }
991
-
992
- // start_batch_closure points to a caller-allocated closure to be used
993
- // for entering the call combiner.
994
- void FilterStackCall::ExecuteBatch(grpc_transport_stream_op_batch* batch,
995
- grpc_closure* start_batch_closure) {
996
- // This is called via the call combiner to start sending a batch down
997
- // the filter stack.
998
- auto execute_batch_in_call_combiner = [](void* arg, grpc_error_handle) {
999
- grpc_transport_stream_op_batch* batch =
1000
- static_cast<grpc_transport_stream_op_batch*>(arg);
1001
- auto* call =
1002
- static_cast<FilterStackCall*>(batch->handler_private.extra_arg);
1003
- grpc_call_element* elem = call->call_elem(0);
1004
- GRPC_CALL_LOG_OP(GPR_INFO, elem, batch);
1005
- elem->filter->start_transport_stream_op_batch(elem, batch);
1006
- };
1007
- batch->handler_private.extra_arg = this;
1008
- GRPC_CLOSURE_INIT(start_batch_closure, execute_batch_in_call_combiner, batch,
1009
- grpc_schedule_on_exec_ctx);
1010
- GRPC_CALL_COMBINER_START(call_combiner(), start_batch_closure,
1011
- absl::OkStatus(), "executing batch");
1012
- }
1013
-
1014
- namespace {
1015
- struct CancelState {
1016
- FilterStackCall* call;
1017
- grpc_closure start_batch;
1018
- grpc_closure finish_batch;
1019
- };
1020
- } // namespace
1021
-
1022
- // The on_complete callback used when sending a cancel_stream batch down
1023
- // the filter stack. Yields the call combiner when the batch is done.
1024
- static void done_termination(void* arg, grpc_error_handle /*error*/) {
1025
- CancelState* state = static_cast<CancelState*>(arg);
1026
- GRPC_CALL_COMBINER_STOP(state->call->call_combiner(),
1027
- "on_complete for cancel_stream op");
1028
- state->call->InternalUnref("termination");
1029
- delete state;
1030
- }
1031
-
1032
- void FilterStackCall::CancelWithError(grpc_error_handle error) {
1033
- if (!gpr_atm_rel_cas(&cancelled_with_error_, 0, 1)) {
1034
- return;
1035
- }
1036
- ClearPeerString();
1037
- InternalRef("termination");
1038
- // Inform the call combiner of the cancellation, so that it can cancel
1039
- // any in-flight asynchronous actions that may be holding the call
1040
- // combiner. This ensures that the cancel_stream batch can be sent
1041
- // down the filter stack in a timely manner.
1042
- call_combiner_.Cancel(error);
1043
- CancelState* state = new CancelState;
1044
- state->call = this;
1045
- GRPC_CLOSURE_INIT(&state->finish_batch, done_termination, state,
1046
- grpc_schedule_on_exec_ctx);
1047
- grpc_transport_stream_op_batch* op =
1048
- grpc_make_transport_stream_op(&state->finish_batch);
1049
- op->cancel_stream = true;
1050
- op->payload->cancel_stream.cancel_error = error;
1051
- ExecuteBatch(op, &state->start_batch);
1052
- }
1053
-
1054
- void FilterStackCall::SetFinalStatus(grpc_error_handle error) {
1055
- if (GRPC_TRACE_FLAG_ENABLED(grpc_call_error_trace)) {
1056
- gpr_log(GPR_DEBUG, "set_final_status %s %s", is_client() ? "CLI" : "SVR",
1057
- StatusToString(error).c_str());
1058
- }
1059
- if (is_client()) {
1060
- std::string status_details;
1061
- grpc_error_get_status(error, send_deadline(), final_op_.client.status,
1062
- &status_details, nullptr,
1063
- final_op_.client.error_string);
1064
- *final_op_.client.status_details =
1065
- grpc_slice_from_cpp_string(std::move(status_details));
1066
- status_error_.set(error);
1067
- channelz::ChannelNode* channelz_channel = channel()->channelz_node();
1068
- if (channelz_channel != nullptr) {
1069
- if (*final_op_.client.status != GRPC_STATUS_OK) {
1070
- channelz_channel->RecordCallFailed();
1071
- } else {
1072
- channelz_channel->RecordCallSucceeded();
1073
- }
1074
- }
1075
- } else {
1076
- *final_op_.server.cancelled =
1077
- !error.ok() || !sent_server_trailing_metadata_;
1078
- channelz::ServerNode* channelz_node =
1079
- final_op_.server.core_server->channelz_node();
1080
- if (channelz_node != nullptr) {
1081
- if (*final_op_.server.cancelled || !status_error_.ok()) {
1082
- channelz_node->RecordCallFailed();
1083
- } else {
1084
- channelz_node->RecordCallSucceeded();
1085
- }
1086
- }
1087
- }
1088
- }
1089
-
1090
- bool FilterStackCall::PrepareApplicationMetadata(size_t count,
1091
- grpc_metadata* metadata,
1092
- bool is_trailing) {
1093
- grpc_metadata_batch* batch =
1094
- is_trailing ? &send_trailing_metadata_ : &send_initial_metadata_;
1095
- for (size_t i = 0; i < count; i++) {
1096
- grpc_metadata* md = &metadata[i];
1097
- if (!GRPC_LOG_IF_ERROR("validate_metadata",
1098
- grpc_validate_header_key_is_legal(md->key))) {
1099
- return false;
1100
- } else if (!grpc_is_binary_header_internal(md->key) &&
1101
- !GRPC_LOG_IF_ERROR(
1102
- "validate_metadata",
1103
- grpc_validate_header_nonbin_value_is_legal(md->value))) {
1104
- return false;
1105
- } else if (GRPC_SLICE_LENGTH(md->value) >= UINT32_MAX) {
1106
- // HTTP2 hpack encoding has a maximum limit.
1107
- return false;
1108
- } else if (grpc_slice_str_cmp(md->key, "content-length") == 0) {
1109
- // Filter "content-length metadata"
1110
- continue;
1111
- }
1112
- batch->Append(StringViewFromSlice(md->key), Slice(CSliceRef(md->value)),
1113
- [md](absl::string_view error, const Slice& value) {
1114
- gpr_log(GPR_DEBUG, "Append error: %s",
1115
- absl::StrCat("key=", StringViewFromSlice(md->key),
1116
- " error=", error,
1117
- " value=", value.as_string_view())
1118
- .c_str());
1119
- });
1120
- }
1121
-
1122
- return true;
1123
- }
1124
-
1125
- namespace {
1126
- class PublishToAppEncoder {
1127
- public:
1128
- explicit PublishToAppEncoder(grpc_metadata_array* dest,
1129
- const grpc_metadata_batch* encoding,
1130
- bool is_client)
1131
- : dest_(dest), encoding_(encoding), is_client_(is_client) {}
1132
-
1133
- void Encode(const Slice& key, const Slice& value) {
1134
- Append(key.c_slice(), value.c_slice());
1135
- }
1136
-
1137
- // Catch anything that is not explicitly handled, and do not publish it to the
1138
- // application. If new metadata is added to a batch that needs to be
1139
- // published, it should be called out here.
1140
- template <typename Which>
1141
- void Encode(Which, const typename Which::ValueType&) {}
1142
-
1143
- void Encode(UserAgentMetadata, const Slice& slice) {
1144
- Append(UserAgentMetadata::key(), slice);
1145
- }
1146
-
1147
- void Encode(HostMetadata, const Slice& slice) {
1148
- Append(HostMetadata::key(), slice);
1149
- }
1150
-
1151
- void Encode(GrpcPreviousRpcAttemptsMetadata, uint32_t count) {
1152
- Append(GrpcPreviousRpcAttemptsMetadata::key(), count);
1153
- }
1154
-
1155
- void Encode(GrpcRetryPushbackMsMetadata, Duration count) {
1156
- Append(GrpcRetryPushbackMsMetadata::key(), count.millis());
1157
- }
1158
-
1159
- void Encode(LbTokenMetadata, const Slice& slice) {
1160
- Append(LbTokenMetadata::key(), slice);
1161
- }
1162
-
1163
- private:
1164
- void Append(absl::string_view key, int64_t value) {
1165
- Append(StaticSlice::FromStaticString(key).c_slice(),
1166
- Slice::FromInt64(value).c_slice());
1167
- }
1168
-
1169
- void Append(absl::string_view key, const Slice& value) {
1170
- Append(StaticSlice::FromStaticString(key).c_slice(), value.c_slice());
1171
- }
1172
-
1173
- void Append(grpc_slice key, grpc_slice value) {
1174
- if (dest_->count == dest_->capacity) {
1175
- Crash(absl::StrCat(
1176
- "Too many metadata entries: capacity=", dest_->capacity, " on ",
1177
- is_client_ ? "client" : "server", " encoding ", encoding_->count(),
1178
- " elements: ", encoding_->DebugString().c_str()));
1179
- }
1180
- auto* mdusr = &dest_->metadata[dest_->count++];
1181
- mdusr->key = key;
1182
- mdusr->value = value;
1183
- }
1184
-
1185
- grpc_metadata_array* const dest_;
1186
- const grpc_metadata_batch* const encoding_;
1187
- const bool is_client_;
1188
- };
1189
- } // namespace
1190
-
1191
- void FilterStackCall::PublishAppMetadata(grpc_metadata_batch* b,
1192
- bool is_trailing) {
1193
- if (b->count() == 0) return;
1194
- if (!is_client() && is_trailing) return;
1195
- if (is_trailing && buffered_metadata_[1] == nullptr) return;
1196
- grpc_metadata_array* dest;
1197
- dest = buffered_metadata_[is_trailing];
1198
- if (dest->count + b->count() > dest->capacity) {
1199
- dest->capacity =
1200
- std::max(dest->capacity + b->count(), dest->capacity * 3 / 2);
1201
- dest->metadata = static_cast<grpc_metadata*>(
1202
- gpr_realloc(dest->metadata, sizeof(grpc_metadata) * dest->capacity));
1203
- }
1204
- PublishToAppEncoder encoder(dest, b, is_client());
1205
- b->Encode(&encoder);
1206
- }
1207
-
1208
- void FilterStackCall::RecvInitialFilter(grpc_metadata_batch* b) {
1209
- ProcessIncomingInitialMetadata(*b);
1210
- PublishAppMetadata(b, false);
1211
- }
1212
-
1213
- void FilterStackCall::RecvTrailingFilter(grpc_metadata_batch* b,
1214
- grpc_error_handle batch_error) {
1215
- if (!batch_error.ok()) {
1216
- SetFinalStatus(batch_error);
1217
- } else {
1218
- absl::optional<grpc_status_code> grpc_status =
1219
- b->Take(GrpcStatusMetadata());
1220
- if (grpc_status.has_value()) {
1221
- grpc_status_code status_code = *grpc_status;
1222
- grpc_error_handle error;
1223
- if (status_code != GRPC_STATUS_OK) {
1224
- Slice peer = GetPeerString();
1225
- error = grpc_error_set_int(
1226
- GRPC_ERROR_CREATE(absl::StrCat("Error received from peer ",
1227
- peer.as_string_view())),
1228
- StatusIntProperty::kRpcStatus, static_cast<intptr_t>(status_code));
1229
- }
1230
- auto grpc_message = b->Take(GrpcMessageMetadata());
1231
- if (grpc_message.has_value()) {
1232
- error = grpc_error_set_str(error, StatusStrProperty::kGrpcMessage,
1233
- grpc_message->as_string_view());
1234
- } else if (!error.ok()) {
1235
- error = grpc_error_set_str(error, StatusStrProperty::kGrpcMessage, "");
1236
- }
1237
- SetFinalStatus(error);
1238
- } else if (!is_client()) {
1239
- SetFinalStatus(absl::OkStatus());
1240
- } else {
1241
- gpr_log(GPR_DEBUG,
1242
- "Received trailing metadata with no error and no status");
1243
- SetFinalStatus(grpc_error_set_int(GRPC_ERROR_CREATE("No status received"),
1244
- StatusIntProperty::kRpcStatus,
1245
- GRPC_STATUS_UNKNOWN));
1246
- }
1247
- }
1248
- PublishAppMetadata(b, true);
1249
- }
1250
-
1251
- namespace {
1252
- bool AreWriteFlagsValid(uint32_t flags) {
1253
- // check that only bits in GRPC_WRITE_(INTERNAL?)_USED_MASK are set
1254
- const uint32_t allowed_write_positions =
1255
- (GRPC_WRITE_USED_MASK | GRPC_WRITE_INTERNAL_USED_MASK);
1256
- const uint32_t invalid_positions = ~allowed_write_positions;
1257
- return !(flags & invalid_positions);
375
+ GRPC_TRACE_LOG(call, INFO)
376
+ << "call deadline expired "
377
+ << GRPC_DUMP_ARGS(Timestamp::Now(), send_deadline_);
378
+ CancelWithError(grpc_error_set_int(
379
+ absl::DeadlineExceededError("Deadline Exceeded"),
380
+ StatusIntProperty::kRpcStatus, GRPC_STATUS_DEADLINE_EXCEEDED));
381
+ InternalUnref("deadline[run]");
1258
382
  }
1259
383
 
1260
- bool AreInitialMetadataFlagsValid(uint32_t flags) {
1261
- // check that only bits in GRPC_WRITE_(INTERNAL?)_USED_MASK are set
1262
- uint32_t invalid_positions = ~GRPC_INITIAL_METADATA_USED_MASK;
1263
- return !(flags & invalid_positions);
1264
- }
384
+ } // namespace grpc_core
1265
385
 
1266
- size_t BatchSlotForOp(grpc_op_type type) {
1267
- switch (type) {
1268
- case GRPC_OP_SEND_INITIAL_METADATA:
1269
- return 0;
1270
- case GRPC_OP_SEND_MESSAGE:
1271
- return 1;
1272
- case GRPC_OP_SEND_CLOSE_FROM_CLIENT:
1273
- case GRPC_OP_SEND_STATUS_FROM_SERVER:
1274
- return 2;
1275
- case GRPC_OP_RECV_INITIAL_METADATA:
1276
- return 3;
1277
- case GRPC_OP_RECV_MESSAGE:
1278
- return 4;
1279
- case GRPC_OP_RECV_CLOSE_ON_SERVER:
1280
- case GRPC_OP_RECV_STATUS_ON_CLIENT:
1281
- return 5;
1282
- }
1283
- GPR_UNREACHABLE_CODE(return 123456789);
1284
- }
1285
- } // namespace
386
+ ///////////////////////////////////////////////////////////////////////////////
387
+ // C-based API
1286
388
 
1287
- FilterStackCall::BatchControl* FilterStackCall::ReuseOrAllocateBatchControl(
1288
- const grpc_op* ops) {
1289
- size_t slot_idx = BatchSlotForOp(ops[0].op);
1290
- BatchControl** pslot = &active_batches_[slot_idx];
1291
- BatchControl* bctl;
1292
- if (*pslot != nullptr) {
1293
- bctl = *pslot;
1294
- if (bctl->call_ != nullptr) {
1295
- return nullptr;
1296
- }
1297
- bctl->~BatchControl();
1298
- bctl->op_ = {};
1299
- new (&bctl->batch_error_) AtomicError();
1300
- } else {
1301
- bctl = arena()->New<BatchControl>();
1302
- *pslot = bctl;
1303
- }
1304
- bctl->call_ = this;
1305
- bctl->call_tracer_ = static_cast<CallTracerAnnotationInterface*>(
1306
- ContextGet(GRPC_CONTEXT_CALL_TRACER_ANNOTATION_INTERFACE));
1307
- bctl->op_.payload = &stream_op_payload_;
1308
- return bctl;
389
+ void* grpc_call_arena_alloc(grpc_call* call, size_t size) {
390
+ grpc_core::ExecCtx exec_ctx;
391
+ return grpc_core::Call::FromC(call)->arena()->Alloc(size);
1309
392
  }
1310
393
 
1311
- void FilterStackCall::BatchControl::PostCompletion() {
1312
- FilterStackCall* call = call_;
1313
- grpc_error_handle error = batch_error_.get();
1314
-
1315
- if (IsCallStatusOverrideOnCancellationEnabled()) {
1316
- // On the client side, if final call status is already known (i.e if this op
1317
- // includes recv_trailing_metadata) and if the call status is known to be
1318
- // OK, then disregard the batch error to ensure call->receiving_buffer_ is
1319
- // not cleared.
1320
- if (op_.recv_trailing_metadata && call->is_client() &&
1321
- call->status_error_.ok()) {
1322
- error = absl::OkStatus();
1323
- }
1324
- }
1325
-
1326
- if (grpc_call_trace.enabled()) {
1327
- gpr_log(GPR_DEBUG, "tag:%p batch_error=%s op:%s",
1328
- completion_data_.notify_tag.tag, error.ToString().c_str(),
1329
- grpc_transport_stream_op_batch_string(&op_, false).c_str());
1330
- }
1331
-
1332
- if (op_.send_initial_metadata) {
1333
- call->send_initial_metadata_.Clear();
1334
- }
1335
- if (op_.send_message) {
1336
- if (op_.payload->send_message.stream_write_closed && error.ok()) {
1337
- error = grpc_error_add_child(
1338
- error, GRPC_ERROR_CREATE(
1339
- "Attempt to send message after stream was closed."));
1340
- }
1341
- call->sending_message_ = false;
1342
- call->send_slice_buffer_.Clear();
1343
- }
1344
- if (op_.send_trailing_metadata) {
1345
- call->send_trailing_metadata_.Clear();
1346
- }
1347
-
1348
- if (!error.ok() && op_.recv_message && *call->receiving_buffer_ != nullptr) {
1349
- grpc_byte_buffer_destroy(*call->receiving_buffer_);
1350
- *call->receiving_buffer_ = nullptr;
1351
- }
1352
- if (op_.recv_trailing_metadata) {
1353
- // propagate cancellation to any interested children
1354
- gpr_atm_rel_store(&call->received_final_op_atm_, 1);
1355
- call->PropagateCancellationToChildren();
1356
- error = absl::OkStatus();
1357
- }
1358
- batch_error_.set(absl::OkStatus());
1359
-
1360
- if (completion_data_.notify_tag.is_closure) {
1361
- call_ = nullptr;
1362
- Closure::Run(DEBUG_LOCATION,
1363
- static_cast<grpc_closure*>(completion_data_.notify_tag.tag),
1364
- error);
1365
- call->InternalUnref("completion");
1366
- } else {
1367
- grpc_cq_end_op(
1368
- call->cq_, completion_data_.notify_tag.tag, error,
1369
- [](void* user_data, grpc_cq_completion* /*storage*/) {
1370
- BatchControl* bctl = static_cast<BatchControl*>(user_data);
1371
- Call* call = bctl->call_;
1372
- bctl->call_ = nullptr;
1373
- call->InternalUnref("completion");
1374
- },
1375
- this, &completion_data_.cq_completion);
1376
- }
394
+ void grpc_call_set_completion_queue(grpc_call* call,
395
+ grpc_completion_queue* cq) {
396
+ grpc_core::Call::FromC(call)->SetCompletionQueue(cq);
1377
397
  }
1378
398
 
1379
- void FilterStackCall::BatchControl::FinishStep(PendingOp op) {
1380
- if (GPR_UNLIKELY(completed_batch_step(op))) {
1381
- PostCompletion();
1382
- }
1383
- }
399
+ void grpc_call_ref(grpc_call* c) { grpc_core::Call::FromC(c)->ExternalRef(); }
1384
400
 
1385
- void FilterStackCall::BatchControl::ProcessDataAfterMetadata() {
1386
- FilterStackCall* call = call_;
1387
- if (!call->receiving_slice_buffer_.has_value()) {
1388
- *call->receiving_buffer_ = nullptr;
1389
- call->receiving_message_ = false;
1390
- FinishStep(PendingOp::kRecvMessage);
1391
- } else {
1392
- call->NoteLastMessageFlags(call->receiving_stream_flags_);
1393
- if ((call->receiving_stream_flags_ & GRPC_WRITE_INTERNAL_COMPRESS) &&
1394
- (call->incoming_compression_algorithm() != GRPC_COMPRESS_NONE)) {
1395
- *call->receiving_buffer_ = grpc_raw_compressed_byte_buffer_create(
1396
- nullptr, 0, call->incoming_compression_algorithm());
1397
- } else {
1398
- *call->receiving_buffer_ = grpc_raw_byte_buffer_create(nullptr, 0);
1399
- }
1400
- grpc_slice_buffer_move_into(
1401
- call->receiving_slice_buffer_->c_slice_buffer(),
1402
- &(*call->receiving_buffer_)->data.raw.slice_buffer);
1403
- call->receiving_message_ = false;
1404
- call->receiving_slice_buffer_.reset();
1405
- FinishStep(PendingOp::kRecvMessage);
1406
- }
1407
- }
1408
-
1409
- void FilterStackCall::BatchControl::ReceivingStreamReady(
1410
- grpc_error_handle error) {
1411
- if (grpc_call_trace.enabled()) {
1412
- gpr_log(GPR_DEBUG,
1413
- "tag:%p ReceivingStreamReady error=%s "
1414
- "receiving_slice_buffer.has_value=%d recv_state=%" PRIdPTR,
1415
- completion_data_.notify_tag.tag, error.ToString().c_str(),
1416
- call_->receiving_slice_buffer_.has_value(),
1417
- gpr_atm_no_barrier_load(&call_->recv_state_));
1418
- }
1419
- FilterStackCall* call = call_;
1420
- if (!error.ok()) {
1421
- call->receiving_slice_buffer_.reset();
1422
- if (batch_error_.ok()) {
1423
- batch_error_.set(error);
1424
- }
1425
- call->CancelWithError(error);
1426
- }
1427
- // If recv_state is kRecvNone, we will save the batch_control
1428
- // object with rel_cas, and will not use it after the cas. Its corresponding
1429
- // acq_load is in receiving_initial_metadata_ready()
1430
- if (!error.ok() || !call->receiving_slice_buffer_.has_value() ||
1431
- !gpr_atm_rel_cas(&call->recv_state_, kRecvNone,
1432
- reinterpret_cast<gpr_atm>(this))) {
1433
- ProcessDataAfterMetadata();
1434
- }
1435
- }
1436
-
1437
- void FilterStackCall::BatchControl::ReceivingInitialMetadataReady(
1438
- grpc_error_handle error) {
1439
- FilterStackCall* call = call_;
1440
-
1441
- GRPC_CALL_COMBINER_STOP(call->call_combiner(), "recv_initial_metadata_ready");
1442
-
1443
- if (error.ok()) {
1444
- grpc_metadata_batch* md = &call->recv_initial_metadata_;
1445
- call->RecvInitialFilter(md);
1446
-
1447
- absl::optional<Timestamp> deadline = md->get(GrpcTimeoutMetadata());
1448
- if (deadline.has_value() && !call->is_client()) {
1449
- call_->set_send_deadline(*deadline);
1450
- }
1451
- } else {
1452
- if (batch_error_.ok()) {
1453
- batch_error_.set(error);
1454
- }
1455
- call->CancelWithError(error);
1456
- }
1457
-
1458
- grpc_closure* saved_rsr_closure = nullptr;
1459
- while (true) {
1460
- gpr_atm rsr_bctlp = gpr_atm_acq_load(&call->recv_state_);
1461
- // Should only receive initial metadata once
1462
- GPR_ASSERT(rsr_bctlp != 1);
1463
- if (rsr_bctlp == 0) {
1464
- // We haven't seen initial metadata and messages before, thus initial
1465
- // metadata is received first.
1466
- // no_barrier_cas is used, as this function won't access the batch_control
1467
- // object saved by receiving_stream_ready() if the initial metadata is
1468
- // received first.
1469
- if (gpr_atm_no_barrier_cas(&call->recv_state_, kRecvNone,
1470
- kRecvInitialMetadataFirst)) {
1471
- break;
1472
- }
1473
- } else {
1474
- // Already received messages
1475
- saved_rsr_closure = GRPC_CLOSURE_CREATE(
1476
- [](void* bctl, grpc_error_handle error) {
1477
- static_cast<BatchControl*>(bctl)->ReceivingStreamReady(error);
1478
- },
1479
- reinterpret_cast<BatchControl*>(rsr_bctlp),
1480
- grpc_schedule_on_exec_ctx);
1481
- // No need to modify recv_state
1482
- break;
1483
- }
1484
- }
1485
- if (saved_rsr_closure != nullptr) {
1486
- Closure::Run(DEBUG_LOCATION, saved_rsr_closure, error);
1487
- }
1488
-
1489
- FinishStep(PendingOp::kRecvInitialMetadata);
1490
- }
1491
-
1492
- void FilterStackCall::BatchControl::ReceivingTrailingMetadataReady(
1493
- grpc_error_handle error) {
1494
- GRPC_CALL_COMBINER_STOP(call_->call_combiner(),
1495
- "recv_trailing_metadata_ready");
1496
- grpc_metadata_batch* md = &call_->recv_trailing_metadata_;
1497
- call_->RecvTrailingFilter(md, error);
1498
- FinishStep(PendingOp::kRecvTrailingMetadata);
1499
- }
1500
-
1501
- void FilterStackCall::BatchControl::FinishBatch(grpc_error_handle error) {
1502
- GRPC_CALL_COMBINER_STOP(call_->call_combiner(), "on_complete");
1503
- if (batch_error_.ok()) {
1504
- batch_error_.set(error);
1505
- }
1506
- if (!error.ok()) {
1507
- call_->CancelWithError(error);
1508
- }
1509
- FinishStep(PendingOp::kSends);
1510
- }
1511
-
1512
- namespace {
1513
- void EndOpImmediately(grpc_completion_queue* cq, void* notify_tag,
1514
- bool is_notify_tag_closure) {
1515
- if (!is_notify_tag_closure) {
1516
- GPR_ASSERT(grpc_cq_begin_op(cq, notify_tag));
1517
- grpc_cq_end_op(
1518
- cq, notify_tag, absl::OkStatus(),
1519
- [](void*, grpc_cq_completion* completion) { gpr_free(completion); },
1520
- nullptr,
1521
- static_cast<grpc_cq_completion*>(
1522
- gpr_malloc(sizeof(grpc_cq_completion))));
1523
- } else {
1524
- Closure::Run(DEBUG_LOCATION, static_cast<grpc_closure*>(notify_tag),
1525
- absl::OkStatus());
1526
- }
1527
- }
1528
- } // namespace
1529
-
1530
- grpc_call_error FilterStackCall::StartBatch(const grpc_op* ops, size_t nops,
1531
- void* notify_tag,
1532
- bool is_notify_tag_closure) {
1533
- size_t i;
1534
- const grpc_op* op;
1535
- BatchControl* bctl;
1536
- grpc_call_error error = GRPC_CALL_OK;
1537
- grpc_transport_stream_op_batch* stream_op;
1538
- grpc_transport_stream_op_batch_payload* stream_op_payload;
1539
- uint32_t seen_ops = 0;
1540
- intptr_t pending_ops = 0;
1541
- CallTracerAnnotationInterface* call_tracer = nullptr;
1542
-
1543
- for (i = 0; i < nops; i++) {
1544
- if (seen_ops & (1u << ops[i].op)) {
1545
- return GRPC_CALL_ERROR_TOO_MANY_OPERATIONS;
1546
- }
1547
- seen_ops |= (1u << ops[i].op);
1548
- }
1549
-
1550
- if (!is_client() &&
1551
- (seen_ops & (1u << GRPC_OP_SEND_STATUS_FROM_SERVER)) != 0 &&
1552
- (seen_ops & (1u << GRPC_OP_RECV_MESSAGE)) != 0) {
1553
- gpr_log(GPR_ERROR,
1554
- "******************* SEND_STATUS WITH RECV_MESSAGE "
1555
- "*******************");
1556
- return GRPC_CALL_ERROR;
1557
- }
1558
-
1559
- GRPC_CALL_LOG_BATCH(GPR_INFO, ops, nops);
1560
-
1561
- if (nops == 0) {
1562
- EndOpImmediately(cq_, notify_tag, is_notify_tag_closure);
1563
- error = GRPC_CALL_OK;
1564
- goto done;
1565
- }
1566
-
1567
- bctl = ReuseOrAllocateBatchControl(ops);
1568
- if (bctl == nullptr) {
1569
- return GRPC_CALL_ERROR_TOO_MANY_OPERATIONS;
1570
- }
1571
- bctl->completion_data_.notify_tag.tag = notify_tag;
1572
- bctl->completion_data_.notify_tag.is_closure =
1573
- static_cast<uint8_t>(is_notify_tag_closure != 0);
1574
-
1575
- stream_op = &bctl->op_;
1576
- stream_op_payload = &stream_op_payload_;
1577
-
1578
- // rewrite batch ops into a transport op
1579
- for (i = 0; i < nops; i++) {
1580
- op = &ops[i];
1581
- if (op->reserved != nullptr) {
1582
- error = GRPC_CALL_ERROR;
1583
- goto done_with_error;
1584
- }
1585
- switch (op->op) {
1586
- case GRPC_OP_SEND_INITIAL_METADATA: {
1587
- // Flag validation: currently allow no flags
1588
- if (!AreInitialMetadataFlagsValid(op->flags)) {
1589
- error = GRPC_CALL_ERROR_INVALID_FLAGS;
1590
- goto done_with_error;
1591
- }
1592
- if (sent_initial_metadata_) {
1593
- error = GRPC_CALL_ERROR_TOO_MANY_OPERATIONS;
1594
- goto done_with_error;
1595
- }
1596
- if (op->data.send_initial_metadata.count > INT_MAX) {
1597
- error = GRPC_CALL_ERROR_INVALID_METADATA;
1598
- goto done_with_error;
1599
- }
1600
- stream_op->send_initial_metadata = true;
1601
- sent_initial_metadata_ = true;
1602
- if (!PrepareApplicationMetadata(op->data.send_initial_metadata.count,
1603
- op->data.send_initial_metadata.metadata,
1604
- false)) {
1605
- error = GRPC_CALL_ERROR_INVALID_METADATA;
1606
- goto done_with_error;
1607
- }
1608
- PrepareOutgoingInitialMetadata(*op, send_initial_metadata_);
1609
- // TODO(ctiller): just make these the same variable?
1610
- if (is_client() && send_deadline() != Timestamp::InfFuture()) {
1611
- send_initial_metadata_.Set(GrpcTimeoutMetadata(), send_deadline());
1612
- }
1613
- if (is_client()) {
1614
- send_initial_metadata_.Set(
1615
- WaitForReady(),
1616
- WaitForReady::ValueType{
1617
- (op->flags & GRPC_INITIAL_METADATA_WAIT_FOR_READY) != 0,
1618
- (op->flags &
1619
- GRPC_INITIAL_METADATA_WAIT_FOR_READY_EXPLICITLY_SET) != 0});
1620
- }
1621
- stream_op_payload->send_initial_metadata.send_initial_metadata =
1622
- &send_initial_metadata_;
1623
- pending_ops |= PendingOpMask(PendingOp::kSends);
1624
- break;
1625
- }
1626
- case GRPC_OP_SEND_MESSAGE: {
1627
- if (!AreWriteFlagsValid(op->flags)) {
1628
- error = GRPC_CALL_ERROR_INVALID_FLAGS;
1629
- goto done_with_error;
1630
- }
1631
- if (op->data.send_message.send_message == nullptr) {
1632
- error = GRPC_CALL_ERROR_INVALID_MESSAGE;
1633
- goto done_with_error;
1634
- }
1635
- if (sending_message_) {
1636
- error = GRPC_CALL_ERROR_TOO_MANY_OPERATIONS;
1637
- goto done_with_error;
1638
- }
1639
- uint32_t flags = op->flags;
1640
- // If the outgoing buffer is already compressed, mark it as so in the
1641
- // flags. These will be picked up by the compression filter and further
1642
- // (wasteful) attempts at compression skipped.
1643
- if (op->data.send_message.send_message->data.raw.compression >
1644
- GRPC_COMPRESS_NONE) {
1645
- flags |= GRPC_WRITE_INTERNAL_COMPRESS;
1646
- }
1647
- stream_op->send_message = true;
1648
- sending_message_ = true;
1649
- send_slice_buffer_.Clear();
1650
- grpc_slice_buffer_move_into(
1651
- &op->data.send_message.send_message->data.raw.slice_buffer,
1652
- send_slice_buffer_.c_slice_buffer());
1653
- stream_op_payload->send_message.flags = flags;
1654
- stream_op_payload->send_message.send_message = &send_slice_buffer_;
1655
- pending_ops |= PendingOpMask(PendingOp::kSends);
1656
- break;
1657
- }
1658
- case GRPC_OP_SEND_CLOSE_FROM_CLIENT: {
1659
- // Flag validation: currently allow no flags
1660
- if (op->flags != 0) {
1661
- error = GRPC_CALL_ERROR_INVALID_FLAGS;
1662
- goto done_with_error;
1663
- }
1664
- if (!is_client()) {
1665
- error = GRPC_CALL_ERROR_NOT_ON_SERVER;
1666
- goto done_with_error;
1667
- }
1668
- if (sent_final_op_) {
1669
- error = GRPC_CALL_ERROR_TOO_MANY_OPERATIONS;
1670
- goto done_with_error;
1671
- }
1672
- stream_op->send_trailing_metadata = true;
1673
- sent_final_op_ = true;
1674
- stream_op_payload->send_trailing_metadata.send_trailing_metadata =
1675
- &send_trailing_metadata_;
1676
- pending_ops |= PendingOpMask(PendingOp::kSends);
1677
- break;
1678
- }
1679
- case GRPC_OP_SEND_STATUS_FROM_SERVER: {
1680
- // Flag validation: currently allow no flags
1681
- if (op->flags != 0) {
1682
- error = GRPC_CALL_ERROR_INVALID_FLAGS;
1683
- goto done_with_error;
1684
- }
1685
- if (is_client()) {
1686
- error = GRPC_CALL_ERROR_NOT_ON_CLIENT;
1687
- goto done_with_error;
1688
- }
1689
- if (sent_final_op_) {
1690
- error = GRPC_CALL_ERROR_TOO_MANY_OPERATIONS;
1691
- goto done_with_error;
1692
- }
1693
- if (op->data.send_status_from_server.trailing_metadata_count >
1694
- INT_MAX) {
1695
- error = GRPC_CALL_ERROR_INVALID_METADATA;
1696
- goto done_with_error;
1697
- }
1698
- stream_op->send_trailing_metadata = true;
1699
- sent_final_op_ = true;
1700
-
1701
- if (!PrepareApplicationMetadata(
1702
- op->data.send_status_from_server.trailing_metadata_count,
1703
- op->data.send_status_from_server.trailing_metadata, true)) {
1704
- error = GRPC_CALL_ERROR_INVALID_METADATA;
1705
- goto done_with_error;
1706
- }
1707
-
1708
- grpc_error_handle status_error =
1709
- op->data.send_status_from_server.status == GRPC_STATUS_OK
1710
- ? absl::OkStatus()
1711
- : grpc_error_set_int(
1712
- GRPC_ERROR_CREATE("Server returned error"),
1713
- StatusIntProperty::kRpcStatus,
1714
- static_cast<intptr_t>(
1715
- op->data.send_status_from_server.status));
1716
- if (op->data.send_status_from_server.status_details != nullptr) {
1717
- send_trailing_metadata_.Set(
1718
- GrpcMessageMetadata(),
1719
- Slice(grpc_slice_copy(
1720
- *op->data.send_status_from_server.status_details)));
1721
- if (!status_error.ok()) {
1722
- status_error = grpc_error_set_str(
1723
- status_error, StatusStrProperty::kGrpcMessage,
1724
- StringViewFromSlice(
1725
- *op->data.send_status_from_server.status_details));
1726
- }
1727
- }
1728
-
1729
- status_error_.set(status_error);
1730
-
1731
- send_trailing_metadata_.Set(GrpcStatusMetadata(),
1732
- op->data.send_status_from_server.status);
1733
-
1734
- // Ignore any te metadata key value pairs specified.
1735
- send_trailing_metadata_.Remove(TeMetadata());
1736
- stream_op_payload->send_trailing_metadata.send_trailing_metadata =
1737
- &send_trailing_metadata_;
1738
- stream_op_payload->send_trailing_metadata.sent =
1739
- &sent_server_trailing_metadata_;
1740
- pending_ops |= PendingOpMask(PendingOp::kSends);
1741
- break;
1742
- }
1743
- case GRPC_OP_RECV_INITIAL_METADATA: {
1744
- // Flag validation: currently allow no flags
1745
- if (op->flags != 0) {
1746
- error = GRPC_CALL_ERROR_INVALID_FLAGS;
1747
- goto done_with_error;
1748
- }
1749
- if (received_initial_metadata_) {
1750
- error = GRPC_CALL_ERROR_TOO_MANY_OPERATIONS;
1751
- goto done_with_error;
1752
- }
1753
- received_initial_metadata_ = true;
1754
- buffered_metadata_[0] =
1755
- op->data.recv_initial_metadata.recv_initial_metadata;
1756
- GRPC_CLOSURE_INIT(
1757
- &receiving_initial_metadata_ready_,
1758
- [](void* bctl, grpc_error_handle error) {
1759
- static_cast<BatchControl*>(bctl)->ReceivingInitialMetadataReady(
1760
- error);
1761
- },
1762
- bctl, grpc_schedule_on_exec_ctx);
1763
- stream_op->recv_initial_metadata = true;
1764
- stream_op_payload->recv_initial_metadata.recv_initial_metadata =
1765
- &recv_initial_metadata_;
1766
- stream_op_payload->recv_initial_metadata.recv_initial_metadata_ready =
1767
- &receiving_initial_metadata_ready_;
1768
- if (is_client()) {
1769
- stream_op_payload->recv_initial_metadata.trailing_metadata_available =
1770
- &is_trailers_only_;
1771
- }
1772
- pending_ops |= PendingOpMask(PendingOp::kRecvInitialMetadata);
1773
- break;
1774
- }
1775
- case GRPC_OP_RECV_MESSAGE: {
1776
- // Flag validation: currently allow no flags
1777
- if (op->flags != 0) {
1778
- error = GRPC_CALL_ERROR_INVALID_FLAGS;
1779
- goto done_with_error;
1780
- }
1781
- if (receiving_message_) {
1782
- error = GRPC_CALL_ERROR_TOO_MANY_OPERATIONS;
1783
- goto done_with_error;
1784
- }
1785
- receiving_message_ = true;
1786
- stream_op->recv_message = true;
1787
- receiving_slice_buffer_.reset();
1788
- receiving_buffer_ = op->data.recv_message.recv_message;
1789
- stream_op_payload->recv_message.recv_message = &receiving_slice_buffer_;
1790
- receiving_stream_flags_ = 0;
1791
- stream_op_payload->recv_message.flags = &receiving_stream_flags_;
1792
- stream_op_payload->recv_message.call_failed_before_recv_message =
1793
- &call_failed_before_recv_message_;
1794
- GRPC_CLOSURE_INIT(
1795
- &receiving_stream_ready_,
1796
- [](void* bctlp, grpc_error_handle error) {
1797
- auto* bctl = static_cast<BatchControl*>(bctlp);
1798
- auto* call = bctl->call_;
1799
- // Yields the call combiner before processing the received
1800
- // message.
1801
- GRPC_CALL_COMBINER_STOP(call->call_combiner(),
1802
- "recv_message_ready");
1803
- bctl->ReceivingStreamReady(error);
1804
- },
1805
- bctl, grpc_schedule_on_exec_ctx);
1806
- stream_op_payload->recv_message.recv_message_ready =
1807
- &receiving_stream_ready_;
1808
- pending_ops |= PendingOpMask(PendingOp::kRecvMessage);
1809
- break;
1810
- }
1811
- case GRPC_OP_RECV_STATUS_ON_CLIENT: {
1812
- // Flag validation: currently allow no flags
1813
- if (op->flags != 0) {
1814
- error = GRPC_CALL_ERROR_INVALID_FLAGS;
1815
- goto done_with_error;
1816
- }
1817
- if (!is_client()) {
1818
- error = GRPC_CALL_ERROR_NOT_ON_SERVER;
1819
- goto done_with_error;
1820
- }
1821
- if (requested_final_op_) {
1822
- error = GRPC_CALL_ERROR_TOO_MANY_OPERATIONS;
1823
- goto done_with_error;
1824
- }
1825
- requested_final_op_ = true;
1826
- buffered_metadata_[1] =
1827
- op->data.recv_status_on_client.trailing_metadata;
1828
- final_op_.client.status = op->data.recv_status_on_client.status;
1829
- final_op_.client.status_details =
1830
- op->data.recv_status_on_client.status_details;
1831
- final_op_.client.error_string =
1832
- op->data.recv_status_on_client.error_string;
1833
- stream_op->recv_trailing_metadata = true;
1834
- stream_op_payload->recv_trailing_metadata.recv_trailing_metadata =
1835
- &recv_trailing_metadata_;
1836
- stream_op_payload->recv_trailing_metadata.collect_stats =
1837
- &final_info_.stats.transport_stream_stats;
1838
- GRPC_CLOSURE_INIT(
1839
- &receiving_trailing_metadata_ready_,
1840
- [](void* bctl, grpc_error_handle error) {
1841
- static_cast<BatchControl*>(bctl)->ReceivingTrailingMetadataReady(
1842
- error);
1843
- },
1844
- bctl, grpc_schedule_on_exec_ctx);
1845
- stream_op_payload->recv_trailing_metadata.recv_trailing_metadata_ready =
1846
- &receiving_trailing_metadata_ready_;
1847
- pending_ops |= PendingOpMask(PendingOp::kRecvTrailingMetadata);
1848
- break;
1849
- }
1850
- case GRPC_OP_RECV_CLOSE_ON_SERVER: {
1851
- // Flag validation: currently allow no flags
1852
- if (op->flags != 0) {
1853
- error = GRPC_CALL_ERROR_INVALID_FLAGS;
1854
- goto done_with_error;
1855
- }
1856
- if (is_client()) {
1857
- error = GRPC_CALL_ERROR_NOT_ON_CLIENT;
1858
- goto done_with_error;
1859
- }
1860
- if (requested_final_op_) {
1861
- error = GRPC_CALL_ERROR_TOO_MANY_OPERATIONS;
1862
- goto done_with_error;
1863
- }
1864
- requested_final_op_ = true;
1865
- final_op_.server.cancelled = op->data.recv_close_on_server.cancelled;
1866
- stream_op->recv_trailing_metadata = true;
1867
- stream_op_payload->recv_trailing_metadata.recv_trailing_metadata =
1868
- &recv_trailing_metadata_;
1869
- stream_op_payload->recv_trailing_metadata.collect_stats =
1870
- &final_info_.stats.transport_stream_stats;
1871
- GRPC_CLOSURE_INIT(
1872
- &receiving_trailing_metadata_ready_,
1873
- [](void* bctl, grpc_error_handle error) {
1874
- static_cast<BatchControl*>(bctl)->ReceivingTrailingMetadataReady(
1875
- error);
1876
- },
1877
- bctl, grpc_schedule_on_exec_ctx);
1878
- stream_op_payload->recv_trailing_metadata.recv_trailing_metadata_ready =
1879
- &receiving_trailing_metadata_ready_;
1880
- pending_ops |= PendingOpMask(PendingOp::kRecvTrailingMetadata);
1881
- break;
1882
- }
1883
- }
1884
- }
1885
-
1886
- InternalRef("completion");
1887
- if (!is_notify_tag_closure) {
1888
- GPR_ASSERT(grpc_cq_begin_op(cq_, notify_tag));
1889
- }
1890
- bctl->set_pending_ops(pending_ops);
1891
-
1892
- if (pending_ops & PendingOpMask(PendingOp::kSends)) {
1893
- GRPC_CLOSURE_INIT(
1894
- &bctl->finish_batch_,
1895
- [](void* bctl, grpc_error_handle error) {
1896
- static_cast<BatchControl*>(bctl)->FinishBatch(error);
1897
- },
1898
- bctl, grpc_schedule_on_exec_ctx);
1899
- stream_op->on_complete = &bctl->finish_batch_;
1900
- }
1901
-
1902
- call_tracer = static_cast<CallTracerAnnotationInterface*>(
1903
- ContextGet(GRPC_CONTEXT_CALL_TRACER_ANNOTATION_INTERFACE));
1904
- if ((IsTraceRecordCallopsEnabled() && call_tracer != nullptr)) {
1905
- call_tracer->RecordAnnotation(absl::StrFormat(
1906
- "BATCH:%p START:%s BATCH:%s (tag:%p)", bctl,
1907
- PendingOpString(pending_ops).c_str(),
1908
- grpc_transport_stream_op_batch_string(stream_op, true).c_str(),
1909
- bctl->completion_data_.notify_tag.tag));
1910
- }
1911
- if (grpc_call_trace.enabled()) {
1912
- gpr_log(GPR_DEBUG, "BATCH:%p START:%s BATCH:%s (tag:%p)", bctl,
1913
- PendingOpString(pending_ops).c_str(),
1914
- grpc_transport_stream_op_batch_string(stream_op, false).c_str(),
1915
- bctl->completion_data_.notify_tag.tag);
1916
- }
1917
- ExecuteBatch(stream_op, &bctl->start_batch_);
1918
-
1919
- done:
1920
- return error;
1921
-
1922
- done_with_error:
1923
- // reverse any mutations that occurred
1924
- if (stream_op->send_initial_metadata) {
1925
- sent_initial_metadata_ = false;
1926
- send_initial_metadata_.Clear();
1927
- }
1928
- if (stream_op->send_message) {
1929
- sending_message_ = false;
1930
- }
1931
- if (stream_op->send_trailing_metadata) {
1932
- sent_final_op_ = false;
1933
- send_trailing_metadata_.Clear();
1934
- }
1935
- if (stream_op->recv_initial_metadata) {
1936
- received_initial_metadata_ = false;
1937
- }
1938
- if (stream_op->recv_message) {
1939
- receiving_message_ = false;
1940
- }
1941
- if (stream_op->recv_trailing_metadata) {
1942
- requested_final_op_ = false;
1943
- }
1944
- goto done;
1945
- }
1946
-
1947
- void FilterStackCall::ContextSet(grpc_context_index elem, void* value,
1948
- void (*destroy)(void*)) {
1949
- if (context_[elem].destroy) {
1950
- context_[elem].destroy(context_[elem].value);
1951
- }
1952
- context_[elem].value = value;
1953
- context_[elem].destroy = destroy;
1954
- }
1955
-
1956
- ///////////////////////////////////////////////////////////////////////////////
1957
- // Metadata validation helpers
1958
-
1959
- namespace {
1960
- bool ValidateMetadata(size_t count, grpc_metadata* metadata) {
1961
- if (count > INT_MAX) {
1962
- return false;
1963
- }
1964
- for (size_t i = 0; i < count; i++) {
1965
- grpc_metadata* md = &metadata[i];
1966
- if (!GRPC_LOG_IF_ERROR("validate_metadata",
1967
- grpc_validate_header_key_is_legal(md->key))) {
1968
- return false;
1969
- } else if (!grpc_is_binary_header_internal(md->key) &&
1970
- !GRPC_LOG_IF_ERROR(
1971
- "validate_metadata",
1972
- grpc_validate_header_nonbin_value_is_legal(md->value))) {
1973
- return false;
1974
- } else if (GRPC_SLICE_LENGTH(md->value) >= UINT32_MAX) {
1975
- // HTTP2 hpack encoding has a maximum limit.
1976
- return false;
1977
- }
1978
- }
1979
- return true;
1980
- }
1981
- } // namespace
1982
-
1983
- ///////////////////////////////////////////////////////////////////////////////
1984
- // PromiseBasedCall
1985
- // Will be folded into Call once the promise conversion is done
1986
-
1987
- class BasicPromiseBasedCall : public Call,
1988
- public Party,
1989
- public grpc_event_engine::experimental::
1990
- EventEngine::Closure /* for deadlines */ {
1991
- public:
1992
- using Call::arena;
1993
-
1994
- BasicPromiseBasedCall(Arena* arena, uint32_t initial_external_refs,
1995
- uint32_t initial_internal_refs,
1996
- const grpc_call_create_args& args)
1997
- : Call(arena, args.server_transport_data == nullptr, args.send_deadline,
1998
- args.channel->Ref()),
1999
- Party(arena, initial_internal_refs),
2000
- external_refs_(initial_external_refs),
2001
- cq_(args.cq) {
2002
- if (args.cq != nullptr) {
2003
- GRPC_CQ_INTERNAL_REF(args.cq, "bind");
2004
- }
2005
- }
2006
-
2007
- ~BasicPromiseBasedCall() override {
2008
- if (cq_) GRPC_CQ_INTERNAL_UNREF(cq_, "bind");
2009
- for (int i = 0; i < GRPC_CONTEXT_COUNT; i++) {
2010
- if (context_[i].destroy) {
2011
- context_[i].destroy(context_[i].value);
2012
- }
2013
- }
2014
- }
2015
-
2016
- // Implementation of EventEngine::Closure, called when deadline expires
2017
- void Run() final;
2018
-
2019
- virtual void OrphanCall() = 0;
2020
-
2021
- virtual ServerCallContext* server_call_context() { return nullptr; }
2022
- void SetCompletionQueue(grpc_completion_queue* cq) final {
2023
- cq_ = cq;
2024
- GRPC_CQ_INTERNAL_REF(cq, "bind");
2025
- }
2026
-
2027
- // Implementation of call refcounting: move this to DualRefCounted once we
2028
- // don't need to maintain FilterStackCall compatibility
2029
- void ExternalRef() final {
2030
- if (external_refs_.fetch_add(1, std::memory_order_relaxed) == 0) {
2031
- InternalRef("external");
2032
- }
2033
- }
2034
- void ExternalUnref() final {
2035
- if (external_refs_.fetch_sub(1, std::memory_order_acq_rel) == 1) {
2036
- OrphanCall();
2037
- InternalUnref("external");
2038
- }
2039
- }
2040
- void InternalRef(const char* reason) final {
2041
- if (grpc_call_refcount_trace.enabled()) {
2042
- gpr_log(GPR_DEBUG, "INTERNAL_REF:%p:%s", this, reason);
2043
- }
2044
- Party::IncrementRefCount();
2045
- }
2046
- void InternalUnref(const char* reason) final {
2047
- if (grpc_call_refcount_trace.enabled()) {
2048
- gpr_log(GPR_DEBUG, "INTERNAL_UNREF:%p:%s", this, reason);
2049
- }
2050
- Party::Unref();
2051
- }
2052
-
2053
- void RunInContext(absl::AnyInvocable<void()> fn) {
2054
- Spawn(
2055
- "run_in_context",
2056
- [fn = std::move(fn)]() mutable {
2057
- fn();
2058
- return Empty{};
2059
- },
2060
- [](Empty) {});
2061
- }
2062
-
2063
- void ContextSet(grpc_context_index elem, void* value,
2064
- void (*destroy)(void*)) final {
2065
- if (context_[elem].destroy != nullptr) {
2066
- context_[elem].destroy(context_[elem].value);
2067
- }
2068
- context_[elem].value = value;
2069
- context_[elem].destroy = destroy;
2070
- }
2071
-
2072
- void* ContextGet(grpc_context_index elem) const final {
2073
- return context_[elem].value;
2074
- }
2075
-
2076
- void UpdateDeadline(Timestamp deadline) ABSL_LOCKS_EXCLUDED(deadline_mu_);
2077
- void ResetDeadline() ABSL_LOCKS_EXCLUDED(deadline_mu_);
2078
- Timestamp deadline() {
2079
- MutexLock lock(&deadline_mu_);
2080
- return deadline_;
2081
- }
2082
-
2083
- // Accept the stats from the context (call once we have proof the transport is
2084
- // done with them).
2085
- void AcceptTransportStatsFromContext() {
2086
- final_stats_ = *call_context_.call_stats();
2087
- }
2088
-
2089
- // This should return nullptr for the promise stack (and alternative means
2090
- // for that functionality be invented)
2091
- grpc_call_stack* call_stack() final { return nullptr; }
2092
-
2093
- virtual RefCountedPtr<CallSpineInterface> MakeCallSpine(CallArgs) {
2094
- Crash("Not implemented");
2095
- }
2096
-
2097
- protected:
2098
- class ScopedContext
2099
- : public ScopedActivity,
2100
- public promise_detail::Context<Arena>,
2101
- public promise_detail::Context<grpc_call_context_element>,
2102
- public promise_detail::Context<CallContext>,
2103
- public promise_detail::Context<CallFinalization> {
2104
- public:
2105
- explicit ScopedContext(BasicPromiseBasedCall* call)
2106
- : ScopedActivity(call),
2107
- promise_detail::Context<Arena>(call->arena()),
2108
- promise_detail::Context<grpc_call_context_element>(call->context_),
2109
- promise_detail::Context<CallContext>(&call->call_context_),
2110
- promise_detail::Context<CallFinalization>(&call->finalization_) {}
2111
- };
2112
-
2113
- grpc_call_context_element* context() { return context_; }
2114
-
2115
- grpc_completion_queue* cq() { return cq_; }
2116
-
2117
- // At the end of the call run any finalization actions.
2118
- void SetFinalizationStatus(grpc_status_code status, Slice status_details) {
2119
- final_message_ = std::move(status_details);
2120
- final_status_ = status;
2121
- }
2122
-
2123
- grpc_event_engine::experimental::EventEngine* event_engine() const override {
2124
- return channel()->event_engine();
2125
- }
2126
-
2127
- private:
2128
- void PartyOver() final {
2129
- {
2130
- ScopedContext ctx(this);
2131
- std::string message;
2132
- grpc_call_final_info final_info;
2133
- final_info.stats = final_stats_;
2134
- final_info.final_status = final_status_;
2135
- // TODO(ctiller): change type here so we don't need to copy this string.
2136
- final_info.error_string = nullptr;
2137
- if (!final_message_.empty()) {
2138
- message = std::string(final_message_.begin(), final_message_.end());
2139
- final_info.error_string = message.c_str();
2140
- }
2141
- final_info.stats.latency =
2142
- gpr_cycle_counter_sub(gpr_get_cycle_counter(), start_time());
2143
- finalization_.Run(&final_info);
2144
- CancelRemainingParticipants();
2145
- arena()->DestroyManagedNewObjects();
2146
- }
2147
- DeleteThis();
2148
- }
2149
-
2150
- // Double refcounted for now: party owns the internal refcount, we track the
2151
- // external refcount. Figure out a better scheme post-promise conversion.
2152
- std::atomic<size_t> external_refs_;
2153
- CallFinalization finalization_;
2154
- CallContext call_context_{this};
2155
- // Contexts for various subsystems (security, tracing, ...).
2156
- grpc_call_context_element context_[GRPC_CONTEXT_COUNT] = {};
2157
- grpc_call_stats final_stats_{};
2158
- // Current deadline.
2159
- Mutex deadline_mu_;
2160
- Timestamp deadline_ ABSL_GUARDED_BY(deadline_mu_) = Timestamp::InfFuture();
2161
- grpc_event_engine::experimental::EventEngine::TaskHandle ABSL_GUARDED_BY(
2162
- deadline_mu_) deadline_task_;
2163
- Slice final_message_;
2164
- grpc_status_code final_status_ = GRPC_STATUS_UNKNOWN;
2165
- grpc_completion_queue* cq_;
2166
- };
2167
-
2168
- void BasicPromiseBasedCall::UpdateDeadline(Timestamp deadline) {
2169
- MutexLock lock(&deadline_mu_);
2170
- if (grpc_call_trace.enabled()) {
2171
- gpr_log(GPR_DEBUG, "%s[call] UpdateDeadline from=%s to=%s",
2172
- DebugTag().c_str(), deadline_.ToString().c_str(),
2173
- deadline.ToString().c_str());
2174
- }
2175
- if (deadline >= deadline_) return;
2176
- auto* const event_engine = channel()->event_engine();
2177
- if (deadline_ != Timestamp::InfFuture()) {
2178
- if (!event_engine->Cancel(deadline_task_)) return;
2179
- } else {
2180
- InternalRef("deadline");
2181
- }
2182
- deadline_ = deadline;
2183
- deadline_task_ = event_engine->RunAfter(deadline - Timestamp::Now(), this);
2184
- }
2185
-
2186
- void BasicPromiseBasedCall::ResetDeadline() {
2187
- {
2188
- MutexLock lock(&deadline_mu_);
2189
- if (deadline_ == Timestamp::InfFuture()) return;
2190
- auto* const event_engine = channel()->event_engine();
2191
- if (!event_engine->Cancel(deadline_task_)) return;
2192
- deadline_ = Timestamp::InfFuture();
2193
- }
2194
- InternalUnref("deadline[reset]");
2195
- }
2196
-
2197
- void BasicPromiseBasedCall::Run() {
2198
- ApplicationCallbackExecCtx callback_exec_ctx;
2199
- ExecCtx exec_ctx;
2200
- CancelWithError(absl::DeadlineExceededError("Deadline exceeded"));
2201
- InternalUnref("deadline[run]");
2202
- }
2203
-
2204
- class PromiseBasedCall : public BasicPromiseBasedCall {
2205
- public:
2206
- PromiseBasedCall(Arena* arena, uint32_t initial_external_refs,
2207
- const grpc_call_create_args& args);
2208
-
2209
- bool Completed() final { return finished_.IsSet(); }
2210
-
2211
- bool failed_before_recv_message() const final {
2212
- return failed_before_recv_message_.load(std::memory_order_relaxed);
2213
- }
2214
-
2215
- using Call::arena;
2216
-
2217
- protected:
2218
- class ScopedContext : public BasicPromiseBasedCall::ScopedContext,
2219
- public BatchBuilder,
2220
- public promise_detail::Context<BatchBuilder> {
2221
- public:
2222
- explicit ScopedContext(PromiseBasedCall* call)
2223
- : BasicPromiseBasedCall::ScopedContext(call),
2224
- BatchBuilder(&call->batch_payload_),
2225
- promise_detail::Context<BatchBuilder>(this) {}
2226
- };
2227
-
2228
- class Completion {
2229
- public:
2230
- Completion() : index_(kNullIndex) {}
2231
- ~Completion() { GPR_ASSERT(index_ == kNullIndex); }
2232
- explicit Completion(uint8_t index) : index_(index) {}
2233
- Completion(const Completion& other) = delete;
2234
- Completion& operator=(const Completion& other) = delete;
2235
- Completion(Completion&& other) noexcept : index_(other.index_) {
2236
- other.index_ = kNullIndex;
2237
- }
2238
- Completion& operator=(Completion&& other) noexcept {
2239
- GPR_ASSERT(index_ == kNullIndex);
2240
- index_ = other.index_;
2241
- other.index_ = kNullIndex;
2242
- return *this;
2243
- }
2244
-
2245
- uint8_t index() const { return index_; }
2246
- uint8_t TakeIndex() { return std::exchange(index_, kNullIndex); }
2247
- bool has_value() const { return index_ != kNullIndex; }
2248
-
2249
- private:
2250
- enum : uint8_t { kNullIndex = 0xff };
2251
- uint8_t index_;
2252
- };
2253
-
2254
- // Enumerates why a Completion is still pending
2255
- enum class PendingOp {
2256
- // We're in the midst of starting a batch of operations
2257
- kStartingBatch = 0,
2258
- // The following correspond with the batch operations from above
2259
- kSendInitialMetadata,
2260
- kReceiveInitialMetadata,
2261
- kReceiveStatusOnClient,
2262
- kReceiveCloseOnServer = kReceiveStatusOnClient,
2263
- kSendMessage,
2264
- kReceiveMessage,
2265
- kSendStatusFromServer,
2266
- kSendCloseFromClient = kSendStatusFromServer,
2267
- };
2268
-
2269
- bool RunParty() override {
2270
- ScopedContext ctx(this);
2271
- return Party::RunParty();
2272
- }
2273
-
2274
- const char* PendingOpString(PendingOp reason) const {
2275
- switch (reason) {
2276
- case PendingOp::kStartingBatch:
2277
- return "StartingBatch";
2278
- case PendingOp::kSendInitialMetadata:
2279
- return "SendInitialMetadata";
2280
- case PendingOp::kReceiveInitialMetadata:
2281
- return "ReceiveInitialMetadata";
2282
- case PendingOp::kReceiveStatusOnClient:
2283
- return is_client() ? "ReceiveStatusOnClient" : "ReceiveCloseOnServer";
2284
- case PendingOp::kSendMessage:
2285
- return "SendMessage";
2286
- case PendingOp::kReceiveMessage:
2287
- return "ReceiveMessage";
2288
- case PendingOp::kSendStatusFromServer:
2289
- return is_client() ? "SendCloseFromClient" : "SendStatusFromServer";
2290
- }
2291
- return "Unknown";
2292
- }
2293
-
2294
- static constexpr uint32_t PendingOpBit(PendingOp reason) {
2295
- return 1 << static_cast<int>(reason);
2296
- }
2297
-
2298
- // Begin work on a completion, recording the tag/closure to notify.
2299
- // Use the op selected in \a ops to determine the index to allocate into.
2300
- // Starts the "StartingBatch" PendingOp immediately.
2301
- // Assumes at least one operation in \a ops.
2302
- Completion StartCompletion(void* tag, bool is_closure, const grpc_op* ops);
2303
- // Add one pending op to the completion, and return it.
2304
- Completion AddOpToCompletion(const Completion& completion, PendingOp reason);
2305
- // Stringify a completion
2306
- std::string CompletionString(const Completion& completion) const {
2307
- return completion.has_value()
2308
- ? completion_info_[completion.index()].pending.ToString(this)
2309
- : "no-completion";
2310
- }
2311
- // Finish one op on the completion. Must have been previously been added.
2312
- // The completion as a whole finishes when all pending ops finish.
2313
- void FinishOpOnCompletion(Completion* completion, PendingOp reason);
2314
- // Mark the completion as failed. Does not finish it.
2315
- void FailCompletion(const Completion& completion,
2316
- SourceLocation source_location = {});
2317
- // Mark the completion as infallible. Overrides FailCompletion to report
2318
- // success always.
2319
- void ForceCompletionSuccess(const Completion& completion);
2320
-
2321
- std::string PresentAndCompletionText(const char* caption, bool has,
2322
- const Completion& completion) const {
2323
- if (has) {
2324
- if (completion.has_value()) {
2325
- return absl::StrCat(caption, ":", CompletionString(completion), " ");
2326
- } else {
2327
- return absl::StrCat(caption,
2328
- ":!!BUG:operation is present, no completion!! ");
2329
- }
2330
- } else {
2331
- if (!completion.has_value()) {
2332
- return "";
2333
- } else {
2334
- return absl::StrCat(caption, ":no-op:", CompletionString(completion),
2335
- " ");
2336
- }
2337
- }
2338
- }
2339
-
2340
- // Spawn a job that will first do FirstPromise then receive a message
2341
- template <typename FirstPromise>
2342
- void StartRecvMessage(const grpc_op& op, const Completion& completion,
2343
- FirstPromise first,
2344
- PipeReceiver<MessageHandle>* receiver,
2345
- bool cancel_on_error, Party::BulkSpawner& spawner);
2346
- void StartSendMessage(const grpc_op& op, const Completion& completion,
2347
- PipeSender<MessageHandle>* sender,
2348
- Party::BulkSpawner& spawner);
2349
-
2350
- void set_completed() { finished_.Set(); }
2351
-
2352
- // Returns a promise that resolves to Empty whenever the call is completed.
2353
- auto finished() { return finished_.Wait(); }
2354
-
2355
- // Returns a promise that resolves to Empty whenever there is no outstanding
2356
- // send operation
2357
- auto WaitForSendingStarted() {
2358
- return [this]() -> Poll<Empty> {
2359
- int n = sends_queued_.load(std::memory_order_relaxed);
2360
- if (grpc_call_trace.enabled()) {
2361
- gpr_log(GPR_DEBUG, "%s[call] WaitForSendingStarted n=%d",
2362
- DebugTag().c_str(), n);
2363
- }
2364
- if (n != 0) return waiting_for_queued_sends_.pending();
2365
- return Empty{};
2366
- };
2367
- }
2368
-
2369
- // Mark that a send has been queued - blocks sending trailing metadata.
2370
- void QueueSend() {
2371
- if (grpc_call_trace.enabled()) {
2372
- gpr_log(GPR_DEBUG, "%s[call] QueueSend", DebugTag().c_str());
2373
- }
2374
- sends_queued_.fetch_add(1, std::memory_order_relaxed);
2375
- }
2376
- // Mark that a send has been dequeued - allows sending trailing metadata once
2377
- // zero sends are queued.
2378
- void EnactSend() {
2379
- if (grpc_call_trace.enabled()) {
2380
- gpr_log(GPR_DEBUG, "%s[call] EnactSend", DebugTag().c_str());
2381
- }
2382
- if (1 == sends_queued_.fetch_sub(1, std::memory_order_relaxed)) {
2383
- waiting_for_queued_sends_.Wake();
2384
- }
2385
- }
2386
-
2387
- void set_failed_before_recv_message() {
2388
- failed_before_recv_message_.store(true, std::memory_order_relaxed);
2389
- }
2390
-
2391
- private:
2392
- union CompletionInfo {
2393
- static constexpr uint32_t kOpFailed = 0x8000'0000u;
2394
- static constexpr uint32_t kOpForceSuccess = 0x4000'0000u;
2395
- CompletionInfo() {}
2396
- enum CompletionState {
2397
- kPending,
2398
- kSuccess,
2399
- kFailure,
2400
- };
2401
- struct Pending {
2402
- // Bitmask of PendingOps at the bottom, and kOpFailed, kOpForceSuccess at
2403
- // the top.
2404
- std::atomic<uint32_t> state;
2405
- bool is_closure;
2406
- // True if this completion was for a recv_message op.
2407
- // In that case if the completion as a whole fails we need to cleanup the
2408
- // returned message.
2409
- bool is_recv_message;
2410
- void* tag;
2411
-
2412
- void Start(bool is_closure, void* tag) {
2413
- this->is_closure = is_closure;
2414
- this->is_recv_message = false;
2415
- this->tag = tag;
2416
- state.store(PendingOpBit(PendingOp::kStartingBatch),
2417
- std::memory_order_release);
2418
- }
2419
-
2420
- void AddPendingBit(PendingOp reason) {
2421
- if (reason == PendingOp::kReceiveMessage) is_recv_message = true;
2422
- auto prev =
2423
- state.fetch_or(PendingOpBit(reason), std::memory_order_relaxed);
2424
- GPR_ASSERT((prev & PendingOpBit(reason)) == 0);
2425
- }
2426
-
2427
- CompletionState RemovePendingBit(PendingOp reason) {
2428
- const uint32_t mask = ~PendingOpBit(reason);
2429
- auto prev = state.fetch_and(mask, std::memory_order_acq_rel);
2430
- GPR_ASSERT((prev & PendingOpBit(reason)) != 0);
2431
- switch (prev & mask) {
2432
- case kOpFailed:
2433
- return kFailure;
2434
- case kOpFailed | kOpForceSuccess:
2435
- case kOpForceSuccess:
2436
- case 0:
2437
- return kSuccess;
2438
- default:
2439
- return kPending;
2440
- }
2441
- }
2442
-
2443
- void MarkFailed() {
2444
- state.fetch_or(kOpFailed, std::memory_order_relaxed);
2445
- }
2446
-
2447
- void MarkForceSuccess() {
2448
- state.fetch_or(kOpForceSuccess, std::memory_order_relaxed);
2449
- }
2450
-
2451
- std::string ToString(const PromiseBasedCall* call) const {
2452
- auto state = this->state.load(std::memory_order_relaxed);
2453
- std::vector<absl::string_view> pending_ops;
2454
- for (size_t i = 0; i < 24; i++) {
2455
- if (state & (1u << i)) {
2456
- pending_ops.push_back(
2457
- call->PendingOpString(static_cast<PendingOp>(i)));
2458
- }
2459
- }
2460
- return absl::StrFormat("{%s}%s:tag=%p", absl::StrJoin(pending_ops, ","),
2461
- (state & kOpForceSuccess) ? ":force-success"
2462
- : (state & kOpFailed) ? ":failed"
2463
- : ":success",
2464
- tag);
2465
- }
2466
- } pending;
2467
- grpc_cq_completion completion;
2468
- };
2469
-
2470
- CompletionInfo completion_info_[6];
2471
- ExternallyObservableLatch<void> finished_;
2472
- // Non-zero with an outstanding GRPC_OP_SEND_INITIAL_METADATA or
2473
- // GRPC_OP_SEND_MESSAGE (one count each), and 0 once those payloads have been
2474
- // pushed onto the outgoing pipe.
2475
- std::atomic<uint8_t> sends_queued_{0};
2476
- std::atomic<bool> failed_before_recv_message_{false};
2477
- // Waiter for when sends_queued_ becomes 0.
2478
- IntraActivityWaiter waiting_for_queued_sends_;
2479
- grpc_byte_buffer** recv_message_ = nullptr;
2480
- grpc_transport_stream_op_batch_payload batch_payload_{context()};
2481
- };
2482
-
2483
- template <typename T>
2484
- grpc_error_handle MakePromiseBasedCall(grpc_call_create_args* args,
2485
- grpc_call** out_call) {
2486
- Channel* channel = args->channel.get();
2487
-
2488
- auto* arena = channel->CreateArena();
2489
- PromiseBasedCall* call = arena->New<T>(arena, args);
2490
- *out_call = call->c_ptr();
2491
- GPR_DEBUG_ASSERT(Call::FromC(*out_call) == call);
2492
- return absl::OkStatus();
2493
- }
2494
-
2495
- PromiseBasedCall::PromiseBasedCall(Arena* arena, uint32_t initial_external_refs,
2496
- const grpc_call_create_args& args)
2497
- : BasicPromiseBasedCall(arena, initial_external_refs,
2498
- initial_external_refs != 0 ? 1 : 0, args) {}
2499
-
2500
- static void CToMetadata(grpc_metadata* metadata, size_t count,
2501
- grpc_metadata_batch* b) {
2502
- for (size_t i = 0; i < count; i++) {
2503
- grpc_metadata* md = &metadata[i];
2504
- auto key = StringViewFromSlice(md->key);
2505
- // Filter "content-length metadata"
2506
- if (key == "content-length") continue;
2507
- b->Append(key, Slice(CSliceRef(md->value)),
2508
- [md](absl::string_view error, const Slice& value) {
2509
- gpr_log(GPR_DEBUG, "Append error: %s",
2510
- absl::StrCat("key=", StringViewFromSlice(md->key),
2511
- " error=", error,
2512
- " value=", value.as_string_view())
2513
- .c_str());
2514
- });
2515
- }
2516
- }
2517
-
2518
- PromiseBasedCall::Completion PromiseBasedCall::StartCompletion(
2519
- void* tag, bool is_closure, const grpc_op* ops) {
2520
- Completion c(BatchSlotForOp(ops[0].op));
2521
- if (!is_closure) {
2522
- grpc_cq_begin_op(cq(), tag);
2523
- }
2524
- completion_info_[c.index()].pending.Start(is_closure, tag);
2525
- if (grpc_call_trace.enabled()) {
2526
- gpr_log(GPR_INFO, "%s[call] StartCompletion %s", DebugTag().c_str(),
2527
- CompletionString(c).c_str());
2528
- }
2529
- return c;
2530
- }
2531
-
2532
- PromiseBasedCall::Completion PromiseBasedCall::AddOpToCompletion(
2533
- const Completion& completion, PendingOp reason) {
2534
- if (grpc_call_trace.enabled()) {
2535
- gpr_log(GPR_INFO, "%s[call] AddOpToCompletion %s %s", DebugTag().c_str(),
2536
- CompletionString(completion).c_str(), PendingOpString(reason));
2537
- }
2538
- GPR_ASSERT(completion.has_value());
2539
- completion_info_[completion.index()].pending.AddPendingBit(reason);
2540
- return Completion(completion.index());
2541
- }
2542
-
2543
- void PromiseBasedCall::FailCompletion(const Completion& completion,
2544
- SourceLocation location) {
2545
- if (grpc_call_trace.enabled()) {
2546
- gpr_log(location.file(), location.line(), GPR_LOG_SEVERITY_ERROR,
2547
- "%s[call] FailCompletion %s", DebugTag().c_str(),
2548
- CompletionString(completion).c_str());
2549
- }
2550
- completion_info_[completion.index()].pending.MarkFailed();
2551
- }
2552
-
2553
- void PromiseBasedCall::ForceCompletionSuccess(const Completion& completion) {
2554
- completion_info_[completion.index()].pending.MarkForceSuccess();
2555
- }
2556
-
2557
- void PromiseBasedCall::FinishOpOnCompletion(Completion* completion,
2558
- PendingOp reason) {
2559
- if (grpc_call_trace.enabled()) {
2560
- gpr_log(GPR_INFO, "%s[call] FinishOpOnCompletion completion:%s finish:%s",
2561
- DebugTag().c_str(), CompletionString(*completion).c_str(),
2562
- PendingOpString(reason));
2563
- }
2564
- const uint8_t i = completion->TakeIndex();
2565
- GPR_ASSERT(i < GPR_ARRAY_SIZE(completion_info_));
2566
- CompletionInfo::Pending& pending = completion_info_[i].pending;
2567
- bool success;
2568
- switch (pending.RemovePendingBit(reason)) {
2569
- case CompletionInfo::kPending:
2570
- return; // Early out
2571
- case CompletionInfo::kSuccess:
2572
- success = true;
2573
- break;
2574
- case CompletionInfo::kFailure:
2575
- success = false;
2576
- break;
2577
- }
2578
- if (pending.is_recv_message && !success && *recv_message_ != nullptr) {
2579
- grpc_byte_buffer_destroy(*recv_message_);
2580
- *recv_message_ = nullptr;
2581
- }
2582
- auto error = success ? absl::OkStatus() : absl::CancelledError();
2583
- if (pending.is_closure) {
2584
- ExecCtx::Run(DEBUG_LOCATION, static_cast<grpc_closure*>(pending.tag),
2585
- error);
2586
- } else {
2587
- InternalRef("cq_end_op");
2588
- grpc_cq_end_op(
2589
- cq(), pending.tag, error,
2590
- [](void* p, grpc_cq_completion*) {
2591
- static_cast<PromiseBasedCall*>(p)->InternalUnref("cq_end_op");
2592
- },
2593
- this, &completion_info_[i].completion);
2594
- }
2595
- }
2596
-
2597
- void PromiseBasedCall::StartSendMessage(const grpc_op& op,
2598
- const Completion& completion,
2599
- PipeSender<MessageHandle>* sender,
2600
- Party::BulkSpawner& spawner) {
2601
- QueueSend();
2602
- SliceBuffer send;
2603
- grpc_slice_buffer_swap(
2604
- &op.data.send_message.send_message->data.raw.slice_buffer,
2605
- send.c_slice_buffer());
2606
- auto msg = arena()->MakePooled<Message>(std::move(send), op.flags);
2607
- spawner.Spawn(
2608
- "call_send_message",
2609
- [this, sender, msg = std::move(msg)]() mutable {
2610
- EnactSend();
2611
- return sender->Push(std::move(msg));
2612
- },
2613
- [this, completion = AddOpToCompletion(
2614
- completion, PendingOp::kSendMessage)](bool result) mutable {
2615
- if (grpc_call_trace.enabled()) {
2616
- gpr_log(GPR_DEBUG, "%sSendMessage completes %s", DebugTag().c_str(),
2617
- result ? "successfully" : "with failure");
2618
- }
2619
- if (!result) FailCompletion(completion);
2620
- FinishOpOnCompletion(&completion, PendingOp::kSendMessage);
2621
- });
2622
- }
2623
-
2624
- template <typename FirstPromiseFactory>
2625
- void PromiseBasedCall::StartRecvMessage(
2626
- const grpc_op& op, const Completion& completion,
2627
- FirstPromiseFactory first_promise_factory,
2628
- PipeReceiver<MessageHandle>* receiver, bool cancel_on_error,
2629
- Party::BulkSpawner& spawner) {
2630
- if (grpc_call_trace.enabled()) {
2631
- gpr_log(GPR_INFO, "%s[call] Start RecvMessage: %s", DebugTag().c_str(),
2632
- CompletionString(completion).c_str());
2633
- }
2634
- recv_message_ = op.data.recv_message.recv_message;
2635
- spawner.Spawn(
2636
- "call_recv_message",
2637
- [first_promise_factory = std::move(first_promise_factory), receiver]() {
2638
- return Seq(first_promise_factory(), receiver->Next());
2639
- },
2640
- [this, cancel_on_error,
2641
- completion = AddOpToCompletion(completion, PendingOp::kReceiveMessage)](
2642
- NextResult<MessageHandle> result) mutable {
2643
- if (result.has_value()) {
2644
- MessageHandle& message = *result;
2645
- NoteLastMessageFlags(message->flags());
2646
- if ((message->flags() & GRPC_WRITE_INTERNAL_COMPRESS) &&
2647
- (incoming_compression_algorithm() != GRPC_COMPRESS_NONE)) {
2648
- *recv_message_ = grpc_raw_compressed_byte_buffer_create(
2649
- nullptr, 0, incoming_compression_algorithm());
2650
- } else {
2651
- *recv_message_ = grpc_raw_byte_buffer_create(nullptr, 0);
2652
- }
2653
- grpc_slice_buffer_move_into(message->payload()->c_slice_buffer(),
2654
- &(*recv_message_)->data.raw.slice_buffer);
2655
- if (grpc_call_trace.enabled()) {
2656
- gpr_log(GPR_INFO,
2657
- "%s[call] RecvMessage: outstanding_recv "
2658
- "finishes: received %" PRIdPTR " byte message",
2659
- DebugTag().c_str(),
2660
- (*recv_message_)->data.raw.slice_buffer.length);
2661
- }
2662
- } else if (result.cancelled()) {
2663
- if (grpc_call_trace.enabled()) {
2664
- gpr_log(GPR_INFO,
2665
- "%s[call] RecvMessage: outstanding_recv "
2666
- "finishes: received end-of-stream with error",
2667
- DebugTag().c_str());
2668
- }
2669
- set_failed_before_recv_message();
2670
- FailCompletion(completion);
2671
- if (cancel_on_error) CancelWithError(absl::CancelledError());
2672
- *recv_message_ = nullptr;
2673
- } else {
2674
- if (grpc_call_trace.enabled()) {
2675
- gpr_log(GPR_INFO,
2676
- "%s[call] RecvMessage: outstanding_recv "
2677
- "finishes: received end-of-stream",
2678
- DebugTag().c_str());
2679
- }
2680
- *recv_message_ = nullptr;
2681
- }
2682
- FinishOpOnCompletion(&completion, PendingOp::kReceiveMessage);
2683
- });
2684
- }
2685
-
2686
- ///////////////////////////////////////////////////////////////////////////////
2687
- // CallContext
2688
-
2689
- void CallContext::RunInContext(absl::AnyInvocable<void()> fn) {
2690
- call_->RunInContext(std::move(fn));
2691
- }
2692
-
2693
- void CallContext::IncrementRefCount(const char* reason) {
2694
- call_->InternalRef(reason);
2695
- }
2696
-
2697
- void CallContext::Unref(const char* reason) { call_->InternalUnref(reason); }
2698
-
2699
- void CallContext::UpdateDeadline(Timestamp deadline) {
2700
- call_->UpdateDeadline(deadline);
2701
- }
2702
-
2703
- Timestamp CallContext::deadline() const { return call_->deadline(); }
2704
-
2705
- ServerCallContext* CallContext::server_call_context() {
2706
- return call_->server_call_context();
2707
- }
2708
-
2709
- RefCountedPtr<CallSpineInterface> CallContext::MakeCallSpine(
2710
- CallArgs call_args) {
2711
- return call_->MakeCallSpine(std::move(call_args));
2712
- }
2713
-
2714
- grpc_call* CallContext::c_call() { return call_->c_ptr(); }
2715
-
2716
- ///////////////////////////////////////////////////////////////////////////////
2717
- // PublishMetadataArray
2718
-
2719
- namespace {
2720
- void PublishMetadataArray(grpc_metadata_batch* md, grpc_metadata_array* array,
2721
- bool is_client) {
2722
- const auto md_count = md->count();
2723
- if (md_count > array->capacity) {
2724
- array->capacity =
2725
- std::max(array->capacity + md->count(), array->capacity * 3 / 2);
2726
- array->metadata = static_cast<grpc_metadata*>(
2727
- gpr_realloc(array->metadata, sizeof(grpc_metadata) * array->capacity));
2728
- }
2729
- PublishToAppEncoder encoder(array, md, is_client);
2730
- md->Encode(&encoder);
2731
- }
2732
- } // namespace
2733
-
2734
- ///////////////////////////////////////////////////////////////////////////////
2735
- // ClientPromiseBasedCall
2736
-
2737
- #ifdef GRPC_EXPERIMENT_IS_INCLUDED_PROMISE_BASED_CLIENT_CALL
2738
- class ClientPromiseBasedCall final : public PromiseBasedCall {
2739
- public:
2740
- ClientPromiseBasedCall(Arena* arena, grpc_call_create_args* args)
2741
- : PromiseBasedCall(arena, 1, *args),
2742
- polling_entity_(
2743
- args->cq != nullptr
2744
- ? grpc_polling_entity_create_from_pollset(
2745
- grpc_cq_pollset(args->cq))
2746
- : (args->pollset_set_alternative != nullptr
2747
- ? grpc_polling_entity_create_from_pollset_set(
2748
- args->pollset_set_alternative)
2749
- : grpc_polling_entity{})) {
2750
- global_stats().IncrementClientCallsCreated();
2751
- if (args->cq != nullptr) {
2752
- GPR_ASSERT(args->pollset_set_alternative == nullptr &&
2753
- "Only one of 'cq' and 'pollset_set_alternative' should be "
2754
- "non-nullptr.");
2755
- }
2756
- ScopedContext context(this);
2757
- send_initial_metadata_ =
2758
- GetContext<Arena>()->MakePooled<ClientMetadata>(GetContext<Arena>());
2759
- send_initial_metadata_->Set(HttpPathMetadata(), std::move(*args->path));
2760
- if (args->authority.has_value()) {
2761
- send_initial_metadata_->Set(HttpAuthorityMetadata(),
2762
- std::move(*args->authority));
2763
- }
2764
- send_initial_metadata_->Set(GrpcRegisteredMethod(),
2765
- reinterpret_cast<void*>(static_cast<uintptr_t>(
2766
- args->registered_method)));
2767
- if (auto* channelz_channel = channel()->channelz_node()) {
2768
- channelz_channel->RecordCallStarted();
2769
- }
2770
- if (args->send_deadline != Timestamp::InfFuture()) {
2771
- UpdateDeadline(args->send_deadline);
2772
- }
2773
- Call* parent = Call::FromC(args->parent);
2774
- if (parent != nullptr) {
2775
- auto parent_status = InitParent(parent, args->propagation_mask);
2776
- if (!parent_status.ok()) {
2777
- CancelWithError(std::move(parent_status));
2778
- }
2779
- PublishToParent(parent);
2780
- }
2781
- }
2782
-
2783
- void OrphanCall() override { MaybeUnpublishFromParent(); }
2784
-
2785
- ~ClientPromiseBasedCall() override {
2786
- ScopedContext context(this);
2787
- send_initial_metadata_.reset();
2788
- // Need to destroy the pipes under the ScopedContext above, so we
2789
- // move them out here and then allow the destructors to run at
2790
- // end of scope, but before context.
2791
- auto c2s = std::move(client_to_server_messages_);
2792
- auto s2c = std::move(server_to_client_messages_);
2793
- auto sim = std::move(server_initial_metadata_);
2794
- }
2795
-
2796
- void CancelWithError(absl::Status error) override {
2797
- if (cancel_with_error_called_.exchange(true, std::memory_order_relaxed)) {
2798
- return;
2799
- }
2800
- if (!started_.exchange(true, std::memory_order_relaxed)) {
2801
- // Initial metadata not sent yet, so we can just fail the call.
2802
- Spawn(
2803
- "cancel_before_initial_metadata",
2804
- [error = std::move(error), this]() {
2805
- server_to_client_messages_.sender.Close();
2806
- auto md = ServerMetadataFromStatus(error);
2807
- md->Set(GrpcCallWasCancelled(), true);
2808
- Finish(std::move(md));
2809
- return Empty{};
2810
- },
2811
- [](Empty) {});
2812
- } else {
2813
- Spawn(
2814
- "cancel_with_error",
2815
- [error = std::move(error), this]() {
2816
- if (!cancel_error_.is_set()) {
2817
- auto md = ServerMetadataFromStatus(error);
2818
- md->Set(GrpcCallWasCancelled(), true);
2819
- cancel_error_.Set(std::move(md));
2820
- }
2821
- return Empty{};
2822
- },
2823
- [](Empty) {});
2824
- }
2825
- }
2826
- absl::string_view GetServerAuthority() const override { abort(); }
2827
- bool is_trailers_only() const override { return is_trailers_only_; }
2828
-
2829
- grpc_call_error StartBatch(const grpc_op* ops, size_t nops, void* notify_tag,
2830
- bool is_notify_tag_closure) override;
2831
-
2832
- std::string DebugTag() const override {
2833
- return absl::StrFormat("CLIENT_CALL[%p]: ", this);
2834
- }
2835
-
2836
- RefCountedPtr<CallSpineInterface> MakeCallSpine(CallArgs call_args) final {
2837
- class WrappingCallSpine final : public CallSpineInterface {
2838
- public:
2839
- WrappingCallSpine(ClientPromiseBasedCall* call,
2840
- ClientMetadataHandle metadata)
2841
- : call_(call) {
2842
- call_->InternalRef("call-spine");
2843
- SpawnInfallible(
2844
- "send_client_initial_metadata",
2845
- [self = Ref(), metadata = std::move(metadata)]() mutable {
2846
- return Map(self->client_initial_metadata_.sender.Push(
2847
- std::move(metadata)),
2848
- [self](bool) { return Empty{}; });
2849
- });
2850
- }
2851
-
2852
- ~WrappingCallSpine() override {
2853
- {
2854
- ScopedContext context(call_);
2855
- // Move these out and destroy before the internal unref.
2856
- auto client_initial_metadata = std::move(client_initial_metadata_);
2857
- auto server_trailing_metadata = std::move(server_trailing_metadata_);
2858
- }
2859
- call_->InternalUnref("call-spine");
2860
- }
2861
-
2862
- Pipe<ClientMetadataHandle>& client_initial_metadata() override {
2863
- return client_initial_metadata_;
2864
- }
2865
-
2866
- Pipe<MessageHandle>& client_to_server_messages() override {
2867
- return call_->client_to_server_messages_;
2868
- }
2869
-
2870
- Pipe<ServerMetadataHandle>& server_initial_metadata() override {
2871
- return call_->server_initial_metadata_;
2872
- }
2873
-
2874
- Pipe<MessageHandle>& server_to_client_messages() override {
2875
- return call_->server_to_client_messages_;
2876
- }
2877
-
2878
- Pipe<ServerMetadataHandle>& server_trailing_metadata() override {
2879
- return server_trailing_metadata_;
2880
- }
2881
-
2882
- Latch<ServerMetadataHandle>& cancel_latch() override {
2883
- return cancel_error_;
2884
- }
2885
-
2886
- Party& party() override { return *call_; }
2887
-
2888
- void IncrementRefCount() override { refs_.Ref(); }
2889
- void Unref() override {
2890
- if (refs_.Unref()) delete this;
2891
- }
2892
- RefCountedPtr<WrappingCallSpine> Ref() {
2893
- IncrementRefCount();
2894
- return RefCountedPtr<WrappingCallSpine>(this);
2895
- }
2896
-
2897
- private:
2898
- RefCount refs_;
2899
- ClientPromiseBasedCall* const call_;
2900
- std::atomic<bool> sent_trailing_metadata_{false};
2901
- Pipe<ClientMetadataHandle> client_initial_metadata_{call_->arena()};
2902
- Pipe<ServerMetadataHandle> server_trailing_metadata_{call_->arena()};
2903
- Latch<ServerMetadataHandle> cancel_error_;
2904
- };
2905
- GPR_ASSERT(call_args.server_initial_metadata ==
2906
- &server_initial_metadata_.sender);
2907
- GPR_ASSERT(call_args.client_to_server_messages ==
2908
- &client_to_server_messages_.receiver);
2909
- GPR_ASSERT(call_args.server_to_client_messages ==
2910
- &server_to_client_messages_.sender);
2911
- call_args.client_initial_metadata_outstanding.Complete(true);
2912
- return MakeRefCounted<WrappingCallSpine>(
2913
- this, std::move(call_args.client_initial_metadata));
2914
- }
2915
-
2916
- private:
2917
- // Finish the call with the given status/trailing metadata.
2918
- void Finish(ServerMetadataHandle trailing_metadata);
2919
- // Validate that a set of ops is valid for a client call.
2920
- grpc_call_error ValidateBatch(const grpc_op* ops, size_t nops) const;
2921
- // Commit a valid batch of operations to be executed.
2922
- void CommitBatch(const grpc_op* ops, size_t nops,
2923
- const Completion& completion);
2924
- // Start the underlying promise.
2925
- void StartPromise(ClientMetadataHandle client_initial_metadata,
2926
- const Completion& completion, Party::BulkSpawner& spawner);
2927
- // Start receiving initial metadata
2928
- void StartRecvInitialMetadata(grpc_metadata_array* array,
2929
- const Completion& completion,
2930
- Party::BulkSpawner& spawner);
2931
- void StartRecvStatusOnClient(
2932
- const Completion& completion,
2933
- grpc_op::grpc_op_data::grpc_op_recv_status_on_client op_args,
2934
- Party::BulkSpawner& spawner);
2935
- // Publish status out to the application.
2936
- void PublishStatus(
2937
- grpc_op::grpc_op_data::grpc_op_recv_status_on_client op_args,
2938
- ServerMetadataHandle trailing_metadata);
2939
- // Publish server initial metadata out to the application.
2940
- void PublishInitialMetadata(ServerMetadata* metadata);
2941
-
2942
- ClientMetadataHandle send_initial_metadata_;
2943
- Pipe<ServerMetadataHandle> server_initial_metadata_{arena()};
2944
- Latch<ServerMetadataHandle> server_trailing_metadata_;
2945
- Latch<ServerMetadataHandle> cancel_error_;
2946
- Latch<grpc_polling_entity> polling_entity_;
2947
- Pipe<MessageHandle> client_to_server_messages_{arena()};
2948
- Pipe<MessageHandle> server_to_client_messages_{arena()};
2949
- bool is_trailers_only_ = false;
2950
- bool scheduled_receive_status_ = false;
2951
- bool scheduled_send_close_ = false;
2952
- // True once the promise for the call is started.
2953
- // This corresponds to sending initial metadata, or cancelling before doing
2954
- // so.
2955
- // In the latter case real world code sometimes does not sent the initial
2956
- // metadata, and so gating based upon that does not work out.
2957
- std::atomic<bool> started_{false};
2958
- // True after the first CancelWithError call - prevents spamming cancels from
2959
- // overflowing the party.
2960
- std::atomic<bool> cancel_with_error_called_{false};
2961
- // TODO(ctiller): delete when we remove the filter based API (may require some
2962
- // cleanup in wrapped languages: they depend on this to hold slice refs)
2963
- ServerMetadataHandle recv_initial_metadata_;
2964
- ServerMetadataHandle recv_trailing_metadata_;
2965
- };
2966
-
2967
- void ClientPromiseBasedCall::StartPromise(
2968
- ClientMetadataHandle client_initial_metadata, const Completion& completion,
2969
- Party::BulkSpawner& spawner) {
2970
- auto token = ClientInitialMetadataOutstandingToken::New(arena());
2971
- spawner.Spawn(
2972
- "call_send_initial_metadata", token.Wait(),
2973
- [this,
2974
- completion = AddOpToCompletion(
2975
- completion, PendingOp::kSendInitialMetadata)](bool result) mutable {
2976
- if (!result) FailCompletion(completion);
2977
- FinishOpOnCompletion(&completion, PendingOp::kSendInitialMetadata);
2978
- });
2979
- spawner.Spawn(
2980
- "client_promise",
2981
- [this, client_initial_metadata = std::move(client_initial_metadata),
2982
- token = std::move(token)]() mutable {
2983
- return Race(
2984
- cancel_error_.Wait(),
2985
- Map(channel()->channel_stack()->MakeClientCallPromise(CallArgs{
2986
- std::move(client_initial_metadata), std::move(token),
2987
- &polling_entity_, &server_initial_metadata_.sender,
2988
- &client_to_server_messages_.receiver,
2989
- &server_to_client_messages_.sender}),
2990
- [this](ServerMetadataHandle trailing_metadata) {
2991
- // If we're cancelled the transport doesn't get to return
2992
- // stats.
2993
- AcceptTransportStatsFromContext();
2994
- return trailing_metadata;
2995
- }));
2996
- },
2997
- [this](ServerMetadataHandle trailing_metadata) {
2998
- Finish(std::move(trailing_metadata));
2999
- });
3000
- }
3001
-
3002
- grpc_call_error ClientPromiseBasedCall::ValidateBatch(const grpc_op* ops,
3003
- size_t nops) const {
3004
- BitSet<8> got_ops;
3005
- for (size_t op_idx = 0; op_idx < nops; op_idx++) {
3006
- const grpc_op& op = ops[op_idx];
3007
- switch (op.op) {
3008
- case GRPC_OP_SEND_INITIAL_METADATA:
3009
- if (!AreInitialMetadataFlagsValid(op.flags)) {
3010
- return GRPC_CALL_ERROR_INVALID_FLAGS;
3011
- }
3012
- if (!ValidateMetadata(op.data.send_initial_metadata.count,
3013
- op.data.send_initial_metadata.metadata)) {
3014
- return GRPC_CALL_ERROR_INVALID_METADATA;
3015
- }
3016
- break;
3017
- case GRPC_OP_SEND_MESSAGE:
3018
- if (!AreWriteFlagsValid(op.flags)) {
3019
- return GRPC_CALL_ERROR_INVALID_FLAGS;
3020
- }
3021
- break;
3022
- case GRPC_OP_RECV_INITIAL_METADATA:
3023
- case GRPC_OP_RECV_MESSAGE:
3024
- if (op.flags != 0) return GRPC_CALL_ERROR_INVALID_FLAGS;
3025
- break;
3026
- case GRPC_OP_SEND_CLOSE_FROM_CLIENT:
3027
- if (scheduled_send_close_) return GRPC_CALL_ERROR_TOO_MANY_OPERATIONS;
3028
- if (op.flags != 0) return GRPC_CALL_ERROR_INVALID_FLAGS;
3029
- break;
3030
- case GRPC_OP_RECV_STATUS_ON_CLIENT:
3031
- if (op.flags != 0) return GRPC_CALL_ERROR_INVALID_FLAGS;
3032
- if (scheduled_receive_status_) {
3033
- return GRPC_CALL_ERROR_TOO_MANY_OPERATIONS;
3034
- }
3035
- break;
3036
- case GRPC_OP_RECV_CLOSE_ON_SERVER:
3037
- case GRPC_OP_SEND_STATUS_FROM_SERVER:
3038
- return GRPC_CALL_ERROR_NOT_ON_CLIENT;
3039
- }
3040
- if (got_ops.is_set(op.op)) {
3041
- return GRPC_CALL_ERROR_TOO_MANY_OPERATIONS;
3042
- }
3043
- got_ops.set(op.op);
3044
- }
3045
- return GRPC_CALL_OK;
3046
- }
3047
-
3048
- void ClientPromiseBasedCall::CommitBatch(const grpc_op* ops, size_t nops,
3049
- const Completion& completion) {
3050
- Party::BulkSpawner spawner(this);
3051
- for (size_t op_idx = 0; op_idx < nops; op_idx++) {
3052
- const grpc_op& op = ops[op_idx];
3053
- switch (op.op) {
3054
- case GRPC_OP_SEND_INITIAL_METADATA: {
3055
- if (started_.exchange(true, std::memory_order_relaxed)) break;
3056
- CToMetadata(op.data.send_initial_metadata.metadata,
3057
- op.data.send_initial_metadata.count,
3058
- send_initial_metadata_.get());
3059
- PrepareOutgoingInitialMetadata(op, *send_initial_metadata_);
3060
- if (send_deadline() != Timestamp::InfFuture()) {
3061
- send_initial_metadata_->Set(GrpcTimeoutMetadata(), send_deadline());
3062
- }
3063
- send_initial_metadata_->Set(
3064
- WaitForReady(),
3065
- WaitForReady::ValueType{
3066
- (op.flags & GRPC_INITIAL_METADATA_WAIT_FOR_READY) != 0,
3067
- (op.flags &
3068
- GRPC_INITIAL_METADATA_WAIT_FOR_READY_EXPLICITLY_SET) != 0});
3069
- StartPromise(std::move(send_initial_metadata_), completion, spawner);
3070
- } break;
3071
- case GRPC_OP_RECV_INITIAL_METADATA: {
3072
- StartRecvInitialMetadata(
3073
- op.data.recv_initial_metadata.recv_initial_metadata, completion,
3074
- spawner);
3075
- } break;
3076
- case GRPC_OP_RECV_STATUS_ON_CLIENT: {
3077
- scheduled_receive_status_ = true;
3078
- StartRecvStatusOnClient(completion, op.data.recv_status_on_client,
3079
- spawner);
3080
- } break;
3081
- case GRPC_OP_SEND_MESSAGE:
3082
- StartSendMessage(op, completion, &client_to_server_messages_.sender,
3083
- spawner);
3084
- break;
3085
- case GRPC_OP_RECV_MESSAGE:
3086
- StartRecvMessage(
3087
- op, completion,
3088
- [this]() {
3089
- return Race(server_initial_metadata_.receiver.AwaitClosed(),
3090
- server_to_client_messages_.receiver.AwaitClosed());
3091
- },
3092
- &server_to_client_messages_.receiver, false, spawner);
3093
- break;
3094
- case GRPC_OP_SEND_CLOSE_FROM_CLIENT:
3095
- scheduled_send_close_ = true;
3096
- spawner.Spawn(
3097
- "send_close_from_client",
3098
- [this]() {
3099
- client_to_server_messages_.sender.Close();
3100
- return Empty{};
3101
- },
3102
- [this,
3103
- completion = AddOpToCompletion(
3104
- completion, PendingOp::kSendCloseFromClient)](Empty) mutable {
3105
- FinishOpOnCompletion(&completion,
3106
- PendingOp::kSendCloseFromClient);
3107
- });
3108
- break;
3109
- case GRPC_OP_SEND_STATUS_FROM_SERVER:
3110
- case GRPC_OP_RECV_CLOSE_ON_SERVER:
3111
- abort(); // unreachable
3112
- }
3113
- }
3114
- }
3115
-
3116
- grpc_call_error ClientPromiseBasedCall::StartBatch(const grpc_op* ops,
3117
- size_t nops,
3118
- void* notify_tag,
3119
- bool is_notify_tag_closure) {
3120
- if (nops == 0) {
3121
- EndOpImmediately(cq(), notify_tag, is_notify_tag_closure);
3122
- return GRPC_CALL_OK;
3123
- }
3124
- const grpc_call_error validation_result = ValidateBatch(ops, nops);
3125
- if (validation_result != GRPC_CALL_OK) {
3126
- return validation_result;
3127
- }
3128
- Completion completion =
3129
- StartCompletion(notify_tag, is_notify_tag_closure, ops);
3130
- CommitBatch(ops, nops, completion);
3131
- FinishOpOnCompletion(&completion, PendingOp::kStartingBatch);
3132
- return GRPC_CALL_OK;
3133
- }
3134
-
3135
- void ClientPromiseBasedCall::StartRecvInitialMetadata(
3136
- grpc_metadata_array* array, const Completion& completion,
3137
- Party::BulkSpawner& spawner) {
3138
- spawner.Spawn(
3139
- "recv_initial_metadata",
3140
- [this]() {
3141
- return Race(server_initial_metadata_.receiver.Next(),
3142
- Map(finished(), [](Empty) {
3143
- return NextResult<ServerMetadataHandle>(true);
3144
- }));
3145
- },
3146
- [this, array,
3147
- completion =
3148
- AddOpToCompletion(completion, PendingOp::kReceiveInitialMetadata)](
3149
- NextResult<ServerMetadataHandle> next_metadata) mutable {
3150
- server_initial_metadata_.sender.Close();
3151
- ServerMetadataHandle metadata;
3152
- if (grpc_call_trace.enabled()) {
3153
- gpr_log(GPR_INFO, "%s[call] RecvTrailingMetadata: %s",
3154
- DebugTag().c_str(),
3155
- next_metadata.has_value()
3156
- ? next_metadata.value()->DebugString().c_str()
3157
- : "null");
3158
- }
3159
- if (next_metadata.has_value()) {
3160
- metadata = std::move(next_metadata.value());
3161
- is_trailers_only_ = metadata->get(GrpcTrailersOnly()).value_or(false);
3162
- } else {
3163
- is_trailers_only_ = true;
3164
- metadata = arena()->MakePooled<ServerMetadata>(arena());
3165
- }
3166
- ProcessIncomingInitialMetadata(*metadata);
3167
- PublishMetadataArray(metadata.get(), array, true);
3168
- recv_initial_metadata_ = std::move(metadata);
3169
- FinishOpOnCompletion(&completion, PendingOp::kReceiveInitialMetadata);
3170
- });
3171
- }
3172
-
3173
- void ClientPromiseBasedCall::Finish(ServerMetadataHandle trailing_metadata) {
3174
- if (grpc_call_trace.enabled()) {
3175
- gpr_log(GPR_INFO, "%s[call] Finish: %s", DebugTag().c_str(),
3176
- trailing_metadata->DebugString().c_str());
3177
- }
3178
- ResetDeadline();
3179
- set_completed();
3180
- client_to_server_messages_.sender.CloseWithError();
3181
- client_to_server_messages_.receiver.CloseWithError();
3182
- if (trailing_metadata->get(GrpcCallWasCancelled()).value_or(false)) {
3183
- server_to_client_messages_.receiver.CloseWithError();
3184
- server_initial_metadata_.receiver.CloseWithError();
3185
- }
3186
- if (auto* channelz_channel = channel()->channelz_node()) {
3187
- if (trailing_metadata->get(GrpcStatusMetadata())
3188
- .value_or(GRPC_STATUS_UNKNOWN) == GRPC_STATUS_OK) {
3189
- channelz_channel->RecordCallSucceeded();
3190
- } else {
3191
- channelz_channel->RecordCallFailed();
3192
- }
3193
- }
3194
- server_trailing_metadata_.Set(std::move(trailing_metadata));
3195
- }
3196
-
3197
- namespace {
3198
- std::string MakeErrorString(const ServerMetadata* trailing_metadata) {
3199
- std::string out = absl::StrCat(
3200
- trailing_metadata->get(GrpcStatusFromWire()).value_or(false)
3201
- ? "Error received from peer"
3202
- : "Error generated by client",
3203
- "grpc_status: ",
3204
- grpc_status_code_to_string(trailing_metadata->get(GrpcStatusMetadata())
3205
- .value_or(GRPC_STATUS_UNKNOWN)));
3206
- if (const Slice* message =
3207
- trailing_metadata->get_pointer(GrpcMessageMetadata())) {
3208
- absl::StrAppend(&out, "\ngrpc_message: ", message->as_string_view());
3209
- }
3210
- if (auto annotations = trailing_metadata->get_pointer(GrpcStatusContext())) {
3211
- absl::StrAppend(&out, "\nStatus Context:");
3212
- for (const std::string& annotation : *annotations) {
3213
- absl::StrAppend(&out, "\n ", annotation);
3214
- }
3215
- }
3216
- return out;
3217
- }
3218
- } // namespace
3219
-
3220
- void ClientPromiseBasedCall::StartRecvStatusOnClient(
3221
- const Completion& completion,
3222
- grpc_op::grpc_op_data::grpc_op_recv_status_on_client op_args,
3223
- Party::BulkSpawner& spawner) {
3224
- ForceCompletionSuccess(completion);
3225
- spawner.Spawn(
3226
- "recv_status_on_client", server_trailing_metadata_.Wait(),
3227
- [this, op_args,
3228
- completion =
3229
- AddOpToCompletion(completion, PendingOp::kReceiveStatusOnClient)](
3230
- ServerMetadataHandle trailing_metadata) mutable {
3231
- const grpc_status_code status =
3232
- trailing_metadata->get(GrpcStatusMetadata())
3233
- .value_or(GRPC_STATUS_UNKNOWN);
3234
- *op_args.status = status;
3235
- Slice message_slice;
3236
- if (Slice* message =
3237
- trailing_metadata->get_pointer(GrpcMessageMetadata())) {
3238
- message_slice = message->Ref();
3239
- }
3240
- SetFinalizationStatus(status, message_slice.Ref());
3241
- *op_args.status_details = message_slice.TakeCSlice();
3242
- if (op_args.error_string != nullptr && status != GRPC_STATUS_OK) {
3243
- *op_args.error_string =
3244
- gpr_strdup(MakeErrorString(trailing_metadata.get()).c_str());
3245
- }
3246
- PublishMetadataArray(trailing_metadata.get(), op_args.trailing_metadata,
3247
- true);
3248
- recv_trailing_metadata_ = std::move(trailing_metadata);
3249
- FinishOpOnCompletion(&completion, PendingOp::kReceiveStatusOnClient);
3250
- });
3251
- }
3252
- #endif
3253
-
3254
- ///////////////////////////////////////////////////////////////////////////////
3255
- // ServerPromiseBasedCall
3256
-
3257
- #ifdef GRPC_EXPERIMENT_IS_INCLUDED_PROMISE_BASED_SERVER_CALL
3258
-
3259
- class ServerPromiseBasedCall final : public PromiseBasedCall,
3260
- public ServerCallContext {
3261
- public:
3262
- ServerPromiseBasedCall(Arena* arena, grpc_call_create_args* args);
3263
-
3264
- void OrphanCall() override {}
3265
- void CancelWithError(grpc_error_handle) override;
3266
- grpc_call_error StartBatch(const grpc_op* ops, size_t nops, void* notify_tag,
3267
- bool is_notify_tag_closure) override;
3268
- bool is_trailers_only() const override {
3269
- Crash("is_trailers_only not implemented for server calls");
3270
- }
3271
- absl::string_view GetServerAuthority() const override {
3272
- const Slice* authority_metadata =
3273
- client_initial_metadata_->get_pointer(HttpAuthorityMetadata());
3274
- if (authority_metadata == nullptr) return "";
3275
- return authority_metadata->as_string_view();
3276
- }
3277
-
3278
- // Polling order for the server promise stack:
3279
- //
3280
- // │ ┌───────────────────────────────────────┐
3281
- // │ │ ServerPromiseBasedCall ├──► Lifetime management
3282
- // │ ├───────────────────────────────────────┤
3283
- // │ │ ConnectedChannel ├─┐
3284
- // │ ├───────────────────────────────────────┤ └► Interactions with the
3285
- // │ │ ... closest to transport filter │ transport - send/recv msgs
3286
- // │ ├───────────────────────────────────────┤ and metadata, call phase
3287
- // │ │ ... │ ordering
3288
- // │ ├───────────────────────────────────────┤
3289
- // │ │ ... closest to app filter │ ┌► Request matching, initial
3290
- // │ ├───────────────────────────────────────┤ │ setup, publishing call to
3291
- // │ │ Server::ChannelData::MakeCallPromise ├─┘ application
3292
- // │ ├───────────────────────────────────────┤
3293
- // │ │ MakeTopOfServerCallPromise ├──► Send trailing metadata
3294
- // ▼ └───────────────────────────────────────┘
3295
- // Polling &
3296
- // instantiation
3297
- // order
3298
-
3299
- std::string DebugTag() const override {
3300
- return absl::StrFormat("SERVER_CALL[%p]: ", this);
3301
- }
3302
-
3303
- ServerCallContext* server_call_context() override { return this; }
3304
-
3305
- const void* server_stream_data() override { return server_transport_data_; }
3306
- void PublishInitialMetadata(
3307
- ClientMetadataHandle metadata,
3308
- grpc_metadata_array* publish_initial_metadata) override;
3309
- ArenaPromise<ServerMetadataHandle> MakeTopOfServerCallPromise(
3310
- CallArgs call_args, grpc_completion_queue* cq,
3311
- absl::FunctionRef<void(grpc_call* call)> publish) override;
3312
-
3313
- private:
3314
- class RecvCloseOpCancelState {
3315
- public:
3316
- // Request that receiver be filled in per
3317
- // grpc_op_recv_close_on_server. Returns true if the request can
3318
- // be fulfilled immediately. Returns false if the request will be
3319
- // fulfilled later.
3320
- bool ReceiveCloseOnServerOpStarted(int* receiver) {
3321
- uintptr_t state = state_.load(std::memory_order_acquire);
3322
- uintptr_t new_state;
3323
- do {
3324
- switch (state) {
3325
- case kUnset:
3326
- new_state = reinterpret_cast<uintptr_t>(receiver);
3327
- break;
3328
- case kFinishedWithFailure:
3329
- *receiver = 1;
3330
- return true;
3331
- case kFinishedWithSuccess:
3332
- *receiver = 0;
3333
- return true;
3334
- default:
3335
- Crash("Two threads offered ReceiveCloseOnServerOpStarted");
3336
- }
3337
- } while (!state_.compare_exchange_weak(state, new_state,
3338
- std::memory_order_acq_rel,
3339
- std::memory_order_acquire));
3340
- return false;
3341
- }
3342
-
3343
- // Mark the call as having completed.
3344
- // Returns true if this finishes a previous
3345
- // RequestReceiveCloseOnServer.
3346
- bool CompleteCallWithCancelledSetTo(bool cancelled) {
3347
- uintptr_t state = state_.load(std::memory_order_acquire);
3348
- uintptr_t new_state;
3349
- bool r;
3350
- do {
3351
- switch (state) {
3352
- case kUnset:
3353
- new_state = cancelled ? kFinishedWithFailure : kFinishedWithSuccess;
3354
- r = false;
3355
- break;
3356
- case kFinishedWithFailure:
3357
- return false;
3358
- case kFinishedWithSuccess:
3359
- Crash("unreachable");
3360
- default:
3361
- new_state = cancelled ? kFinishedWithFailure : kFinishedWithSuccess;
3362
- r = true;
3363
- }
3364
- } while (!state_.compare_exchange_weak(state, new_state,
3365
- std::memory_order_acq_rel,
3366
- std::memory_order_acquire));
3367
- if (r) *reinterpret_cast<int*>(state) = cancelled ? 1 : 0;
3368
- return r;
3369
- }
3370
-
3371
- std::string ToString() const {
3372
- auto state = state_.load(std::memory_order_relaxed);
3373
- switch (state) {
3374
- case kUnset:
3375
- return "Unset";
3376
- case kFinishedWithFailure:
3377
- return "FinishedWithFailure";
3378
- case kFinishedWithSuccess:
3379
- return "FinishedWithSuccess";
3380
- default:
3381
- return absl::StrFormat("WaitingForReceiver(%p)",
3382
- reinterpret_cast<void*>(state));
3383
- }
3384
- }
3385
-
3386
- private:
3387
- static constexpr uintptr_t kUnset = 0;
3388
- static constexpr uintptr_t kFinishedWithFailure = 1;
3389
- static constexpr uintptr_t kFinishedWithSuccess = 2;
3390
- // Holds one of kUnset, kFinishedWithFailure, or
3391
- // kFinishedWithSuccess OR an int* that wants to receive the
3392
- // final status.
3393
- std::atomic<uintptr_t> state_{kUnset};
3394
- };
3395
-
3396
- void CommitBatch(const grpc_op* ops, size_t nops,
3397
- const Completion& completion);
3398
- void Finish(ServerMetadataHandle result);
3399
-
3400
- Server* const server_;
3401
- const void* const server_transport_data_;
3402
- PipeSender<ServerMetadataHandle>* server_initial_metadata_ = nullptr;
3403
- PipeSender<MessageHandle>* server_to_client_messages_ = nullptr;
3404
- PipeReceiver<MessageHandle>* client_to_server_messages_ = nullptr;
3405
- Latch<ServerMetadataHandle> send_trailing_metadata_;
3406
- RecvCloseOpCancelState recv_close_op_cancel_state_;
3407
- ClientMetadataHandle client_initial_metadata_;
3408
- Completion recv_close_completion_;
3409
- std::atomic<bool> cancelled_{false};
3410
- };
3411
-
3412
- ServerPromiseBasedCall::ServerPromiseBasedCall(Arena* arena,
3413
- grpc_call_create_args* args)
3414
- : PromiseBasedCall(arena, 0, *args),
3415
- server_(args->server),
3416
- server_transport_data_(args->server_transport_data) {
3417
- global_stats().IncrementServerCallsCreated();
3418
- channelz::ServerNode* channelz_node = server_->channelz_node();
3419
- if (channelz_node != nullptr) {
3420
- channelz_node->RecordCallStarted();
3421
- }
3422
- // TODO(yashykt): In the future, we want to also enable stats and trace
3423
- // collecting from when the call is created at the transport. The idea is that
3424
- // the transport would create the call tracer and pass it in as part of the
3425
- // metadata.
3426
- if (args->server->server_call_tracer_factory() != nullptr) {
3427
- auto* server_call_tracer =
3428
- args->server->server_call_tracer_factory()->CreateNewServerCallTracer(
3429
- arena, args->server->channel_args());
3430
- if (server_call_tracer != nullptr) {
3431
- // Note that we are setting both
3432
- // GRPC_CONTEXT_CALL_TRACER_ANNOTATION_INTERFACE and
3433
- // GRPC_CONTEXT_CALL_TRACER as a matter of convenience. In the future
3434
- // promise-based world, we would just a single tracer object for each
3435
- // stack (call, subchannel_call, server_call.)
3436
- ContextSet(GRPC_CONTEXT_CALL_TRACER_ANNOTATION_INTERFACE,
3437
- server_call_tracer, nullptr);
3438
- ContextSet(GRPC_CONTEXT_CALL_TRACER, server_call_tracer, nullptr);
3439
- }
3440
- }
3441
- ScopedContext activity_context(this);
3442
- Spawn("server_promise",
3443
- channel()->channel_stack()->MakeServerCallPromise(
3444
- CallArgs{nullptr, ClientInitialMetadataOutstandingToken::Empty(),
3445
- nullptr, nullptr, nullptr, nullptr}),
3446
- [this](ServerMetadataHandle result) { Finish(std::move(result)); });
3447
- }
3448
-
3449
- void ServerPromiseBasedCall::Finish(ServerMetadataHandle result) {
3450
- if (grpc_call_trace.enabled()) {
3451
- gpr_log(GPR_INFO, "%s[call] Finish: recv_close_state:%s result:%s",
3452
- DebugTag().c_str(), recv_close_op_cancel_state_.ToString().c_str(),
3453
- result->DebugString().c_str());
3454
- }
3455
- const auto status =
3456
- result->get(GrpcStatusMetadata()).value_or(GRPC_STATUS_UNKNOWN);
3457
- channelz::ServerNode* channelz_node = server_->channelz_node();
3458
- if (channelz_node != nullptr) {
3459
- if (status == GRPC_STATUS_OK) {
3460
- channelz_node->RecordCallSucceeded();
3461
- } else {
3462
- channelz_node->RecordCallFailed();
3463
- }
3464
- }
3465
- bool was_cancelled = result->get(GrpcCallWasCancelled()).value_or(true);
3466
- if (recv_close_op_cancel_state_.CompleteCallWithCancelledSetTo(
3467
- was_cancelled)) {
3468
- FinishOpOnCompletion(&recv_close_completion_,
3469
- PendingOp::kReceiveCloseOnServer);
3470
- }
3471
- if (was_cancelled) set_failed_before_recv_message();
3472
- if (server_initial_metadata_ != nullptr) {
3473
- server_initial_metadata_->Close();
3474
- }
3475
- Slice message_slice;
3476
- if (Slice* message = result->get_pointer(GrpcMessageMetadata())) {
3477
- message_slice = message->Ref();
3478
- }
3479
- AcceptTransportStatsFromContext();
3480
- SetFinalizationStatus(status, std::move(message_slice));
3481
- set_completed();
3482
- ResetDeadline();
3483
- PropagateCancellationToChildren();
3484
- }
3485
-
3486
- grpc_call_error ValidateServerBatch(const grpc_op* ops, size_t nops) {
3487
- BitSet<8> got_ops;
3488
- for (size_t op_idx = 0; op_idx < nops; op_idx++) {
3489
- const grpc_op& op = ops[op_idx];
3490
- switch (op.op) {
3491
- case GRPC_OP_SEND_INITIAL_METADATA:
3492
- if (!AreInitialMetadataFlagsValid(op.flags)) {
3493
- return GRPC_CALL_ERROR_INVALID_FLAGS;
3494
- }
3495
- if (!ValidateMetadata(op.data.send_initial_metadata.count,
3496
- op.data.send_initial_metadata.metadata)) {
3497
- return GRPC_CALL_ERROR_INVALID_METADATA;
3498
- }
3499
- break;
3500
- case GRPC_OP_SEND_MESSAGE:
3501
- if (!AreWriteFlagsValid(op.flags)) {
3502
- return GRPC_CALL_ERROR_INVALID_FLAGS;
3503
- }
3504
- break;
3505
- case GRPC_OP_SEND_STATUS_FROM_SERVER:
3506
- if (op.flags != 0) return GRPC_CALL_ERROR_INVALID_FLAGS;
3507
- if (!ValidateMetadata(
3508
- op.data.send_status_from_server.trailing_metadata_count,
3509
- op.data.send_status_from_server.trailing_metadata)) {
3510
- return GRPC_CALL_ERROR_INVALID_METADATA;
3511
- }
3512
- break;
3513
- case GRPC_OP_RECV_MESSAGE:
3514
- case GRPC_OP_RECV_CLOSE_ON_SERVER:
3515
- if (op.flags != 0) return GRPC_CALL_ERROR_INVALID_FLAGS;
3516
- break;
3517
- case GRPC_OP_RECV_INITIAL_METADATA:
3518
- case GRPC_OP_SEND_CLOSE_FROM_CLIENT:
3519
- case GRPC_OP_RECV_STATUS_ON_CLIENT:
3520
- return GRPC_CALL_ERROR_NOT_ON_SERVER;
3521
- }
3522
- if (got_ops.is_set(op.op)) return GRPC_CALL_ERROR_TOO_MANY_OPERATIONS;
3523
- got_ops.set(op.op);
3524
- }
3525
- return GRPC_CALL_OK;
3526
- }
3527
-
3528
- void ServerPromiseBasedCall::CommitBatch(const grpc_op* ops, size_t nops,
3529
- const Completion& completion) {
3530
- Party::BulkSpawner spawner(this);
3531
- for (size_t op_idx = 0; op_idx < nops; op_idx++) {
3532
- const grpc_op& op = ops[op_idx];
3533
- switch (op.op) {
3534
- case GRPC_OP_SEND_INITIAL_METADATA: {
3535
- auto metadata = arena()->MakePooled<ServerMetadata>(arena());
3536
- PrepareOutgoingInitialMetadata(op, *metadata);
3537
- CToMetadata(op.data.send_initial_metadata.metadata,
3538
- op.data.send_initial_metadata.count, metadata.get());
3539
- if (grpc_call_trace.enabled()) {
3540
- gpr_log(GPR_INFO, "%s[call] Send initial metadata",
3541
- DebugTag().c_str());
3542
- }
3543
- QueueSend();
3544
- spawner.Spawn(
3545
- "call_send_initial_metadata",
3546
- [this, metadata = std::move(metadata)]() mutable {
3547
- EnactSend();
3548
- return server_initial_metadata_->Push(std::move(metadata));
3549
- },
3550
- [this,
3551
- completion = AddOpToCompletion(
3552
- completion, PendingOp::kSendInitialMetadata)](bool r) mutable {
3553
- if (!r) {
3554
- set_failed_before_recv_message();
3555
- FailCompletion(completion);
3556
- }
3557
- FinishOpOnCompletion(&completion,
3558
- PendingOp::kSendInitialMetadata);
3559
- });
3560
- } break;
3561
- case GRPC_OP_SEND_MESSAGE:
3562
- StartSendMessage(op, completion, server_to_client_messages_, spawner);
3563
- break;
3564
- case GRPC_OP_RECV_MESSAGE:
3565
- if (cancelled_.load(std::memory_order_relaxed)) {
3566
- set_failed_before_recv_message();
3567
- FailCompletion(completion);
3568
- break;
3569
- }
3570
- StartRecvMessage(
3571
- op, completion, []() { return []() { return Empty{}; }; },
3572
- client_to_server_messages_, true, spawner);
3573
- break;
3574
- case GRPC_OP_SEND_STATUS_FROM_SERVER: {
3575
- auto metadata = arena()->MakePooled<ServerMetadata>(arena());
3576
- CToMetadata(op.data.send_status_from_server.trailing_metadata,
3577
- op.data.send_status_from_server.trailing_metadata_count,
3578
- metadata.get());
3579
- metadata->Set(GrpcStatusMetadata(),
3580
- op.data.send_status_from_server.status);
3581
- if (auto* details = op.data.send_status_from_server.status_details) {
3582
- // TODO(ctiller): this should not be a copy, but we have callers that
3583
- // allocate and pass in a slice created with
3584
- // grpc_slice_from_static_string and then delete the string after
3585
- // passing it in, which shouldn't be a supported API.
3586
- metadata->Set(GrpcMessageMetadata(),
3587
- Slice(grpc_slice_copy(*details)));
3588
- }
3589
- spawner.Spawn(
3590
- "call_send_status_from_server",
3591
- [this, metadata = std::move(metadata)]() mutable {
3592
- bool r = true;
3593
- if (send_trailing_metadata_.is_set()) {
3594
- r = false;
3595
- } else {
3596
- send_trailing_metadata_.Set(std::move(metadata));
3597
- }
3598
- return Map(WaitForSendingStarted(), [this, r](Empty) {
3599
- server_initial_metadata_->Close();
3600
- server_to_client_messages_->Close();
3601
- return r;
3602
- });
3603
- },
3604
- [this, completion = AddOpToCompletion(
3605
- completion, PendingOp::kSendStatusFromServer)](
3606
- bool ok) mutable {
3607
- if (!ok) {
3608
- set_failed_before_recv_message();
3609
- FailCompletion(completion);
3610
- }
3611
- FinishOpOnCompletion(&completion,
3612
- PendingOp::kSendStatusFromServer);
3613
- });
3614
- } break;
3615
- case GRPC_OP_RECV_CLOSE_ON_SERVER:
3616
- if (grpc_call_trace.enabled()) {
3617
- gpr_log(GPR_INFO, "%s[call] StartBatch: RecvClose %s",
3618
- DebugTag().c_str(),
3619
- recv_close_op_cancel_state_.ToString().c_str());
3620
- }
3621
- ForceCompletionSuccess(completion);
3622
- recv_close_completion_ =
3623
- AddOpToCompletion(completion, PendingOp::kReceiveCloseOnServer);
3624
- if (recv_close_op_cancel_state_.ReceiveCloseOnServerOpStarted(
3625
- op.data.recv_close_on_server.cancelled)) {
3626
- FinishOpOnCompletion(&recv_close_completion_,
3627
- PendingOp::kReceiveCloseOnServer);
3628
- }
3629
- break;
3630
- case GRPC_OP_RECV_STATUS_ON_CLIENT:
3631
- case GRPC_OP_SEND_CLOSE_FROM_CLIENT:
3632
- case GRPC_OP_RECV_INITIAL_METADATA:
3633
- abort(); // unreachable
3634
- }
3635
- }
3636
- }
3637
-
3638
- grpc_call_error ServerPromiseBasedCall::StartBatch(const grpc_op* ops,
3639
- size_t nops,
3640
- void* notify_tag,
3641
- bool is_notify_tag_closure) {
3642
- if (nops == 0) {
3643
- EndOpImmediately(cq(), notify_tag, is_notify_tag_closure);
3644
- return GRPC_CALL_OK;
3645
- }
3646
- const grpc_call_error validation_result = ValidateServerBatch(ops, nops);
3647
- if (validation_result != GRPC_CALL_OK) {
3648
- return validation_result;
3649
- }
3650
- Completion completion =
3651
- StartCompletion(notify_tag, is_notify_tag_closure, ops);
3652
- CommitBatch(ops, nops, completion);
3653
- FinishOpOnCompletion(&completion, PendingOp::kStartingBatch);
3654
- return GRPC_CALL_OK;
3655
- }
3656
-
3657
- void ServerPromiseBasedCall::CancelWithError(absl::Status error) {
3658
- cancelled_.store(true, std::memory_order_relaxed);
3659
- Spawn(
3660
- "cancel_with_error",
3661
- [this, error = std::move(error)]() {
3662
- if (!send_trailing_metadata_.is_set()) {
3663
- auto md = ServerMetadataFromStatus(error);
3664
- md->Set(GrpcCallWasCancelled(), true);
3665
- send_trailing_metadata_.Set(std::move(md));
3666
- }
3667
- if (server_to_client_messages_ != nullptr) {
3668
- server_to_client_messages_->Close();
3669
- }
3670
- if (server_initial_metadata_ != nullptr) {
3671
- server_initial_metadata_->Close();
3672
- }
3673
- return Empty{};
3674
- },
3675
- [](Empty) {});
3676
- }
3677
- #endif
3678
-
3679
- #ifdef GRPC_EXPERIMENT_IS_INCLUDED_PROMISE_BASED_SERVER_CALL
3680
- void ServerPromiseBasedCall::PublishInitialMetadata(
3681
- ClientMetadataHandle metadata,
3682
- grpc_metadata_array* publish_initial_metadata) {
3683
- if (grpc_call_trace.enabled()) {
3684
- gpr_log(GPR_INFO, "%s[call] PublishInitialMetadata: %s", DebugTag().c_str(),
3685
- metadata->DebugString().c_str());
3686
- }
3687
- PublishMetadataArray(metadata.get(), publish_initial_metadata, false);
3688
- client_initial_metadata_ = std::move(metadata);
3689
- }
3690
-
3691
- ArenaPromise<ServerMetadataHandle>
3692
- ServerPromiseBasedCall::MakeTopOfServerCallPromise(
3693
- CallArgs call_args, grpc_completion_queue* cq,
3694
- absl::FunctionRef<void(grpc_call* call)> publish) {
3695
- SetCompletionQueue(cq);
3696
- call_args.polling_entity->Set(
3697
- grpc_polling_entity_create_from_pollset(grpc_cq_pollset(cq)));
3698
- server_to_client_messages_ = call_args.server_to_client_messages;
3699
- client_to_server_messages_ = call_args.client_to_server_messages;
3700
- server_initial_metadata_ = call_args.server_initial_metadata;
3701
- set_send_deadline(deadline());
3702
- ProcessIncomingInitialMetadata(*client_initial_metadata_);
3703
- ExternalRef();
3704
- publish(c_ptr());
3705
- return Seq(server_to_client_messages_->AwaitClosed(),
3706
- send_trailing_metadata_.Wait());
3707
- }
3708
-
3709
- ///////////////////////////////////////////////////////////////////////////////
3710
- // CallSpine based Server Call
3711
-
3712
- class ServerCallSpine final : public CallSpineInterface,
3713
- public ServerCallContext,
3714
- public BasicPromiseBasedCall {
3715
- public:
3716
- ServerCallSpine(Server* server, Channel* channel, Arena* arena);
3717
-
3718
- // CallSpineInterface
3719
- Pipe<ClientMetadataHandle>& client_initial_metadata() override {
3720
- return client_initial_metadata_;
3721
- }
3722
- Pipe<ServerMetadataHandle>& server_initial_metadata() override {
3723
- return server_initial_metadata_;
3724
- }
3725
- Pipe<MessageHandle>& client_to_server_messages() override {
3726
- return client_to_server_messages_;
3727
- }
3728
- Pipe<MessageHandle>& server_to_client_messages() override {
3729
- return server_to_client_messages_;
3730
- }
3731
- Pipe<ServerMetadataHandle>& server_trailing_metadata() override {
3732
- return server_trailing_metadata_;
3733
- }
3734
- Latch<ServerMetadataHandle>& cancel_latch() override { return cancel_latch_; }
3735
- Party& party() override { return *this; }
3736
- void IncrementRefCount() override { InternalRef("CallSpine"); }
3737
- void Unref() override { InternalUnref("CallSpine"); }
3738
-
3739
- // PromiseBasedCall
3740
- void OrphanCall() override {
3741
- ResetDeadline();
3742
- CancelWithError(absl::CancelledError());
3743
- }
3744
- void CancelWithError(grpc_error_handle error) override {
3745
- SpawnInfallible("CancelWithError", [this, error = std::move(error)] {
3746
- std::ignore = Cancel(ServerMetadataFromStatus(error));
3747
- return Empty{};
3748
- });
3749
- }
3750
- bool is_trailers_only() const override {
3751
- Crash("is_trailers_only not implemented for server calls");
3752
- }
3753
- absl::string_view GetServerAuthority() const override {
3754
- Crash("unimplemented");
3755
- }
3756
- grpc_call_error StartBatch(const grpc_op* ops, size_t nops, void* notify_tag,
3757
- bool is_notify_tag_closure) override;
3758
-
3759
- bool Completed() final { Crash("unimplemented"); }
3760
- bool failed_before_recv_message() const final { Crash("unimplemented"); }
3761
-
3762
- ServerCallContext* server_call_context() override { return this; }
3763
- const void* server_stream_data() override { Crash("unimplemented"); }
3764
- void PublishInitialMetadata(
3765
- ClientMetadataHandle metadata,
3766
- grpc_metadata_array* publish_initial_metadata) override;
3767
- ArenaPromise<ServerMetadataHandle> MakeTopOfServerCallPromise(
3768
- CallArgs, grpc_completion_queue*,
3769
- absl::FunctionRef<void(grpc_call* call)>) override {
3770
- Crash("unimplemented");
3771
- }
3772
-
3773
- bool RunParty() override {
3774
- ScopedContext ctx(this);
3775
- return Party::RunParty();
3776
- }
3777
-
3778
- private:
3779
- void CommitBatch(const grpc_op* ops, size_t nops, void* notify_tag,
3780
- bool is_notify_tag_closure);
3781
- StatusFlag FinishRecvMessage(NextResult<MessageHandle> result);
3782
-
3783
- std::string DebugTag() const override {
3784
- return absl::StrFormat("SERVER_CALL_SPINE[%p]: ", this);
3785
- }
3786
-
3787
- // Initial metadata from client to server
3788
- Pipe<ClientMetadataHandle> client_initial_metadata_;
3789
- // Initial metadata from server to client
3790
- Pipe<ServerMetadataHandle> server_initial_metadata_;
3791
- // Messages travelling from the application to the transport.
3792
- Pipe<MessageHandle> client_to_server_messages_;
3793
- // Messages travelling from the transport to the application.
3794
- Pipe<MessageHandle> server_to_client_messages_;
3795
- // Trailing metadata from server to client
3796
- Pipe<ServerMetadataHandle> server_trailing_metadata_;
3797
- // Latch that can be set to terminate the call
3798
- Latch<ServerMetadataHandle> cancel_latch_;
3799
- grpc_byte_buffer** recv_message_ = nullptr;
3800
- ClientMetadataHandle client_initial_metadata_stored_;
3801
- };
3802
-
3803
- ServerCallSpine::ServerCallSpine(Server* server, Channel* channel, Arena* arena)
3804
- : BasicPromiseBasedCall(arena, 0, 1,
3805
- [channel, server]() -> grpc_call_create_args {
3806
- grpc_call_create_args args;
3807
- args.channel = channel->Ref();
3808
- args.server = server;
3809
- args.parent = nullptr;
3810
- args.propagation_mask = 0;
3811
- args.cq = nullptr;
3812
- args.pollset_set_alternative = nullptr;
3813
- args.server_transport_data =
3814
- &args; // Arbitrary non-null pointer
3815
- args.send_deadline = Timestamp::InfFuture();
3816
- return args;
3817
- }()),
3818
- client_initial_metadata_(arena),
3819
- server_initial_metadata_(arena),
3820
- client_to_server_messages_(arena),
3821
- server_to_client_messages_(arena),
3822
- server_trailing_metadata_(arena) {
3823
- global_stats().IncrementServerCallsCreated();
3824
- ScopedContext ctx(this);
3825
- channel->channel_stack()->InitServerCallSpine(this);
3826
- }
3827
-
3828
- void ServerCallSpine::PublishInitialMetadata(
3829
- ClientMetadataHandle metadata,
3830
- grpc_metadata_array* publish_initial_metadata) {
3831
- if (grpc_call_trace.enabled()) {
3832
- gpr_log(GPR_INFO, "%s[call] PublishInitialMetadata: %s", DebugTag().c_str(),
3833
- metadata->DebugString().c_str());
3834
- }
3835
- PublishMetadataArray(metadata.get(), publish_initial_metadata, false);
3836
- client_initial_metadata_stored_ = std::move(metadata);
3837
- }
3838
-
3839
- grpc_call_error ServerCallSpine::StartBatch(const grpc_op* ops, size_t nops,
3840
- void* notify_tag,
3841
- bool is_notify_tag_closure) {
3842
- if (nops == 0) {
3843
- EndOpImmediately(cq(), notify_tag, is_notify_tag_closure);
3844
- return GRPC_CALL_OK;
3845
- }
3846
- const grpc_call_error validation_result = ValidateServerBatch(ops, nops);
3847
- if (validation_result != GRPC_CALL_OK) {
3848
- return validation_result;
3849
- }
3850
- CommitBatch(ops, nops, notify_tag, is_notify_tag_closure);
3851
- return GRPC_CALL_OK;
3852
- }
3853
-
3854
- namespace {
3855
- template <typename SetupFn>
3856
- class MaybeOpImpl {
3857
- public:
3858
- using SetupResult = decltype(std::declval<SetupFn>()(grpc_op()));
3859
- using PromiseFactory = promise_detail::OncePromiseFactory<void, SetupResult>;
3860
- using Promise = typename PromiseFactory::Promise;
3861
- struct Dismissed {};
3862
- using State = absl::variant<Dismissed, PromiseFactory, Promise>;
3863
-
3864
- // op_ is garbage but shouldn't be uninitialized
3865
- MaybeOpImpl() : state_(Dismissed{}), op_(GRPC_OP_RECV_STATUS_ON_CLIENT) {}
3866
- MaybeOpImpl(SetupResult result, grpc_op_type op)
3867
- : state_(PromiseFactory(std::move(result))), op_(op) {}
3868
-
3869
- MaybeOpImpl(const MaybeOpImpl&) = delete;
3870
- MaybeOpImpl& operator=(const MaybeOpImpl&) = delete;
3871
- MaybeOpImpl(MaybeOpImpl&& other) noexcept
3872
- : state_(MoveState(other.state_)), op_(other.op_) {}
3873
- MaybeOpImpl& operator=(MaybeOpImpl&& other) noexcept {
3874
- op_ = other.op_;
3875
- if (absl::holds_alternative<Dismissed>(state_)) {
3876
- state_.template emplace<Dismissed>();
3877
- return *this;
3878
- }
3879
- // Can't move after first poll => Promise is not an option
3880
- state_.template emplace<PromiseFactory>(
3881
- std::move(absl::get<PromiseFactory>(other.state_)));
3882
- return *this;
3883
- }
3884
-
3885
- Poll<StatusFlag> operator()() {
3886
- if (absl::holds_alternative<Dismissed>(state_)) return Success{};
3887
- if (absl::holds_alternative<PromiseFactory>(state_)) {
3888
- auto& factory = absl::get<PromiseFactory>(state_);
3889
- auto promise = factory.Make();
3890
- state_.template emplace<Promise>(std::move(promise));
3891
- }
3892
- if (grpc_call_trace.enabled()) {
3893
- gpr_log(GPR_INFO, "%sBeginPoll %s",
3894
- Activity::current()->DebugTag().c_str(), OpName(op_).c_str());
3895
- }
3896
- auto& promise = absl::get<Promise>(state_);
3897
- auto r = poll_cast<StatusFlag>(promise());
3898
- if (grpc_call_trace.enabled()) {
3899
- gpr_log(GPR_INFO, "%sEndPoll %s --> %s",
3900
- Activity::current()->DebugTag().c_str(), OpName(op_).c_str(),
3901
- r.pending() ? "PENDING" : (r.value().ok() ? "OK" : "FAILURE"));
3902
- }
3903
- return r;
3904
- }
3905
-
3906
- private:
3907
- GPR_NO_UNIQUE_ADDRESS State state_;
3908
- GPR_NO_UNIQUE_ADDRESS grpc_op_type op_;
3909
-
3910
- static std::string OpName(grpc_op_type op) {
3911
- switch (op) {
3912
- case GRPC_OP_SEND_INITIAL_METADATA:
3913
- return "SendInitialMetadata";
3914
- case GRPC_OP_SEND_MESSAGE:
3915
- return "SendMessage";
3916
- case GRPC_OP_SEND_STATUS_FROM_SERVER:
3917
- return "SendStatusFromServer";
3918
- case GRPC_OP_SEND_CLOSE_FROM_CLIENT:
3919
- return "SendCloseFromClient";
3920
- case GRPC_OP_RECV_MESSAGE:
3921
- return "RecvMessage";
3922
- case GRPC_OP_RECV_CLOSE_ON_SERVER:
3923
- return "RecvCloseOnServer";
3924
- case GRPC_OP_RECV_INITIAL_METADATA:
3925
- return "RecvInitialMetadata";
3926
- case GRPC_OP_RECV_STATUS_ON_CLIENT:
3927
- return "RecvStatusOnClient";
3928
- }
3929
- return absl::StrCat("UnknownOp(", op, ")");
3930
- }
3931
-
3932
- static State MoveState(State& state) {
3933
- if (absl::holds_alternative<Dismissed>(state)) return Dismissed{};
3934
- // Can't move after first poll => Promise is not an option
3935
- return std::move(absl::get<PromiseFactory>(state));
3936
- }
3937
- };
3938
-
3939
- // MaybeOp captures a fairly complicated dance we need to do for the batch API.
3940
- // We first check if an op is included or not, and if it is, we run the setup
3941
- // function in the context of the API call (NOT in the call party).
3942
- // This setup function returns a promise factory which we'll then run *in* the
3943
- // party to do initial setup, and have it return the promise that we'll
3944
- // ultimately poll on til completion.
3945
- // Once we express our surface API in terms of core internal types this whole
3946
- // dance will go away.
3947
- template <typename SetupFn>
3948
- auto MaybeOp(const grpc_op* ops, uint8_t idx, SetupFn setup) {
3949
- if (idx == 255) {
3950
- return MaybeOpImpl<SetupFn>();
3951
- } else {
3952
- return MaybeOpImpl<SetupFn>(setup(ops[idx]), ops[idx].op);
3953
- }
3954
- }
3955
-
3956
- template <typename F>
3957
- class PollBatchLogger {
3958
- public:
3959
- PollBatchLogger(void* tag, F f) : tag_(tag), f_(std::move(f)) {}
3960
-
3961
- auto operator()() {
3962
- if (grpc_call_trace.enabled()) {
3963
- gpr_log(GPR_INFO, "Poll batch %p", tag_);
3964
- }
3965
- auto r = f_();
3966
- if (grpc_call_trace.enabled()) {
3967
- gpr_log(GPR_INFO, "Poll batch %p --> %s", tag_, ResultString(r).c_str());
3968
- }
3969
- return r;
3970
- }
3971
-
3972
- private:
3973
- template <typename T>
3974
- static std::string ResultString(Poll<T> r) {
3975
- if (r.pending()) return "PENDING";
3976
- return ResultString(r.value());
3977
- }
3978
- static std::string ResultString(Empty) { return "DONE"; }
3979
-
3980
- void* tag_;
3981
- F f_;
3982
- };
3983
-
3984
- template <typename F>
3985
- PollBatchLogger<F> LogPollBatch(void* tag, F f) {
3986
- return PollBatchLogger<F>(tag, std::move(f));
3987
- }
3988
- } // namespace
3989
-
3990
- StatusFlag ServerCallSpine::FinishRecvMessage(
3991
- NextResult<MessageHandle> result) {
3992
- if (result.has_value()) {
3993
- MessageHandle& message = *result;
3994
- NoteLastMessageFlags(message->flags());
3995
- if ((message->flags() & GRPC_WRITE_INTERNAL_COMPRESS) &&
3996
- (incoming_compression_algorithm() != GRPC_COMPRESS_NONE)) {
3997
- *recv_message_ = grpc_raw_compressed_byte_buffer_create(
3998
- nullptr, 0, incoming_compression_algorithm());
3999
- } else {
4000
- *recv_message_ = grpc_raw_byte_buffer_create(nullptr, 0);
4001
- }
4002
- grpc_slice_buffer_move_into(message->payload()->c_slice_buffer(),
4003
- &(*recv_message_)->data.raw.slice_buffer);
4004
- if (grpc_call_trace.enabled()) {
4005
- gpr_log(GPR_INFO,
4006
- "%s[call] RecvMessage: outstanding_recv "
4007
- "finishes: received %" PRIdPTR " byte message",
4008
- DebugTag().c_str(),
4009
- (*recv_message_)->data.raw.slice_buffer.length);
4010
- }
4011
- recv_message_ = nullptr;
4012
- return Success{};
4013
- }
4014
- if (result.cancelled()) {
4015
- if (grpc_call_trace.enabled()) {
4016
- gpr_log(GPR_INFO,
4017
- "%s[call] RecvMessage: outstanding_recv "
4018
- "finishes: received end-of-stream with error",
4019
- DebugTag().c_str());
4020
- }
4021
- *recv_message_ = nullptr;
4022
- recv_message_ = nullptr;
4023
- return Failure{};
4024
- }
4025
- if (grpc_call_trace.enabled()) {
4026
- gpr_log(GPR_INFO,
4027
- "%s[call] RecvMessage: outstanding_recv "
4028
- "finishes: received end-of-stream",
4029
- DebugTag().c_str());
4030
- }
4031
- *recv_message_ = nullptr;
4032
- recv_message_ = nullptr;
4033
- return Success{};
4034
- }
4035
-
4036
- void ServerCallSpine::CommitBatch(const grpc_op* ops, size_t nops,
4037
- void* notify_tag,
4038
- bool is_notify_tag_closure) {
4039
- std::array<uint8_t, 8> got_ops{255, 255, 255, 255, 255, 255, 255, 255};
4040
- for (size_t op_idx = 0; op_idx < nops; op_idx++) {
4041
- const grpc_op& op = ops[op_idx];
4042
- got_ops[op.op] = op_idx;
4043
- }
4044
- if (!is_notify_tag_closure) grpc_cq_begin_op(cq(), notify_tag);
4045
- auto send_initial_metadata = MaybeOp(
4046
- ops, got_ops[GRPC_OP_SEND_INITIAL_METADATA], [this](const grpc_op& op) {
4047
- auto metadata = arena()->MakePooled<ServerMetadata>(arena());
4048
- PrepareOutgoingInitialMetadata(op, *metadata);
4049
- CToMetadata(op.data.send_initial_metadata.metadata,
4050
- op.data.send_initial_metadata.count, metadata.get());
4051
- if (grpc_call_trace.enabled()) {
4052
- gpr_log(GPR_INFO, "%s[call] Send initial metadata",
4053
- DebugTag().c_str());
4054
- }
4055
- return [this, metadata = std::move(metadata)]() mutable {
4056
- return Map(server_initial_metadata_.sender.Push(std::move(metadata)),
4057
- [this](bool r) {
4058
- server_initial_metadata_.sender.Close();
4059
- return StatusFlag(r);
4060
- });
4061
- };
4062
- });
4063
- auto send_message =
4064
- MaybeOp(ops, got_ops[GRPC_OP_SEND_MESSAGE], [this](const grpc_op& op) {
4065
- SliceBuffer send;
4066
- grpc_slice_buffer_swap(
4067
- &op.data.send_message.send_message->data.raw.slice_buffer,
4068
- send.c_slice_buffer());
4069
- auto msg = arena()->MakePooled<Message>(std::move(send), op.flags);
4070
- return [this, msg = std::move(msg)]() mutable {
4071
- return Map(server_to_client_messages_.sender.Push(std::move(msg)),
4072
- [](bool r) { return StatusFlag(r); });
4073
- };
4074
- });
4075
- auto send_trailing_metadata = MaybeOp(
4076
- ops, got_ops[GRPC_OP_SEND_STATUS_FROM_SERVER], [this](const grpc_op& op) {
4077
- auto metadata = arena()->MakePooled<ServerMetadata>(arena());
4078
- CToMetadata(op.data.send_status_from_server.trailing_metadata,
4079
- op.data.send_status_from_server.trailing_metadata_count,
4080
- metadata.get());
4081
- metadata->Set(GrpcStatusMetadata(),
4082
- op.data.send_status_from_server.status);
4083
- if (auto* details = op.data.send_status_from_server.status_details) {
4084
- // TODO(ctiller): this should not be a copy, but we have
4085
- // callers that allocate and pass in a slice created with
4086
- // grpc_slice_from_static_string and then delete the string
4087
- // after passing it in, which shouldn't be a supported API.
4088
- metadata->Set(GrpcMessageMetadata(),
4089
- Slice(grpc_slice_copy(*details)));
4090
- }
4091
- return [this, metadata = std::move(metadata)]() mutable {
4092
- server_to_client_messages_.sender.Close();
4093
- return Map(server_trailing_metadata_.sender.Push(std::move(metadata)),
4094
- [](bool r) { return StatusFlag(r); });
4095
- };
4096
- });
4097
- auto recv_message =
4098
- MaybeOp(ops, got_ops[GRPC_OP_RECV_MESSAGE], [this](const grpc_op& op) {
4099
- GPR_ASSERT(recv_message_ == nullptr);
4100
- recv_message_ = op.data.recv_message.recv_message;
4101
- return [this]() mutable {
4102
- return Map(client_to_server_messages_.receiver.Next(),
4103
- [this](NextResult<MessageHandle> msg) {
4104
- return FinishRecvMessage(std::move(msg));
4105
- });
4106
- };
4107
- });
4108
- auto primary_ops = AllOk<StatusFlag>(
4109
- std::move(send_initial_metadata), std::move(send_message),
4110
- std::move(send_trailing_metadata), std::move(recv_message));
4111
- if (got_ops[GRPC_OP_RECV_CLOSE_ON_SERVER] != 255) {
4112
- auto recv_trailing_metadata = MaybeOp(
4113
- ops, got_ops[GRPC_OP_RECV_CLOSE_ON_SERVER], [this](const grpc_op& op) {
4114
- return [this, cancelled = op.data.recv_close_on_server.cancelled]() {
4115
- return Map(server_trailing_metadata_.receiver.AwaitClosed(),
4116
- [cancelled, this](bool result) -> Success {
4117
- ResetDeadline();
4118
- *cancelled = result ? 1 : 0;
4119
- return Success{};
4120
- });
4121
- };
4122
- });
4123
- SpawnInfallible(
4124
- "final-batch",
4125
- [primary_ops = std::move(primary_ops),
4126
- recv_trailing_metadata = std::move(recv_trailing_metadata),
4127
- is_notify_tag_closure, notify_tag, this]() mutable {
4128
- return LogPollBatch(
4129
- notify_tag,
4130
- Seq(std::move(primary_ops), std::move(recv_trailing_metadata),
4131
- [is_notify_tag_closure, notify_tag, this](StatusFlag) {
4132
- return WaitForCqEndOp(is_notify_tag_closure, notify_tag,
4133
- absl::OkStatus(), cq());
4134
- }));
4135
- });
4136
- } else {
4137
- SpawnInfallible("batch", [primary_ops = std::move(primary_ops),
4138
- is_notify_tag_closure, notify_tag,
4139
- this]() mutable {
4140
- return LogPollBatch(
4141
- notify_tag,
4142
- Seq(std::move(primary_ops),
4143
- [is_notify_tag_closure, notify_tag, this](StatusFlag r) {
4144
- return WaitForCqEndOp(is_notify_tag_closure, notify_tag,
4145
- StatusCast<grpc_error_handle>(r), cq());
4146
- }));
4147
- });
4148
- }
4149
- }
4150
-
4151
- RefCountedPtr<CallSpineInterface> MakeServerCall(Server* server,
4152
- Channel* channel,
4153
- Arena* arena) {
4154
- return RefCountedPtr<ServerCallSpine>(
4155
- arena->New<ServerCallSpine>(server, channel, arena));
4156
- }
4157
- #else
4158
- RefCountedPtr<CallSpineInterface> MakeServerCall(Server*, Channel*, Arena*) {
4159
- Crash("not implemented");
4160
- }
4161
- #endif
4162
-
4163
- } // namespace grpc_core
4164
-
4165
- ///////////////////////////////////////////////////////////////////////////////
4166
- // C-based API
4167
-
4168
- void* grpc_call_arena_alloc(grpc_call* call, size_t size) {
4169
- grpc_core::ExecCtx exec_ctx;
4170
- return grpc_core::Call::FromC(call)->arena()->Alloc(size);
4171
- }
4172
-
4173
- size_t grpc_call_get_initial_size_estimate() {
4174
- return grpc_core::FilterStackCall::InitialSizeEstimate();
4175
- }
4176
-
4177
- grpc_error_handle grpc_call_create(grpc_call_create_args* args,
4178
- grpc_call** out_call) {
4179
- #ifdef GRPC_EXPERIMENT_IS_INCLUDED_PROMISE_BASED_CLIENT_CALL
4180
- if (grpc_core::IsPromiseBasedClientCallEnabled() &&
4181
- args->server_transport_data == nullptr && args->channel->is_promising()) {
4182
- return grpc_core::MakePromiseBasedCall<grpc_core::ClientPromiseBasedCall>(
4183
- args, out_call);
4184
- }
4185
- #endif
4186
- #ifdef GRPC_EXPERIMENT_IS_INCLUDED_PROMISE_BASED_SERVER_CALL
4187
- if (grpc_core::IsPromiseBasedServerCallEnabled() &&
4188
- args->server_transport_data != nullptr && args->channel->is_promising()) {
4189
- return grpc_core::MakePromiseBasedCall<grpc_core::ServerPromiseBasedCall>(
4190
- args, out_call);
4191
- }
4192
- #endif
4193
- return grpc_core::FilterStackCall::Create(args, out_call);
4194
- }
4195
-
4196
- void grpc_call_set_completion_queue(grpc_call* call,
4197
- grpc_completion_queue* cq) {
4198
- grpc_core::Call::FromC(call)->SetCompletionQueue(cq);
4199
- }
4200
-
4201
- void grpc_call_ref(grpc_call* c) { grpc_core::Call::FromC(c)->ExternalRef(); }
4202
-
4203
- void grpc_call_unref(grpc_call* c) {
4204
- grpc_core::ExecCtx exec_ctx;
4205
- grpc_core::Call::FromC(c)->ExternalUnref();
401
+ void grpc_call_unref(grpc_call* c) {
402
+ grpc_core::ExecCtx exec_ctx;
403
+ grpc_core::Call::FromC(c)->ExternalUnref();
4206
404
  }
4207
405
 
4208
406
  char* grpc_call_get_peer(grpc_call* call) {
4209
407
  return grpc_core::Call::FromC(call)->GetPeer();
4210
408
  }
4211
409
 
4212
- grpc_call* grpc_call_from_top_element(grpc_call_element* surface_element) {
4213
- return grpc_core::FilterStackCall::FromTopElem(surface_element)->c_ptr();
4214
- }
4215
-
4216
410
  grpc_call_error grpc_call_cancel(grpc_call* call, void* reserved) {
4217
411
  GRPC_API_TRACE("grpc_call_cancel(call=%p, reserved=%p)", 2, (call, reserved));
4218
- GPR_ASSERT(reserved == nullptr);
412
+ CHECK_EQ(reserved, nullptr);
4219
413
  if (call == nullptr) {
4220
414
  return GRPC_CALL_ERROR;
4221
415
  }
@@ -4233,7 +427,7 @@ grpc_call_error grpc_call_cancel_with_status(grpc_call* c,
4233
427
  "grpc_call_cancel_with_status("
4234
428
  "c=%p, status=%d, description=%s, reserved=%p)",
4235
429
  4, (c, (int)status, description, reserved));
4236
- GPR_ASSERT(reserved == nullptr);
430
+ CHECK_EQ(reserved, nullptr);
4237
431
  if (c == nullptr) {
4238
432
  return GRPC_CALL_ERROR;
4239
433
  }
@@ -4249,7 +443,7 @@ void grpc_call_cancel_internal(grpc_call* call) {
4249
443
 
4250
444
  grpc_compression_algorithm grpc_call_test_only_get_compression_algorithm(
4251
445
  grpc_call* call) {
4252
- return grpc_core::Call::FromC(call)->test_only_compression_algorithm();
446
+ return grpc_core::Call::FromC(call)->incoming_compression_algorithm();
4253
447
  }
4254
448
 
4255
449
  uint32_t grpc_call_test_only_get_message_flags(grpc_call* call) {
@@ -4293,13 +487,17 @@ grpc_call_error grpc_call_start_batch_and_execute(grpc_call* call,
4293
487
  return grpc_core::Call::FromC(call)->StartBatch(ops, nops, closure, true);
4294
488
  }
4295
489
 
4296
- void grpc_call_context_set(grpc_call* call, grpc_context_index elem,
4297
- void* value, void (*destroy)(void* value)) {
4298
- return grpc_core::Call::FromC(call)->ContextSet(elem, value, destroy);
490
+ void grpc_call_tracer_set(grpc_call* call,
491
+ grpc_core::ClientCallTracer* tracer) {
492
+ grpc_core::Arena* arena = grpc_call_get_arena(call);
493
+ return arena->SetContext<grpc_core::CallTracerAnnotationInterface>(tracer);
4299
494
  }
4300
495
 
4301
- void* grpc_call_context_get(grpc_call* call, grpc_context_index elem) {
4302
- return grpc_core::Call::FromC(call)->ContextGet(elem);
496
+ void* grpc_call_tracer_get(grpc_call* call) {
497
+ grpc_core::Arena* arena = grpc_call_get_arena(call);
498
+ auto* call_tracer =
499
+ arena->GetContext<grpc_core::CallTracerAnnotationInterface>();
500
+ return call_tracer;
4303
501
  }
4304
502
 
4305
503
  uint8_t grpc_call_is_client(grpc_call* call) {