grpc 1.47.0 → 1.57.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2720) hide show
  1. checksums.yaml +4 -4
  2. data/Makefile +591 -283
  3. data/include/grpc/byte_buffer.h +76 -1
  4. data/include/grpc/byte_buffer_reader.h +19 -1
  5. data/include/grpc/compression.h +2 -2
  6. data/include/grpc/event_engine/endpoint_config.h +11 -5
  7. data/include/grpc/event_engine/event_engine.h +130 -68
  8. data/include/grpc/event_engine/internal/memory_allocator_impl.h +1 -1
  9. data/include/grpc/event_engine/internal/slice_cast.h +67 -0
  10. data/include/grpc/event_engine/memory_allocator.h +1 -1
  11. data/include/grpc/event_engine/slice.h +24 -4
  12. data/include/grpc/event_engine/slice_buffer.h +52 -5
  13. data/include/grpc/fork.h +25 -1
  14. data/include/grpc/grpc.h +4 -14
  15. data/include/grpc/grpc_audit_logging.h +96 -0
  16. data/include/grpc/grpc_posix.h +1 -1
  17. data/include/grpc/grpc_security.h +23 -0
  18. data/include/grpc/impl/codegen/atm.h +3 -71
  19. data/include/grpc/impl/codegen/atm_gcc_atomic.h +3 -67
  20. data/include/grpc/impl/codegen/atm_gcc_sync.h +3 -61
  21. data/include/grpc/impl/codegen/atm_windows.h +3 -108
  22. data/include/grpc/impl/codegen/byte_buffer.h +4 -78
  23. data/include/grpc/impl/codegen/byte_buffer_reader.h +4 -19
  24. data/include/grpc/impl/codegen/compression_types.h +5 -83
  25. data/include/grpc/impl/codegen/connectivity_state.h +5 -21
  26. data/include/grpc/impl/codegen/fork.h +4 -25
  27. data/include/grpc/impl/codegen/gpr_types.h +4 -35
  28. data/include/grpc/impl/codegen/grpc_types.h +5 -791
  29. data/include/grpc/impl/codegen/log.h +3 -86
  30. data/include/grpc/impl/codegen/port_platform.h +3 -763
  31. data/include/grpc/impl/codegen/propagation_bits.h +3 -28
  32. data/include/grpc/impl/codegen/slice.h +3 -106
  33. data/include/grpc/impl/codegen/status.h +4 -131
  34. data/include/grpc/impl/codegen/sync.h +3 -42
  35. data/include/grpc/impl/codegen/sync_abseil.h +3 -12
  36. data/include/grpc/impl/codegen/sync_custom.h +3 -14
  37. data/include/grpc/impl/codegen/sync_generic.h +3 -25
  38. data/include/grpc/impl/codegen/sync_posix.h +3 -28
  39. data/include/grpc/impl/codegen/sync_windows.h +3 -16
  40. data/include/grpc/impl/compression_types.h +109 -0
  41. data/include/grpc/impl/connectivity_state.h +47 -0
  42. data/include/grpc/impl/grpc_types.h +841 -0
  43. data/include/grpc/impl/propagation_bits.h +54 -0
  44. data/include/grpc/impl/slice_type.h +112 -0
  45. data/include/grpc/load_reporting.h +1 -1
  46. data/include/grpc/module.modulemap +7 -1
  47. data/include/grpc/slice.h +1 -1
  48. data/include/grpc/status.h +131 -1
  49. data/include/grpc/support/atm.h +70 -1
  50. data/include/grpc/support/atm_gcc_atomic.h +59 -1
  51. data/include/grpc/support/atm_gcc_sync.h +58 -1
  52. data/include/grpc/support/atm_windows.h +105 -1
  53. data/include/grpc/support/json.h +218 -0
  54. data/include/grpc/support/log.h +87 -1
  55. data/include/grpc/support/log_windows.h +1 -1
  56. data/include/grpc/support/port_platform.h +773 -1
  57. data/include/grpc/support/string_util.h +1 -1
  58. data/include/grpc/support/sync.h +35 -2
  59. data/include/grpc/support/sync_abseil.h +11 -1
  60. data/include/grpc/support/sync_custom.h +13 -1
  61. data/include/grpc/support/sync_generic.h +24 -1
  62. data/include/grpc/support/sync_posix.h +27 -1
  63. data/include/grpc/support/sync_windows.h +15 -1
  64. data/include/grpc/support/time.h +31 -6
  65. data/src/core/ext/filters/backend_metrics/backend_metric_filter.cc +164 -0
  66. data/src/core/ext/filters/backend_metrics/backend_metric_filter.h +52 -0
  67. data/src/core/ext/filters/backend_metrics/backend_metric_provider.h +29 -0
  68. data/src/core/ext/filters/census/grpc_context.cc +19 -17
  69. data/src/core/ext/filters/channel_idle/channel_idle_filter.cc +49 -31
  70. data/src/core/ext/filters/channel_idle/channel_idle_filter.h +22 -5
  71. data/src/core/ext/filters/channel_idle/idle_filter_state.h +6 -4
  72. data/src/core/ext/filters/client_channel/backend_metric.cc +12 -1
  73. data/src/core/ext/filters/client_channel/backend_metric.h +3 -3
  74. data/src/core/ext/filters/client_channel/backup_poller.cc +32 -41
  75. data/src/core/ext/filters/client_channel/backup_poller.h +24 -27
  76. data/src/core/ext/filters/client_channel/channel_connectivity.cc +52 -29
  77. data/src/core/ext/filters/client_channel/client_channel.cc +1182 -1226
  78. data/src/core/ext/filters/client_channel/client_channel.h +176 -186
  79. data/src/core/ext/filters/client_channel/client_channel_channelz.cc +36 -37
  80. data/src/core/ext/filters/client_channel/client_channel_channelz.h +22 -22
  81. data/src/core/ext/filters/client_channel/client_channel_factory.cc +17 -46
  82. data/src/core/ext/filters/client_channel/client_channel_factory.h +5 -13
  83. data/src/core/ext/filters/client_channel/client_channel_internal.h +77 -0
  84. data/src/core/ext/filters/client_channel/client_channel_plugin.cc +18 -34
  85. data/src/core/ext/filters/client_channel/client_channel_service_config.cc +153 -0
  86. data/src/core/ext/filters/client_channel/{resolver_result_parsing.h → client_channel_service_config.h} +26 -26
  87. data/src/core/ext/filters/client_channel/config_selector.h +35 -57
  88. data/src/core/ext/filters/client_channel/connector.h +13 -10
  89. data/src/core/ext/filters/client_channel/dynamic_filters.cc +29 -54
  90. data/src/core/ext/filters/client_channel/dynamic_filters.h +13 -14
  91. data/src/core/ext/filters/client_channel/global_subchannel_pool.h +21 -21
  92. data/src/core/ext/filters/client_channel/http_proxy.cc +131 -113
  93. data/src/core/ext/filters/client_channel/http_proxy.h +36 -32
  94. data/src/core/ext/filters/client_channel/lb_policy/address_filtering.cc +22 -54
  95. data/src/core/ext/filters/client_channel/lb_policy/address_filtering.h +22 -10
  96. data/src/core/ext/filters/client_channel/lb_policy/backend_metric_data.h +29 -21
  97. data/src/core/ext/filters/client_channel/lb_policy/child_policy_handler.cc +47 -48
  98. data/src/core/ext/filters/client_channel/lb_policy/child_policy_handler.h +14 -14
  99. data/src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.cc +66 -132
  100. data/src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.h +41 -24
  101. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc +420 -479
  102. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.h +26 -27
  103. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.cc +14 -5
  104. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.h +9 -7
  105. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.cc +18 -20
  106. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.h +21 -22
  107. data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.cc +23 -22
  108. data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h +25 -25
  109. data/src/core/ext/filters/client_channel/lb_policy/health_check_client.cc +478 -0
  110. data/src/core/ext/filters/client_channel/lb_policy/health_check_client.h +52 -0
  111. data/src/core/ext/filters/client_channel/lb_policy/health_check_client_internal.h +202 -0
  112. data/src/core/ext/filters/client_channel/lb_policy/oob_backend_metric.cc +30 -105
  113. data/src/core/ext/filters/client_channel/lb_policy/oob_backend_metric.h +5 -5
  114. data/src/core/ext/filters/client_channel/lb_policy/oob_backend_metric_internal.h +119 -0
  115. data/src/core/ext/filters/client_channel/lb_policy/outlier_detection/outlier_detection.cc +533 -384
  116. data/src/core/ext/filters/client_channel/lb_policy/outlier_detection/outlier_detection.h +55 -8
  117. data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc +204 -160
  118. data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.h +25 -0
  119. data/src/core/ext/filters/client_channel/lb_policy/priority/priority.cc +298 -415
  120. data/src/core/ext/filters/client_channel/lb_policy/ring_hash/ring_hash.cc +388 -373
  121. data/src/core/ext/filters/client_channel/lb_policy/ring_hash/ring_hash.h +35 -10
  122. data/src/core/ext/filters/client_channel/lb_policy/rls/rls.cc +597 -718
  123. data/src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc +170 -148
  124. data/src/core/ext/filters/client_channel/lb_policy/subchannel_list.h +179 -125
  125. data/src/core/ext/filters/client_channel/lb_policy/weighted_round_robin/static_stride_scheduler.cc +198 -0
  126. data/src/core/ext/filters/client_channel/lb_policy/weighted_round_robin/static_stride_scheduler.h +71 -0
  127. data/src/core/ext/filters/client_channel/lb_policy/weighted_round_robin/weighted_round_robin.cc +1011 -0
  128. data/src/core/ext/filters/client_channel/lb_policy/weighted_target/weighted_target.cc +207 -261
  129. data/src/core/ext/filters/client_channel/lb_policy/xds/cds.cc +158 -232
  130. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_channel_args.h +11 -3
  131. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_impl.cc +180 -328
  132. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_manager.cc +182 -262
  133. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_resolver.cc +390 -514
  134. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_override_host.cc +780 -0
  135. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_override_host.h +67 -0
  136. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_wrr_locality.cc +301 -0
  137. data/src/core/ext/filters/client_channel/local_subchannel_pool.h +21 -21
  138. data/src/core/ext/filters/client_channel/resolver/binder/binder_resolver.cc +15 -18
  139. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc +457 -290
  140. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.h +30 -0
  141. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.h +42 -43
  142. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc +22 -23
  143. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc +92 -87
  144. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc +308 -232
  145. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h +69 -57
  146. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_posix.cc +18 -18
  147. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_windows.cc +18 -18
  148. data/src/core/ext/filters/client_channel/resolver/dns/dns_resolver_plugin.cc +60 -0
  149. data/src/core/ext/filters/client_channel/resolver/dns/dns_resolver_plugin.h +27 -0
  150. data/src/core/ext/filters/client_channel/resolver/dns/event_engine/event_engine_client_channel_resolver.cc +559 -0
  151. data/src/core/ext/filters/client_channel/resolver/dns/event_engine/event_engine_client_channel_resolver.h +35 -0
  152. data/src/core/ext/filters/client_channel/resolver/dns/event_engine/service_config_helper.cc +97 -0
  153. data/src/core/ext/filters/client_channel/resolver/dns/event_engine/service_config_helper.h +32 -0
  154. data/src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc +40 -48
  155. data/src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.h +24 -0
  156. data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.cc +9 -21
  157. data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.h +15 -4
  158. data/src/core/ext/filters/client_channel/resolver/google_c2p/google_c2p_resolver.cc +126 -246
  159. data/src/core/ext/filters/client_channel/resolver/polling_resolver.cc +129 -69
  160. data/src/core/ext/filters/client_channel/resolver/polling_resolver.h +26 -18
  161. data/src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc +34 -32
  162. data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.cc +616 -462
  163. data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.h +37 -4
  164. data/src/core/ext/filters/client_channel/retry_filter.cc +40 -2575
  165. data/src/core/ext/filters/client_channel/retry_filter.h +95 -4
  166. data/src/core/ext/filters/client_channel/retry_filter_legacy_call_data.cc +2052 -0
  167. data/src/core/ext/filters/client_channel/retry_filter_legacy_call_data.h +442 -0
  168. data/src/core/ext/filters/client_channel/retry_service_config.cc +195 -225
  169. data/src/core/ext/filters/client_channel/retry_service_config.h +22 -28
  170. data/src/core/ext/filters/client_channel/retry_throttle.cc +27 -29
  171. data/src/core/ext/filters/client_channel/retry_throttle.h +29 -28
  172. data/src/core/ext/filters/client_channel/service_config_channel_arg_filter.cc +47 -97
  173. data/src/core/ext/filters/client_channel/subchannel.cc +242 -478
  174. data/src/core/ext/filters/client_channel/subchannel.h +51 -121
  175. data/src/core/ext/filters/client_channel/subchannel_interface_internal.h +7 -4
  176. data/src/core/ext/filters/client_channel/subchannel_pool_interface.cc +6 -76
  177. data/src/core/ext/filters/client_channel/subchannel_pool_interface.h +37 -46
  178. data/src/core/ext/filters/client_channel/subchannel_stream_client.cc +46 -135
  179. data/src/core/ext/filters/client_channel/subchannel_stream_client.h +16 -17
  180. data/src/core/ext/filters/deadline/deadline_filter.cc +90 -76
  181. data/src/core/ext/filters/deadline/deadline_filter.h +14 -12
  182. data/src/core/ext/filters/fault_injection/fault_injection_filter.cc +43 -18
  183. data/src/core/ext/filters/fault_injection/fault_injection_filter.h +20 -11
  184. data/src/core/ext/filters/fault_injection/fault_injection_service_config_parser.cc +118 -0
  185. data/src/core/ext/filters/fault_injection/{service_config_parser.h → fault_injection_service_config_parser.h} +34 -13
  186. data/src/core/ext/filters/http/client/http_client_filter.cc +61 -48
  187. data/src/core/ext/filters/http/client/http_client_filter.h +29 -22
  188. data/src/core/ext/filters/http/client_authority_filter.cc +28 -28
  189. data/src/core/ext/filters/http/client_authority_filter.h +27 -24
  190. data/src/core/ext/filters/http/http_filters_plugin.cc +34 -53
  191. data/src/core/ext/filters/http/message_compress/compression_filter.cc +323 -0
  192. data/src/core/ext/filters/http/message_compress/compression_filter.h +139 -0
  193. data/src/core/ext/filters/http/server/http_server_filter.cc +63 -56
  194. data/src/core/ext/filters/http/server/http_server_filter.h +28 -23
  195. data/src/core/ext/filters/message_size/message_size_filter.cc +191 -288
  196. data/src/core/ext/filters/message_size/message_size_filter.h +82 -20
  197. data/src/core/ext/filters/rbac/rbac_filter.cc +54 -113
  198. data/src/core/ext/filters/rbac/rbac_filter.h +19 -29
  199. data/src/core/ext/filters/rbac/rbac_service_config_parser.cc +838 -532
  200. data/src/core/ext/filters/rbac/rbac_service_config_parser.h +18 -7
  201. data/src/core/ext/filters/server_config_selector/server_config_selector.h +20 -8
  202. data/src/core/ext/filters/server_config_selector/server_config_selector_filter.cc +33 -19
  203. data/src/core/ext/filters/server_config_selector/server_config_selector_filter.h +4 -3
  204. data/src/core/ext/filters/stateful_session/stateful_session_filter.cc +296 -0
  205. data/src/core/ext/filters/stateful_session/stateful_session_filter.h +75 -0
  206. data/src/core/ext/filters/stateful_session/stateful_session_service_config_parser.cc +82 -0
  207. data/src/core/ext/filters/stateful_session/stateful_session_service_config_parser.h +93 -0
  208. data/src/core/ext/gcp/metadata_query.cc +137 -0
  209. data/src/core/ext/gcp/metadata_query.h +87 -0
  210. data/src/core/ext/transport/chttp2/alpn/alpn.cc +18 -18
  211. data/src/core/ext/transport/chttp2/alpn/alpn.h +24 -24
  212. data/src/core/ext/transport/chttp2/client/chttp2_connector.cc +109 -131
  213. data/src/core/ext/transport/chttp2/client/chttp2_connector.h +30 -24
  214. data/src/core/ext/transport/chttp2/server/chttp2_server.cc +229 -247
  215. data/src/core/ext/transport/chttp2/server/chttp2_server.h +25 -27
  216. data/src/core/ext/transport/chttp2/transport/bin_decoder.cc +22 -22
  217. data/src/core/ext/transport/chttp2/transport/bin_decoder.h +33 -33
  218. data/src/core/ext/transport/chttp2/transport/bin_encoder.cc +42 -38
  219. data/src/core/ext/transport/chttp2/transport/bin_encoder.h +35 -31
  220. data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +1032 -1289
  221. data/src/core/ext/transport/chttp2/transport/chttp2_transport.h +46 -25
  222. data/src/core/ext/transport/chttp2/transport/context_list_entry.h +70 -0
  223. data/src/core/ext/transport/chttp2/transport/decode_huff.cc +6646 -0
  224. data/src/core/ext/transport/chttp2/transport/decode_huff.h +2808 -0
  225. data/src/core/ext/transport/chttp2/transport/flow_control.cc +290 -290
  226. data/src/core/ext/transport/chttp2/transport/flow_control.h +246 -326
  227. data/src/core/ext/transport/chttp2/transport/frame.h +21 -21
  228. data/src/core/ext/transport/chttp2/transport/frame_data.cc +84 -239
  229. data/src/core/ext/transport/chttp2/transport/frame_data.h +36 -62
  230. data/src/core/ext/transport/chttp2/transport/frame_goaway.cc +38 -36
  231. data/src/core/ext/transport/chttp2/transport/frame_goaway.h +20 -20
  232. data/src/core/ext/transport/chttp2/transport/frame_ping.cc +30 -36
  233. data/src/core/ext/transport/chttp2/transport/frame_ping.h +21 -24
  234. data/src/core/ext/transport/chttp2/transport/frame_rst_stream.cc +30 -25
  235. data/src/core/ext/transport/chttp2/transport/frame_rst_stream.h +21 -21
  236. data/src/core/ext/transport/chttp2/transport/frame_settings.cc +39 -78
  237. data/src/core/ext/transport/chttp2/transport/frame_settings.h +22 -22
  238. data/src/core/ext/transport/chttp2/transport/frame_window_update.cc +31 -33
  239. data/src/core/ext/transport/chttp2/transport/frame_window_update.h +21 -21
  240. data/src/core/ext/transport/chttp2/transport/hpack_constants.h +10 -4
  241. data/src/core/ext/transport/chttp2/transport/hpack_encoder.cc +212 -365
  242. data/src/core/ext/transport/chttp2/transport/hpack_encoder.h +328 -160
  243. data/src/core/ext/transport/chttp2/transport/hpack_encoder_table.cc +4 -2
  244. data/src/core/ext/transport/chttp2/transport/hpack_encoder_table.h +13 -5
  245. data/src/core/ext/transport/chttp2/transport/hpack_parse_result.cc +176 -0
  246. data/src/core/ext/transport/chttp2/transport/hpack_parse_result.h +326 -0
  247. data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +722 -950
  248. data/src/core/ext/transport/chttp2/transport/hpack_parser.h +179 -34
  249. data/src/core/ext/transport/chttp2/transport/hpack_parser_table.cc +79 -72
  250. data/src/core/ext/transport/chttp2/transport/hpack_parser_table.h +58 -31
  251. data/src/core/ext/transport/chttp2/transport/http2_settings.cc +21 -19
  252. data/src/core/ext/transport/chttp2/transport/http2_settings.h +39 -37
  253. data/src/core/ext/transport/chttp2/transport/http_trace.cc +19 -0
  254. data/src/core/ext/transport/chttp2/transport/http_trace.h +24 -0
  255. data/src/core/ext/transport/chttp2/transport/huffsyms.cc +20 -20
  256. data/src/core/ext/transport/chttp2/transport/huffsyms.h +21 -21
  257. data/src/core/ext/transport/chttp2/transport/internal.h +240 -307
  258. data/src/core/ext/transport/chttp2/transport/parsing.cc +367 -144
  259. data/src/core/ext/transport/chttp2/transport/stream_lists.cc +19 -23
  260. data/src/core/ext/transport/chttp2/transport/varint.cc +19 -20
  261. data/src/core/ext/transport/chttp2/transport/varint.h +37 -34
  262. data/src/core/ext/transport/chttp2/transport/writing.cc +111 -105
  263. data/src/core/ext/transport/inproc/inproc_plugin.cc +17 -18
  264. data/src/core/ext/transport/inproc/inproc_transport.cc +244 -288
  265. data/src/core/ext/transport/inproc/inproc_transport.h +23 -21
  266. data/src/core/ext/upb-generated/envoy/admin/v3/certs.upb.c +87 -52
  267. data/src/core/ext/upb-generated/envoy/admin/v3/certs.upb.h +435 -182
  268. data/src/core/ext/upb-generated/envoy/admin/v3/clusters.upb.c +121 -59
  269. data/src/core/ext/upb-generated/envoy/admin/v3/clusters.upb.h +502 -220
  270. data/src/core/ext/upb-generated/envoy/admin/v3/config_dump.upb.c +93 -377
  271. data/src/core/ext/upb-generated/envoy/admin/v3/config_dump.upb.h +468 -1881
  272. data/src/core/ext/upb-generated/envoy/admin/v3/config_dump_shared.upb.c +535 -0
  273. data/src/core/ext/upb-generated/envoy/admin/v3/config_dump_shared.upb.h +2796 -0
  274. data/src/core/ext/upb-generated/envoy/admin/v3/init_dump.upb.c +30 -17
  275. data/src/core/ext/upb-generated/envoy/admin/v3/init_dump.upb.h +152 -47
  276. data/src/core/ext/upb-generated/envoy/admin/v3/listeners.upb.c +34 -19
  277. data/src/core/ext/upb-generated/envoy/admin/v3/listeners.upb.h +176 -49
  278. data/src/core/ext/upb-generated/envoy/admin/v3/memory.upb.c +27 -14
  279. data/src/core/ext/upb-generated/envoy/admin/v3/memory.upb.h +82 -38
  280. data/src/core/ext/upb-generated/envoy/admin/v3/metrics.upb.c +20 -11
  281. data/src/core/ext/upb-generated/envoy/admin/v3/metrics.upb.h +52 -26
  282. data/src/core/ext/upb-generated/envoy/admin/v3/mutex_stats.upb.c +20 -11
  283. data/src/core/ext/upb-generated/envoy/admin/v3/mutex_stats.upb.h +52 -26
  284. data/src/core/ext/upb-generated/envoy/admin/v3/server_info.upb.c +109 -62
  285. data/src/core/ext/upb-generated/envoy/admin/v3/server_info.upb.h +574 -244
  286. data/src/core/ext/upb-generated/envoy/admin/v3/tap.upb.c +21 -12
  287. data/src/core/ext/upb-generated/envoy/admin/v3/tap.upb.h +49 -30
  288. data/src/core/ext/upb-generated/envoy/annotations/deprecation.upb.c +22 -19
  289. data/src/core/ext/upb-generated/envoy/annotations/deprecation.upb.h +82 -29
  290. data/src/core/ext/upb-generated/envoy/annotations/resource.upb.c +23 -16
  291. data/src/core/ext/upb-generated/envoy/annotations/resource.upb.h +49 -30
  292. data/src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.c +255 -147
  293. data/src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.h +938 -406
  294. data/src/core/ext/upb-generated/envoy/config/bootstrap/v3/bootstrap.upb.c +417 -256
  295. data/src/core/ext/upb-generated/envoy/config/bootstrap/v3/bootstrap.upb.h +1954 -858
  296. data/src/core/ext/upb-generated/envoy/config/cluster/v3/circuit_breaker.upb.c +74 -41
  297. data/src/core/ext/upb-generated/envoy/config/cluster/v3/circuit_breaker.upb.h +298 -148
  298. data/src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.c +537 -348
  299. data/src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.h +2136 -1171
  300. data/src/core/ext/upb-generated/envoy/config/cluster/v3/filter.upb.c +21 -12
  301. data/src/core/ext/upb-generated/envoy/config/cluster/v3/filter.upb.h +49 -30
  302. data/src/core/ext/upb-generated/envoy/config/cluster/v3/outlier_detection.upb.c +89 -52
  303. data/src/core/ext/upb-generated/envoy/config/cluster/v3/outlier_detection.upb.h +351 -232
  304. data/src/core/ext/upb-generated/envoy/config/common/matcher/v3/matcher.upb.c +264 -165
  305. data/src/core/ext/upb-generated/envoy/config/common/matcher/v3/matcher.upb.h +948 -480
  306. data/src/core/ext/upb-generated/envoy/config/core/v3/address.upb.c +154 -72
  307. data/src/core/ext/upb-generated/envoy/config/core/v3/address.upb.h +631 -213
  308. data/src/core/ext/upb-generated/envoy/config/core/v3/backoff.upb.c +22 -13
  309. data/src/core/ext/upb-generated/envoy/config/core/v3/backoff.upb.h +54 -36
  310. data/src/core/ext/upb-generated/envoy/config/core/v3/base.upb.c +380 -219
  311. data/src/core/ext/upb-generated/envoy/config/core/v3/base.upb.h +1263 -598
  312. data/src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.c +157 -92
  313. data/src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.h +655 -292
  314. data/src/core/ext/upb-generated/envoy/config/core/v3/event_service_config.upb.c +18 -11
  315. data/src/core/ext/upb-generated/envoy/config/core/v3/event_service_config.upb.h +41 -26
  316. data/src/core/ext/upb-generated/envoy/config/core/v3/extension.upb.c +21 -12
  317. data/src/core/ext/upb-generated/envoy/config/core/v3/extension.upb.h +49 -30
  318. data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_method_list.upb.c +30 -17
  319. data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_method_list.upb.h +152 -47
  320. data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.c +279 -167
  321. data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.h +870 -440
  322. data/src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.c +226 -128
  323. data/src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.h +1216 -484
  324. data/src/core/ext/upb-generated/envoy/config/core/v3/http_uri.upb.c +22 -13
  325. data/src/core/ext/upb-generated/envoy/config/core/v3/http_uri.upb.h +64 -37
  326. data/src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.c +369 -207
  327. data/src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.h +1198 -620
  328. data/src/core/ext/upb-generated/envoy/config/core/v3/proxy_protocol.upb.c +44 -11
  329. data/src/core/ext/upb-generated/envoy/config/core/v3/proxy_protocol.upb.h +179 -18
  330. data/src/core/ext/upb-generated/envoy/config/core/v3/resolver.upb.c +34 -19
  331. data/src/core/ext/upb-generated/envoy/config/core/v3/resolver.upb.h +127 -57
  332. data/src/core/ext/upb-generated/envoy/config/core/v3/socket_option.upb.c +48 -16
  333. data/src/core/ext/upb-generated/envoy/config/core/v3/socket_option.upb.h +193 -44
  334. data/src/core/ext/upb-generated/envoy/config/core/v3/substitution_format_string.upb.c +31 -18
  335. data/src/core/ext/upb-generated/envoy/config/core/v3/substitution_format_string.upb.h +147 -65
  336. data/src/core/ext/upb-generated/envoy/config/core/v3/udp_socket_config.upb.c +22 -13
  337. data/src/core/ext/upb-generated/envoy/config/core/v3/udp_socket_config.upb.h +55 -37
  338. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint.upb.c +78 -43
  339. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint.upb.h +277 -127
  340. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint_components.upb.c +147 -84
  341. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint_components.upb.h +479 -227
  342. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/load_report.upb.c +115 -62
  343. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/load_report.upb.h +579 -227
  344. data/src/core/ext/upb-generated/envoy/config/listener/v3/api_listener.upb.c +18 -11
  345. data/src/core/ext/upb-generated/envoy/config/listener/v3/api_listener.upb.h +39 -26
  346. data/src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.c +198 -94
  347. data/src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.h +1072 -358
  348. data/src/core/ext/upb-generated/envoy/config/listener/v3/listener_components.upb.c +172 -95
  349. data/src/core/ext/upb-generated/envoy/config/listener/v3/listener_components.upb.h +893 -375
  350. data/src/core/ext/upb-generated/envoy/config/listener/v3/quic_config.upb.c +49 -23
  351. data/src/core/ext/upb-generated/envoy/config/listener/v3/quic_config.upb.h +186 -89
  352. data/src/core/ext/upb-generated/envoy/config/listener/v3/udp_listener_config.upb.c +40 -16
  353. data/src/core/ext/upb-generated/envoy/config/listener/v3/udp_listener_config.upb.h +95 -45
  354. data/src/core/ext/upb-generated/envoy/config/metrics/v3/metrics_service.upb.c +29 -15
  355. data/src/core/ext/upb-generated/envoy/config/metrics/v3/metrics_service.upb.h +96 -45
  356. data/src/core/ext/upb-generated/envoy/config/metrics/v3/stats.upb.c +131 -74
  357. data/src/core/ext/upb-generated/envoy/config/metrics/v3/stats.upb.h +521 -249
  358. data/src/core/ext/upb-generated/envoy/config/overload/v3/overload.upb.c +163 -84
  359. data/src/core/ext/upb-generated/envoy/config/overload/v3/overload.upb.h +717 -241
  360. data/src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.c +263 -121
  361. data/src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.h +1083 -374
  362. data/src/core/ext/upb-generated/envoy/config/route/v3/route.upb.c +83 -48
  363. data/src/core/ext/upb-generated/envoy/config/route/v3/route.upb.h +656 -232
  364. data/src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.c +1317 -722
  365. data/src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.h +5948 -2306
  366. data/src/core/ext/upb-generated/envoy/config/route/v3/scoped_route.upb.c +49 -28
  367. data/src/core/ext/upb-generated/envoy/config/route/v3/scoped_route.upb.h +177 -85
  368. data/src/core/ext/upb-generated/envoy/config/tap/v3/common.upb.c +223 -117
  369. data/src/core/ext/upb-generated/envoy/config/tap/v3/common.upb.h +847 -369
  370. data/src/core/ext/upb-generated/envoy/config/trace/v3/datadog.upb.c +20 -10
  371. data/src/core/ext/upb-generated/envoy/config/trace/v3/datadog.upb.h +57 -22
  372. data/src/core/ext/upb-generated/envoy/config/trace/v3/dynamic_ot.upb.c +21 -12
  373. data/src/core/ext/upb-generated/envoy/config/trace/v3/dynamic_ot.upb.h +49 -30
  374. data/src/core/ext/upb-generated/envoy/config/trace/v3/http_tracer.upb.c +32 -19
  375. data/src/core/ext/upb-generated/envoy/config/trace/v3/http_tracer.upb.h +78 -49
  376. data/src/core/ext/upb-generated/envoy/config/trace/v3/lightstep.upb.c +27 -14
  377. data/src/core/ext/upb-generated/envoy/config/trace/v3/lightstep.upb.h +114 -43
  378. data/src/core/ext/upb-generated/envoy/config/trace/v3/opencensus.upb.c +46 -25
  379. data/src/core/ext/upb-generated/envoy/config/trace/v3/opencensus.upb.h +263 -100
  380. data/src/core/ext/upb-generated/envoy/config/trace/v3/opentelemetry.upb.c +55 -0
  381. data/src/core/ext/upb-generated/envoy/config/trace/v3/opentelemetry.upb.h +122 -0
  382. data/src/core/ext/upb-generated/envoy/config/trace/v3/service.upb.c +18 -11
  383. data/src/core/ext/upb-generated/envoy/config/trace/v3/service.upb.h +39 -26
  384. data/src/core/ext/upb-generated/envoy/config/trace/v3/skywalking.upb.c +42 -23
  385. data/src/core/ext/upb-generated/envoy/config/trace/v3/skywalking.upb.h +116 -70
  386. data/src/core/ext/upb-generated/envoy/config/trace/v3/trace.upb.c +8 -4
  387. data/src/core/ext/upb-generated/envoy/config/trace/v3/trace.upb.h +21 -15
  388. data/src/core/ext/upb-generated/envoy/config/trace/v3/xray.upb.c +43 -24
  389. data/src/core/ext/upb-generated/envoy/config/trace/v3/xray.upb.h +118 -75
  390. data/src/core/ext/upb-generated/envoy/config/trace/v3/zipkin.upb.c +30 -16
  391. data/src/core/ext/upb-generated/envoy/config/trace/v3/zipkin.upb.h +104 -46
  392. data/src/core/ext/upb-generated/envoy/data/accesslog/v3/accesslog.upb.c +558 -0
  393. data/src/core/ext/upb-generated/envoy/data/accesslog/v3/accesslog.upb.h +2710 -0
  394. data/src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3/cluster.upb.c +16 -9
  395. data/src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3/cluster.upb.h +77 -23
  396. data/src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3/fault.upb.c +60 -37
  397. data/src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3/fault.upb.h +170 -108
  398. data/src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3/fault.upb.c +93 -43
  399. data/src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3/fault.upb.h +398 -167
  400. data/src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3/rbac.upb.c +47 -21
  401. data/src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3/rbac.upb.h +146 -58
  402. data/src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3/router.upb.c +69 -20
  403. data/src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3/router.upb.h +367 -67
  404. data/src/core/ext/upb-generated/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb.c +75 -0
  405. data/src/core/ext/upb-generated/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb.h +201 -0
  406. data/src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.c +506 -287
  407. data/src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h +2382 -1015
  408. data/src/core/ext/upb-generated/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb.c +53 -0
  409. data/src/core/ext/upb-generated/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb.h +107 -0
  410. data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb.c +70 -0
  411. data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb.h +246 -0
  412. data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/common/v3/common.upb.c +138 -0
  413. data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/common/v3/common.upb.h +499 -0
  414. data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb.c +47 -0
  415. data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb.h +93 -0
  416. data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb.c +71 -0
  417. data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb.h +257 -0
  418. data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb.c +53 -0
  419. data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb.h +107 -0
  420. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/cert.upb.c +7 -4
  421. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/cert.upb.h +15 -10
  422. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/common.upb.c +184 -94
  423. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/common.upb.h +948 -349
  424. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/secret.upb.c +56 -33
  425. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/secret.upb.h +162 -101
  426. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls.upb.c +188 -109
  427. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls.upb.h +855 -408
  428. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb.c +32 -19
  429. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb.h +118 -54
  430. data/src/core/ext/upb-generated/envoy/service/discovery/v3/ads.upb.c +10 -7
  431. data/src/core/ext/upb-generated/envoy/service/discovery/v3/ads.upb.h +22 -14
  432. data/src/core/ext/upb-generated/envoy/service/discovery/v3/discovery.upb.c +325 -85
  433. data/src/core/ext/upb-generated/envoy/service/discovery/v3/discovery.upb.h +1705 -299
  434. data/src/core/ext/upb-generated/envoy/service/load_stats/v3/lrs.upb.c +42 -23
  435. data/src/core/ext/upb-generated/envoy/service/load_stats/v3/lrs.upb.h +197 -76
  436. data/src/core/ext/upb-generated/envoy/service/status/v3/csds.upb.c +131 -84
  437. data/src/core/ext/upb-generated/envoy/service/status/v3/csds.upb.h +531 -239
  438. data/src/core/ext/upb-generated/envoy/type/http/v3/cookie.upb.c +22 -13
  439. data/src/core/ext/upb-generated/envoy/type/http/v3/cookie.upb.h +59 -34
  440. data/src/core/ext/upb-generated/envoy/type/http/v3/path_transformation.upb.c +39 -26
  441. data/src/core/ext/upb-generated/envoy/type/http/v3/path_transformation.upb.h +141 -69
  442. data/src/core/ext/upb-generated/envoy/type/matcher/v3/filter_state.upb.c +56 -0
  443. data/src/core/ext/upb-generated/envoy/type/matcher/v3/filter_state.upb.h +130 -0
  444. data/src/core/ext/upb-generated/envoy/type/matcher/v3/http_inputs.upb.c +60 -26
  445. data/src/core/ext/upb-generated/envoy/type/matcher/v3/http_inputs.upb.h +146 -51
  446. data/src/core/ext/upb-generated/envoy/type/matcher/v3/metadata.upb.c +37 -20
  447. data/src/core/ext/upb-generated/envoy/type/matcher/v3/metadata.upb.h +141 -63
  448. data/src/core/ext/upb-generated/envoy/type/matcher/v3/node.upb.c +22 -13
  449. data/src/core/ext/upb-generated/envoy/type/matcher/v3/node.upb.h +95 -40
  450. data/src/core/ext/upb-generated/envoy/type/matcher/v3/number.upb.c +21 -12
  451. data/src/core/ext/upb-generated/envoy/type/matcher/v3/number.upb.h +54 -32
  452. data/src/core/ext/upb-generated/envoy/type/matcher/v3/path.upb.c +18 -11
  453. data/src/core/ext/upb-generated/envoy/type/matcher/v3/path.upb.h +41 -26
  454. data/src/core/ext/upb-generated/envoy/type/matcher/v3/regex.upb.c +46 -27
  455. data/src/core/ext/upb-generated/envoy/type/matcher/v3/regex.upb.h +113 -70
  456. data/src/core/ext/upb-generated/envoy/type/matcher/v3/status_code_input.upb.c +46 -0
  457. data/src/core/ext/upb-generated/envoy/type/matcher/v3/status_code_input.upb.h +117 -0
  458. data/src/core/ext/upb-generated/envoy/type/matcher/v3/string.upb.c +40 -23
  459. data/src/core/ext/upb-generated/envoy/type/matcher/v3/string.upb.h +170 -76
  460. data/src/core/ext/upb-generated/envoy/type/matcher/v3/struct.upb.c +31 -18
  461. data/src/core/ext/upb-generated/envoy/type/matcher/v3/struct.upb.h +123 -57
  462. data/src/core/ext/upb-generated/envoy/type/matcher/v3/value.upb.c +46 -29
  463. data/src/core/ext/upb-generated/envoy/type/matcher/v3/value.upb.h +151 -91
  464. data/src/core/ext/upb-generated/envoy/type/metadata/v3/metadata.upb.c +65 -42
  465. data/src/core/ext/upb-generated/envoy/type/metadata/v3/metadata.upb.h +228 -121
  466. data/src/core/ext/upb-generated/envoy/type/tracing/v3/custom_tag.upb.c +80 -45
  467. data/src/core/ext/upb-generated/envoy/type/tracing/v3/custom_tag.upb.h +228 -131
  468. data/src/core/ext/upb-generated/envoy/type/v3/hash_policy.upb.c +34 -21
  469. data/src/core/ext/upb-generated/envoy/type/v3/hash_policy.upb.h +86 -53
  470. data/src/core/ext/upb-generated/envoy/type/v3/http.upb.c +7 -4
  471. data/src/core/ext/upb-generated/envoy/type/v3/http.upb.h +13 -8
  472. data/src/core/ext/upb-generated/envoy/type/v3/http_status.upb.c +16 -9
  473. data/src/core/ext/upb-generated/envoy/type/v3/http_status.upb.h +32 -18
  474. data/src/core/ext/upb-generated/envoy/type/v3/percent.upb.c +28 -15
  475. data/src/core/ext/upb-generated/envoy/type/v3/percent.upb.h +63 -34
  476. data/src/core/ext/upb-generated/envoy/type/v3/range.upb.c +43 -22
  477. data/src/core/ext/upb-generated/envoy/type/v3/range.upb.h +103 -53
  478. data/src/core/ext/upb-generated/envoy/type/v3/ratelimit_strategy.upb.c +78 -0
  479. data/src/core/ext/upb-generated/envoy/type/v3/ratelimit_strategy.upb.h +237 -0
  480. data/src/core/ext/upb-generated/envoy/type/v3/ratelimit_unit.upb.c +7 -4
  481. data/src/core/ext/upb-generated/envoy/type/v3/ratelimit_unit.upb.h +16 -9
  482. data/src/core/ext/upb-generated/envoy/type/v3/semantic_version.upb.c +20 -11
  483. data/src/core/ext/upb-generated/envoy/type/v3/semantic_version.upb.h +52 -26
  484. data/src/core/ext/upb-generated/envoy/type/v3/token_bucket.upb.c +23 -14
  485. data/src/core/ext/upb-generated/envoy/type/v3/token_bucket.upb.h +65 -41
  486. data/src/core/ext/upb-generated/google/api/annotations.upb.c +14 -11
  487. data/src/core/ext/upb-generated/google/api/annotations.upb.h +30 -20
  488. data/src/core/ext/upb-generated/google/api/expr/v1alpha1/checked.upb.c +255 -154
  489. data/src/core/ext/upb-generated/google/api/expr/v1alpha1/checked.upb.h +979 -451
  490. data/src/core/ext/upb-generated/google/api/expr/v1alpha1/syntax.upb.c +299 -180
  491. data/src/core/ext/upb-generated/google/api/expr/v1alpha1/syntax.upb.h +995 -484
  492. data/src/core/ext/upb-generated/google/api/http.upb.c +68 -35
  493. data/src/core/ext/upb-generated/google/api/http.upb.h +297 -121
  494. data/src/core/ext/upb-generated/google/api/httpbody.upb.c +22 -13
  495. data/src/core/ext/upb-generated/google/api/httpbody.upb.h +99 -37
  496. data/src/core/ext/upb-generated/google/protobuf/any.upb.c +19 -10
  497. data/src/core/ext/upb-generated/google/protobuf/any.upb.h +42 -22
  498. data/src/core/ext/upb-generated/google/protobuf/descriptor.upb.c +1037 -442
  499. data/src/core/ext/upb-generated/google/protobuf/descriptor.upb.h +3972 -1411
  500. data/src/core/ext/upb-generated/google/protobuf/duration.upb.c +19 -10
  501. data/src/core/ext/upb-generated/google/protobuf/duration.upb.h +42 -22
  502. data/src/core/ext/upb-generated/google/protobuf/empty.upb.c +10 -7
  503. data/src/core/ext/upb-generated/google/protobuf/empty.upb.h +22 -14
  504. data/src/core/ext/upb-generated/google/protobuf/struct.upb.c +62 -39
  505. data/src/core/ext/upb-generated/google/protobuf/struct.upb.h +220 -103
  506. data/src/core/ext/upb-generated/google/protobuf/timestamp.upb.c +19 -10
  507. data/src/core/ext/upb-generated/google/protobuf/timestamp.upb.h +42 -22
  508. data/src/core/ext/upb-generated/google/protobuf/wrappers.upb.c +90 -51
  509. data/src/core/ext/upb-generated/google/protobuf/wrappers.upb.h +193 -107
  510. data/src/core/ext/upb-generated/google/rpc/status.upb.c +22 -13
  511. data/src/core/ext/upb-generated/google/rpc/status.upb.h +99 -37
  512. data/src/core/ext/upb-generated/opencensus/proto/trace/v1/trace_config.upb.c +59 -34
  513. data/src/core/ext/upb-generated/opencensus/proto/trace/v1/trace_config.upb.h +170 -92
  514. data/src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.c +43 -24
  515. data/src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.h +122 -60
  516. data/src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.c +250 -145
  517. data/src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.h +960 -416
  518. data/src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.c +34 -19
  519. data/src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.h +84 -51
  520. data/src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.c +25 -14
  521. data/src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.h +53 -30
  522. data/src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.c +144 -81
  523. data/src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.h +442 -218
  524. data/src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls.upb.c +51 -26
  525. data/src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls.upb.h +161 -61
  526. data/src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls_config.upb.c +173 -102
  527. data/src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls_config.upb.h +884 -299
  528. data/src/core/ext/upb-generated/udpa/annotations/migrate.upb.c +68 -49
  529. data/src/core/ext/upb-generated/udpa/annotations/migrate.upb.h +167 -104
  530. data/src/core/ext/upb-generated/udpa/annotations/security.upb.c +26 -17
  531. data/src/core/ext/upb-generated/udpa/annotations/security.upb.h +59 -34
  532. data/src/core/ext/upb-generated/udpa/annotations/sensitive.upb.c +12 -9
  533. data/src/core/ext/upb-generated/udpa/annotations/sensitive.upb.h +31 -14
  534. data/src/core/ext/upb-generated/udpa/annotations/status.upb.c +26 -17
  535. data/src/core/ext/upb-generated/udpa/annotations/status.upb.h +59 -34
  536. data/src/core/ext/upb-generated/udpa/annotations/versioning.upb.c +23 -16
  537. data/src/core/ext/upb-generated/udpa/annotations/versioning.upb.h +49 -30
  538. data/src/core/ext/upb-generated/validate/validate.upb.c +846 -456
  539. data/src/core/ext/upb-generated/validate/validate.upb.h +4439 -1908
  540. data/src/core/ext/upb-generated/xds/annotations/v3/migrate.upb.c +68 -49
  541. data/src/core/ext/upb-generated/xds/annotations/v3/migrate.upb.h +167 -104
  542. data/src/core/ext/upb-generated/xds/annotations/v3/security.upb.c +26 -17
  543. data/src/core/ext/upb-generated/xds/annotations/v3/security.upb.h +59 -34
  544. data/src/core/ext/upb-generated/xds/annotations/v3/sensitive.upb.c +12 -9
  545. data/src/core/ext/upb-generated/xds/annotations/v3/sensitive.upb.h +31 -14
  546. data/src/core/ext/upb-generated/xds/annotations/v3/status.upb.c +65 -44
  547. data/src/core/ext/upb-generated/xds/annotations/v3/status.upb.h +153 -91
  548. data/src/core/ext/upb-generated/xds/annotations/v3/versioning.upb.c +23 -16
  549. data/src/core/ext/upb-generated/xds/annotations/v3/versioning.upb.h +49 -30
  550. data/src/core/ext/upb-generated/xds/core/v3/authority.upb.c +16 -9
  551. data/src/core/ext/upb-generated/xds/core/v3/authority.upb.h +32 -18
  552. data/src/core/ext/upb-generated/xds/core/v3/cidr.upb.c +56 -0
  553. data/src/core/ext/upb-generated/xds/core/v3/cidr.upb.h +122 -0
  554. data/src/core/ext/upb-generated/xds/core/v3/collection_entry.upb.c +37 -22
  555. data/src/core/ext/upb-generated/xds/core/v3/collection_entry.upb.h +104 -63
  556. data/src/core/ext/upb-generated/xds/core/v3/context_params.upb.c +26 -17
  557. data/src/core/ext/upb-generated/xds/core/v3/context_params.upb.h +56 -29
  558. data/src/core/ext/upb-generated/xds/core/v3/extension.upb.c +21 -12
  559. data/src/core/ext/upb-generated/xds/core/v3/extension.upb.h +49 -30
  560. data/src/core/ext/upb-generated/xds/core/v3/resource.upb.c +23 -14
  561. data/src/core/ext/upb-generated/xds/core/v3/resource.upb.h +66 -42
  562. data/src/core/ext/upb-generated/xds/core/v3/resource_locator.upb.c +44 -25
  563. data/src/core/ext/upb-generated/xds/core/v3/resource_locator.upb.h +177 -79
  564. data/src/core/ext/upb-generated/xds/core/v3/resource_name.upb.c +27 -14
  565. data/src/core/ext/upb-generated/xds/core/v3/resource_name.upb.h +69 -38
  566. data/src/core/ext/upb-generated/xds/data/orca/v3/orca_load_report.upb.c +86 -30
  567. data/src/core/ext/upb-generated/xds/data/orca/v3/orca_load_report.upb.h +227 -54
  568. data/src/core/ext/upb-generated/xds/service/orca/v3/orca.upb.c +21 -13
  569. data/src/core/ext/upb-generated/xds/service/orca/v3/orca.upb.h +93 -34
  570. data/src/core/ext/upb-generated/xds/type/matcher/v3/cel.upb.c +53 -0
  571. data/src/core/ext/upb-generated/xds/type/matcher/v3/cel.upb.h +107 -0
  572. data/src/core/ext/upb-generated/xds/type/matcher/v3/domain.upb.c +75 -0
  573. data/src/core/ext/upb-generated/xds/type/matcher/v3/domain.upb.h +270 -0
  574. data/src/core/ext/upb-generated/xds/type/matcher/v3/http_inputs.upb.c +39 -0
  575. data/src/core/ext/upb-generated/xds/type/matcher/v3/http_inputs.upb.h +78 -0
  576. data/src/core/ext/upb-generated/xds/type/matcher/v3/ip.upb.c +78 -0
  577. data/src/core/ext/upb-generated/xds/type/matcher/v3/ip.upb.h +289 -0
  578. data/src/core/ext/upb-generated/xds/type/matcher/v3/matcher.upb.c +162 -101
  579. data/src/core/ext/upb-generated/xds/type/matcher/v3/matcher.upb.h +539 -295
  580. data/src/core/ext/upb-generated/xds/type/matcher/v3/range.upb.c +160 -0
  581. data/src/core/ext/upb-generated/xds/type/matcher/v3/range.upb.h +740 -0
  582. data/src/core/ext/upb-generated/xds/type/matcher/v3/regex.upb.c +24 -15
  583. data/src/core/ext/upb-generated/xds/type/matcher/v3/regex.upb.h +61 -37
  584. data/src/core/ext/upb-generated/xds/type/matcher/v3/string.upb.c +40 -23
  585. data/src/core/ext/upb-generated/xds/type/matcher/v3/string.upb.h +170 -76
  586. data/src/core/ext/upb-generated/xds/type/v3/cel.upb.c +82 -0
  587. data/src/core/ext/upb-generated/xds/type/v3/cel.upb.h +240 -0
  588. data/src/core/ext/upb-generated/xds/type/v3/range.upb.c +85 -0
  589. data/src/core/ext/upb-generated/xds/type/v3/range.upb.h +246 -0
  590. data/src/core/ext/upb-generated/xds/type/v3/typed_struct.upb.c +21 -13
  591. data/src/core/ext/upb-generated/xds/type/v3/typed_struct.upb.h +49 -30
  592. data/src/core/ext/upbdefs-generated/envoy/admin/v3/certs.upbdefs.c +1 -1
  593. data/src/core/ext/upbdefs-generated/envoy/admin/v3/certs.upbdefs.h +6 -5
  594. data/src/core/ext/upbdefs-generated/envoy/admin/v3/clusters.upbdefs.c +55 -54
  595. data/src/core/ext/upbdefs-generated/envoy/admin/v3/clusters.upbdefs.h +6 -5
  596. data/src/core/ext/upbdefs-generated/envoy/admin/v3/config_dump.upbdefs.c +68 -275
  597. data/src/core/ext/upbdefs-generated/envoy/admin/v3/config_dump.upbdefs.h +6 -90
  598. data/src/core/ext/upbdefs-generated/envoy/admin/v3/config_dump_shared.upbdefs.c +277 -0
  599. data/src/core/ext/upbdefs-generated/envoy/admin/v3/config_dump_shared.upbdefs.h +126 -0
  600. data/src/core/ext/upbdefs-generated/envoy/admin/v3/init_dump.upbdefs.c +1 -1
  601. data/src/core/ext/upbdefs-generated/envoy/admin/v3/init_dump.upbdefs.h +6 -5
  602. data/src/core/ext/upbdefs-generated/envoy/admin/v3/listeners.upbdefs.c +15 -12
  603. data/src/core/ext/upbdefs-generated/envoy/admin/v3/listeners.upbdefs.h +6 -5
  604. data/src/core/ext/upbdefs-generated/envoy/admin/v3/memory.upbdefs.c +1 -1
  605. data/src/core/ext/upbdefs-generated/envoy/admin/v3/memory.upbdefs.h +6 -5
  606. data/src/core/ext/upbdefs-generated/envoy/admin/v3/metrics.upbdefs.c +1 -1
  607. data/src/core/ext/upbdefs-generated/envoy/admin/v3/metrics.upbdefs.h +6 -5
  608. data/src/core/ext/upbdefs-generated/envoy/admin/v3/mutex_stats.upbdefs.c +1 -1
  609. data/src/core/ext/upbdefs-generated/envoy/admin/v3/mutex_stats.upbdefs.h +6 -5
  610. data/src/core/ext/upbdefs-generated/envoy/admin/v3/server_info.upbdefs.c +1 -1
  611. data/src/core/ext/upbdefs-generated/envoy/admin/v3/server_info.upbdefs.h +6 -5
  612. data/src/core/ext/upbdefs-generated/envoy/admin/v3/tap.upbdefs.c +1 -1
  613. data/src/core/ext/upbdefs-generated/envoy/admin/v3/tap.upbdefs.h +6 -5
  614. data/src/core/ext/upbdefs-generated/envoy/annotations/deprecation.upbdefs.c +1 -1
  615. data/src/core/ext/upbdefs-generated/envoy/annotations/deprecation.upbdefs.h +6 -5
  616. data/src/core/ext/upbdefs-generated/envoy/annotations/resource.upbdefs.c +1 -1
  617. data/src/core/ext/upbdefs-generated/envoy/annotations/resource.upbdefs.h +6 -5
  618. data/src/core/ext/upbdefs-generated/envoy/config/accesslog/v3/accesslog.upbdefs.c +180 -168
  619. data/src/core/ext/upbdefs-generated/envoy/config/accesslog/v3/accesslog.upbdefs.h +11 -5
  620. data/src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3/bootstrap.upbdefs.c +251 -236
  621. data/src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3/bootstrap.upbdefs.h +6 -5
  622. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/circuit_breaker.upbdefs.c +1 -1
  623. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/circuit_breaker.upbdefs.h +6 -5
  624. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/cluster.upbdefs.c +233 -223
  625. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/cluster.upbdefs.h +6 -10
  626. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/filter.upbdefs.c +1 -1
  627. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/filter.upbdefs.h +6 -5
  628. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/outlier_detection.upbdefs.c +1 -1
  629. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/outlier_detection.upbdefs.h +6 -5
  630. data/src/core/ext/upbdefs-generated/envoy/config/common/matcher/v3/matcher.upbdefs.c +1 -1
  631. data/src/core/ext/upbdefs-generated/envoy/config/common/matcher/v3/matcher.upbdefs.h +6 -5
  632. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/address.upbdefs.c +96 -76
  633. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/address.upbdefs.h +11 -5
  634. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/backoff.upbdefs.c +1 -1
  635. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/backoff.upbdefs.h +6 -5
  636. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/base.upbdefs.c +188 -184
  637. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/base.upbdefs.h +6 -5
  638. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/config_source.upbdefs.c +1 -1
  639. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/config_source.upbdefs.h +6 -5
  640. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/event_service_config.upbdefs.c +1 -1
  641. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/event_service_config.upbdefs.h +6 -5
  642. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/extension.upbdefs.c +1 -1
  643. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/extension.upbdefs.h +6 -5
  644. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_method_list.upbdefs.c +1 -1
  645. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_method_list.upbdefs.h +6 -5
  646. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_service.upbdefs.c +163 -161
  647. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_service.upbdefs.h +6 -5
  648. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/health_check.upbdefs.c +130 -113
  649. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/health_check.upbdefs.h +6 -5
  650. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/http_uri.upbdefs.c +1 -1
  651. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/http_uri.upbdefs.h +6 -5
  652. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/protocol.upbdefs.c +200 -187
  653. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/protocol.upbdefs.h +6 -5
  654. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/proxy_protocol.upbdefs.c +32 -16
  655. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/proxy_protocol.upbdefs.h +11 -5
  656. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/resolver.upbdefs.c +1 -1
  657. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/resolver.upbdefs.h +6 -5
  658. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/socket_option.upbdefs.c +8 -4
  659. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/socket_option.upbdefs.h +11 -5
  660. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/substitution_format_string.upbdefs.c +17 -17
  661. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/substitution_format_string.upbdefs.h +6 -5
  662. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/udp_socket_config.upbdefs.c +1 -1
  663. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/udp_socket_config.upbdefs.h +6 -5
  664. data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint.upbdefs.c +1 -1
  665. data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint.upbdefs.h +6 -5
  666. data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint_components.upbdefs.c +72 -67
  667. data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint_components.upbdefs.h +6 -5
  668. data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/load_report.upbdefs.c +1 -1
  669. data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/load_report.upbdefs.h +6 -5
  670. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/api_listener.upbdefs.c +1 -1
  671. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/api_listener.upbdefs.h +6 -5
  672. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener.upbdefs.c +161 -131
  673. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener.upbdefs.h +26 -5
  674. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener_components.upbdefs.c +1 -1
  675. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener_components.upbdefs.h +6 -5
  676. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/quic_config.upbdefs.c +55 -42
  677. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/quic_config.upbdefs.h +6 -5
  678. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/udp_listener_config.upbdefs.c +40 -32
  679. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/udp_listener_config.upbdefs.h +6 -5
  680. data/src/core/ext/upbdefs-generated/envoy/config/metrics/v3/metrics_service.upbdefs.c +20 -13
  681. data/src/core/ext/upbdefs-generated/envoy/config/metrics/v3/metrics_service.upbdefs.h +6 -5
  682. data/src/core/ext/upbdefs-generated/envoy/config/metrics/v3/stats.upbdefs.c +1 -1
  683. data/src/core/ext/upbdefs-generated/envoy/config/metrics/v3/stats.upbdefs.h +6 -5
  684. data/src/core/ext/upbdefs-generated/envoy/config/overload/v3/overload.upbdefs.c +39 -31
  685. data/src/core/ext/upbdefs-generated/envoy/config/overload/v3/overload.upbdefs.h +11 -5
  686. data/src/core/ext/upbdefs-generated/envoy/config/rbac/v3/rbac.upbdefs.c +162 -129
  687. data/src/core/ext/upbdefs-generated/envoy/config/rbac/v3/rbac.upbdefs.h +21 -5
  688. data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route.upbdefs.c +83 -75
  689. data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route.upbdefs.h +8 -7
  690. data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route_components.upbdefs.c +744 -668
  691. data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route_components.upbdefs.h +26 -5
  692. data/src/core/ext/upbdefs-generated/envoy/config/route/v3/scoped_route.upbdefs.c +1 -1
  693. data/src/core/ext/upbdefs-generated/envoy/config/route/v3/scoped_route.upbdefs.h +6 -5
  694. data/src/core/ext/upbdefs-generated/envoy/config/tap/v3/common.upbdefs.c +151 -140
  695. data/src/core/ext/upbdefs-generated/envoy/config/tap/v3/common.upbdefs.h +11 -5
  696. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/datadog.upbdefs.c +17 -15
  697. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/datadog.upbdefs.h +6 -5
  698. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/dynamic_ot.upbdefs.c +1 -1
  699. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/dynamic_ot.upbdefs.h +6 -5
  700. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/http_tracer.upbdefs.c +1 -1
  701. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/http_tracer.upbdefs.h +6 -5
  702. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/lightstep.upbdefs.c +1 -1
  703. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/lightstep.upbdefs.h +6 -5
  704. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/opencensus.upbdefs.c +1 -1
  705. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/opencensus.upbdefs.h +6 -5
  706. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/opentelemetry.upbdefs.c +45 -0
  707. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/opentelemetry.upbdefs.h +36 -0
  708. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/service.upbdefs.c +1 -1
  709. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/service.upbdefs.h +6 -5
  710. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/skywalking.upbdefs.c +1 -1
  711. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/skywalking.upbdefs.h +6 -5
  712. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/trace.upbdefs.c +17 -13
  713. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/trace.upbdefs.h +6 -5
  714. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/xray.upbdefs.c +1 -1
  715. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/xray.upbdefs.h +6 -5
  716. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/zipkin.upbdefs.c +21 -19
  717. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/zipkin.upbdefs.h +6 -5
  718. data/src/core/ext/upbdefs-generated/envoy/data/accesslog/v3/accesslog.upbdefs.c +402 -0
  719. data/src/core/ext/upbdefs-generated/envoy/data/accesslog/v3/accesslog.upbdefs.h +111 -0
  720. data/src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.c +1 -1
  721. data/src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.h +6 -5
  722. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3/fault.upbdefs.c +1 -1
  723. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3/fault.upbdefs.h +6 -5
  724. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3/fault.upbdefs.c +81 -75
  725. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3/fault.upbdefs.h +6 -5
  726. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.c +47 -26
  727. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.h +6 -5
  728. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3/router.upbdefs.c +70 -43
  729. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3/router.upbdefs.h +11 -5
  730. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upbdefs.c +60 -0
  731. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upbdefs.h +41 -0
  732. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.c +517 -466
  733. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.h +11 -5
  734. data/src/core/ext/upbdefs-generated/envoy/extensions/http/stateful_session/cookie/v3/cookie.upbdefs.c +50 -0
  735. data/src/core/ext/upbdefs-generated/envoy/extensions/http/stateful_session/cookie/v3/cookie.upbdefs.h +36 -0
  736. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.c +1 -1
  737. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.h +6 -5
  738. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.c +138 -133
  739. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.h +6 -5
  740. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.c +1 -1
  741. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.h +6 -5
  742. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.c +151 -147
  743. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.h +6 -5
  744. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upbdefs.c +1 -1
  745. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upbdefs.h +6 -5
  746. data/src/core/ext/upbdefs-generated/envoy/service/discovery/v3/ads.upbdefs.c +6 -6
  747. data/src/core/ext/upbdefs-generated/envoy/service/discovery/v3/ads.upbdefs.h +6 -5
  748. data/src/core/ext/upbdefs-generated/envoy/service/discovery/v3/discovery.upbdefs.c +157 -85
  749. data/src/core/ext/upbdefs-generated/envoy/service/discovery/v3/discovery.upbdefs.h +41 -5
  750. data/src/core/ext/upbdefs-generated/envoy/service/load_stats/v3/lrs.upbdefs.c +6 -6
  751. data/src/core/ext/upbdefs-generated/envoy/service/load_stats/v3/lrs.upbdefs.h +6 -5
  752. data/src/core/ext/upbdefs-generated/envoy/service/status/v3/csds.upbdefs.c +113 -114
  753. data/src/core/ext/upbdefs-generated/envoy/service/status/v3/csds.upbdefs.h +6 -5
  754. data/src/core/ext/upbdefs-generated/envoy/type/http/v3/cookie.upbdefs.c +1 -1
  755. data/src/core/ext/upbdefs-generated/envoy/type/http/v3/cookie.upbdefs.h +6 -5
  756. data/src/core/ext/upbdefs-generated/envoy/type/http/v3/path_transformation.upbdefs.c +1 -1
  757. data/src/core/ext/upbdefs-generated/envoy/type/http/v3/path_transformation.upbdefs.h +6 -5
  758. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/filter_state.upbdefs.c +48 -0
  759. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/filter_state.upbdefs.h +36 -0
  760. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/http_inputs.upbdefs.c +13 -10
  761. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/http_inputs.upbdefs.h +11 -5
  762. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/metadata.upbdefs.c +1 -1
  763. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/metadata.upbdefs.h +6 -5
  764. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/node.upbdefs.c +1 -1
  765. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/node.upbdefs.h +6 -5
  766. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/number.upbdefs.c +1 -1
  767. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/number.upbdefs.h +6 -5
  768. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/path.upbdefs.c +1 -1
  769. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/path.upbdefs.h +6 -5
  770. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/regex.upbdefs.c +30 -29
  771. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/regex.upbdefs.h +6 -5
  772. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/status_code_input.upbdefs.c +40 -0
  773. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/status_code_input.upbdefs.h +41 -0
  774. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/string.upbdefs.c +1 -1
  775. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/string.upbdefs.h +6 -5
  776. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/struct.upbdefs.c +1 -1
  777. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/struct.upbdefs.h +6 -5
  778. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/value.upbdefs.c +1 -1
  779. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/value.upbdefs.h +6 -5
  780. data/src/core/ext/upbdefs-generated/envoy/type/metadata/v3/metadata.upbdefs.c +1 -1
  781. data/src/core/ext/upbdefs-generated/envoy/type/metadata/v3/metadata.upbdefs.h +6 -5
  782. data/src/core/ext/upbdefs-generated/envoy/type/tracing/v3/custom_tag.upbdefs.c +1 -1
  783. data/src/core/ext/upbdefs-generated/envoy/type/tracing/v3/custom_tag.upbdefs.h +6 -5
  784. data/src/core/ext/upbdefs-generated/envoy/type/v3/hash_policy.upbdefs.c +1 -1
  785. data/src/core/ext/upbdefs-generated/envoy/type/v3/hash_policy.upbdefs.h +6 -5
  786. data/src/core/ext/upbdefs-generated/envoy/type/v3/http.upbdefs.c +1 -1
  787. data/src/core/ext/upbdefs-generated/envoy/type/v3/http.upbdefs.h +6 -5
  788. data/src/core/ext/upbdefs-generated/envoy/type/v3/http_status.upbdefs.c +1 -1
  789. data/src/core/ext/upbdefs-generated/envoy/type/v3/http_status.upbdefs.h +6 -5
  790. data/src/core/ext/upbdefs-generated/envoy/type/v3/percent.upbdefs.c +1 -1
  791. data/src/core/ext/upbdefs-generated/envoy/type/v3/percent.upbdefs.h +6 -5
  792. data/src/core/ext/upbdefs-generated/envoy/type/v3/range.upbdefs.c +1 -1
  793. data/src/core/ext/upbdefs-generated/envoy/type/v3/range.upbdefs.h +6 -5
  794. data/src/core/ext/upbdefs-generated/envoy/type/v3/ratelimit_strategy.upbdefs.c +69 -0
  795. data/src/core/ext/upbdefs-generated/envoy/type/v3/ratelimit_strategy.upbdefs.h +41 -0
  796. data/src/core/ext/upbdefs-generated/envoy/type/v3/ratelimit_unit.upbdefs.c +11 -10
  797. data/src/core/ext/upbdefs-generated/envoy/type/v3/ratelimit_unit.upbdefs.h +6 -5
  798. data/src/core/ext/upbdefs-generated/envoy/type/v3/semantic_version.upbdefs.c +1 -1
  799. data/src/core/ext/upbdefs-generated/envoy/type/v3/semantic_version.upbdefs.h +6 -5
  800. data/src/core/ext/upbdefs-generated/envoy/type/v3/token_bucket.upbdefs.c +1 -1
  801. data/src/core/ext/upbdefs-generated/envoy/type/v3/token_bucket.upbdefs.h +6 -5
  802. data/src/core/ext/upbdefs-generated/google/api/annotations.upbdefs.c +1 -1
  803. data/src/core/ext/upbdefs-generated/google/api/annotations.upbdefs.h +6 -5
  804. data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/checked.upbdefs.c +1 -1
  805. data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/checked.upbdefs.h +6 -5
  806. data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/syntax.upbdefs.c +1 -1
  807. data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/syntax.upbdefs.h +6 -5
  808. data/src/core/ext/upbdefs-generated/google/api/http.upbdefs.c +1 -1
  809. data/src/core/ext/upbdefs-generated/google/api/http.upbdefs.h +6 -5
  810. data/src/core/ext/upbdefs-generated/google/api/httpbody.upbdefs.c +1 -1
  811. data/src/core/ext/upbdefs-generated/google/api/httpbody.upbdefs.h +6 -5
  812. data/src/core/ext/upbdefs-generated/google/protobuf/any.upbdefs.c +1 -1
  813. data/src/core/ext/upbdefs-generated/google/protobuf/any.upbdefs.h +6 -5
  814. data/src/core/ext/upbdefs-generated/google/protobuf/descriptor.upbdefs.c +328 -270
  815. data/src/core/ext/upbdefs-generated/google/protobuf/descriptor.upbdefs.h +11 -5
  816. data/src/core/ext/upbdefs-generated/google/protobuf/duration.upbdefs.c +1 -1
  817. data/src/core/ext/upbdefs-generated/google/protobuf/duration.upbdefs.h +6 -5
  818. data/src/core/ext/upbdefs-generated/google/protobuf/empty.upbdefs.c +1 -1
  819. data/src/core/ext/upbdefs-generated/google/protobuf/empty.upbdefs.h +6 -5
  820. data/src/core/ext/upbdefs-generated/google/protobuf/struct.upbdefs.c +1 -1
  821. data/src/core/ext/upbdefs-generated/google/protobuf/struct.upbdefs.h +6 -5
  822. data/src/core/ext/upbdefs-generated/google/protobuf/timestamp.upbdefs.c +1 -1
  823. data/src/core/ext/upbdefs-generated/google/protobuf/timestamp.upbdefs.h +6 -5
  824. data/src/core/ext/upbdefs-generated/google/protobuf/wrappers.upbdefs.c +1 -1
  825. data/src/core/ext/upbdefs-generated/google/protobuf/wrappers.upbdefs.h +6 -5
  826. data/src/core/ext/upbdefs-generated/google/rpc/status.upbdefs.c +1 -1
  827. data/src/core/ext/upbdefs-generated/google/rpc/status.upbdefs.h +6 -5
  828. data/src/core/ext/upbdefs-generated/opencensus/proto/trace/v1/trace_config.upbdefs.c +1 -1
  829. data/src/core/ext/upbdefs-generated/opencensus/proto/trace/v1/trace_config.upbdefs.h +6 -5
  830. data/src/core/ext/upbdefs-generated/src/proto/grpc/lookup/v1/rls_config.upbdefs.c +1 -1
  831. data/src/core/ext/upbdefs-generated/src/proto/grpc/lookup/v1/rls_config.upbdefs.h +6 -5
  832. data/src/core/ext/upbdefs-generated/udpa/annotations/migrate.upbdefs.c +1 -1
  833. data/src/core/ext/upbdefs-generated/udpa/annotations/migrate.upbdefs.h +6 -5
  834. data/src/core/ext/upbdefs-generated/udpa/annotations/security.upbdefs.c +1 -1
  835. data/src/core/ext/upbdefs-generated/udpa/annotations/security.upbdefs.h +6 -5
  836. data/src/core/ext/upbdefs-generated/udpa/annotations/sensitive.upbdefs.c +1 -1
  837. data/src/core/ext/upbdefs-generated/udpa/annotations/sensitive.upbdefs.h +6 -5
  838. data/src/core/ext/upbdefs-generated/udpa/annotations/status.upbdefs.c +1 -1
  839. data/src/core/ext/upbdefs-generated/udpa/annotations/status.upbdefs.h +6 -5
  840. data/src/core/ext/upbdefs-generated/udpa/annotations/versioning.upbdefs.c +1 -1
  841. data/src/core/ext/upbdefs-generated/udpa/annotations/versioning.upbdefs.h +6 -5
  842. data/src/core/ext/upbdefs-generated/validate/validate.upbdefs.c +1 -1
  843. data/src/core/ext/upbdefs-generated/validate/validate.upbdefs.h +6 -5
  844. data/src/core/ext/upbdefs-generated/xds/annotations/v3/migrate.upbdefs.c +1 -1
  845. data/src/core/ext/upbdefs-generated/xds/annotations/v3/migrate.upbdefs.h +6 -5
  846. data/src/core/ext/upbdefs-generated/xds/annotations/v3/security.upbdefs.c +1 -1
  847. data/src/core/ext/upbdefs-generated/xds/annotations/v3/security.upbdefs.h +6 -5
  848. data/src/core/ext/upbdefs-generated/xds/annotations/v3/sensitive.upbdefs.c +1 -1
  849. data/src/core/ext/upbdefs-generated/xds/annotations/v3/sensitive.upbdefs.h +6 -5
  850. data/src/core/ext/upbdefs-generated/xds/annotations/v3/status.upbdefs.c +1 -1
  851. data/src/core/ext/upbdefs-generated/xds/annotations/v3/status.upbdefs.h +6 -5
  852. data/src/core/ext/upbdefs-generated/xds/annotations/v3/versioning.upbdefs.c +1 -1
  853. data/src/core/ext/upbdefs-generated/xds/annotations/v3/versioning.upbdefs.h +6 -5
  854. data/src/core/ext/upbdefs-generated/xds/core/v3/authority.upbdefs.c +1 -1
  855. data/src/core/ext/upbdefs-generated/xds/core/v3/authority.upbdefs.h +6 -5
  856. data/src/core/ext/upbdefs-generated/xds/core/v3/cidr.upbdefs.c +45 -0
  857. data/src/core/ext/upbdefs-generated/xds/core/v3/cidr.upbdefs.h +36 -0
  858. data/src/core/ext/upbdefs-generated/xds/core/v3/collection_entry.upbdefs.c +1 -1
  859. data/src/core/ext/upbdefs-generated/xds/core/v3/collection_entry.upbdefs.h +6 -5
  860. data/src/core/ext/upbdefs-generated/xds/core/v3/context_params.upbdefs.c +1 -1
  861. data/src/core/ext/upbdefs-generated/xds/core/v3/context_params.upbdefs.h +6 -5
  862. data/src/core/ext/upbdefs-generated/xds/core/v3/extension.upbdefs.c +1 -1
  863. data/src/core/ext/upbdefs-generated/xds/core/v3/extension.upbdefs.h +6 -5
  864. data/src/core/ext/upbdefs-generated/xds/core/v3/resource.upbdefs.c +1 -1
  865. data/src/core/ext/upbdefs-generated/xds/core/v3/resource.upbdefs.h +6 -5
  866. data/src/core/ext/upbdefs-generated/xds/core/v3/resource_locator.upbdefs.c +1 -1
  867. data/src/core/ext/upbdefs-generated/xds/core/v3/resource_locator.upbdefs.h +6 -5
  868. data/src/core/ext/upbdefs-generated/xds/core/v3/resource_name.upbdefs.c +1 -1
  869. data/src/core/ext/upbdefs-generated/xds/core/v3/resource_name.upbdefs.h +6 -5
  870. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/cel.upbdefs.c +43 -0
  871. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/cel.upbdefs.h +36 -0
  872. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/domain.upbdefs.c +51 -0
  873. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/domain.upbdefs.h +41 -0
  874. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/http_inputs.upbdefs.c +36 -0
  875. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/http_inputs.upbdefs.h +36 -0
  876. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/ip.upbdefs.c +55 -0
  877. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/ip.upbdefs.h +41 -0
  878. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/matcher.upbdefs.c +10 -10
  879. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/matcher.upbdefs.h +6 -5
  880. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/range.upbdefs.c +71 -0
  881. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/range.upbdefs.h +61 -0
  882. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/regex.upbdefs.c +1 -1
  883. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/regex.upbdefs.h +6 -5
  884. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/string.upbdefs.c +1 -1
  885. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/string.upbdefs.h +6 -5
  886. data/src/core/ext/upbdefs-generated/xds/type/v3/cel.upbdefs.c +60 -0
  887. data/src/core/ext/upbdefs-generated/xds/type/v3/cel.upbdefs.h +41 -0
  888. data/src/core/ext/upbdefs-generated/xds/type/v3/range.upbdefs.c +36 -0
  889. data/src/core/ext/upbdefs-generated/xds/type/v3/range.upbdefs.h +46 -0
  890. data/src/core/ext/upbdefs-generated/xds/type/v3/typed_struct.upbdefs.c +5 -8
  891. data/src/core/ext/upbdefs-generated/xds/type/v3/typed_struct.upbdefs.h +6 -5
  892. data/src/core/ext/xds/certificate_provider_store.cc +60 -3
  893. data/src/core/ext/xds/certificate_provider_store.h +21 -4
  894. data/src/core/ext/xds/file_watcher_certificate_provider_factory.cc +44 -49
  895. data/src/core/ext/xds/file_watcher_certificate_provider_factory.h +25 -12
  896. data/src/core/ext/xds/upb_utils.h +4 -26
  897. data/src/core/ext/xds/xds_api.cc +129 -212
  898. data/src/core/ext/xds/xds_api.h +42 -39
  899. data/src/core/ext/xds/xds_audit_logger_registry.cc +122 -0
  900. data/src/core/ext/xds/xds_audit_logger_registry.h +68 -0
  901. data/src/core/ext/xds/xds_bootstrap.cc +7 -539
  902. data/src/core/ext/xds/xds_bootstrap.h +41 -96
  903. data/src/core/ext/xds/xds_bootstrap_grpc.cc +377 -0
  904. data/src/core/ext/xds/xds_bootstrap_grpc.h +181 -0
  905. data/src/core/ext/xds/xds_certificate_provider.cc +31 -25
  906. data/src/core/ext/xds/xds_certificate_provider.h +28 -4
  907. data/src/core/ext/xds/xds_channel_args.h +3 -3
  908. data/src/core/ext/xds/xds_channel_stack_modifier.cc +16 -7
  909. data/src/core/ext/xds/xds_channel_stack_modifier.h +16 -4
  910. data/src/core/ext/xds/xds_client.cc +856 -1325
  911. data/src/core/ext/xds/xds_client.h +57 -61
  912. data/src/core/ext/xds/xds_client_grpc.cc +240 -0
  913. data/src/core/ext/xds/xds_client_grpc.h +93 -0
  914. data/src/core/ext/xds/xds_client_stats.cc +53 -40
  915. data/src/core/ext/xds/xds_client_stats.h +60 -44
  916. data/src/core/ext/xds/xds_cluster.cc +416 -245
  917. data/src/core/ext/xds/xds_cluster.h +65 -40
  918. data/src/core/ext/xds/xds_cluster_specifier_plugin.cc +73 -79
  919. data/src/core/ext/xds/xds_cluster_specifier_plugin.h +48 -30
  920. data/src/core/ext/xds/xds_common_types.cc +241 -123
  921. data/src/core/ext/xds/xds_common_types.h +29 -16
  922. data/src/core/ext/xds/xds_endpoint.cc +274 -168
  923. data/src/core/ext/xds/xds_endpoint.h +28 -16
  924. data/src/core/ext/xds/xds_health_status.cc +63 -0
  925. data/src/core/ext/xds/xds_health_status.h +89 -0
  926. data/src/core/ext/xds/xds_http_fault_filter.cc +77 -65
  927. data/src/core/ext/xds/xds_http_fault_filter.h +22 -27
  928. data/src/core/ext/xds/xds_http_filters.cc +70 -71
  929. data/src/core/ext/xds/xds_http_filters.h +80 -29
  930. data/src/core/ext/xds/xds_http_rbac_filter.cc +316 -288
  931. data/src/core/ext/xds/xds_http_rbac_filter.h +24 -19
  932. data/src/core/ext/xds/xds_http_stateful_session_filter.cc +222 -0
  933. data/src/core/ext/xds/xds_http_stateful_session_filter.h +59 -0
  934. data/src/core/ext/xds/xds_lb_policy_registry.cc +374 -0
  935. data/src/core/ext/xds/xds_lb_policy_registry.h +71 -0
  936. data/src/core/ext/xds/xds_listener.cc +566 -477
  937. data/src/core/ext/xds/xds_listener.h +57 -51
  938. data/src/core/ext/xds/xds_resource_type.h +28 -22
  939. data/src/core/ext/xds/xds_resource_type_impl.h +18 -17
  940. data/src/core/ext/xds/xds_route_config.cc +639 -573
  941. data/src/core/ext/xds/xds_route_config.h +74 -40
  942. data/src/core/ext/xds/xds_routing.cc +23 -9
  943. data/src/core/ext/xds/xds_routing.h +17 -12
  944. data/src/core/ext/xds/xds_server_config_fetcher.cc +227 -179
  945. data/src/core/ext/xds/xds_transport.h +86 -0
  946. data/src/core/ext/xds/xds_transport_grpc.cc +356 -0
  947. data/src/core/ext/xds/xds_transport_grpc.h +135 -0
  948. data/src/core/lib/address_utils/parse_address.cc +114 -52
  949. data/src/core/lib/address_utils/parse_address.h +54 -42
  950. data/src/core/lib/address_utils/sockaddr_utils.cc +84 -36
  951. data/src/core/lib/address_utils/sockaddr_utils.h +40 -38
  952. data/src/core/lib/avl/avl.h +59 -32
  953. data/src/core/lib/backoff/backoff.cc +19 -21
  954. data/src/core/lib/backoff/backoff.h +21 -21
  955. data/src/core/lib/backoff/random_early_detection.cc +31 -0
  956. data/src/core/lib/backoff/random_early_detection.h +64 -0
  957. data/src/core/lib/channel/call_finalization.h +5 -7
  958. data/src/core/lib/channel/call_tracer.cc +51 -0
  959. data/src/core/lib/channel/call_tracer.h +107 -35
  960. data/src/core/lib/channel/channel_args.cc +209 -71
  961. data/src/core/lib/channel/channel_args.h +322 -112
  962. data/src/core/lib/channel/channel_args_preconditioning.cc +1 -0
  963. data/src/core/lib/channel/channel_args_preconditioning.h +4 -4
  964. data/src/core/lib/channel/channel_fwd.h +26 -0
  965. data/src/core/lib/channel/channel_stack.cc +60 -58
  966. data/src/core/lib/channel/channel_stack.h +149 -146
  967. data/src/core/lib/channel/channel_stack_builder.cc +21 -24
  968. data/src/core/lib/channel/channel_stack_builder.h +19 -14
  969. data/src/core/lib/channel/channel_stack_builder_impl.cc +55 -26
  970. data/src/core/lib/channel/channel_stack_builder_impl.h +6 -3
  971. data/src/core/lib/channel/channel_trace.cc +40 -38
  972. data/src/core/lib/channel/channel_trace.h +22 -22
  973. data/src/core/lib/channel/channelz.cc +190 -172
  974. data/src/core/lib/channel/channelz.h +80 -65
  975. data/src/core/lib/channel/channelz_registry.cc +45 -42
  976. data/src/core/lib/channel/channelz_registry.h +21 -21
  977. data/src/core/lib/channel/connected_channel.cc +768 -67
  978. data/src/core/lib/channel/connected_channel.h +21 -24
  979. data/src/core/lib/channel/context.h +33 -22
  980. data/src/core/lib/channel/promise_based_filter.cc +1613 -295
  981. data/src/core/lib/channel/promise_based_filter.h +488 -104
  982. data/src/core/lib/channel/server_call_tracer_filter.cc +110 -0
  983. data/src/core/lib/channel/status_util.cc +62 -17
  984. data/src/core/lib/channel/status_util.h +39 -22
  985. data/src/core/lib/compression/compression.cc +24 -19
  986. data/src/core/lib/compression/compression_internal.cc +41 -54
  987. data/src/core/lib/compression/compression_internal.h +27 -26
  988. data/src/core/lib/compression/message_compress.cc +28 -26
  989. data/src/core/lib/compression/message_compress.h +28 -29
  990. data/src/core/lib/config/config_vars.cc +153 -0
  991. data/src/core/lib/config/config_vars.h +127 -0
  992. data/src/core/lib/config/config_vars_non_generated.cc +51 -0
  993. data/src/core/lib/config/core_configuration.cc +5 -1
  994. data/src/core/lib/config/core_configuration.h +84 -38
  995. data/src/core/lib/config/load_config.cc +79 -0
  996. data/src/core/lib/config/load_config.h +55 -0
  997. data/src/core/lib/debug/event_log.cc +88 -0
  998. data/src/core/lib/debug/event_log.h +81 -0
  999. data/src/core/lib/debug/histogram_view.cc +69 -0
  1000. data/src/core/lib/debug/histogram_view.h +37 -0
  1001. data/src/core/lib/debug/stats.cc +48 -152
  1002. data/src/core/lib/debug/stats.h +50 -57
  1003. data/src/core/lib/debug/stats_data.cc +302 -645
  1004. data/src/core/lib/debug/stats_data.h +293 -545
  1005. data/src/core/lib/debug/trace.cc +53 -81
  1006. data/src/core/lib/debug/trace.h +40 -56
  1007. data/src/core/lib/event_engine/cf_engine/cf_engine.cc +212 -0
  1008. data/src/core/lib/event_engine/cf_engine/cf_engine.h +86 -0
  1009. data/src/core/lib/event_engine/cf_engine/cfstream_endpoint.cc +354 -0
  1010. data/src/core/lib/event_engine/cf_engine/cfstream_endpoint.h +146 -0
  1011. data/src/core/lib/event_engine/cf_engine/cftype_unique_ref.h +79 -0
  1012. data/src/core/lib/event_engine/channel_args_endpoint_config.cc +15 -18
  1013. data/src/core/lib/event_engine/channel_args_endpoint_config.h +16 -10
  1014. data/src/core/lib/event_engine/common_closures.h +71 -0
  1015. data/src/core/lib/event_engine/default_event_engine.cc +111 -0
  1016. data/src/core/lib/event_engine/default_event_engine.h +73 -0
  1017. data/src/core/lib/event_engine/default_event_engine_factory.cc +32 -5
  1018. data/src/core/lib/event_engine/{event_engine_factory.h → default_event_engine_factory.h} +4 -12
  1019. data/src/core/lib/event_engine/event_engine.cc +17 -31
  1020. data/src/core/lib/event_engine/forkable.cc +111 -0
  1021. data/src/core/lib/event_engine/forkable.h +61 -0
  1022. data/src/core/lib/event_engine/handle_containers.h +9 -21
  1023. data/src/core/lib/event_engine/memory_allocator.cc +1 -1
  1024. data/src/core/lib/event_engine/memory_allocator_factory.h +47 -0
  1025. data/src/core/lib/event_engine/poller.h +62 -0
  1026. data/src/core/lib/event_engine/posix.h +162 -0
  1027. data/src/core/lib/event_engine/posix_engine/ev_epoll1_linux.cc +640 -0
  1028. data/src/core/lib/event_engine/posix_engine/ev_epoll1_linux.h +139 -0
  1029. data/src/core/lib/event_engine/posix_engine/ev_poll_posix.cc +893 -0
  1030. data/src/core/lib/event_engine/posix_engine/ev_poll_posix.h +97 -0
  1031. data/src/core/lib/event_engine/posix_engine/event_poller.h +111 -0
  1032. data/src/core/lib/event_engine/posix_engine/event_poller_posix_default.cc +68 -0
  1033. data/src/core/lib/event_engine/posix_engine/event_poller_posix_default.h +33 -0
  1034. data/src/core/lib/event_engine/posix_engine/internal_errqueue.cc +77 -0
  1035. data/src/core/lib/event_engine/posix_engine/internal_errqueue.h +179 -0
  1036. data/src/core/lib/event_engine/posix_engine/lockfree_event.cc +254 -0
  1037. data/src/core/lib/event_engine/posix_engine/lockfree_event.h +73 -0
  1038. data/src/core/lib/event_engine/posix_engine/posix_endpoint.cc +1352 -0
  1039. data/src/core/lib/event_engine/posix_engine/posix_endpoint.h +728 -0
  1040. data/src/core/lib/event_engine/posix_engine/posix_engine.cc +638 -0
  1041. data/src/core/lib/event_engine/posix_engine/posix_engine.h +256 -0
  1042. data/src/core/lib/event_engine/posix_engine/posix_engine_closure.h +80 -0
  1043. data/src/core/lib/event_engine/posix_engine/posix_engine_listener.cc +331 -0
  1044. data/src/core/lib/event_engine/posix_engine/posix_engine_listener.h +283 -0
  1045. data/src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.cc +381 -0
  1046. data/src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.h +91 -0
  1047. data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.cc +907 -0
  1048. data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.h +322 -0
  1049. data/src/core/lib/event_engine/posix_engine/timer.cc +311 -0
  1050. data/src/core/lib/event_engine/posix_engine/timer.h +167 -0
  1051. data/src/core/lib/event_engine/posix_engine/timer_heap.cc +107 -0
  1052. data/src/core/lib/event_engine/posix_engine/timer_heap.h +56 -0
  1053. data/src/core/lib/event_engine/posix_engine/timer_manager.cc +173 -0
  1054. data/src/core/lib/event_engine/posix_engine/timer_manager.h +114 -0
  1055. data/src/core/lib/event_engine/posix_engine/traced_buffer_list.cc +332 -0
  1056. data/src/core/lib/event_engine/posix_engine/traced_buffer_list.h +185 -0
  1057. data/src/core/lib/event_engine/posix_engine/wakeup_fd_eventfd.cc +127 -0
  1058. data/src/core/lib/event_engine/posix_engine/wakeup_fd_eventfd.h +45 -0
  1059. data/src/core/lib/event_engine/posix_engine/wakeup_fd_pipe.cc +150 -0
  1060. data/src/core/lib/event_engine/posix_engine/wakeup_fd_pipe.h +45 -0
  1061. data/src/core/lib/event_engine/posix_engine/wakeup_fd_posix.h +76 -0
  1062. data/src/core/lib/event_engine/posix_engine/wakeup_fd_posix_default.cc +67 -0
  1063. data/src/core/lib/event_engine/posix_engine/wakeup_fd_posix_default.h +37 -0
  1064. data/src/core/lib/event_engine/resolved_address.cc +21 -1
  1065. data/src/core/lib/event_engine/resolved_address_internal.h +34 -0
  1066. data/src/core/lib/event_engine/shim.cc +64 -0
  1067. data/src/core/lib/event_engine/shim.h +33 -0
  1068. data/src/core/lib/event_engine/slice.cc +8 -7
  1069. data/src/core/lib/event_engine/slice_buffer.cc +2 -2
  1070. data/src/core/lib/event_engine/tcp_socket_utils.cc +449 -0
  1071. data/src/core/lib/event_engine/tcp_socket_utils.h +93 -0
  1072. data/src/core/lib/event_engine/thread_local.cc +29 -0
  1073. data/src/core/lib/event_engine/thread_local.h +32 -0
  1074. data/src/core/lib/event_engine/thread_pool/original_thread_pool.cc +256 -0
  1075. data/src/core/lib/event_engine/thread_pool/original_thread_pool.h +137 -0
  1076. data/src/core/lib/event_engine/thread_pool/thread_pool.h +50 -0
  1077. data/src/core/lib/event_engine/thread_pool/thread_pool_factory.cc +40 -0
  1078. data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.cc +542 -0
  1079. data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.h +269 -0
  1080. data/src/core/lib/event_engine/thready_event_engine/thready_event_engine.cc +157 -0
  1081. data/src/core/lib/event_engine/thready_event_engine/thready_event_engine.h +104 -0
  1082. data/src/core/lib/event_engine/time_util.cc +30 -0
  1083. data/src/core/lib/event_engine/time_util.h +32 -0
  1084. data/src/core/lib/event_engine/trace.cc +7 -0
  1085. data/src/core/lib/event_engine/trace.h +22 -3
  1086. data/src/core/lib/event_engine/utils.cc +44 -0
  1087. data/src/core/lib/event_engine/utils.h +44 -0
  1088. data/src/core/lib/event_engine/windows/iocp.cc +141 -0
  1089. data/src/core/lib/event_engine/windows/iocp.h +69 -0
  1090. data/src/core/lib/event_engine/windows/win_socket.cc +218 -0
  1091. data/src/core/lib/event_engine/windows/win_socket.h +129 -0
  1092. data/src/core/lib/event_engine/windows/windows_endpoint.cc +380 -0
  1093. data/src/core/lib/event_engine/windows/windows_endpoint.h +123 -0
  1094. data/src/core/lib/event_engine/windows/windows_engine.cc +412 -0
  1095. data/src/core/lib/event_engine/windows/windows_engine.h +160 -0
  1096. data/src/core/lib/event_engine/windows/windows_listener.cc +370 -0
  1097. data/src/core/lib/event_engine/windows/windows_listener.h +156 -0
  1098. data/src/core/lib/event_engine/work_queue/basic_work_queue.cc +63 -0
  1099. data/src/core/lib/event_engine/work_queue/basic_work_queue.h +71 -0
  1100. data/src/core/lib/event_engine/work_queue/work_queue.h +62 -0
  1101. data/src/core/lib/experiments/config.cc +223 -0
  1102. data/src/core/lib/experiments/config.h +81 -0
  1103. data/src/core/lib/experiments/experiments.cc +416 -0
  1104. data/src/core/lib/experiments/experiments.h +192 -0
  1105. data/src/core/lib/gpr/alloc.cc +19 -25
  1106. data/src/core/lib/gpr/alloc.h +20 -20
  1107. data/src/core/lib/gpr/{log_android.cc → android/log.cc} +22 -20
  1108. data/src/core/lib/gpr/atm.cc +17 -17
  1109. data/src/core/lib/gpr/iphone/cpu.cc +44 -0
  1110. data/src/core/lib/gpr/{cpu_linux.cc → linux/cpu.cc} +28 -23
  1111. data/src/core/lib/gpr/{log_linux.cc → linux/log.cc} +24 -24
  1112. data/src/core/lib/gpr/log.cc +42 -47
  1113. data/src/core/lib/gpr/log_internal.h +55 -0
  1114. data/src/core/lib/gpr/{tmpfile_msys.cc → msys/tmpfile.cc} +21 -20
  1115. data/src/core/lib/gpr/{cpu_posix.cc → posix/cpu.cc} +23 -22
  1116. data/src/core/lib/gpr/{log_posix.cc → posix/log.cc} +20 -19
  1117. data/src/core/lib/gpr/{string_posix.cc → posix/string.cc} +24 -24
  1118. data/src/core/lib/gpr/{sync_posix.cc → posix/sync.cc} +22 -34
  1119. data/src/core/lib/gpr/{time_posix.cc → posix/time.cc} +46 -45
  1120. data/src/core/lib/gpr/{tmpfile_posix.cc → posix/tmpfile.cc} +22 -20
  1121. data/src/core/lib/gpr/spinlock.h +20 -20
  1122. data/src/core/lib/gpr/string.cc +25 -24
  1123. data/src/core/lib/gpr/string.h +61 -61
  1124. data/src/core/lib/gpr/sync.cc +25 -25
  1125. data/src/core/lib/gpr/sync_abseil.cc +36 -40
  1126. data/src/core/lib/gpr/time.cc +34 -30
  1127. data/src/core/lib/gpr/time_precise.cc +22 -22
  1128. data/src/core/lib/gpr/time_precise.h +21 -22
  1129. data/src/core/lib/gpr/tmpfile.h +24 -24
  1130. data/src/core/lib/gpr/useful.h +83 -30
  1131. data/src/core/{ext/filters/client_channel/resolver/dns/dns_resolver_selection.cc → lib/gpr/windows/cpu.cc} +16 -11
  1132. data/src/core/lib/gpr/{log_windows.cc → windows/log.cc} +25 -25
  1133. data/src/core/lib/gpr/windows/string.cc +69 -0
  1134. data/src/core/lib/gpr/windows/string_util.cc +55 -0
  1135. data/src/core/lib/gpr/{sync_windows.cc → windows/sync.cc} +29 -27
  1136. data/src/core/lib/gpr/{time_windows.cc → windows/time.cc} +35 -29
  1137. data/src/core/lib/gpr/windows/tmpfile.cc +68 -0
  1138. data/src/core/lib/gpr/wrap_memcpy.cc +23 -23
  1139. data/src/core/lib/gprpp/atomic_utils.h +20 -20
  1140. data/src/core/lib/gprpp/bitset.h +30 -16
  1141. data/src/core/lib/gprpp/chunked_vector.h +3 -3
  1142. data/src/core/lib/gprpp/construct_destruct.h +3 -3
  1143. data/src/core/lib/gprpp/cpp_impl_of.h +3 -3
  1144. data/src/core/lib/gprpp/crash.cc +43 -0
  1145. data/src/core/lib/gprpp/crash.h +37 -0
  1146. data/src/core/lib/gprpp/debug_location.h +60 -31
  1147. data/src/core/lib/gprpp/dual_ref_counted.h +12 -12
  1148. data/src/core/lib/gprpp/env.h +53 -0
  1149. data/src/core/lib/gprpp/examine_stack.cc +17 -17
  1150. data/src/core/lib/gprpp/examine_stack.h +21 -21
  1151. data/src/core/lib/gprpp/fork.cc +63 -62
  1152. data/src/core/lib/gprpp/fork.h +31 -36
  1153. data/src/core/lib/gprpp/host_port.cc +28 -26
  1154. data/src/core/lib/gprpp/host_port.h +32 -31
  1155. data/src/core/lib/gprpp/if_list.h +4530 -0
  1156. data/src/core/lib/gprpp/linux/env.cc +80 -0
  1157. data/src/core/lib/gprpp/load_file.cc +75 -0
  1158. data/src/core/lib/gprpp/load_file.h +33 -0
  1159. data/src/core/lib/gprpp/manual_constructor.h +21 -88
  1160. data/src/core/lib/gprpp/match.h +3 -3
  1161. data/src/core/lib/gprpp/memory.h +21 -21
  1162. data/src/core/lib/gprpp/mpscq.cc +17 -17
  1163. data/src/core/lib/gprpp/mpscq.h +21 -21
  1164. data/src/core/lib/gprpp/no_destruct.h +95 -0
  1165. data/src/core/lib/gprpp/notification.h +67 -0
  1166. data/src/core/lib/gprpp/orphanable.h +28 -27
  1167. data/src/core/lib/gprpp/overload.h +3 -3
  1168. data/src/core/lib/gprpp/packed_table.h +40 -0
  1169. data/src/core/lib/gprpp/per_cpu.cc +33 -0
  1170. data/src/core/lib/gprpp/per_cpu.h +75 -0
  1171. data/src/core/lib/gprpp/posix/env.cc +47 -0
  1172. data/src/core/lib/gprpp/{stat_posix.cc → posix/stat.cc} +5 -4
  1173. data/src/core/lib/gprpp/{thd_posix.cc → posix/thd.cc} +75 -64
  1174. data/src/core/lib/gprpp/ref_counted.h +60 -61
  1175. data/src/core/lib/gprpp/ref_counted_ptr.h +41 -54
  1176. data/src/core/lib/gprpp/single_set_ptr.h +3 -3
  1177. data/src/core/lib/gprpp/sorted_pack.h +89 -0
  1178. data/src/core/lib/gprpp/stat.h +3 -3
  1179. data/src/core/lib/gprpp/status_helper.cc +50 -34
  1180. data/src/core/lib/gprpp/status_helper.h +25 -20
  1181. data/src/core/lib/gprpp/strerror.cc +43 -0
  1182. data/src/core/lib/gprpp/strerror.h +29 -0
  1183. data/src/core/lib/gprpp/sync.h +23 -23
  1184. data/src/core/lib/gprpp/table.h +12 -4
  1185. data/src/core/lib/gprpp/tchar.cc +49 -0
  1186. data/src/core/lib/gprpp/tchar.h +33 -0
  1187. data/src/core/lib/gprpp/thd.h +39 -23
  1188. data/src/core/lib/gprpp/time.cc +45 -8
  1189. data/src/core/lib/gprpp/time.h +85 -4
  1190. data/src/core/lib/gprpp/time_averaged_stats.cc +60 -0
  1191. data/src/core/lib/gprpp/time_averaged_stats.h +79 -0
  1192. data/src/core/lib/gprpp/time_util.h +4 -4
  1193. data/src/core/lib/gprpp/type_list.h +32 -0
  1194. data/src/core/lib/gprpp/unique_type_name.h +21 -21
  1195. data/src/core/lib/gprpp/validation_errors.cc +66 -0
  1196. data/src/core/lib/gprpp/validation_errors.h +134 -0
  1197. data/src/core/lib/gprpp/windows/env.cc +56 -0
  1198. data/src/core/lib/gprpp/{stat_windows.cc → windows/stat.cc} +4 -2
  1199. data/src/core/lib/gprpp/{thd_windows.cc → windows/thd.cc} +28 -28
  1200. data/src/core/lib/{iomgr → gprpp}/work_serializer.cc +34 -18
  1201. data/src/core/lib/{iomgr → gprpp}/work_serializer.h +21 -28
  1202. data/src/core/lib/handshaker/proxy_mapper.h +53 -0
  1203. data/src/core/lib/handshaker/proxy_mapper_registry.cc +71 -0
  1204. data/src/core/lib/handshaker/proxy_mapper_registry.h +75 -0
  1205. data/src/core/lib/http/format_request.cc +24 -22
  1206. data/src/core/lib/http/format_request.h +21 -21
  1207. data/src/core/lib/http/httpcli.cc +79 -88
  1208. data/src/core/lib/http/httpcli.h +53 -40
  1209. data/src/core/lib/http/httpcli_security_connector.cc +47 -38
  1210. data/src/core/lib/http/httpcli_ssl_credentials.h +6 -4
  1211. data/src/core/lib/http/parser.cc +78 -90
  1212. data/src/core/lib/http/parser.h +38 -35
  1213. data/src/core/lib/iomgr/block_annotate.h +23 -23
  1214. data/src/core/lib/iomgr/buffer_list.cc +156 -136
  1215. data/src/core/lib/iomgr/buffer_list.h +122 -101
  1216. data/src/core/lib/iomgr/call_combiner.cc +32 -64
  1217. data/src/core/lib/iomgr/call_combiner.h +26 -27
  1218. data/src/core/lib/iomgr/cfstream_handle.cc +34 -37
  1219. data/src/core/lib/iomgr/cfstream_handle.h +25 -25
  1220. data/src/core/lib/iomgr/closure.cc +27 -0
  1221. data/src/core/lib/iomgr/closure.h +95 -58
  1222. data/src/core/lib/iomgr/combiner.cc +20 -39
  1223. data/src/core/lib/iomgr/combiner.h +20 -20
  1224. data/src/core/lib/iomgr/dualstack_socket_posix.cc +21 -21
  1225. data/src/core/lib/iomgr/dynamic_annotations.h +22 -22
  1226. data/src/core/lib/iomgr/endpoint.cc +17 -17
  1227. data/src/core/lib/iomgr/endpoint.h +49 -49
  1228. data/src/core/lib/iomgr/endpoint_cfstream.cc +58 -53
  1229. data/src/core/lib/iomgr/endpoint_cfstream.h +32 -32
  1230. data/src/core/lib/iomgr/endpoint_pair.h +22 -22
  1231. data/src/core/lib/iomgr/endpoint_pair_posix.cc +36 -30
  1232. data/src/core/lib/iomgr/endpoint_pair_windows.cc +31 -22
  1233. data/src/core/lib/iomgr/error.cc +83 -836
  1234. data/src/core/lib/iomgr/error.h +52 -325
  1235. data/src/core/lib/iomgr/error_cfstream.cc +18 -23
  1236. data/src/core/lib/iomgr/error_cfstream.h +21 -21
  1237. data/src/core/lib/iomgr/ev_apple.cc +33 -33
  1238. data/src/core/lib/iomgr/ev_apple.h +21 -21
  1239. data/src/core/lib/iomgr/ev_epoll1_linux.cc +275 -255
  1240. data/src/core/lib/iomgr/ev_epoll1_linux.h +21 -21
  1241. data/src/core/lib/iomgr/ev_poll_posix.cc +298 -272
  1242. data/src/core/lib/iomgr/ev_poll_posix.h +22 -22
  1243. data/src/core/lib/iomgr/ev_posix.cc +85 -155
  1244. data/src/core/lib/iomgr/ev_posix.h +93 -90
  1245. data/src/core/lib/iomgr/ev_windows.cc +18 -18
  1246. data/src/core/lib/iomgr/event_engine_shims/closure.cc +62 -0
  1247. data/src/core/lib/iomgr/event_engine_shims/closure.h +39 -0
  1248. data/src/core/lib/iomgr/event_engine_shims/endpoint.cc +471 -0
  1249. data/src/core/lib/iomgr/event_engine_shims/endpoint.h +43 -0
  1250. data/src/core/lib/iomgr/event_engine_shims/tcp_client.cc +91 -0
  1251. data/src/core/lib/iomgr/event_engine_shims/tcp_client.h +44 -0
  1252. data/src/core/lib/iomgr/exec_ctx.cc +34 -56
  1253. data/src/core/lib/iomgr/exec_ctx.h +162 -175
  1254. data/src/core/lib/iomgr/executor.cc +21 -31
  1255. data/src/core/lib/iomgr/executor.h +27 -30
  1256. data/src/core/lib/iomgr/fork_posix.cc +30 -27
  1257. data/src/core/lib/iomgr/fork_windows.cc +21 -21
  1258. data/src/core/lib/iomgr/gethostname.h +20 -20
  1259. data/src/core/lib/iomgr/gethostname_fallback.cc +17 -17
  1260. data/src/core/lib/iomgr/gethostname_host_name_max.cc +17 -17
  1261. data/src/core/lib/iomgr/gethostname_sysconf.cc +17 -17
  1262. data/src/core/lib/iomgr/grpc_if_nametoindex.h +22 -22
  1263. data/src/core/lib/iomgr/grpc_if_nametoindex_posix.cc +20 -19
  1264. data/src/core/lib/iomgr/grpc_if_nametoindex_unsupported.cc +20 -19
  1265. data/src/core/lib/iomgr/internal_errqueue.cc +4 -2
  1266. data/src/core/lib/iomgr/internal_errqueue.h +83 -83
  1267. data/src/core/lib/iomgr/iocp_windows.cc +47 -26
  1268. data/src/core/lib/iomgr/iocp_windows.h +32 -21
  1269. data/src/core/lib/iomgr/iomgr.cc +29 -27
  1270. data/src/core/lib/iomgr/iomgr.h +35 -35
  1271. data/src/core/lib/iomgr/iomgr_fwd.h +4 -3
  1272. data/src/core/lib/iomgr/iomgr_internal.cc +17 -17
  1273. data/src/core/lib/iomgr/iomgr_internal.h +28 -28
  1274. data/src/core/lib/iomgr/iomgr_posix.cc +21 -20
  1275. data/src/core/lib/iomgr/iomgr_posix_cfstream.cc +22 -20
  1276. data/src/core/lib/iomgr/iomgr_windows.cc +32 -24
  1277. data/src/core/lib/iomgr/load_file.cc +24 -27
  1278. data/src/core/lib/iomgr/load_file.h +22 -22
  1279. data/src/core/lib/iomgr/lockfree_event.cc +114 -131
  1280. data/src/core/lib/iomgr/lockfree_event.h +23 -23
  1281. data/src/core/lib/iomgr/nameser.h +86 -86
  1282. data/src/core/lib/iomgr/polling_entity.cc +25 -21
  1283. data/src/core/lib/iomgr/polling_entity.h +29 -29
  1284. data/src/core/lib/iomgr/pollset.cc +17 -17
  1285. data/src/core/lib/iomgr/pollset.h +60 -61
  1286. data/src/core/lib/iomgr/pollset_set.cc +17 -17
  1287. data/src/core/lib/iomgr/pollset_set.h +25 -26
  1288. data/src/core/lib/iomgr/pollset_set_windows.cc +27 -27
  1289. data/src/core/lib/iomgr/pollset_set_windows.h +20 -20
  1290. data/src/core/lib/iomgr/pollset_windows.cc +33 -32
  1291. data/src/core/lib/iomgr/pollset_windows.h +24 -24
  1292. data/src/core/lib/iomgr/port.h +44 -31
  1293. data/src/core/lib/iomgr/python_util.h +24 -24
  1294. data/src/core/lib/iomgr/resolve_address.cc +39 -21
  1295. data/src/core/lib/iomgr/resolve_address.h +71 -34
  1296. data/src/core/lib/iomgr/resolve_address_impl.h +5 -4
  1297. data/src/core/lib/iomgr/resolve_address_posix.cc +74 -49
  1298. data/src/core/lib/iomgr/resolve_address_posix.h +23 -10
  1299. data/src/core/lib/iomgr/resolve_address_windows.cc +59 -26
  1300. data/src/core/lib/iomgr/resolve_address_windows.h +23 -10
  1301. data/src/core/lib/iomgr/resolved_address.h +3 -3
  1302. data/src/core/lib/iomgr/sockaddr.h +23 -23
  1303. data/src/core/lib/iomgr/sockaddr_posix.h +28 -21
  1304. data/src/core/lib/iomgr/sockaddr_utils_posix.cc +20 -18
  1305. data/src/core/lib/iomgr/sockaddr_windows.h +21 -21
  1306. data/src/core/lib/iomgr/socket_factory_posix.cc +18 -18
  1307. data/src/core/lib/iomgr/socket_factory_posix.h +32 -32
  1308. data/src/core/lib/iomgr/socket_mutator.cc +19 -18
  1309. data/src/core/lib/iomgr/socket_mutator.h +39 -39
  1310. data/src/core/lib/iomgr/socket_utils.h +27 -27
  1311. data/src/core/lib/iomgr/socket_utils_common_posix.cc +129 -105
  1312. data/src/core/lib/iomgr/socket_utils_linux.cc +18 -17
  1313. data/src/core/lib/iomgr/socket_utils_posix.cc +108 -19
  1314. data/src/core/lib/iomgr/socket_utils_posix.h +185 -84
  1315. data/src/core/lib/iomgr/socket_utils_windows.cc +20 -19
  1316. data/src/core/lib/iomgr/socket_windows.cc +97 -42
  1317. data/src/core/lib/iomgr/socket_windows.h +68 -63
  1318. data/src/core/lib/iomgr/systemd_utils.cc +116 -0
  1319. data/src/core/lib/iomgr/systemd_utils.h +33 -0
  1320. data/src/core/lib/iomgr/tcp_client.cc +28 -24
  1321. data/src/core/lib/iomgr/tcp_client.h +49 -38
  1322. data/src/core/lib/iomgr/tcp_client_cfstream.cc +50 -36
  1323. data/src/core/lib/iomgr/tcp_client_posix.cc +244 -106
  1324. data/src/core/lib/iomgr/tcp_client_posix.h +55 -52
  1325. data/src/core/lib/iomgr/tcp_client_windows.cc +65 -52
  1326. data/src/core/lib/iomgr/tcp_posix.cc +520 -343
  1327. data/src/core/lib/iomgr/tcp_posix.h +32 -30
  1328. data/src/core/lib/iomgr/tcp_server.cc +33 -24
  1329. data/src/core/lib/iomgr/tcp_server.h +78 -69
  1330. data/src/core/lib/iomgr/tcp_server_posix.cc +422 -135
  1331. data/src/core/lib/iomgr/tcp_server_utils_posix.h +80 -55
  1332. data/src/core/lib/iomgr/tcp_server_utils_posix_common.cc +119 -60
  1333. data/src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc +40 -40
  1334. data/src/core/lib/iomgr/tcp_server_utils_posix_noifaddrs.cc +19 -19
  1335. data/src/core/lib/iomgr/tcp_server_windows.cc +280 -123
  1336. data/src/core/lib/iomgr/tcp_windows.cc +121 -104
  1337. data/src/core/lib/iomgr/tcp_windows.h +34 -35
  1338. data/src/core/lib/iomgr/timer.cc +17 -17
  1339. data/src/core/lib/iomgr/timer.h +68 -68
  1340. data/src/core/lib/iomgr/timer_generic.cc +142 -150
  1341. data/src/core/lib/iomgr/timer_generic.h +21 -21
  1342. data/src/core/lib/iomgr/timer_heap.cc +25 -25
  1343. data/src/core/lib/iomgr/timer_heap.h +22 -22
  1344. data/src/core/lib/iomgr/timer_manager.cc +31 -31
  1345. data/src/core/lib/iomgr/timer_manager.h +27 -27
  1346. data/src/core/lib/iomgr/unix_sockets_posix.cc +20 -21
  1347. data/src/core/lib/iomgr/unix_sockets_posix.h +21 -21
  1348. data/src/core/lib/iomgr/unix_sockets_posix_noop.cc +19 -17
  1349. data/src/core/lib/iomgr/vsock.cc +59 -0
  1350. data/src/core/lib/iomgr/vsock.h +38 -0
  1351. data/src/core/lib/iomgr/wakeup_fd_eventfd.cc +23 -23
  1352. data/src/core/lib/iomgr/wakeup_fd_nospecial.cc +23 -23
  1353. data/src/core/lib/iomgr/wakeup_fd_pipe.cc +29 -26
  1354. data/src/core/lib/iomgr/wakeup_fd_pipe.h +20 -20
  1355. data/src/core/lib/iomgr/wakeup_fd_posix.cc +33 -30
  1356. data/src/core/lib/iomgr/wakeup_fd_posix.h +55 -60
  1357. data/src/core/lib/json/json.h +21 -240
  1358. data/src/core/{ext/filters/http/message_compress/message_decompress_filter.h → lib/json/json_args.h} +13 -10
  1359. data/src/core/lib/json/json_channel_args.h +42 -0
  1360. data/src/core/lib/json/json_object_loader.cc +216 -0
  1361. data/src/core/lib/json/json_object_loader.h +646 -0
  1362. data/src/core/lib/json/json_reader.cc +181 -129
  1363. data/src/core/lib/json/json_reader.h +34 -0
  1364. data/src/core/lib/json/json_util.cc +23 -55
  1365. data/src/core/lib/json/json_util.h +12 -11
  1366. data/src/core/lib/json/json_writer.cc +80 -81
  1367. data/src/core/{ext/xds/xds_resource_type.cc → lib/json/json_writer.h} +11 -11
  1368. data/src/core/lib/load_balancing/delegating_helper.h +115 -0
  1369. data/src/core/lib/load_balancing/lb_policy.cc +98 -0
  1370. data/src/core/{ext/filters/client_channel → lib/load_balancing}/lb_policy.h +69 -43
  1371. data/src/core/lib/load_balancing/lb_policy_factory.h +49 -0
  1372. data/src/core/lib/load_balancing/lb_policy_registry.cc +143 -0
  1373. data/src/core/lib/load_balancing/lb_policy_registry.h +82 -0
  1374. data/src/core/{ext/filters/client_channel → lib/load_balancing}/subchannel_interface.h +23 -30
  1375. data/src/core/lib/matchers/matchers.cc +15 -11
  1376. data/src/core/lib/matchers/matchers.h +7 -4
  1377. data/src/core/lib/promise/activity.cc +43 -7
  1378. data/src/core/lib/promise/activity.h +158 -53
  1379. data/src/core/lib/promise/arena_promise.h +105 -72
  1380. data/src/core/lib/promise/cancel_callback.h +77 -0
  1381. data/src/core/lib/promise/context.h +17 -10
  1382. data/src/core/lib/promise/detail/basic_join.h +197 -0
  1383. data/src/core/lib/promise/detail/basic_seq.h +28 -33
  1384. data/src/core/lib/promise/detail/promise_factory.h +66 -14
  1385. data/src/core/lib/promise/detail/promise_like.h +3 -3
  1386. data/src/core/lib/promise/detail/status.h +31 -3
  1387. data/src/core/lib/promise/detail/switch.h +21 -21
  1388. data/src/core/lib/promise/exec_ctx_wakeup_scheduler.h +23 -15
  1389. data/src/core/lib/promise/for_each.h +176 -0
  1390. data/src/core/lib/promise/if.h +204 -0
  1391. data/src/core/lib/promise/interceptor_list.h +329 -0
  1392. data/src/core/lib/promise/latch.h +197 -23
  1393. data/src/core/lib/promise/loop.h +22 -15
  1394. data/src/core/lib/promise/map.h +11 -6
  1395. data/src/core/lib/promise/party.cc +304 -0
  1396. data/src/core/lib/promise/party.h +508 -0
  1397. data/src/core/lib/promise/pipe.h +762 -0
  1398. data/src/core/lib/promise/poll.h +177 -11
  1399. data/src/core/lib/promise/prioritized_race.h +95 -0
  1400. data/src/core/lib/promise/promise.h +7 -7
  1401. data/src/core/lib/promise/race.h +6 -9
  1402. data/src/core/lib/promise/seq.h +32 -12
  1403. data/src/core/lib/promise/sleep.cc +57 -42
  1404. data/src/core/lib/promise/sleep.h +40 -32
  1405. data/src/core/lib/promise/trace.cc +20 -0
  1406. data/src/core/lib/promise/trace.h +24 -0
  1407. data/src/core/lib/promise/try_join.h +82 -0
  1408. data/src/core/lib/promise/try_seq.h +39 -21
  1409. data/src/core/lib/resolver/resolver.cc +17 -59
  1410. data/src/core/lib/resolver/resolver.h +21 -18
  1411. data/src/core/lib/resolver/resolver_factory.h +13 -10
  1412. data/src/core/lib/resolver/resolver_registry.cc +17 -9
  1413. data/src/core/lib/resolver/resolver_registry.h +15 -5
  1414. data/src/core/lib/resolver/server_address.cc +39 -126
  1415. data/src/core/lib/resolver/server_address.h +36 -95
  1416. data/src/core/lib/resource_quota/api.cc +10 -2
  1417. data/src/core/lib/resource_quota/api.h +10 -4
  1418. data/src/core/lib/resource_quota/arena.cc +101 -21
  1419. data/src/core/lib/resource_quota/arena.h +310 -23
  1420. data/src/core/lib/resource_quota/memory_quota.cc +287 -108
  1421. data/src/core/lib/resource_quota/memory_quota.h +175 -60
  1422. data/src/core/lib/resource_quota/periodic_update.cc +78 -0
  1423. data/src/core/lib/resource_quota/periodic_update.h +71 -0
  1424. data/src/core/lib/resource_quota/resource_quota.h +4 -4
  1425. data/src/core/lib/resource_quota/thread_quota.h +3 -3
  1426. data/src/core/lib/resource_quota/trace.h +3 -3
  1427. data/src/core/lib/security/authorization/audit_logging.cc +98 -0
  1428. data/src/core/lib/security/authorization/audit_logging.h +73 -0
  1429. data/src/core/lib/security/authorization/authorization_engine.h +3 -3
  1430. data/src/core/lib/security/authorization/authorization_policy_provider.h +10 -3
  1431. data/src/core/lib/security/authorization/authorization_policy_provider_vtable.cc +3 -0
  1432. data/src/core/lib/security/authorization/evaluate_args.cc +17 -8
  1433. data/src/core/lib/security/authorization/evaluate_args.h +9 -6
  1434. data/src/core/lib/security/authorization/grpc_authorization_engine.cc +52 -3
  1435. data/src/core/lib/security/authorization/grpc_authorization_engine.h +28 -4
  1436. data/src/core/lib/security/authorization/grpc_server_authz_filter.cc +16 -3
  1437. data/src/core/lib/security/authorization/grpc_server_authz_filter.h +16 -5
  1438. data/src/core/lib/security/authorization/matchers.cc +44 -30
  1439. data/src/core/lib/security/authorization/matchers.h +10 -3
  1440. data/src/core/lib/security/authorization/rbac_policy.cc +42 -6
  1441. data/src/core/lib/security/authorization/rbac_policy.h +29 -5
  1442. data/src/core/lib/security/authorization/stdout_logger.cc +75 -0
  1443. data/src/core/lib/security/authorization/stdout_logger.h +61 -0
  1444. data/src/core/{ext/xds → lib/security/certificate_provider}/certificate_provider_factory.h +17 -8
  1445. data/src/core/lib/security/certificate_provider/certificate_provider_registry.cc +50 -0
  1446. data/src/core/lib/security/certificate_provider/certificate_provider_registry.h +76 -0
  1447. data/src/core/lib/security/context/security_context.cc +27 -25
  1448. data/src/core/lib/security/context/security_context.h +56 -34
  1449. data/src/core/lib/security/credentials/alts/alts_credentials.cc +23 -22
  1450. data/src/core/lib/security/credentials/alts/alts_credentials.h +61 -57
  1451. data/src/core/lib/security/credentials/alts/check_gcp_environment.cc +19 -19
  1452. data/src/core/lib/security/credentials/alts/check_gcp_environment.h +43 -43
  1453. data/src/core/lib/security/credentials/alts/check_gcp_environment_linux.cc +17 -17
  1454. data/src/core/lib/security/credentials/alts/check_gcp_environment_no_op.cc +18 -17
  1455. data/src/core/lib/security/credentials/alts/check_gcp_environment_windows.cc +18 -17
  1456. data/src/core/lib/security/credentials/alts/grpc_alts_credentials_client_options.cc +20 -22
  1457. data/src/core/lib/security/credentials/alts/grpc_alts_credentials_options.cc +18 -18
  1458. data/src/core/lib/security/credentials/alts/grpc_alts_credentials_options.h +38 -39
  1459. data/src/core/lib/security/credentials/alts/grpc_alts_credentials_server_options.cc +19 -22
  1460. data/src/core/lib/security/credentials/call_creds_util.cc +8 -0
  1461. data/src/core/lib/security/credentials/call_creds_util.h +4 -3
  1462. data/src/core/lib/security/credentials/channel_creds_registry.h +59 -30
  1463. data/src/core/lib/security/credentials/channel_creds_registry_init.cc +182 -12
  1464. data/src/core/lib/security/credentials/composite/composite_credentials.cc +28 -32
  1465. data/src/core/lib/security/credentials/composite/composite_credentials.h +43 -30
  1466. data/src/core/lib/security/credentials/credentials.cc +23 -26
  1467. data/src/core/lib/security/credentials/credentials.h +62 -55
  1468. data/src/core/lib/security/credentials/external/aws_external_account_credentials.cc +148 -119
  1469. data/src/core/lib/security/credentials/external/aws_external_account_credentials.h +14 -3
  1470. data/src/core/lib/security/credentials/external/aws_request_signer.cc +14 -3
  1471. data/src/core/lib/security/credentials/external/aws_request_signer.h +3 -3
  1472. data/src/core/lib/security/credentials/external/external_account_credentials.cc +176 -122
  1473. data/src/core/lib/security/credentials/external/external_account_credentials.h +20 -3
  1474. data/src/core/lib/security/credentials/external/file_external_account_credentials.cc +47 -42
  1475. data/src/core/lib/security/credentials/external/file_external_account_credentials.h +9 -3
  1476. data/src/core/lib/security/credentials/external/url_external_account_credentials.cc +67 -54
  1477. data/src/core/lib/security/credentials/external/url_external_account_credentials.h +13 -3
  1478. data/src/core/lib/security/credentials/fake/fake_credentials.cc +58 -72
  1479. data/src/core/lib/security/credentials/fake/fake_credentials.h +77 -42
  1480. data/src/core/lib/security/credentials/google_default/credentials_generic.cc +23 -25
  1481. data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +124 -158
  1482. data/src/core/lib/security/credentials/google_default/google_default_credentials.h +31 -25
  1483. data/src/core/lib/security/credentials/iam/iam_credentials.cc +27 -20
  1484. data/src/core/lib/security/credentials/iam/iam_credentials.h +31 -21
  1485. data/src/core/lib/security/credentials/insecure/insecure_credentials.cc +7 -3
  1486. data/src/core/lib/security/credentials/insecure/insecure_credentials.h +10 -6
  1487. data/src/core/lib/security/credentials/jwt/json_token.cc +58 -44
  1488. data/src/core/lib/security/credentials/jwt/json_token.h +36 -36
  1489. data/src/core/lib/security/credentials/jwt/jwt_credentials.cc +34 -27
  1490. data/src/core/lib/security/credentials/jwt/jwt_credentials.h +35 -21
  1491. data/src/core/lib/security/credentials/jwt/jwt_verifier.cc +150 -124
  1492. data/src/core/lib/security/credentials/jwt/jwt_verifier.h +49 -47
  1493. data/src/core/lib/security/credentials/local/local_credentials.cc +24 -24
  1494. data/src/core/lib/security/credentials/local/local_credentials.h +32 -26
  1495. data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +104 -93
  1496. data/src/core/lib/security/credentials/oauth2/oauth2_credentials.h +43 -22
  1497. data/src/core/lib/security/credentials/plugin/plugin_credentials.cc +31 -30
  1498. data/src/core/lib/security/credentials/plugin/plugin_credentials.h +47 -23
  1499. data/src/core/lib/security/credentials/ssl/ssl_credentials.cc +36 -40
  1500. data/src/core/lib/security/credentials/ssl/ssl_credentials.h +35 -23
  1501. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.cc +22 -30
  1502. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.h +16 -17
  1503. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.cc +68 -48
  1504. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.h +24 -9
  1505. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.cc +10 -3
  1506. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.h +9 -10
  1507. data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc +30 -23
  1508. data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h +8 -4
  1509. data/src/core/lib/security/credentials/tls/tls_credentials.cc +37 -45
  1510. data/src/core/lib/security/credentials/tls/tls_credentials.h +31 -26
  1511. data/src/core/lib/security/credentials/tls/tls_utils.cc +5 -1
  1512. data/src/core/lib/security/credentials/tls/tls_utils.h +4 -4
  1513. data/src/core/lib/security/credentials/xds/xds_credentials.cc +21 -32
  1514. data/src/core/lib/security/credentials/xds/xds_credentials.h +19 -5
  1515. data/src/core/lib/security/security_connector/alts/alts_security_connector.cc +61 -59
  1516. data/src/core/lib/security/security_connector/alts/alts_security_connector.h +49 -47
  1517. data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +74 -78
  1518. data/src/core/lib/security/security_connector/fake/fake_security_connector.h +25 -26
  1519. data/src/core/lib/security/security_connector/insecure/insecure_security_connector.cc +15 -6
  1520. data/src/core/lib/security/security_connector/insecure/insecure_security_connector.h +26 -15
  1521. data/src/core/lib/security/security_connector/load_system_roots.h +20 -20
  1522. data/src/core/lib/security/security_connector/load_system_roots_fallback.cc +22 -20
  1523. data/src/core/lib/security/security_connector/{load_system_roots_linux.cc → load_system_roots_supported.cc} +47 -46
  1524. data/src/core/lib/security/security_connector/load_system_roots_supported.h +45 -0
  1525. data/src/core/lib/security/security_connector/local/local_security_connector.cc +64 -47
  1526. data/src/core/lib/security/security_connector/local/local_security_connector.h +49 -46
  1527. data/src/core/lib/security/security_connector/security_connector.cc +37 -35
  1528. data/src/core/lib/security/security_connector/security_connector.h +57 -44
  1529. data/src/core/lib/security/security_connector/ssl/ssl_security_connector.cc +54 -45
  1530. data/src/core/lib/security/security_connector/ssl/ssl_security_connector.h +44 -43
  1531. data/src/core/lib/security/security_connector/ssl_utils.cc +58 -63
  1532. data/src/core/lib/security/security_connector/ssl_utils.h +46 -43
  1533. data/src/core/lib/security/security_connector/tls/tls_security_connector.cc +71 -57
  1534. data/src/core/lib/security/security_connector/tls/tls_security_connector.h +48 -28
  1535. data/src/core/lib/security/transport/auth_filters.h +53 -24
  1536. data/src/core/lib/security/transport/client_auth_filter.cc +51 -32
  1537. data/src/core/lib/security/transport/secure_endpoint.cc +116 -70
  1538. data/src/core/lib/security/transport/secure_endpoint.h +28 -27
  1539. data/src/core/lib/security/transport/security_handshaker.cc +139 -109
  1540. data/src/core/lib/security/transport/security_handshaker.h +27 -22
  1541. data/src/core/lib/security/transport/server_auth_filter.cc +177 -269
  1542. data/src/core/lib/security/transport/tsi_error.cc +23 -20
  1543. data/src/core/lib/security/transport/tsi_error.h +20 -20
  1544. data/src/core/lib/security/util/json_util.cc +30 -29
  1545. data/src/core/lib/security/util/json_util.h +21 -23
  1546. data/src/core/lib/service_config/service_config.h +15 -4
  1547. data/src/core/lib/service_config/service_config_call_data.h +60 -19
  1548. data/src/core/lib/service_config/service_config_impl.cc +113 -152
  1549. data/src/core/lib/service_config/service_config_impl.h +19 -26
  1550. data/src/core/lib/service_config/service_config_parser.cc +10 -30
  1551. data/src/core/lib/service_config/service_config_parser.h +13 -21
  1552. data/src/core/lib/slice/b64.cc +26 -26
  1553. data/src/core/lib/slice/b64.h +32 -32
  1554. data/src/core/lib/slice/percent_encoding.cc +21 -30
  1555. data/src/core/lib/slice/percent_encoding.h +28 -28
  1556. data/src/core/lib/slice/slice.cc +58 -46
  1557. data/src/core/lib/slice/slice.h +75 -18
  1558. data/src/core/lib/slice/slice_buffer.cc +93 -60
  1559. data/src/core/lib/slice/slice_buffer.h +72 -10
  1560. data/src/core/lib/slice/slice_internal.h +34 -42
  1561. data/src/core/lib/slice/slice_refcount.cc +3 -18
  1562. data/src/core/lib/slice/slice_refcount.h +53 -18
  1563. data/src/core/lib/slice/slice_string_helpers.cc +17 -37
  1564. data/src/core/lib/slice/slice_string_helpers.h +21 -25
  1565. data/src/core/lib/surface/api_trace.cc +17 -17
  1566. data/src/core/lib/surface/api_trace.h +25 -25
  1567. data/src/core/lib/surface/builtins.cc +2 -0
  1568. data/src/core/lib/surface/builtins.h +3 -3
  1569. data/src/core/lib/surface/byte_buffer.cc +22 -23
  1570. data/src/core/lib/surface/byte_buffer_reader.cc +23 -23
  1571. data/src/core/lib/surface/call.cc +2319 -621
  1572. data/src/core/lib/surface/call.h +127 -42
  1573. data/src/core/lib/surface/call_details.cc +20 -21
  1574. data/src/core/lib/surface/call_log_batch.cc +19 -18
  1575. data/src/core/lib/surface/call_test_only.h +33 -33
  1576. data/src/core/lib/surface/call_trace.cc +123 -0
  1577. data/src/core/lib/surface/call_trace.h +30 -0
  1578. data/src/core/lib/surface/channel.cc +65 -69
  1579. data/src/core/lib/surface/channel.h +45 -35
  1580. data/src/core/lib/surface/channel_init.cc +17 -17
  1581. data/src/core/lib/surface/channel_init.h +20 -20
  1582. data/src/core/lib/surface/channel_ping.cc +20 -20
  1583. data/src/core/lib/surface/channel_stack_type.cc +21 -17
  1584. data/src/core/lib/surface/channel_stack_type.h +22 -20
  1585. data/src/core/lib/surface/completion_queue.cc +196 -221
  1586. data/src/core/lib/surface/completion_queue.h +39 -41
  1587. data/src/core/lib/surface/completion_queue_factory.cc +33 -28
  1588. data/src/core/lib/surface/completion_queue_factory.h +22 -22
  1589. data/src/core/lib/surface/event_string.cc +18 -17
  1590. data/src/core/lib/surface/event_string.h +22 -22
  1591. data/src/core/lib/surface/init.cc +44 -73
  1592. data/src/core/lib/surface/init.h +20 -20
  1593. data/src/core/lib/surface/init_internally.cc +25 -0
  1594. data/src/core/lib/surface/init_internally.h +37 -0
  1595. data/src/core/lib/surface/lame_client.cc +34 -30
  1596. data/src/core/lib/surface/lame_client.h +23 -23
  1597. data/src/core/lib/surface/metadata_array.cc +17 -18
  1598. data/src/core/lib/surface/server.cc +379 -132
  1599. data/src/core/lib/surface/server.h +25 -23
  1600. data/src/core/lib/surface/validate_metadata.cc +79 -74
  1601. data/src/core/lib/surface/validate_metadata.h +40 -21
  1602. data/src/core/lib/surface/version.cc +21 -21
  1603. data/src/core/lib/transport/batch_builder.cc +182 -0
  1604. data/src/core/lib/transport/batch_builder.h +480 -0
  1605. data/src/core/lib/transport/bdp_estimator.cc +25 -27
  1606. data/src/core/lib/transport/bdp_estimator.h +31 -28
  1607. data/src/core/lib/transport/connectivity_state.cc +19 -20
  1608. data/src/core/lib/transport/connectivity_state.h +23 -23
  1609. data/src/core/lib/transport/custom_metadata.h +30 -0
  1610. data/src/core/lib/transport/error_utils.cc +54 -78
  1611. data/src/core/lib/transport/error_utils.h +24 -24
  1612. data/src/core/lib/transport/handshaker.cc +66 -54
  1613. data/src/core/lib/transport/handshaker.h +51 -47
  1614. data/src/core/lib/transport/handshaker_factory.h +49 -24
  1615. data/src/core/lib/transport/handshaker_registry.cc +27 -20
  1616. data/src/core/lib/transport/handshaker_registry.h +25 -28
  1617. data/src/core/lib/transport/http2_errors.h +22 -22
  1618. data/src/core/lib/transport/http_connect_handshaker.cc +56 -57
  1619. data/src/core/lib/transport/http_connect_handshaker.h +21 -21
  1620. data/src/core/lib/transport/metadata_batch.cc +38 -17
  1621. data/src/core/lib/transport/metadata_batch.h +338 -113
  1622. data/src/core/lib/transport/metadata_compression_traits.h +67 -0
  1623. data/src/core/lib/transport/parsed_metadata.cc +2 -6
  1624. data/src/core/lib/transport/parsed_metadata.h +56 -30
  1625. data/src/core/lib/transport/pid_controller.cc +20 -20
  1626. data/src/core/lib/transport/pid_controller.h +27 -27
  1627. data/src/core/lib/transport/simple_slice_based_metadata.h +55 -0
  1628. data/src/core/lib/transport/status_conversion.cc +23 -25
  1629. data/src/core/lib/transport/status_conversion.h +22 -22
  1630. data/src/core/lib/transport/tcp_connect_handshaker.cc +34 -42
  1631. data/src/core/lib/transport/tcp_connect_handshaker.h +3 -3
  1632. data/src/core/lib/transport/timeout_encoding.cc +28 -23
  1633. data/src/core/lib/transport/timeout_encoding.h +20 -20
  1634. data/src/core/lib/transport/transport.cc +113 -46
  1635. data/src/core/lib/transport/transport.h +289 -226
  1636. data/src/core/lib/transport/transport_fwd.h +20 -0
  1637. data/src/core/lib/transport/transport_impl.h +54 -47
  1638. data/src/core/lib/transport/transport_op_string.cc +77 -65
  1639. data/src/core/lib/uri/uri_parser.cc +1 -1
  1640. data/src/core/lib/uri/uri_parser.h +3 -3
  1641. data/src/core/plugin_registry/grpc_plugin_registry.cc +55 -79
  1642. data/src/core/plugin_registry/grpc_plugin_registry_extra.cc +22 -39
  1643. data/src/core/tsi/alts/crypt/aes_gcm.cc +20 -20
  1644. data/src/core/tsi/alts/crypt/gsec.cc +26 -26
  1645. data/src/core/tsi/alts/crypt/gsec.h +336 -336
  1646. data/src/core/tsi/alts/frame_protector/alts_counter.cc +23 -23
  1647. data/src/core/tsi/alts/frame_protector/alts_counter.h +68 -68
  1648. data/src/core/tsi/alts/frame_protector/alts_crypter.cc +19 -19
  1649. data/src/core/tsi/alts/frame_protector/alts_crypter.h +209 -209
  1650. data/src/core/tsi/alts/frame_protector/alts_frame_protector.cc +73 -71
  1651. data/src/core/tsi/alts/frame_protector/alts_frame_protector.h +40 -40
  1652. data/src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.cc +18 -18
  1653. data/src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.h +82 -83
  1654. data/src/core/tsi/alts/frame_protector/alts_seal_privacy_integrity_crypter.cc +22 -22
  1655. data/src/core/tsi/alts/frame_protector/alts_unseal_privacy_integrity_crypter.cc +22 -22
  1656. data/src/core/tsi/alts/frame_protector/frame_handler.cc +26 -25
  1657. data/src/core/tsi/alts/frame_protector/frame_handler.h +169 -169
  1658. data/src/core/tsi/alts/handshaker/alts_handshaker_client.cc +137 -100
  1659. data/src/core/tsi/alts/handshaker/alts_handshaker_client.h +109 -104
  1660. data/src/core/tsi/alts/handshaker/alts_shared_resource.cc +18 -17
  1661. data/src/core/tsi/alts/handshaker/alts_shared_resource.h +43 -44
  1662. data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc +52 -44
  1663. data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.h +60 -60
  1664. data/src/core/tsi/alts/handshaker/alts_tsi_handshaker_private.h +24 -24
  1665. data/src/core/tsi/alts/handshaker/alts_tsi_utils.cc +21 -20
  1666. data/src/core/tsi/alts/handshaker/alts_tsi_utils.h +38 -38
  1667. data/src/core/tsi/alts/handshaker/transport_security_common_api.cc +19 -19
  1668. data/src/core/tsi/alts/handshaker/transport_security_common_api.h +105 -104
  1669. data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.cc +45 -44
  1670. data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.h +40 -41
  1671. data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.cc +38 -36
  1672. data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.h +35 -36
  1673. data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol.h +67 -68
  1674. data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.cc +36 -37
  1675. data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.h +55 -56
  1676. data/src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.cc +54 -53
  1677. data/src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.h +141 -142
  1678. data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc +68 -60
  1679. data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.h +43 -44
  1680. data/src/core/tsi/fake_transport_security.cc +146 -110
  1681. data/src/core/tsi/fake_transport_security.h +36 -30
  1682. data/src/core/tsi/local_transport_security.cc +43 -38
  1683. data/src/core/tsi/local_transport_security.h +33 -33
  1684. data/src/core/tsi/ssl/key_logging/ssl_key_logging.cc +9 -4
  1685. data/src/core/tsi/ssl/key_logging/ssl_key_logging.h +3 -3
  1686. data/src/core/tsi/ssl/session_cache/ssl_session.h +21 -21
  1687. data/src/core/tsi/ssl/session_cache/ssl_session_boringssl.cc +19 -19
  1688. data/src/core/tsi/ssl/session_cache/ssl_session_cache.cc +18 -17
  1689. data/src/core/tsi/ssl/session_cache/ssl_session_cache.h +31 -22
  1690. data/src/core/tsi/ssl/session_cache/ssl_session_openssl.cc +25 -20
  1691. data/src/core/tsi/ssl_transport_security.cc +333 -378
  1692. data/src/core/tsi/ssl_transport_security.h +219 -204
  1693. data/src/core/tsi/ssl_transport_security_utils.cc +250 -0
  1694. data/src/core/tsi/ssl_transport_security_utils.h +147 -0
  1695. data/src/core/tsi/ssl_types.h +27 -27
  1696. data/src/core/tsi/transport_security.cc +44 -32
  1697. data/src/core/tsi/transport_security.h +49 -48
  1698. data/src/core/tsi/transport_security_grpc.cc +23 -22
  1699. data/src/core/tsi/transport_security_grpc.h +44 -41
  1700. data/src/core/tsi/transport_security_interface.h +344 -332
  1701. data/src/ruby/bin/math_pb.rb +24 -18
  1702. data/src/ruby/ext/grpc/ext-export-truffleruby-with-ruby-abi-version.clang +2 -0
  1703. data/src/ruby/ext/grpc/ext-export-truffleruby-with-ruby-abi-version.gcc +7 -0
  1704. data/src/ruby/ext/grpc/ext-export-with-ruby-abi-version.clang +2 -0
  1705. data/src/ruby/ext/grpc/ext-export-with-ruby-abi-version.gcc +7 -0
  1706. data/src/ruby/ext/grpc/ext-export.gcc +1 -1
  1707. data/src/ruby/ext/grpc/extconf.rb +107 -29
  1708. data/src/ruby/ext/grpc/rb_call.c +63 -39
  1709. data/src/ruby/ext/grpc/rb_call_credentials.c +0 -1
  1710. data/src/ruby/ext/grpc/rb_channel.c +110 -84
  1711. data/src/ruby/ext/grpc/rb_channel.h +1 -0
  1712. data/src/ruby/ext/grpc/rb_channel_args.c +17 -2
  1713. data/src/ruby/ext/grpc/rb_channel_args.h +4 -0
  1714. data/src/ruby/ext/grpc/rb_channel_credentials.c +0 -1
  1715. data/src/ruby/ext/grpc/rb_compression_options.c +1 -2
  1716. data/src/ruby/ext/grpc/rb_event_thread.c +22 -6
  1717. data/src/ruby/ext/grpc/rb_event_thread.h +1 -0
  1718. data/src/ruby/ext/grpc/rb_grpc.c +193 -30
  1719. data/src/ruby/ext/grpc/rb_grpc.h +8 -2
  1720. data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +40 -38
  1721. data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +63 -60
  1722. data/src/ruby/ext/grpc/rb_loader.c +6 -2
  1723. data/src/ruby/ext/grpc/rb_server.c +62 -45
  1724. data/src/ruby/ext/grpc/rb_server_credentials.c +0 -1
  1725. data/src/ruby/ext/grpc/rb_xds_channel_credentials.c +0 -1
  1726. data/src/ruby/ext/grpc/rb_xds_server_credentials.c +0 -1
  1727. data/src/ruby/lib/grpc/errors.rb +1 -1
  1728. data/src/ruby/lib/grpc/generic/bidi_call.rb +4 -0
  1729. data/src/ruby/lib/grpc/version.rb +1 -1
  1730. data/src/ruby/pb/generate_proto_ruby.sh +0 -6
  1731. data/src/ruby/pb/grpc/health/v1/health_pb.rb +24 -13
  1732. data/src/ruby/pb/src/proto/grpc/testing/empty_pb.rb +24 -3
  1733. data/src/ruby/pb/src/proto/grpc/testing/messages_pb.rb +26 -108
  1734. data/src/ruby/pb/src/proto/grpc/testing/test_pb.rb +25 -2
  1735. data/src/ruby/spec/channel_spec.rb +5 -43
  1736. data/src/ruby/spec/client_server_spec.rb +20 -8
  1737. data/src/ruby/spec/generic/active_call_spec.rb +12 -3
  1738. data/src/ruby/spec/generic/client_stub_spec.rb +23 -23
  1739. data/src/ruby/spec/generic/server_interceptors_spec.rb +1 -1
  1740. data/src/ruby/spec/user_agent_spec.rb +1 -1
  1741. data/third_party/abseil-cpp/absl/algorithm/container.h +57 -58
  1742. data/third_party/abseil-cpp/absl/base/attributes.h +88 -41
  1743. data/third_party/abseil-cpp/absl/base/casts.h +61 -68
  1744. data/third_party/abseil-cpp/absl/base/config.h +222 -40
  1745. data/third_party/abseil-cpp/absl/base/internal/cycleclock.cc +12 -42
  1746. data/third_party/abseil-cpp/absl/base/internal/cycleclock.h +52 -2
  1747. data/third_party/abseil-cpp/absl/base/internal/cycleclock_config.h +55 -0
  1748. data/third_party/abseil-cpp/absl/base/internal/direct_mmap.h +5 -4
  1749. data/third_party/abseil-cpp/absl/base/internal/endian.h +17 -62
  1750. data/third_party/abseil-cpp/absl/base/internal/fast_type_id.h +2 -0
  1751. data/third_party/abseil-cpp/absl/base/internal/inline_variable.h +3 -3
  1752. data/third_party/abseil-cpp/absl/base/internal/invoke.h +54 -0
  1753. data/third_party/abseil-cpp/absl/base/internal/low_level_alloc.cc +2 -2
  1754. data/third_party/abseil-cpp/absl/base/internal/low_level_alloc.h +1 -1
  1755. data/third_party/abseil-cpp/absl/base/internal/prefetch.h +138 -0
  1756. data/third_party/abseil-cpp/absl/base/internal/raw_logging.cc +39 -28
  1757. data/third_party/abseil-cpp/absl/base/internal/raw_logging.h +36 -36
  1758. data/third_party/abseil-cpp/absl/base/internal/spinlock.cc +6 -3
  1759. data/third_party/abseil-cpp/absl/base/internal/spinlock.h +10 -6
  1760. data/third_party/abseil-cpp/absl/base/internal/spinlock_linux.inc +2 -5
  1761. data/third_party/abseil-cpp/absl/base/internal/spinlock_win32.inc +4 -1
  1762. data/third_party/abseil-cpp/absl/base/internal/strerror.cc +88 -0
  1763. data/third_party/abseil-cpp/absl/base/internal/strerror.h +39 -0
  1764. data/third_party/abseil-cpp/absl/base/internal/sysinfo.cc +14 -11
  1765. data/third_party/abseil-cpp/absl/base/internal/thread_annotations.h +9 -0
  1766. data/third_party/abseil-cpp/absl/base/internal/thread_identity.cc +2 -1
  1767. data/third_party/abseil-cpp/absl/base/internal/thread_identity.h +4 -0
  1768. data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.cc +6 -7
  1769. data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.h +12 -40
  1770. data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock_config.h +62 -0
  1771. data/third_party/abseil-cpp/absl/base/log_severity.cc +28 -0
  1772. data/third_party/abseil-cpp/absl/base/log_severity.h +51 -0
  1773. data/third_party/abseil-cpp/absl/base/macros.h +4 -21
  1774. data/third_party/abseil-cpp/absl/base/optimization.h +76 -16
  1775. data/third_party/abseil-cpp/absl/base/options.h +1 -7
  1776. data/third_party/abseil-cpp/absl/base/policy_checks.h +15 -13
  1777. data/third_party/abseil-cpp/absl/base/thread_annotations.h +2 -2
  1778. data/third_party/abseil-cpp/absl/container/fixed_array.h +9 -5
  1779. data/third_party/abseil-cpp/absl/container/flat_hash_map.h +11 -4
  1780. data/third_party/abseil-cpp/absl/container/flat_hash_set.h +15 -16
  1781. data/third_party/abseil-cpp/absl/container/inlined_vector.h +84 -25
  1782. data/third_party/abseil-cpp/absl/container/internal/common.h +9 -8
  1783. data/third_party/abseil-cpp/absl/container/internal/common_policy_traits.h +132 -0
  1784. data/third_party/abseil-cpp/absl/container/internal/container_memory.h +23 -29
  1785. data/third_party/abseil-cpp/absl/container/internal/hash_policy_traits.h +4 -55
  1786. data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.cc +116 -23
  1787. data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.h +40 -54
  1788. data/third_party/abseil-cpp/absl/container/internal/inlined_vector.h +165 -66
  1789. data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.cc +159 -4
  1790. data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.h +1121 -470
  1791. data/third_party/abseil-cpp/absl/crc/crc32c.cc +99 -0
  1792. data/third_party/abseil-cpp/absl/crc/crc32c.h +183 -0
  1793. data/third_party/abseil-cpp/absl/crc/internal/cpu_detect.cc +256 -0
  1794. data/third_party/abseil-cpp/absl/crc/internal/cpu_detect.h +57 -0
  1795. data/third_party/abseil-cpp/absl/crc/internal/crc.cc +468 -0
  1796. data/third_party/abseil-cpp/absl/crc/internal/crc.h +91 -0
  1797. data/third_party/abseil-cpp/absl/crc/internal/crc32_x86_arm_combined_simd.h +269 -0
  1798. data/third_party/abseil-cpp/absl/crc/internal/crc32c.h +39 -0
  1799. data/third_party/abseil-cpp/absl/crc/internal/crc32c_inline.h +72 -0
  1800. data/third_party/abseil-cpp/absl/crc/internal/crc_cord_state.cc +130 -0
  1801. data/third_party/abseil-cpp/absl/crc/internal/crc_cord_state.h +159 -0
  1802. data/third_party/abseil-cpp/absl/crc/internal/crc_internal.h +179 -0
  1803. data/third_party/abseil-cpp/absl/crc/internal/crc_memcpy.h +119 -0
  1804. data/third_party/abseil-cpp/absl/crc/internal/crc_memcpy_fallback.cc +75 -0
  1805. data/third_party/abseil-cpp/absl/crc/internal/crc_memcpy_x86_64.cc +434 -0
  1806. data/third_party/abseil-cpp/absl/crc/internal/crc_non_temporal_memcpy.cc +93 -0
  1807. data/third_party/abseil-cpp/absl/crc/internal/crc_x86_arm_combined.cc +725 -0
  1808. data/third_party/abseil-cpp/absl/crc/internal/non_temporal_arm_intrinsics.h +79 -0
  1809. data/third_party/abseil-cpp/absl/crc/internal/non_temporal_memcpy.h +180 -0
  1810. data/third_party/abseil-cpp/absl/debugging/internal/address_is_readable.cc +45 -88
  1811. data/third_party/abseil-cpp/absl/debugging/internal/demangle.cc +67 -38
  1812. data/third_party/abseil-cpp/absl/debugging/internal/demangle.h +1 -1
  1813. data/third_party/abseil-cpp/absl/debugging/internal/elf_mem_image.cc +16 -13
  1814. data/third_party/abseil-cpp/absl/debugging/internal/elf_mem_image.h +3 -2
  1815. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_aarch64-inl.inc +19 -12
  1816. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_arm-inl.inc +8 -3
  1817. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_config.h +2 -1
  1818. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_generic-inl.inc +1 -1
  1819. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_powerpc-inl.inc +8 -3
  1820. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_riscv-inl.inc +59 -102
  1821. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_win32-inl.inc +5 -4
  1822. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_x86-inl.inc +41 -11
  1823. data/third_party/abseil-cpp/absl/debugging/internal/vdso_support.cc +18 -4
  1824. data/third_party/abseil-cpp/absl/debugging/symbolize.cc +6 -1
  1825. data/third_party/abseil-cpp/absl/debugging/symbolize_darwin.inc +3 -2
  1826. data/third_party/abseil-cpp/absl/debugging/symbolize_elf.inc +164 -101
  1827. data/third_party/abseil-cpp/absl/debugging/symbolize_win32.inc +7 -6
  1828. data/third_party/abseil-cpp/absl/flags/commandlineflag.cc +34 -0
  1829. data/third_party/abseil-cpp/absl/flags/commandlineflag.h +200 -0
  1830. data/third_party/abseil-cpp/absl/flags/config.h +68 -0
  1831. data/third_party/abseil-cpp/absl/flags/declare.h +73 -0
  1832. data/third_party/abseil-cpp/absl/flags/flag.cc +38 -0
  1833. data/third_party/abseil-cpp/absl/flags/flag.h +310 -0
  1834. data/third_party/abseil-cpp/absl/flags/internal/commandlineflag.cc +26 -0
  1835. data/third_party/abseil-cpp/absl/flags/internal/commandlineflag.h +68 -0
  1836. data/third_party/abseil-cpp/absl/flags/internal/flag.cc +615 -0
  1837. data/third_party/abseil-cpp/absl/flags/internal/flag.h +800 -0
  1838. data/third_party/abseil-cpp/absl/flags/internal/flag_msvc.inc +116 -0
  1839. data/third_party/abseil-cpp/absl/flags/internal/path_util.h +62 -0
  1840. data/third_party/abseil-cpp/absl/flags/internal/private_handle_accessor.cc +65 -0
  1841. data/third_party/abseil-cpp/absl/flags/internal/private_handle_accessor.h +61 -0
  1842. data/third_party/abseil-cpp/absl/flags/internal/program_name.cc +60 -0
  1843. data/third_party/abseil-cpp/absl/flags/internal/program_name.h +50 -0
  1844. data/third_party/abseil-cpp/absl/flags/internal/registry.h +97 -0
  1845. data/third_party/abseil-cpp/absl/flags/internal/sequence_lock.h +187 -0
  1846. data/third_party/abseil-cpp/absl/flags/marshalling.cc +241 -0
  1847. data/third_party/abseil-cpp/absl/flags/marshalling.h +356 -0
  1848. data/third_party/abseil-cpp/absl/flags/reflection.cc +354 -0
  1849. data/third_party/abseil-cpp/absl/flags/reflection.h +90 -0
  1850. data/third_party/abseil-cpp/absl/flags/usage_config.cc +165 -0
  1851. data/third_party/abseil-cpp/absl/flags/usage_config.h +135 -0
  1852. data/third_party/abseil-cpp/absl/functional/any_invocable.h +316 -0
  1853. data/third_party/abseil-cpp/absl/functional/bind_front.h +10 -1
  1854. data/third_party/abseil-cpp/absl/functional/function_ref.h +2 -1
  1855. data/third_party/abseil-cpp/absl/functional/internal/any_invocable.h +878 -0
  1856. data/third_party/abseil-cpp/absl/hash/hash.h +82 -8
  1857. data/third_party/abseil-cpp/absl/hash/internal/city.cc +10 -10
  1858. data/third_party/abseil-cpp/absl/hash/internal/hash.h +235 -26
  1859. data/third_party/abseil-cpp/absl/hash/internal/low_level_hash.cc +3 -14
  1860. data/third_party/abseil-cpp/absl/memory/memory.h +26 -447
  1861. data/third_party/abseil-cpp/absl/meta/type_traits.h +104 -12
  1862. data/third_party/abseil-cpp/absl/numeric/bits.h +1 -1
  1863. data/third_party/abseil-cpp/absl/numeric/int128.cc +14 -10
  1864. data/third_party/abseil-cpp/absl/numeric/int128.h +2 -2
  1865. data/third_party/abseil-cpp/absl/profiling/internal/sample_recorder.h +33 -10
  1866. data/third_party/abseil-cpp/absl/random/bernoulli_distribution.h +4 -4
  1867. data/third_party/abseil-cpp/absl/random/distributions.h +3 -3
  1868. data/third_party/abseil-cpp/absl/random/internal/distribution_caller.h +3 -0
  1869. data/third_party/abseil-cpp/absl/random/internal/fast_uniform_bits.h +4 -2
  1870. data/third_party/abseil-cpp/absl/random/internal/generate_real.h +2 -2
  1871. data/third_party/abseil-cpp/absl/random/internal/nonsecure_base.h +59 -48
  1872. data/third_party/abseil-cpp/absl/random/internal/pcg_engine.h +3 -24
  1873. data/third_party/abseil-cpp/absl/random/internal/pool_urbg.cc +9 -9
  1874. data/third_party/abseil-cpp/absl/random/internal/randen.h +5 -11
  1875. data/third_party/abseil-cpp/absl/random/internal/randen_detect.cc +6 -2
  1876. data/third_party/abseil-cpp/absl/random/internal/randen_engine.h +48 -23
  1877. data/third_party/abseil-cpp/absl/random/internal/salted_seed_seq.h +24 -26
  1878. data/third_party/abseil-cpp/absl/random/internal/seed_material.cc +2 -2
  1879. data/third_party/abseil-cpp/absl/random/internal/traits.h +53 -5
  1880. data/third_party/abseil-cpp/absl/random/internal/uniform_helper.h +5 -5
  1881. data/third_party/abseil-cpp/absl/random/internal/wide_multiply.h +33 -48
  1882. data/third_party/abseil-cpp/absl/random/log_uniform_int_distribution.h +9 -10
  1883. data/third_party/abseil-cpp/absl/random/poisson_distribution.h +7 -4
  1884. data/third_party/abseil-cpp/absl/random/random.h +6 -6
  1885. data/third_party/abseil-cpp/absl/random/seed_sequences.h +1 -0
  1886. data/third_party/abseil-cpp/absl/random/uniform_int_distribution.h +2 -2
  1887. data/third_party/abseil-cpp/absl/random/uniform_real_distribution.h +1 -1
  1888. data/third_party/abseil-cpp/absl/random/zipf_distribution.h +4 -3
  1889. data/third_party/abseil-cpp/absl/status/internal/status_internal.h +18 -0
  1890. data/third_party/abseil-cpp/absl/status/status.cc +193 -14
  1891. data/third_party/abseil-cpp/absl/status/status.h +24 -14
  1892. data/third_party/abseil-cpp/absl/status/statusor.h +9 -3
  1893. data/third_party/abseil-cpp/absl/strings/ascii.cc +5 -5
  1894. data/third_party/abseil-cpp/absl/strings/ascii.h +4 -4
  1895. data/third_party/abseil-cpp/absl/strings/charconv.cc +534 -96
  1896. data/third_party/abseil-cpp/absl/strings/cord.cc +257 -924
  1897. data/third_party/abseil-cpp/absl/strings/cord.h +268 -156
  1898. data/third_party/abseil-cpp/absl/strings/cord_analysis.cc +188 -0
  1899. data/third_party/abseil-cpp/absl/strings/cord_analysis.h +44 -0
  1900. data/third_party/abseil-cpp/absl/strings/cord_buffer.cc +30 -0
  1901. data/third_party/abseil-cpp/absl/strings/cord_buffer.h +575 -0
  1902. data/third_party/abseil-cpp/absl/strings/escaping.cc +73 -62
  1903. data/third_party/abseil-cpp/absl/strings/escaping.h +24 -19
  1904. data/third_party/abseil-cpp/absl/strings/internal/char_map.h +14 -12
  1905. data/third_party/abseil-cpp/absl/strings/internal/charconv_bigint.cc +4 -4
  1906. data/third_party/abseil-cpp/absl/strings/internal/charconv_parse.cc +2 -2
  1907. data/third_party/abseil-cpp/absl/strings/internal/cord_data_edge.h +63 -0
  1908. data/third_party/abseil-cpp/absl/strings/internal/cord_internal.cc +20 -32
  1909. data/third_party/abseil-cpp/absl/strings/internal/cord_internal.h +445 -150
  1910. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree.cc +157 -53
  1911. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree.h +70 -73
  1912. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree_navigator.cc +8 -6
  1913. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree_navigator.h +4 -2
  1914. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree_reader.cc +3 -2
  1915. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree_reader.h +5 -4
  1916. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_consume.cc +7 -74
  1917. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_crc.cc +56 -0
  1918. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_crc.h +103 -0
  1919. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_flat.h +58 -17
  1920. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_ring.cc +13 -11
  1921. data/third_party/abseil-cpp/absl/strings/internal/cordz_functions.h +7 -15
  1922. data/third_party/abseil-cpp/absl/strings/internal/cordz_handle.h +3 -3
  1923. data/third_party/abseil-cpp/absl/strings/internal/cordz_info.cc +19 -43
  1924. data/third_party/abseil-cpp/absl/strings/internal/cordz_info.h +7 -7
  1925. data/third_party/abseil-cpp/absl/strings/internal/cordz_statistics.h +5 -4
  1926. data/third_party/abseil-cpp/absl/strings/internal/cordz_update_tracker.h +4 -2
  1927. data/third_party/abseil-cpp/absl/strings/internal/damerau_levenshtein_distance.cc +93 -0
  1928. data/third_party/abseil-cpp/absl/strings/internal/damerau_levenshtein_distance.h +34 -0
  1929. data/third_party/abseil-cpp/absl/strings/internal/escaping.cc +18 -15
  1930. data/third_party/abseil-cpp/absl/strings/internal/escaping.h +7 -9
  1931. data/third_party/abseil-cpp/absl/strings/internal/has_absl_stringify.h +55 -0
  1932. data/third_party/abseil-cpp/absl/strings/internal/memutil.cc +9 -6
  1933. data/third_party/abseil-cpp/absl/strings/internal/ostringstream.cc +14 -7
  1934. data/third_party/abseil-cpp/absl/strings/internal/ostringstream.h +35 -10
  1935. data/third_party/abseil-cpp/absl/strings/internal/str_format/arg.cc +113 -46
  1936. data/third_party/abseil-cpp/absl/strings/internal/str_format/arg.h +127 -30
  1937. data/third_party/abseil-cpp/absl/strings/internal/str_format/bind.cc +3 -2
  1938. data/third_party/abseil-cpp/absl/strings/internal/str_format/bind.h +42 -10
  1939. data/third_party/abseil-cpp/absl/strings/internal/str_format/checker.h +56 -289
  1940. data/third_party/abseil-cpp/absl/strings/internal/str_format/constexpr_parser.h +351 -0
  1941. data/third_party/abseil-cpp/absl/strings/internal/str_format/extension.cc +6 -6
  1942. data/third_party/abseil-cpp/absl/strings/internal/str_format/extension.h +9 -4
  1943. data/third_party/abseil-cpp/absl/strings/internal/str_format/float_conversion.cc +215 -181
  1944. data/third_party/abseil-cpp/absl/strings/internal/str_format/output.h +2 -1
  1945. data/third_party/abseil-cpp/absl/strings/internal/str_format/parser.cc +10 -209
  1946. data/third_party/abseil-cpp/absl/strings/internal/str_format/parser.h +14 -103
  1947. data/third_party/abseil-cpp/absl/strings/internal/str_join_internal.h +9 -6
  1948. data/third_party/abseil-cpp/absl/strings/internal/str_split_internal.h +2 -1
  1949. data/third_party/abseil-cpp/absl/strings/internal/string_constant.h +10 -2
  1950. data/third_party/abseil-cpp/absl/strings/internal/stringify_sink.cc +28 -0
  1951. data/third_party/abseil-cpp/absl/strings/internal/stringify_sink.h +57 -0
  1952. data/third_party/abseil-cpp/absl/strings/internal/utf8.cc +9 -9
  1953. data/third_party/abseil-cpp/absl/strings/numbers.cc +42 -39
  1954. data/third_party/abseil-cpp/absl/strings/numbers.h +26 -23
  1955. data/third_party/abseil-cpp/absl/strings/str_cat.cc +9 -6
  1956. data/third_party/abseil-cpp/absl/strings/str_cat.h +70 -16
  1957. data/third_party/abseil-cpp/absl/strings/str_format.h +71 -9
  1958. data/third_party/abseil-cpp/absl/strings/str_join.h +9 -15
  1959. data/third_party/abseil-cpp/absl/strings/str_split.h +1 -2
  1960. data/third_party/abseil-cpp/absl/strings/string_view.cc +8 -19
  1961. data/third_party/abseil-cpp/absl/strings/string_view.h +6 -12
  1962. data/third_party/abseil-cpp/absl/strings/strip.h +8 -6
  1963. data/third_party/abseil-cpp/absl/strings/substitute.cc +8 -6
  1964. data/third_party/abseil-cpp/absl/strings/substitute.h +55 -21
  1965. data/third_party/abseil-cpp/absl/synchronization/internal/create_thread_identity.cc +9 -6
  1966. data/third_party/abseil-cpp/absl/synchronization/internal/create_thread_identity.h +0 -4
  1967. data/third_party/abseil-cpp/absl/synchronization/internal/futex.h +20 -17
  1968. data/third_party/abseil-cpp/absl/synchronization/internal/graphcycles.cc +37 -31
  1969. data/third_party/abseil-cpp/absl/synchronization/internal/kernel_timeout.h +22 -8
  1970. data/third_party/abseil-cpp/absl/synchronization/internal/per_thread_sem.cc +0 -4
  1971. data/third_party/abseil-cpp/absl/synchronization/internal/per_thread_sem.h +1 -6
  1972. data/third_party/abseil-cpp/absl/synchronization/internal/waiter.cc +0 -25
  1973. data/third_party/abseil-cpp/absl/synchronization/internal/waiter.h +10 -4
  1974. data/third_party/abseil-cpp/absl/synchronization/mutex.cc +172 -88
  1975. data/third_party/abseil-cpp/absl/synchronization/mutex.h +102 -55
  1976. data/third_party/abseil-cpp/absl/synchronization/notification.cc +0 -1
  1977. data/third_party/abseil-cpp/absl/synchronization/notification.h +3 -3
  1978. data/third_party/abseil-cpp/absl/time/civil_time.cc +26 -0
  1979. data/third_party/abseil-cpp/absl/time/civil_time.h +25 -0
  1980. data/third_party/abseil-cpp/absl/time/clock.cc +17 -11
  1981. data/third_party/abseil-cpp/absl/time/duration.cc +12 -11
  1982. data/third_party/abseil-cpp/absl/time/format.cc +2 -1
  1983. data/third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/civil_time_detail.h +11 -7
  1984. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_format.cc +1 -1
  1985. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_info.cc +26 -5
  1986. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_lookup.cc +7 -6
  1987. data/third_party/abseil-cpp/absl/time/internal/cctz/src/zone_info_source.cc +36 -35
  1988. data/third_party/abseil-cpp/absl/time/time.cc +2 -2
  1989. data/third_party/abseil-cpp/absl/time/time.h +268 -169
  1990. data/third_party/abseil-cpp/absl/types/internal/optional.h +8 -0
  1991. data/third_party/abseil-cpp/absl/types/internal/span.h +30 -19
  1992. data/third_party/abseil-cpp/absl/types/internal/variant.h +28 -40
  1993. data/third_party/abseil-cpp/absl/types/optional.h +17 -14
  1994. data/third_party/abseil-cpp/absl/types/span.h +31 -8
  1995. data/third_party/boringssl-with-bazel/err_data.c +729 -713
  1996. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_bitstr.c +177 -177
  1997. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_bool.c +28 -55
  1998. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_d2i_fp.c +21 -23
  1999. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_dup.c +20 -23
  2000. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_gentm.c +66 -185
  2001. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_i2d_fp.c +18 -21
  2002. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_int.c +356 -311
  2003. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_mbstr.c +177 -196
  2004. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_object.c +146 -210
  2005. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_octet.c +6 -9
  2006. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_strex.c +346 -526
  2007. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_strnid.c +111 -132
  2008. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_time.c +158 -111
  2009. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_type.c +93 -60
  2010. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_utctm.c +96 -181
  2011. data/third_party/boringssl-with-bazel/src/crypto/asn1/asn1_lib.c +242 -305
  2012. data/third_party/boringssl-with-bazel/src/crypto/asn1/asn1_par.c +41 -18
  2013. data/third_party/boringssl-with-bazel/src/crypto/asn1/asn_pack.c +30 -33
  2014. data/third_party/boringssl-with-bazel/src/crypto/asn1/f_int.c +36 -33
  2015. data/third_party/boringssl-with-bazel/src/crypto/asn1/f_string.c +29 -26
  2016. data/third_party/boringssl-with-bazel/src/crypto/asn1/internal.h +135 -90
  2017. data/third_party/boringssl-with-bazel/src/crypto/asn1/posix_time.c +230 -0
  2018. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_dec.c +797 -793
  2019. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_enc.c +529 -526
  2020. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_fre.c +114 -135
  2021. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_new.c +201 -207
  2022. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_typ.c +21 -26
  2023. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_utl.c +55 -68
  2024. data/third_party/boringssl-with-bazel/src/crypto/base64/base64.c +2 -4
  2025. data/third_party/boringssl-with-bazel/src/crypto/bio/bio.c +20 -14
  2026. data/third_party/boringssl-with-bazel/src/crypto/bio/bio_mem.c +42 -57
  2027. data/third_party/boringssl-with-bazel/src/crypto/bio/connect.c +17 -11
  2028. data/third_party/boringssl-with-bazel/src/crypto/bio/fd.c +15 -11
  2029. data/third_party/boringssl-with-bazel/src/crypto/bio/file.c +30 -27
  2030. data/third_party/boringssl-with-bazel/src/crypto/bio/pair.c +5 -5
  2031. data/third_party/boringssl-with-bazel/src/crypto/bio/printf.c +0 -13
  2032. data/third_party/boringssl-with-bazel/src/crypto/bio/socket.c +5 -8
  2033. data/third_party/boringssl-with-bazel/src/crypto/bio/socket_helper.c +4 -2
  2034. data/third_party/boringssl-with-bazel/src/crypto/blake2/blake2.c +40 -27
  2035. data/third_party/boringssl-with-bazel/src/crypto/bn_extra/convert.c +10 -23
  2036. data/third_party/boringssl-with-bazel/src/crypto/buf/buf.c +2 -6
  2037. data/third_party/boringssl-with-bazel/src/crypto/bytestring/asn1_compat.c +2 -1
  2038. data/third_party/boringssl-with-bazel/src/crypto/bytestring/ber.c +29 -28
  2039. data/third_party/boringssl-with-bazel/src/crypto/bytestring/cbb.c +161 -201
  2040. data/third_party/boringssl-with-bazel/src/crypto/bytestring/cbs.c +254 -39
  2041. data/third_party/boringssl-with-bazel/src/crypto/bytestring/internal.h +2 -2
  2042. data/third_party/boringssl-with-bazel/src/crypto/chacha/chacha.c +19 -3
  2043. data/third_party/boringssl-with-bazel/src/crypto/chacha/internal.h +8 -1
  2044. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/derive_key.c +4 -4
  2045. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_aesctrhmac.c +9 -8
  2046. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_aesgcmsiv.c +37 -75
  2047. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_chacha20poly1305.c +8 -10
  2048. data/third_party/boringssl-with-bazel/src/crypto/{fipsmodule/cipher → cipher_extra}/e_des.c +100 -78
  2049. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_null.c +1 -0
  2050. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_rc2.c +1 -0
  2051. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_rc4.c +2 -0
  2052. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_tls.c +34 -37
  2053. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/internal.h +22 -11
  2054. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/tls_cbc.c +189 -13
  2055. data/third_party/boringssl-with-bazel/src/crypto/conf/conf.c +34 -195
  2056. data/third_party/boringssl-with-bazel/src/crypto/conf/conf_def.h +3 -8
  2057. data/third_party/boringssl-with-bazel/src/crypto/conf/internal.h +20 -0
  2058. data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_apple.c +77 -0
  2059. data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_freebsd.c +62 -0
  2060. data/third_party/boringssl-with-bazel/src/crypto/{cpu-aarch64-fuchsia.c → cpu_aarch64_fuchsia.c} +8 -7
  2061. data/third_party/boringssl-with-bazel/src/crypto/{cpu-aarch64-linux.c → cpu_aarch64_linux.c} +6 -4
  2062. data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_openbsd.c +62 -0
  2063. data/third_party/boringssl-with-bazel/src/crypto/{cpu-aarch64-win.c → cpu_aarch64_win.c} +4 -4
  2064. data/third_party/boringssl-with-bazel/src/crypto/{cpu-arm.c → cpu_arm.c} +1 -1
  2065. data/third_party/boringssl-with-bazel/src/crypto/cpu_arm_freebsd.c +55 -0
  2066. data/third_party/boringssl-with-bazel/src/crypto/{cpu-arm-linux.c → cpu_arm_linux.c} +11 -90
  2067. data/third_party/boringssl-with-bazel/src/crypto/{cpu-arm-linux.h → cpu_arm_linux.h} +0 -38
  2068. data/third_party/boringssl-with-bazel/src/crypto/{cpu-ppc64le.c → cpu_arm_openbsd.c} +10 -17
  2069. data/third_party/boringssl-with-bazel/src/crypto/{cpu-intel.c → cpu_intel.c} +1 -2
  2070. data/third_party/boringssl-with-bazel/src/crypto/crypto.c +25 -20
  2071. data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519.c +71 -77
  2072. data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519_64_adx.c +18 -0
  2073. data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519_tables.h +2834 -7442
  2074. data/third_party/boringssl-with-bazel/src/crypto/curve25519/internal.h +26 -8
  2075. data/third_party/boringssl-with-bazel/src/crypto/curve25519/spake25519.c +17 -32
  2076. data/third_party/boringssl-with-bazel/src/crypto/{fipsmodule/des → des}/des.c +232 -232
  2077. data/third_party/boringssl-with-bazel/src/crypto/{fipsmodule/des → des}/internal.h +1 -1
  2078. data/third_party/boringssl-with-bazel/src/crypto/dh_extra/dh_asn1.c +1 -0
  2079. data/third_party/boringssl-with-bazel/src/crypto/dh_extra/params.c +232 -29
  2080. data/third_party/boringssl-with-bazel/src/crypto/digest_extra/digest_extra.c +0 -3
  2081. data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa.c +43 -16
  2082. data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa_asn1.c +37 -7
  2083. data/third_party/boringssl-with-bazel/src/crypto/dsa/internal.h +23 -3
  2084. data/third_party/boringssl-with-bazel/src/crypto/ec_extra/ec_asn1.c +118 -105
  2085. data/third_party/boringssl-with-bazel/src/crypto/ec_extra/ec_derive.c +4 -3
  2086. data/third_party/boringssl-with-bazel/src/crypto/ec_extra/hash_to_curve.c +237 -109
  2087. data/third_party/boringssl-with-bazel/src/crypto/ec_extra/internal.h +31 -7
  2088. data/third_party/boringssl-with-bazel/src/crypto/ecdh_extra/ecdh_extra.c +1 -1
  2089. data/third_party/boringssl-with-bazel/src/crypto/ecdsa_extra/ecdsa_asn1.c +2 -4
  2090. data/third_party/boringssl-with-bazel/src/crypto/err/err.c +96 -70
  2091. data/third_party/boringssl-with-bazel/src/crypto/evp/evp.c +80 -23
  2092. data/third_party/boringssl-with-bazel/src/crypto/evp/evp_asn1.c +3 -3
  2093. data/third_party/boringssl-with-bazel/src/crypto/evp/evp_ctx.c +25 -23
  2094. data/third_party/boringssl-with-bazel/src/crypto/evp/internal.h +43 -9
  2095. data/third_party/boringssl-with-bazel/src/crypto/evp/p_dsa_asn1.c +75 -44
  2096. data/third_party/boringssl-with-bazel/src/crypto/evp/p_ec.c +21 -29
  2097. data/third_party/boringssl-with-bazel/src/crypto/evp/p_ec_asn1.c +99 -52
  2098. data/third_party/boringssl-with-bazel/src/crypto/evp/p_ed25519.c +7 -8
  2099. data/third_party/boringssl-with-bazel/src/crypto/evp/p_ed25519_asn1.c +26 -23
  2100. data/third_party/boringssl-with-bazel/src/crypto/evp/p_hkdf.c +233 -0
  2101. data/third_party/boringssl-with-bazel/src/crypto/evp/p_rsa.c +6 -6
  2102. data/third_party/boringssl-with-bazel/src/crypto/evp/p_rsa_asn1.c +42 -25
  2103. data/third_party/boringssl-with-bazel/src/crypto/evp/p_x25519.c +4 -5
  2104. data/third_party/boringssl-with-bazel/src/crypto/evp/p_x25519_asn1.c +35 -47
  2105. data/third_party/boringssl-with-bazel/src/crypto/evp/pbkdf.c +3 -3
  2106. data/third_party/boringssl-with-bazel/src/crypto/evp/print.c +138 -246
  2107. data/third_party/boringssl-with-bazel/src/crypto/evp/scrypt.c +2 -4
  2108. data/third_party/boringssl-with-bazel/src/crypto/evp/sign.c +15 -10
  2109. data/third_party/boringssl-with-bazel/src/crypto/ex_data.c +47 -71
  2110. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/aes.c +0 -2
  2111. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/aes_nohw.c +13 -14
  2112. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/internal.h +3 -13
  2113. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/key_wrap.c +13 -7
  2114. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/mode_wrappers.c +9 -7
  2115. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm.c +37 -28
  2116. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/bn.c +16 -26
  2117. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/bytes.c +88 -60
  2118. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/cmp.c +4 -3
  2119. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/ctx.c +0 -2
  2120. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div.c +13 -6
  2121. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div_extra.c +1 -1
  2122. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/exponentiation.c +99 -113
  2123. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/gcd.c +5 -7
  2124. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/gcd_extra.c +5 -3
  2125. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/generic.c +112 -168
  2126. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/internal.h +98 -37
  2127. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery.c +28 -24
  2128. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery_inv.c +55 -20
  2129. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/mul.c +4 -5
  2130. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/prime.c +13 -0
  2131. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/random.c +13 -5
  2132. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/rsaz_exp.c +25 -114
  2133. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/rsaz_exp.h +19 -15
  2134. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/shift.c +15 -16
  2135. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/sqrt.c +22 -21
  2136. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/aead.c +3 -0
  2137. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/cipher.c +79 -19
  2138. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/e_aes.c +102 -99
  2139. data/third_party/boringssl-with-bazel/src/crypto/{cipher_extra → fipsmodule/cipher}/e_aesccm.c +52 -46
  2140. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/internal.h +39 -0
  2141. data/third_party/boringssl-with-bazel/src/crypto/{cmac → fipsmodule/cmac}/cmac.c +55 -11
  2142. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/delocate.h +5 -6
  2143. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/check.c +2 -3
  2144. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/dh.c +24 -6
  2145. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/internal.h +58 -0
  2146. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/digest.c +5 -3
  2147. data/third_party/boringssl-with-bazel/src/crypto/{evp → fipsmodule/digestsign}/digestsign.c +51 -15
  2148. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/builtin_curves.h +277 -0
  2149. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec.c +226 -450
  2150. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_key.c +95 -21
  2151. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_montgomery.c +36 -69
  2152. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/felem.c +17 -13
  2153. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/internal.h +139 -155
  2154. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/oct.c +71 -40
  2155. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p224-64.c +60 -78
  2156. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{p256-x86_64-table.h → p256-nistz-table.h} +1 -1
  2157. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{p256-x86_64.c → p256-nistz.c} +87 -83
  2158. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{p256-x86_64.h → p256-nistz.h} +5 -13
  2159. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256.c +71 -62
  2160. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256_table.h +1 -1
  2161. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/scalar.c +24 -30
  2162. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/simple.c +21 -42
  2163. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/simple_mul.c +33 -34
  2164. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/wnaf.c +16 -17
  2165. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdh/ecdh.c +9 -1
  2166. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/ecdsa.c +53 -19
  2167. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/internal.h +6 -0
  2168. data/third_party/boringssl-with-bazel/src/crypto/{hkdf → fipsmodule/hkdf}/hkdf.c +2 -2
  2169. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/hmac/hmac.c +52 -24
  2170. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/cbc.c +9 -23
  2171. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/cfb.c +1 -4
  2172. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/ctr.c +3 -8
  2173. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/gcm.c +170 -160
  2174. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/gcm_nohw.c +12 -14
  2175. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/internal.h +69 -61
  2176. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/ofb.c +2 -12
  2177. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/polyval.c +27 -28
  2178. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/ctrdrbg.c +31 -13
  2179. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/fork_detect.c +56 -34
  2180. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/fork_detect.h +3 -2
  2181. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/getrandom_fillin.h +2 -2
  2182. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/internal.h +30 -45
  2183. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/rand.c +111 -78
  2184. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/urandom.c +12 -85
  2185. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/blinding.c +0 -1
  2186. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/internal.h +98 -16
  2187. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/padding.c +42 -314
  2188. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa.c +244 -139
  2189. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa_impl.c +175 -255
  2190. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/fips.c +41 -0
  2191. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/self_check.c +589 -422
  2192. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/service_indicator/internal.h +89 -0
  2193. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/service_indicator/service_indicator.c +334 -0
  2194. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/internal.h +3 -12
  2195. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha1.c +2 -0
  2196. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha256.c +12 -8
  2197. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha512.c +14 -12
  2198. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/tls/internal.h +8 -0
  2199. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/tls/kdf.c +52 -6
  2200. data/third_party/boringssl-with-bazel/src/crypto/hpke/hpke.c +192 -18
  2201. data/third_party/boringssl-with-bazel/src/crypto/hrss/hrss.c +65 -29
  2202. data/third_party/boringssl-with-bazel/src/crypto/internal.h +576 -84
  2203. data/third_party/boringssl-with-bazel/src/crypto/kyber/internal.h +91 -0
  2204. data/third_party/boringssl-with-bazel/src/crypto/kyber/keccak.c +204 -0
  2205. data/third_party/boringssl-with-bazel/src/crypto/kyber/kyber.c +834 -0
  2206. data/third_party/boringssl-with-bazel/src/crypto/lhash/internal.h +13 -1
  2207. data/third_party/boringssl-with-bazel/src/crypto/mem.c +219 -13
  2208. data/third_party/boringssl-with-bazel/src/crypto/obj/obj.c +37 -29
  2209. data/third_party/boringssl-with-bazel/src/crypto/obj/obj_dat.h +9 -4
  2210. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_all.c +81 -90
  2211. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_info.c +150 -245
  2212. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_lib.c +633 -613
  2213. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_oth.c +17 -17
  2214. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pk8.c +142 -149
  2215. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pkey.c +99 -131
  2216. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_x509.c +0 -1
  2217. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_xaux.c +0 -1
  2218. data/third_party/boringssl-with-bazel/src/crypto/pkcs7/pkcs7_x509.c +0 -1
  2219. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/internal.h +3 -3
  2220. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/p5_pbev2.c +3 -3
  2221. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8.c +7 -10
  2222. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8_x509.c +44 -71
  2223. data/third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305.c +31 -38
  2224. data/third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305_arm.c +2 -1
  2225. data/third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305_vec.c +18 -31
  2226. data/third_party/boringssl-with-bazel/src/crypto/pool/internal.h +2 -0
  2227. data/third_party/boringssl-with-bazel/src/crypto/pool/pool.c +8 -1
  2228. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/deterministic.c +7 -6
  2229. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/forkunsafe.c +6 -12
  2230. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/getentropy.c +48 -0
  2231. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/{fuchsia.c → ios.c} +8 -8
  2232. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/passive.c +129 -5
  2233. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/trusty.c +38 -0
  2234. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/windows.c +41 -19
  2235. data/third_party/boringssl-with-bazel/src/crypto/{refcount_c11.c → refcount.c} +11 -19
  2236. data/third_party/boringssl-with-bazel/src/crypto/{asn1/a_print.c → rsa_extra/internal.h} +15 -21
  2237. data/third_party/boringssl-with-bazel/src/crypto/rsa_extra/rsa_crypt.c +568 -0
  2238. data/third_party/boringssl-with-bazel/src/crypto/siphash/siphash.c +8 -11
  2239. data/third_party/boringssl-with-bazel/src/crypto/stack/stack.c +171 -62
  2240. data/third_party/boringssl-with-bazel/src/crypto/thread_none.c +0 -8
  2241. data/third_party/boringssl-with-bazel/src/crypto/thread_pthread.c +12 -44
  2242. data/third_party/boringssl-with-bazel/src/crypto/thread_win.c +11 -35
  2243. data/third_party/boringssl-with-bazel/src/crypto/trust_token/internal.h +128 -34
  2244. data/third_party/boringssl-with-bazel/src/crypto/trust_token/pmbtoken.c +428 -147
  2245. data/third_party/boringssl-with-bazel/src/crypto/trust_token/trust_token.c +116 -284
  2246. data/third_party/boringssl-with-bazel/src/crypto/trust_token/voprf.c +686 -161
  2247. data/third_party/boringssl-with-bazel/src/crypto/x509/a_digest.c +22 -24
  2248. data/third_party/boringssl-with-bazel/src/crypto/x509/a_sign.c +63 -55
  2249. data/third_party/boringssl-with-bazel/src/crypto/x509/a_verify.c +32 -34
  2250. data/third_party/boringssl-with-bazel/src/crypto/x509/algorithm.c +32 -16
  2251. data/third_party/boringssl-with-bazel/src/crypto/x509/asn1_gen.c +465 -704
  2252. data/third_party/boringssl-with-bazel/src/crypto/x509/by_dir.c +279 -331
  2253. data/third_party/boringssl-with-bazel/src/crypto/x509/by_file.c +183 -178
  2254. data/third_party/boringssl-with-bazel/src/crypto/x509/i2d_pr.c +11 -15
  2255. data/third_party/boringssl-with-bazel/src/crypto/x509/internal.h +69 -51
  2256. data/third_party/boringssl-with-bazel/src/crypto/x509/name_print.c +132 -151
  2257. data/third_party/boringssl-with-bazel/src/crypto/x509/policy.c +790 -0
  2258. data/third_party/boringssl-with-bazel/src/crypto/x509/rsa_pss.c +95 -102
  2259. data/third_party/boringssl-with-bazel/src/crypto/x509/t_crl.c +72 -57
  2260. data/third_party/boringssl-with-bazel/src/crypto/x509/t_req.c +12 -10
  2261. data/third_party/boringssl-with-bazel/src/crypto/x509/t_x509.c +220 -254
  2262. data/third_party/boringssl-with-bazel/src/crypto/x509/t_x509a.c +52 -47
  2263. data/third_party/boringssl-with-bazel/src/crypto/x509/x509.c +3 -4
  2264. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_att.c +136 -270
  2265. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_cmp.c +161 -327
  2266. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_d2.c +37 -33
  2267. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_def.c +14 -31
  2268. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_ext.c +55 -85
  2269. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_lu.c +526 -616
  2270. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_obj.c +129 -122
  2271. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_req.c +164 -181
  2272. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_set.c +132 -132
  2273. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_trs.c +186 -203
  2274. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_txt.c +64 -79
  2275. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_v3.c +171 -160
  2276. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vfy.c +1863 -2050
  2277. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vpm.c +380 -480
  2278. data/third_party/boringssl-with-bazel/src/crypto/x509/x509cset.c +156 -163
  2279. data/third_party/boringssl-with-bazel/src/crypto/x509/x509name.c +262 -265
  2280. data/third_party/boringssl-with-bazel/src/crypto/x509/x509rset.c +40 -15
  2281. data/third_party/boringssl-with-bazel/src/crypto/x509/x509spki.c +59 -63
  2282. data/third_party/boringssl-with-bazel/src/crypto/x509/x_algor.c +63 -67
  2283. data/third_party/boringssl-with-bazel/src/crypto/x509/x_all.c +114 -144
  2284. data/third_party/boringssl-with-bazel/src/crypto/x509/x_attrib.c +25 -26
  2285. data/third_party/boringssl-with-bazel/src/crypto/x509/x_crl.c +330 -417
  2286. data/third_party/boringssl-with-bazel/src/crypto/x509/x_exten.c +8 -7
  2287. data/third_party/boringssl-with-bazel/src/crypto/x509/x_info.c +30 -28
  2288. data/third_party/boringssl-with-bazel/src/crypto/x509/x_name.c +354 -370
  2289. data/third_party/boringssl-with-bazel/src/crypto/x509/x_pkey.c +37 -32
  2290. data/third_party/boringssl-with-bazel/src/crypto/x509/x_pubkey.c +121 -124
  2291. data/third_party/boringssl-with-bazel/src/crypto/x509/x_req.c +36 -26
  2292. data/third_party/boringssl-with-bazel/src/crypto/x509/x_sig.c +3 -4
  2293. data/third_party/boringssl-with-bazel/src/crypto/x509/x_spki.c +10 -13
  2294. data/third_party/boringssl-with-bazel/src/crypto/x509/x_val.c +3 -4
  2295. data/third_party/boringssl-with-bazel/src/crypto/x509/x_x509.c +419 -261
  2296. data/third_party/boringssl-with-bazel/src/crypto/x509/x_x509a.c +113 -105
  2297. data/third_party/boringssl-with-bazel/src/crypto/x509v3/ext_dat.h +11 -15
  2298. data/third_party/boringssl-with-bazel/src/crypto/x509v3/internal.h +79 -171
  2299. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_akey.c +126 -131
  2300. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_akeya.c +3 -4
  2301. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_alt.c +465 -469
  2302. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_bcons.c +56 -54
  2303. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_bitst.c +46 -49
  2304. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_conf.c +294 -344
  2305. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_cpols.c +342 -365
  2306. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_crld.c +429 -393
  2307. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_enum.c +29 -24
  2308. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_extku.c +65 -59
  2309. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_genn.c +125 -121
  2310. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_ia5.c +43 -42
  2311. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_info.c +120 -125
  2312. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_int.c +50 -20
  2313. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_lib.c +227 -265
  2314. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_ncons.c +386 -389
  2315. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_ocsp.c +45 -32
  2316. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_pcons.c +57 -54
  2317. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_pmaps.c +63 -67
  2318. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_prn.c +130 -135
  2319. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_purp.c +650 -691
  2320. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_skey.c +90 -75
  2321. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_utl.c +1063 -1145
  2322. data/third_party/boringssl-with-bazel/src/include/openssl/aead.h +13 -11
  2323. data/third_party/boringssl-with-bazel/src/include/openssl/arm_arch.h +25 -160
  2324. data/third_party/boringssl-with-bazel/src/include/openssl/asm_base.h +207 -0
  2325. data/third_party/boringssl-with-bazel/src/include/openssl/asn1.h +222 -191
  2326. data/third_party/boringssl-with-bazel/src/include/openssl/asn1t.h +26 -78
  2327. data/third_party/boringssl-with-bazel/src/include/openssl/base.h +46 -124
  2328. data/third_party/boringssl-with-bazel/src/include/openssl/bio.h +29 -14
  2329. data/third_party/boringssl-with-bazel/src/include/openssl/blake2.h +1 -4
  2330. data/third_party/boringssl-with-bazel/src/include/openssl/bn.h +49 -19
  2331. data/third_party/boringssl-with-bazel/src/include/openssl/bytestring.h +99 -29
  2332. data/third_party/boringssl-with-bazel/src/include/openssl/chacha.h +6 -0
  2333. data/third_party/boringssl-with-bazel/src/include/openssl/cipher.h +49 -60
  2334. data/third_party/boringssl-with-bazel/src/include/openssl/conf.h +7 -16
  2335. data/third_party/boringssl-with-bazel/src/include/openssl/cpu.h +16 -200
  2336. data/third_party/boringssl-with-bazel/src/include/openssl/crypto.h +34 -0
  2337. data/third_party/boringssl-with-bazel/src/include/openssl/ctrdrbg.h +82 -0
  2338. data/third_party/boringssl-with-bazel/src/include/openssl/dh.h +32 -30
  2339. data/third_party/boringssl-with-bazel/src/include/openssl/digest.h +7 -0
  2340. data/third_party/boringssl-with-bazel/src/include/openssl/dsa.h +4 -21
  2341. data/third_party/boringssl-with-bazel/src/include/openssl/ec.h +69 -7
  2342. data/third_party/boringssl-with-bazel/src/include/openssl/ec_key.h +56 -14
  2343. data/third_party/boringssl-with-bazel/src/include/openssl/ecdsa.h +1 -0
  2344. data/third_party/boringssl-with-bazel/src/include/openssl/err.h +33 -5
  2345. data/third_party/boringssl-with-bazel/src/include/openssl/evp.h +36 -40
  2346. data/third_party/boringssl-with-bazel/src/include/openssl/ex_data.h +1 -1
  2347. data/third_party/boringssl-with-bazel/src/include/openssl/hmac.h +7 -0
  2348. data/third_party/boringssl-with-bazel/src/include/openssl/hpke.h +69 -16
  2349. data/third_party/boringssl-with-bazel/src/include/openssl/kdf.h +91 -0
  2350. data/third_party/boringssl-with-bazel/src/include/openssl/kyber.h +128 -0
  2351. data/third_party/boringssl-with-bazel/src/include/openssl/mem.h +74 -8
  2352. data/third_party/boringssl-with-bazel/src/include/openssl/nid.h +7 -3
  2353. data/third_party/boringssl-with-bazel/src/include/openssl/obj.h +8 -1
  2354. data/third_party/boringssl-with-bazel/src/include/openssl/opensslconf.h +1 -0
  2355. data/third_party/boringssl-with-bazel/src/include/openssl/pem.h +11 -18
  2356. data/third_party/boringssl-with-bazel/src/include/openssl/pkcs8.h +8 -0
  2357. data/third_party/boringssl-with-bazel/src/include/openssl/rand.h +15 -5
  2358. data/third_party/boringssl-with-bazel/src/include/openssl/rsa.h +97 -65
  2359. data/third_party/boringssl-with-bazel/src/include/openssl/service_indicator.h +96 -0
  2360. data/third_party/boringssl-with-bazel/src/include/openssl/span.h +18 -21
  2361. data/third_party/boringssl-with-bazel/src/include/openssl/ssl.h +396 -157
  2362. data/third_party/boringssl-with-bazel/src/include/openssl/ssl3.h +1 -6
  2363. data/third_party/boringssl-with-bazel/src/include/openssl/stack.h +339 -230
  2364. data/third_party/boringssl-with-bazel/src/include/openssl/target.h +154 -0
  2365. data/third_party/boringssl-with-bazel/src/include/openssl/thread.h +1 -26
  2366. data/third_party/boringssl-with-bazel/src/include/openssl/time.h +41 -0
  2367. data/third_party/boringssl-with-bazel/src/include/openssl/tls1.h +22 -7
  2368. data/third_party/boringssl-with-bazel/src/include/openssl/trust_token.h +57 -23
  2369. data/third_party/boringssl-with-bazel/src/include/openssl/type_check.h +0 -11
  2370. data/third_party/boringssl-with-bazel/src/include/openssl/x509.h +2079 -1411
  2371. data/third_party/boringssl-with-bazel/src/include/openssl/x509v3.h +245 -216
  2372. data/third_party/boringssl-with-bazel/src/ssl/bio_ssl.cc +2 -2
  2373. data/third_party/boringssl-with-bazel/src/ssl/d1_both.cc +6 -13
  2374. data/third_party/boringssl-with-bazel/src/ssl/d1_pkt.cc +17 -18
  2375. data/third_party/boringssl-with-bazel/src/ssl/dtls_method.cc +4 -5
  2376. data/third_party/boringssl-with-bazel/src/ssl/dtls_record.cc +25 -33
  2377. data/third_party/boringssl-with-bazel/src/ssl/encrypted_client_hello.cc +45 -26
  2378. data/third_party/boringssl-with-bazel/src/ssl/extensions.cc +72 -99
  2379. data/third_party/boringssl-with-bazel/src/ssl/handoff.cc +218 -74
  2380. data/third_party/boringssl-with-bazel/src/ssl/handshake.cc +5 -5
  2381. data/third_party/boringssl-with-bazel/src/ssl/handshake_client.cc +53 -34
  2382. data/third_party/boringssl-with-bazel/src/ssl/handshake_server.cc +77 -45
  2383. data/third_party/boringssl-with-bazel/src/ssl/internal.h +204 -132
  2384. data/third_party/boringssl-with-bazel/src/ssl/s3_both.cc +47 -12
  2385. data/third_party/boringssl-with-bazel/src/ssl/s3_lib.cc +2 -2
  2386. data/third_party/boringssl-with-bazel/src/ssl/s3_pkt.cc +91 -75
  2387. data/third_party/boringssl-with-bazel/src/ssl/ssl_aead_ctx.cc +8 -10
  2388. data/third_party/boringssl-with-bazel/src/ssl/ssl_asn1.cc +47 -69
  2389. data/third_party/boringssl-with-bazel/src/ssl/ssl_buffer.cc +1 -0
  2390. data/third_party/boringssl-with-bazel/src/ssl/ssl_cert.cc +5 -9
  2391. data/third_party/boringssl-with-bazel/src/ssl/ssl_cipher.cc +237 -240
  2392. data/third_party/boringssl-with-bazel/src/ssl/ssl_file.cc +78 -101
  2393. data/third_party/boringssl-with-bazel/src/ssl/ssl_key_share.cc +126 -155
  2394. data/third_party/boringssl-with-bazel/src/ssl/ssl_lib.cc +356 -48
  2395. data/third_party/boringssl-with-bazel/src/ssl/ssl_privkey.cc +167 -64
  2396. data/third_party/boringssl-with-bazel/src/ssl/ssl_session.cc +41 -32
  2397. data/third_party/boringssl-with-bazel/src/ssl/ssl_versions.cc +27 -19
  2398. data/third_party/boringssl-with-bazel/src/ssl/ssl_x509.cc +22 -6
  2399. data/third_party/boringssl-with-bazel/src/ssl/t1_enc.cc +15 -13
  2400. data/third_party/boringssl-with-bazel/src/ssl/tls13_both.cc +7 -44
  2401. data/third_party/boringssl-with-bazel/src/ssl/tls13_client.cc +6 -4
  2402. data/third_party/boringssl-with-bazel/src/ssl/tls13_enc.cc +7 -23
  2403. data/third_party/boringssl-with-bazel/src/ssl/tls13_server.cc +25 -34
  2404. data/third_party/boringssl-with-bazel/src/ssl/tls_method.cc +2 -2
  2405. data/third_party/boringssl-with-bazel/src/ssl/tls_record.cc +16 -98
  2406. data/third_party/boringssl-with-bazel/src/third_party/fiat/curve25519_32.h +1241 -657
  2407. data/third_party/boringssl-with-bazel/src/third_party/fiat/curve25519_64.h +751 -398
  2408. data/third_party/boringssl-with-bazel/src/third_party/fiat/curve25519_64_adx.h +691 -0
  2409. data/third_party/boringssl-with-bazel/src/third_party/fiat/curve25519_64_msvc.h +1281 -0
  2410. data/third_party/boringssl-with-bazel/src/third_party/fiat/p256_32.h +3551 -1938
  2411. data/third_party/boringssl-with-bazel/src/third_party/fiat/p256_64.h +1272 -487
  2412. data/third_party/boringssl-with-bazel/src/third_party/fiat/p256_64_msvc.h +2002 -0
  2413. data/third_party/cares/cares/include/ares.h +23 -1
  2414. data/third_party/cares/cares/{src/lib → include}/ares_nameser.h +9 -7
  2415. data/third_party/cares/cares/include/ares_rules.h +2 -2
  2416. data/third_party/cares/cares/include/ares_version.h +3 -3
  2417. data/third_party/cares/cares/src/lib/ares__addrinfo2hostent.c +266 -0
  2418. data/third_party/cares/cares/src/lib/ares__addrinfo_localhost.c +240 -0
  2419. data/third_party/cares/cares/src/lib/ares__parse_into_addrinfo.c +49 -80
  2420. data/third_party/cares/cares/src/lib/ares__readaddrinfo.c +37 -43
  2421. data/third_party/cares/cares/src/lib/ares__sortaddrinfo.c +12 -4
  2422. data/third_party/cares/cares/src/lib/ares_data.c +16 -0
  2423. data/third_party/cares/cares/src/lib/ares_data.h +7 -0
  2424. data/third_party/cares/cares/src/lib/ares_destroy.c +8 -0
  2425. data/third_party/cares/cares/src/lib/ares_expand_name.c +17 -6
  2426. data/third_party/cares/cares/src/lib/ares_freeaddrinfo.c +1 -0
  2427. data/third_party/cares/cares/src/lib/ares_getaddrinfo.c +156 -78
  2428. data/third_party/cares/cares/src/lib/ares_gethostbyname.c +130 -326
  2429. data/third_party/cares/cares/src/lib/ares_init.c +97 -485
  2430. data/third_party/cares/cares/src/lib/ares_library_init.c +2 -89
  2431. data/third_party/cares/cares/src/lib/ares_parse_a_reply.c +23 -142
  2432. data/third_party/cares/cares/src/lib/ares_parse_aaaa_reply.c +22 -142
  2433. data/third_party/cares/cares/src/lib/ares_parse_uri_reply.c +184 -0
  2434. data/third_party/cares/cares/src/lib/ares_private.h +30 -16
  2435. data/third_party/cares/cares/src/lib/ares_process.c +55 -16
  2436. data/third_party/cares/cares/src/lib/ares_query.c +1 -35
  2437. data/third_party/cares/cares/src/lib/ares_rand.c +279 -0
  2438. data/third_party/cares/cares/src/lib/ares_send.c +5 -7
  2439. data/third_party/cares/cares/src/lib/ares_strdup.c +12 -19
  2440. data/third_party/cares/cares/src/lib/ares_strsplit.c +44 -128
  2441. data/third_party/cares/cares/src/lib/ares_strsplit.h +9 -10
  2442. data/third_party/cares/cares/src/lib/inet_net_pton.c +78 -116
  2443. data/third_party/cares/cares/src/tools/ares_getopt.h +53 -0
  2444. data/third_party/re2/re2/bitstate.cc +3 -3
  2445. data/third_party/re2/re2/dfa.cc +13 -13
  2446. data/third_party/re2/re2/nfa.cc +4 -4
  2447. data/third_party/re2/re2/onepass.cc +2 -2
  2448. data/third_party/re2/re2/prefilter_tree.cc +27 -59
  2449. data/third_party/re2/re2/prefilter_tree.h +3 -2
  2450. data/third_party/re2/re2/prog.cc +11 -2
  2451. data/third_party/re2/re2/prog.h +17 -5
  2452. data/third_party/re2/re2/re2.cc +6 -11
  2453. data/third_party/re2/re2/re2.h +1 -1
  2454. data/third_party/re2/re2/regexp.cc +1 -2
  2455. data/third_party/re2/re2/stringpiece.h +10 -7
  2456. data/third_party/re2/re2/unicode_casefold.cc +25 -11
  2457. data/third_party/re2/re2/unicode_groups.cc +319 -151
  2458. data/third_party/re2/re2/walker-inl.h +3 -2
  2459. data/third_party/re2/util/mutex.h +4 -4
  2460. data/third_party/upb/upb/alloc.h +36 -0
  2461. data/third_party/upb/upb/arena.h +36 -0
  2462. data/third_party/upb/upb/array.h +36 -0
  2463. data/third_party/upb/upb/base/descriptor_constants.h +104 -0
  2464. data/third_party/upb/upb/base/log2.h +57 -0
  2465. data/third_party/upb/upb/base/status.c +81 -0
  2466. data/third_party/upb/upb/base/status.h +66 -0
  2467. data/third_party/upb/upb/base/string_view.h +75 -0
  2468. data/third_party/upb/upb/collections/array.c +145 -0
  2469. data/third_party/upb/upb/collections/array.h +85 -0
  2470. data/third_party/upb/upb/collections/array_internal.h +135 -0
  2471. data/third_party/upb/upb/collections/map.c +135 -0
  2472. data/third_party/upb/upb/collections/map.h +135 -0
  2473. data/third_party/upb/upb/collections/map_gencode_util.h +78 -0
  2474. data/third_party/upb/upb/collections/map_internal.h +170 -0
  2475. data/third_party/upb/upb/collections/map_sorter.c +166 -0
  2476. data/third_party/upb/upb/collections/map_sorter_internal.h +109 -0
  2477. data/third_party/upb/upb/collections/message_value.h +65 -0
  2478. data/third_party/upb/upb/decode.h +3 -61
  2479. data/third_party/upb/upb/def.h +4 -377
  2480. data/third_party/upb/upb/def.hpp +3 -408
  2481. data/third_party/upb/upb/encode.h +3 -38
  2482. data/third_party/upb/upb/extension_registry.h +35 -0
  2483. data/third_party/upb/upb/{table.c → hash/common.c} +51 -109
  2484. data/third_party/upb/upb/hash/common.h +199 -0
  2485. data/third_party/upb/upb/hash/int_table.h +102 -0
  2486. data/third_party/upb/upb/hash/str_table.h +161 -0
  2487. data/third_party/upb/upb/json/decode.c +1477 -0
  2488. data/third_party/upb/upb/json/decode.h +52 -0
  2489. data/third_party/upb/upb/{json_encode.c → json/encode.c} +74 -46
  2490. data/third_party/upb/upb/json/encode.h +70 -0
  2491. data/third_party/upb/upb/json_decode.h +36 -0
  2492. data/third_party/upb/upb/json_encode.h +4 -30
  2493. data/third_party/upb/upb/lex/atoi.c +68 -0
  2494. data/third_party/upb/upb/lex/atoi.h +53 -0
  2495. data/third_party/upb/upb/lex/round_trip.c +67 -0
  2496. data/third_party/upb/upb/{upb_internal.h → lex/round_trip.h} +17 -30
  2497. data/third_party/upb/upb/lex/strtod.c +97 -0
  2498. data/third_party/upb/upb/lex/strtod.h +46 -0
  2499. data/third_party/upb/upb/lex/unicode.c +57 -0
  2500. data/third_party/upb/upb/lex/unicode.h +77 -0
  2501. data/third_party/upb/upb/map.h +36 -0
  2502. data/third_party/upb/upb/mem/alloc.c +47 -0
  2503. data/third_party/upb/upb/mem/alloc.h +98 -0
  2504. data/third_party/upb/upb/mem/arena.c +367 -0
  2505. data/third_party/upb/upb/mem/arena.h +160 -0
  2506. data/third_party/upb/upb/mem/arena_internal.h +114 -0
  2507. data/third_party/upb/upb/message/accessors.c +68 -0
  2508. data/third_party/upb/upb/message/accessors.h +379 -0
  2509. data/third_party/upb/upb/message/accessors_internal.h +325 -0
  2510. data/third_party/upb/upb/message/extension_internal.h +83 -0
  2511. data/third_party/upb/upb/message/internal.h +135 -0
  2512. data/third_party/upb/upb/message/message.c +180 -0
  2513. data/third_party/upb/upb/message/message.h +69 -0
  2514. data/third_party/upb/upb/mini_table/common.c +128 -0
  2515. data/third_party/upb/upb/mini_table/common.h +170 -0
  2516. data/third_party/upb/upb/mini_table/common_internal.h +111 -0
  2517. data/third_party/upb/upb/mini_table/decode.c +1127 -0
  2518. data/third_party/upb/upb/mini_table/decode.h +179 -0
  2519. data/third_party/upb/upb/mini_table/encode.c +300 -0
  2520. data/third_party/upb/upb/mini_table/encode_internal.h +111 -0
  2521. data/third_party/upb/upb/mini_table/encode_internal.hpp +136 -0
  2522. data/third_party/upb/upb/mini_table/enum_internal.h +88 -0
  2523. data/third_party/upb/upb/mini_table/extension_internal.h +47 -0
  2524. data/third_party/upb/upb/mini_table/extension_registry.c +96 -0
  2525. data/third_party/upb/upb/mini_table/extension_registry.h +104 -0
  2526. data/third_party/upb/upb/mini_table/field_internal.h +192 -0
  2527. data/third_party/upb/upb/mini_table/file_internal.h +47 -0
  2528. data/third_party/upb/upb/mini_table/message_internal.h +136 -0
  2529. data/third_party/upb/upb/mini_table/sub_internal.h +38 -0
  2530. data/third_party/upb/upb/mini_table/types.h +40 -0
  2531. data/third_party/upb/upb/mini_table.h +36 -0
  2532. data/third_party/upb/upb/msg.h +3 -81
  2533. data/third_party/upb/upb/port/atomic.h +101 -0
  2534. data/third_party/upb/upb/{port_def.inc → port/def.inc} +96 -28
  2535. data/third_party/upb/upb/{port_undef.inc → port/undef.inc} +14 -3
  2536. data/third_party/upb/upb/port/vsnprintf_compat.h +50 -0
  2537. data/third_party/upb/upb/reflection/common.h +67 -0
  2538. data/third_party/upb/upb/reflection/def.h +42 -0
  2539. data/third_party/upb/upb/reflection/def.hpp +610 -0
  2540. data/third_party/upb/upb/reflection/def_builder.c +357 -0
  2541. data/third_party/upb/upb/reflection/def_builder_internal.h +157 -0
  2542. data/third_party/upb/upb/reflection/def_pool.c +462 -0
  2543. data/third_party/upb/upb/reflection/def_pool.h +108 -0
  2544. data/third_party/upb/upb/reflection/def_pool_internal.h +77 -0
  2545. data/third_party/upb/upb/reflection/def_type.c +50 -0
  2546. data/third_party/upb/upb/reflection/def_type.h +81 -0
  2547. data/third_party/upb/upb/reflection/desc_state.c +53 -0
  2548. data/third_party/upb/upb/reflection/desc_state_internal.h +64 -0
  2549. data/third_party/upb/upb/reflection/enum_def.c +310 -0
  2550. data/third_party/upb/upb/reflection/enum_def.h +80 -0
  2551. data/third_party/upb/upb/reflection/enum_def_internal.h +56 -0
  2552. data/third_party/upb/upb/reflection/enum_reserved_range.c +84 -0
  2553. data/third_party/upb/upb/reflection/enum_reserved_range.h +51 -0
  2554. data/third_party/upb/upb/reflection/enum_reserved_range_internal.h +55 -0
  2555. data/third_party/upb/upb/reflection/enum_value_def.c +144 -0
  2556. data/third_party/upb/upb/reflection/enum_value_def.h +57 -0
  2557. data/third_party/upb/upb/reflection/enum_value_def_internal.h +57 -0
  2558. data/third_party/upb/upb/reflection/extension_range.c +93 -0
  2559. data/third_party/upb/upb/reflection/extension_range.h +55 -0
  2560. data/third_party/upb/upb/reflection/extension_range_internal.h +54 -0
  2561. data/third_party/upb/upb/reflection/field_def.c +930 -0
  2562. data/third_party/upb/upb/reflection/field_def.h +91 -0
  2563. data/third_party/upb/upb/reflection/field_def_internal.h +76 -0
  2564. data/third_party/upb/upb/reflection/file_def.c +370 -0
  2565. data/third_party/upb/upb/reflection/file_def.h +77 -0
  2566. data/third_party/upb/upb/reflection/file_def_internal.h +57 -0
  2567. data/third_party/upb/upb/reflection/message.c +233 -0
  2568. data/third_party/upb/upb/reflection/message.h +102 -0
  2569. data/third_party/upb/upb/reflection/message.hpp +37 -0
  2570. data/third_party/upb/upb/reflection/message_def.c +718 -0
  2571. data/third_party/upb/upb/reflection/message_def.h +174 -0
  2572. data/third_party/upb/upb/reflection/message_def_internal.h +63 -0
  2573. data/third_party/upb/upb/reflection/message_reserved_range.c +81 -0
  2574. data/third_party/upb/upb/reflection/message_reserved_range.h +51 -0
  2575. data/third_party/upb/upb/reflection/message_reserved_range_internal.h +55 -0
  2576. data/third_party/upb/upb/reflection/method_def.c +124 -0
  2577. data/third_party/upb/upb/reflection/method_def.h +59 -0
  2578. data/third_party/upb/upb/reflection/method_def_internal.h +53 -0
  2579. data/third_party/upb/upb/reflection/oneof_def.c +226 -0
  2580. data/third_party/upb/upb/reflection/oneof_def.h +66 -0
  2581. data/third_party/upb/upb/reflection/oneof_def_internal.h +57 -0
  2582. data/third_party/upb/upb/reflection/service_def.c +128 -0
  2583. data/third_party/upb/upb/reflection/service_def.h +60 -0
  2584. data/third_party/upb/upb/reflection/service_def_internal.h +53 -0
  2585. data/third_party/upb/upb/reflection.h +4 -188
  2586. data/third_party/upb/upb/reflection.hpp +3 -7
  2587. data/third_party/upb/upb/status.h +36 -0
  2588. data/third_party/upb/upb/string_view.h +36 -0
  2589. data/third_party/upb/upb/{text_encode.c → text/encode.c} +75 -70
  2590. data/third_party/upb/upb/text/encode.h +69 -0
  2591. data/third_party/upb/upb/text_encode.h +4 -32
  2592. data/third_party/upb/upb/upb.h +6 -340
  2593. data/third_party/upb/upb/upb.hpp +10 -18
  2594. data/third_party/upb/upb/wire/common.h +44 -0
  2595. data/third_party/upb/upb/wire/common_internal.h +50 -0
  2596. data/third_party/upb/upb/wire/decode.c +1343 -0
  2597. data/third_party/upb/upb/wire/decode.h +108 -0
  2598. data/third_party/upb/upb/{decode_fast.c → wire/decode_fast.c} +184 -225
  2599. data/third_party/upb/upb/{decode_fast.h → wire/decode_fast.h} +21 -7
  2600. data/third_party/upb/upb/{decode_internal.h → wire/decode_internal.h} +44 -92
  2601. data/third_party/upb/upb/{encode.c → wire/encode.c} +130 -102
  2602. data/third_party/upb/upb/wire/encode.h +92 -0
  2603. data/third_party/upb/upb/wire/eps_copy_input_stream.c +39 -0
  2604. data/third_party/upb/upb/wire/eps_copy_input_stream.h +425 -0
  2605. data/third_party/upb/upb/wire/reader.c +67 -0
  2606. data/third_party/upb/upb/wire/reader.h +227 -0
  2607. data/third_party/upb/upb/wire/swap_internal.h +63 -0
  2608. data/third_party/upb/upb/wire/types.h +41 -0
  2609. data/third_party/{upb/third_party/utf8_range → utf8_range}/range2-neon.c +1 -1
  2610. data/third_party/utf8_range/utf8_range.h +21 -0
  2611. data/third_party/zlib/compress.c +3 -3
  2612. data/third_party/zlib/crc32.c +21 -12
  2613. data/third_party/zlib/deflate.c +112 -106
  2614. data/third_party/zlib/deflate.h +2 -2
  2615. data/third_party/zlib/gzlib.c +1 -1
  2616. data/third_party/zlib/gzread.c +3 -5
  2617. data/third_party/zlib/gzwrite.c +1 -1
  2618. data/third_party/zlib/infback.c +10 -7
  2619. data/third_party/zlib/inflate.c +5 -2
  2620. data/third_party/zlib/inftrees.c +2 -2
  2621. data/third_party/zlib/inftrees.h +1 -1
  2622. data/third_party/zlib/trees.c +61 -62
  2623. data/third_party/zlib/uncompr.c +2 -2
  2624. data/third_party/zlib/zconf.h +16 -3
  2625. data/third_party/zlib/zlib.h +10 -10
  2626. data/third_party/zlib/zutil.c +9 -7
  2627. data/third_party/zlib/zutil.h +1 -0
  2628. metadata +636 -172
  2629. data/include/grpc/impl/codegen/gpr_slice.h +0 -71
  2630. data/src/core/ext/filters/client_channel/health/health_check_client.cc +0 -176
  2631. data/src/core/ext/filters/client_channel/health/health_check_client.h +0 -43
  2632. data/src/core/ext/filters/client_channel/lb_policy/xds/xds.h +0 -66
  2633. data/src/core/ext/filters/client_channel/lb_policy.cc +0 -134
  2634. data/src/core/ext/filters/client_channel/lb_policy_factory.h +0 -50
  2635. data/src/core/ext/filters/client_channel/lb_policy_registry.cc +0 -192
  2636. data/src/core/ext/filters/client_channel/lb_policy_registry.h +0 -70
  2637. data/src/core/ext/filters/client_channel/proxy_mapper.h +0 -54
  2638. data/src/core/ext/filters/client_channel/proxy_mapper_registry.cc +0 -91
  2639. data/src/core/ext/filters/client_channel/proxy_mapper_registry.h +0 -55
  2640. data/src/core/ext/filters/client_channel/resolver/dns/dns_resolver_selection.h +0 -30
  2641. data/src/core/ext/filters/client_channel/resolver_result_parsing.cc +0 -180
  2642. data/src/core/ext/filters/fault_injection/service_config_parser.cc +0 -179
  2643. data/src/core/ext/filters/http/message_compress/message_compress_filter.cc +0 -457
  2644. data/src/core/ext/filters/http/message_compress/message_compress_filter.h +0 -53
  2645. data/src/core/ext/filters/http/message_compress/message_decompress_filter.cc +0 -388
  2646. data/src/core/ext/filters/server_config_selector/server_config_selector.cc +0 -61
  2647. data/src/core/ext/transport/chttp2/transport/context_list.cc +0 -71
  2648. data/src/core/ext/transport/chttp2/transport/context_list.h +0 -54
  2649. data/src/core/ext/transport/chttp2/transport/stream_map.cc +0 -177
  2650. data/src/core/ext/transport/chttp2/transport/stream_map.h +0 -68
  2651. data/src/core/ext/xds/certificate_provider_registry.cc +0 -103
  2652. data/src/core/ext/xds/certificate_provider_registry.h +0 -57
  2653. data/src/core/lib/event_engine/iomgr_engine.cc +0 -206
  2654. data/src/core/lib/event_engine/iomgr_engine.h +0 -118
  2655. data/src/core/lib/gpr/cpu_iphone.cc +0 -44
  2656. data/src/core/lib/gpr/cpu_windows.cc +0 -33
  2657. data/src/core/lib/gpr/env.h +0 -40
  2658. data/src/core/lib/gpr/env_linux.cc +0 -75
  2659. data/src/core/lib/gpr/env_posix.cc +0 -46
  2660. data/src/core/lib/gpr/env_windows.cc +0 -74
  2661. data/src/core/lib/gpr/murmur_hash.cc +0 -82
  2662. data/src/core/lib/gpr/murmur_hash.h +0 -29
  2663. data/src/core/lib/gpr/string_util_windows.cc +0 -82
  2664. data/src/core/lib/gpr/string_windows.cc +0 -69
  2665. data/src/core/lib/gpr/string_windows.h +0 -32
  2666. data/src/core/lib/gpr/tls.h +0 -156
  2667. data/src/core/lib/gpr/tmpfile_windows.cc +0 -69
  2668. data/src/core/lib/gprpp/global_config.h +0 -93
  2669. data/src/core/lib/gprpp/global_config_custom.h +0 -29
  2670. data/src/core/lib/gprpp/global_config_env.cc +0 -138
  2671. data/src/core/lib/gprpp/global_config_env.h +0 -133
  2672. data/src/core/lib/gprpp/global_config_generic.h +0 -40
  2673. data/src/core/lib/iomgr/error_internal.h +0 -66
  2674. data/src/core/lib/iomgr/executor/mpmcqueue.cc +0 -182
  2675. data/src/core/lib/iomgr/executor/mpmcqueue.h +0 -171
  2676. data/src/core/lib/iomgr/executor/threadpool.cc +0 -136
  2677. data/src/core/lib/iomgr/executor/threadpool.h +0 -150
  2678. data/src/core/lib/iomgr/time_averaged_stats.cc +0 -64
  2679. data/src/core/lib/iomgr/time_averaged_stats.h +0 -72
  2680. data/src/core/lib/profiling/basic_timers.cc +0 -295
  2681. data/src/core/lib/profiling/stap_timers.cc +0 -50
  2682. data/src/core/lib/profiling/timers.h +0 -94
  2683. data/src/core/lib/promise/call_push_pull.h +0 -148
  2684. data/src/core/lib/promise/intra_activity_waiter.h +0 -49
  2685. data/src/core/lib/security/security_connector/load_system_roots_linux.h +0 -46
  2686. data/src/core/lib/security/security_connector/ssl_utils_config.cc +0 -32
  2687. data/src/core/lib/security/security_connector/ssl_utils_config.h +0 -30
  2688. data/src/core/lib/slice/slice_api.cc +0 -39
  2689. data/src/core/lib/slice/slice_buffer_api.cc +0 -35
  2690. data/src/core/lib/slice/slice_refcount_base.h +0 -60
  2691. data/src/core/lib/slice/slice_split.cc +0 -103
  2692. data/src/core/lib/slice/slice_split.h +0 -36
  2693. data/src/core/lib/transport/byte_stream.cc +0 -165
  2694. data/src/core/lib/transport/byte_stream.h +0 -170
  2695. data/third_party/abseil-cpp/absl/container/internal/have_sse.h +0 -50
  2696. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_enum.c +0 -195
  2697. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_utf8.c +0 -236
  2698. data/third_party/boringssl-with-bazel/src/crypto/asn1/charmap.h +0 -15
  2699. data/third_party/boringssl-with-bazel/src/crypto/asn1/time_support.c +0 -206
  2700. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha1-altivec.c +0 -361
  2701. data/third_party/boringssl-with-bazel/src/crypto/refcount_lock.c +0 -53
  2702. data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_cache.c +0 -287
  2703. data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_data.c +0 -132
  2704. data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_lib.c +0 -155
  2705. data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_map.c +0 -131
  2706. data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_node.c +0 -189
  2707. data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_tree.c +0 -843
  2708. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_pci.c +0 -289
  2709. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_pcia.c +0 -57
  2710. data/third_party/cares/cares/src/lib/ares_library_init.h +0 -43
  2711. data/third_party/upb/third_party/utf8_range/utf8_range.h +0 -9
  2712. data/third_party/upb/upb/decode.c +0 -1125
  2713. data/third_party/upb/upb/def.c +0 -3261
  2714. data/third_party/upb/upb/msg.c +0 -428
  2715. data/third_party/upb/upb/msg_internal.h +0 -831
  2716. data/third_party/upb/upb/reflection.c +0 -480
  2717. data/third_party/upb/upb/table_internal.h +0 -385
  2718. data/third_party/upb/upb/upb.c +0 -362
  2719. /data/third_party/{upb/third_party/utf8_range → utf8_range}/naive.c +0 -0
  2720. /data/third_party/{upb/third_party/utf8_range → utf8_range}/range2-sse.c +0 -0
@@ -19,48 +19,32 @@
19
19
  #include "src/core/ext/xds/xds_client.h"
20
20
 
21
21
  #include <inttypes.h>
22
- #include <limits.h>
23
22
  #include <string.h>
24
23
 
25
- #include "absl/container/inlined_vector.h"
26
- #include "absl/strings/str_format.h"
24
+ #include <algorithm>
25
+ #include <type_traits>
26
+
27
+ #include "absl/strings/match.h"
28
+ #include "absl/strings/str_cat.h"
27
29
  #include "absl/strings/str_join.h"
30
+ #include "absl/strings/str_split.h"
28
31
  #include "absl/strings/string_view.h"
32
+ #include "absl/strings/strip.h"
33
+ #include "absl/types/optional.h"
34
+ #include "upb/mem/arena.h"
29
35
 
30
- #include <grpc/byte_buffer_reader.h>
31
- #include <grpc/grpc.h>
32
- #include <grpc/support/alloc.h>
33
- #include <grpc/support/time.h>
36
+ #include <grpc/event_engine/event_engine.h>
37
+ #include <grpc/support/log.h>
34
38
 
35
- #include "src/core/ext/filters/client_channel/client_channel.h"
36
39
  #include "src/core/ext/xds/xds_api.h"
37
40
  #include "src/core/ext/xds/xds_bootstrap.h"
38
- #include "src/core/ext/xds/xds_channel_args.h"
39
41
  #include "src/core/ext/xds/xds_client_stats.h"
40
- #include "src/core/ext/xds/xds_cluster.h"
41
- #include "src/core/ext/xds/xds_cluster_specifier_plugin.h"
42
- #include "src/core/ext/xds/xds_endpoint.h"
43
- #include "src/core/ext/xds/xds_http_filters.h"
44
- #include "src/core/ext/xds/xds_listener.h"
45
- #include "src/core/lib/address_utils/sockaddr_utils.h"
46
42
  #include "src/core/lib/backoff/backoff.h"
47
- #include "src/core/lib/channel/channel_args.h"
48
- #include "src/core/lib/channel/channel_stack.h"
49
- #include "src/core/lib/config/core_configuration.h"
50
- #include "src/core/lib/gpr/env.h"
51
- #include "src/core/lib/gpr/string.h"
52
- #include "src/core/lib/gprpp/memory.h"
43
+ #include "src/core/lib/gprpp/debug_location.h"
53
44
  #include "src/core/lib/gprpp/orphanable.h"
54
45
  #include "src/core/lib/gprpp/ref_counted_ptr.h"
55
46
  #include "src/core/lib/gprpp/sync.h"
56
- #include "src/core/lib/iomgr/sockaddr.h"
57
- #include "src/core/lib/iomgr/timer.h"
58
- #include "src/core/lib/security/credentials/channel_creds_registry.h"
59
- #include "src/core/lib/slice/slice_internal.h"
60
- #include "src/core/lib/slice/slice_string_helpers.h"
61
- #include "src/core/lib/surface/call.h"
62
- #include "src/core/lib/surface/channel.h"
63
- #include "src/core/lib/surface/lame_client.h"
47
+ #include "src/core/lib/iomgr/exec_ctx.h"
64
48
  #include "src/core/lib/uri/uri_parser.h"
65
49
 
66
50
  #define GRPC_XDS_INITIAL_CONNECT_BACKOFF_SECONDS 1
@@ -71,19 +55,11 @@
71
55
 
72
56
  namespace grpc_core {
73
57
 
58
+ using ::grpc_event_engine::experimental::EventEngine;
59
+
74
60
  TraceFlag grpc_xds_client_trace(false, "xds_client");
75
61
  TraceFlag grpc_xds_client_refcount_trace(false, "xds_client_refcount");
76
62
 
77
- namespace {
78
-
79
- Mutex* g_mu = nullptr;
80
-
81
- const grpc_channel_args* g_channel_args ABSL_GUARDED_BY(*g_mu) = nullptr;
82
- XdsClient* g_xds_client ABSL_GUARDED_BY(*g_mu) = nullptr;
83
- char* g_fallback_bootstrap_config ABSL_GUARDED_BY(*g_mu) = nullptr;
84
-
85
- } // namespace
86
-
87
63
  //
88
64
  // Internal class declarations
89
65
  //
@@ -96,9 +72,12 @@ class XdsClient::ChannelState::RetryableCall
96
72
  public:
97
73
  explicit RetryableCall(WeakRefCountedPtr<ChannelState> chand);
98
74
 
99
- void Orphan() override;
75
+ // Disable thread-safety analysis because this method is called via
76
+ // OrphanablePtr<>, but there's no way to pass the lock annotation
77
+ // through there.
78
+ void Orphan() override ABSL_NO_THREAD_SAFETY_ANALYSIS;
100
79
 
101
- void OnCallFinishedLocked();
80
+ void OnCallFinishedLocked() ABSL_EXCLUSIVE_LOCKS_REQUIRED(&XdsClient::mu_);
102
81
 
103
82
  T* calld() const { return calld_.get(); }
104
83
  ChannelState* chand() const { return chand_.get(); }
@@ -107,9 +86,9 @@ class XdsClient::ChannelState::RetryableCall
107
86
 
108
87
  private:
109
88
  void StartNewCallLocked();
110
- void StartRetryTimerLocked();
111
- static void OnRetryTimer(void* arg, grpc_error_handle error);
112
- void OnRetryTimerLocked(grpc_error_handle error);
89
+ void StartRetryTimerLocked() ABSL_EXCLUSIVE_LOCKS_REQUIRED(&XdsClient::mu_);
90
+
91
+ void OnRetryTimer();
113
92
 
114
93
  // The wrapped xds call that talks to the xds server. It's instantiated
115
94
  // every time we start a new call. It's null during call retry backoff.
@@ -119,9 +98,8 @@ class XdsClient::ChannelState::RetryableCall
119
98
 
120
99
  // Retry state.
121
100
  BackOff backoff_;
122
- grpc_timer retry_timer_;
123
- grpc_closure on_retry_timer_;
124
- bool retry_timer_callback_pending_ = false;
101
+ absl::optional<EventEngine::TaskHandle> timer_handle_
102
+ ABSL_GUARDED_BY(&XdsClient::mu_);
125
103
 
126
104
  bool shutting_down_ = false;
127
105
  };
@@ -132,7 +110,6 @@ class XdsClient::ChannelState::AdsCallState
132
110
  public:
133
111
  // The ctor and dtor should not be used directly.
134
112
  explicit AdsCallState(RefCountedPtr<RetryableCall<AdsCallState>> parent);
135
- ~AdsCallState() override;
136
113
 
137
114
  void Orphan() override;
138
115
 
@@ -170,38 +147,76 @@ class XdsClient::ChannelState::AdsCallState
170
147
  absl::Status ProcessAdsResponseFields(AdsResponseFields fields) override
171
148
  ABSL_EXCLUSIVE_LOCKS_REQUIRED(&XdsClient::mu_);
172
149
 
173
- void ParseResource(const XdsEncodingContext& context, size_t idx,
174
- absl::string_view type_url,
150
+ void ParseResource(upb_Arena* arena, size_t idx, absl::string_view type_url,
151
+ absl::string_view resource_name,
175
152
  absl::string_view serialized_resource) override
176
153
  ABSL_EXCLUSIVE_LOCKS_REQUIRED(&XdsClient::mu_);
177
154
 
155
+ void ResourceWrapperParsingFailed(size_t idx,
156
+ absl::string_view message) override;
157
+
178
158
  Result TakeResult() { return std::move(result_); }
179
159
 
180
160
  private:
181
161
  XdsClient* xds_client() const { return ads_call_state_->xds_client(); }
182
162
 
183
163
  AdsCallState* ads_call_state_;
184
- const Timestamp update_time_ = ExecCtx::Get()->Now();
164
+ const Timestamp update_time_ = Timestamp::Now();
185
165
  Result result_;
186
166
  };
187
167
 
188
168
  class ResourceTimer : public InternallyRefCounted<ResourceTimer> {
189
169
  public:
190
170
  ResourceTimer(const XdsResourceType* type, const XdsResourceName& name)
191
- : type_(type), name_(name) {
192
- GRPC_CLOSURE_INIT(&timer_callback_, OnTimer, this,
193
- grpc_schedule_on_exec_ctx);
194
- }
171
+ : type_(type), name_(name) {}
195
172
 
196
- void Orphan() override {
173
+ // Disable thread-safety analysis because this method is called via
174
+ // OrphanablePtr<>, but there's no way to pass the lock annotation
175
+ // through there.
176
+ void Orphan() override ABSL_NO_THREAD_SAFETY_ANALYSIS {
197
177
  MaybeCancelTimer();
198
178
  Unref(DEBUG_LOCATION, "Orphan");
199
179
  }
200
180
 
181
+ void MarkSubscriptionSendStarted()
182
+ ABSL_EXCLUSIVE_LOCKS_REQUIRED(&XdsClient::mu_) {
183
+ subscription_sent_ = true;
184
+ }
185
+
186
+ void MaybeMarkSubscriptionSendComplete(
187
+ RefCountedPtr<AdsCallState> ads_calld)
188
+ ABSL_EXCLUSIVE_LOCKS_REQUIRED(&XdsClient::mu_) {
189
+ if (subscription_sent_) MaybeStartTimer(std::move(ads_calld));
190
+ }
191
+
192
+ void MarkSeen() ABSL_EXCLUSIVE_LOCKS_REQUIRED(&XdsClient::mu_) {
193
+ resource_seen_ = true;
194
+ MaybeCancelTimer();
195
+ }
196
+
197
+ void MaybeCancelTimer() ABSL_EXCLUSIVE_LOCKS_REQUIRED(&XdsClient::mu_) {
198
+ if (timer_handle_.has_value() &&
199
+ ads_calld_->xds_client()->engine()->Cancel(*timer_handle_)) {
200
+ timer_handle_.reset();
201
+ }
202
+ }
203
+
204
+ private:
201
205
  void MaybeStartTimer(RefCountedPtr<AdsCallState> ads_calld)
202
206
  ABSL_EXCLUSIVE_LOCKS_REQUIRED(&XdsClient::mu_) {
203
- if (!timer_start_needed_) return;
204
- timer_start_needed_ = false;
207
+ // Don't start timer if we've already either seen the resource or
208
+ // marked it as non-existing.
209
+ // Note: There are edge cases where we can have seen the resource
210
+ // before we have sent the initial subscription request, such as
211
+ // when we unsubscribe and then resubscribe to a given resource
212
+ // and then get a response containing that resource, all while a
213
+ // send_message op is in flight.
214
+ if (resource_seen_) return;
215
+ // Don't start timer if we haven't yet sent the initial subscription
216
+ // request for the resource.
217
+ if (!subscription_sent_) return;
218
+ // Don't start timer if it's already running.
219
+ if (timer_handle_.has_value()) return;
205
220
  // Check if we already have a cached version of this resource
206
221
  // (i.e., if this is the initial request for the resource after an
207
222
  // ADS stream restart). If so, we don't start the timer, because
@@ -213,60 +228,31 @@ class XdsClient::ChannelState::AdsCallState
213
228
  if (state.resource != nullptr) return;
214
229
  // Start timer.
215
230
  ads_calld_ = std::move(ads_calld);
216
- Ref(DEBUG_LOCATION, "timer").release();
217
- timer_pending_ = true;
218
- grpc_timer_init(
219
- &timer_,
220
- ExecCtx::Get()->Now() + ads_calld_->xds_client()->request_timeout_,
221
- &timer_callback_);
231
+ timer_handle_ = ads_calld_->xds_client()->engine()->RunAfter(
232
+ ads_calld_->xds_client()->request_timeout_,
233
+ [self = Ref(DEBUG_LOCATION, "timer")]() {
234
+ ApplicationCallbackExecCtx callback_exec_ctx;
235
+ ExecCtx exec_ctx;
236
+ self->OnTimer();
237
+ });
222
238
  }
223
239
 
224
- void MaybeCancelTimer() {
225
- // If the timer hasn't been started yet, make sure we don't start
226
- // it later. This can happen if the last watch for an LDS or CDS
227
- // resource is cancelled and then restarted, both while an ADS
228
- // request for a different resource type is being sent (causing
229
- // the unsubscription and then resubscription requests to be
230
- // queued), and then we get a response for the LDS or CDS resource.
231
- // In that case, we would call MaybeCancelTimer() when we receive the
232
- // response and then MaybeStartTimer() when we finally send the new
233
- // LDS or CDS request, thus causing the timer to fire when it shouldn't.
234
- // For details, see https://github.com/grpc/grpc/issues/29583.
235
- // TODO(roth): Find a way to write a test for this case.
236
- timer_start_needed_ = false;
237
- if (timer_pending_) {
238
- grpc_timer_cancel(&timer_);
239
- timer_pending_ = false;
240
+ void OnTimer() {
241
+ if (GRPC_TRACE_FLAG_ENABLED(grpc_xds_client_trace)) {
242
+ gpr_log(GPR_INFO,
243
+ "[xds_client %p] xds server %s: timeout obtaining resource "
244
+ "{type=%s name=%s} from xds server",
245
+ ads_calld_->xds_client(),
246
+ ads_calld_->chand()->server_.server_uri().c_str(),
247
+ std::string(type_->type_url()).c_str(),
248
+ XdsClient::ConstructFullXdsResourceName(
249
+ name_.authority, type_->type_url(), name_.key)
250
+ .c_str());
240
251
  }
241
- }
242
-
243
- private:
244
- static void OnTimer(void* arg, grpc_error_handle error) {
245
- ResourceTimer* self = static_cast<ResourceTimer*>(arg);
246
252
  {
247
- MutexLock lock(&self->ads_calld_->xds_client()->mu_);
248
- self->OnTimerLocked(GRPC_ERROR_REF(error));
249
- }
250
- self->ads_calld_->xds_client()->work_serializer_.DrainQueue();
251
- self->ads_calld_.reset();
252
- self->Unref(DEBUG_LOCATION, "timer");
253
- }
254
-
255
- void OnTimerLocked(grpc_error_handle error)
256
- ABSL_EXCLUSIVE_LOCKS_REQUIRED(&XdsClient::mu_) {
257
- if (error == GRPC_ERROR_NONE && timer_pending_) {
258
- timer_pending_ = false;
259
- if (GRPC_TRACE_FLAG_ENABLED(grpc_xds_client_trace)) {
260
- gpr_log(GPR_INFO,
261
- "[xds_client %p] xds server %s: timeout obtaining resource "
262
- "{type=%s name=%s} from xds server",
263
- ads_calld_->xds_client(),
264
- ads_calld_->chand()->server_.server_uri.c_str(),
265
- std::string(type_->type_url()).c_str(),
266
- XdsClient::ConstructFullXdsResourceName(
267
- name_.authority, type_->type_url(), name_.key)
268
- .c_str());
269
- }
253
+ MutexLock lock(&ads_calld_->xds_client()->mu_);
254
+ timer_handle_.reset();
255
+ resource_seen_ = true;
270
256
  auto& authority_state =
271
257
  ads_calld_->xds_client()->authority_state_map_[name_.authority];
272
258
  ResourceState& state = authority_state.resource_map[type_][name_.key];
@@ -274,25 +260,47 @@ class XdsClient::ChannelState::AdsCallState
274
260
  ads_calld_->xds_client()->NotifyWatchersOnResourceDoesNotExist(
275
261
  state.watchers);
276
262
  }
277
- GRPC_ERROR_UNREF(error);
263
+ ads_calld_->xds_client()->work_serializer_.DrainQueue();
264
+ ads_calld_.reset();
278
265
  }
279
266
 
280
267
  const XdsResourceType* type_;
281
268
  const XdsResourceName name_;
282
269
 
283
270
  RefCountedPtr<AdsCallState> ads_calld_;
284
- bool timer_start_needed_ = true;
285
- bool timer_pending_ = false;
286
- grpc_timer timer_;
287
- grpc_closure timer_callback_;
271
+ // True if we have sent the initial subscription request for this
272
+ // resource on this ADS stream.
273
+ bool subscription_sent_ ABSL_GUARDED_BY(&XdsClient::mu_) = false;
274
+ // True if we have either (a) seen the resource in a response on this
275
+ // stream or (b) declared the resource to not exist due to the timer
276
+ // firing.
277
+ bool resource_seen_ ABSL_GUARDED_BY(&XdsClient::mu_) = false;
278
+ absl::optional<EventEngine::TaskHandle> timer_handle_
279
+ ABSL_GUARDED_BY(&XdsClient::mu_);
288
280
  };
289
281
 
290
- struct ResourceTypeState {
291
- ~ResourceTypeState() { GRPC_ERROR_UNREF(error); }
282
+ class StreamEventHandler
283
+ : public XdsTransportFactory::XdsTransport::StreamingCall::EventHandler {
284
+ public:
285
+ explicit StreamEventHandler(RefCountedPtr<AdsCallState> ads_calld)
286
+ : ads_calld_(std::move(ads_calld)) {}
287
+
288
+ void OnRequestSent(bool ok) override { ads_calld_->OnRequestSent(ok); }
289
+ void OnRecvMessage(absl::string_view payload) override {
290
+ ads_calld_->OnRecvMessage(payload);
291
+ }
292
+ void OnStatusReceived(absl::Status status) override {
293
+ ads_calld_->OnStatusReceived(std::move(status));
294
+ }
292
295
 
293
- // Nonce and error for this resource type.
296
+ private:
297
+ RefCountedPtr<AdsCallState> ads_calld_;
298
+ };
299
+
300
+ struct ResourceTypeState {
301
+ // Nonce and status for this resource type.
294
302
  std::string nonce;
295
- grpc_error_handle error = GRPC_ERROR_NONE;
303
+ absl::Status status;
296
304
 
297
305
  // Subscribed resources of this type.
298
306
  std::map<std::string /*authority*/,
@@ -303,15 +311,9 @@ class XdsClient::ChannelState::AdsCallState
303
311
  void SendMessageLocked(const XdsResourceType* type)
304
312
  ABSL_EXCLUSIVE_LOCKS_REQUIRED(&XdsClient::mu_);
305
313
 
306
- static void OnRequestSent(void* arg, grpc_error_handle error);
307
- void OnRequestSentLocked(grpc_error_handle error)
308
- ABSL_EXCLUSIVE_LOCKS_REQUIRED(&XdsClient::mu_);
309
- static void OnResponseReceived(void* arg, grpc_error_handle error);
310
- bool OnResponseReceivedLocked()
311
- ABSL_EXCLUSIVE_LOCKS_REQUIRED(&XdsClient::mu_);
312
- static void OnStatusReceived(void* arg, grpc_error_handle error);
313
- void OnStatusReceivedLocked(grpc_error_handle error)
314
- ABSL_EXCLUSIVE_LOCKS_REQUIRED(&XdsClient::mu_);
314
+ void OnRequestSent(bool ok);
315
+ void OnRecvMessage(absl::string_view payload);
316
+ void OnStatusReceived(absl::Status status);
315
317
 
316
318
  bool IsCurrentCallOnChannel() const;
317
319
 
@@ -323,28 +325,13 @@ class XdsClient::ChannelState::AdsCallState
323
325
  // The owning RetryableCall<>.
324
326
  RefCountedPtr<RetryableCall<AdsCallState>> parent_;
325
327
 
328
+ OrphanablePtr<XdsTransportFactory::XdsTransport::StreamingCall> call_;
329
+
326
330
  bool sent_initial_message_ = false;
327
331
  bool seen_response_ = false;
328
332
 
329
- // Always non-NULL.
330
- grpc_call* call_;
331
-
332
- // recv_initial_metadata
333
- grpc_metadata_array initial_metadata_recv_;
334
-
335
- // send_message
336
- grpc_byte_buffer* send_message_payload_ = nullptr;
337
- grpc_closure on_request_sent_;
338
-
339
- // recv_message
340
- grpc_byte_buffer* recv_message_payload_ = nullptr;
341
- grpc_closure on_response_received_;
342
-
343
- // recv_trailing_metadata
344
- grpc_metadata_array trailing_metadata_recv_;
345
- grpc_status_code status_code_;
346
- grpc_slice status_details_;
347
- grpc_closure on_status_received_;
333
+ const XdsResourceType* send_message_pending_
334
+ ABSL_GUARDED_BY(&XdsClient::mu_) = nullptr;
348
335
 
349
336
  // Resource types for which requests need to be sent.
350
337
  std::set<const XdsResourceType*> buffered_requests_;
@@ -359,11 +346,11 @@ class XdsClient::ChannelState::LrsCallState
359
346
  public:
360
347
  // The ctor and dtor should not be used directly.
361
348
  explicit LrsCallState(RefCountedPtr<RetryableCall<LrsCallState>> parent);
362
- ~LrsCallState() override;
363
349
 
364
350
  void Orphan() override;
365
351
 
366
- void MaybeStartReportingLocked();
352
+ void MaybeStartReportingLocked()
353
+ ABSL_EXCLUSIVE_LOCKS_REQUIRED(&XdsClient::mu_);
367
354
 
368
355
  RetryableCall<LrsCallState>* parent() { return parent_.get(); }
369
356
  ChannelState* chand() const { return parent_->chand(); }
@@ -371,30 +358,44 @@ class XdsClient::ChannelState::LrsCallState
371
358
  bool seen_response() const { return seen_response_; }
372
359
 
373
360
  private:
361
+ class StreamEventHandler
362
+ : public XdsTransportFactory::XdsTransport::StreamingCall::EventHandler {
363
+ public:
364
+ explicit StreamEventHandler(RefCountedPtr<LrsCallState> lrs_calld)
365
+ : lrs_calld_(std::move(lrs_calld)) {}
366
+
367
+ void OnRequestSent(bool ok) override { lrs_calld_->OnRequestSent(ok); }
368
+ void OnRecvMessage(absl::string_view payload) override {
369
+ lrs_calld_->OnRecvMessage(payload);
370
+ }
371
+ void OnStatusReceived(absl::Status status) override {
372
+ lrs_calld_->OnStatusReceived(std::move(status));
373
+ }
374
+
375
+ private:
376
+ RefCountedPtr<LrsCallState> lrs_calld_;
377
+ };
378
+
374
379
  // Reports client-side load stats according to a fixed interval.
375
380
  class Reporter : public InternallyRefCounted<Reporter> {
376
381
  public:
377
382
  Reporter(RefCountedPtr<LrsCallState> parent, Duration report_interval)
378
383
  : parent_(std::move(parent)), report_interval_(report_interval) {
379
- GRPC_CLOSURE_INIT(&on_next_report_timer_, OnNextReportTimer, this,
380
- grpc_schedule_on_exec_ctx);
381
- GRPC_CLOSURE_INIT(&on_report_done_, OnReportDone, this,
382
- grpc_schedule_on_exec_ctx);
383
384
  ScheduleNextReportLocked();
384
385
  }
385
386
 
386
- void Orphan() override;
387
+ // Disable thread-safety analysis because this method is called via
388
+ // OrphanablePtr<>, but there's no way to pass the lock annotation
389
+ // through there.
390
+ void Orphan() override ABSL_NO_THREAD_SAFETY_ANALYSIS;
391
+
392
+ void OnReportDoneLocked() ABSL_EXCLUSIVE_LOCKS_REQUIRED(&XdsClient::mu_);
387
393
 
388
394
  private:
389
395
  void ScheduleNextReportLocked()
390
396
  ABSL_EXCLUSIVE_LOCKS_REQUIRED(&XdsClient::mu_);
391
- static void OnNextReportTimer(void* arg, grpc_error_handle error);
392
- bool OnNextReportTimerLocked(grpc_error_handle error)
393
- ABSL_EXCLUSIVE_LOCKS_REQUIRED(&XdsClient::mu_);
397
+ bool OnNextReportTimer();
394
398
  bool SendReportLocked() ABSL_EXCLUSIVE_LOCKS_REQUIRED(&XdsClient::mu_);
395
- static void OnReportDone(void* arg, grpc_error_handle error);
396
- bool OnReportDoneLocked(grpc_error_handle error)
397
- ABSL_EXCLUSIVE_LOCKS_REQUIRED(&XdsClient::mu_);
398
399
 
399
400
  bool IsCurrentReporterOnCall() const {
400
401
  return this == parent_->reporter_.get();
@@ -407,47 +408,23 @@ class XdsClient::ChannelState::LrsCallState
407
408
  // The load reporting state.
408
409
  const Duration report_interval_;
409
410
  bool last_report_counters_were_zero_ = false;
410
- bool next_report_timer_callback_pending_ = false;
411
- grpc_timer next_report_timer_;
412
- grpc_closure on_next_report_timer_;
413
- grpc_closure on_report_done_;
411
+ absl::optional<EventEngine::TaskHandle> timer_handle_
412
+ ABSL_GUARDED_BY(&XdsClient::mu_);
414
413
  };
415
414
 
416
- static void OnInitialRequestSent(void* arg, grpc_error_handle error);
417
- void OnInitialRequestSentLocked()
418
- ABSL_EXCLUSIVE_LOCKS_REQUIRED(&XdsClient::mu_);
419
- static void OnResponseReceived(void* arg, grpc_error_handle error);
420
- bool OnResponseReceivedLocked()
421
- ABSL_EXCLUSIVE_LOCKS_REQUIRED(&XdsClient::mu_);
422
- static void OnStatusReceived(void* arg, grpc_error_handle error);
423
- void OnStatusReceivedLocked(grpc_error_handle error)
424
- ABSL_EXCLUSIVE_LOCKS_REQUIRED(&XdsClient::mu_);
415
+ void OnRequestSent(bool ok);
416
+ void OnRecvMessage(absl::string_view payload);
417
+ void OnStatusReceived(absl::Status status);
425
418
 
426
419
  bool IsCurrentCallOnChannel() const;
427
420
 
428
421
  // The owning RetryableCall<>.
429
422
  RefCountedPtr<RetryableCall<LrsCallState>> parent_;
430
- bool seen_response_ = false;
431
-
432
- // Always non-NULL.
433
- grpc_call* call_;
434
-
435
- // recv_initial_metadata
436
- grpc_metadata_array initial_metadata_recv_;
437
423
 
438
- // send_message
439
- grpc_byte_buffer* send_message_payload_ = nullptr;
440
- grpc_closure on_initial_request_sent_;
424
+ OrphanablePtr<XdsTransportFactory::XdsTransport::StreamingCall> call_;
441
425
 
442
- // recv_message
443
- grpc_byte_buffer* recv_message_payload_ = nullptr;
444
- grpc_closure on_response_received_;
445
-
446
- // recv_trailing_metadata
447
- grpc_metadata_array trailing_metadata_recv_;
448
- grpc_status_code status_code_;
449
- grpc_slice status_details_;
450
- grpc_closure on_status_received_;
426
+ bool seen_response_ = false;
427
+ bool send_message_pending_ ABSL_GUARDED_BY(&XdsClient::mu_) = false;
451
428
 
452
429
  // Load reporting state.
453
430
  bool send_all_clusters_ = false;
@@ -456,58 +433,10 @@ class XdsClient::ChannelState::LrsCallState
456
433
  OrphanablePtr<Reporter> reporter_;
457
434
  };
458
435
 
459
- //
460
- // XdsClient::ChannelState::StateWatcher
461
- //
462
-
463
- class XdsClient::ChannelState::StateWatcher
464
- : public AsyncConnectivityStateWatcherInterface {
465
- public:
466
- explicit StateWatcher(WeakRefCountedPtr<ChannelState> parent)
467
- : parent_(std::move(parent)) {}
468
-
469
- private:
470
- void OnConnectivityStateChange(grpc_connectivity_state new_state,
471
- const absl::Status& status) override {
472
- {
473
- MutexLock lock(&parent_->xds_client_->mu_);
474
- if (!parent_->shutting_down_ &&
475
- new_state == GRPC_CHANNEL_TRANSIENT_FAILURE) {
476
- // In TRANSIENT_FAILURE. Notify all watchers of error.
477
- gpr_log(GPR_INFO,
478
- "[xds_client %p] xds channel for server %s in "
479
- "state TRANSIENT_FAILURE: %s",
480
- parent_->xds_client(), parent_->server_.server_uri.c_str(),
481
- status.ToString().c_str());
482
- parent_->xds_client_->NotifyOnErrorLocked(
483
- absl::UnavailableError(absl::StrCat(
484
- "xds channel in TRANSIENT_FAILURE, connectivity error: ",
485
- status.ToString())));
486
- }
487
- }
488
- parent_->xds_client()->work_serializer_.DrainQueue();
489
- }
490
-
491
- WeakRefCountedPtr<ChannelState> parent_;
492
- };
493
-
494
436
  //
495
437
  // XdsClient::ChannelState
496
438
  //
497
439
 
498
- namespace {
499
-
500
- grpc_channel* CreateXdsChannel(grpc_channel_args* args,
501
- const XdsBootstrap::XdsServer& server) {
502
- RefCountedPtr<grpc_channel_credentials> channel_creds =
503
- CoreConfiguration::Get().channel_creds_registry().CreateChannelCreds(
504
- server.channel_creds_type, server.channel_creds_config);
505
- return grpc_channel_create(server.server_uri.c_str(), channel_creds.get(),
506
- args);
507
- }
508
-
509
- } // namespace
510
-
511
440
  XdsClient::ChannelState::ChannelState(WeakRefCountedPtr<XdsClient> xds_client,
512
441
  const XdsBootstrap::XdsServer& server)
513
442
  : DualRefCounted<ChannelState>(
@@ -517,38 +446,50 @@ XdsClient::ChannelState::ChannelState(WeakRefCountedPtr<XdsClient> xds_client,
517
446
  xds_client_(std::move(xds_client)),
518
447
  server_(server) {
519
448
  if (GRPC_TRACE_FLAG_ENABLED(grpc_xds_client_trace)) {
520
- gpr_log(GPR_INFO, "[xds_client %p] creating channel to %s",
521
- xds_client_.get(), server.server_uri.c_str());
522
- }
523
- channel_ = CreateXdsChannel(xds_client_->args_, server);
524
- GPR_ASSERT(channel_ != nullptr);
525
- StartConnectivityWatchLocked();
449
+ gpr_log(GPR_INFO, "[xds_client %p] creating channel %p for server %s",
450
+ xds_client_.get(), this, server.server_uri().c_str());
451
+ }
452
+ absl::Status status;
453
+ transport_ = xds_client_->transport_factory_->Create(
454
+ server,
455
+ [self = WeakRef(DEBUG_LOCATION, "OnConnectivityFailure")](
456
+ absl::Status status) {
457
+ self->OnConnectivityFailure(std::move(status));
458
+ },
459
+ &status);
460
+ GPR_ASSERT(transport_ != nullptr);
461
+ if (!status.ok()) SetChannelStatusLocked(std::move(status));
526
462
  }
527
463
 
528
464
  XdsClient::ChannelState::~ChannelState() {
529
465
  if (GRPC_TRACE_FLAG_ENABLED(grpc_xds_client_trace)) {
530
466
  gpr_log(GPR_INFO, "[xds_client %p] destroying xds channel %p for server %s",
531
- xds_client(), this, server_.server_uri.c_str());
467
+ xds_client(), this, server_.server_uri().c_str());
532
468
  }
533
- grpc_channel_destroy(channel_);
534
469
  xds_client_.reset(DEBUG_LOCATION, "ChannelState");
535
470
  }
536
471
 
537
472
  // This method should only ever be called when holding the lock, but we can't
538
473
  // use a ABSL_EXCLUSIVE_LOCKS_REQUIRED annotation, because Orphan() will be
539
- // called from DualRefCounted::Unref, which cannot have a lock annotation for a
540
- // lock in this subclass.
474
+ // called from DualRefCounted::Unref, which cannot have a lock annotation for
475
+ // a lock in this subclass.
541
476
  void XdsClient::ChannelState::Orphan() ABSL_NO_THREAD_SAFETY_ANALYSIS {
477
+ if (GRPC_TRACE_FLAG_ENABLED(grpc_xds_client_trace)) {
478
+ gpr_log(GPR_INFO, "[xds_client %p] orphaning xds channel %p for server %s",
479
+ xds_client(), this, server_.server_uri().c_str());
480
+ }
542
481
  shutting_down_ = true;
543
- CancelConnectivityWatchLocked();
482
+ transport_.reset();
544
483
  // At this time, all strong refs are removed, remove from channel map to
545
- // prevent subsequent subscription from trying to use this ChannelState as it
546
- // is shutting down.
547
- xds_client_->xds_server_channel_map_.erase(server_);
484
+ // prevent subsequent subscription from trying to use this ChannelState as
485
+ // it is shutting down.
486
+ xds_client_->xds_server_channel_map_.erase(&server_);
548
487
  ads_calld_.reset();
549
488
  lrs_calld_.reset();
550
489
  }
551
490
 
491
+ void XdsClient::ChannelState::ResetBackoff() { transport_->ResetBackoff(); }
492
+
552
493
  XdsClient::ChannelState::AdsCallState* XdsClient::ChannelState::ads_calld()
553
494
  const {
554
495
  return ads_calld_->calld();
@@ -559,10 +500,6 @@ XdsClient::ChannelState::LrsCallState* XdsClient::ChannelState::lrs_calld()
559
500
  return lrs_calld_->calld();
560
501
  }
561
502
 
562
- bool XdsClient::ChannelState::HasActiveAdsCall() const {
563
- return ads_calld_ != nullptr && ads_calld_->calld() != nullptr;
564
- }
565
-
566
503
  void XdsClient::ChannelState::MaybeStartLrsCall() {
567
504
  if (lrs_calld_ != nullptr) return;
568
505
  lrs_calld_.reset(new RetryableCall<LrsCallState>(
@@ -570,45 +507,10 @@ void XdsClient::ChannelState::MaybeStartLrsCall() {
570
507
  }
571
508
 
572
509
  void XdsClient::ChannelState::StopLrsCallLocked() {
573
- xds_client_->xds_load_report_server_map_.erase(server_);
510
+ xds_client_->xds_load_report_server_map_.erase(&server_);
574
511
  lrs_calld_.reset();
575
512
  }
576
513
 
577
- namespace {
578
-
579
- bool IsLameChannel(grpc_channel* channel) {
580
- grpc_channel_element* elem =
581
- grpc_channel_stack_last_element(grpc_channel_get_channel_stack(channel));
582
- return elem->filter == &LameClientFilter::kFilter;
583
- }
584
-
585
- } // namespace
586
-
587
- void XdsClient::ChannelState::StartConnectivityWatchLocked() {
588
- if (IsLameChannel(channel_)) {
589
- xds_client()->NotifyOnErrorLocked(
590
- absl::UnavailableError("xds client has a lame channel"));
591
- return;
592
- }
593
- ClientChannel* client_channel =
594
- ClientChannel::GetFromChannel(Channel::FromC(channel_));
595
- GPR_ASSERT(client_channel != nullptr);
596
- watcher_ = new StateWatcher(WeakRef(DEBUG_LOCATION, "ChannelState+watch"));
597
- client_channel->AddConnectivityWatcher(
598
- GRPC_CHANNEL_IDLE,
599
- OrphanablePtr<AsyncConnectivityStateWatcherInterface>(watcher_));
600
- }
601
-
602
- void XdsClient::ChannelState::CancelConnectivityWatchLocked() {
603
- if (IsLameChannel(channel_)) {
604
- return;
605
- }
606
- ClientChannel* client_channel =
607
- ClientChannel::GetFromChannel(Channel::FromC(channel_));
608
- GPR_ASSERT(client_channel != nullptr);
609
- client_channel->RemoveConnectivityWatcher(watcher_);
610
- }
611
-
612
514
  void XdsClient::ChannelState::SubscribeLocked(const XdsResourceType* type,
613
515
  const XdsResourceName& name) {
614
516
  if (ads_calld_ == nullptr) {
@@ -641,6 +543,56 @@ void XdsClient::ChannelState::UnsubscribeLocked(const XdsResourceType* type,
641
543
  }
642
544
  }
643
545
 
546
+ void XdsClient::ChannelState::OnConnectivityFailure(absl::Status status) {
547
+ {
548
+ MutexLock lock(&xds_client_->mu_);
549
+ SetChannelStatusLocked(std::move(status));
550
+ }
551
+ xds_client_->work_serializer_.DrainQueue();
552
+ }
553
+
554
+ void XdsClient::ChannelState::SetChannelStatusLocked(absl::Status status) {
555
+ if (shutting_down_) return;
556
+ status = absl::Status(status.code(), absl::StrCat("xDS channel for server ",
557
+ server_.server_uri(), ": ",
558
+ status.message()));
559
+ gpr_log(GPR_INFO, "[xds_client %p] %s", xds_client(),
560
+ status.ToString().c_str());
561
+ // If the node ID is set, append that to the status message that we send to
562
+ // the watchers, so that it will appear in log messages visible to users.
563
+ const auto* node = xds_client_->bootstrap_->node();
564
+ if (node != nullptr) {
565
+ status = absl::Status(
566
+ status.code(),
567
+ absl::StrCat(status.message(),
568
+ " (node ID:", xds_client_->bootstrap_->node()->id(), ")"));
569
+ }
570
+ // Save status in channel, so that we can immediately generate an
571
+ // error for any new watchers that may be started.
572
+ status_ = status;
573
+ // Find all watchers for this channel.
574
+ std::set<RefCountedPtr<ResourceWatcherInterface>> watchers;
575
+ for (const auto& a : xds_client_->authority_state_map_) { // authority
576
+ if (a.second.channel_state != this) continue;
577
+ for (const auto& t : a.second.resource_map) { // type
578
+ for (const auto& r : t.second) { // resource id
579
+ for (const auto& w : r.second.watchers) { // watchers
580
+ watchers.insert(w.second);
581
+ }
582
+ }
583
+ }
584
+ }
585
+ // Enqueue notification for the watchers.
586
+ xds_client_->work_serializer_.Schedule(
587
+ [watchers = std::move(watchers), status = std::move(status)]()
588
+ ABSL_EXCLUSIVE_LOCKS_REQUIRED(xds_client_->work_serializer_) {
589
+ for (const auto& watcher : watchers) {
590
+ watcher->OnError(status);
591
+ }
592
+ },
593
+ DEBUG_LOCATION);
594
+ }
595
+
644
596
  //
645
597
  // XdsClient::ChannelState::RetryableCall<>
646
598
  //
@@ -656,9 +608,6 @@ XdsClient::ChannelState::RetryableCall<T>::RetryableCall(
656
608
  .set_jitter(GRPC_XDS_RECONNECT_JITTER)
657
609
  .set_max_backoff(Duration::Seconds(
658
610
  GRPC_XDS_RECONNECT_MAX_BACKOFF_SECONDS))) {
659
- // Closure Initialization
660
- GRPC_CLOSURE_INIT(&on_retry_timer_, OnRetryTimer, this,
661
- grpc_schedule_on_exec_ctx);
662
611
  StartNewCallLocked();
663
612
  }
664
613
 
@@ -666,7 +615,10 @@ template <typename T>
666
615
  void XdsClient::ChannelState::RetryableCall<T>::Orphan() {
667
616
  shutting_down_ = true;
668
617
  calld_.reset();
669
- if (retry_timer_callback_pending_) grpc_timer_cancel(&retry_timer_);
618
+ if (timer_handle_.has_value()) {
619
+ chand()->xds_client()->engine()->Cancel(*timer_handle_);
620
+ timer_handle_.reset();
621
+ }
670
622
  this->Unref(DEBUG_LOCATION, "RetryableCall+orphaned");
671
623
  }
672
624
 
@@ -682,13 +634,13 @@ void XdsClient::ChannelState::RetryableCall<T>::OnCallFinishedLocked() {
682
634
  template <typename T>
683
635
  void XdsClient::ChannelState::RetryableCall<T>::StartNewCallLocked() {
684
636
  if (shutting_down_) return;
685
- GPR_ASSERT(chand_->channel_ != nullptr);
637
+ GPR_ASSERT(chand_->transport_ != nullptr);
686
638
  GPR_ASSERT(calld_ == nullptr);
687
639
  if (GRPC_TRACE_FLAG_ENABLED(grpc_xds_client_trace)) {
688
- gpr_log(
689
- GPR_INFO,
690
- "[xds_client %p] xds server %s: start new call from retryable call %p",
691
- chand()->xds_client(), chand()->server_.server_uri.c_str(), this);
640
+ gpr_log(GPR_INFO,
641
+ "[xds_client %p] xds server %s: start new call from retryable "
642
+ "call %p",
643
+ chand()->xds_client(), chand()->server_.server_uri().c_str(), this);
692
644
  }
693
645
  calld_ = MakeOrphanable<T>(
694
646
  this->Ref(DEBUG_LOCATION, "RetryableCall+start_new_call"));
@@ -698,45 +650,39 @@ template <typename T>
698
650
  void XdsClient::ChannelState::RetryableCall<T>::StartRetryTimerLocked() {
699
651
  if (shutting_down_) return;
700
652
  const Timestamp next_attempt_time = backoff_.NextAttemptTime();
653
+ const Duration timeout =
654
+ std::max(next_attempt_time - Timestamp::Now(), Duration::Zero());
701
655
  if (GRPC_TRACE_FLAG_ENABLED(grpc_xds_client_trace)) {
702
- Duration timeout =
703
- std::max(next_attempt_time - ExecCtx::Get()->Now(), Duration::Zero());
704
656
  gpr_log(GPR_INFO,
705
657
  "[xds_client %p] xds server %s: call attempt failed; "
706
658
  "retry timer will fire in %" PRId64 "ms.",
707
- chand()->xds_client(), chand()->server_.server_uri.c_str(),
659
+ chand()->xds_client(), chand()->server_.server_uri().c_str(),
708
660
  timeout.millis());
709
661
  }
710
- this->Ref(DEBUG_LOCATION, "RetryableCall+retry_timer_start").release();
711
- grpc_timer_init(&retry_timer_, next_attempt_time, &on_retry_timer_);
712
- retry_timer_callback_pending_ = true;
713
- }
714
-
715
- template <typename T>
716
- void XdsClient::ChannelState::RetryableCall<T>::OnRetryTimer(
717
- void* arg, grpc_error_handle error) {
718
- RetryableCall* calld = static_cast<RetryableCall*>(arg);
719
- {
720
- MutexLock lock(&calld->chand_->xds_client()->mu_);
721
- calld->OnRetryTimerLocked(GRPC_ERROR_REF(error));
722
- }
723
- calld->Unref(DEBUG_LOCATION, "RetryableCall+retry_timer_done");
662
+ timer_handle_ = chand()->xds_client()->engine()->RunAfter(
663
+ timeout,
664
+ [self = this->Ref(DEBUG_LOCATION, "RetryableCall+retry_timer_start")]() {
665
+ ApplicationCallbackExecCtx callback_exec_ctx;
666
+ ExecCtx exec_ctx;
667
+ self->OnRetryTimer();
668
+ });
724
669
  }
725
670
 
726
671
  template <typename T>
727
- void XdsClient::ChannelState::RetryableCall<T>::OnRetryTimerLocked(
728
- grpc_error_handle error) {
729
- retry_timer_callback_pending_ = false;
730
- if (!shutting_down_ && error == GRPC_ERROR_NONE) {
672
+ void XdsClient::ChannelState::RetryableCall<T>::OnRetryTimer() {
673
+ MutexLock lock(&chand_->xds_client()->mu_);
674
+ if (timer_handle_.has_value()) {
675
+ timer_handle_.reset();
676
+ if (shutting_down_) return;
731
677
  if (GRPC_TRACE_FLAG_ENABLED(grpc_xds_client_trace)) {
732
678
  gpr_log(GPR_INFO,
733
679
  "[xds_client %p] xds server %s: retry timer fired (retryable "
734
680
  "call: %p)",
735
- chand()->xds_client(), chand()->server_.server_uri.c_str(), this);
681
+ chand()->xds_client(), chand()->server_.server_uri().c_str(),
682
+ this);
736
683
  }
737
684
  StartNewCallLocked();
738
685
  }
739
- GRPC_ERROR_UNREF(error);
740
686
  }
741
687
 
742
688
  //
@@ -751,7 +697,7 @@ absl::Status XdsClient::ChannelState::AdsCallState::AdsResponseParser::
751
697
  "[xds_client %p] xds server %s: received ADS response: type_url=%s, "
752
698
  "version=%s, nonce=%s, num_resources=%" PRIuPTR,
753
699
  ads_call_state_->xds_client(),
754
- ads_call_state_->chand()->server_.server_uri.c_str(),
700
+ ads_call_state_->chand()->server_.server_uri().c_str(),
755
701
  fields.type_url.c_str(), fields.version.c_str(), fields.nonce.c_str(),
756
702
  fields.num_resources);
757
703
  }
@@ -794,48 +740,68 @@ void UpdateResourceMetadataNacked(const std::string& version,
794
740
  } // namespace
795
741
 
796
742
  void XdsClient::ChannelState::AdsCallState::AdsResponseParser::ParseResource(
797
- const XdsEncodingContext& context, size_t idx, absl::string_view type_url,
798
- absl::string_view serialized_resource) {
743
+ upb_Arena* arena, size_t idx, absl::string_view type_url,
744
+ absl::string_view resource_name, absl::string_view serialized_resource) {
745
+ std::string error_prefix = absl::StrCat(
746
+ "resource index ", idx, ": ",
747
+ resource_name.empty() ? "" : absl::StrCat(resource_name, ": "));
799
748
  // Check the type_url of the resource.
800
- bool is_v2 = false;
801
- if (!result_.type->IsType(type_url, &is_v2)) {
749
+ if (result_.type_url != type_url) {
802
750
  result_.errors.emplace_back(
803
- absl::StrCat("resource index ", idx, ": incorrect resource type ",
804
- type_url, " (should be ", result_.type_url, ")"));
751
+ absl::StrCat(error_prefix, "incorrect resource type \"", type_url,
752
+ "\" (should be \"", result_.type_url, "\")"));
805
753
  return;
806
754
  }
807
755
  // Parse the resource.
808
- absl::StatusOr<XdsResourceType::DecodeResult> result =
809
- result_.type->Decode(context, serialized_resource, is_v2);
810
- if (!result.ok()) {
756
+ XdsResourceType::DecodeContext context = {
757
+ xds_client(), ads_call_state_->chand()->server_, &grpc_xds_client_trace,
758
+ xds_client()->symtab_.ptr(), arena};
759
+ XdsResourceType::DecodeResult decode_result =
760
+ result_.type->Decode(context, serialized_resource);
761
+ // If we didn't already have the resource name from the Resource
762
+ // wrapper, try to get it from the decoding result.
763
+ if (resource_name.empty()) {
764
+ if (decode_result.name.has_value()) {
765
+ resource_name = *decode_result.name;
766
+ error_prefix =
767
+ absl::StrCat("resource index ", idx, ": ", resource_name, ": ");
768
+ } else {
769
+ // We don't have any way of determining the resource name, so
770
+ // there's nothing more we can do here.
771
+ result_.errors.emplace_back(absl::StrCat(
772
+ error_prefix, decode_result.resource.status().ToString()));
773
+ return;
774
+ }
775
+ }
776
+ // If decoding failed, make sure we include the error in the NACK.
777
+ const absl::Status& decode_status = decode_result.resource.status();
778
+ if (!decode_status.ok()) {
811
779
  result_.errors.emplace_back(
812
- absl::StrCat("resource index ", idx, ": ", result.status().ToString()));
813
- return;
780
+ absl::StrCat(error_prefix, decode_status.ToString()));
814
781
  }
815
782
  // Check the resource name.
816
- auto resource_name =
817
- xds_client()->ParseXdsResourceName(result->name, result_.type);
818
- if (!resource_name.ok()) {
819
- result_.errors.emplace_back(absl::StrCat(
820
- "resource index ", idx, ": Cannot parse xDS resource name \"",
821
- result->name, "\""));
783
+ auto parsed_resource_name =
784
+ xds_client()->ParseXdsResourceName(resource_name, result_.type);
785
+ if (!parsed_resource_name.ok()) {
786
+ result_.errors.emplace_back(
787
+ absl::StrCat(error_prefix, "Cannot parse xDS resource name"));
822
788
  return;
823
789
  }
824
790
  // Cancel resource-does-not-exist timer, if needed.
825
791
  auto timer_it = ads_call_state_->state_map_.find(result_.type);
826
792
  if (timer_it != ads_call_state_->state_map_.end()) {
827
- auto it =
828
- timer_it->second.subscribed_resources.find(resource_name->authority);
793
+ auto it = timer_it->second.subscribed_resources.find(
794
+ parsed_resource_name->authority);
829
795
  if (it != timer_it->second.subscribed_resources.end()) {
830
- auto res_it = it->second.find(resource_name->key);
796
+ auto res_it = it->second.find(parsed_resource_name->key);
831
797
  if (res_it != it->second.end()) {
832
- res_it->second->MaybeCancelTimer();
798
+ res_it->second->MarkSeen();
833
799
  }
834
800
  }
835
801
  }
836
802
  // Lookup the authority in the cache.
837
803
  auto authority_it =
838
- xds_client()->authority_state_map_.find(resource_name->authority);
804
+ xds_client()->authority_state_map_.find(parsed_resource_name->authority);
839
805
  if (authority_it == xds_client()->authority_state_map_.end()) {
840
806
  return; // Skip resource -- we don't have a subscription for it.
841
807
  }
@@ -847,26 +813,35 @@ void XdsClient::ChannelState::AdsCallState::AdsResponseParser::ParseResource(
847
813
  }
848
814
  auto& type_map = type_it->second;
849
815
  // Found type, so look up resource key.
850
- auto it = type_map.find(resource_name->key);
816
+ auto it = type_map.find(parsed_resource_name->key);
851
817
  if (it == type_map.end()) {
852
818
  return; // Skip resource -- we don't have a subscription for it.
853
819
  }
854
820
  ResourceState& resource_state = it->second;
855
821
  // If needed, record that we've seen this resource.
856
822
  if (result_.type->AllResourcesRequiredInSotW()) {
857
- result_.resources_seen[resource_name->authority].insert(resource_name->key);
823
+ result_.resources_seen[parsed_resource_name->authority].insert(
824
+ parsed_resource_name->key);
825
+ }
826
+ // If we previously ignored the resource's deletion, log that we're
827
+ // now re-adding it.
828
+ if (resource_state.ignored_deletion) {
829
+ gpr_log(GPR_INFO,
830
+ "[xds_client %p] xds server %s: server returned new version of "
831
+ "resource for which we previously ignored a deletion: type %s "
832
+ "name %s",
833
+ xds_client(),
834
+ ads_call_state_->chand()->server_.server_uri().c_str(),
835
+ std::string(type_url).c_str(), std::string(resource_name).c_str());
836
+ resource_state.ignored_deletion = false;
858
837
  }
859
838
  // Update resource state based on whether the resource is valid.
860
- if (!result->resource.ok()) {
861
- result_.errors.emplace_back(absl::StrCat(
862
- "resource index ", idx, ": ", result->name,
863
- ": validation error: ", result->resource.status().ToString()));
839
+ if (!decode_status.ok()) {
864
840
  xds_client()->NotifyWatchersOnErrorLocked(
865
841
  resource_state.watchers,
866
- absl::UnavailableError(absl::StrCat(
867
- "invalid resource: ", result->resource.status().ToString())));
868
- UpdateResourceMetadataNacked(result_.version,
869
- result->resource.status().ToString(),
842
+ absl::UnavailableError(
843
+ absl::StrCat("invalid resource: ", decode_status.ToString())));
844
+ UpdateResourceMetadataNacked(result_.version, decode_status.ToString(),
870
845
  update_time_, &resource_state.meta);
871
846
  return;
872
847
  }
@@ -875,16 +850,17 @@ void XdsClient::ChannelState::AdsCallState::AdsResponseParser::ParseResource(
875
850
  // If it didn't change, ignore it.
876
851
  if (resource_state.resource != nullptr &&
877
852
  result_.type->ResourcesEqual(resource_state.resource.get(),
878
- result->resource->get())) {
853
+ decode_result.resource->get())) {
879
854
  if (GRPC_TRACE_FLAG_ENABLED(grpc_xds_client_trace)) {
880
855
  gpr_log(GPR_INFO,
881
856
  "[xds_client %p] %s resource %s identical to current, ignoring.",
882
- xds_client(), result_.type_url.c_str(), result->name.c_str());
857
+ xds_client(), result_.type_url.c_str(),
858
+ std::string(resource_name).c_str());
883
859
  }
884
860
  return;
885
861
  }
886
862
  // Update the resource state.
887
- resource_state.resource = std::move(*result->resource);
863
+ resource_state.resource = std::move(*decode_result.resource);
888
864
  resource_state.meta = CreateResourceMetadataAcked(
889
865
  std::string(serialized_resource), result_.version, update_time_);
890
866
  // Notify watchers.
@@ -902,6 +878,12 @@ void XdsClient::ChannelState::AdsCallState::AdsResponseParser::ParseResource(
902
878
  DEBUG_LOCATION);
903
879
  }
904
880
 
881
+ void XdsClient::ChannelState::AdsCallState::AdsResponseParser::
882
+ ResourceWrapperParsingFailed(size_t idx, absl::string_view message) {
883
+ result_.errors.emplace_back(
884
+ absl::StrCat("resource index ", idx, ": ", message));
885
+ }
886
+
905
887
  //
906
888
  // XdsClient::ChannelState::AdsCallState
907
889
  //
@@ -913,51 +895,27 @@ XdsClient::ChannelState::AdsCallState::AdsCallState(
913
895
  ? "AdsCallState"
914
896
  : nullptr),
915
897
  parent_(std::move(parent)) {
916
- // Init the ADS call. Note that the call will progress every time there's
917
- // activity in xds_client()->interested_parties_, which is comprised of
918
- // the polling entities from client_channel.
919
898
  GPR_ASSERT(xds_client() != nullptr);
920
- // Create a call with the specified method name.
899
+ // Init the ADS call.
921
900
  const char* method =
922
- chand()->server_.ShouldUseV3()
923
- ? "/envoy.service.discovery.v3.AggregatedDiscoveryService/"
924
- "StreamAggregatedResources"
925
- : "/envoy.service.discovery.v2.AggregatedDiscoveryService/"
926
- "StreamAggregatedResources";
927
- call_ = grpc_channel_create_pollset_set_call(
928
- chand()->channel_, nullptr, GRPC_PROPAGATE_DEFAULTS,
929
- xds_client()->interested_parties_,
930
- StaticSlice::FromStaticString(method).c_slice(), nullptr,
931
- Timestamp::InfFuture(), nullptr);
901
+ "/envoy.service.discovery.v3.AggregatedDiscoveryService/"
902
+ "StreamAggregatedResources";
903
+ call_ = chand()->transport_->CreateStreamingCall(
904
+ method, std::make_unique<StreamEventHandler>(
905
+ // Passing the initial ref here. This ref will go away when
906
+ // the StreamEventHandler is destroyed.
907
+ RefCountedPtr<AdsCallState>(this)));
932
908
  GPR_ASSERT(call_ != nullptr);
933
- // Init data associated with the call.
934
- grpc_metadata_array_init(&initial_metadata_recv_);
935
- grpc_metadata_array_init(&trailing_metadata_recv_);
936
909
  // Start the call.
937
910
  if (GRPC_TRACE_FLAG_ENABLED(grpc_xds_client_trace)) {
938
911
  gpr_log(GPR_INFO,
939
912
  "[xds_client %p] xds server %s: starting ADS call "
940
913
  "(calld: %p, call: %p)",
941
- xds_client(), chand()->server_.server_uri.c_str(), this, call_);
942
- }
943
- // Create the ops.
944
- grpc_call_error call_error;
945
- grpc_op ops[3];
946
- memset(ops, 0, sizeof(ops));
947
- // Op: send initial metadata.
948
- grpc_op* op = ops;
949
- op->op = GRPC_OP_SEND_INITIAL_METADATA;
950
- op->data.send_initial_metadata.count = 0;
951
- op->flags = GRPC_INITIAL_METADATA_WAIT_FOR_READY |
952
- GRPC_INITIAL_METADATA_WAIT_FOR_READY_EXPLICITLY_SET;
953
- op->reserved = nullptr;
954
- op++;
955
- call_error = grpc_call_start_batch_and_execute(
956
- call_, ops, static_cast<size_t>(op - ops), nullptr);
957
- GPR_ASSERT(GRPC_CALL_OK == call_error);
958
- // Op: send request message.
959
- GRPC_CLOSURE_INIT(&on_request_sent_, OnRequestSent, this,
960
- grpc_schedule_on_exec_ctx);
914
+ xds_client(), chand()->server_.server_uri().c_str(), this,
915
+ call_.get());
916
+ }
917
+ // If this is a reconnect, add any necessary subscriptions from what's
918
+ // already in the cache.
961
919
  for (const auto& a : xds_client()->authority_state_map_) {
962
920
  const std::string& authority = a.first;
963
921
  // Skip authorities that are not using this xDS channel.
@@ -970,120 +928,45 @@ XdsClient::ChannelState::AdsCallState::AdsCallState(
970
928
  }
971
929
  }
972
930
  }
931
+ // Send initial message if we added any subscriptions above.
973
932
  for (const auto& p : state_map_) {
974
933
  SendMessageLocked(p.first);
975
934
  }
976
- // Op: recv initial metadata.
977
- op = ops;
978
- op->op = GRPC_OP_RECV_INITIAL_METADATA;
979
- op->data.recv_initial_metadata.recv_initial_metadata =
980
- &initial_metadata_recv_;
981
- op->flags = 0;
982
- op->reserved = nullptr;
983
- op++;
984
- // Op: recv response.
985
- op->op = GRPC_OP_RECV_MESSAGE;
986
- op->data.recv_message.recv_message = &recv_message_payload_;
987
- op->flags = 0;
988
- op->reserved = nullptr;
989
- op++;
990
- Ref(DEBUG_LOCATION, "ADS+OnResponseReceivedLocked").release();
991
- GRPC_CLOSURE_INIT(&on_response_received_, OnResponseReceived, this,
992
- grpc_schedule_on_exec_ctx);
993
- call_error = grpc_call_start_batch_and_execute(
994
- call_, ops, static_cast<size_t>(op - ops), &on_response_received_);
995
- GPR_ASSERT(GRPC_CALL_OK == call_error);
996
- // Op: recv server status.
997
- op = ops;
998
- op->op = GRPC_OP_RECV_STATUS_ON_CLIENT;
999
- op->data.recv_status_on_client.trailing_metadata = &trailing_metadata_recv_;
1000
- op->data.recv_status_on_client.status = &status_code_;
1001
- op->data.recv_status_on_client.status_details = &status_details_;
1002
- op->flags = 0;
1003
- op->reserved = nullptr;
1004
- op++;
1005
- // This callback signals the end of the call, so it relies on the initial
1006
- // ref instead of a new ref. When it's invoked, it's the initial ref that is
1007
- // unreffed.
1008
- GRPC_CLOSURE_INIT(&on_status_received_, OnStatusReceived, this,
1009
- grpc_schedule_on_exec_ctx);
1010
- call_error = grpc_call_start_batch_and_execute(
1011
- call_, ops, static_cast<size_t>(op - ops), &on_status_received_);
1012
- GPR_ASSERT(GRPC_CALL_OK == call_error);
1013
- }
1014
-
1015
- XdsClient::ChannelState::AdsCallState::~AdsCallState() {
1016
- grpc_metadata_array_destroy(&initial_metadata_recv_);
1017
- grpc_metadata_array_destroy(&trailing_metadata_recv_);
1018
- grpc_byte_buffer_destroy(send_message_payload_);
1019
- grpc_byte_buffer_destroy(recv_message_payload_);
1020
- grpc_slice_unref_internal(status_details_);
1021
- GPR_ASSERT(call_ != nullptr);
1022
- grpc_call_unref(call_);
1023
935
  }
1024
936
 
1025
937
  void XdsClient::ChannelState::AdsCallState::Orphan() {
1026
- GPR_ASSERT(call_ != nullptr);
1027
- // If we are here because xds_client wants to cancel the call,
1028
- // on_status_received_ will complete the cancellation and clean up. Otherwise,
1029
- // we are here because xds_client has to orphan a failed call, then the
1030
- // following cancellation will be a no-op.
1031
- grpc_call_cancel_internal(call_);
1032
938
  state_map_.clear();
1033
- // Note that the initial ref is hold by on_status_received_. So the
1034
- // corresponding unref happens in on_status_received_ instead of here.
939
+ // Note that the initial ref is held by the StreamEventHandler, which
940
+ // will be destroyed when call_ is destroyed, which may not happen
941
+ // here, since there may be other refs held to call_ by internal callbacks.
942
+ call_.reset();
1035
943
  }
1036
944
 
1037
945
  void XdsClient::ChannelState::AdsCallState::SendMessageLocked(
1038
946
  const XdsResourceType* type)
1039
947
  ABSL_EXCLUSIVE_LOCKS_REQUIRED(&XdsClient::mu_) {
1040
948
  // Buffer message sending if an existing message is in flight.
1041
- if (send_message_payload_ != nullptr) {
949
+ if (send_message_pending_ != nullptr) {
1042
950
  buffered_requests_.insert(type);
1043
951
  return;
1044
952
  }
1045
953
  auto& state = state_map_[type];
1046
- grpc_slice request_payload_slice;
1047
- request_payload_slice = xds_client()->api_.CreateAdsRequest(
1048
- chand()->server_,
1049
- chand()->server_.ShouldUseV3() ? type->type_url() : type->v2_type_url(),
1050
- chand()->resource_type_version_map_[type], state.nonce,
1051
- ResourceNamesForRequest(type), GRPC_ERROR_REF(state.error),
1052
- !sent_initial_message_);
954
+ std::string serialized_message = xds_client()->api_.CreateAdsRequest(
955
+ type->type_url(), chand()->resource_type_version_map_[type], state.nonce,
956
+ ResourceNamesForRequest(type), state.status, !sent_initial_message_);
1053
957
  sent_initial_message_ = true;
1054
958
  if (GRPC_TRACE_FLAG_ENABLED(grpc_xds_client_trace)) {
1055
959
  gpr_log(GPR_INFO,
1056
960
  "[xds_client %p] xds server %s: sending ADS request: type=%s "
1057
961
  "version=%s nonce=%s error=%s",
1058
- xds_client(), chand()->server_.server_uri.c_str(),
962
+ xds_client(), chand()->server_.server_uri().c_str(),
1059
963
  std::string(type->type_url()).c_str(),
1060
964
  chand()->resource_type_version_map_[type].c_str(),
1061
- state.nonce.c_str(), grpc_error_std_string(state.error).c_str());
1062
- }
1063
- GRPC_ERROR_UNREF(state.error);
1064
- state.error = GRPC_ERROR_NONE;
1065
- // Create message payload.
1066
- send_message_payload_ =
1067
- grpc_raw_byte_buffer_create(&request_payload_slice, 1);
1068
- grpc_slice_unref_internal(request_payload_slice);
1069
- // Send the message.
1070
- grpc_op op;
1071
- memset(&op, 0, sizeof(op));
1072
- op.op = GRPC_OP_SEND_MESSAGE;
1073
- op.data.send_message.send_message = send_message_payload_;
1074
- Ref(DEBUG_LOCATION, "ADS+OnRequestSentLocked").release();
1075
- GRPC_CLOSURE_INIT(&on_request_sent_, OnRequestSent, this,
1076
- grpc_schedule_on_exec_ctx);
1077
- grpc_call_error call_error =
1078
- grpc_call_start_batch_and_execute(call_, &op, 1, &on_request_sent_);
1079
- if (GPR_UNLIKELY(call_error != GRPC_CALL_OK)) {
1080
- gpr_log(GPR_ERROR,
1081
- "[xds_client %p] xds server %s: error starting ADS send_message "
1082
- "batch on calld=%p: call_error=%d",
1083
- xds_client(), chand()->server_.server_uri.c_str(), this,
1084
- call_error);
1085
- GPR_ASSERT(GRPC_CALL_OK == call_error);
965
+ state.nonce.c_str(), state.status.ToString().c_str());
1086
966
  }
967
+ state.status = absl::OkStatus();
968
+ call_->SendMessage(std::move(serialized_message));
969
+ send_message_pending_ = type;
1087
970
  }
1088
971
 
1089
972
  void XdsClient::ChannelState::AdsCallState::SubscribeLocked(
@@ -1104,7 +987,12 @@ void XdsClient::ChannelState::AdsCallState::UnsubscribeLocked(
1104
987
  if (authority_map.empty()) {
1105
988
  type_state_map.subscribed_resources.erase(name.authority);
1106
989
  }
1107
- if (!delay_unsubscription) SendMessageLocked(type);
990
+ // Don't need to send unsubscription message if this was the last
991
+ // resource we were subscribed to, since we'll be closing the stream
992
+ // immediately in that case.
993
+ if (!delay_unsubscription && HasSubscribedResources()) {
994
+ SendMessageLocked(type);
995
+ }
1108
996
  }
1109
997
 
1110
998
  bool XdsClient::ChannelState::AdsCallState::HasSubscribedResources() const {
@@ -1114,22 +1002,21 @@ bool XdsClient::ChannelState::AdsCallState::HasSubscribedResources() const {
1114
1002
  return false;
1115
1003
  }
1116
1004
 
1117
- void XdsClient::ChannelState::AdsCallState::OnRequestSent(
1118
- void* arg, grpc_error_handle error) {
1119
- AdsCallState* ads_calld = static_cast<AdsCallState*>(arg);
1120
- {
1121
- MutexLock lock(&ads_calld->xds_client()->mu_);
1122
- ads_calld->OnRequestSentLocked(GRPC_ERROR_REF(error));
1005
+ void XdsClient::ChannelState::AdsCallState::OnRequestSent(bool ok) {
1006
+ MutexLock lock(&xds_client()->mu_);
1007
+ // For each resource that was in the message we just sent, start the
1008
+ // resource timer if needed.
1009
+ if (ok) {
1010
+ auto& resource_type_state = state_map_[send_message_pending_];
1011
+ for (const auto& p : resource_type_state.subscribed_resources) {
1012
+ for (auto& q : p.second) {
1013
+ q.second->MaybeMarkSubscriptionSendComplete(
1014
+ Ref(DEBUG_LOCATION, "ResourceTimer"));
1015
+ }
1016
+ }
1123
1017
  }
1124
- ads_calld->Unref(DEBUG_LOCATION, "ADS+OnRequestSentLocked");
1125
- }
1126
-
1127
- void XdsClient::ChannelState::AdsCallState::OnRequestSentLocked(
1128
- grpc_error_handle error) {
1129
- if (IsCurrentCallOnChannel() && error == GRPC_ERROR_NONE) {
1130
- // Clean up the sent message.
1131
- grpc_byte_buffer_destroy(send_message_payload_);
1132
- send_message_payload_ = nullptr;
1018
+ send_message_pending_ = nullptr;
1019
+ if (ok && IsCurrentCallOnChannel()) {
1133
1020
  // Continue to send another pending message if any.
1134
1021
  // TODO(roth): The current code to handle buffered messages has the
1135
1022
  // advantage of sending only the most recent list of resource names for
@@ -1145,170 +1032,149 @@ void XdsClient::ChannelState::AdsCallState::OnRequestSentLocked(
1145
1032
  buffered_requests_.erase(it);
1146
1033
  }
1147
1034
  }
1148
- GRPC_ERROR_UNREF(error);
1149
1035
  }
1150
1036
 
1151
- void XdsClient::ChannelState::AdsCallState::OnResponseReceived(
1152
- void* arg, grpc_error_handle /* error */) {
1153
- AdsCallState* ads_calld = static_cast<AdsCallState*>(arg);
1154
- bool done;
1037
+ void XdsClient::ChannelState::AdsCallState::OnRecvMessage(
1038
+ absl::string_view payload) {
1155
1039
  {
1156
- MutexLock lock(&ads_calld->xds_client()->mu_);
1157
- done = ads_calld->OnResponseReceivedLocked();
1158
- }
1159
- ads_calld->xds_client()->work_serializer_.DrainQueue();
1160
- if (done) ads_calld->Unref(DEBUG_LOCATION, "ADS+OnResponseReceivedLocked");
1161
- }
1162
-
1163
- bool XdsClient::ChannelState::AdsCallState::OnResponseReceivedLocked() {
1164
- // Empty payload means the call was cancelled.
1165
- if (!IsCurrentCallOnChannel() || recv_message_payload_ == nullptr) {
1166
- return true;
1167
- }
1168
- // Read the response.
1169
- grpc_byte_buffer_reader bbr;
1170
- grpc_byte_buffer_reader_init(&bbr, recv_message_payload_);
1171
- grpc_slice response_slice = grpc_byte_buffer_reader_readall(&bbr);
1172
- grpc_byte_buffer_reader_destroy(&bbr);
1173
- grpc_byte_buffer_destroy(recv_message_payload_);
1174
- recv_message_payload_ = nullptr;
1175
- // Parse and validate the response.
1176
- AdsResponseParser parser(this);
1177
- absl::Status status = xds_client()->api_.ParseAdsResponse(
1178
- chand()->server_, response_slice, &parser);
1179
- grpc_slice_unref_internal(response_slice);
1180
- if (!status.ok()) {
1181
- // Ignore unparsable response.
1182
- gpr_log(GPR_ERROR,
1183
- "[xds_client %p] xds server %s: error parsing ADS response (%s) "
1184
- "-- ignoring",
1185
- xds_client(), chand()->server_.server_uri.c_str(),
1186
- status.ToString().c_str());
1187
- } else {
1188
- seen_response_ = true;
1189
- AdsResponseParser::Result result = parser.TakeResult();
1190
- // Update nonce.
1191
- auto& state = state_map_[result.type];
1192
- state.nonce = result.nonce;
1193
- // If we got an error, set state.error so that we'll NACK the update.
1194
- if (!result.errors.empty()) {
1195
- std::string error = absl::StrJoin(result.errors, "; ");
1196
- gpr_log(
1197
- GPR_ERROR,
1198
- "[xds_client %p] xds server %s: ADS response invalid for resource "
1199
- "type %s version %s, will NACK: nonce=%s error=%s",
1200
- xds_client(), chand()->server_.server_uri.c_str(),
1201
- result.type_url.c_str(), result.version.c_str(), state.nonce.c_str(),
1202
- error.c_str());
1203
- GRPC_ERROR_UNREF(state.error);
1204
- state.error = grpc_error_set_int(GRPC_ERROR_CREATE_FROM_CPP_STRING(error),
1205
- GRPC_ERROR_INT_GRPC_STATUS,
1206
- GRPC_STATUS_UNAVAILABLE);
1207
- }
1208
- // Delete resources not seen in update if needed.
1209
- if (result.type->AllResourcesRequiredInSotW()) {
1210
- for (auto& a : xds_client()->authority_state_map_) {
1211
- const std::string& authority = a.first;
1212
- AuthorityState& authority_state = a.second;
1213
- // Skip authorities that are not using this xDS channel.
1214
- if (authority_state.channel_state != chand()) continue;
1215
- auto seen_authority_it = result.resources_seen.find(authority);
1216
- // Find this resource type.
1217
- auto type_it = authority_state.resource_map.find(result.type);
1218
- if (type_it == authority_state.resource_map.end()) continue;
1219
- // Iterate over resource ids.
1220
- for (auto& r : type_it->second) {
1221
- const XdsResourceKey& resource_key = r.first;
1222
- ResourceState& resource_state = r.second;
1223
- if (seen_authority_it == result.resources_seen.end() ||
1224
- seen_authority_it->second.find(resource_key) ==
1225
- seen_authority_it->second.end()) {
1226
- // If the resource was newly requested but has not yet been
1227
- // received, we don't want to generate an error for the watchers,
1228
- // because this ADS response may be in reaction to an earlier
1229
- // request that did not yet request the new resource, so its absence
1230
- // from the response does not necessarily indicate that the resource
1231
- // does not exist. For that case, we rely on the request timeout
1232
- // instead.
1233
- if (resource_state.resource == nullptr) continue;
1234
- resource_state.resource.reset();
1235
- xds_client()->NotifyWatchersOnResourceDoesNotExist(
1236
- resource_state.watchers);
1040
+ MutexLock lock(&xds_client()->mu_);
1041
+ if (!IsCurrentCallOnChannel()) return;
1042
+ // Parse and validate the response.
1043
+ AdsResponseParser parser(this);
1044
+ absl::Status status = xds_client()->api_.ParseAdsResponse(payload, &parser);
1045
+ if (!status.ok()) {
1046
+ // Ignore unparsable response.
1047
+ gpr_log(GPR_ERROR,
1048
+ "[xds_client %p] xds server %s: error parsing ADS response (%s) "
1049
+ "-- ignoring",
1050
+ xds_client(), chand()->server_.server_uri().c_str(),
1051
+ status.ToString().c_str());
1052
+ } else {
1053
+ seen_response_ = true;
1054
+ chand()->status_ = absl::OkStatus();
1055
+ AdsResponseParser::Result result = parser.TakeResult();
1056
+ // Update nonce.
1057
+ auto& state = state_map_[result.type];
1058
+ state.nonce = result.nonce;
1059
+ // If we got an error, set state.status so that we'll NACK the update.
1060
+ if (!result.errors.empty()) {
1061
+ state.status = absl::UnavailableError(
1062
+ absl::StrCat("xDS response validation errors: [",
1063
+ absl::StrJoin(result.errors, "; "), "]"));
1064
+ gpr_log(GPR_ERROR,
1065
+ "[xds_client %p] xds server %s: ADS response invalid for "
1066
+ "resource "
1067
+ "type %s version %s, will NACK: nonce=%s status=%s",
1068
+ xds_client(), chand()->server_.server_uri().c_str(),
1069
+ result.type_url.c_str(), result.version.c_str(),
1070
+ state.nonce.c_str(), state.status.ToString().c_str());
1071
+ }
1072
+ // Delete resources not seen in update if needed.
1073
+ if (result.type->AllResourcesRequiredInSotW()) {
1074
+ for (auto& a : xds_client()->authority_state_map_) {
1075
+ const std::string& authority = a.first;
1076
+ AuthorityState& authority_state = a.second;
1077
+ // Skip authorities that are not using this xDS channel.
1078
+ if (authority_state.channel_state != chand()) continue;
1079
+ auto seen_authority_it = result.resources_seen.find(authority);
1080
+ // Find this resource type.
1081
+ auto type_it = authority_state.resource_map.find(result.type);
1082
+ if (type_it == authority_state.resource_map.end()) continue;
1083
+ // Iterate over resource ids.
1084
+ for (auto& r : type_it->second) {
1085
+ const XdsResourceKey& resource_key = r.first;
1086
+ ResourceState& resource_state = r.second;
1087
+ if (seen_authority_it == result.resources_seen.end() ||
1088
+ seen_authority_it->second.find(resource_key) ==
1089
+ seen_authority_it->second.end()) {
1090
+ // If the resource was newly requested but has not yet been
1091
+ // received, we don't want to generate an error for the
1092
+ // watchers, because this ADS response may be in reaction to an
1093
+ // earlier request that did not yet request the new resource, so
1094
+ // its absence from the response does not necessarily indicate
1095
+ // that the resource does not exist. For that case, we rely on
1096
+ // the request timeout instead.
1097
+ if (resource_state.resource == nullptr) continue;
1098
+ if (chand()->server_.IgnoreResourceDeletion()) {
1099
+ if (!resource_state.ignored_deletion) {
1100
+ gpr_log(GPR_ERROR,
1101
+ "[xds_client %p] xds server %s: ignoring deletion "
1102
+ "for resource type %s name %s",
1103
+ xds_client(), chand()->server_.server_uri().c_str(),
1104
+ result.type_url.c_str(),
1105
+ XdsClient::ConstructFullXdsResourceName(
1106
+ authority, result.type_url.c_str(), resource_key)
1107
+ .c_str());
1108
+ resource_state.ignored_deletion = true;
1109
+ }
1110
+ } else {
1111
+ resource_state.resource.reset();
1112
+ resource_state.meta.client_status =
1113
+ XdsApi::ResourceMetadata::DOES_NOT_EXIST;
1114
+ xds_client()->NotifyWatchersOnResourceDoesNotExist(
1115
+ resource_state.watchers);
1116
+ }
1117
+ }
1237
1118
  }
1238
1119
  }
1239
1120
  }
1240
- }
1241
- // If we had valid resources, update the version.
1242
- if (result.have_valid_resources) {
1243
- chand()->resource_type_version_map_[result.type] =
1244
- std::move(result.version);
1245
- // Start load reporting if needed.
1246
- auto& lrs_call = chand()->lrs_calld_;
1247
- if (lrs_call != nullptr) {
1248
- LrsCallState* lrs_calld = lrs_call->calld();
1249
- if (lrs_calld != nullptr) lrs_calld->MaybeStartReportingLocked();
1121
+ // If we had valid resources or the update was empty, update the version.
1122
+ if (result.have_valid_resources || result.errors.empty()) {
1123
+ chand()->resource_type_version_map_[result.type] =
1124
+ std::move(result.version);
1125
+ // Start load reporting if needed.
1126
+ auto& lrs_call = chand()->lrs_calld_;
1127
+ if (lrs_call != nullptr) {
1128
+ LrsCallState* lrs_calld = lrs_call->calld();
1129
+ if (lrs_calld != nullptr) lrs_calld->MaybeStartReportingLocked();
1130
+ }
1250
1131
  }
1132
+ // Send ACK or NACK.
1133
+ SendMessageLocked(result.type);
1251
1134
  }
1252
- // Send ACK or NACK.
1253
- SendMessageLocked(result.type);
1254
- }
1255
- if (xds_client()->shutting_down_) return true;
1256
- // Keep listening for updates.
1257
- grpc_op op;
1258
- memset(&op, 0, sizeof(op));
1259
- op.op = GRPC_OP_RECV_MESSAGE;
1260
- op.data.recv_message.recv_message = &recv_message_payload_;
1261
- op.flags = 0;
1262
- op.reserved = nullptr;
1263
- GPR_ASSERT(call_ != nullptr);
1264
- // Reuse the "ADS+OnResponseReceivedLocked" ref taken in ctor.
1265
- const grpc_call_error call_error =
1266
- grpc_call_start_batch_and_execute(call_, &op, 1, &on_response_received_);
1267
- GPR_ASSERT(GRPC_CALL_OK == call_error);
1268
- return false;
1135
+ }
1136
+ xds_client()->work_serializer_.DrainQueue();
1269
1137
  }
1270
1138
 
1271
1139
  void XdsClient::ChannelState::AdsCallState::OnStatusReceived(
1272
- void* arg, grpc_error_handle error) {
1273
- AdsCallState* ads_calld = static_cast<AdsCallState*>(arg);
1140
+ absl::Status status) {
1274
1141
  {
1275
- MutexLock lock(&ads_calld->xds_client()->mu_);
1276
- ads_calld->OnStatusReceivedLocked(GRPC_ERROR_REF(error));
1277
- }
1278
- ads_calld->xds_client()->work_serializer_.DrainQueue();
1279
- ads_calld->Unref(DEBUG_LOCATION, "ADS+OnStatusReceivedLocked");
1280
- }
1281
-
1282
- void XdsClient::ChannelState::AdsCallState::OnStatusReceivedLocked(
1283
- grpc_error_handle error) {
1284
- if (GRPC_TRACE_FLAG_ENABLED(grpc_xds_client_trace)) {
1285
- char* status_details = grpc_slice_to_c_string(status_details_);
1286
- gpr_log(GPR_INFO,
1287
- "[xds_client %p] xds server %s: ADS call status received "
1288
- "(chand=%p, ads_calld=%p, call=%p): "
1289
- "status=%d, details='%s', error='%s'",
1290
- xds_client(), chand()->server_.server_uri.c_str(), chand(), this,
1291
- call_, status_code_, status_details,
1292
- grpc_error_std_string(error).c_str());
1293
- gpr_free(status_details);
1294
- }
1295
- // Ignore status from a stale call.
1296
- if (IsCurrentCallOnChannel()) {
1297
- // Try to restart the call.
1298
- parent_->OnCallFinishedLocked();
1299
- // Send error to all watchers.
1300
- xds_client()->NotifyOnErrorLocked(absl::UnavailableError(absl::StrFormat(
1301
- "xDS call failed: xDS server: %s, ADS call status code=%d, "
1302
- "details='%s', error='%s'",
1303
- chand()->server_.server_uri, status_code_,
1304
- StringViewFromSlice(status_details_), grpc_error_std_string(error))));
1142
+ MutexLock lock(&xds_client()->mu_);
1143
+ if (GRPC_TRACE_FLAG_ENABLED(grpc_xds_client_trace)) {
1144
+ gpr_log(GPR_INFO,
1145
+ "[xds_client %p] xds server %s: ADS call status received "
1146
+ "(chand=%p, ads_calld=%p, call=%p): %s",
1147
+ xds_client(), chand()->server_.server_uri().c_str(), chand(),
1148
+ this, call_.get(), status.ToString().c_str());
1149
+ }
1150
+ // Cancel any does-not-exist timers that may be pending.
1151
+ for (const auto& p : state_map_) {
1152
+ for (const auto& q : p.second.subscribed_resources) {
1153
+ for (auto& r : q.second) {
1154
+ r.second->MaybeCancelTimer();
1155
+ }
1156
+ }
1157
+ }
1158
+ // Ignore status from a stale call.
1159
+ if (IsCurrentCallOnChannel()) {
1160
+ // Try to restart the call.
1161
+ parent_->OnCallFinishedLocked();
1162
+ // If we didn't receive a response on the stream, report the
1163
+ // stream failure as a connectivity failure, which will report the
1164
+ // error to all watchers of resources on this channel.
1165
+ if (!seen_response_) {
1166
+ chand()->SetChannelStatusLocked(absl::UnavailableError(
1167
+ absl::StrCat("xDS call failed with no responses received; status: ",
1168
+ status.ToString())));
1169
+ }
1170
+ }
1305
1171
  }
1306
- GRPC_ERROR_UNREF(error);
1172
+ xds_client()->work_serializer_.DrainQueue();
1307
1173
  }
1308
1174
 
1309
1175
  bool XdsClient::ChannelState::AdsCallState::IsCurrentCallOnChannel() const {
1310
- // If the retryable ADS call is null (which only happens when the xds channel
1311
- // is shutting down), all the ADS calls are stale.
1176
+ // If the retryable ADS call is null (which only happens when the xds
1177
+ // channel is shutting down), all the ADS calls are stale.
1312
1178
  if (chand()->ads_calld_ == nullptr) return false;
1313
1179
  return this == chand()->ads_calld_->calld();
1314
1180
  }
@@ -1326,7 +1192,7 @@ XdsClient::ChannelState::AdsCallState::ResourceNamesForRequest(
1326
1192
  resource_names.emplace_back(XdsClient::ConstructFullXdsResourceName(
1327
1193
  authority, type->type_url(), resource_key));
1328
1194
  OrphanablePtr<ResourceTimer>& resource_timer = p.second;
1329
- resource_timer->MaybeStartTimer(Ref(DEBUG_LOCATION, "ResourceTimer"));
1195
+ resource_timer->MarkSubscriptionSendStarted();
1330
1196
  }
1331
1197
  }
1332
1198
  }
@@ -1338,38 +1204,35 @@ XdsClient::ChannelState::AdsCallState::ResourceNamesForRequest(
1338
1204
  //
1339
1205
 
1340
1206
  void XdsClient::ChannelState::LrsCallState::Reporter::Orphan() {
1341
- if (next_report_timer_callback_pending_) {
1342
- grpc_timer_cancel(&next_report_timer_);
1207
+ if (timer_handle_.has_value() &&
1208
+ xds_client()->engine()->Cancel(*timer_handle_)) {
1209
+ timer_handle_.reset();
1210
+ Unref(DEBUG_LOCATION, "Orphan");
1343
1211
  }
1344
1212
  }
1345
1213
 
1346
1214
  void XdsClient::ChannelState::LrsCallState::Reporter::
1347
1215
  ScheduleNextReportLocked() {
1348
- const Timestamp next_report_time = ExecCtx::Get()->Now() + report_interval_;
1349
- grpc_timer_init(&next_report_timer_, next_report_time,
1350
- &on_next_report_timer_);
1351
- next_report_timer_callback_pending_ = true;
1352
- }
1353
-
1354
- void XdsClient::ChannelState::LrsCallState::Reporter::OnNextReportTimer(
1355
- void* arg, grpc_error_handle error) {
1356
- Reporter* self = static_cast<Reporter*>(arg);
1357
- bool done;
1358
- {
1359
- MutexLock lock(&self->xds_client()->mu_);
1360
- done = self->OnNextReportTimerLocked(GRPC_ERROR_REF(error));
1361
- }
1362
- if (done) self->Unref(DEBUG_LOCATION, "Reporter+timer");
1216
+ if (GRPC_TRACE_FLAG_ENABLED(grpc_xds_client_trace)) {
1217
+ gpr_log(GPR_INFO,
1218
+ "[xds_client %p] xds server %s: scheduling load report timer",
1219
+ xds_client(), parent_->chand()->server_.server_uri().c_str());
1220
+ }
1221
+ timer_handle_ = xds_client()->engine()->RunAfter(report_interval_, [this]() {
1222
+ ApplicationCallbackExecCtx callback_exec_ctx;
1223
+ ExecCtx exec_ctx;
1224
+ if (OnNextReportTimer()) {
1225
+ Unref(DEBUG_LOCATION, "OnNextReportTimer()");
1226
+ }
1227
+ });
1363
1228
  }
1364
1229
 
1365
- bool XdsClient::ChannelState::LrsCallState::Reporter::OnNextReportTimerLocked(
1366
- grpc_error_handle error) {
1367
- next_report_timer_callback_pending_ = false;
1368
- if (error != GRPC_ERROR_NONE || !IsCurrentReporterOnCall()) {
1369
- GRPC_ERROR_UNREF(error);
1370
- return true;
1371
- }
1372
- return SendReportLocked();
1230
+ bool XdsClient::ChannelState::LrsCallState::Reporter::OnNextReportTimer() {
1231
+ MutexLock lock(&xds_client()->mu_);
1232
+ timer_handle_.reset();
1233
+ if (!IsCurrentReporterOnCall()) return true;
1234
+ SendReportLocked();
1235
+ return false;
1373
1236
  }
1374
1237
 
1375
1238
  namespace {
@@ -1400,7 +1263,7 @@ bool XdsClient::ChannelState::LrsCallState::Reporter::SendReportLocked() {
1400
1263
  last_report_counters_were_zero_ = LoadReportCountersAreZero(snapshot);
1401
1264
  if (old_val && last_report_counters_were_zero_) {
1402
1265
  auto it = xds_client()->xds_load_report_server_map_.find(
1403
- parent_->chand()->server_);
1266
+ &parent_->chand()->server_);
1404
1267
  if (it == xds_client()->xds_load_report_server_map_.end() ||
1405
1268
  it->second.load_report_map.empty()) {
1406
1269
  it->second.channel_state->StopLrsCallLocked();
@@ -1409,65 +1272,34 @@ bool XdsClient::ChannelState::LrsCallState::Reporter::SendReportLocked() {
1409
1272
  ScheduleNextReportLocked();
1410
1273
  return false;
1411
1274
  }
1412
- // Create a request that contains the snapshot.
1413
- grpc_slice request_payload_slice =
1275
+ // Send a request that contains the snapshot.
1276
+ std::string serialized_payload =
1414
1277
  xds_client()->api_.CreateLrsRequest(std::move(snapshot));
1415
- parent_->send_message_payload_ =
1416
- grpc_raw_byte_buffer_create(&request_payload_slice, 1);
1417
- grpc_slice_unref_internal(request_payload_slice);
1418
- // Send the report.
1419
- grpc_op op;
1420
- memset(&op, 0, sizeof(op));
1421
- op.op = GRPC_OP_SEND_MESSAGE;
1422
- op.data.send_message.send_message = parent_->send_message_payload_;
1423
- grpc_call_error call_error = grpc_call_start_batch_and_execute(
1424
- parent_->call_, &op, 1, &on_report_done_);
1425
- if (GPR_UNLIKELY(call_error != GRPC_CALL_OK)) {
1426
- gpr_log(GPR_ERROR,
1427
- "[xds_client %p] xds server %s: error starting LRS send_message "
1428
- "batch on calld=%p: call_error=%d",
1429
- xds_client(), parent_->chand()->server_.server_uri.c_str(), this,
1430
- call_error);
1431
- GPR_ASSERT(GRPC_CALL_OK == call_error);
1432
- }
1278
+ parent_->call_->SendMessage(std::move(serialized_payload));
1279
+ parent_->send_message_pending_ = true;
1433
1280
  return false;
1434
1281
  }
1435
1282
 
1436
- void XdsClient::ChannelState::LrsCallState::Reporter::OnReportDone(
1437
- void* arg, grpc_error_handle error) {
1438
- Reporter* self = static_cast<Reporter*>(arg);
1439
- bool done;
1440
- {
1441
- MutexLock lock(&self->xds_client()->mu_);
1442
- done = self->OnReportDoneLocked(GRPC_ERROR_REF(error));
1443
- }
1444
- if (done) self->Unref(DEBUG_LOCATION, "Reporter+report_done");
1445
- }
1446
-
1447
- bool XdsClient::ChannelState::LrsCallState::Reporter::OnReportDoneLocked(
1448
- grpc_error_handle error) {
1449
- grpc_byte_buffer_destroy(parent_->send_message_payload_);
1450
- parent_->send_message_payload_ = nullptr;
1283
+ void XdsClient::ChannelState::LrsCallState::Reporter::OnReportDoneLocked() {
1284
+ // If a reporter starts a send_message op, then the reporting interval
1285
+ // changes and we destroy that reporter and create a new one, and then
1286
+ // the send_message op started by the old reporter finishes, this
1287
+ // method will be called even though it was for a completion started
1288
+ // by the old reporter. In that case, the timer will be pending, so
1289
+ // we just ignore the completion and wait for the timer to fire.
1290
+ if (timer_handle_.has_value()) return;
1451
1291
  // If there are no more registered stats to report, cancel the call.
1452
- auto it =
1453
- xds_client()->xds_load_report_server_map_.find(parent_->chand()->server_);
1454
- if (it == xds_client()->xds_load_report_server_map_.end() ||
1455
- it->second.load_report_map.empty()) {
1456
- it->second.channel_state->StopLrsCallLocked();
1457
- GRPC_ERROR_UNREF(error);
1458
- return true;
1459
- }
1460
- if (error != GRPC_ERROR_NONE || !IsCurrentReporterOnCall()) {
1461
- GRPC_ERROR_UNREF(error);
1462
- // If this reporter is no longer the current one on the call, the reason
1463
- // might be that it was orphaned for a new one due to config update.
1464
- if (!IsCurrentReporterOnCall()) {
1465
- parent_->MaybeStartReportingLocked();
1292
+ auto it = xds_client()->xds_load_report_server_map_.find(
1293
+ &parent_->chand()->server_);
1294
+ if (it == xds_client()->xds_load_report_server_map_.end()) return;
1295
+ if (it->second.load_report_map.empty()) {
1296
+ if (it->second.channel_state != nullptr) {
1297
+ it->second.channel_state->StopLrsCallLocked();
1466
1298
  }
1467
- return true;
1299
+ return;
1468
1300
  }
1301
+ // Otherwise, schedule the next load report.
1469
1302
  ScheduleNextReportLocked();
1470
- return false;
1471
1303
  }
1472
1304
 
1473
1305
  //
@@ -1486,123 +1318,41 @@ XdsClient::ChannelState::LrsCallState::LrsCallState(
1486
1318
  // the polling entities from client_channel.
1487
1319
  GPR_ASSERT(xds_client() != nullptr);
1488
1320
  const char* method =
1489
- chand()->server_.ShouldUseV3()
1490
- ? "/envoy.service.load_stats.v3.LoadReportingService/StreamLoadStats"
1491
- : "/envoy.service.load_stats.v2.LoadReportingService/StreamLoadStats";
1492
- call_ = grpc_channel_create_pollset_set_call(
1493
- chand()->channel_, nullptr, GRPC_PROPAGATE_DEFAULTS,
1494
- xds_client()->interested_parties_,
1495
- Slice::FromStaticString(method).c_slice(), nullptr,
1496
- Timestamp::InfFuture(), nullptr);
1321
+ "/envoy.service.load_stats.v3.LoadReportingService/StreamLoadStats";
1322
+ call_ = chand()->transport_->CreateStreamingCall(
1323
+ method, std::make_unique<StreamEventHandler>(
1324
+ // Passing the initial ref here. This ref will go away when
1325
+ // the StreamEventHandler is destroyed.
1326
+ RefCountedPtr<LrsCallState>(this)));
1497
1327
  GPR_ASSERT(call_ != nullptr);
1498
- // Init the request payload.
1499
- grpc_slice request_payload_slice =
1500
- xds_client()->api_.CreateLrsInitialRequest(chand()->server_);
1501
- send_message_payload_ =
1502
- grpc_raw_byte_buffer_create(&request_payload_slice, 1);
1503
- grpc_slice_unref_internal(request_payload_slice);
1504
- // Init other data associated with the LRS call.
1505
- grpc_metadata_array_init(&initial_metadata_recv_);
1506
- grpc_metadata_array_init(&trailing_metadata_recv_);
1507
1328
  // Start the call.
1508
1329
  if (GRPC_TRACE_FLAG_ENABLED(grpc_xds_client_trace)) {
1509
- gpr_log(
1510
- GPR_INFO,
1511
- "[xds_client %p] xds server %s: starting LRS call (calld=%p, call=%p)",
1512
- xds_client(), chand()->server_.server_uri.c_str(), this, call_);
1513
- }
1514
- // Create the ops.
1515
- grpc_call_error call_error;
1516
- grpc_op ops[3];
1517
- memset(ops, 0, sizeof(ops));
1518
- // Op: send initial metadata.
1519
- grpc_op* op = ops;
1520
- op->op = GRPC_OP_SEND_INITIAL_METADATA;
1521
- op->data.send_initial_metadata.count = 0;
1522
- op->flags = GRPC_INITIAL_METADATA_WAIT_FOR_READY |
1523
- GRPC_INITIAL_METADATA_WAIT_FOR_READY_EXPLICITLY_SET;
1524
- op->reserved = nullptr;
1525
- op++;
1526
- // Op: send request message.
1527
- GPR_ASSERT(send_message_payload_ != nullptr);
1528
- op->op = GRPC_OP_SEND_MESSAGE;
1529
- op->data.send_message.send_message = send_message_payload_;
1530
- op->flags = 0;
1531
- op->reserved = nullptr;
1532
- op++;
1533
- Ref(DEBUG_LOCATION, "LRS+OnInitialRequestSentLocked").release();
1534
- GRPC_CLOSURE_INIT(&on_initial_request_sent_, OnInitialRequestSent, this,
1535
- grpc_schedule_on_exec_ctx);
1536
- call_error = grpc_call_start_batch_and_execute(
1537
- call_, ops, static_cast<size_t>(op - ops), &on_initial_request_sent_);
1538
- GPR_ASSERT(GRPC_CALL_OK == call_error);
1539
- // Op: recv initial metadata.
1540
- op = ops;
1541
- op->op = GRPC_OP_RECV_INITIAL_METADATA;
1542
- op->data.recv_initial_metadata.recv_initial_metadata =
1543
- &initial_metadata_recv_;
1544
- op->flags = 0;
1545
- op->reserved = nullptr;
1546
- op++;
1547
- // Op: recv response.
1548
- op->op = GRPC_OP_RECV_MESSAGE;
1549
- op->data.recv_message.recv_message = &recv_message_payload_;
1550
- op->flags = 0;
1551
- op->reserved = nullptr;
1552
- op++;
1553
- Ref(DEBUG_LOCATION, "LRS+OnResponseReceivedLocked").release();
1554
- GRPC_CLOSURE_INIT(&on_response_received_, OnResponseReceived, this,
1555
- grpc_schedule_on_exec_ctx);
1556
- call_error = grpc_call_start_batch_and_execute(
1557
- call_, ops, static_cast<size_t>(op - ops), &on_response_received_);
1558
- GPR_ASSERT(GRPC_CALL_OK == call_error);
1559
- // Op: recv server status.
1560
- op = ops;
1561
- op->op = GRPC_OP_RECV_STATUS_ON_CLIENT;
1562
- op->data.recv_status_on_client.trailing_metadata = &trailing_metadata_recv_;
1563
- op->data.recv_status_on_client.status = &status_code_;
1564
- op->data.recv_status_on_client.status_details = &status_details_;
1565
- op->flags = 0;
1566
- op->reserved = nullptr;
1567
- op++;
1568
- // This callback signals the end of the call, so it relies on the initial
1569
- // ref instead of a new ref. When it's invoked, it's the initial ref that is
1570
- // unreffed.
1571
- GRPC_CLOSURE_INIT(&on_status_received_, OnStatusReceived, this,
1572
- grpc_schedule_on_exec_ctx);
1573
- call_error = grpc_call_start_batch_and_execute(
1574
- call_, ops, static_cast<size_t>(op - ops), &on_status_received_);
1575
- GPR_ASSERT(GRPC_CALL_OK == call_error);
1576
- }
1577
-
1578
- XdsClient::ChannelState::LrsCallState::~LrsCallState() {
1579
- grpc_metadata_array_destroy(&initial_metadata_recv_);
1580
- grpc_metadata_array_destroy(&trailing_metadata_recv_);
1581
- grpc_byte_buffer_destroy(send_message_payload_);
1582
- grpc_byte_buffer_destroy(recv_message_payload_);
1583
- grpc_slice_unref_internal(status_details_);
1584
- GPR_ASSERT(call_ != nullptr);
1585
- grpc_call_unref(call_);
1330
+ gpr_log(GPR_INFO,
1331
+ "[xds_client %p] xds server %s: starting LRS call (calld=%p, "
1332
+ "call=%p)",
1333
+ xds_client(), chand()->server_.server_uri().c_str(), this,
1334
+ call_.get());
1335
+ }
1336
+ // Send the initial request.
1337
+ std::string serialized_payload = xds_client()->api_.CreateLrsInitialRequest();
1338
+ call_->SendMessage(std::move(serialized_payload));
1339
+ send_message_pending_ = true;
1586
1340
  }
1587
1341
 
1588
1342
  void XdsClient::ChannelState::LrsCallState::Orphan() {
1589
1343
  reporter_.reset();
1590
- GPR_ASSERT(call_ != nullptr);
1591
- // If we are here because xds_client wants to cancel the call,
1592
- // on_status_received_ will complete the cancellation and clean up. Otherwise,
1593
- // we are here because xds_client has to orphan a failed call, then the
1594
- // following cancellation will be a no-op.
1595
- grpc_call_cancel_internal(call_);
1596
- // Note that the initial ref is hold by on_status_received_. So the
1597
- // corresponding unref happens in on_status_received_ instead of here.
1344
+ // Note that the initial ref is held by the StreamEventHandler, which
1345
+ // will be destroyed when call_ is destroyed, which may not happen
1346
+ // here, since there may be other refs held to call_ by internal callbacks.
1347
+ call_.reset();
1598
1348
  }
1599
1349
 
1600
1350
  void XdsClient::ChannelState::LrsCallState::MaybeStartReportingLocked() {
1601
1351
  // Don't start again if already started.
1602
1352
  if (reporter_ != nullptr) return;
1603
- // Don't start if the previous send_message op (of the initial request or the
1604
- // last report of the previous reporter) hasn't completed.
1605
- if (send_message_payload_ != nullptr) return;
1353
+ // Don't start if the previous send_message op (of the initial request or
1354
+ // the last report of the previous reporter) hasn't completed.
1355
+ if (call_ != nullptr && send_message_pending_) return;
1606
1356
  // Don't start if no LRS response has arrived.
1607
1357
  if (!seen_response()) return;
1608
1358
  // Don't start if the ADS call hasn't received any valid response. Note that
@@ -1614,170 +1364,113 @@ void XdsClient::ChannelState::LrsCallState::MaybeStartReportingLocked() {
1614
1364
  return;
1615
1365
  }
1616
1366
  // Start reporting.
1367
+ if (GRPC_TRACE_FLAG_ENABLED(grpc_xds_client_trace)) {
1368
+ gpr_log(GPR_INFO, "[xds_client %p] xds server %s: creating load reporter",
1369
+ xds_client(), chand()->server_.server_uri().c_str());
1370
+ }
1617
1371
  reporter_ = MakeOrphanable<Reporter>(
1618
1372
  Ref(DEBUG_LOCATION, "LRS+load_report+start"), load_reporting_interval_);
1619
1373
  }
1620
1374
 
1621
- void XdsClient::ChannelState::LrsCallState::OnInitialRequestSent(
1622
- void* arg, grpc_error_handle /*error*/) {
1623
- LrsCallState* lrs_calld = static_cast<LrsCallState*>(arg);
1624
- {
1625
- MutexLock lock(&lrs_calld->xds_client()->mu_);
1626
- lrs_calld->OnInitialRequestSentLocked();
1375
+ void XdsClient::ChannelState::LrsCallState::OnRequestSent(bool /*ok*/) {
1376
+ MutexLock lock(&xds_client()->mu_);
1377
+ send_message_pending_ = false;
1378
+ if (reporter_ != nullptr) {
1379
+ reporter_->OnReportDoneLocked();
1380
+ } else {
1381
+ MaybeStartReportingLocked();
1627
1382
  }
1628
- lrs_calld->Unref(DEBUG_LOCATION, "LRS+OnInitialRequestSentLocked");
1629
- }
1630
-
1631
- void XdsClient::ChannelState::LrsCallState::OnInitialRequestSentLocked() {
1632
- // Clear the send_message_payload_.
1633
- grpc_byte_buffer_destroy(send_message_payload_);
1634
- send_message_payload_ = nullptr;
1635
- MaybeStartReportingLocked();
1636
1383
  }
1637
1384
 
1638
- void XdsClient::ChannelState::LrsCallState::OnResponseReceived(
1639
- void* arg, grpc_error_handle /*error*/) {
1640
- LrsCallState* lrs_calld = static_cast<LrsCallState*>(arg);
1641
- bool done;
1642
- {
1643
- MutexLock lock(&lrs_calld->xds_client()->mu_);
1644
- done = lrs_calld->OnResponseReceivedLocked();
1645
- }
1646
- if (done) lrs_calld->Unref(DEBUG_LOCATION, "LRS+OnResponseReceivedLocked");
1647
- }
1648
-
1649
- bool XdsClient::ChannelState::LrsCallState::OnResponseReceivedLocked() {
1650
- // Empty payload means the call was cancelled.
1651
- if (!IsCurrentCallOnChannel() || recv_message_payload_ == nullptr) {
1652
- return true;
1653
- }
1654
- // Read the response.
1655
- grpc_byte_buffer_reader bbr;
1656
- grpc_byte_buffer_reader_init(&bbr, recv_message_payload_);
1657
- grpc_slice response_slice = grpc_byte_buffer_reader_readall(&bbr);
1658
- grpc_byte_buffer_reader_destroy(&bbr);
1659
- grpc_byte_buffer_destroy(recv_message_payload_);
1660
- recv_message_payload_ = nullptr;
1661
- // This anonymous lambda is a hack to avoid the usage of goto.
1662
- [&]() {
1663
- // Parse the response.
1664
- bool send_all_clusters = false;
1665
- std::set<std::string> new_cluster_names;
1666
- Duration new_load_reporting_interval;
1667
- grpc_error_handle parse_error = xds_client()->api_.ParseLrsResponse(
1668
- response_slice, &send_all_clusters, &new_cluster_names,
1669
- &new_load_reporting_interval);
1670
- if (parse_error != GRPC_ERROR_NONE) {
1671
- gpr_log(GPR_ERROR,
1672
- "[xds_client %p] xds server %s: LRS response parsing failed: %s",
1673
- xds_client(), chand()->server_.server_uri.c_str(),
1674
- grpc_error_std_string(parse_error).c_str());
1675
- GRPC_ERROR_UNREF(parse_error);
1676
- return;
1385
+ void XdsClient::ChannelState::LrsCallState::OnRecvMessage(
1386
+ absl::string_view payload) {
1387
+ MutexLock lock(&xds_client()->mu_);
1388
+ // If we're no longer the current call, ignore the result.
1389
+ if (!IsCurrentCallOnChannel()) return;
1390
+ // Parse the response.
1391
+ bool send_all_clusters = false;
1392
+ std::set<std::string> new_cluster_names;
1393
+ Duration new_load_reporting_interval;
1394
+ absl::Status status = xds_client()->api_.ParseLrsResponse(
1395
+ payload, &send_all_clusters, &new_cluster_names,
1396
+ &new_load_reporting_interval);
1397
+ if (!status.ok()) {
1398
+ gpr_log(GPR_ERROR,
1399
+ "[xds_client %p] xds server %s: LRS response parsing failed: %s",
1400
+ xds_client(), chand()->server_.server_uri().c_str(),
1401
+ status.ToString().c_str());
1402
+ return;
1403
+ }
1404
+ seen_response_ = true;
1405
+ if (GRPC_TRACE_FLAG_ENABLED(grpc_xds_client_trace)) {
1406
+ gpr_log(
1407
+ GPR_INFO,
1408
+ "[xds_client %p] xds server %s: LRS response received, %" PRIuPTR
1409
+ " cluster names, send_all_clusters=%d, load_report_interval=%" PRId64
1410
+ "ms",
1411
+ xds_client(), chand()->server_.server_uri().c_str(),
1412
+ new_cluster_names.size(), send_all_clusters,
1413
+ new_load_reporting_interval.millis());
1414
+ size_t i = 0;
1415
+ for (const auto& name : new_cluster_names) {
1416
+ gpr_log(GPR_INFO, "[xds_client %p] cluster_name %" PRIuPTR ": %s",
1417
+ xds_client(), i++, name.c_str());
1677
1418
  }
1678
- seen_response_ = true;
1419
+ }
1420
+ if (new_load_reporting_interval <
1421
+ Duration::Milliseconds(GRPC_XDS_MIN_CLIENT_LOAD_REPORTING_INTERVAL_MS)) {
1422
+ new_load_reporting_interval =
1423
+ Duration::Milliseconds(GRPC_XDS_MIN_CLIENT_LOAD_REPORTING_INTERVAL_MS);
1679
1424
  if (GRPC_TRACE_FLAG_ENABLED(grpc_xds_client_trace)) {
1680
- gpr_log(
1681
- GPR_INFO,
1682
- "[xds_client %p] xds server %s: LRS response received, %" PRIuPTR
1683
- " cluster names, send_all_clusters=%d, load_report_interval=%" PRId64
1684
- "ms",
1685
- xds_client(), chand()->server_.server_uri.c_str(),
1686
- new_cluster_names.size(), send_all_clusters,
1687
- new_load_reporting_interval.millis());
1688
- size_t i = 0;
1689
- for (const auto& name : new_cluster_names) {
1690
- gpr_log(GPR_INFO, "[xds_client %p] cluster_name %" PRIuPTR ": %s",
1691
- xds_client(), i++, name.c_str());
1692
- }
1693
- }
1694
- if (new_load_reporting_interval <
1695
- Duration::Milliseconds(
1696
- GRPC_XDS_MIN_CLIENT_LOAD_REPORTING_INTERVAL_MS)) {
1697
- new_load_reporting_interval = Duration::Milliseconds(
1698
- GRPC_XDS_MIN_CLIENT_LOAD_REPORTING_INTERVAL_MS);
1699
- if (GRPC_TRACE_FLAG_ENABLED(grpc_xds_client_trace)) {
1700
- gpr_log(GPR_INFO,
1701
- "[xds_client %p] xds server %s: increased load_report_interval "
1702
- "to minimum value %dms",
1703
- xds_client(), chand()->server_.server_uri.c_str(),
1704
- GRPC_XDS_MIN_CLIENT_LOAD_REPORTING_INTERVAL_MS);
1705
- }
1425
+ gpr_log(GPR_INFO,
1426
+ "[xds_client %p] xds server %s: increased load_report_interval "
1427
+ "to minimum value %dms",
1428
+ xds_client(), chand()->server_.server_uri().c_str(),
1429
+ GRPC_XDS_MIN_CLIENT_LOAD_REPORTING_INTERVAL_MS);
1706
1430
  }
1707
- // Ignore identical update.
1708
- if (send_all_clusters == send_all_clusters_ &&
1709
- cluster_names_ == new_cluster_names &&
1710
- load_reporting_interval_ == new_load_reporting_interval) {
1711
- if (GRPC_TRACE_FLAG_ENABLED(grpc_xds_client_trace)) {
1712
- gpr_log(
1713
- GPR_INFO,
1714
- "[xds_client %p] xds server %s: incoming LRS response identical "
1715
- "to current, ignoring.",
1716
- xds_client(), chand()->server_.server_uri.c_str());
1717
- }
1718
- return;
1431
+ }
1432
+ // Ignore identical update.
1433
+ if (send_all_clusters == send_all_clusters_ &&
1434
+ cluster_names_ == new_cluster_names &&
1435
+ load_reporting_interval_ == new_load_reporting_interval) {
1436
+ if (GRPC_TRACE_FLAG_ENABLED(grpc_xds_client_trace)) {
1437
+ gpr_log(GPR_INFO,
1438
+ "[xds_client %p] xds server %s: incoming LRS response identical "
1439
+ "to current, ignoring.",
1440
+ xds_client(), chand()->server_.server_uri().c_str());
1719
1441
  }
1720
- // Stop current load reporting (if any) to adopt the new config.
1721
- reporter_.reset();
1722
- // Record the new config.
1723
- send_all_clusters_ = send_all_clusters;
1724
- cluster_names_ = std::move(new_cluster_names);
1725
- load_reporting_interval_ = new_load_reporting_interval;
1726
- // Try starting sending load report.
1727
- MaybeStartReportingLocked();
1728
- }();
1729
- grpc_slice_unref_internal(response_slice);
1730
- if (xds_client()->shutting_down_) return true;
1731
- // Keep listening for LRS config updates.
1732
- grpc_op op;
1733
- memset(&op, 0, sizeof(op));
1734
- op.op = GRPC_OP_RECV_MESSAGE;
1735
- op.data.recv_message.recv_message = &recv_message_payload_;
1736
- op.flags = 0;
1737
- op.reserved = nullptr;
1738
- GPR_ASSERT(call_ != nullptr);
1739
- // Reuse the "OnResponseReceivedLocked" ref taken in ctor.
1740
- const grpc_call_error call_error =
1741
- grpc_call_start_batch_and_execute(call_, &op, 1, &on_response_received_);
1742
- GPR_ASSERT(GRPC_CALL_OK == call_error);
1743
- return false;
1744
- }
1745
-
1746
- void XdsClient::ChannelState::LrsCallState::OnStatusReceived(
1747
- void* arg, grpc_error_handle error) {
1748
- LrsCallState* lrs_calld = static_cast<LrsCallState*>(arg);
1749
- {
1750
- MutexLock lock(&lrs_calld->xds_client()->mu_);
1751
- lrs_calld->OnStatusReceivedLocked(GRPC_ERROR_REF(error));
1442
+ return;
1752
1443
  }
1753
- lrs_calld->Unref(DEBUG_LOCATION, "LRS+OnStatusReceivedLocked");
1444
+ // Stop current load reporting (if any) to adopt the new config.
1445
+ reporter_.reset();
1446
+ // Record the new config.
1447
+ send_all_clusters_ = send_all_clusters;
1448
+ cluster_names_ = std::move(new_cluster_names);
1449
+ load_reporting_interval_ = new_load_reporting_interval;
1450
+ // Try starting sending load report.
1451
+ MaybeStartReportingLocked();
1754
1452
  }
1755
1453
 
1756
- void XdsClient::ChannelState::LrsCallState::OnStatusReceivedLocked(
1757
- grpc_error_handle error) {
1758
- GPR_ASSERT(call_ != nullptr);
1454
+ void XdsClient::ChannelState::LrsCallState::OnStatusReceived(
1455
+ absl::Status status) {
1456
+ MutexLock lock(&xds_client()->mu_);
1759
1457
  if (GRPC_TRACE_FLAG_ENABLED(grpc_xds_client_trace)) {
1760
- char* status_details = grpc_slice_to_c_string(status_details_);
1761
1458
  gpr_log(GPR_INFO,
1762
1459
  "[xds_client %p] xds server %s: LRS call status received "
1763
- "(chand=%p, calld=%p, call=%p): "
1764
- "status=%d, details='%s', error='%s'",
1765
- xds_client(), chand()->server_.server_uri.c_str(), chand(), this,
1766
- call_, status_code_, status_details,
1767
- grpc_error_std_string(error).c_str());
1768
- gpr_free(status_details);
1460
+ "(chand=%p, calld=%p, call=%p): %s",
1461
+ xds_client(), chand()->server_.server_uri().c_str(), chand(), this,
1462
+ call_.get(), status.ToString().c_str());
1769
1463
  }
1770
1464
  // Ignore status from a stale call.
1771
1465
  if (IsCurrentCallOnChannel()) {
1772
1466
  // Try to restart the call.
1773
1467
  parent_->OnCallFinishedLocked();
1774
1468
  }
1775
- GRPC_ERROR_UNREF(error);
1776
1469
  }
1777
1470
 
1778
1471
  bool XdsClient::ChannelState::LrsCallState::IsCurrentCallOnChannel() const {
1779
- // If the retryable LRS call is null (which only happens when the xds channel
1780
- // is shutting down), all the LRS calls are stale.
1472
+ // If the retryable LRS call is null (which only happens when the xds
1473
+ // channel is shutting down), all the LRS calls are stale.
1781
1474
  if (chand()->lrs_calld_ == nullptr) return false;
1782
1475
  return this == chand()->lrs_calld_->calld();
1783
1476
  }
@@ -1786,86 +1479,66 @@ bool XdsClient::ChannelState::LrsCallState::IsCurrentCallOnChannel() const {
1786
1479
  // XdsClient
1787
1480
  //
1788
1481
 
1789
- namespace {
1790
-
1791
- Duration GetRequestTimeout(const grpc_channel_args* args) {
1792
- return Duration::Milliseconds(grpc_channel_args_find_integer(
1793
- args, GRPC_ARG_XDS_RESOURCE_DOES_NOT_EXIST_TIMEOUT_MS,
1794
- {15000, 0, INT_MAX}));
1795
- }
1796
-
1797
- grpc_channel_args* ModifyChannelArgs(const grpc_channel_args* args) {
1798
- absl::InlinedVector<grpc_arg, 1> args_to_add = {
1799
- grpc_channel_arg_integer_create(
1800
- const_cast<char*>(GRPC_ARG_KEEPALIVE_TIME_MS),
1801
- 5 * 60 * GPR_MS_PER_SEC),
1802
- };
1803
- return grpc_channel_args_copy_and_add(args, args_to_add.data(),
1804
- args_to_add.size());
1805
- }
1806
-
1807
- } // namespace
1808
-
1809
- XdsClient::XdsClient(std::unique_ptr<XdsBootstrap> bootstrap,
1810
- const grpc_channel_args* args)
1482
+ XdsClient::XdsClient(
1483
+ std::unique_ptr<XdsBootstrap> bootstrap,
1484
+ OrphanablePtr<XdsTransportFactory> transport_factory,
1485
+ std::shared_ptr<grpc_event_engine::experimental::EventEngine> engine,
1486
+ std::string user_agent_name, std::string user_agent_version,
1487
+ Duration resource_request_timeout)
1811
1488
  : DualRefCounted<XdsClient>(
1812
1489
  GRPC_TRACE_FLAG_ENABLED(grpc_xds_client_refcount_trace) ? "XdsClient"
1813
1490
  : nullptr),
1814
1491
  bootstrap_(std::move(bootstrap)),
1815
- args_(ModifyChannelArgs(args)),
1816
- request_timeout_(GetRequestTimeout(args)),
1492
+ transport_factory_(std::move(transport_factory)),
1493
+ request_timeout_(resource_request_timeout),
1817
1494
  xds_federation_enabled_(XdsFederationEnabled()),
1818
- interested_parties_(grpc_pollset_set_create()),
1819
- certificate_provider_store_(MakeOrphanable<CertificateProviderStore>(
1820
- bootstrap_->certificate_providers())),
1821
- api_(this, &grpc_xds_client_trace, bootstrap_->node(),
1822
- &bootstrap_->certificate_providers(), &symtab_) {
1495
+ api_(this, &grpc_xds_client_trace, bootstrap_->node(), &symtab_,
1496
+ std::move(user_agent_name), std::move(user_agent_version)),
1497
+ engine_(std::move(engine)) {
1823
1498
  if (GRPC_TRACE_FLAG_ENABLED(grpc_xds_client_trace)) {
1824
1499
  gpr_log(GPR_INFO, "[xds_client %p] creating xds client", this);
1825
1500
  }
1826
- // Calling grpc_init to ensure gRPC does not shut down until the XdsClient is
1827
- // destroyed.
1828
- grpc_init();
1501
+ GPR_ASSERT(bootstrap_ != nullptr);
1502
+ if (bootstrap_->node() != nullptr) {
1503
+ gpr_log(GPR_INFO, "[xds_client %p] xDS node ID: %s", this,
1504
+ bootstrap_->node()->id().c_str());
1505
+ }
1829
1506
  }
1830
1507
 
1831
1508
  XdsClient::~XdsClient() {
1832
1509
  if (GRPC_TRACE_FLAG_ENABLED(grpc_xds_client_trace)) {
1833
1510
  gpr_log(GPR_INFO, "[xds_client %p] destroying xds client", this);
1834
1511
  }
1835
- grpc_channel_args_destroy(args_);
1836
- grpc_pollset_set_destroy(interested_parties_);
1837
- // Calling grpc_shutdown to ensure gRPC does not shut down until the XdsClient
1838
- // is destroyed.
1839
- grpc_shutdown();
1840
1512
  }
1841
1513
 
1842
1514
  void XdsClient::Orphan() {
1843
1515
  if (GRPC_TRACE_FLAG_ENABLED(grpc_xds_client_trace)) {
1844
1516
  gpr_log(GPR_INFO, "[xds_client %p] shutting down xds client", this);
1845
1517
  }
1846
- {
1847
- MutexLock lock(g_mu);
1848
- if (g_xds_client == this) g_xds_client = nullptr;
1849
- }
1850
- {
1851
- MutexLock lock(&mu_);
1852
- shutting_down_ = true;
1853
- // Clear cache and any remaining watchers that may not have been cancelled.
1854
- authority_state_map_.clear();
1855
- invalid_watchers_.clear();
1518
+ MutexLock lock(&mu_);
1519
+ shutting_down_ = true;
1520
+ // Clear cache and any remaining watchers that may not have been cancelled.
1521
+ authority_state_map_.clear();
1522
+ invalid_watchers_.clear();
1523
+ // We may still be sending lingering queued load report data, so don't
1524
+ // just clear the load reporting map, but we do want to clear the refs
1525
+ // we're holding to the ChannelState objects, to make sure that
1526
+ // everything shuts down properly.
1527
+ for (auto& p : xds_load_report_server_map_) {
1528
+ p.second.channel_state.reset(DEBUG_LOCATION, "XdsClient::Orphan()");
1856
1529
  }
1857
1530
  }
1858
1531
 
1859
1532
  RefCountedPtr<XdsClient::ChannelState> XdsClient::GetOrCreateChannelStateLocked(
1860
- const XdsBootstrap::XdsServer& server) {
1861
- auto it = xds_server_channel_map_.find(server);
1533
+ const XdsBootstrap::XdsServer& server, const char* reason) {
1534
+ auto it = xds_server_channel_map_.find(&server);
1862
1535
  if (it != xds_server_channel_map_.end()) {
1863
- return it->second->Ref(DEBUG_LOCATION, "Authority");
1536
+ return it->second->Ref(DEBUG_LOCATION, reason);
1864
1537
  }
1865
1538
  // Channel not found, so create a new one.
1866
1539
  auto channel_state = MakeRefCounted<ChannelState>(
1867
1540
  WeakRef(DEBUG_LOCATION, "ChannelState"), server);
1868
- xds_server_channel_map_[server] = channel_state.get();
1541
+ xds_server_channel_map_[&server] = channel_state.get();
1869
1542
  return channel_state;
1870
1543
  }
1871
1544
 
@@ -1881,17 +1554,16 @@ void XdsClient::WatchResource(const XdsResourceType* type,
1881
1554
  invalid_watchers_[w] = watcher;
1882
1555
  }
1883
1556
  work_serializer_.Run(
1884
- // TODO(yashykt): When we move to C++14, capture watcher using
1885
- // std::move()
1886
- [watcher, status]() ABSL_EXCLUSIVE_LOCKS_REQUIRED(&work_serializer_) {
1887
- watcher->OnError(status);
1888
- },
1557
+ [watcher = std::move(watcher), status = std::move(status)]()
1558
+ ABSL_EXCLUSIVE_LOCKS_REQUIRED(&work_serializer_) {
1559
+ watcher->OnError(status);
1560
+ },
1889
1561
  DEBUG_LOCATION);
1890
1562
  };
1891
1563
  auto resource_name = ParseXdsResourceName(name, type);
1892
1564
  if (!resource_name.ok()) {
1893
- fail(absl::UnavailableError(absl::StrFormat(
1894
- "Unable to parse resource name for listener %s", name)));
1565
+ fail(absl::UnavailableError(
1566
+ absl::StrCat("Unable to parse resource name ", name)));
1895
1567
  return;
1896
1568
  }
1897
1569
  // Find server to use.
@@ -1905,11 +1577,17 @@ void XdsClient::WatchResource(const XdsResourceType* type,
1905
1577
  "\" not present in bootstrap config")));
1906
1578
  return;
1907
1579
  }
1908
- if (!authority->xds_servers.empty()) {
1909
- xds_server = &authority->xds_servers[0];
1910
- }
1580
+ xds_server = authority->server();
1911
1581
  }
1912
1582
  if (xds_server == nullptr) xds_server = &bootstrap_->server();
1583
+ // Canonify the xDS server instance, so that we make sure we're using
1584
+ // the same instance as will be used in AddClusterDropStats() and
1585
+ // AddClusterLocalityStats(). This may yield a different result than
1586
+ // the logic above if the same server is listed both in the authority
1587
+ // and as the top-level server.
1588
+ // TODO(roth): This is really ugly -- need to find a better way to
1589
+ // index the xDS server than by address here.
1590
+ xds_server = bootstrap_->FindXdsServer(*xds_server);
1913
1591
  {
1914
1592
  MutexLock lock(&mu_);
1915
1593
  MaybeRegisterResourceTypeLocked(type);
@@ -1933,12 +1611,60 @@ void XdsClient::WatchResource(const XdsResourceType* type,
1933
1611
  delete value;
1934
1612
  },
1935
1613
  DEBUG_LOCATION);
1614
+ } else if (resource_state.meta.client_status ==
1615
+ XdsApi::ResourceMetadata::DOES_NOT_EXIST) {
1616
+ if (GRPC_TRACE_FLAG_ENABLED(grpc_xds_client_trace)) {
1617
+ gpr_log(GPR_INFO,
1618
+ "[xds_client %p] reporting cached does-not-exist for %s", this,
1619
+ std::string(name).c_str());
1620
+ }
1621
+ work_serializer_.Schedule(
1622
+ [watcher]() ABSL_EXCLUSIVE_LOCKS_REQUIRED(&work_serializer_) {
1623
+ watcher->OnResourceDoesNotExist();
1624
+ },
1625
+ DEBUG_LOCATION);
1626
+ } else if (resource_state.meta.client_status ==
1627
+ XdsApi::ResourceMetadata::NACKED) {
1628
+ if (GRPC_TRACE_FLAG_ENABLED(grpc_xds_client_trace)) {
1629
+ gpr_log(
1630
+ GPR_INFO,
1631
+ "[xds_client %p] reporting cached validation failure for %s: %s",
1632
+ this, std::string(name).c_str(),
1633
+ resource_state.meta.failed_details.c_str());
1634
+ }
1635
+ std::string details = resource_state.meta.failed_details;
1636
+ const auto* node = bootstrap_->node();
1637
+ if (node != nullptr) {
1638
+ absl::StrAppend(&details, " (node ID:", bootstrap_->node()->id(), ")");
1639
+ }
1640
+ work_serializer_.Schedule(
1641
+ [watcher, details = std::move(details)]()
1642
+ ABSL_EXCLUSIVE_LOCKS_REQUIRED(&work_serializer_) {
1643
+ watcher->OnError(absl::UnavailableError(
1644
+ absl::StrCat("invalid resource: ", details)));
1645
+ },
1646
+ DEBUG_LOCATION);
1936
1647
  }
1937
1648
  // If the authority doesn't yet have a channel, set it, creating it if
1938
1649
  // needed.
1939
1650
  if (authority_state.channel_state == nullptr) {
1940
1651
  authority_state.channel_state =
1941
- GetOrCreateChannelStateLocked(*xds_server);
1652
+ GetOrCreateChannelStateLocked(*xds_server, "start watch");
1653
+ }
1654
+ absl::Status channel_status = authority_state.channel_state->status();
1655
+ if (!channel_status.ok()) {
1656
+ if (GRPC_TRACE_FLAG_ENABLED(grpc_xds_client_trace)) {
1657
+ gpr_log(GPR_INFO,
1658
+ "[xds_client %p] returning cached channel error for %s: %s",
1659
+ this, std::string(name).c_str(),
1660
+ channel_status.ToString().c_str());
1661
+ }
1662
+ work_serializer_.Schedule(
1663
+ [watcher = std::move(watcher), status = std::move(channel_status)]()
1664
+ ABSL_EXCLUSIVE_LOCKS_REQUIRED(&work_serializer_) mutable {
1665
+ watcher->OnError(std::move(status));
1666
+ },
1667
+ DEBUG_LOCATION);
1942
1668
  }
1943
1669
  authority_state.channel_state->SubscribeLocked(type, *resource_name);
1944
1670
  }
@@ -1971,6 +1697,13 @@ void XdsClient::CancelResourceWatch(const XdsResourceType* type,
1971
1697
  resource_state.watchers.erase(watcher);
1972
1698
  // Clean up empty map entries, if any.
1973
1699
  if (resource_state.watchers.empty()) {
1700
+ if (resource_state.ignored_deletion) {
1701
+ gpr_log(GPR_INFO,
1702
+ "[xds_client %p] unsubscribing from a resource for which we "
1703
+ "previously ignored a deletion: type %s name %s",
1704
+ this, std::string(type->type_url()).c_str(),
1705
+ std::string(name).c_str());
1706
+ }
1974
1707
  authority_state.channel_state->UnsubscribeLocked(type, *resource_name,
1975
1708
  delay_unsubscription);
1976
1709
  type_map.erase(resource_it);
@@ -1991,23 +1724,21 @@ void XdsClient::MaybeRegisterResourceTypeLocked(
1991
1724
  return;
1992
1725
  }
1993
1726
  resource_types_.emplace(resource_type->type_url(), resource_type);
1994
- v2_resource_types_.emplace(resource_type->v2_type_url(), resource_type);
1995
- resource_type->InitUpbSymtab(symtab_.ptr());
1727
+ resource_type->InitUpbSymtab(this, symtab_.ptr());
1996
1728
  }
1997
1729
 
1998
1730
  const XdsResourceType* XdsClient::GetResourceTypeLocked(
1999
1731
  absl::string_view resource_type) {
2000
1732
  auto it = resource_types_.find(resource_type);
2001
1733
  if (it != resource_types_.end()) return it->second;
2002
- auto it2 = v2_resource_types_.find(resource_type);
2003
- if (it2 != v2_resource_types_.end()) return it2->second;
2004
1734
  return nullptr;
2005
1735
  }
2006
1736
 
2007
1737
  absl::StatusOr<XdsClient::XdsResourceName> XdsClient::ParseXdsResourceName(
2008
1738
  absl::string_view name, const XdsResourceType* type) {
2009
1739
  // Old-style names use the empty string for authority.
2010
- // authority is prefixed with "old:" to indicate that it's an old-style name.
1740
+ // authority is prefixed with "old:" to indicate that it's an old-style
1741
+ // name.
2011
1742
  if (!xds_federation_enabled_ || !absl::StartsWith(name, "xdstp:")) {
2012
1743
  return XdsResourceName{"old:", {std::string(name), {}}};
2013
1744
  }
@@ -2017,7 +1748,7 @@ absl::StatusOr<XdsClient::XdsResourceName> XdsClient::ParseXdsResourceName(
2017
1748
  // Split the resource type off of the path to get the id.
2018
1749
  std::pair<absl::string_view, absl::string_view> path_parts = absl::StrSplit(
2019
1750
  absl::StripPrefix(uri->path(), "/"), absl::MaxSplits('/', 1));
2020
- if (!type->IsType(path_parts.first, nullptr)) {
1751
+ if (type->type_url() != path_parts.first) {
2021
1752
  return absl::InvalidArgumentError(
2022
1753
  "xdstp URI path must indicate valid xDS resource type");
2023
1754
  }
@@ -2049,40 +1780,45 @@ std::string XdsClient::ConstructFullXdsResourceName(
2049
1780
  RefCountedPtr<XdsClusterDropStats> XdsClient::AddClusterDropStats(
2050
1781
  const XdsBootstrap::XdsServer& xds_server, absl::string_view cluster_name,
2051
1782
  absl::string_view eds_service_name) {
2052
- if (!bootstrap_->XdsServerExists(xds_server)) return nullptr;
1783
+ const auto* server = bootstrap_->FindXdsServer(xds_server);
1784
+ if (server == nullptr) return nullptr;
2053
1785
  auto key =
2054
1786
  std::make_pair(std::string(cluster_name), std::string(eds_service_name));
2055
- MutexLock lock(&mu_);
2056
- // We jump through some hoops here to make sure that the const
2057
- // XdsBootstrap::XdsServer& and absl::string_views
2058
- // stored in the XdsClusterDropStats object point to the
2059
- // XdsBootstrap::XdsServer and strings
2060
- // in the load_report_map_ key, so that they have the same lifetime.
2061
- auto server_it =
2062
- xds_load_report_server_map_.emplace(xds_server, LoadReportServer()).first;
2063
- if (server_it->second.channel_state == nullptr) {
2064
- server_it->second.channel_state = GetOrCreateChannelStateLocked(xds_server);
2065
- }
2066
- auto load_report_it = server_it->second.load_report_map
2067
- .emplace(std::move(key), LoadReportState())
2068
- .first;
2069
- LoadReportState& load_report_state = load_report_it->second;
2070
1787
  RefCountedPtr<XdsClusterDropStats> cluster_drop_stats;
2071
- if (load_report_state.drop_stats != nullptr) {
2072
- cluster_drop_stats = load_report_state.drop_stats->RefIfNonZero();
2073
- }
2074
- if (cluster_drop_stats == nullptr) {
1788
+ {
1789
+ MutexLock lock(&mu_);
1790
+ // We jump through some hoops here to make sure that the const
1791
+ // XdsBootstrap::XdsServer& and absl::string_views
1792
+ // stored in the XdsClusterDropStats object point to the
1793
+ // XdsBootstrap::XdsServer and strings
1794
+ // in the load_report_map_ key, so that they have the same lifetime.
1795
+ auto server_it =
1796
+ xds_load_report_server_map_.emplace(server, LoadReportServer()).first;
1797
+ if (server_it->second.channel_state == nullptr) {
1798
+ server_it->second.channel_state = GetOrCreateChannelStateLocked(
1799
+ *server, "load report map (drop stats)");
1800
+ }
1801
+ auto load_report_it = server_it->second.load_report_map
1802
+ .emplace(std::move(key), LoadReportState())
1803
+ .first;
1804
+ LoadReportState& load_report_state = load_report_it->second;
2075
1805
  if (load_report_state.drop_stats != nullptr) {
2076
- load_report_state.deleted_drop_stats +=
2077
- load_report_state.drop_stats->GetSnapshotAndReset();
1806
+ cluster_drop_stats = load_report_state.drop_stats->RefIfNonZero();
1807
+ }
1808
+ if (cluster_drop_stats == nullptr) {
1809
+ if (load_report_state.drop_stats != nullptr) {
1810
+ load_report_state.deleted_drop_stats +=
1811
+ load_report_state.drop_stats->GetSnapshotAndReset();
1812
+ }
1813
+ cluster_drop_stats = MakeRefCounted<XdsClusterDropStats>(
1814
+ Ref(DEBUG_LOCATION, "DropStats"), *server,
1815
+ load_report_it->first.first /*cluster_name*/,
1816
+ load_report_it->first.second /*eds_service_name*/);
1817
+ load_report_state.drop_stats = cluster_drop_stats.get();
2078
1818
  }
2079
- cluster_drop_stats = MakeRefCounted<XdsClusterDropStats>(
2080
- Ref(DEBUG_LOCATION, "DropStats"), server_it->first,
2081
- load_report_it->first.first /*cluster_name*/,
2082
- load_report_it->first.second /*eds_service_name*/);
2083
- load_report_state.drop_stats = cluster_drop_stats.get();
1819
+ server_it->second.channel_state->MaybeStartLrsCall();
2084
1820
  }
2085
- server_it->second.channel_state->MaybeStartLrsCall();
1821
+ work_serializer_.DrainQueue();
2086
1822
  return cluster_drop_stats;
2087
1823
  }
2088
1824
 
@@ -2090,8 +1826,10 @@ void XdsClient::RemoveClusterDropStats(
2090
1826
  const XdsBootstrap::XdsServer& xds_server, absl::string_view cluster_name,
2091
1827
  absl::string_view eds_service_name,
2092
1828
  XdsClusterDropStats* cluster_drop_stats) {
1829
+ const auto* server = bootstrap_->FindXdsServer(xds_server);
1830
+ if (server == nullptr) return;
2093
1831
  MutexLock lock(&mu_);
2094
- auto server_it = xds_load_report_server_map_.find(xds_server);
1832
+ auto server_it = xds_load_report_server_map_.find(server);
2095
1833
  if (server_it == xds_load_report_server_map_.end()) return;
2096
1834
  auto load_report_it = server_it->second.load_report_map.find(
2097
1835
  std::make_pair(std::string(cluster_name), std::string(eds_service_name)));
@@ -2110,42 +1848,48 @@ RefCountedPtr<XdsClusterLocalityStats> XdsClient::AddClusterLocalityStats(
2110
1848
  const XdsBootstrap::XdsServer& xds_server, absl::string_view cluster_name,
2111
1849
  absl::string_view eds_service_name,
2112
1850
  RefCountedPtr<XdsLocalityName> locality) {
2113
- if (!bootstrap_->XdsServerExists(xds_server)) return nullptr;
1851
+ const auto* server = bootstrap_->FindXdsServer(xds_server);
1852
+ if (server == nullptr) return nullptr;
2114
1853
  auto key =
2115
1854
  std::make_pair(std::string(cluster_name), std::string(eds_service_name));
2116
- MutexLock lock(&mu_);
2117
- // We jump through some hoops here to make sure that the const
2118
- // XdsBootstrap::XdsServer& and absl::string_views
2119
- // stored in the XdsClusterDropStats object point to the
2120
- // XdsBootstrap::XdsServer and strings
2121
- // in the load_report_map_ key, so that they have the same lifetime.
2122
- auto server_it =
2123
- xds_load_report_server_map_.emplace(xds_server, LoadReportServer()).first;
2124
- if (server_it->second.channel_state == nullptr) {
2125
- server_it->second.channel_state = GetOrCreateChannelStateLocked(xds_server);
2126
- }
2127
- auto load_report_it = server_it->second.load_report_map
2128
- .emplace(std::move(key), LoadReportState())
2129
- .first;
2130
- LoadReportState& load_report_state = load_report_it->second;
2131
- LoadReportState::LocalityState& locality_state =
2132
- load_report_state.locality_stats[locality];
2133
1855
  RefCountedPtr<XdsClusterLocalityStats> cluster_locality_stats;
2134
- if (locality_state.locality_stats != nullptr) {
2135
- cluster_locality_stats = locality_state.locality_stats->RefIfNonZero();
2136
- }
2137
- if (cluster_locality_stats == nullptr) {
1856
+ {
1857
+ MutexLock lock(&mu_);
1858
+ // We jump through some hoops here to make sure that the const
1859
+ // XdsBootstrap::XdsServer& and absl::string_views
1860
+ // stored in the XdsClusterDropStats object point to the
1861
+ // XdsBootstrap::XdsServer and strings
1862
+ // in the load_report_map_ key, so that they have the same lifetime.
1863
+ auto server_it =
1864
+ xds_load_report_server_map_.emplace(server, LoadReportServer()).first;
1865
+ if (server_it->second.channel_state == nullptr) {
1866
+ server_it->second.channel_state = GetOrCreateChannelStateLocked(
1867
+ *server, "load report map (locality stats)");
1868
+ }
1869
+ auto load_report_it = server_it->second.load_report_map
1870
+ .emplace(std::move(key), LoadReportState())
1871
+ .first;
1872
+ LoadReportState& load_report_state = load_report_it->second;
1873
+ LoadReportState::LocalityState& locality_state =
1874
+ load_report_state.locality_stats[locality];
2138
1875
  if (locality_state.locality_stats != nullptr) {
2139
- locality_state.deleted_locality_stats +=
2140
- locality_state.locality_stats->GetSnapshotAndReset();
1876
+ cluster_locality_stats = locality_state.locality_stats->RefIfNonZero();
2141
1877
  }
2142
- cluster_locality_stats = MakeRefCounted<XdsClusterLocalityStats>(
2143
- Ref(DEBUG_LOCATION, "LocalityStats"), server_it->first,
2144
- load_report_it->first.first /*cluster_name*/,
2145
- load_report_it->first.second /*eds_service_name*/, std::move(locality));
2146
- locality_state.locality_stats = cluster_locality_stats.get();
1878
+ if (cluster_locality_stats == nullptr) {
1879
+ if (locality_state.locality_stats != nullptr) {
1880
+ locality_state.deleted_locality_stats +=
1881
+ locality_state.locality_stats->GetSnapshotAndReset();
1882
+ }
1883
+ cluster_locality_stats = MakeRefCounted<XdsClusterLocalityStats>(
1884
+ Ref(DEBUG_LOCATION, "LocalityStats"), *server,
1885
+ load_report_it->first.first /*cluster_name*/,
1886
+ load_report_it->first.second /*eds_service_name*/,
1887
+ std::move(locality));
1888
+ locality_state.locality_stats = cluster_locality_stats.get();
1889
+ }
1890
+ server_it->second.channel_state->MaybeStartLrsCall();
2147
1891
  }
2148
- server_it->second.channel_state->MaybeStartLrsCall();
1892
+ work_serializer_.DrainQueue();
2149
1893
  return cluster_locality_stats;
2150
1894
  }
2151
1895
 
@@ -2154,8 +1898,10 @@ void XdsClient::RemoveClusterLocalityStats(
2154
1898
  absl::string_view eds_service_name,
2155
1899
  const RefCountedPtr<XdsLocalityName>& locality,
2156
1900
  XdsClusterLocalityStats* cluster_locality_stats) {
1901
+ const auto* server = bootstrap_->FindXdsServer(xds_server);
1902
+ if (server == nullptr) return;
2157
1903
  MutexLock lock(&mu_);
2158
- auto server_it = xds_load_report_server_map_.find(xds_server);
1904
+ auto server_it = xds_load_report_server_map_.find(server);
2159
1905
  if (server_it == xds_load_report_server_map_.end()) return;
2160
1906
  auto load_report_it = server_it->second.load_report_map.find(
2161
1907
  std::make_pair(std::string(cluster_name), std::string(eds_service_name)));
@@ -2176,36 +1922,8 @@ void XdsClient::RemoveClusterLocalityStats(
2176
1922
  void XdsClient::ResetBackoff() {
2177
1923
  MutexLock lock(&mu_);
2178
1924
  for (auto& p : xds_server_channel_map_) {
2179
- grpc_channel_reset_connect_backoff(p.second->channel());
2180
- }
2181
- }
2182
-
2183
- void XdsClient::NotifyOnErrorLocked(absl::Status status) {
2184
- const auto* node = bootstrap_->node();
2185
- if (node != nullptr) {
2186
- status = absl::Status(
2187
- status.code(), absl::StrCat(status.message(),
2188
- " (node ID:", bootstrap_->node()->id, ")"));
2189
- }
2190
- std::set<RefCountedPtr<ResourceWatcherInterface>> watchers;
2191
- for (const auto& a : authority_state_map_) { // authority
2192
- for (const auto& t : a.second.resource_map) { // type
2193
- for (const auto& r : t.second) { // resource id
2194
- for (const auto& w : r.second.watchers) { // watchers
2195
- watchers.insert(w.second);
2196
- }
2197
- }
2198
- }
1925
+ p.second->ResetBackoff();
2199
1926
  }
2200
- work_serializer_.Schedule(
2201
- // TODO(yashykt): When we move to C++14, capture watchers using
2202
- // std::move()
2203
- [watchers, status]() ABSL_EXCLUSIVE_LOCKS_REQUIRED(work_serializer_) {
2204
- for (const auto& watcher : watchers) {
2205
- watcher->OnError(status);
2206
- }
2207
- },
2208
- DEBUG_LOCATION);
2209
1927
  }
2210
1928
 
2211
1929
  void XdsClient::NotifyWatchersOnErrorLocked(
@@ -2215,15 +1933,16 @@ void XdsClient::NotifyWatchersOnErrorLocked(
2215
1933
  const auto* node = bootstrap_->node();
2216
1934
  if (node != nullptr) {
2217
1935
  status = absl::Status(
2218
- status.code(), absl::StrCat(status.message(),
2219
- " (node ID:", bootstrap_->node()->id, ")"));
1936
+ status.code(),
1937
+ absl::StrCat(status.message(), " (node ID:", node->id(), ")"));
2220
1938
  }
2221
1939
  work_serializer_.Schedule(
2222
- [watchers, status]() ABSL_EXCLUSIVE_LOCKS_REQUIRED(&work_serializer_) {
2223
- for (const auto& p : watchers) {
2224
- p.first->OnError(status);
2225
- }
2226
- },
1940
+ [watchers, status = std::move(status)]()
1941
+ ABSL_EXCLUSIVE_LOCKS_REQUIRED(&work_serializer_) {
1942
+ for (const auto& p : watchers) {
1943
+ p.first->OnError(status);
1944
+ }
1945
+ },
2227
1946
  DEBUG_LOCATION);
2228
1947
  }
2229
1948
 
@@ -2246,7 +1965,7 @@ XdsApi::ClusterLoadReportMap XdsClient::BuildLoadReportSnapshotLocked(
2246
1965
  gpr_log(GPR_INFO, "[xds_client %p] start building load report", this);
2247
1966
  }
2248
1967
  XdsApi::ClusterLoadReportMap snapshot_map;
2249
- auto server_it = xds_load_report_server_map_.find(xds_server);
1968
+ auto server_it = xds_load_report_server_map_.find(&xds_server);
2250
1969
  if (server_it == xds_load_report_server_map_.end()) return snapshot_map;
2251
1970
  auto& load_report_map = server_it->second.load_report_map;
2252
1971
  for (auto load_report_it = load_report_map.begin();
@@ -2305,7 +2024,7 @@ XdsApi::ClusterLoadReportMap XdsClient::BuildLoadReportSnapshotLocked(
2305
2024
  }
2306
2025
  }
2307
2026
  // Compute load report interval.
2308
- const Timestamp now = ExecCtx::Get()->Now();
2027
+ const Timestamp now = Timestamp::Now();
2309
2028
  snapshot.load_report_interval = now - load_report.last_report_time;
2310
2029
  load_report.last_report_time = now;
2311
2030
  // Record snapshot.
@@ -2345,192 +2064,4 @@ std::string XdsClient::DumpClientConfigBinary() {
2345
2064
  return api_.AssembleClientConfig(resource_type_metadata_map);
2346
2065
  }
2347
2066
 
2348
- //
2349
- // accessors for global state
2350
- //
2351
-
2352
- void XdsClientGlobalInit() {
2353
- g_mu = new Mutex;
2354
- XdsHttpFilterRegistry::Init();
2355
- XdsClusterSpecifierPluginRegistry::Init();
2356
- }
2357
-
2358
- // TODO(roth): Find a better way to clear the fallback config that does
2359
- // not require using ABSL_NO_THREAD_SAFETY_ANALYSIS.
2360
- void XdsClientGlobalShutdown() ABSL_NO_THREAD_SAFETY_ANALYSIS {
2361
- gpr_free(g_fallback_bootstrap_config);
2362
- g_fallback_bootstrap_config = nullptr;
2363
- delete g_mu;
2364
- g_mu = nullptr;
2365
- XdsHttpFilterRegistry::Shutdown();
2366
- XdsClusterSpecifierPluginRegistry::Shutdown();
2367
- }
2368
-
2369
- namespace {
2370
-
2371
- std::string GetBootstrapContents(const char* fallback_config,
2372
- grpc_error_handle* error) {
2373
- // First, try GRPC_XDS_BOOTSTRAP env var.
2374
- UniquePtr<char> path(gpr_getenv("GRPC_XDS_BOOTSTRAP"));
2375
- if (path != nullptr) {
2376
- if (GRPC_TRACE_FLAG_ENABLED(grpc_xds_client_trace)) {
2377
- gpr_log(GPR_INFO,
2378
- "Got bootstrap file location from GRPC_XDS_BOOTSTRAP "
2379
- "environment variable: %s",
2380
- path.get());
2381
- }
2382
- grpc_slice contents;
2383
- *error =
2384
- grpc_load_file(path.get(), /*add_null_terminator=*/true, &contents);
2385
- if (*error != GRPC_ERROR_NONE) return "";
2386
- std::string contents_str(StringViewFromSlice(contents));
2387
- grpc_slice_unref_internal(contents);
2388
- return contents_str;
2389
- }
2390
- // Next, try GRPC_XDS_BOOTSTRAP_CONFIG env var.
2391
- UniquePtr<char> env_config(gpr_getenv("GRPC_XDS_BOOTSTRAP_CONFIG"));
2392
- if (env_config != nullptr) {
2393
- if (GRPC_TRACE_FLAG_ENABLED(grpc_xds_client_trace)) {
2394
- gpr_log(GPR_INFO,
2395
- "Got bootstrap contents from GRPC_XDS_BOOTSTRAP_CONFIG "
2396
- "environment variable");
2397
- }
2398
- return env_config.get();
2399
- }
2400
- // Finally, try fallback config.
2401
- if (fallback_config != nullptr) {
2402
- if (GRPC_TRACE_FLAG_ENABLED(grpc_xds_client_trace)) {
2403
- gpr_log(GPR_INFO, "Got bootstrap contents from fallback config");
2404
- }
2405
- return fallback_config;
2406
- }
2407
- // No bootstrap config found.
2408
- *error = GRPC_ERROR_CREATE_FROM_STATIC_STRING(
2409
- "Environment variables GRPC_XDS_BOOTSTRAP or GRPC_XDS_BOOTSTRAP_CONFIG "
2410
- "not defined");
2411
- return "";
2412
- }
2413
-
2414
- } // namespace
2415
-
2416
- RefCountedPtr<XdsClient> XdsClient::GetOrCreate(const grpc_channel_args* args,
2417
- grpc_error_handle* error) {
2418
- RefCountedPtr<XdsClient> xds_client;
2419
- // If getting bootstrap from channel args, create a local XdsClient
2420
- // instance for the channel or server instead of using the global instance.
2421
- const char* bootstrap_config = grpc_channel_args_find_string(
2422
- args, GRPC_ARG_TEST_ONLY_DO_NOT_USE_IN_PROD_XDS_BOOTSTRAP_CONFIG);
2423
- if (bootstrap_config != nullptr) {
2424
- std::unique_ptr<XdsBootstrap> bootstrap =
2425
- XdsBootstrap::Create(bootstrap_config, error);
2426
- if (*error == GRPC_ERROR_NONE) {
2427
- grpc_channel_args* xds_channel_args =
2428
- grpc_channel_args_find_pointer<grpc_channel_args>(
2429
- args,
2430
- GRPC_ARG_TEST_ONLY_DO_NOT_USE_IN_PROD_XDS_CLIENT_CHANNEL_ARGS);
2431
- return MakeRefCounted<XdsClient>(std::move(bootstrap), xds_channel_args);
2432
- }
2433
- return nullptr;
2434
- }
2435
- // Otherwise, use the global instance.
2436
- {
2437
- MutexLock lock(g_mu);
2438
- if (g_xds_client != nullptr) {
2439
- auto xds_client = g_xds_client->RefIfNonZero();
2440
- if (xds_client != nullptr) return xds_client;
2441
- }
2442
- // Find bootstrap contents.
2443
- std::string bootstrap_contents =
2444
- GetBootstrapContents(g_fallback_bootstrap_config, error);
2445
- if (*error != GRPC_ERROR_NONE) return nullptr;
2446
- if (GRPC_TRACE_FLAG_ENABLED(grpc_xds_client_trace)) {
2447
- gpr_log(GPR_INFO, "xDS bootstrap contents: %s",
2448
- bootstrap_contents.c_str());
2449
- }
2450
- // Parse bootstrap.
2451
- std::unique_ptr<XdsBootstrap> bootstrap =
2452
- XdsBootstrap::Create(bootstrap_contents, error);
2453
- if (*error != GRPC_ERROR_NONE) return nullptr;
2454
- // Instantiate XdsClient.
2455
- xds_client =
2456
- MakeRefCounted<XdsClient>(std::move(bootstrap), g_channel_args);
2457
- g_xds_client = xds_client.get();
2458
- }
2459
- return xds_client;
2460
- }
2461
-
2462
- namespace internal {
2463
-
2464
- void SetXdsChannelArgsForTest(grpc_channel_args* args) {
2465
- MutexLock lock(g_mu);
2466
- g_channel_args = args;
2467
- }
2468
-
2469
- void UnsetGlobalXdsClientForTest() {
2470
- MutexLock lock(g_mu);
2471
- g_xds_client = nullptr;
2472
- }
2473
-
2474
- void SetXdsFallbackBootstrapConfig(const char* config) {
2475
- MutexLock lock(g_mu);
2476
- gpr_free(g_fallback_bootstrap_config);
2477
- g_fallback_bootstrap_config = gpr_strdup(config);
2478
- }
2479
-
2480
- } // namespace internal
2481
-
2482
- //
2483
- // embedding XdsClient in channel args
2484
- //
2485
-
2486
- #define GRPC_ARG_XDS_CLIENT "grpc.internal.xds_client"
2487
-
2488
- namespace {
2489
-
2490
- void* XdsClientArgCopy(void* p) {
2491
- XdsClient* xds_client = static_cast<XdsClient*>(p);
2492
- xds_client->Ref(DEBUG_LOCATION, "channel arg").release();
2493
- return p;
2494
- }
2495
-
2496
- void XdsClientArgDestroy(void* p) {
2497
- XdsClient* xds_client = static_cast<XdsClient*>(p);
2498
- xds_client->Unref(DEBUG_LOCATION, "channel arg");
2499
- }
2500
-
2501
- int XdsClientArgCmp(void* p, void* q) { return QsortCompare(p, q); }
2502
-
2503
- const grpc_arg_pointer_vtable kXdsClientArgVtable = {
2504
- XdsClientArgCopy, XdsClientArgDestroy, XdsClientArgCmp};
2505
-
2506
- } // namespace
2507
-
2508
- grpc_arg XdsClient::MakeChannelArg() const {
2509
- return grpc_channel_arg_pointer_create(const_cast<char*>(GRPC_ARG_XDS_CLIENT),
2510
- const_cast<XdsClient*>(this),
2511
- &kXdsClientArgVtable);
2512
- }
2513
-
2514
- RefCountedPtr<XdsClient> XdsClient::GetFromChannelArgs(
2515
- const grpc_channel_args& args) {
2516
- XdsClient* xds_client =
2517
- grpc_channel_args_find_pointer<XdsClient>(&args, GRPC_ARG_XDS_CLIENT);
2518
- if (xds_client == nullptr) return nullptr;
2519
- return xds_client->Ref(DEBUG_LOCATION, "GetFromChannelArgs");
2520
- }
2521
-
2522
2067
  } // namespace grpc_core
2523
-
2524
- // The returned bytes may contain NULL(0), so we can't use c-string.
2525
- grpc_slice grpc_dump_xds_configs() {
2526
- grpc_core::ApplicationCallbackExecCtx callback_exec_ctx;
2527
- grpc_core::ExecCtx exec_ctx;
2528
- grpc_error_handle error = GRPC_ERROR_NONE;
2529
- auto xds_client = grpc_core::XdsClient::GetOrCreate(nullptr, &error);
2530
- if (error != GRPC_ERROR_NONE) {
2531
- // If we isn't using xDS, just return an empty string.
2532
- GRPC_ERROR_UNREF(error);
2533
- return grpc_empty_slice();
2534
- }
2535
- return grpc_slice_from_cpp_string(xds_client->DumpClientConfigBinary());
2536
- }