grpc 1.56.2 → 1.57.0.pre1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (383) hide show
  1. checksums.yaml +4 -4
  2. data/Makefile +29 -22
  3. data/include/grpc/event_engine/event_engine.h +22 -32
  4. data/include/grpc/impl/grpc_types.h +3 -0
  5. data/include/grpc/support/port_platform.h +29 -23
  6. data/src/core/ext/filters/client_channel/client_channel.cc +44 -8
  7. data/src/core/ext/filters/client_channel/dynamic_filters.h +3 -3
  8. data/src/core/ext/filters/client_channel/http_proxy.cc +5 -0
  9. data/src/core/ext/filters/client_channel/lb_policy/address_filtering.cc +21 -52
  10. data/src/core/ext/filters/client_channel/lb_policy/address_filtering.h +19 -7
  11. data/src/core/ext/filters/client_channel/lb_policy/child_policy_handler.cc +25 -35
  12. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc +78 -132
  13. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.cc +2 -1
  14. data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.cc +4 -3
  15. data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h +3 -1
  16. data/src/core/ext/filters/client_channel/lb_policy/health_check_client.cc +38 -15
  17. data/src/core/ext/filters/client_channel/lb_policy/health_check_client.h +3 -5
  18. data/src/core/ext/filters/client_channel/lb_policy/health_check_client_internal.h +22 -6
  19. data/src/core/ext/filters/client_channel/lb_policy/oob_backend_metric_internal.h +2 -0
  20. data/src/core/ext/filters/client_channel/lb_policy/outlier_detection/outlier_detection.cc +97 -71
  21. data/src/core/ext/filters/client_channel/lb_policy/outlier_detection/outlier_detection.h +2 -16
  22. data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc +56 -11
  23. data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.h +25 -0
  24. data/src/core/ext/filters/client_channel/lb_policy/priority/priority.cc +6 -32
  25. data/src/core/ext/filters/client_channel/lb_policy/ring_hash/ring_hash.cc +4 -6
  26. data/src/core/ext/filters/client_channel/lb_policy/rls/rls.cc +20 -79
  27. data/src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc +1 -1
  28. data/src/core/ext/filters/client_channel/lb_policy/subchannel_list.h +31 -19
  29. data/src/core/ext/filters/client_channel/lb_policy/weighted_round_robin/weighted_round_robin.cc +1 -1
  30. data/src/core/ext/filters/client_channel/lb_policy/weighted_target/weighted_target.cc +7 -41
  31. data/src/core/ext/filters/client_channel/lb_policy/xds/cds.cc +3 -67
  32. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_channel_args.h +8 -0
  33. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_impl.cc +31 -74
  34. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_manager.cc +7 -51
  35. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_resolver.cc +16 -87
  36. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_override_host.cc +16 -50
  37. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_wrr_locality.cc +12 -74
  38. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc +1 -4
  39. data/src/core/ext/filters/client_channel/resolver/dns/event_engine/event_engine_client_channel_resolver.cc +69 -59
  40. data/src/core/ext/filters/client_channel/resolver/polling_resolver.cc +7 -2
  41. data/src/core/ext/filters/client_channel/resolver/polling_resolver.h +1 -0
  42. data/src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc +25 -13
  43. data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.cc +366 -311
  44. data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.h +17 -1
  45. data/src/core/ext/filters/client_channel/retry_filter.cc +39 -2498
  46. data/src/core/ext/filters/client_channel/retry_filter.h +91 -1
  47. data/src/core/ext/filters/client_channel/retry_filter_legacy_call_data.cc +2052 -0
  48. data/src/core/ext/filters/client_channel/retry_filter_legacy_call_data.h +442 -0
  49. data/src/core/ext/filters/client_channel/service_config_channel_arg_filter.cc +38 -58
  50. data/src/core/ext/filters/client_channel/subchannel.h +3 -3
  51. data/src/core/ext/filters/client_channel/subchannel_interface_internal.h +3 -0
  52. data/src/core/ext/filters/rbac/rbac_filter.cc +40 -111
  53. data/src/core/ext/filters/rbac/rbac_filter.h +12 -30
  54. data/src/core/ext/filters/stateful_session/stateful_session_filter.cc +162 -86
  55. data/src/core/ext/filters/stateful_session/stateful_session_filter.h +0 -6
  56. data/src/core/ext/transport/chttp2/server/chttp2_server.cc +7 -4
  57. data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +131 -186
  58. data/src/core/ext/transport/chttp2/transport/decode_huff.cc +6569 -174
  59. data/src/core/ext/transport/chttp2/transport/decode_huff.h +2278 -441
  60. data/src/core/ext/transport/chttp2/transport/frame_ping.cc +2 -3
  61. data/src/core/ext/transport/chttp2/transport/hpack_parse_result.h +4 -3
  62. data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +9 -8
  63. data/src/core/ext/transport/chttp2/transport/hpack_parser_table.cc +4 -4
  64. data/src/core/ext/transport/chttp2/transport/hpack_parser_table.h +3 -2
  65. data/src/core/ext/transport/chttp2/transport/internal.h +8 -4
  66. data/src/core/ext/transport/chttp2/transport/parsing.cc +15 -3
  67. data/src/core/ext/transport/chttp2/transport/writing.cc +2 -3
  68. data/src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.c +27 -6
  69. data/src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.h +143 -0
  70. data/src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.c +2 -9
  71. data/src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.h +0 -39
  72. data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.c +13 -8
  73. data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.h +35 -6
  74. data/src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.c +17 -13
  75. data/src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.h +85 -20
  76. data/src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.c +26 -7
  77. data/src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.h +45 -3
  78. data/src/core/ext/upb-generated/envoy/config/metrics/v3/metrics_service.upb.c +4 -3
  79. data/src/core/ext/upb-generated/envoy/config/metrics/v3/metrics_service.upb.h +21 -0
  80. data/src/core/ext/upb-generated/envoy/config/overload/v3/overload.upb.c +30 -6
  81. data/src/core/ext/upb-generated/envoy/config/overload/v3/overload.upb.h +180 -0
  82. data/src/core/ext/upb-generated/envoy/data/accesslog/v3/accesslog.upb.c +558 -0
  83. data/src/core/ext/upb-generated/envoy/data/accesslog/v3/accesslog.upb.h +2710 -0
  84. data/src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3/fault.upb.c +30 -11
  85. data/src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3/fault.upb.h +53 -24
  86. data/src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3/router.upb.c +30 -5
  87. data/src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3/router.upb.h +110 -0
  88. data/src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.c +41 -15
  89. data/src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h +150 -27
  90. 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
  91. data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb.c +47 -0
  92. data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb.h +93 -0
  93. data/src/core/ext/upbdefs-generated/envoy/config/accesslog/v3/accesslog.upbdefs.c +88 -76
  94. data/src/core/ext/upbdefs-generated/envoy/config/accesslog/v3/accesslog.upbdefs.h +5 -0
  95. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/config_source.upbdefs.c +11 -12
  96. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/config_source.upbdefs.h +0 -5
  97. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_service.upbdefs.c +162 -160
  98. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/health_check.upbdefs.c +129 -118
  99. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/protocol.upbdefs.c +141 -135
  100. data/src/core/ext/upbdefs-generated/envoy/config/metrics/v3/metrics_service.upbdefs.c +19 -12
  101. data/src/core/ext/upbdefs-generated/envoy/config/overload/v3/overload.upbdefs.c +38 -30
  102. data/src/core/ext/upbdefs-generated/envoy/config/overload/v3/overload.upbdefs.h +5 -0
  103. data/src/core/ext/upbdefs-generated/envoy/data/accesslog/v3/accesslog.upbdefs.c +402 -0
  104. data/src/core/ext/upbdefs-generated/envoy/data/accesslog/v3/accesslog.upbdefs.h +111 -0
  105. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3/fault.upbdefs.c +80 -74
  106. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3/router.upbdefs.c +63 -47
  107. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3/router.upbdefs.h +5 -0
  108. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.c +315 -293
  109. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.h +5 -0
  110. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/regex.upbdefs.c +29 -29
  111. data/src/core/ext/xds/xds_bootstrap_grpc.cc +33 -30
  112. data/src/core/ext/xds/xds_bootstrap_grpc.h +5 -13
  113. data/src/core/ext/xds/xds_client_grpc.cc +11 -6
  114. data/src/core/ext/xds/xds_client_grpc.h +16 -2
  115. data/src/core/ext/xds/xds_client_stats.h +10 -0
  116. data/src/core/ext/xds/xds_cluster.cc +26 -16
  117. data/src/core/ext/xds/xds_endpoint.cc +4 -7
  118. data/src/core/ext/xds/xds_health_status.cc +0 -17
  119. data/src/core/ext/xds/xds_health_status.h +5 -25
  120. data/src/core/ext/xds/xds_lb_policy_registry.cc +39 -0
  121. data/src/core/ext/xds/xds_route_config.cc +4 -0
  122. data/src/core/ext/xds/xds_transport_grpc.cc +1 -3
  123. data/src/core/lib/address_utils/parse_address.cc +63 -1
  124. data/src/core/lib/address_utils/parse_address.h +8 -0
  125. data/src/core/lib/address_utils/sockaddr_utils.cc +46 -1
  126. data/src/core/lib/address_utils/sockaddr_utils.h +2 -2
  127. data/src/core/lib/channel/channel_args.cc +21 -10
  128. data/src/core/lib/channel/channel_args.h +3 -0
  129. data/src/core/lib/channel/connected_channel.cc +4 -1
  130. data/src/core/lib/channel/promise_based_filter.h +1 -0
  131. data/src/core/lib/debug/trace.cc +1 -4
  132. data/src/core/lib/event_engine/cf_engine/cf_engine.cc +2 -1
  133. data/src/core/lib/event_engine/cf_engine/cf_engine.h +1 -1
  134. data/src/core/lib/event_engine/event_engine.cc +0 -12
  135. data/src/core/lib/event_engine/forkable.cc +47 -42
  136. data/src/core/lib/event_engine/handle_containers.h +0 -4
  137. data/src/core/lib/event_engine/posix_engine/ev_epoll1_linux.cc +4 -6
  138. data/src/core/lib/event_engine/posix_engine/ev_poll_posix.cc +4 -6
  139. data/src/core/lib/event_engine/posix_engine/posix_endpoint.cc +25 -11
  140. data/src/core/lib/event_engine/posix_engine/posix_endpoint.h +3 -1
  141. data/src/core/lib/event_engine/posix_engine/posix_engine.cc +2 -1
  142. data/src/core/lib/event_engine/posix_engine/posix_engine.h +8 -12
  143. data/src/core/lib/event_engine/posix_engine/posix_engine_listener.cc +37 -27
  144. data/src/core/lib/event_engine/posix_engine/posix_engine_listener.h +2 -0
  145. data/src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.cc +4 -2
  146. data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.cc +42 -2
  147. data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.h +6 -0
  148. data/src/core/lib/event_engine/posix_engine/timer.h +10 -37
  149. data/src/core/lib/event_engine/tcp_socket_utils.cc +67 -7
  150. data/src/core/lib/event_engine/tcp_socket_utils.h +3 -0
  151. data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.cc +90 -37
  152. data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.h +32 -12
  153. data/src/core/lib/event_engine/thready_event_engine/thready_event_engine.cc +12 -21
  154. data/src/core/lib/event_engine/thready_event_engine/thready_event_engine.h +8 -12
  155. data/src/core/lib/event_engine/windows/windows_endpoint.cc +55 -54
  156. data/src/core/lib/event_engine/windows/windows_endpoint.h +15 -12
  157. data/src/core/lib/event_engine/windows/windows_engine.cc +2 -1
  158. data/src/core/lib/event_engine/windows/windows_engine.h +8 -12
  159. data/src/core/lib/experiments/config.cc +60 -22
  160. data/src/core/lib/experiments/config.h +20 -8
  161. data/src/core/lib/experiments/experiments.cc +278 -0
  162. data/src/core/lib/experiments/experiments.h +59 -1
  163. data/src/core/lib/gprpp/dual_ref_counted.h +9 -9
  164. data/src/core/lib/gprpp/fork.cc +8 -9
  165. data/src/core/lib/gprpp/fork.h +6 -5
  166. data/src/core/lib/gprpp/if_list.h +4530 -0
  167. data/src/core/lib/gprpp/orphanable.h +3 -3
  168. data/src/core/lib/gprpp/ref_counted.h +6 -6
  169. data/src/core/lib/gprpp/sorted_pack.h +3 -12
  170. data/src/core/lib/gprpp/status_helper.h +16 -15
  171. data/src/core/lib/gprpp/time.h +12 -0
  172. data/src/core/lib/gprpp/type_list.h +32 -0
  173. data/src/core/lib/http/httpcli.h +6 -9
  174. data/src/core/lib/iomgr/error.cc +32 -2
  175. data/src/core/lib/iomgr/error.h +9 -10
  176. data/src/core/lib/iomgr/ev_epoll1_linux.cc +5 -7
  177. data/src/core/lib/iomgr/ev_poll_posix.cc +6 -5
  178. data/src/core/lib/iomgr/exec_ctx.h +11 -0
  179. data/src/core/lib/iomgr/pollset.h +4 -5
  180. data/src/core/lib/iomgr/port.h +10 -0
  181. data/src/core/lib/iomgr/resolve_address.cc +13 -1
  182. data/src/core/lib/iomgr/resolve_address.h +17 -3
  183. data/src/core/lib/iomgr/sockaddr_posix.h +7 -0
  184. data/src/core/lib/iomgr/socket_utils_common_posix.cc +29 -0
  185. data/src/core/lib/iomgr/socket_utils_posix.cc +2 -0
  186. data/src/core/lib/iomgr/socket_utils_posix.h +6 -0
  187. data/src/core/lib/iomgr/tcp_client_posix.cc +4 -1
  188. data/src/core/lib/iomgr/tcp_posix.cc +21 -4
  189. data/src/core/lib/iomgr/tcp_server_posix.cc +3 -2
  190. data/src/core/lib/iomgr/tcp_server_utils_posix_common.cc +5 -2
  191. data/src/core/lib/iomgr/tcp_windows.cc +1 -3
  192. data/src/core/lib/iomgr/vsock.cc +59 -0
  193. data/src/core/lib/iomgr/vsock.h +38 -0
  194. data/src/core/lib/iomgr/wakeup_fd_posix.h +3 -6
  195. data/src/core/lib/load_balancing/delegating_helper.h +115 -0
  196. data/src/core/lib/load_balancing/lb_policy.h +20 -0
  197. data/src/core/lib/load_balancing/subchannel_interface.h +6 -0
  198. data/src/core/lib/promise/party.h +1 -1
  199. data/src/core/lib/resolver/resolver_factory.h +3 -2
  200. data/src/core/lib/resolver/server_address.cc +9 -94
  201. data/src/core/lib/resolver/server_address.h +10 -64
  202. data/src/core/lib/resource_quota/memory_quota.h +1 -1
  203. data/src/core/lib/security/credentials/channel_creds_registry.h +51 -27
  204. data/src/core/lib/security/credentials/channel_creds_registry_init.cc +169 -9
  205. data/src/core/lib/security/credentials/composite/composite_credentials.cc +1 -1
  206. data/src/core/lib/security/credentials/composite/composite_credentials.h +3 -1
  207. data/src/core/lib/security/credentials/external/external_account_credentials.cc +40 -1
  208. data/src/core/lib/security/credentials/external/external_account_credentials.h +6 -0
  209. data/src/core/lib/security/credentials/fake/fake_credentials.cc +30 -38
  210. data/src/core/lib/security/credentials/fake/fake_credentials.h +28 -0
  211. data/src/core/lib/security/credentials/tls/tls_credentials.cc +1 -1
  212. data/src/core/lib/security/credentials/tls/tls_credentials.h +3 -1
  213. data/src/core/lib/service_config/service_config_call_data.h +5 -0
  214. data/src/core/lib/slice/slice.h +16 -0
  215. data/src/core/lib/surface/call.cc +31 -29
  216. data/src/core/lib/surface/server.h +2 -2
  217. data/src/core/lib/surface/version.cc +2 -2
  218. data/src/core/lib/transport/metadata_batch.cc +7 -7
  219. data/src/core/lib/transport/metadata_batch.h +86 -48
  220. data/src/core/lib/transport/parsed_metadata.h +34 -20
  221. data/src/core/lib/transport/simple_slice_based_metadata.h +9 -2
  222. data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.cc +4 -6
  223. data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc +1 -2
  224. data/src/core/tsi/ssl_transport_security.cc +28 -7
  225. data/src/ruby/bin/math_pb.rb +24 -18
  226. data/src/ruby/ext/grpc/extconf.rb +19 -18
  227. data/src/ruby/ext/grpc/rb_call.c +62 -39
  228. data/src/ruby/ext/grpc/rb_call_credentials.c +0 -1
  229. data/src/ruby/ext/grpc/rb_channel.c +126 -49
  230. data/src/ruby/ext/grpc/rb_channel.h +1 -0
  231. data/src/ruby/ext/grpc/rb_channel_args.c +16 -2
  232. data/src/ruby/ext/grpc/rb_channel_args.h +4 -0
  233. data/src/ruby/ext/grpc/rb_channel_credentials.c +0 -1
  234. data/src/ruby/ext/grpc/rb_compression_options.c +0 -1
  235. data/src/ruby/ext/grpc/rb_event_thread.c +22 -6
  236. data/src/ruby/ext/grpc/rb_event_thread.h +1 -0
  237. data/src/ruby/ext/grpc/rb_grpc.c +192 -30
  238. data/src/ruby/ext/grpc/rb_grpc.h +8 -2
  239. data/src/ruby/ext/grpc/rb_server.c +62 -45
  240. data/src/ruby/ext/grpc/rb_server_credentials.c +0 -1
  241. data/src/ruby/ext/grpc/rb_xds_channel_credentials.c +0 -1
  242. data/src/ruby/ext/grpc/rb_xds_server_credentials.c +0 -1
  243. data/src/ruby/lib/grpc/generic/bidi_call.rb +2 -0
  244. data/src/ruby/lib/grpc/version.rb +1 -1
  245. data/src/ruby/pb/grpc/health/v1/health_pb.rb +24 -13
  246. data/src/ruby/pb/src/proto/grpc/testing/empty_pb.rb +24 -3
  247. data/src/ruby/pb/src/proto/grpc/testing/messages_pb.rb +25 -111
  248. data/src/ruby/pb/src/proto/grpc/testing/test_pb.rb +25 -2
  249. data/third_party/boringssl-with-bazel/err_data.c +552 -552
  250. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_strnid.c +5 -5
  251. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_time.c +34 -1
  252. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_utctm.c +4 -1
  253. data/third_party/boringssl-with-bazel/src/crypto/bio/bio.c +3 -3
  254. data/third_party/boringssl-with-bazel/src/crypto/bio/bio_mem.c +7 -8
  255. data/third_party/boringssl-with-bazel/src/crypto/bio/connect.c +2 -2
  256. data/third_party/boringssl-with-bazel/src/crypto/bio/fd.c +2 -2
  257. data/third_party/boringssl-with-bazel/src/crypto/bio/file.c +8 -8
  258. data/third_party/boringssl-with-bazel/src/crypto/bio/socket.c +2 -2
  259. data/third_party/boringssl-with-bazel/src/crypto/bio/socket_helper.c +2 -2
  260. data/third_party/boringssl-with-bazel/src/crypto/chacha/chacha.c +19 -1
  261. data/third_party/boringssl-with-bazel/src/crypto/chacha/internal.h +8 -1
  262. data/third_party/boringssl-with-bazel/src/crypto/conf/conf.c +28 -185
  263. data/third_party/boringssl-with-bazel/src/crypto/conf/conf_def.h +3 -7
  264. data/third_party/boringssl-with-bazel/src/crypto/conf/internal.h +8 -0
  265. data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_apple.c +3 -0
  266. data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519.c +49 -46
  267. data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519_64_adx.c +18 -0
  268. data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519_tables.h +2809 -7417
  269. data/third_party/boringssl-with-bazel/src/crypto/curve25519/internal.h +27 -5
  270. data/third_party/boringssl-with-bazel/src/crypto/dsa/internal.h +20 -0
  271. data/third_party/boringssl-with-bazel/src/crypto/ec_extra/ec_asn1.c +110 -72
  272. data/third_party/boringssl-with-bazel/src/crypto/ec_extra/ec_derive.c +4 -3
  273. data/third_party/boringssl-with-bazel/src/crypto/ec_extra/hash_to_curve.c +15 -14
  274. data/third_party/boringssl-with-bazel/src/crypto/err/err.c +13 -10
  275. data/third_party/boringssl-with-bazel/src/crypto/evp/evp.c +35 -12
  276. data/third_party/boringssl-with-bazel/src/crypto/evp/p_ec.c +2 -4
  277. data/third_party/boringssl-with-bazel/src/crypto/evp/p_ec_asn1.c +3 -7
  278. data/third_party/boringssl-with-bazel/src/crypto/evp/pbkdf.c +3 -3
  279. data/third_party/boringssl-with-bazel/src/crypto/evp/print.c +7 -6
  280. data/third_party/boringssl-with-bazel/src/crypto/ex_data.c +34 -72
  281. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm.c +1 -1
  282. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div.c +12 -5
  283. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/gcd.c +5 -6
  284. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/internal.h +12 -6
  285. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery.c +17 -18
  286. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery_inv.c +51 -15
  287. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/rsaz_exp.c +7 -7
  288. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/delocate.h +5 -6
  289. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/internal.h +2 -0
  290. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/builtin_curves.h +277 -0
  291. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec.c +180 -404
  292. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_key.c +3 -3
  293. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_montgomery.c +24 -57
  294. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/felem.c +17 -13
  295. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/internal.h +33 -71
  296. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/oct.c +18 -17
  297. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p224-64.c +5 -7
  298. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-nistz.c +15 -18
  299. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256.c +9 -11
  300. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/scalar.c +24 -24
  301. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/simple.c +11 -27
  302. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/simple_mul.c +8 -8
  303. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/wnaf.c +4 -4
  304. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/ecdsa.c +9 -3
  305. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/hkdf/hkdf.c +1 -1
  306. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/fork_detect.c +40 -26
  307. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/internal.h +21 -7
  308. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/rand.c +38 -19
  309. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/urandom.c +2 -29
  310. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/internal.h +55 -0
  311. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa_impl.c +33 -52
  312. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/self_check.c +3 -8
  313. data/third_party/boringssl-with-bazel/src/crypto/internal.h +198 -79
  314. data/third_party/boringssl-with-bazel/src/crypto/kyber/kyber.c +5 -4
  315. data/third_party/boringssl-with-bazel/src/crypto/mem.c +7 -8
  316. data/third_party/boringssl-with-bazel/src/crypto/obj/obj.c +19 -23
  317. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/internal.h +3 -3
  318. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/p5_pbev2.c +3 -3
  319. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8.c +7 -7
  320. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8_x509.c +8 -5
  321. data/third_party/boringssl-with-bazel/src/crypto/pool/internal.h +1 -0
  322. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/deterministic.c +7 -6
  323. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/forkunsafe.c +6 -12
  324. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/getentropy.c +48 -0
  325. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/{fuchsia.c → ios.c} +8 -8
  326. data/third_party/boringssl-with-bazel/src/crypto/{refcount_no_threads.c → rand_extra/trusty.c} +15 -19
  327. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/windows.c +41 -19
  328. data/third_party/boringssl-with-bazel/src/crypto/{refcount_c11.c → refcount.c} +11 -17
  329. data/third_party/boringssl-with-bazel/src/crypto/stack/stack.c +147 -72
  330. data/third_party/boringssl-with-bazel/src/crypto/thread_none.c +0 -8
  331. data/third_party/boringssl-with-bazel/src/crypto/thread_pthread.c +6 -35
  332. data/third_party/boringssl-with-bazel/src/crypto/thread_win.c +5 -26
  333. data/third_party/boringssl-with-bazel/src/crypto/trust_token/pmbtoken.c +14 -18
  334. data/third_party/boringssl-with-bazel/src/crypto/trust_token/voprf.c +54 -143
  335. data/third_party/boringssl-with-bazel/src/crypto/x509/by_dir.c +7 -13
  336. data/third_party/boringssl-with-bazel/src/crypto/x509/internal.h +1 -1
  337. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_att.c +1 -1
  338. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_lu.c +2 -4
  339. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_req.c +2 -2
  340. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_trs.c +1 -1
  341. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_v3.c +8 -12
  342. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vfy.c +19 -20
  343. data/third_party/boringssl-with-bazel/src/crypto/x509/x509name.c +11 -15
  344. data/third_party/boringssl-with-bazel/src/crypto/x509/x_crl.c +5 -5
  345. data/third_party/boringssl-with-bazel/src/crypto/x509/x_name.c +1 -1
  346. data/third_party/boringssl-with-bazel/src/crypto/x509/x_pubkey.c +7 -7
  347. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_lib.c +2 -3
  348. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_purp.c +4 -6
  349. data/third_party/boringssl-with-bazel/src/include/openssl/arm_arch.h +4 -119
  350. data/third_party/boringssl-with-bazel/src/include/openssl/asm_base.h +207 -0
  351. data/third_party/boringssl-with-bazel/src/include/openssl/asn1.h +5 -0
  352. data/third_party/boringssl-with-bazel/src/include/openssl/base.h +2 -116
  353. data/third_party/boringssl-with-bazel/src/include/openssl/bn.h +0 -2
  354. data/third_party/boringssl-with-bazel/src/include/openssl/chacha.h +6 -0
  355. data/third_party/boringssl-with-bazel/src/include/openssl/conf.h +5 -1
  356. data/third_party/boringssl-with-bazel/src/include/openssl/dsa.h +0 -21
  357. data/third_party/boringssl-with-bazel/src/include/openssl/ec.h +21 -2
  358. data/third_party/boringssl-with-bazel/src/include/openssl/ec_key.h +19 -6
  359. data/third_party/boringssl-with-bazel/src/include/openssl/evp.h +11 -7
  360. data/third_party/boringssl-with-bazel/src/include/openssl/rand.h +13 -14
  361. data/third_party/boringssl-with-bazel/src/include/openssl/rsa.h +0 -61
  362. data/third_party/boringssl-with-bazel/src/include/openssl/ssl.h +127 -81
  363. data/third_party/boringssl-with-bazel/src/include/openssl/stack.h +224 -209
  364. data/third_party/boringssl-with-bazel/src/include/openssl/target.h +154 -0
  365. data/third_party/boringssl-with-bazel/src/include/openssl/thread.h +1 -29
  366. data/third_party/boringssl-with-bazel/src/include/openssl/x509.h +4 -4
  367. data/third_party/boringssl-with-bazel/src/include/openssl/x509v3.h +3 -2
  368. data/third_party/boringssl-with-bazel/src/ssl/extensions.cc +9 -65
  369. data/third_party/boringssl-with-bazel/src/ssl/handoff.cc +20 -20
  370. data/third_party/boringssl-with-bazel/src/ssl/handshake_server.cc +1 -1
  371. data/third_party/boringssl-with-bazel/src/ssl/internal.h +4 -11
  372. data/third_party/boringssl-with-bazel/src/ssl/ssl_cipher.cc +24 -18
  373. data/third_party/boringssl-with-bazel/src/ssl/ssl_key_share.cc +37 -30
  374. data/third_party/boringssl-with-bazel/src/ssl/ssl_lib.cc +125 -26
  375. data/third_party/boringssl-with-bazel/src/ssl/tls13_client.cc +2 -3
  376. data/third_party/boringssl-with-bazel/src/third_party/fiat/curve25519_64_adx.h +691 -0
  377. data/third_party/upb/upb/collections/map.c +3 -3
  378. metadata +27 -12
  379. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_attributes.cc +0 -42
  380. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_attributes.h +0 -64
  381. data/src/core/ext/transport/chttp2/transport/stream_map.cc +0 -177
  382. data/src/core/ext/transport/chttp2/transport/stream_map.h +0 -68
  383. data/third_party/boringssl-with-bazel/src/crypto/refcount_win.c +0 -89
@@ -20,7 +20,10 @@
20
20
 
21
21
  #include "src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.h"
22
22
 
23
+ #include <inttypes.h>
24
+
23
25
  #include <atomic>
26
+ #include <cmath>
24
27
  #include <memory>
25
28
  #include <utility>
26
29
 
@@ -36,6 +39,7 @@
36
39
  #include "src/core/lib/event_engine/trace.h"
37
40
  #include "src/core/lib/event_engine/work_queue/basic_work_queue.h"
38
41
  #include "src/core/lib/event_engine/work_queue/work_queue.h"
42
+ #include "src/core/lib/gpr/time_precise.h"
39
43
  #include "src/core/lib/gprpp/thd.h"
40
44
  #include "src/core/lib/gprpp/time.h"
41
45
 
@@ -43,19 +47,29 @@ namespace grpc_event_engine {
43
47
  namespace experimental {
44
48
 
45
49
  namespace {
50
+ // Maximum amount of time an extra thread is allowed to idle before being
51
+ // reclaimed.
46
52
  constexpr grpc_core::Duration kIdleThreadLimit =
47
53
  grpc_core::Duration::Seconds(20);
54
+ // Rate at which "Waiting for ..." logs should be printed while quiescing.
55
+ constexpr size_t kBlockingQuiesceLogRateSeconds = 3;
56
+ // Minumum time between thread creations.
48
57
  constexpr grpc_core::Duration kTimeBetweenThrottledThreadStarts =
49
58
  grpc_core::Duration::Seconds(1);
59
+ // Minimum time a worker thread should sleep between checking for new work. Used
60
+ // in backoff calculations to reduce vigilance when the pool is calm.
50
61
  constexpr grpc_core::Duration kWorkerThreadMinSleepBetweenChecks{
51
62
  grpc_core::Duration::Milliseconds(15)};
63
+ // Maximum time a worker thread should sleep between checking for new work.
52
64
  constexpr grpc_core::Duration kWorkerThreadMaxSleepBetweenChecks{
53
65
  grpc_core::Duration::Seconds(3)};
66
+ // Minimum time the lifeguard thread should sleep between checks. Used in
67
+ // backoff calculations to reduce vigilance when the pool is calm.
54
68
  constexpr grpc_core::Duration kLifeguardMinSleepBetweenChecks{
55
69
  grpc_core::Duration::Milliseconds(15)};
70
+ // Maximum time the lifeguard thread should sleep between checking for new work.
56
71
  constexpr grpc_core::Duration kLifeguardMaxSleepBetweenChecks{
57
72
  grpc_core::Duration::Seconds(1)};
58
- constexpr absl::Duration kSleepBetweenQuiesceCheck{absl::Milliseconds(10)};
59
73
  } // namespace
60
74
 
61
75
  thread_local WorkQueue* g_local_queue = nullptr;
@@ -113,13 +127,13 @@ void WorkStealingThreadPool::PostforkChild() { pool_->Postfork(); }
113
127
 
114
128
  WorkStealingThreadPool::WorkStealingThreadPoolImpl::WorkStealingThreadPoolImpl(
115
129
  size_t reserve_threads)
116
- : reserve_threads_(reserve_threads), lifeguard_() {}
130
+ : reserve_threads_(reserve_threads), lifeguard_(this) {}
117
131
 
118
132
  void WorkStealingThreadPool::WorkStealingThreadPoolImpl::Start() {
119
- lifeguard_.Start(shared_from_this());
120
133
  for (size_t i = 0; i < reserve_threads_; i++) {
121
134
  StartThread();
122
135
  }
136
+ lifeguard_.Start();
123
137
  }
124
138
 
125
139
  void WorkStealingThreadPool::WorkStealingThreadPoolImpl::Run(
@@ -155,6 +169,7 @@ void WorkStealingThreadPool::WorkStealingThreadPoolImpl::Quiesce() {
155
169
  // Note that if this is a threadpool thread then we won't exit this thread
156
170
  // until all other threads have exited, so we need to wait for just one thread
157
171
  // running instead of zero.
172
+ gpr_cycle_counter start_time = gpr_get_cycle_counter();
158
173
  bool is_threadpool_thread = g_local_queue != nullptr;
159
174
  thread_count()->BlockUntilThreadCount(CounterType::kLivingThreadCount,
160
175
  is_threadpool_thread ? 1 : 0,
@@ -162,6 +177,8 @@ void WorkStealingThreadPool::WorkStealingThreadPoolImpl::Quiesce() {
162
177
  GPR_ASSERT(queue_.Empty());
163
178
  quiesced_.store(true, std::memory_order_relaxed);
164
179
  lifeguard_.BlockUntilShutdown();
180
+ GRPC_EVENT_ENGINE_TRACE("%ld cycles spent quiescing the pool",
181
+ std::lround(gpr_get_cycle_counter() - start_time));
165
182
  }
166
183
 
167
184
  bool WorkStealingThreadPool::WorkStealingThreadPoolImpl::SetThrottled(
@@ -206,21 +223,21 @@ void WorkStealingThreadPool::WorkStealingThreadPoolImpl::Postfork() {
206
223
  Start();
207
224
  }
208
225
 
209
- // -------- WorkStealingThreadPool::WorkStealingThreadPoolImpl::Lifeguard
210
- // --------
226
+ // -------- WorkStealingThreadPool::WorkStealingThreadPoolImpl::Lifeguard -----
211
227
 
212
- WorkStealingThreadPool::WorkStealingThreadPoolImpl::Lifeguard::Lifeguard()
213
- : backoff_(grpc_core::BackOff::Options()
228
+ WorkStealingThreadPool::WorkStealingThreadPoolImpl::Lifeguard::Lifeguard(
229
+ WorkStealingThreadPoolImpl* pool)
230
+ : pool_(pool),
231
+ backoff_(grpc_core::BackOff::Options()
214
232
  .set_initial_backoff(kLifeguardMinSleepBetweenChecks)
215
233
  .set_max_backoff(kLifeguardMaxSleepBetweenChecks)
216
234
  .set_multiplier(1.3)) {}
217
235
 
218
- void WorkStealingThreadPool::WorkStealingThreadPoolImpl::Lifeguard::Start(
219
- std::shared_ptr<WorkStealingThreadPoolImpl> pool) {
220
- // thread_running_ is set early to avoid a quiesce race while the lifeguard is
221
- // still starting up.
222
- thread_running_.store(true);
223
- pool_ = std::move(pool);
236
+ void WorkStealingThreadPool::WorkStealingThreadPoolImpl::Lifeguard::Start() {
237
+ // lifeguard_running_ is set early to avoid a quiesce race while the
238
+ // lifeguard is still starting up.
239
+ grpc_core::MutexLock lock(&lifeguard_shutdown_mu_);
240
+ lifeguard_running_ = true;
224
241
  grpc_core::Thread(
225
242
  "lifeguard",
226
243
  [](void* arg) {
@@ -234,21 +251,36 @@ void WorkStealingThreadPool::WorkStealingThreadPoolImpl::Lifeguard::Start(
234
251
 
235
252
  void WorkStealingThreadPool::WorkStealingThreadPoolImpl::Lifeguard::
236
253
  LifeguardMain() {
254
+ grpc_core::MutexLock lock(&lifeguard_shutdown_mu_);
237
255
  while (true) {
238
- absl::SleepFor(absl::Milliseconds(
239
- (backoff_.NextAttemptTime() - grpc_core::Timestamp::Now()).millis()));
240
256
  if (pool_->IsForking()) break;
241
- if (pool_->IsShutdown() && pool_->IsQuiesced()) break;
257
+ // If the pool is shut down, loop quickly until quiesced. Otherwise,
258
+ // reduce the check rate if the pool is idle.
259
+ if (pool_->IsShutdown()) {
260
+ if (pool_->IsQuiesced()) break;
261
+ } else {
262
+ lifeguard_shutdown_cv_.WaitWithTimeout(
263
+ &lifeguard_shutdown_mu_,
264
+ absl::Milliseconds(
265
+ (backoff_.NextAttemptTime() - grpc_core::Timestamp::Now())
266
+ .millis()));
267
+ }
242
268
  MaybeStartNewThread();
243
269
  }
244
- pool_.reset();
245
- thread_running_.store(false);
270
+ lifeguard_running_ = false;
271
+ lifeguard_shutdown_cv_.Signal();
246
272
  }
247
273
 
248
274
  void WorkStealingThreadPool::WorkStealingThreadPoolImpl::Lifeguard::
249
275
  BlockUntilShutdown() {
250
- while (thread_running_.load()) {
251
- absl::SleepFor(kSleepBetweenQuiesceCheck);
276
+ grpc_core::MutexLock lock(&lifeguard_shutdown_mu_);
277
+ while (lifeguard_running_) {
278
+ lifeguard_shutdown_cv_.Signal();
279
+ lifeguard_shutdown_cv_.WaitWithTimeout(
280
+ &lifeguard_shutdown_mu_, absl::Seconds(kBlockingQuiesceLogRateSeconds));
281
+ GRPC_LOG_EVERY_N_SEC_DELAYED(kBlockingQuiesceLogRateSeconds, GPR_DEBUG,
282
+ "%s",
283
+ "Waiting for lifeguard thread to shut down");
252
284
  }
253
285
  }
254
286
 
@@ -425,36 +457,57 @@ void WorkStealingThreadPool::ThreadState::FinishDraining() {
425
457
  // -------- WorkStealingThreadPool::ThreadCount --------
426
458
 
427
459
  void WorkStealingThreadPool::ThreadCount::Add(CounterType counter_type) {
428
- thread_counts_[counter_type].fetch_add(1, std::memory_order_relaxed);
460
+ grpc_core::MutexLock lock(&wait_mu_[counter_type]);
461
+ ++thread_counts_[counter_type];
462
+ wait_cv_[counter_type].SignalAll();
429
463
  }
430
464
 
431
465
  void WorkStealingThreadPool::ThreadCount::Remove(CounterType counter_type) {
432
- thread_counts_[counter_type].fetch_sub(1, std::memory_order_relaxed);
466
+ grpc_core::MutexLock lock(&wait_mu_[counter_type]);
467
+ --thread_counts_[counter_type];
468
+ wait_cv_[counter_type].SignalAll();
433
469
  }
434
470
 
435
471
  void WorkStealingThreadPool::ThreadCount::BlockUntilThreadCount(
436
- CounterType counter_type, int desired_threads, const char* why,
472
+ CounterType counter_type, size_t desired_threads, const char* why,
437
473
  WorkSignal* work_signal) {
438
- auto& counter = thread_counts_[counter_type];
439
- int curr_threads = counter.load(std::memory_order_relaxed);
440
474
  // Wait for all threads to exit.
441
- auto last_log_time = grpc_core::Timestamp::Now();
442
- while (curr_threads > desired_threads) {
443
- absl::SleepFor(kSleepBetweenQuiesceCheck);
475
+ while (true) {
476
+ auto curr_threads = WaitForCountChange(
477
+ counter_type, desired_threads,
478
+ grpc_core::Duration::Seconds(kBlockingQuiesceLogRateSeconds));
479
+ if (curr_threads == desired_threads) break;
480
+ GRPC_LOG_EVERY_N_SEC_DELAYED(
481
+ kBlockingQuiesceLogRateSeconds, GPR_DEBUG,
482
+ "Waiting for thread pool to idle before %s. (%" PRIdPTR " to %" PRIdPTR
483
+ ")",
484
+ why, curr_threads, desired_threads);
444
485
  work_signal->SignalAll();
445
- if (grpc_core::Timestamp::Now() - last_log_time >
446
- grpc_core::Duration::Seconds(3)) {
447
- gpr_log(GPR_DEBUG,
448
- "Waiting for thread pool to idle before %s. (%d to %d)", why,
449
- curr_threads, desired_threads);
450
- last_log_time = grpc_core::Timestamp::Now();
451
- }
452
- curr_threads = counter.load(std::memory_order_relaxed);
453
486
  }
454
487
  }
455
488
 
489
+ size_t WorkStealingThreadPool::ThreadCount::WaitForCountChange(
490
+ CounterType counter_type, size_t desired_threads,
491
+ grpc_core::Duration timeout) {
492
+ size_t count;
493
+ auto deadline = absl::Now() + absl::Milliseconds(timeout.millis());
494
+ do {
495
+ grpc_core::MutexLock lock(&wait_mu_[counter_type]);
496
+ count = GetCountLocked(counter_type);
497
+ if (count == desired_threads) break;
498
+ wait_cv_[counter_type].WaitWithDeadline(&wait_mu_[counter_type], deadline);
499
+ } while (absl::Now() < deadline);
500
+ return count;
501
+ }
502
+
456
503
  size_t WorkStealingThreadPool::ThreadCount::GetCount(CounterType counter_type) {
457
- return thread_counts_[counter_type].load(std::memory_order_relaxed);
504
+ grpc_core::MutexLock lock(&wait_mu_[counter_type]);
505
+ return GetCountLocked(counter_type);
506
+ }
507
+
508
+ size_t WorkStealingThreadPool::ThreadCount::GetCountLocked(
509
+ CounterType counter_type) {
510
+ return thread_counts_[counter_type];
458
511
  }
459
512
 
460
513
  WorkStealingThreadPool::ThreadCount::AutoThreadCount::AutoThreadCount(
@@ -86,14 +86,21 @@ class WorkStealingThreadPool final : public ThreadPool {
86
86
  class ThreadCount {
87
87
  public:
88
88
  // Adds 1 to the thread count for that counter type.
89
- void Add(CounterType counter_type);
89
+ void Add(CounterType counter_type)
90
+ ABSL_LOCKS_EXCLUDED(wait_mu_[counter_type]);
90
91
  // Subtracts 1 from the thread count for that counter type.
91
- void Remove(CounterType counter_type);
92
+ void Remove(CounterType counter_type)
93
+ ABSL_LOCKS_EXCLUDED(wait_mu_[counter_type]);
92
94
  // Blocks until the thread count for that type reaches `desired_threads`.
93
- void BlockUntilThreadCount(CounterType counter_type, int desired_threads,
94
- const char* why, WorkSignal* work_signal);
95
+ void BlockUntilThreadCount(CounterType counter_type, size_t desired_threads,
96
+ const char* why, WorkSignal* work_signal)
97
+ ABSL_LOCKS_EXCLUDED(wait_mu_[counter_type]);
95
98
  // Returns the current thread count for the tracked type.
96
- size_t GetCount(CounterType counter_type);
99
+ size_t GetCount(CounterType counter_type)
100
+ ABSL_LOCKS_EXCLUDED(wait_mu_[counter_type]);
101
+ // Returns the current thread count for the tracked type.
102
+ size_t GetCountLocked(CounterType counter_type)
103
+ ABSL_EXCLUSIVE_LOCKS_REQUIRED(wait_mu_[counter_type]);
97
104
 
98
105
  // Adds and removes thread counts on construction and destruction
99
106
  class AutoThreadCount {
@@ -107,7 +114,15 @@ class WorkStealingThreadPool final : public ThreadPool {
107
114
  };
108
115
 
109
116
  private:
110
- std::atomic<size_t> thread_counts_[2]{{0}, {0}};
117
+ // Wait for the desired count to be reached.
118
+ // Returns the current thread count either when the desired count is
119
+ // reached, or when the deadline has passed, whichever happens first.
120
+ size_t WaitForCountChange(CounterType counter_type, size_t desired_threads,
121
+ grpc_core::Duration timeout);
122
+
123
+ grpc_core::Mutex wait_mu_[2];
124
+ grpc_core::CondVar wait_cv_[2];
125
+ size_t thread_counts_[2]{0, 0};
111
126
  };
112
127
 
113
128
  // A pool of WorkQueues that participate in work stealing.
@@ -152,8 +167,8 @@ class WorkStealingThreadPool final : public ThreadPool {
152
167
  // This method is safe to call from within a ThreadPool thread.
153
168
  void Quiesce();
154
169
  // Sets a throttled state.
155
- // After the initial pool has been created, if the pool is backlogged when a
156
- // new thread has started, it is rate limited.
170
+ // After the initial pool has been created, if the pool is backlogged when
171
+ // a new thread has started, it is rate limited.
157
172
  // Returns the previous throttling state.
158
173
  bool SetThrottled(bool throttle);
159
174
  // Set the shutdown flag.
@@ -183,9 +198,9 @@ class WorkStealingThreadPool final : public ThreadPool {
183
198
  // and there are threads that can accept work.
184
199
  class Lifeguard {
185
200
  public:
186
- Lifeguard();
201
+ explicit Lifeguard(WorkStealingThreadPoolImpl* pool);
187
202
  // Start the lifeguard thread.
188
- void Start(std::shared_ptr<WorkStealingThreadPoolImpl> pool);
203
+ void Start();
189
204
  // Block until the lifeguard thread is shut down.
190
205
  void BlockUntilShutdown();
191
206
 
@@ -194,9 +209,14 @@ class WorkStealingThreadPool final : public ThreadPool {
194
209
  void LifeguardMain();
195
210
  // Starts a new thread if the pool is backlogged
196
211
  void MaybeStartNewThread();
197
- std::shared_ptr<WorkStealingThreadPoolImpl> pool_;
212
+
213
+ WorkStealingThreadPoolImpl* pool_;
198
214
  grpc_core::BackOff backoff_;
199
- std::atomic<bool> thread_running_{false};
215
+ // Used for signaling that the lifeguard thread has stopped running.
216
+ grpc_core::Mutex lifeguard_shutdown_mu_;
217
+ bool lifeguard_running_ ABSL_GUARDED_BY(lifeguard_shutdown_mu_) = false;
218
+ grpc_core::CondVar lifeguard_shutdown_cv_
219
+ ABSL_GUARDED_BY(lifeguard_shutdown_mu_);
200
220
  };
201
221
 
202
222
  const size_t reserve_threads_;
@@ -82,9 +82,10 @@ bool ThreadyEventEngine::IsWorkerThread() {
82
82
  grpc_core::Crash("we should remove this");
83
83
  }
84
84
 
85
- std::unique_ptr<EventEngine::DNSResolver> ThreadyEventEngine::GetDNSResolver(
85
+ absl::StatusOr<std::unique_ptr<EventEngine::DNSResolver>>
86
+ ThreadyEventEngine::GetDNSResolver(
86
87
  const DNSResolver::ResolverOptions& options) {
87
- return std::make_unique<ThreadyDNSResolver>(impl_->GetDNSResolver(options));
88
+ return std::make_unique<ThreadyDNSResolver>(*impl_->GetDNSResolver(options));
88
89
  }
89
90
 
90
91
  void ThreadyEventEngine::Run(Closure* closure) {
@@ -111,10 +112,9 @@ bool ThreadyEventEngine::Cancel(TaskHandle handle) {
111
112
  return impl_->Cancel(handle);
112
113
  }
113
114
 
114
- EventEngine::DNSResolver::LookupTaskHandle
115
- ThreadyEventEngine::ThreadyDNSResolver::LookupHostname(
115
+ void ThreadyEventEngine::ThreadyDNSResolver::LookupHostname(
116
116
  LookupHostnameCallback on_resolve, absl::string_view name,
117
- absl::string_view default_port, Duration timeout) {
117
+ absl::string_view default_port) {
118
118
  return impl_->LookupHostname(
119
119
  [this, on_resolve = std::move(on_resolve)](
120
120
  absl::StatusOr<std::vector<ResolvedAddress>> addresses) mutable {
@@ -123,13 +123,11 @@ ThreadyEventEngine::ThreadyDNSResolver::LookupHostname(
123
123
  on_resolve(std::move(addresses));
124
124
  });
125
125
  },
126
- name, default_port, timeout);
126
+ name, default_port);
127
127
  }
128
128
 
129
- EventEngine::DNSResolver::LookupTaskHandle
130
- ThreadyEventEngine::ThreadyDNSResolver::LookupSRV(LookupSRVCallback on_resolve,
131
- absl::string_view name,
132
- Duration timeout) {
129
+ void ThreadyEventEngine::ThreadyDNSResolver::LookupSRV(
130
+ LookupSRVCallback on_resolve, absl::string_view name) {
133
131
  return impl_->LookupSRV(
134
132
  [this, on_resolve = std::move(on_resolve)](
135
133
  absl::StatusOr<std::vector<SRVRecord>> records) mutable {
@@ -139,13 +137,11 @@ ThreadyEventEngine::ThreadyDNSResolver::LookupSRV(LookupSRVCallback on_resolve,
139
137
  on_resolve(std::move(records));
140
138
  });
141
139
  },
142
- name, timeout);
140
+ name);
143
141
  }
144
142
 
145
- EventEngine::DNSResolver::LookupTaskHandle
146
- ThreadyEventEngine::ThreadyDNSResolver::LookupTXT(LookupTXTCallback on_resolve,
147
- absl::string_view name,
148
- Duration timeout) {
143
+ void ThreadyEventEngine::ThreadyDNSResolver::LookupTXT(
144
+ LookupTXTCallback on_resolve, absl::string_view name) {
149
145
  return impl_->LookupTXT(
150
146
  [this, on_resolve = std::move(on_resolve)](
151
147
  absl::StatusOr<std::vector<std::string>> record) mutable {
@@ -154,12 +150,7 @@ ThreadyEventEngine::ThreadyDNSResolver::LookupTXT(LookupTXTCallback on_resolve,
154
150
  on_resolve(std::move(record));
155
151
  });
156
152
  },
157
- name, timeout);
158
- }
159
-
160
- bool ThreadyEventEngine::ThreadyDNSResolver::CancelLookup(
161
- LookupTaskHandle handle) {
162
- return impl_->CancelLookup(handle);
153
+ name);
163
154
  }
164
155
 
165
156
  } // namespace experimental
@@ -63,7 +63,7 @@ class ThreadyEventEngine final : public EventEngine {
63
63
 
64
64
  bool IsWorkerThread() override;
65
65
 
66
- std::unique_ptr<DNSResolver> GetDNSResolver(
66
+ absl::StatusOr<std::unique_ptr<DNSResolver>> GetDNSResolver(
67
67
  const DNSResolver::ResolverOptions& options) override;
68
68
 
69
69
  void Run(Closure* closure) override;
@@ -80,17 +80,13 @@ class ThreadyEventEngine final : public EventEngine {
80
80
  public:
81
81
  explicit ThreadyDNSResolver(std::unique_ptr<DNSResolver> impl)
82
82
  : impl_(std::move(impl)) {}
83
- LookupTaskHandle LookupHostname(LookupHostnameCallback on_resolve,
84
- absl::string_view name,
85
- absl::string_view default_port,
86
- Duration timeout) override;
87
- LookupTaskHandle LookupSRV(LookupSRVCallback on_resolve,
88
- absl::string_view name,
89
- Duration timeout) override;
90
- LookupTaskHandle LookupTXT(LookupTXTCallback on_resolve,
91
- absl::string_view name,
92
- Duration timeout) override;
93
- bool CancelLookup(LookupTaskHandle handle) override;
83
+ void LookupHostname(LookupHostnameCallback on_resolve,
84
+ absl::string_view name,
85
+ absl::string_view default_port) override;
86
+ void LookupSRV(LookupSRVCallback on_resolve,
87
+ absl::string_view name) override;
88
+ void LookupTXT(LookupTXTCallback on_resolve,
89
+ absl::string_view name) override;
94
90
 
95
91
  private:
96
92
  std::unique_ptr<DNSResolver> impl_;