grpc 1.56.0 → 1.57.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (398) hide show
  1. checksums.yaml +4 -4
  2. data/Makefile +31 -22
  3. data/include/grpc/event_engine/event_engine.h +22 -32
  4. data/include/grpc/grpc_security.h +19 -0
  5. data/include/grpc/impl/grpc_types.h +3 -0
  6. data/include/grpc/support/port_platform.h +29 -23
  7. data/src/core/ext/filters/client_channel/client_channel.cc +44 -8
  8. data/src/core/ext/filters/client_channel/dynamic_filters.h +3 -3
  9. data/src/core/ext/filters/client_channel/http_proxy.cc +5 -0
  10. data/src/core/ext/filters/client_channel/lb_policy/address_filtering.cc +21 -52
  11. data/src/core/ext/filters/client_channel/lb_policy/address_filtering.h +19 -7
  12. data/src/core/ext/filters/client_channel/lb_policy/child_policy_handler.cc +25 -35
  13. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc +78 -132
  14. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.cc +2 -1
  15. data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.cc +4 -3
  16. data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h +3 -1
  17. data/src/core/ext/filters/client_channel/lb_policy/health_check_client.cc +38 -15
  18. data/src/core/ext/filters/client_channel/lb_policy/health_check_client.h +3 -5
  19. data/src/core/ext/filters/client_channel/lb_policy/health_check_client_internal.h +22 -6
  20. data/src/core/ext/filters/client_channel/lb_policy/oob_backend_metric_internal.h +2 -0
  21. data/src/core/ext/filters/client_channel/lb_policy/outlier_detection/outlier_detection.cc +98 -72
  22. data/src/core/ext/filters/client_channel/lb_policy/outlier_detection/outlier_detection.h +2 -16
  23. data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc +56 -11
  24. data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.h +25 -0
  25. data/src/core/ext/filters/client_channel/lb_policy/priority/priority.cc +6 -32
  26. data/src/core/ext/filters/client_channel/lb_policy/ring_hash/ring_hash.cc +4 -6
  27. data/src/core/ext/filters/client_channel/lb_policy/rls/rls.cc +20 -79
  28. data/src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc +1 -1
  29. data/src/core/ext/filters/client_channel/lb_policy/subchannel_list.h +31 -19
  30. data/src/core/ext/filters/client_channel/lb_policy/weighted_round_robin/weighted_round_robin.cc +11 -2
  31. data/src/core/ext/filters/client_channel/lb_policy/weighted_target/weighted_target.cc +7 -41
  32. data/src/core/ext/filters/client_channel/lb_policy/xds/cds.cc +3 -67
  33. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_channel_args.h +8 -0
  34. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_impl.cc +31 -74
  35. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_manager.cc +7 -51
  36. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_resolver.cc +16 -87
  37. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_override_host.cc +16 -50
  38. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_wrr_locality.cc +12 -74
  39. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc +1 -4
  40. data/src/core/ext/filters/client_channel/resolver/dns/event_engine/event_engine_client_channel_resolver.cc +69 -59
  41. data/src/core/ext/filters/client_channel/resolver/polling_resolver.cc +7 -2
  42. data/src/core/ext/filters/client_channel/resolver/polling_resolver.h +1 -0
  43. data/src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc +25 -13
  44. data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.cc +366 -311
  45. data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.h +17 -1
  46. data/src/core/ext/filters/client_channel/retry_filter.cc +39 -2498
  47. data/src/core/ext/filters/client_channel/retry_filter.h +91 -1
  48. data/src/core/ext/filters/client_channel/retry_filter_legacy_call_data.cc +2052 -0
  49. data/src/core/ext/filters/client_channel/retry_filter_legacy_call_data.h +442 -0
  50. data/src/core/ext/filters/client_channel/service_config_channel_arg_filter.cc +38 -58
  51. data/src/core/ext/filters/client_channel/subchannel.h +3 -3
  52. data/src/core/ext/filters/client_channel/subchannel_interface_internal.h +3 -0
  53. data/src/core/ext/filters/rbac/rbac_filter.cc +40 -111
  54. data/src/core/ext/filters/rbac/rbac_filter.h +12 -30
  55. data/src/core/ext/filters/stateful_session/stateful_session_filter.cc +162 -86
  56. data/src/core/ext/filters/stateful_session/stateful_session_filter.h +0 -6
  57. data/src/core/ext/transport/chttp2/server/chttp2_server.cc +7 -4
  58. data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +131 -186
  59. data/src/core/ext/transport/chttp2/transport/decode_huff.cc +6569 -174
  60. data/src/core/ext/transport/chttp2/transport/decode_huff.h +2278 -441
  61. data/src/core/ext/transport/chttp2/transport/frame_ping.cc +2 -3
  62. data/src/core/ext/transport/chttp2/transport/hpack_parse_result.cc +176 -0
  63. data/src/core/ext/transport/chttp2/transport/hpack_parse_result.h +326 -0
  64. data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +569 -544
  65. data/src/core/ext/transport/chttp2/transport/hpack_parser.h +150 -9
  66. data/src/core/ext/transport/chttp2/transport/hpack_parser_table.cc +47 -33
  67. data/src/core/ext/transport/chttp2/transport/hpack_parser_table.h +19 -5
  68. data/src/core/ext/transport/chttp2/transport/internal.h +8 -4
  69. data/src/core/ext/transport/chttp2/transport/parsing.cc +27 -15
  70. data/src/core/ext/transport/chttp2/transport/writing.cc +2 -3
  71. data/src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.c +27 -6
  72. data/src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.h +143 -0
  73. data/src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.c +2 -9
  74. data/src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.h +0 -39
  75. data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.c +13 -8
  76. data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.h +35 -6
  77. data/src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.c +17 -13
  78. data/src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.h +85 -20
  79. data/src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.c +26 -7
  80. data/src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.h +45 -3
  81. data/src/core/ext/upb-generated/envoy/config/metrics/v3/metrics_service.upb.c +4 -3
  82. data/src/core/ext/upb-generated/envoy/config/metrics/v3/metrics_service.upb.h +21 -0
  83. data/src/core/ext/upb-generated/envoy/config/overload/v3/overload.upb.c +30 -6
  84. data/src/core/ext/upb-generated/envoy/config/overload/v3/overload.upb.h +180 -0
  85. data/src/core/ext/upb-generated/envoy/data/accesslog/v3/accesslog.upb.c +558 -0
  86. data/src/core/ext/upb-generated/envoy/data/accesslog/v3/accesslog.upb.h +2710 -0
  87. data/src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3/fault.upb.c +30 -11
  88. data/src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3/fault.upb.h +53 -24
  89. data/src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3/router.upb.c +30 -5
  90. data/src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3/router.upb.h +110 -0
  91. data/src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.c +41 -15
  92. data/src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h +150 -27
  93. data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb.c +1 -0
  94. data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb.c +47 -0
  95. data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb.h +93 -0
  96. data/src/core/ext/upbdefs-generated/envoy/config/accesslog/v3/accesslog.upbdefs.c +88 -76
  97. data/src/core/ext/upbdefs-generated/envoy/config/accesslog/v3/accesslog.upbdefs.h +5 -0
  98. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/config_source.upbdefs.c +11 -12
  99. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/config_source.upbdefs.h +0 -5
  100. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_service.upbdefs.c +162 -160
  101. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/health_check.upbdefs.c +129 -118
  102. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/protocol.upbdefs.c +141 -135
  103. data/src/core/ext/upbdefs-generated/envoy/config/metrics/v3/metrics_service.upbdefs.c +19 -12
  104. data/src/core/ext/upbdefs-generated/envoy/config/overload/v3/overload.upbdefs.c +38 -30
  105. data/src/core/ext/upbdefs-generated/envoy/config/overload/v3/overload.upbdefs.h +5 -0
  106. data/src/core/ext/upbdefs-generated/envoy/data/accesslog/v3/accesslog.upbdefs.c +402 -0
  107. data/src/core/ext/upbdefs-generated/envoy/data/accesslog/v3/accesslog.upbdefs.h +111 -0
  108. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3/fault.upbdefs.c +80 -74
  109. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3/router.upbdefs.c +63 -47
  110. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3/router.upbdefs.h +5 -0
  111. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.c +315 -293
  112. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.h +5 -0
  113. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/regex.upbdefs.c +29 -29
  114. data/src/core/ext/xds/xds_bootstrap_grpc.cc +33 -30
  115. data/src/core/ext/xds/xds_bootstrap_grpc.h +5 -13
  116. data/src/core/ext/xds/xds_client_grpc.cc +11 -6
  117. data/src/core/ext/xds/xds_client_grpc.h +16 -2
  118. data/src/core/ext/xds/xds_client_stats.h +10 -0
  119. data/src/core/ext/xds/xds_cluster.cc +26 -16
  120. data/src/core/ext/xds/xds_endpoint.cc +4 -7
  121. data/src/core/ext/xds/xds_health_status.cc +0 -17
  122. data/src/core/ext/xds/xds_health_status.h +5 -25
  123. data/src/core/ext/xds/xds_lb_policy_registry.cc +39 -0
  124. data/src/core/ext/xds/xds_route_config.cc +4 -0
  125. data/src/core/ext/xds/xds_transport_grpc.cc +1 -3
  126. data/src/core/lib/address_utils/parse_address.cc +63 -1
  127. data/src/core/lib/address_utils/parse_address.h +8 -0
  128. data/src/core/lib/address_utils/sockaddr_utils.cc +46 -1
  129. data/src/core/lib/address_utils/sockaddr_utils.h +2 -2
  130. data/src/core/lib/backoff/random_early_detection.h +5 -0
  131. data/src/core/lib/channel/channel_args.cc +21 -10
  132. data/src/core/lib/channel/channel_args.h +3 -0
  133. data/src/core/lib/channel/connected_channel.cc +4 -1
  134. data/src/core/lib/channel/promise_based_filter.h +1 -0
  135. data/src/core/lib/debug/trace.cc +1 -4
  136. data/src/core/lib/event_engine/cf_engine/cf_engine.cc +2 -1
  137. data/src/core/lib/event_engine/cf_engine/cf_engine.h +1 -1
  138. data/src/core/lib/event_engine/event_engine.cc +0 -12
  139. data/src/core/lib/event_engine/forkable.cc +47 -42
  140. data/src/core/lib/event_engine/handle_containers.h +0 -4
  141. data/src/core/lib/event_engine/posix_engine/ev_epoll1_linux.cc +4 -6
  142. data/src/core/lib/event_engine/posix_engine/ev_poll_posix.cc +4 -6
  143. data/src/core/lib/event_engine/posix_engine/posix_endpoint.cc +25 -11
  144. data/src/core/lib/event_engine/posix_engine/posix_endpoint.h +3 -1
  145. data/src/core/lib/event_engine/posix_engine/posix_engine.cc +2 -1
  146. data/src/core/lib/event_engine/posix_engine/posix_engine.h +9 -12
  147. data/src/core/lib/event_engine/posix_engine/posix_engine_listener.cc +66 -27
  148. data/src/core/lib/event_engine/posix_engine/posix_engine_listener.h +5 -0
  149. data/src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.cc +4 -2
  150. data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.cc +42 -2
  151. data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.h +6 -0
  152. data/src/core/lib/event_engine/posix_engine/timer.h +10 -37
  153. data/src/core/lib/event_engine/tcp_socket_utils.cc +67 -7
  154. data/src/core/lib/event_engine/tcp_socket_utils.h +3 -0
  155. data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.cc +90 -37
  156. data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.h +32 -12
  157. data/src/core/lib/event_engine/thready_event_engine/thready_event_engine.cc +12 -21
  158. data/src/core/lib/event_engine/thready_event_engine/thready_event_engine.h +8 -12
  159. data/src/core/lib/event_engine/windows/windows_endpoint.cc +55 -54
  160. data/src/core/lib/event_engine/windows/windows_endpoint.h +15 -12
  161. data/src/core/lib/event_engine/windows/windows_engine.cc +2 -1
  162. data/src/core/lib/event_engine/windows/windows_engine.h +8 -12
  163. data/src/core/lib/experiments/config.cc +60 -22
  164. data/src/core/lib/experiments/config.h +20 -8
  165. data/src/core/lib/experiments/experiments.cc +278 -0
  166. data/src/core/lib/experiments/experiments.h +59 -1
  167. data/src/core/lib/gprpp/dual_ref_counted.h +9 -9
  168. data/src/core/lib/gprpp/fork.cc +8 -9
  169. data/src/core/lib/gprpp/fork.h +6 -5
  170. data/src/core/lib/gprpp/if_list.h +4530 -0
  171. data/src/core/lib/gprpp/orphanable.h +3 -3
  172. data/src/core/lib/gprpp/ref_counted.h +6 -6
  173. data/src/core/lib/gprpp/sorted_pack.h +3 -12
  174. data/src/core/lib/gprpp/status_helper.h +16 -15
  175. data/src/core/lib/gprpp/time.h +12 -0
  176. data/src/core/lib/gprpp/type_list.h +32 -0
  177. data/src/core/lib/http/httpcli.h +6 -9
  178. data/src/core/lib/iomgr/error.cc +32 -2
  179. data/src/core/lib/iomgr/error.h +9 -10
  180. data/src/core/lib/iomgr/ev_epoll1_linux.cc +5 -7
  181. data/src/core/lib/iomgr/ev_poll_posix.cc +6 -5
  182. data/src/core/lib/iomgr/exec_ctx.h +11 -0
  183. data/src/core/lib/iomgr/pollset.h +4 -5
  184. data/src/core/lib/iomgr/port.h +10 -0
  185. data/src/core/lib/iomgr/resolve_address.cc +13 -1
  186. data/src/core/lib/iomgr/resolve_address.h +17 -3
  187. data/src/core/lib/iomgr/sockaddr_posix.h +7 -0
  188. data/src/core/lib/iomgr/socket_utils_common_posix.cc +29 -0
  189. data/src/core/lib/iomgr/socket_utils_posix.cc +2 -0
  190. data/src/core/lib/iomgr/socket_utils_posix.h +6 -0
  191. data/src/core/lib/iomgr/tcp_client_posix.cc +4 -1
  192. data/src/core/lib/iomgr/tcp_posix.cc +21 -4
  193. data/src/core/lib/iomgr/tcp_server_posix.cc +37 -14
  194. data/src/core/lib/iomgr/tcp_server_utils_posix.h +12 -0
  195. data/src/core/lib/iomgr/tcp_server_utils_posix_common.cc +26 -2
  196. data/src/core/lib/iomgr/tcp_windows.cc +1 -3
  197. data/src/core/lib/iomgr/vsock.cc +59 -0
  198. data/src/core/lib/iomgr/vsock.h +38 -0
  199. data/src/core/lib/iomgr/wakeup_fd_posix.h +3 -6
  200. data/src/core/lib/load_balancing/delegating_helper.h +115 -0
  201. data/src/core/lib/load_balancing/lb_policy.h +20 -0
  202. data/src/core/lib/load_balancing/subchannel_interface.h +6 -0
  203. data/src/core/lib/promise/party.h +1 -1
  204. data/src/core/lib/resolver/resolver_factory.h +3 -2
  205. data/src/core/lib/resolver/server_address.cc +9 -94
  206. data/src/core/lib/resolver/server_address.h +10 -64
  207. data/src/core/lib/resource_quota/memory_quota.h +1 -1
  208. data/src/core/lib/security/credentials/channel_creds_registry.h +51 -27
  209. data/src/core/lib/security/credentials/channel_creds_registry_init.cc +169 -9
  210. data/src/core/lib/security/credentials/composite/composite_credentials.cc +1 -1
  211. data/src/core/lib/security/credentials/composite/composite_credentials.h +3 -1
  212. data/src/core/lib/security/credentials/external/external_account_credentials.cc +40 -1
  213. data/src/core/lib/security/credentials/external/external_account_credentials.h +6 -0
  214. data/src/core/lib/security/credentials/fake/fake_credentials.cc +30 -38
  215. data/src/core/lib/security/credentials/fake/fake_credentials.h +28 -0
  216. data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc +8 -0
  217. data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h +5 -1
  218. data/src/core/lib/security/credentials/tls/tls_credentials.cc +1 -1
  219. data/src/core/lib/security/credentials/tls/tls_credentials.h +3 -1
  220. data/src/core/lib/security/security_connector/ssl_utils.cc +2 -1
  221. data/src/core/lib/security/security_connector/ssl_utils.h +1 -1
  222. data/src/core/lib/security/security_connector/tls/tls_security_connector.cc +1 -1
  223. data/src/core/lib/service_config/service_config_call_data.h +5 -0
  224. data/src/core/lib/slice/slice.h +16 -0
  225. data/src/core/lib/surface/call.cc +31 -29
  226. data/src/core/lib/surface/server.h +2 -2
  227. data/src/core/lib/surface/validate_metadata.cc +37 -22
  228. data/src/core/lib/surface/validate_metadata.h +13 -3
  229. data/src/core/lib/surface/version.cc +2 -2
  230. data/src/core/lib/transport/metadata_batch.cc +7 -7
  231. data/src/core/lib/transport/metadata_batch.h +86 -48
  232. data/src/core/lib/transport/parsed_metadata.h +34 -20
  233. data/src/core/lib/transport/simple_slice_based_metadata.h +9 -2
  234. data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.cc +4 -6
  235. data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc +1 -2
  236. data/src/core/tsi/ssl_transport_security.cc +33 -9
  237. data/src/core/tsi/ssl_transport_security.h +13 -1
  238. data/src/ruby/bin/math_pb.rb +24 -18
  239. data/src/ruby/ext/grpc/extconf.rb +19 -18
  240. data/src/ruby/ext/grpc/rb_call.c +62 -39
  241. data/src/ruby/ext/grpc/rb_call_credentials.c +0 -1
  242. data/src/ruby/ext/grpc/rb_channel.c +109 -84
  243. data/src/ruby/ext/grpc/rb_channel.h +1 -0
  244. data/src/ruby/ext/grpc/rb_channel_args.c +16 -2
  245. data/src/ruby/ext/grpc/rb_channel_args.h +4 -0
  246. data/src/ruby/ext/grpc/rb_channel_credentials.c +0 -1
  247. data/src/ruby/ext/grpc/rb_compression_options.c +0 -1
  248. data/src/ruby/ext/grpc/rb_event_thread.c +22 -6
  249. data/src/ruby/ext/grpc/rb_event_thread.h +1 -0
  250. data/src/ruby/ext/grpc/rb_grpc.c +192 -30
  251. data/src/ruby/ext/grpc/rb_grpc.h +8 -2
  252. data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +2 -0
  253. data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +3 -0
  254. data/src/ruby/ext/grpc/rb_server.c +62 -45
  255. data/src/ruby/ext/grpc/rb_server_credentials.c +0 -1
  256. data/src/ruby/ext/grpc/rb_xds_channel_credentials.c +0 -1
  257. data/src/ruby/ext/grpc/rb_xds_server_credentials.c +0 -1
  258. data/src/ruby/lib/grpc/generic/bidi_call.rb +2 -0
  259. data/src/ruby/lib/grpc/version.rb +1 -1
  260. data/src/ruby/pb/grpc/health/v1/health_pb.rb +24 -13
  261. data/src/ruby/pb/src/proto/grpc/testing/empty_pb.rb +24 -3
  262. data/src/ruby/pb/src/proto/grpc/testing/messages_pb.rb +25 -111
  263. data/src/ruby/pb/src/proto/grpc/testing/test_pb.rb +25 -2
  264. data/third_party/boringssl-with-bazel/err_data.c +552 -552
  265. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_strnid.c +5 -5
  266. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_time.c +34 -1
  267. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_utctm.c +4 -1
  268. data/third_party/boringssl-with-bazel/src/crypto/bio/bio.c +3 -3
  269. data/third_party/boringssl-with-bazel/src/crypto/bio/bio_mem.c +7 -8
  270. data/third_party/boringssl-with-bazel/src/crypto/bio/connect.c +2 -2
  271. data/third_party/boringssl-with-bazel/src/crypto/bio/fd.c +2 -2
  272. data/third_party/boringssl-with-bazel/src/crypto/bio/file.c +8 -8
  273. data/third_party/boringssl-with-bazel/src/crypto/bio/socket.c +2 -2
  274. data/third_party/boringssl-with-bazel/src/crypto/bio/socket_helper.c +2 -2
  275. data/third_party/boringssl-with-bazel/src/crypto/chacha/chacha.c +19 -1
  276. data/third_party/boringssl-with-bazel/src/crypto/chacha/internal.h +8 -1
  277. data/third_party/boringssl-with-bazel/src/crypto/conf/conf.c +28 -185
  278. data/third_party/boringssl-with-bazel/src/crypto/conf/conf_def.h +3 -7
  279. data/third_party/boringssl-with-bazel/src/crypto/conf/internal.h +8 -0
  280. data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_apple.c +3 -0
  281. data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519.c +49 -46
  282. data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519_64_adx.c +18 -0
  283. data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519_tables.h +2809 -7417
  284. data/third_party/boringssl-with-bazel/src/crypto/curve25519/internal.h +27 -5
  285. data/third_party/boringssl-with-bazel/src/crypto/dsa/internal.h +20 -0
  286. data/third_party/boringssl-with-bazel/src/crypto/ec_extra/ec_asn1.c +110 -72
  287. data/third_party/boringssl-with-bazel/src/crypto/ec_extra/ec_derive.c +4 -3
  288. data/third_party/boringssl-with-bazel/src/crypto/ec_extra/hash_to_curve.c +15 -14
  289. data/third_party/boringssl-with-bazel/src/crypto/err/err.c +13 -10
  290. data/third_party/boringssl-with-bazel/src/crypto/evp/evp.c +35 -12
  291. data/third_party/boringssl-with-bazel/src/crypto/evp/p_ec.c +2 -4
  292. data/third_party/boringssl-with-bazel/src/crypto/evp/p_ec_asn1.c +3 -7
  293. data/third_party/boringssl-with-bazel/src/crypto/evp/pbkdf.c +3 -3
  294. data/third_party/boringssl-with-bazel/src/crypto/evp/print.c +7 -6
  295. data/third_party/boringssl-with-bazel/src/crypto/ex_data.c +34 -72
  296. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm.c +1 -1
  297. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div.c +12 -5
  298. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/gcd.c +5 -6
  299. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/internal.h +12 -6
  300. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery.c +17 -18
  301. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery_inv.c +51 -15
  302. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/rsaz_exp.c +7 -7
  303. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/delocate.h +5 -6
  304. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/internal.h +2 -0
  305. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/builtin_curves.h +277 -0
  306. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec.c +180 -404
  307. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_key.c +3 -3
  308. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_montgomery.c +24 -57
  309. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/felem.c +17 -13
  310. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/internal.h +33 -71
  311. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/oct.c +18 -17
  312. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p224-64.c +5 -7
  313. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-nistz.c +15 -18
  314. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256.c +9 -11
  315. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/scalar.c +24 -24
  316. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/simple.c +11 -27
  317. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/simple_mul.c +8 -8
  318. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/wnaf.c +4 -4
  319. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/ecdsa.c +9 -3
  320. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/hkdf/hkdf.c +1 -1
  321. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/fork_detect.c +40 -26
  322. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/internal.h +21 -7
  323. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/rand.c +38 -19
  324. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/urandom.c +2 -29
  325. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/internal.h +55 -0
  326. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa_impl.c +33 -52
  327. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/self_check.c +3 -8
  328. data/third_party/boringssl-with-bazel/src/crypto/internal.h +198 -79
  329. data/third_party/boringssl-with-bazel/src/crypto/kyber/kyber.c +5 -4
  330. data/third_party/boringssl-with-bazel/src/crypto/mem.c +7 -8
  331. data/third_party/boringssl-with-bazel/src/crypto/obj/obj.c +19 -23
  332. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/internal.h +3 -3
  333. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/p5_pbev2.c +3 -3
  334. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8.c +7 -7
  335. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8_x509.c +8 -5
  336. data/third_party/boringssl-with-bazel/src/crypto/pool/internal.h +1 -0
  337. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/deterministic.c +7 -6
  338. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/forkunsafe.c +6 -12
  339. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/getentropy.c +48 -0
  340. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/{fuchsia.c → ios.c} +8 -8
  341. data/third_party/boringssl-with-bazel/src/crypto/{refcount_no_threads.c → rand_extra/trusty.c} +15 -19
  342. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/windows.c +41 -19
  343. data/third_party/boringssl-with-bazel/src/crypto/{refcount_c11.c → refcount.c} +11 -17
  344. data/third_party/boringssl-with-bazel/src/crypto/stack/stack.c +147 -72
  345. data/third_party/boringssl-with-bazel/src/crypto/thread_none.c +0 -8
  346. data/third_party/boringssl-with-bazel/src/crypto/thread_pthread.c +6 -35
  347. data/third_party/boringssl-with-bazel/src/crypto/thread_win.c +5 -26
  348. data/third_party/boringssl-with-bazel/src/crypto/trust_token/pmbtoken.c +14 -18
  349. data/third_party/boringssl-with-bazel/src/crypto/trust_token/voprf.c +54 -143
  350. data/third_party/boringssl-with-bazel/src/crypto/x509/by_dir.c +7 -13
  351. data/third_party/boringssl-with-bazel/src/crypto/x509/internal.h +1 -1
  352. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_att.c +1 -1
  353. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_lu.c +2 -4
  354. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_req.c +2 -2
  355. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_trs.c +1 -1
  356. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_v3.c +8 -12
  357. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vfy.c +19 -20
  358. data/third_party/boringssl-with-bazel/src/crypto/x509/x509name.c +11 -15
  359. data/third_party/boringssl-with-bazel/src/crypto/x509/x_crl.c +5 -5
  360. data/third_party/boringssl-with-bazel/src/crypto/x509/x_name.c +1 -1
  361. data/third_party/boringssl-with-bazel/src/crypto/x509/x_pubkey.c +7 -7
  362. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_lib.c +2 -3
  363. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_purp.c +4 -6
  364. data/third_party/boringssl-with-bazel/src/include/openssl/arm_arch.h +4 -119
  365. data/third_party/boringssl-with-bazel/src/include/openssl/asm_base.h +207 -0
  366. data/third_party/boringssl-with-bazel/src/include/openssl/asn1.h +5 -0
  367. data/third_party/boringssl-with-bazel/src/include/openssl/base.h +2 -116
  368. data/third_party/boringssl-with-bazel/src/include/openssl/bn.h +0 -2
  369. data/third_party/boringssl-with-bazel/src/include/openssl/chacha.h +6 -0
  370. data/third_party/boringssl-with-bazel/src/include/openssl/conf.h +5 -1
  371. data/third_party/boringssl-with-bazel/src/include/openssl/dsa.h +0 -21
  372. data/third_party/boringssl-with-bazel/src/include/openssl/ec.h +21 -2
  373. data/third_party/boringssl-with-bazel/src/include/openssl/ec_key.h +19 -6
  374. data/third_party/boringssl-with-bazel/src/include/openssl/evp.h +11 -7
  375. data/third_party/boringssl-with-bazel/src/include/openssl/rand.h +13 -14
  376. data/third_party/boringssl-with-bazel/src/include/openssl/rsa.h +0 -61
  377. data/third_party/boringssl-with-bazel/src/include/openssl/ssl.h +127 -81
  378. data/third_party/boringssl-with-bazel/src/include/openssl/stack.h +224 -209
  379. data/third_party/boringssl-with-bazel/src/include/openssl/target.h +154 -0
  380. data/third_party/boringssl-with-bazel/src/include/openssl/thread.h +1 -29
  381. data/third_party/boringssl-with-bazel/src/include/openssl/x509.h +4 -4
  382. data/third_party/boringssl-with-bazel/src/include/openssl/x509v3.h +3 -2
  383. data/third_party/boringssl-with-bazel/src/ssl/extensions.cc +9 -65
  384. data/third_party/boringssl-with-bazel/src/ssl/handoff.cc +20 -20
  385. data/third_party/boringssl-with-bazel/src/ssl/handshake_server.cc +1 -1
  386. data/third_party/boringssl-with-bazel/src/ssl/internal.h +4 -11
  387. data/third_party/boringssl-with-bazel/src/ssl/ssl_cipher.cc +24 -18
  388. data/third_party/boringssl-with-bazel/src/ssl/ssl_key_share.cc +37 -30
  389. data/third_party/boringssl-with-bazel/src/ssl/ssl_lib.cc +125 -26
  390. data/third_party/boringssl-with-bazel/src/ssl/tls13_client.cc +2 -3
  391. data/third_party/boringssl-with-bazel/src/third_party/fiat/curve25519_64_adx.h +691 -0
  392. data/third_party/upb/upb/collections/map.c +3 -3
  393. metadata +28 -11
  394. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_attributes.cc +0 -42
  395. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_attributes.h +0 -64
  396. data/src/core/ext/transport/chttp2/transport/stream_map.cc +0 -177
  397. data/src/core/ext/transport/chttp2/transport/stream_map.h +0 -68
  398. data/third_party/boringssl-with-bazel/src/crypto/refcount_win.c +0 -89
@@ -55,10 +55,10 @@
55
55
  #include "src/core/lib/json/json.h"
56
56
  #include "src/core/lib/json/json_args.h"
57
57
  #include "src/core/lib/json/json_object_loader.h"
58
+ #include "src/core/lib/load_balancing/delegating_helper.h"
58
59
  #include "src/core/lib/load_balancing/lb_policy.h"
59
60
  #include "src/core/lib/load_balancing/lb_policy_factory.h"
60
61
  #include "src/core/lib/load_balancing/lb_policy_registry.h"
61
- #include "src/core/lib/load_balancing/subchannel_interface.h"
62
62
  #include "src/core/lib/resolver/server_address.h"
63
63
  #include "src/core/lib/transport/connectivity_state.h"
64
64
 
@@ -162,25 +162,23 @@ class PriorityLb : public LoadBalancingPolicy {
162
162
  bool FailoverTimerPending() const { return failover_timer_ != nullptr; }
163
163
 
164
164
  private:
165
- class Helper : public ChannelControlHelper {
165
+ class Helper : public DelegatingChannelControlHelper {
166
166
  public:
167
167
  explicit Helper(RefCountedPtr<ChildPriority> priority)
168
168
  : priority_(std::move(priority)) {}
169
169
 
170
170
  ~Helper() override { priority_.reset(DEBUG_LOCATION, "Helper"); }
171
171
 
172
- RefCountedPtr<SubchannelInterface> CreateSubchannel(
173
- ServerAddress address, const ChannelArgs& args) override;
174
172
  void UpdateState(grpc_connectivity_state state,
175
173
  const absl::Status& status,
176
174
  RefCountedPtr<SubchannelPicker> picker) override;
177
175
  void RequestReresolution() override;
178
- absl::string_view GetAuthority() override;
179
- EventEngine* GetEventEngine() override;
180
- void AddTraceEvent(TraceSeverity severity,
181
- absl::string_view message) override;
182
176
 
183
177
  private:
178
+ ChannelControlHelper* parent_helper() const override {
179
+ return priority_->priority_policy_->channel_control_helper();
180
+ }
181
+
184
182
  RefCountedPtr<ChildPriority> priority_;
185
183
  };
186
184
 
@@ -793,14 +791,6 @@ void PriorityLb::ChildPriority::MaybeReactivateLocked() {
793
791
  // PriorityLb::ChildPriority::Helper
794
792
  //
795
793
 
796
- RefCountedPtr<SubchannelInterface>
797
- PriorityLb::ChildPriority::Helper::CreateSubchannel(ServerAddress address,
798
- const ChannelArgs& args) {
799
- if (priority_->priority_policy_->shutting_down_) return nullptr;
800
- return priority_->priority_policy_->channel_control_helper()
801
- ->CreateSubchannel(std::move(address), args);
802
- }
803
-
804
794
  void PriorityLb::ChildPriority::Helper::UpdateState(
805
795
  grpc_connectivity_state state, const absl::Status& status,
806
796
  RefCountedPtr<SubchannelPicker> picker) {
@@ -817,22 +807,6 @@ void PriorityLb::ChildPriority::Helper::RequestReresolution() {
817
807
  priority_->priority_policy_->channel_control_helper()->RequestReresolution();
818
808
  }
819
809
 
820
- absl::string_view PriorityLb::ChildPriority::Helper::GetAuthority() {
821
- return priority_->priority_policy_->channel_control_helper()->GetAuthority();
822
- }
823
-
824
- EventEngine* PriorityLb::ChildPriority::Helper::GetEventEngine() {
825
- return priority_->priority_policy_->channel_control_helper()
826
- ->GetEventEngine();
827
- }
828
-
829
- void PriorityLb::ChildPriority::Helper::AddTraceEvent(
830
- TraceSeverity severity, absl::string_view message) {
831
- if (priority_->priority_policy_->shutting_down_) return;
832
- priority_->priority_policy_->channel_control_helper()->AddTraceEvent(severity,
833
- message);
834
- }
835
-
836
810
  //
837
811
  // factory
838
812
  //
@@ -470,16 +470,14 @@ RingHash::RingHashSubchannelList::Ring::Ring(
470
470
  address_weights.reserve(subchannel_list->num_subchannels());
471
471
  for (size_t i = 0; i < subchannel_list->num_subchannels(); ++i) {
472
472
  RingHashSubchannelData* sd = subchannel_list->subchannel(i);
473
- const ServerAddressWeightAttribute* weight_attribute = static_cast<
474
- const ServerAddressWeightAttribute*>(sd->address().GetAttribute(
475
- ServerAddressWeightAttribute::kServerAddressWeightAttributeKey));
473
+ auto weight_arg = sd->address().args().GetInt(GRPC_ARG_ADDRESS_WEIGHT);
476
474
  AddressWeight address_weight;
477
475
  address_weight.address =
478
476
  grpc_sockaddr_to_string(&sd->address().address(), false).value();
479
477
  // Weight should never be zero, but ignore it just in case, since
480
478
  // that value would screw up the ring-building algorithm.
481
- if (weight_attribute != nullptr && weight_attribute->weight() > 0) {
482
- address_weight.weight = weight_attribute->weight();
479
+ if (weight_arg.value_or(0) > 0) {
480
+ address_weight.weight = *weight_arg;
483
481
  }
484
482
  sum += address_weight.weight;
485
483
  address_weights.push_back(std::move(address_weight));
@@ -816,7 +814,7 @@ absl::Status RingHash::UpdateLocked(UpdateArgs args) {
816
814
  }
817
815
  latest_pending_subchannel_list_ = MakeRefCounted<RingHashSubchannelList>(
818
816
  this, std::move(addresses), args.args);
819
- latest_pending_subchannel_list_->StartWatchingLocked();
817
+ latest_pending_subchannel_list_->StartWatchingLocked(args.args);
820
818
  // If we have no existing list or the new list is empty, immediately
821
819
  // promote the new list.
822
820
  // Otherwise, do nothing; the new list will be promoted when the
@@ -48,7 +48,6 @@
48
48
  #include "absl/strings/str_format.h"
49
49
  #include "absl/strings/str_join.h"
50
50
  #include "absl/strings/string_view.h"
51
- #include "absl/strings/strip.h"
52
51
  #include "absl/types/optional.h"
53
52
  #include "upb/base/string_view.h"
54
53
  #include "upb/upb.hpp"
@@ -88,10 +87,10 @@
88
87
  #include "src/core/lib/json/json_args.h"
89
88
  #include "src/core/lib/json/json_object_loader.h"
90
89
  #include "src/core/lib/json/json_writer.h"
90
+ #include "src/core/lib/load_balancing/delegating_helper.h"
91
91
  #include "src/core/lib/load_balancing/lb_policy.h"
92
92
  #include "src/core/lib/load_balancing/lb_policy_factory.h"
93
93
  #include "src/core/lib/load_balancing/lb_policy_registry.h"
94
- #include "src/core/lib/load_balancing/subchannel_interface.h"
95
94
  #include "src/core/lib/resolver/resolver_registry.h"
96
95
  #include "src/core/lib/resolver/server_address.h"
97
96
  #include "src/core/lib/security/credentials/credentials.h"
@@ -103,7 +102,6 @@
103
102
  #include "src/core/lib/surface/channel.h"
104
103
  #include "src/core/lib/transport/connectivity_state.h"
105
104
  #include "src/core/lib/transport/error_utils.h"
106
- #include "src/core/lib/uri/uri_parser.h"
107
105
  #include "src/proto/grpc/lookup/v1/rls.upb.h"
108
106
 
109
107
  namespace grpc_core {
@@ -325,7 +323,7 @@ class RlsLb : public LoadBalancingPolicy {
325
323
  private:
326
324
  // ChannelControlHelper object that allows the child policy to update state
327
325
  // with the wrapper.
328
- class ChildPolicyHelper : public LoadBalancingPolicy::ChannelControlHelper {
326
+ class ChildPolicyHelper : public DelegatingChannelControlHelper {
329
327
  public:
330
328
  explicit ChildPolicyHelper(WeakRefCountedPtr<ChildPolicyWrapper> wrapper)
331
329
  : wrapper_(std::move(wrapper)) {}
@@ -333,18 +331,15 @@ class RlsLb : public LoadBalancingPolicy {
333
331
  wrapper_.reset(DEBUG_LOCATION, "ChildPolicyHelper");
334
332
  }
335
333
 
336
- RefCountedPtr<SubchannelInterface> CreateSubchannel(
337
- ServerAddress address, const ChannelArgs& args) override;
338
334
  void UpdateState(grpc_connectivity_state state,
339
335
  const absl::Status& status,
340
336
  RefCountedPtr<SubchannelPicker> picker) override;
341
- void RequestReresolution() override;
342
- absl::string_view GetAuthority() override;
343
- grpc_event_engine::experimental::EventEngine* GetEventEngine() override;
344
- void AddTraceEvent(TraceSeverity severity,
345
- absl::string_view message) override;
346
337
 
347
338
  private:
339
+ ChannelControlHelper* parent_helper() const override {
340
+ return wrapper_->lb_policy_->channel_control_helper();
341
+ }
342
+
348
343
  WeakRefCountedPtr<ChildPolicyWrapper> wrapper_;
349
344
  };
350
345
 
@@ -696,9 +691,6 @@ class RlsLb : public LoadBalancingPolicy {
696
691
  // Updates the picker in the work serializer.
697
692
  void UpdatePickerLocked() ABSL_LOCKS_EXCLUDED(&mu_);
698
693
 
699
- // The name of the server for the channel.
700
- std::string server_name_;
701
-
702
694
  // Mutex to guard LB policy state that is accessed by the picker.
703
695
  Mutex mu_;
704
696
  bool is_shutdown_ ABSL_GUARDED_BY(mu_) = false;
@@ -866,21 +858,6 @@ absl::Status RlsLb::ChildPolicyWrapper::MaybeFinishUpdate() {
866
858
  // RlsLb::ChildPolicyWrapper::ChildPolicyHelper
867
859
  //
868
860
 
869
- RefCountedPtr<SubchannelInterface>
870
- RlsLb::ChildPolicyWrapper::ChildPolicyHelper::CreateSubchannel(
871
- ServerAddress address, const ChannelArgs& args) {
872
- if (GRPC_TRACE_FLAG_ENABLED(grpc_lb_rls_trace)) {
873
- gpr_log(GPR_INFO,
874
- "[rlslb %p] ChildPolicyWrapper=%p [%s] ChildPolicyHelper=%p: "
875
- "CreateSubchannel() for %s",
876
- wrapper_->lb_policy_.get(), wrapper_.get(),
877
- wrapper_->target_.c_str(), this, address.ToString().c_str());
878
- }
879
- if (wrapper_->is_shutdown_) return nullptr;
880
- return wrapper_->lb_policy_->channel_control_helper()->CreateSubchannel(
881
- std::move(address), args);
882
- }
883
-
884
861
  void RlsLb::ChildPolicyWrapper::ChildPolicyHelper::UpdateState(
885
862
  grpc_connectivity_state state, const absl::Status& status,
886
863
  RefCountedPtr<SubchannelPicker> picker) {
@@ -910,34 +887,6 @@ void RlsLb::ChildPolicyWrapper::ChildPolicyHelper::UpdateState(
910
887
  wrapper_->lb_policy_->UpdatePickerLocked();
911
888
  }
912
889
 
913
- void RlsLb::ChildPolicyWrapper::ChildPolicyHelper::RequestReresolution() {
914
- if (GRPC_TRACE_FLAG_ENABLED(grpc_lb_rls_trace)) {
915
- gpr_log(GPR_INFO,
916
- "[rlslb %p] ChildPolicyWrapper=%p [%s] ChildPolicyHelper=%p: "
917
- "RequestReresolution",
918
- wrapper_->lb_policy_.get(), wrapper_.get(),
919
- wrapper_->target_.c_str(), this);
920
- }
921
- if (wrapper_->is_shutdown_) return;
922
- wrapper_->lb_policy_->channel_control_helper()->RequestReresolution();
923
- }
924
-
925
- absl::string_view RlsLb::ChildPolicyWrapper::ChildPolicyHelper::GetAuthority() {
926
- return wrapper_->lb_policy_->channel_control_helper()->GetAuthority();
927
- }
928
-
929
- grpc_event_engine::experimental::EventEngine*
930
- RlsLb::ChildPolicyWrapper::ChildPolicyHelper::GetEventEngine() {
931
- return wrapper_->lb_policy_->channel_control_helper()->GetEventEngine();
932
- }
933
-
934
- void RlsLb::ChildPolicyWrapper::ChildPolicyHelper::AddTraceEvent(
935
- TraceSeverity severity, absl::string_view message) {
936
- if (wrapper_->is_shutdown_) return;
937
- wrapper_->lb_policy_->channel_control_helper()->AddTraceEvent(severity,
938
- message);
939
- }
940
-
941
890
  //
942
891
  // RlsLb::Picker
943
892
  //
@@ -945,7 +894,7 @@ void RlsLb::ChildPolicyWrapper::ChildPolicyHelper::AddTraceEvent(
945
894
  // Builds the key to be used for a request based on path and initial_metadata.
946
895
  std::map<std::string, std::string> BuildKeyMap(
947
896
  const RlsLbConfig::KeyBuilderMap& key_builder_map, absl::string_view path,
948
- const std::string& host,
897
+ absl::string_view host,
949
898
  const LoadBalancingPolicy::MetadataInterface* initial_metadata) {
950
899
  size_t last_slash_pos = path.npos; // May need this a few times, so cache it.
951
900
  // Find key builder for this path.
@@ -981,7 +930,7 @@ std::map<std::string, std::string> BuildKeyMap(
981
930
  key_builder->constant_keys.end());
982
931
  // Add host key.
983
932
  if (!key_builder->host_key.empty()) {
984
- key_map[key_builder->host_key] = host;
933
+ key_map[key_builder->host_key] = std::string(host);
985
934
  }
986
935
  // Add service key.
987
936
  if (!key_builder->service_key.empty()) {
@@ -1016,9 +965,10 @@ RlsLb::Picker::Picker(RefCountedPtr<RlsLb> lb_policy)
1016
965
 
1017
966
  LoadBalancingPolicy::PickResult RlsLb::Picker::Pick(PickArgs args) {
1018
967
  // Construct key for request.
1019
- RequestKey key = {BuildKeyMap(config_->key_builder_map(), args.path,
1020
- lb_policy_->server_name_,
1021
- args.initial_metadata)};
968
+ RequestKey key = {
969
+ BuildKeyMap(config_->key_builder_map(), args.path,
970
+ lb_policy_->channel_control_helper()->GetAuthority(),
971
+ args.initial_metadata)};
1022
972
  if (GRPC_TRACE_FLAG_ENABLED(grpc_lb_rls_trace)) {
1023
973
  gpr_log(GPR_INFO, "[rlslb %p] picker=%p: request keys: %s",
1024
974
  lb_policy_.get(), this, key.ToString().c_str());
@@ -1562,11 +1512,13 @@ RlsLb::RlsChannel::RlsChannel(RefCountedPtr<RlsLb> lb_policy)
1562
1512
  GRPC_TRACE_FLAG_ENABLED(grpc_lb_rls_trace) ? "RlsChannel" : nullptr),
1563
1513
  lb_policy_(std::move(lb_policy)) {
1564
1514
  // Get channel creds from parent channel.
1565
- // TODO(roth): Once we eliminate insecure builds, get this via a
1566
- // method on the helper instead of digging through channel args.
1567
- auto* creds = lb_policy_->channel_args_.GetObject<grpc_channel_credentials>();
1515
+ // Note that we are using the "unsafe" channel creds here, which do
1516
+ // include any associated call creds. This is safe in this case,
1517
+ // because we are using the parent channel's authority on the RLS channel.
1518
+ auto creds =
1519
+ lb_policy_->channel_control_helper()->GetUnsafeChannelCredentials();
1568
1520
  // Use the parent channel's authority.
1569
- std::string authority(lb_policy_->channel_control_helper()->GetAuthority());
1521
+ auto authority = lb_policy_->channel_control_helper()->GetAuthority();
1570
1522
  ChannelArgs args = ChannelArgs()
1571
1523
  .Set(GRPC_ARG_DEFAULT_AUTHORITY, authority)
1572
1524
  .Set(GRPC_ARG_CHANNELZ_IS_INTERNAL_CHANNEL, 1);
@@ -1589,7 +1541,7 @@ RlsLb::RlsChannel::RlsChannel(RefCountedPtr<RlsLb> lb_policy)
1589
1541
  .Set(GRPC_ARG_SERVICE_CONFIG_DISABLE_RESOLUTION, 1);
1590
1542
  }
1591
1543
  channel_ = grpc_channel_create(lb_policy_->config_->lookup_service().c_str(),
1592
- creds, args.ToC().get());
1544
+ creds.get(), args.ToC().get());
1593
1545
  if (GRPC_TRACE_FLAG_ENABLED(grpc_lb_rls_trace)) {
1594
1546
  gpr_log(GPR_INFO, "[rlslb %p] RlsChannel=%p: created channel %p for %s",
1595
1547
  lb_policy_.get(), this, channel_,
@@ -1901,18 +1853,7 @@ RlsLb::ResponseInfo RlsLb::RlsRequest::ParseResponseProto() {
1901
1853
  // RlsLb
1902
1854
  //
1903
1855
 
1904
- std::string GetServerUri(const ChannelArgs& args) {
1905
- auto server_uri_str = args.GetString(GRPC_ARG_SERVER_URI);
1906
- GPR_ASSERT(server_uri_str.has_value());
1907
- absl::StatusOr<URI> uri = URI::Parse(*server_uri_str);
1908
- GPR_ASSERT(uri.ok());
1909
- return std::string(absl::StripPrefix(uri->path(), "/"));
1910
- }
1911
-
1912
- RlsLb::RlsLb(Args args)
1913
- : LoadBalancingPolicy(std::move(args)),
1914
- server_name_(GetServerUri(channel_args())),
1915
- cache_(this) {
1856
+ RlsLb::RlsLb(Args args) : LoadBalancingPolicy(std::move(args)), cache_(this) {
1916
1857
  if (GRPC_TRACE_FLAG_ENABLED(grpc_lb_rls_trace)) {
1917
1858
  gpr_log(GPR_INFO, "[rlslb %p] policy created", this);
1918
1859
  }
@@ -298,7 +298,7 @@ absl::Status RoundRobin::UpdateLocked(UpdateArgs args) {
298
298
  }
299
299
  latest_pending_subchannel_list_ = MakeRefCounted<RoundRobinSubchannelList>(
300
300
  this, std::move(addresses), args.args);
301
- latest_pending_subchannel_list_->StartWatchingLocked();
301
+ latest_pending_subchannel_list_->StartWatchingLocked(args.args);
302
302
  // If the new list is empty, immediately promote it to
303
303
  // subchannel_list_ and report TRANSIENT_FAILURE.
304
304
  if (latest_pending_subchannel_list_->num_subchannels() == 0) {
@@ -158,7 +158,7 @@ class SubchannelData {
158
158
  // Starts watching the connectivity state of the subchannel.
159
159
  // ProcessConnectivityChangeLocked() will be called whenever the
160
160
  // connectivity state changes.
161
- void StartConnectivityWatchLocked();
161
+ void StartConnectivityWatchLocked(const ChannelArgs& args);
162
162
 
163
163
  // Cancels watching the connectivity state of the subchannel.
164
164
  void CancelConnectivityWatchLocked(const char* reason);
@@ -173,6 +173,7 @@ class SubchannelData {
173
173
  // Will be non-null when the subchannel's state is being watched.
174
174
  SubchannelInterface::ConnectivityStateWatcherInterface* pending_watcher_ =
175
175
  nullptr;
176
+ SubchannelInterface::DataWatcherInterface* health_watcher_ = nullptr;
176
177
  // Data updated by the watcher.
177
178
  absl::optional<grpc_connectivity_state> connectivity_state_;
178
179
  absl::Status connectivity_status_;
@@ -184,7 +185,7 @@ class SubchannelList : public DualRefCounted<SubchannelListType> {
184
185
  public:
185
186
  // Starts watching the connectivity state of all subchannels.
186
187
  // Must be called immediately after instantiation.
187
- void StartWatchingLocked();
188
+ void StartWatchingLocked(const ChannelArgs& args);
188
189
 
189
190
  // The number of subchannels in the list.
190
191
  size_t num_subchannels() const { return subchannels_.size(); }
@@ -259,7 +260,7 @@ void SubchannelData<SubchannelListType, SubchannelDataType>::Watcher::
259
260
  GPR_INFO,
260
261
  "[%s %p] subchannel list %p index %" PRIuPTR " of %" PRIuPTR
261
262
  " (subchannel %p): connectivity changed: old_state=%s, new_state=%s, "
262
- "status=%s, shutting_down=%d, pending_watcher=%p",
263
+ "status=%s, shutting_down=%d, pending_watcher=%p, health_watcher=%p",
263
264
  subchannel_list_->tracer(), subchannel_list_->policy(),
264
265
  subchannel_list_.get(), subchannel_data_->Index(),
265
266
  subchannel_list_->num_subchannels(),
@@ -268,10 +269,12 @@ void SubchannelData<SubchannelListType, SubchannelDataType>::Watcher::
268
269
  ? ConnectivityStateName(*subchannel_data_->connectivity_state_)
269
270
  : "N/A"),
270
271
  ConnectivityStateName(new_state), status.ToString().c_str(),
271
- subchannel_list_->shutting_down(), subchannel_data_->pending_watcher_);
272
+ subchannel_list_->shutting_down(), subchannel_data_->pending_watcher_,
273
+ subchannel_data_->health_watcher_);
272
274
  }
273
275
  if (!subchannel_list_->shutting_down() &&
274
- subchannel_data_->pending_watcher_ != nullptr) {
276
+ (subchannel_data_->pending_watcher_ != nullptr ||
277
+ subchannel_data_->health_watcher_ != nullptr)) {
275
278
  absl::optional<grpc_connectivity_state> old_state =
276
279
  subchannel_data_->connectivity_state_;
277
280
  subchannel_data_->connectivity_state_ = new_state;
@@ -322,8 +325,8 @@ void SubchannelData<SubchannelListType,
322
325
  }
323
326
 
324
327
  template <typename SubchannelListType, typename SubchannelDataType>
325
- void SubchannelData<SubchannelListType,
326
- SubchannelDataType>::StartConnectivityWatchLocked() {
328
+ void SubchannelData<SubchannelListType, SubchannelDataType>::
329
+ StartConnectivityWatchLocked(const ChannelArgs& args) {
327
330
  if (GPR_UNLIKELY(subchannel_list_->tracer() != nullptr)) {
328
331
  gpr_log(
329
332
  GPR_INFO,
@@ -336,14 +339,16 @@ void SubchannelData<SubchannelListType,
336
339
  subchannel_list()->health_check_service_name_.value_or("N/A").c_str());
337
340
  }
338
341
  GPR_ASSERT(pending_watcher_ == nullptr);
342
+ GPR_ASSERT(health_watcher_ == nullptr);
339
343
  auto watcher = std::make_unique<Watcher>(
340
344
  this, subchannel_list()->WeakRef(DEBUG_LOCATION, "Watcher"));
341
- pending_watcher_ = watcher.get();
342
345
  if (subchannel_list()->health_check_service_name_.has_value()) {
343
- subchannel_->AddDataWatcher(MakeHealthCheckWatcher(
344
- subchannel_list_->work_serializer(),
345
- *subchannel_list()->health_check_service_name_, std::move(watcher)));
346
+ auto health_watcher = MakeHealthCheckWatcher(
347
+ subchannel_list_->work_serializer(), args, std::move(watcher));
348
+ health_watcher_ = health_watcher.get();
349
+ subchannel_->AddDataWatcher(std::move(health_watcher));
346
350
  } else {
351
+ pending_watcher_ = watcher.get();
347
352
  subchannel_->WatchConnectivityState(std::move(watcher));
348
353
  }
349
354
  }
@@ -360,12 +365,19 @@ void SubchannelData<SubchannelListType, SubchannelDataType>::
360
365
  subchannel_list_, Index(), subchannel_list_->num_subchannels(),
361
366
  subchannel_.get(), reason);
362
367
  }
363
- // No need to cancel if using health checking, because the data
364
- // watcher will be destroyed automatically when the subchannel is.
365
- if (!subchannel_list()->health_check_service_name_.has_value()) {
366
- subchannel_->CancelConnectivityStateWatch(pending_watcher_);
367
- }
368
+ subchannel_->CancelConnectivityStateWatch(pending_watcher_);
368
369
  pending_watcher_ = nullptr;
370
+ } else if (health_watcher_ != nullptr) {
371
+ if (GPR_UNLIKELY(subchannel_list_->tracer() != nullptr)) {
372
+ gpr_log(GPR_INFO,
373
+ "[%s %p] subchannel list %p index %" PRIuPTR " of %" PRIuPTR
374
+ " (subchannel %p): canceling health watch (%s)",
375
+ subchannel_list_->tracer(), subchannel_list_->policy(),
376
+ subchannel_list_, Index(), subchannel_list_->num_subchannels(),
377
+ subchannel_.get(), reason);
378
+ }
379
+ subchannel_->CancelDataWatcher(health_watcher_);
380
+ health_watcher_ = nullptr;
369
381
  }
370
382
  }
371
383
 
@@ -434,10 +446,10 @@ SubchannelList<SubchannelListType, SubchannelDataType>::~SubchannelList() {
434
446
  }
435
447
 
436
448
  template <typename SubchannelListType, typename SubchannelDataType>
437
- void SubchannelList<SubchannelListType,
438
- SubchannelDataType>::StartWatchingLocked() {
449
+ void SubchannelList<SubchannelListType, SubchannelDataType>::
450
+ StartWatchingLocked(const ChannelArgs& args) {
439
451
  for (auto& sd : subchannels_) {
440
- sd->StartConnectivityWatchLocked();
452
+ sd->StartConnectivityWatchLocked(args);
441
453
  }
442
454
  }
443
455
 
@@ -703,7 +703,7 @@ absl::Status WeightedRoundRobin::UpdateLocked(UpdateArgs args) {
703
703
  latest_pending_subchannel_list_ =
704
704
  MakeRefCounted<WeightedRoundRobinSubchannelList>(
705
705
  this, std::move(addresses), args.args);
706
- latest_pending_subchannel_list_->StartWatchingLocked();
706
+ latest_pending_subchannel_list_->StartWatchingLocked(args.args);
707
707
  // If the new list is empty, immediately promote it to
708
708
  // subchannel_list_ and report TRANSIENT_FAILURE.
709
709
  if (latest_pending_subchannel_list_->num_subchannels() == 0) {
@@ -909,12 +909,21 @@ void WeightedRoundRobin::WeightedRoundRobinSubchannelData::
909
909
  subchannel()->RequestConnection();
910
910
  } else if (new_state == GRPC_CHANNEL_READY) {
911
911
  // If we transition back to READY state, restart the blackout period.
912
+ // Skip this if this is the initial notification for this
913
+ // subchannel (which happens whenever we get updated addresses and
914
+ // create a new endpoint list). Also skip it if the previous state
915
+ // was READY (which should never happen in practice, but we've seen
916
+ // at least one bug that caused this in the outlier_detection
917
+ // policy, so let's be defensive here).
918
+ //
912
919
  // Note that we cannot guarantee that we will never receive
913
920
  // lingering callbacks for backend metric reports from the previous
914
921
  // connection after the new connection has been established, but they
915
922
  // should be masked by new backend metric reports from the new
916
923
  // connection by the time the blackout period ends.
917
- weight_->ResetNonEmptySince();
924
+ if (old_state.has_value() && old_state != GRPC_CHANNEL_READY) {
925
+ weight_->ResetNonEmptySince();
926
+ }
918
927
  }
919
928
  // Update logical connectivity state.
920
929
  UpdateLogicalConnectivityStateLocked(new_state);
@@ -56,10 +56,10 @@
56
56
  #include "src/core/lib/json/json.h"
57
57
  #include "src/core/lib/json/json_args.h"
58
58
  #include "src/core/lib/json/json_object_loader.h"
59
+ #include "src/core/lib/load_balancing/delegating_helper.h"
59
60
  #include "src/core/lib/load_balancing/lb_policy.h"
60
61
  #include "src/core/lib/load_balancing/lb_policy_factory.h"
61
62
  #include "src/core/lib/load_balancing/lb_policy_registry.h"
62
- #include "src/core/lib/load_balancing/subchannel_interface.h"
63
63
  #include "src/core/lib/resolver/server_address.h"
64
64
  #include "src/core/lib/transport/connectivity_state.h"
65
65
 
@@ -170,25 +170,23 @@ class WeightedTargetLb : public LoadBalancingPolicy {
170
170
  RefCountedPtr<SubchannelPicker> picker() const { return picker_; }
171
171
 
172
172
  private:
173
- class Helper : public ChannelControlHelper {
173
+ class Helper : public DelegatingChannelControlHelper {
174
174
  public:
175
175
  explicit Helper(RefCountedPtr<WeightedChild> weighted_child)
176
176
  : weighted_child_(std::move(weighted_child)) {}
177
177
 
178
178
  ~Helper() override { weighted_child_.reset(DEBUG_LOCATION, "Helper"); }
179
179
 
180
- RefCountedPtr<SubchannelInterface> CreateSubchannel(
181
- ServerAddress address, const ChannelArgs& args) override;
182
180
  void UpdateState(grpc_connectivity_state state,
183
181
  const absl::Status& status,
184
182
  RefCountedPtr<SubchannelPicker> picker) override;
185
- void RequestReresolution() override;
186
- absl::string_view GetAuthority() override;
187
- grpc_event_engine::experimental::EventEngine* GetEventEngine() override;
188
- void AddTraceEvent(TraceSeverity severity,
189
- absl::string_view message) override;
190
183
 
191
184
  private:
185
+ ChannelControlHelper* parent_helper() const override {
186
+ return weighted_child_->weighted_target_policy_
187
+ ->channel_control_helper();
188
+ }
189
+
192
190
  RefCountedPtr<WeightedChild> weighted_child_;
193
191
  };
194
192
 
@@ -674,14 +672,6 @@ void WeightedTargetLb::WeightedChild::DeactivateLocked() {
674
672
  // WeightedTargetLb::WeightedChild::Helper
675
673
  //
676
674
 
677
- RefCountedPtr<SubchannelInterface>
678
- WeightedTargetLb::WeightedChild::Helper::CreateSubchannel(
679
- ServerAddress address, const ChannelArgs& args) {
680
- if (weighted_child_->weighted_target_policy_->shutting_down_) return nullptr;
681
- return weighted_child_->weighted_target_policy_->channel_control_helper()
682
- ->CreateSubchannel(std::move(address), args);
683
- }
684
-
685
675
  void WeightedTargetLb::WeightedChild::Helper::UpdateState(
686
676
  grpc_connectivity_state state, const absl::Status& status,
687
677
  RefCountedPtr<SubchannelPicker> picker) {
@@ -690,30 +680,6 @@ void WeightedTargetLb::WeightedChild::Helper::UpdateState(
690
680
  std::move(picker));
691
681
  }
692
682
 
693
- void WeightedTargetLb::WeightedChild::Helper::RequestReresolution() {
694
- if (weighted_child_->weighted_target_policy_->shutting_down_) return;
695
- weighted_child_->weighted_target_policy_->channel_control_helper()
696
- ->RequestReresolution();
697
- }
698
-
699
- absl::string_view WeightedTargetLb::WeightedChild::Helper::GetAuthority() {
700
- return weighted_child_->weighted_target_policy_->channel_control_helper()
701
- ->GetAuthority();
702
- }
703
-
704
- grpc_event_engine::experimental::EventEngine*
705
- WeightedTargetLb::WeightedChild::Helper::GetEventEngine() {
706
- return weighted_child_->weighted_target_policy_->channel_control_helper()
707
- ->GetEventEngine();
708
- }
709
-
710
- void WeightedTargetLb::WeightedChild::Helper::AddTraceEvent(
711
- TraceSeverity severity, absl::string_view message) {
712
- if (weighted_child_->weighted_target_policy_->shutting_down_) return;
713
- weighted_child_->weighted_target_policy_->channel_control_helper()
714
- ->AddTraceEvent(severity, message);
715
- }
716
-
717
683
  //
718
684
  // factory
719
685
  //