grpc 1.66.0 → 1.67.0.pre1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (547) hide show
  1. checksums.yaml +4 -4
  2. data/Makefile +19 -10
  3. data/include/grpc/credentials.h +1 -1
  4. data/include/grpc/event_engine/README.md +1 -1
  5. data/include/grpc/event_engine/internal/slice_cast.h +1 -1
  6. data/include/grpc/event_engine/slice.h +0 -1
  7. data/include/grpc/event_engine/slice_buffer.h +0 -1
  8. data/include/grpc/grpc_crl_provider.h +1 -1
  9. data/include/grpc/impl/channel_arg_names.h +1 -1
  10. data/include/grpc/support/log.h +34 -32
  11. data/include/grpc/support/sync_generic.h +2 -4
  12. data/src/core/channelz/channelz.cc +0 -1
  13. data/src/core/channelz/channelz_registry.cc +0 -1
  14. data/src/core/client_channel/client_channel.cc +10 -7
  15. data/src/core/client_channel/client_channel.h +1 -1
  16. data/src/core/client_channel/client_channel_filter.cc +21 -18
  17. data/src/core/client_channel/client_channel_filter.h +1 -1
  18. data/src/core/client_channel/client_channel_internal.h +0 -2
  19. data/src/core/client_channel/config_selector.h +0 -1
  20. data/src/core/client_channel/dynamic_filters.cc +0 -2
  21. data/src/core/client_channel/local_subchannel_pool.cc +0 -2
  22. data/src/core/client_channel/retry_filter.h +0 -1
  23. data/src/core/client_channel/retry_filter_legacy_call_data.cc +175 -257
  24. data/src/core/client_channel/subchannel.cc +21 -27
  25. data/src/core/client_channel/subchannel_stream_client.cc +1 -1
  26. data/src/core/ext/filters/backend_metrics/backend_metric_filter.cc +8 -9
  27. data/src/core/ext/filters/channel_idle/legacy_channel_idle_filter.cc +0 -1
  28. data/src/core/ext/filters/fault_injection/fault_injection_filter.cc +3 -4
  29. data/src/core/ext/filters/gcp_authentication/gcp_authentication_filter.cc +167 -0
  30. data/src/core/ext/filters/gcp_authentication/gcp_authentication_filter.h +82 -0
  31. data/src/core/ext/filters/gcp_authentication/gcp_authentication_service_config_parser.cc +81 -0
  32. data/src/core/ext/filters/gcp_authentication/gcp_authentication_service_config_parser.h +87 -0
  33. data/src/core/ext/filters/http/message_compress/compression_filter.cc +7 -9
  34. data/src/core/ext/filters/http/server/http_server_filter.cc +2 -4
  35. data/src/core/ext/filters/message_size/message_size_filter.cc +6 -7
  36. data/src/core/ext/filters/stateful_session/stateful_session_filter.cc +0 -2
  37. data/src/core/ext/transport/chttp2/alpn/alpn.cc +0 -1
  38. data/src/core/ext/transport/chttp2/server/chttp2_server.cc +6 -8
  39. data/src/core/ext/transport/chttp2/transport/bin_encoder.cc +0 -1
  40. data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +288 -265
  41. data/src/core/ext/transport/chttp2/transport/flow_control.cc +3 -4
  42. data/src/core/ext/transport/chttp2/transport/flow_control.h +0 -1
  43. data/src/core/ext/transport/chttp2/transport/frame.cc +0 -1
  44. data/src/core/ext/transport/chttp2/transport/frame_data.cc +0 -1
  45. data/src/core/ext/transport/chttp2/transport/frame_goaway.cc +0 -1
  46. data/src/core/ext/transport/chttp2/transport/frame_ping.cc +6 -6
  47. data/src/core/ext/transport/chttp2/transport/frame_rst_stream.cc +3 -4
  48. data/src/core/ext/transport/chttp2/transport/frame_settings.cc +5 -6
  49. data/src/core/ext/transport/chttp2/transport/frame_window_update.cc +0 -1
  50. data/src/core/ext/transport/chttp2/transport/hpack_encoder.cc +2 -3
  51. data/src/core/ext/transport/chttp2/transport/hpack_encoder_table.cc +0 -1
  52. data/src/core/ext/transport/chttp2/transport/hpack_parse_result.h +0 -1
  53. data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +3 -3
  54. data/src/core/ext/transport/chttp2/transport/hpack_parser_table.cc +37 -5
  55. data/src/core/ext/transport/chttp2/transport/hpack_parser_table.h +27 -6
  56. data/src/core/ext/transport/chttp2/transport/internal.h +2 -3
  57. data/src/core/ext/transport/chttp2/transport/parsing.cc +21 -32
  58. data/src/core/ext/transport/chttp2/transport/ping_callbacks.cc +0 -1
  59. data/src/core/ext/transport/chttp2/transport/stream_lists.cc +6 -8
  60. data/src/core/ext/transport/chttp2/transport/varint.h +0 -1
  61. data/src/core/ext/transport/chttp2/transport/write_size_policy.cc +0 -1
  62. data/src/core/ext/transport/chttp2/transport/writing.cc +22 -22
  63. data/src/core/ext/upb-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upb.h +431 -0
  64. data/src/core/ext/upb-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upb_minitable.c +129 -0
  65. data/src/core/ext/upb-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upb_minitable.h +33 -0
  66. data/src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb.h +16 -0
  67. data/src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb_minitable.c +13 -2
  68. data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb.h +397 -22
  69. data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb_minitable.c +94 -20
  70. data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb_minitable.h +2 -0
  71. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upbdefs.c +86 -0
  72. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upbdefs.h +47 -0
  73. data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/checked.upbdefs.c +108 -107
  74. data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/syntax.upbdefs.c +101 -78
  75. data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/syntax.upbdefs.h +10 -0
  76. data/src/core/handshaker/handshaker.cc +21 -29
  77. data/src/core/handshaker/security/secure_endpoint.cc +3 -3
  78. data/src/core/handshaker/security/security_handshaker.cc +60 -72
  79. data/src/core/handshaker/tcp_connect/tcp_connect_handshaker.cc +0 -1
  80. data/src/core/lib/backoff/backoff.cc +7 -10
  81. data/src/core/lib/backoff/backoff.h +4 -6
  82. data/src/core/lib/channel/channel_stack.cc +0 -1
  83. data/src/core/lib/channel/channel_stack.h +0 -1
  84. data/src/core/lib/channel/channel_stack_builder_impl.cc +0 -1
  85. data/src/core/lib/channel/connected_channel.cc +0 -1
  86. data/src/core/lib/channel/promise_based_filter.cc +146 -194
  87. data/src/core/lib/channel/promise_based_filter.h +1 -1
  88. data/src/core/lib/compression/compression_internal.cc +0 -1
  89. data/src/core/lib/config/config_vars.cc +11 -1
  90. data/src/core/lib/config/config_vars.h +8 -0
  91. data/src/core/lib/config/core_configuration.cc +0 -1
  92. data/src/core/lib/config/core_configuration.h +0 -1
  93. data/src/core/lib/debug/event_log.cc +0 -1
  94. data/src/core/lib/debug/trace_flags.cc +4 -18
  95. data/src/core/lib/debug/trace_flags.h +2 -5
  96. data/src/core/lib/debug/trace_impl.h +6 -0
  97. data/src/core/lib/event_engine/ares_resolver.cc +89 -56
  98. data/src/core/lib/event_engine/ares_resolver.h +0 -9
  99. data/src/core/lib/event_engine/cf_engine/cfstream_endpoint.cc +14 -1
  100. data/src/core/lib/event_engine/cf_engine/cftype_unique_ref.h +1 -1
  101. data/src/core/lib/event_engine/forkable.cc +0 -1
  102. data/src/core/lib/event_engine/forkable.h +0 -1
  103. data/src/core/lib/event_engine/posix_engine/ev_epoll1_linux.cc +1 -1
  104. data/src/core/lib/event_engine/posix_engine/ev_epoll1_linux.h +4 -4
  105. data/src/core/lib/event_engine/posix_engine/ev_poll_posix.cc +0 -1
  106. data/src/core/lib/event_engine/posix_engine/lockfree_event.cc +0 -1
  107. data/src/core/lib/event_engine/posix_engine/posix_endpoint.cc +9 -1
  108. data/src/core/lib/event_engine/posix_engine/posix_endpoint.h +0 -1
  109. data/src/core/lib/event_engine/posix_engine/posix_engine_listener.h +2 -2
  110. data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.h +1 -2
  111. data/src/core/lib/event_engine/posix_engine/timer_manager.cc +4 -9
  112. data/src/core/lib/event_engine/posix_engine/traced_buffer_list.cc +0 -1
  113. data/src/core/lib/event_engine/resolved_address.cc +0 -1
  114. data/src/core/lib/event_engine/slice.cc +0 -1
  115. data/src/core/lib/event_engine/thread_pool/thread_count.cc +0 -1
  116. data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.cc +3 -5
  117. data/src/core/lib/event_engine/windows/grpc_polled_fd_windows.cc +121 -93
  118. data/src/core/lib/experiments/config.cc +12 -10
  119. data/src/core/lib/experiments/experiments.cc +45 -66
  120. data/src/core/lib/experiments/experiments.h +22 -27
  121. data/src/core/lib/gprpp/chunked_vector.h +0 -1
  122. data/src/core/lib/gprpp/down_cast.h +0 -1
  123. data/src/core/lib/gprpp/host_port.cc +0 -1
  124. data/src/core/lib/gprpp/load_file.cc +0 -1
  125. data/src/core/lib/gprpp/mpscq.h +0 -1
  126. data/src/core/lib/gprpp/single_set_ptr.h +0 -1
  127. data/src/core/lib/gprpp/status_helper.cc +0 -1
  128. data/src/core/lib/gprpp/sync.h +0 -1
  129. data/src/core/lib/gprpp/table.h +28 -0
  130. data/src/core/lib/gprpp/thd.h +0 -1
  131. data/src/core/lib/gprpp/time.h +0 -1
  132. data/src/core/lib/gprpp/time_util.cc +0 -1
  133. data/src/core/lib/gprpp/windows/directory_reader.cc +0 -2
  134. data/src/core/lib/gprpp/windows/thd.cc +0 -1
  135. data/src/core/lib/gprpp/work_serializer.cc +23 -34
  136. data/src/core/lib/iomgr/buffer_list.cc +0 -1
  137. data/src/core/lib/iomgr/call_combiner.h +6 -8
  138. data/src/core/lib/iomgr/cfstream_handle.cc +6 -8
  139. data/src/core/lib/iomgr/closure.h +5 -8
  140. data/src/core/lib/iomgr/combiner.cc +6 -8
  141. data/src/core/lib/iomgr/endpoint_cfstream.cc +17 -22
  142. data/src/core/lib/iomgr/endpoint_pair_posix.cc +0 -1
  143. data/src/core/lib/iomgr/error.h +0 -1
  144. data/src/core/lib/iomgr/ev_apple.cc +13 -18
  145. data/src/core/lib/iomgr/ev_epoll1_linux.cc +47 -85
  146. data/src/core/lib/iomgr/ev_poll_posix.cc +17 -24
  147. data/src/core/lib/iomgr/ev_posix.cc +55 -44
  148. data/src/core/lib/iomgr/ev_posix.h +0 -5
  149. data/src/core/lib/iomgr/event_engine_shims/closure.cc +7 -9
  150. data/src/core/lib/iomgr/event_engine_shims/endpoint.cc +3 -4
  151. data/src/core/lib/iomgr/exec_ctx.cc +6 -9
  152. data/src/core/lib/iomgr/exec_ctx.h +26 -16
  153. data/src/core/lib/iomgr/executor.cc +43 -33
  154. data/src/core/lib/iomgr/fork_windows.cc +0 -1
  155. data/src/core/lib/iomgr/internal_errqueue.cc +0 -1
  156. data/src/core/lib/iomgr/iocp_windows.cc +0 -1
  157. data/src/core/lib/iomgr/iomgr_windows.cc +0 -2
  158. data/src/core/lib/iomgr/lockfree_event.cc +7 -11
  159. data/src/core/lib/iomgr/polling_entity.cc +10 -3
  160. data/src/core/lib/iomgr/pollset_windows.cc +0 -2
  161. data/src/core/lib/iomgr/resolve_address.cc +0 -1
  162. data/src/core/lib/iomgr/resolve_address_posix.cc +0 -1
  163. data/src/core/lib/iomgr/resolve_address_windows.cc +0 -1
  164. data/src/core/lib/iomgr/sockaddr_utils_posix.cc +0 -1
  165. data/src/core/lib/iomgr/socket_mutator.cc +0 -1
  166. data/src/core/lib/iomgr/socket_utils_linux.cc +0 -2
  167. data/src/core/lib/iomgr/socket_utils_posix.cc +0 -1
  168. data/src/core/lib/iomgr/socket_utils_windows.cc +0 -2
  169. data/src/core/lib/iomgr/tcp_client_cfstream.cc +7 -12
  170. data/src/core/lib/iomgr/tcp_client_posix.cc +8 -12
  171. data/src/core/lib/iomgr/tcp_client_windows.cc +0 -1
  172. data/src/core/lib/iomgr/tcp_posix.cc +32 -68
  173. data/src/core/lib/iomgr/tcp_server_posix.cc +7 -11
  174. data/src/core/lib/iomgr/tcp_windows.cc +4 -12
  175. data/src/core/lib/iomgr/timer_generic.cc +46 -65
  176. data/src/core/lib/iomgr/timer_manager.cc +4 -5
  177. data/src/core/lib/iomgr/unix_sockets_posix.cc +0 -1
  178. data/src/core/lib/iomgr/unix_sockets_posix_noop.cc +0 -2
  179. data/src/core/lib/iomgr/vsock.cc +0 -1
  180. data/src/core/lib/iomgr/wakeup_fd_eventfd.cc +0 -2
  181. data/src/core/lib/promise/activity.h +0 -1
  182. data/src/core/lib/promise/context.h +0 -1
  183. data/src/core/lib/promise/detail/join_state.h +44 -44
  184. data/src/core/lib/promise/detail/seq_state.h +1101 -1356
  185. data/src/core/lib/promise/for_each.h +8 -15
  186. data/src/core/lib/promise/interceptor_list.h +17 -27
  187. data/src/core/lib/promise/latch.h +16 -24
  188. data/src/core/lib/promise/map.h +1 -1
  189. data/src/core/lib/promise/party.cc +238 -114
  190. data/src/core/lib/promise/party.h +105 -308
  191. data/src/core/lib/promise/pipe.h +3 -4
  192. data/src/core/lib/promise/poll.h +0 -1
  193. data/src/core/lib/promise/status_flag.h +0 -1
  194. data/src/core/lib/resource_quota/connection_quota.cc +0 -1
  195. data/src/core/lib/resource_quota/memory_quota.cc +11 -19
  196. data/src/core/lib/resource_quota/memory_quota.h +2 -4
  197. data/src/core/lib/resource_quota/periodic_update.cc +2 -3
  198. data/src/core/lib/resource_quota/thread_quota.cc +0 -1
  199. data/src/core/lib/security/authorization/audit_logging.cc +0 -1
  200. data/src/core/lib/security/authorization/grpc_authorization_engine.cc +0 -1
  201. data/src/core/lib/security/authorization/grpc_server_authz_filter.cc +14 -19
  202. data/src/core/lib/security/authorization/stdout_logger.cc +0 -1
  203. data/src/core/lib/security/credentials/alts/check_gcp_environment.cc +0 -1
  204. data/src/core/lib/security/credentials/alts/check_gcp_environment_windows.cc +0 -1
  205. data/src/core/lib/security/credentials/call_creds_util.cc +0 -1
  206. data/src/core/lib/security/credentials/composite/composite_credentials.cc +0 -1
  207. data/src/core/lib/security/credentials/composite/composite_credentials.h +2 -0
  208. data/src/core/lib/security/credentials/credentials.h +1 -2
  209. data/src/core/lib/security/credentials/external/aws_external_account_credentials.cc +322 -324
  210. data/src/core/lib/security/credentials/external/aws_external_account_credentials.h +53 -42
  211. data/src/core/lib/security/credentials/external/external_account_credentials.cc +391 -353
  212. data/src/core/lib/security/credentials/external/external_account_credentials.h +121 -51
  213. data/src/core/lib/security/credentials/external/file_external_account_credentials.cc +83 -44
  214. data/src/core/lib/security/credentials/external/file_external_account_credentials.h +27 -7
  215. data/src/core/lib/security/credentials/external/url_external_account_credentials.cc +91 -116
  216. data/src/core/lib/security/credentials/external/url_external_account_credentials.h +14 -17
  217. data/src/core/lib/security/credentials/fake/fake_credentials.h +2 -0
  218. data/src/core/lib/security/credentials/gcp_service_account_identity/gcp_service_account_identity_credentials.cc +196 -0
  219. data/src/core/lib/security/credentials/gcp_service_account_identity/gcp_service_account_identity_credentials.h +90 -0
  220. data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +27 -41
  221. data/src/core/lib/security/credentials/iam/iam_credentials.cc +0 -1
  222. data/src/core/lib/security/credentials/iam/iam_credentials.h +2 -0
  223. data/src/core/lib/security/credentials/jwt/jwt_credentials.h +2 -0
  224. data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +163 -259
  225. data/src/core/lib/security/credentials/oauth2/oauth2_credentials.h +34 -56
  226. data/src/core/lib/security/credentials/plugin/plugin_credentials.cc +12 -16
  227. data/src/core/lib/security/credentials/plugin/plugin_credentials.h +2 -0
  228. data/src/core/lib/security/credentials/ssl/ssl_credentials.h +0 -1
  229. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.cc +0 -1
  230. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.h +0 -1
  231. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.cc +0 -1
  232. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.h +0 -1
  233. data/src/core/lib/security/credentials/token_fetcher/token_fetcher_credentials.cc +298 -0
  234. data/src/core/lib/security/credentials/token_fetcher/token_fetcher_credentials.h +176 -0
  235. data/src/core/lib/security/credentials/xds/xds_credentials.cc +0 -1
  236. data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +0 -1
  237. data/src/core/lib/security/security_connector/insecure/insecure_security_connector.cc +0 -1
  238. data/src/core/lib/security/security_connector/load_system_roots_windows.cc +0 -1
  239. data/src/core/lib/security/transport/server_auth_filter.cc +4 -6
  240. data/src/core/lib/slice/percent_encoding.cc +0 -1
  241. data/src/core/lib/slice/slice.cc +0 -1
  242. data/src/core/lib/slice/slice.h +0 -1
  243. data/src/core/lib/slice/slice_buffer.cc +0 -1
  244. data/src/core/lib/slice/slice_internal.h +0 -1
  245. data/src/core/lib/slice/slice_refcount.h +6 -8
  246. data/src/core/lib/surface/byte_buffer_reader.cc +0 -1
  247. data/src/core/lib/surface/call.cc +3 -5
  248. data/src/core/lib/surface/call_utils.h +0 -1
  249. data/src/core/lib/surface/channel.cc +0 -1
  250. data/src/core/lib/surface/channel_create.cc +0 -1
  251. data/src/core/lib/surface/channel_init.h +0 -1
  252. data/src/core/lib/surface/client_call.cc +0 -1
  253. data/src/core/lib/surface/client_call.h +0 -1
  254. data/src/core/lib/surface/completion_queue.cc +28 -4
  255. data/src/core/lib/surface/completion_queue_factory.cc +0 -1
  256. data/src/core/lib/surface/filter_stack_call.cc +9 -9
  257. data/src/core/lib/surface/filter_stack_call.h +0 -1
  258. data/src/core/lib/surface/lame_client.cc +0 -1
  259. data/src/core/lib/surface/server_call.cc +0 -1
  260. data/src/core/lib/surface/server_call.h +0 -1
  261. data/src/core/lib/surface/validate_metadata.h +0 -1
  262. data/src/core/lib/surface/version.cc +2 -2
  263. data/src/core/lib/transport/bdp_estimator.cc +9 -12
  264. data/src/core/lib/transport/bdp_estimator.h +6 -8
  265. data/src/core/lib/transport/call_arena_allocator.cc +2 -16
  266. data/src/core/lib/transport/call_arena_allocator.h +20 -5
  267. data/src/core/lib/transport/call_filters.cc +6 -9
  268. data/src/core/lib/transport/call_spine.h +24 -13
  269. data/src/core/lib/transport/connectivity_state.cc +34 -42
  270. data/src/core/lib/transport/metadata_batch.h +41 -1
  271. data/src/core/lib/transport/timeout_encoding.cc +0 -1
  272. data/src/core/lib/transport/transport.h +6 -8
  273. data/src/core/lib/transport/transport_op_string.cc +0 -1
  274. data/src/core/lib/uri/uri_parser.cc +0 -1
  275. data/src/core/load_balancing/grpclb/grpclb.cc +55 -71
  276. data/src/core/load_balancing/health_check_client.cc +31 -42
  277. data/src/core/load_balancing/oob_backend_metric.cc +2 -4
  278. data/src/core/load_balancing/outlier_detection/outlier_detection.cc +99 -129
  279. data/src/core/load_balancing/pick_first/pick_first.cc +168 -228
  280. data/src/core/load_balancing/priority/priority.cc +77 -106
  281. data/src/core/load_balancing/ring_hash/ring_hash.cc +32 -46
  282. data/src/core/load_balancing/rls/rls.cc +142 -187
  283. data/src/core/load_balancing/round_robin/round_robin.cc +36 -55
  284. data/src/core/load_balancing/weighted_round_robin/static_stride_scheduler.cc +0 -1
  285. data/src/core/load_balancing/weighted_round_robin/weighted_round_robin.cc +85 -110
  286. data/src/core/load_balancing/weighted_target/weighted_target.cc +52 -75
  287. data/src/core/load_balancing/xds/cds.cc +26 -43
  288. data/src/core/load_balancing/xds/xds_cluster_impl.cc +57 -54
  289. data/src/core/load_balancing/xds/xds_cluster_manager.cc +36 -50
  290. data/src/core/load_balancing/xds/xds_override_host.cc +95 -131
  291. data/src/core/load_balancing/xds/xds_wrr_locality.cc +15 -23
  292. data/src/core/plugin_registry/grpc_plugin_registry_extra.cc +3 -0
  293. data/src/core/resolver/binder/binder_resolver.cc +0 -2
  294. data/src/core/resolver/dns/c_ares/dns_resolver_ares.cc +62 -44
  295. data/src/core/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc +0 -2
  296. data/src/core/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc +110 -89
  297. data/src/core/resolver/dns/c_ares/grpc_ares_wrapper.cc +132 -96
  298. data/src/core/resolver/dns/c_ares/grpc_ares_wrapper.h +0 -7
  299. data/src/core/resolver/dns/dns_resolver_plugin.cc +0 -1
  300. data/src/core/resolver/dns/event_engine/event_engine_client_channel_resolver.cc +40 -39
  301. data/src/core/resolver/dns/native/dns_resolver.cc +8 -14
  302. data/src/core/resolver/endpoint_addresses.cc +0 -1
  303. data/src/core/resolver/fake/fake_resolver.cc +0 -1
  304. data/src/core/resolver/polling_resolver.cc +6 -15
  305. data/src/core/resolver/polling_resolver.h +1 -1
  306. data/src/core/resolver/xds/xds_config.cc +96 -0
  307. data/src/core/resolver/xds/xds_config.h +109 -0
  308. data/src/core/resolver/xds/xds_dependency_manager.cc +59 -154
  309. data/src/core/resolver/xds/xds_dependency_manager.h +1 -69
  310. data/src/core/resolver/xds/xds_resolver.cc +51 -55
  311. data/src/core/server/server.cc +2 -2
  312. data/src/core/server/server_config_selector_filter.cc +0 -1
  313. data/src/core/server/xds_server_config_fetcher.cc +4 -6
  314. data/src/core/service_config/service_config_call_data.h +2 -3
  315. data/src/core/service_config/service_config_channel_arg_filter.cc +0 -1
  316. data/src/core/service_config/service_config_impl.h +0 -1
  317. data/src/core/telemetry/call_tracer.cc +0 -1
  318. data/src/core/telemetry/metrics.h +0 -1
  319. data/src/core/telemetry/stats_data.cc +67 -0
  320. data/src/core/telemetry/stats_data.h +48 -0
  321. data/src/core/tsi/alts/handshaker/alts_shared_resource.cc +0 -1
  322. data/src/core/tsi/alts/handshaker/transport_security_common_api.h +0 -1
  323. data/src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.cc +0 -1
  324. data/src/core/tsi/fake_transport_security.cc +6 -5
  325. data/src/core/tsi/ssl/session_cache/ssl_session_cache.cc +0 -1
  326. data/src/core/util/alloc.cc +0 -1
  327. data/src/core/util/gcp_metadata_query.cc +0 -1
  328. data/src/core/util/http_client/httpcli.cc +12 -15
  329. data/src/core/util/http_client/httpcli.h +16 -11
  330. data/src/core/util/http_client/parser.cc +3 -4
  331. data/src/core/util/json/json_reader.cc +0 -1
  332. data/src/core/util/latent_see.cc +29 -9
  333. data/src/core/util/latent_see.h +122 -27
  334. data/src/core/util/log.cc +36 -55
  335. data/src/core/util/lru_cache.h +104 -0
  336. data/src/core/util/msys/tmpfile.cc +0 -1
  337. data/src/core/util/posix/sync.cc +0 -1
  338. data/src/core/util/posix/time.cc +0 -1
  339. data/src/core/util/ring_buffer.h +123 -0
  340. data/src/core/util/spinlock.h +1 -2
  341. data/src/core/util/string.cc +7 -7
  342. data/src/core/util/sync.cc +0 -1
  343. data/src/core/util/sync_abseil.cc +0 -1
  344. data/src/core/util/time.cc +0 -1
  345. data/src/core/util/unique_ptr_with_bitset.h +86 -0
  346. data/src/core/util/useful.h +0 -24
  347. data/src/core/util/windows/cpu.cc +0 -1
  348. data/src/core/util/windows/sync.cc +0 -1
  349. data/src/core/util/windows/time.cc +0 -1
  350. data/src/core/util/windows/tmpfile.cc +0 -1
  351. data/src/core/xds/grpc/xds_bootstrap_grpc.cc +0 -32
  352. data/src/core/xds/grpc/xds_bootstrap_grpc.h +0 -5
  353. data/src/core/xds/grpc/xds_certificate_provider.cc +0 -1
  354. data/src/core/xds/grpc/xds_client_grpc.cc +11 -16
  355. data/src/core/xds/grpc/xds_cluster.cc +2 -8
  356. data/src/core/xds/grpc/xds_cluster.h +4 -4
  357. data/src/core/xds/grpc/xds_cluster_parser.cc +58 -96
  358. data/src/core/xds/grpc/xds_cluster_specifier_plugin.cc +0 -1
  359. data/src/core/xds/grpc/xds_common_types_parser.cc +4 -4
  360. data/src/core/xds/grpc/xds_common_types_parser.h +17 -0
  361. data/src/core/xds/grpc/xds_endpoint_parser.cc +14 -14
  362. data/src/core/xds/grpc/xds_http_fault_filter.cc +15 -6
  363. data/src/core/xds/grpc/xds_http_fault_filter.h +5 -1
  364. data/src/core/xds/grpc/xds_http_filter.h +11 -1
  365. data/src/core/xds/grpc/xds_http_filter_registry.cc +7 -1
  366. data/src/core/xds/grpc/xds_http_filter_registry.h +8 -1
  367. data/src/core/xds/grpc/xds_http_gcp_authn_filter.cc +142 -0
  368. data/src/core/xds/grpc/xds_http_gcp_authn_filter.h +61 -0
  369. data/src/core/xds/grpc/xds_http_rbac_filter.cc +14 -6
  370. data/src/core/xds/grpc/xds_http_rbac_filter.h +5 -1
  371. data/src/core/xds/grpc/xds_http_stateful_session_filter.cc +9 -1
  372. data/src/core/xds/grpc/xds_http_stateful_session_filter.h +5 -1
  373. data/src/core/xds/grpc/xds_lb_policy_registry.cc +14 -16
  374. data/src/core/xds/grpc/xds_listener_parser.cc +10 -11
  375. data/src/core/xds/grpc/xds_metadata.cc +62 -0
  376. data/src/core/xds/grpc/xds_metadata.h +127 -0
  377. data/src/core/xds/grpc/xds_metadata_parser.cc +143 -0
  378. data/src/core/xds/grpc/xds_metadata_parser.h +36 -0
  379. data/src/core/xds/grpc/xds_route_config_parser.cc +12 -17
  380. data/src/core/xds/grpc/xds_routing.cc +57 -22
  381. data/src/core/xds/grpc/xds_routing.h +10 -2
  382. data/src/core/xds/grpc/xds_transport_grpc.cc +0 -1
  383. data/src/core/xds/xds_client/xds_client.cc +124 -165
  384. data/src/core/xds/xds_client/xds_client_stats.cc +20 -27
  385. data/src/ruby/ext/grpc/rb_call.c +1 -1
  386. data/src/ruby/ext/grpc/rb_call_credentials.c +34 -27
  387. data/src/ruby/ext/grpc/rb_channel.c +22 -16
  388. data/src/ruby/ext/grpc/rb_event_thread.c +3 -2
  389. data/src/ruby/ext/grpc/rb_grpc.c +9 -8
  390. data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +6 -10
  391. data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +9 -15
  392. data/src/ruby/ext/grpc/rb_server.c +10 -8
  393. data/src/ruby/lib/grpc/generic/active_call.rb +8 -5
  394. data/src/ruby/lib/grpc/version.rb +1 -1
  395. data/src/ruby/spec/call_spec.rb +53 -40
  396. data/src/ruby/spec/channel_spec.rb +4 -2
  397. data/src/ruby/spec/client_server_spec.rb +148 -507
  398. data/src/ruby/spec/generic/active_call_spec.rb +64 -86
  399. data/src/ruby/spec/support/services.rb +3 -0
  400. data/third_party/boringssl-with-bazel/src/crypto/{fipsmodule/rand/fork_detect.h → bcm_support.h} +51 -6
  401. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/internal.h +43 -0
  402. data/third_party/boringssl-with-bazel/src/crypto/cpu_intel.c +72 -23
  403. data/third_party/boringssl-with-bazel/src/crypto/crypto.c +1 -1
  404. data/third_party/boringssl-with-bazel/src/crypto/ecdsa_extra/ecdsa_asn1.c +160 -14
  405. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/internal.h +2 -0
  406. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm.c +79 -78
  407. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm_interface.h +89 -0
  408. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{div.c → div.c.inc} +146 -179
  409. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{random.c → random.c.inc} +6 -8
  410. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{sqrt.c → sqrt.c.inc} +1 -1
  411. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/{e_aes.c → e_aes.c.inc} +9 -8
  412. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{ec_key.c → ec_key.c.inc} +11 -7
  413. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{p256-nistz.c → p256-nistz.c.inc} +104 -12
  414. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-nistz.h +65 -8
  415. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/{ecdsa.c → ecdsa.c.inc} +52 -107
  416. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/internal.h +28 -11
  417. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/internal.h +1 -80
  418. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/{rand.c → rand.c.inc} +26 -40
  419. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/{padding.c → padding.c.inc} +2 -5
  420. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/{rsa_impl.c → rsa_impl.c.inc} +1 -1
  421. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/{self_check.c → self_check.c.inc} +9 -35
  422. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/service_indicator/internal.h +2 -2
  423. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/service_indicator/{service_indicator.c → service_indicator.c.inc} +2 -2
  424. data/third_party/boringssl-with-bazel/src/crypto/hpke/hpke.c +293 -2
  425. data/third_party/boringssl-with-bazel/src/crypto/internal.h +69 -14
  426. data/third_party/boringssl-with-bazel/src/crypto/mem.c +7 -3
  427. data/third_party/boringssl-with-bazel/src/crypto/mldsa/internal.h +73 -0
  428. data/third_party/boringssl-with-bazel/src/crypto/mldsa/mldsa.c +1687 -0
  429. data/third_party/boringssl-with-bazel/src/crypto/mlkem/internal.h +90 -0
  430. data/third_party/boringssl-with-bazel/src/crypto/mlkem/mlkem.cc +1097 -0
  431. data/third_party/boringssl-with-bazel/src/crypto/obj/obj_dat.h +4 -1
  432. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_lib.c +4 -5
  433. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pk8.c +2 -3
  434. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pkey.c +1 -1
  435. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/internal.h +1 -0
  436. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/deterministic.c +9 -1
  437. data/third_party/boringssl-with-bazel/src/crypto/{fipsmodule/rand → rand_extra}/fork_detect.c +26 -28
  438. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/getentropy.c +9 -1
  439. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/ios.c +9 -1
  440. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/passive.c +19 -3
  441. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/rand_extra.c +26 -23
  442. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/sysrand_internal.h +37 -0
  443. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/trusty.c +9 -1
  444. data/third_party/boringssl-with-bazel/src/crypto/{fipsmodule/rand → rand_extra}/urandom.c +19 -19
  445. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/windows.c +8 -1
  446. data/third_party/boringssl-with-bazel/src/crypto/rsa_extra/internal.h +2 -0
  447. data/third_party/boringssl-with-bazel/src/include/openssl/asn1.h +14 -1
  448. data/third_party/boringssl-with-bazel/src/include/openssl/bn.h +14 -9
  449. data/third_party/boringssl-with-bazel/src/include/openssl/experimental/dilithium.h +13 -15
  450. data/third_party/boringssl-with-bazel/src/include/openssl/hpke.h +8 -6
  451. data/third_party/boringssl-with-bazel/src/include/openssl/mldsa.h +136 -0
  452. data/third_party/boringssl-with-bazel/src/include/openssl/mlkem.h +246 -0
  453. data/third_party/boringssl-with-bazel/src/include/openssl/nid.h +3 -0
  454. data/third_party/boringssl-with-bazel/src/include/openssl/pem.h +3 -4
  455. data/third_party/boringssl-with-bazel/src/include/openssl/service_indicator.h +2 -2
  456. data/third_party/boringssl-with-bazel/src/include/openssl/span.h +22 -0
  457. data/third_party/boringssl-with-bazel/src/include/openssl/ssl.h +35 -5
  458. data/third_party/boringssl-with-bazel/src/ssl/d1_both.cc +5 -6
  459. data/third_party/boringssl-with-bazel/src/ssl/d1_lib.cc +6 -0
  460. data/third_party/boringssl-with-bazel/src/ssl/d1_pkt.cc +6 -1
  461. data/third_party/boringssl-with-bazel/src/ssl/dtls_method.cc +13 -1
  462. data/third_party/boringssl-with-bazel/src/ssl/dtls_record.cc +289 -55
  463. data/third_party/boringssl-with-bazel/src/ssl/extensions.cc +2 -0
  464. data/third_party/boringssl-with-bazel/src/ssl/handshake_client.cc +69 -38
  465. data/third_party/boringssl-with-bazel/src/ssl/handshake_server.cc +14 -3
  466. data/third_party/boringssl-with-bazel/src/ssl/internal.h +107 -14
  467. data/third_party/boringssl-with-bazel/src/ssl/s3_both.cc +44 -16
  468. data/third_party/boringssl-with-bazel/src/ssl/s3_pkt.cc +21 -1
  469. data/third_party/boringssl-with-bazel/src/ssl/ssl_aead_ctx.cc +86 -1
  470. data/third_party/boringssl-with-bazel/src/ssl/ssl_buffer.cc +7 -4
  471. data/third_party/boringssl-with-bazel/src/ssl/ssl_key_share.cc +97 -3
  472. data/third_party/boringssl-with-bazel/src/ssl/ssl_lib.cc +31 -2
  473. data/third_party/boringssl-with-bazel/src/ssl/ssl_versions.cc +6 -0
  474. data/third_party/boringssl-with-bazel/src/ssl/tls13_client.cc +18 -4
  475. data/third_party/boringssl-with-bazel/src/ssl/tls13_enc.cc +96 -34
  476. data/third_party/boringssl-with-bazel/src/ssl/tls13_server.cc +15 -5
  477. data/third_party/boringssl-with-bazel/src/ssl/tls_record.cc +3 -23
  478. metadata +113 -87
  479. data/src/core/ext/transport/chttp2/transport/max_concurrent_streams_policy.cc +0 -45
  480. data/src/core/ext/transport/chttp2/transport/max_concurrent_streams_policy.h +0 -67
  481. data/src/core/util/android/log.cc +0 -48
  482. data/src/core/util/linux/log.cc +0 -69
  483. data/src/core/util/posix/log.cc +0 -69
  484. data/src/core/util/windows/log.cc +0 -73
  485. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/{aes.c → aes.c.inc} +0 -0
  486. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/{aes_nohw.c → aes_nohw.c.inc} +0 -0
  487. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/{key_wrap.c → key_wrap.c.inc} +0 -0
  488. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/{mode_wrappers.c → mode_wrappers.c.inc} +0 -0
  489. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{add.c → add.c.inc} +0 -0
  490. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/asm/{x86_64-gcc.c → x86_64-gcc.c.inc} +0 -0
  491. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{bn.c → bn.c.inc} +0 -0
  492. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{bytes.c → bytes.c.inc} +0 -0
  493. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{cmp.c → cmp.c.inc} +0 -0
  494. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{ctx.c → ctx.c.inc} +0 -0
  495. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{div_extra.c → div_extra.c.inc} +0 -0
  496. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{exponentiation.c → exponentiation.c.inc} +0 -0
  497. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{gcd.c → gcd.c.inc} +0 -0
  498. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{gcd_extra.c → gcd_extra.c.inc} +0 -0
  499. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{generic.c → generic.c.inc} +0 -0
  500. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{jacobi.c → jacobi.c.inc} +0 -0
  501. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{montgomery.c → montgomery.c.inc} +0 -0
  502. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{montgomery_inv.c → montgomery_inv.c.inc} +0 -0
  503. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{mul.c → mul.c.inc} +0 -0
  504. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{prime.c → prime.c.inc} +0 -0
  505. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{rsaz_exp.c → rsaz_exp.c.inc} +0 -0
  506. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{shift.c → shift.c.inc} +0 -0
  507. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/{aead.c → aead.c.inc} +0 -0
  508. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/{cipher.c → cipher.c.inc} +0 -0
  509. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/{e_aesccm.c → e_aesccm.c.inc} +0 -0
  510. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cmac/{cmac.c → cmac.c.inc} +0 -0
  511. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/{check.c → check.c.inc} +0 -0
  512. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/{dh.c → dh.c.inc} +0 -0
  513. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/{digest.c → digest.c.inc} +0 -0
  514. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/{digests.c → digests.c.inc} +0 -0
  515. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digestsign/{digestsign.c → digestsign.c.inc} +0 -0
  516. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{ec.c → ec.c.inc} +0 -0
  517. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{ec_montgomery.c → ec_montgomery.c.inc} +0 -0
  518. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{felem.c → felem.c.inc} +0 -0
  519. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{oct.c → oct.c.inc} +0 -0
  520. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{p224-64.c → p224-64.c.inc} +0 -0
  521. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{p256.c → p256.c.inc} +0 -0
  522. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{scalar.c → scalar.c.inc} +0 -0
  523. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{simple.c → simple.c.inc} +0 -0
  524. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{simple_mul.c → simple_mul.c.inc} +0 -0
  525. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{util.c → util.c.inc} +0 -0
  526. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{wnaf.c → wnaf.c.inc} +0 -0
  527. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdh/{ecdh.c → ecdh.c.inc} +0 -0
  528. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/hkdf/{hkdf.c → hkdf.c.inc} +0 -0
  529. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/hmac/{hmac.c → hmac.c.inc} +0 -0
  530. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/md4/{md4.c → md4.c.inc} +0 -0
  531. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/md5/{md5.c → md5.c.inc} +0 -0
  532. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{cbc.c → cbc.c.inc} +0 -0
  533. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{cfb.c → cfb.c.inc} +0 -0
  534. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{ctr.c → ctr.c.inc} +0 -0
  535. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{gcm.c → gcm.c.inc} +0 -0
  536. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{gcm_nohw.c → gcm_nohw.c.inc} +0 -0
  537. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{ofb.c → ofb.c.inc} +0 -0
  538. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{polyval.c → polyval.c.inc} +0 -0
  539. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/{ctrdrbg.c → ctrdrbg.c.inc} +0 -0
  540. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/{blinding.c → blinding.c.inc} +0 -0
  541. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/{rsa.c → rsa.c.inc} +0 -0
  542. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/{fips.c → fips.c.inc} +0 -0
  543. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/{sha1.c → sha1.c.inc} +0 -0
  544. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/{sha256.c → sha256.c.inc} +0 -0
  545. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/{sha512.c → sha512.c.inc} +0 -0
  546. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/tls/{kdf.c → kdf.c.inc} +0 -0
  547. /data/third_party/boringssl-with-bazel/src/crypto/{fipsmodule/rand → rand_extra}/getrandom_fillin.h +0 -0
@@ -44,25 +44,6 @@
44
44
  #include "src/core/lib/resource_quota/arena.h"
45
45
  #include "src/core/util/useful.h"
46
46
 
47
- // Two implementations of party synchronization are provided: one using a single
48
- // atomic, the other using a mutex and a set of state variables.
49
- // Originally the atomic implementation was implemented, but we found some race
50
- // conditions on Arm that were not reported by our default TSAN implementation.
51
- // The mutex implementation was added to see if it would fix the problem, and
52
- // it did. Later we found the race condition, so there's no known reason to use
53
- // the mutex version - however we keep it around as a just in case measure.
54
- // There's a thought of fuzzing the two implementations against each other as
55
- // a correctness check of both, but that's not implemented yet.
56
-
57
- #define GRPC_PARTY_SYNC_USING_ATOMICS
58
- // #define GRPC_PARTY_SYNC_USING_MUTEX
59
-
60
- #if defined(GRPC_PARTY_SYNC_USING_ATOMICS) + \
61
- defined(GRPC_PARTY_SYNC_USING_MUTEX) != \
62
- 1
63
- #error Must define a party sync mechanism
64
- #endif
65
-
66
47
  namespace grpc_core {
67
48
 
68
49
  namespace party_detail {
@@ -73,264 +54,6 @@ static constexpr size_t kMaxParticipants = 16;
73
54
 
74
55
  } // namespace party_detail
75
56
 
76
- class PartySyncUsingAtomics {
77
- public:
78
- explicit PartySyncUsingAtomics(size_t initial_refs)
79
- : state_(kOneRef * initial_refs) {}
80
-
81
- void IncrementRefCount() {
82
- const uint64_t prev_state =
83
- state_.fetch_add(kOneRef, std::memory_order_relaxed);
84
- LogStateChange("IncrementRefCount", prev_state, prev_state + kOneRef);
85
- }
86
- GRPC_MUST_USE_RESULT bool RefIfNonZero();
87
- // Returns true if the ref count is now zero and the caller should call
88
- // PartyIsOver
89
- GRPC_MUST_USE_RESULT bool Unref() {
90
- const uint64_t prev_state =
91
- state_.fetch_sub(kOneRef, std::memory_order_acq_rel);
92
- LogStateChange("Unref", prev_state, prev_state - kOneRef);
93
- if ((prev_state & kRefMask) == kOneRef) {
94
- return UnreffedLast();
95
- }
96
- return false;
97
- }
98
- void ForceImmediateRepoll(WakeupMask mask) {
99
- // Or in the bit for the currently polling participant.
100
- // Will be grabbed next round to force a repoll of this promise.
101
- const uint64_t prev_state =
102
- state_.fetch_or(mask, std::memory_order_relaxed);
103
- LogStateChange("ForceImmediateRepoll", prev_state, prev_state | mask);
104
- }
105
-
106
- // Run the update loop: poll_one_participant is called with an integral index
107
- // for the participant that should be polled. It should return true if the
108
- // participant completed and should be removed from the allocated set.
109
- template <typename F>
110
- GRPC_MUST_USE_RESULT bool RunParty(F poll_one_participant) {
111
- // Grab the current state, and clear the wakeup bits & add flag.
112
- uint64_t prev_state = state_.fetch_and(kRefMask | kLocked | kAllocatedMask,
113
- std::memory_order_acquire);
114
- LogStateChange("Run", prev_state,
115
- prev_state & (kRefMask | kLocked | kAllocatedMask));
116
- CHECK(prev_state & kLocked);
117
- if (prev_state & kDestroying) return true;
118
- // From the previous state, extract which participants we're to wakeup.
119
- uint64_t wakeups = prev_state & kWakeupMask;
120
- // Now update prev_state to be what we want the CAS to see below.
121
- prev_state &= kRefMask | kLocked | kAllocatedMask;
122
- for (;;) {
123
- uint64_t keep_allocated_mask = kAllocatedMask;
124
- // For each wakeup bit...
125
- while (wakeups != 0) {
126
- uint64_t t = LowestOneBit(wakeups);
127
- const int i = CountTrailingZeros(t);
128
- wakeups ^= t;
129
- // If the bit is not set, skip.
130
- if (poll_one_participant(i)) {
131
- const uint64_t allocated_bit = (1u << i << kAllocatedShift);
132
- keep_allocated_mask &= ~allocated_bit;
133
- }
134
- }
135
- // Try to CAS the state we expected to have (with no wakeups or adds)
136
- // back to unlocked (by masking in only the ref mask - sans locked bit).
137
- // If this succeeds then no wakeups were added, no adds were added, and we
138
- // have successfully unlocked.
139
- // Otherwise, we need to loop again.
140
- // Note that if an owning waker is created or the weak cas spuriously
141
- // fails we will also loop again, but in that case see no wakeups or adds
142
- // and so will get back here fairly quickly.
143
- // TODO(ctiller): consider mitigations for the accidental wakeup on owning
144
- // waker creation case -- I currently expect this will be more expensive
145
- // than this quick loop.
146
- if (state_.compare_exchange_weak(
147
- prev_state, (prev_state & (kRefMask | keep_allocated_mask)),
148
- std::memory_order_acq_rel, std::memory_order_acquire)) {
149
- LogStateChange("Run:End", prev_state,
150
- prev_state & (kRefMask | kAllocatedMask));
151
- return false;
152
- }
153
- while (!state_.compare_exchange_weak(
154
- prev_state,
155
- prev_state & (kRefMask | kLocked | keep_allocated_mask))) {
156
- // Nothing to do here.
157
- }
158
- LogStateChange("Run:Continue", prev_state,
159
- prev_state & (kRefMask | kLocked | keep_allocated_mask));
160
- CHECK(prev_state & kLocked);
161
- if (prev_state & kDestroying) return true;
162
- // From the previous state, extract which participants we're to wakeup.
163
- wakeups = prev_state & kWakeupMask;
164
- // Now update prev_state to be what we want the CAS to see once wakeups
165
- // complete next iteration.
166
- prev_state &= kRefMask | kLocked | keep_allocated_mask;
167
- }
168
- return false;
169
- }
170
-
171
- // Add new participants to the party. Returns true if the caller should run
172
- // the party. store is called with an array of indices of the new
173
- // participants. Adds a ref that should be dropped by the caller after
174
- // RunParty has been called (if that was required).
175
- template <typename F>
176
- GRPC_MUST_USE_RESULT bool AddParticipantsAndRef(size_t count, F store) {
177
- uint64_t state = state_.load(std::memory_order_acquire);
178
- uint64_t allocated;
179
-
180
- size_t slots[party_detail::kMaxParticipants];
181
-
182
- // Find slots for each new participant, ordering them from lowest available
183
- // slot upwards to ensure the same poll ordering as presentation ordering to
184
- // this function.
185
- WakeupMask wakeup_mask;
186
- do {
187
- wakeup_mask = 0;
188
- allocated = (state & kAllocatedMask) >> kAllocatedShift;
189
- for (size_t i = 0; i < count; i++) {
190
- auto new_mask = LowestOneBit(~allocated);
191
- wakeup_mask |= new_mask;
192
- allocated |= new_mask;
193
- slots[i] = CountTrailingZeros(new_mask);
194
- }
195
- // Try to allocate this slot and take a ref (atomically).
196
- // Ref needs to be taken because once we store the participant it could be
197
- // spuriously woken up and unref the party.
198
- } while (!state_.compare_exchange_weak(
199
- state, (state | (allocated << kAllocatedShift)) + kOneRef,
200
- std::memory_order_acq_rel, std::memory_order_acquire));
201
- LogStateChange("AddParticipantsAndRef", state,
202
- (state | (allocated << kAllocatedShift)) + kOneRef);
203
-
204
- store(slots);
205
-
206
- // Now we need to wake up the party.
207
- state = state_.fetch_or(wakeup_mask | kLocked, std::memory_order_release);
208
- LogStateChange("AddParticipantsAndRef:Wakeup", state,
209
- state | wakeup_mask | kLocked);
210
-
211
- // If the party was already locked, we're done.
212
- return ((state & kLocked) == 0);
213
- }
214
-
215
- // Schedule a wakeup for the given participant.
216
- // Returns true if the caller should run the party.
217
- GRPC_MUST_USE_RESULT bool ScheduleWakeup(WakeupMask mask);
218
-
219
- bool has_participants() const {
220
- return (state_.load(std::memory_order_relaxed) & kAllocatedMask) != 0;
221
- }
222
-
223
- private:
224
- bool UnreffedLast();
225
-
226
- void LogStateChange(const char* op, uint64_t prev_state, uint64_t new_state,
227
- DebugLocation loc = {}) {
228
- if (GRPC_TRACE_FLAG_ENABLED(party_state)) {
229
- LOG(INFO).AtLocation(loc.file(), loc.line())
230
- << absl::StrFormat("Party %p %30s: %016" PRIx64 " -> %016" PRIx64,
231
- this, op, prev_state, new_state);
232
- }
233
- }
234
-
235
- // State bits:
236
- // The atomic state_ field is composed of the following:
237
- // - 24 bits for ref counts
238
- // 1 is owned by the party prior to Orphan()
239
- // All others are owned by owning wakers
240
- // - 1 bit to indicate whether the party is locked
241
- // The first thread to set this owns the party until it is unlocked
242
- // That thread will run the main loop until no further work needs to
243
- // be done.
244
- // - 1 bit to indicate whether there are participants waiting to be
245
- // added
246
- // - 16 bits, one per participant, indicating which participants have
247
- // been
248
- // woken up and should be polled next time the main loop runs.
249
-
250
- // clang-format off
251
- // Bits used to store 16 bits of wakeups
252
- static constexpr uint64_t kWakeupMask = 0x0000'0000'0000'ffff;
253
- // Bits used to store 16 bits of allocated participant slots.
254
- static constexpr uint64_t kAllocatedMask = 0x0000'0000'ffff'0000;
255
- // Bit indicating destruction has begun (refs went to zero)
256
- static constexpr uint64_t kDestroying = 0x0000'0001'0000'0000;
257
- // Bit indicating locked or not
258
- static constexpr uint64_t kLocked = 0x0000'0008'0000'0000;
259
- // Bits used to store 24 bits of ref counts
260
- static constexpr uint64_t kRefMask = 0xffff'ff00'0000'0000;
261
- // clang-format on
262
-
263
- // Shift to get from a participant mask to an allocated mask.
264
- static constexpr size_t kAllocatedShift = 16;
265
- // How far to shift to get the refcount
266
- static constexpr size_t kRefShift = 40;
267
- // One ref count
268
- static constexpr uint64_t kOneRef = 1ull << kRefShift;
269
-
270
- std::atomic<uint64_t> state_;
271
- };
272
-
273
- class PartySyncUsingMutex {
274
- public:
275
- explicit PartySyncUsingMutex(size_t initial_refs) : refs_(initial_refs) {}
276
-
277
- void IncrementRefCount() { refs_.Ref(); }
278
- GRPC_MUST_USE_RESULT bool RefIfNonZero() { return refs_.RefIfNonZero(); }
279
- GRPC_MUST_USE_RESULT bool Unref() { return refs_.Unref(); }
280
- void ForceImmediateRepoll(WakeupMask mask) {
281
- MutexLock lock(&mu_);
282
- wakeups_ |= mask;
283
- }
284
- template <typename F>
285
- GRPC_MUST_USE_RESULT bool RunParty(F poll_one_participant) {
286
- WakeupMask freed = 0;
287
- while (true) {
288
- ReleasableMutexLock lock(&mu_);
289
- CHECK(locked_);
290
- allocated_ &= ~std::exchange(freed, 0);
291
- auto wakeup = std::exchange(wakeups_, 0);
292
- if (wakeup == 0) {
293
- locked_ = false;
294
- return false;
295
- }
296
- lock.Release();
297
- for (size_t i = 0; wakeup != 0; i++, wakeup >>= 1) {
298
- if ((wakeup & 1) == 0) continue;
299
- if (poll_one_participant(i)) freed |= 1 << i;
300
- }
301
- }
302
- }
303
-
304
- template <typename F>
305
- GRPC_MUST_USE_RESULT bool AddParticipantsAndRef(size_t count, F store) {
306
- IncrementRefCount();
307
- MutexLock lock(&mu_);
308
- size_t slots[party_detail::kMaxParticipants];
309
- WakeupMask wakeup_mask = 0;
310
- size_t n = 0;
311
- for (size_t bit = 0; n < count && bit < party_detail::kMaxParticipants;
312
- bit++) {
313
- if (allocated_ & (1 << bit)) continue;
314
- slots[n++] = bit;
315
- wakeup_mask |= 1 << bit;
316
- allocated_ |= 1 << bit;
317
- }
318
- CHECK(n == count);
319
- store(slots);
320
- wakeups_ |= wakeup_mask;
321
- return !std::exchange(locked_, true);
322
- }
323
-
324
- GRPC_MUST_USE_RESULT bool ScheduleWakeup(WakeupMask mask);
325
-
326
- private:
327
- RefCount refs_;
328
- Mutex mu_;
329
- WakeupMask allocated_ ABSL_GUARDED_BY(mu_) = 0;
330
- WakeupMask wakeups_ ABSL_GUARDED_BY(mu_) = 0;
331
- bool locked_ ABSL_GUARDED_BY(mu_) = false;
332
- };
333
-
334
57
  // A Party is an Activity with multiple participant promises.
335
58
  class Party : public Activity, private Wakeable {
336
59
  private:
@@ -340,7 +63,6 @@ class Party : public Activity, private Wakeable {
340
63
  // One participant in the party.
341
64
  class Participant {
342
65
  public:
343
- explicit Participant(absl::string_view name) : name_(name) {}
344
66
  // Poll the participant. Return true if complete.
345
67
  // Participant should take care of its own deallocation in this case.
346
68
  virtual bool PollParticipantPromise() = 0;
@@ -351,14 +73,11 @@ class Party : public Activity, private Wakeable {
351
73
  // Return a Handle instance for this participant.
352
74
  Wakeable* MakeNonOwningWakeable(Party* party);
353
75
 
354
- absl::string_view name() const { return name_; }
355
-
356
76
  protected:
357
77
  ~Participant();
358
78
 
359
79
  private:
360
80
  Handle* handle_ = nullptr;
361
- absl::string_view name_;
362
81
  };
363
82
 
364
83
  public:
@@ -400,10 +119,17 @@ class Party : public Activity, private Wakeable {
400
119
  Waker MakeNonOwningWaker() final;
401
120
  std::string ActivityDebugTag(WakeupMask wakeup_mask) const final;
402
121
 
403
- void IncrementRefCount() { sync_.IncrementRefCount(); }
404
- void Unref() {
405
- if (sync_.Unref()) PartyIsOver();
122
+ GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION void IncrementRefCount() {
123
+ const uint64_t prev_state =
124
+ state_.fetch_add(kOneRef, std::memory_order_relaxed);
125
+ LogStateChange("IncrementRefCount", prev_state, prev_state + kOneRef);
126
+ }
127
+ GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION void Unref() {
128
+ uint64_t prev_state = state_.fetch_sub(kOneRef, std::memory_order_acq_rel);
129
+ LogStateChange("Unref", prev_state, prev_state - kOneRef);
130
+ if ((prev_state & kRefMask) == kOneRef) PartyIsOver();
406
131
  }
132
+
407
133
  RefCountedPtr<Party> Ref() {
408
134
  IncrementRefCount();
409
135
  return RefCountedPtr<Party>(this);
@@ -432,17 +158,15 @@ class Party : public Activity, private Wakeable {
432
158
  friend class Arena;
433
159
 
434
160
  // Derived types should be constructed upon `arena`.
435
- explicit Party(RefCountedPtr<Arena> arena)
436
- : sync_(1), arena_(std::move(arena)) {}
161
+ explicit Party(RefCountedPtr<Arena> arena) : arena_(std::move(arena)) {}
437
162
  ~Party() override;
438
163
 
439
164
  // Main run loop. Must be locked.
440
165
  // Polls participants and drains the add queue until there is no work left to
441
166
  // be done.
442
- // Returns true if the party is over.
443
- GRPC_MUST_USE_RESULT bool RunParty();
167
+ void RunPartyAndUnref(uint64_t prev_state);
444
168
 
445
- bool RefIfNonZero() { return sync_.RefIfNonZero(); }
169
+ bool RefIfNonZero();
446
170
 
447
171
  private:
448
172
  // Concrete implementation of a participant for some promise & oncomplete
@@ -453,9 +177,9 @@ class Party : public Activity, private Wakeable {
453
177
  using Promise = typename Factory::Promise;
454
178
 
455
179
  public:
456
- ParticipantImpl(absl::string_view name, SuppliedFactory promise_factory,
180
+ ParticipantImpl(absl::string_view, SuppliedFactory promise_factory,
457
181
  OnComplete on_complete)
458
- : Participant(name), on_complete_(std::move(on_complete)) {
182
+ : on_complete_(std::move(on_complete)) {
459
183
  Construct(&factory_, std::move(promise_factory));
460
184
  }
461
185
  ~ParticipantImpl() {
@@ -503,9 +227,7 @@ class Party : public Activity, private Wakeable {
503
227
  using Result = typename Promise::Result;
504
228
 
505
229
  public:
506
- PromiseParticipantImpl(absl::string_view name,
507
- SuppliedFactory promise_factory)
508
- : Participant(name) {
230
+ PromiseParticipantImpl(absl::string_view, SuppliedFactory promise_factory) {
509
231
  Construct(&factory_, std::move(promise_factory));
510
232
  }
511
233
 
@@ -576,38 +298,113 @@ class Party : public Activity, private Wakeable {
576
298
  std::atomic<State> state_{State::kFactory};
577
299
  };
578
300
 
301
+ // State bits:
302
+ // The atomic state_ field is composed of the following:
303
+ // - 24 bits for ref counts
304
+ // 1 is owned by the party prior to Orphan()
305
+ // All others are owned by owning wakers
306
+ // - 1 bit to indicate whether the party is locked
307
+ // The first thread to set this owns the party until it is unlocked
308
+ // That thread will run the main loop until no further work needs to
309
+ // be done.
310
+ // - 1 bit to indicate whether there are participants waiting to be
311
+ // added
312
+ // - 16 bits, one per participant, indicating which participants have
313
+ // been
314
+ // woken up and should be polled next time the main loop runs.
315
+
316
+ // clang-format off
317
+ // Bits used to store 16 bits of wakeups
318
+ static constexpr uint64_t kWakeupMask = 0x0000'0000'0000'ffff;
319
+ // Bits used to store 16 bits of allocated participant slots.
320
+ static constexpr uint64_t kAllocatedMask = 0x0000'0000'ffff'0000;
321
+ // Bit indicating locked or not
322
+ static constexpr uint64_t kLocked = 0x0000'0008'0000'0000;
323
+ // Bits used to store 24 bits of ref counts
324
+ static constexpr uint64_t kRefMask = 0xffff'ff00'0000'0000;
325
+ // clang-format on
326
+
327
+ // Shift to get from a participant mask to an allocated mask.
328
+ static constexpr size_t kAllocatedShift = 16;
329
+ // How far to shift to get the refcount
330
+ static constexpr size_t kRefShift = 40;
331
+ // One ref count
332
+ static constexpr uint64_t kOneRef = 1ull << kRefShift;
333
+
579
334
  // Destroy any remaining participants.
580
335
  // Needs to have normal context setup before calling.
581
336
  void CancelRemainingParticipants();
582
337
 
583
338
  // Run the locked part of the party until it is unlocked.
584
- static void RunLocked(Party* party);
339
+ static void RunLockedAndUnref(Party* party, uint64_t prev_state);
585
340
  // Called in response to Unref() hitting zero - ultimately calls PartyOver,
586
341
  // but needs to set some stuff up.
587
342
  // Here so it gets compiled out of line.
588
343
  void PartyIsOver();
589
344
 
590
345
  // Wakeable implementation
591
- void Wakeup(WakeupMask wakeup_mask) final;
346
+ void Wakeup(WakeupMask wakeup_mask) final {
347
+ if (Activity::current() == this) {
348
+ wakeup_mask_ |= wakeup_mask;
349
+ Unref();
350
+ return;
351
+ }
352
+ WakeupFromState(state_.load(std::memory_order_relaxed), wakeup_mask);
353
+ }
354
+
355
+ GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION void WakeupFromState(
356
+ uint64_t cur_state, WakeupMask wakeup_mask) {
357
+ DCHECK_NE(wakeup_mask & kWakeupMask, 0u)
358
+ << "Wakeup mask must be non-zero: " << wakeup_mask;
359
+ while (true) {
360
+ if (cur_state & kLocked) {
361
+ // If the party is locked, we need to set the wakeup bits, and then
362
+ // we'll immediately unref. Since something is running this should never
363
+ // bring the refcount to zero.
364
+ DCHECK_GT(cur_state & kRefMask, kOneRef);
365
+ auto new_state = (cur_state | wakeup_mask) - kOneRef;
366
+ if (state_.compare_exchange_weak(cur_state, new_state,
367
+ std::memory_order_release)) {
368
+ LogStateChange("Wakeup", cur_state, cur_state | wakeup_mask);
369
+ return;
370
+ }
371
+ } else {
372
+ // If the party is not locked, we need to lock it and run.
373
+ DCHECK_EQ(cur_state & kWakeupMask, 0u);
374
+ if (state_.compare_exchange_weak(cur_state, cur_state | kLocked,
375
+ std::memory_order_acq_rel)) {
376
+ LogStateChange("WakeupAndRun", cur_state, cur_state | kLocked);
377
+ wakeup_mask_ |= wakeup_mask;
378
+ RunLockedAndUnref(this, cur_state);
379
+ return;
380
+ }
381
+ }
382
+ }
383
+ }
384
+
592
385
  void WakeupAsync(WakeupMask wakeup_mask) final;
593
386
  void Drop(WakeupMask wakeup_mask) final;
594
387
 
595
388
  // Add a participant (backs Spawn, after type erasure to ParticipantFactory).
596
389
  void AddParticipants(Participant** participant, size_t count);
597
- bool RunOneParticipant(int i);
390
+ void AddParticipant(Participant* participant);
391
+ void DelayAddParticipants(Participant** participant, size_t count);
392
+
393
+ GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION void LogStateChange(
394
+ const char* op, uint64_t prev_state, uint64_t new_state,
395
+ DebugLocation loc = {}) {
396
+ GRPC_TRACE_LOG(party_state, INFO).AtLocation(loc.file(), loc.line())
397
+ << DebugTag() << " " << op << " "
398
+ << absl::StrFormat("%016" PRIx64 " -> %016" PRIx64, prev_state,
399
+ new_state);
400
+ }
598
401
 
599
402
  // Sentinal value for currently_polling_ when no participant is being polled.
600
403
  static constexpr uint8_t kNotPolling = 255;
601
404
 
602
- #ifdef GRPC_PARTY_SYNC_USING_ATOMICS
603
- PartySyncUsingAtomics sync_;
604
- #elif defined(GRPC_PARTY_SYNC_USING_MUTEX)
605
- PartySyncUsingMutex sync_;
606
- #else
607
- #error No synchronization method defined
608
- #endif
609
-
405
+ std::atomic<uint64_t> state_{kOneRef};
610
406
  uint8_t currently_polling_ = kNotPolling;
407
+ WakeupMask wakeup_mask_ = 0;
611
408
  // All current participants, using a tagged format.
612
409
  // If the lower bit is unset, then this is a Participant*.
613
410
  // If the lower bit is set, then this is a ParticipantFactory*.
@@ -633,8 +430,8 @@ void Party::BulkSpawner::Spawn(absl::string_view name, Factory promise_factory,
633
430
  template <typename Factory, typename OnComplete>
634
431
  void Party::Spawn(absl::string_view name, Factory promise_factory,
635
432
  OnComplete on_complete) {
636
- BulkSpawner(this).Spawn(name, std::move(promise_factory),
637
- std::move(on_complete));
433
+ AddParticipant(new ParticipantImpl<Factory, OnComplete>(
434
+ name, std::move(promise_factory), std::move(on_complete)));
638
435
  }
639
436
 
640
437
  template <typename Factory>
@@ -642,7 +439,7 @@ auto Party::SpawnWaitable(absl::string_view name, Factory promise_factory) {
642
439
  auto participant = MakeRefCounted<PromiseParticipantImpl<Factory>>(
643
440
  name, std::move(promise_factory));
644
441
  Participant* p = participant->Ref().release();
645
- AddParticipants(&p, 1);
442
+ AddParticipant(p);
646
443
  return [participant = std::move(participant)]() mutable {
647
444
  return participant->PollCompletion();
648
445
  };
@@ -634,10 +634,9 @@ class Push {
634
634
 
635
635
  Poll<bool> operator()() {
636
636
  if (center_ == nullptr) {
637
- if (GRPC_TRACE_FLAG_ENABLED(promise_primitives)) {
638
- VLOG(2) << GetContext<Activity>()->DebugTag()
639
- << " Pipe push has a null center";
640
- }
637
+ GRPC_TRACE_VLOG(promise_primitives, 2)
638
+ << GetContext<Activity>()->DebugTag()
639
+ << " Pipe push has a null center";
641
640
  return false;
642
641
  }
643
642
  if (auto* p = absl::get_if<T>(&state_)) {
@@ -22,7 +22,6 @@
22
22
  #include "absl/strings/str_format.h"
23
23
  #include "absl/types/optional.h"
24
24
 
25
- #include <grpc/support/log.h>
26
25
  #include <grpc/support/port_platform.h>
27
26
 
28
27
  #include "src/core/lib/gprpp/construct_destruct.h"
@@ -23,7 +23,6 @@
23
23
  #include "absl/strings/str_cat.h"
24
24
  #include "absl/types/optional.h"
25
25
 
26
- #include <grpc/support/log.h>
27
26
  #include <grpc/support/port_platform.h>
28
27
 
29
28
  #include "src/core/lib/promise/detail/status.h"
@@ -19,7 +19,6 @@
19
19
 
20
20
  #include "absl/log/check.h"
21
21
 
22
- #include <grpc/support/log.h>
23
22
  #include <grpc/support/port_platform.h>
24
23
 
25
24
  namespace grpc_core {
@@ -355,9 +355,8 @@ void GrpcMemoryAllocatorImpl::MaybeDonateBack() {
355
355
  if (free_bytes_.compare_exchange_weak(free, new_free,
356
356
  std::memory_order_acq_rel,
357
357
  std::memory_order_acquire)) {
358
- if (GRPC_TRACE_FLAG_ENABLED(resource_quota)) {
359
- LOG(INFO) << "[" << this << "] Early return " << ret << " bytes";
360
- }
358
+ GRPC_TRACE_LOG(resource_quota, INFO)
359
+ << "[" << this << "] Early return " << ret << " bytes";
361
360
  CHECK(taken_bytes_.fetch_sub(ret, std::memory_order_relaxed) >= ret);
362
361
  memory_quota_->Return(ret);
363
362
  return;
@@ -548,9 +547,7 @@ void BasicMemoryQuota::Return(size_t amount) {
548
547
  }
549
548
 
550
549
  void BasicMemoryQuota::AddNewAllocator(GrpcMemoryAllocatorImpl* allocator) {
551
- if (GRPC_TRACE_FLAG_ENABLED(resource_quota)) {
552
- LOG(INFO) << "Adding allocator " << allocator;
553
- }
550
+ GRPC_TRACE_LOG(resource_quota, INFO) << "Adding allocator " << allocator;
554
551
 
555
552
  AllocatorBucket::Shard& shard = small_allocators_.SelectShard(allocator);
556
553
 
@@ -561,9 +558,7 @@ void BasicMemoryQuota::AddNewAllocator(GrpcMemoryAllocatorImpl* allocator) {
561
558
  }
562
559
 
563
560
  void BasicMemoryQuota::RemoveAllocator(GrpcMemoryAllocatorImpl* allocator) {
564
- if (GRPC_TRACE_FLAG_ENABLED(resource_quota)) {
565
- LOG(INFO) << "Removing allocator " << allocator;
566
- }
561
+ GRPC_TRACE_LOG(resource_quota, INFO) << "Removing allocator " << allocator;
567
562
 
568
563
  AllocatorBucket::Shard& small_shard =
569
564
  small_allocators_.SelectShard(allocator);
@@ -608,9 +603,8 @@ void BasicMemoryQuota::MaybeMoveAllocator(GrpcMemoryAllocatorImpl* allocator,
608
603
 
609
604
  void BasicMemoryQuota::MaybeMoveAllocatorBigToSmall(
610
605
  GrpcMemoryAllocatorImpl* allocator) {
611
- if (GRPC_TRACE_FLAG_ENABLED(resource_quota)) {
612
- LOG(INFO) << "Moving allocator " << allocator << " to small";
613
- }
606
+ GRPC_TRACE_LOG(resource_quota, INFO)
607
+ << "Moving allocator " << allocator << " to small";
614
608
 
615
609
  AllocatorBucket::Shard& old_shard = big_allocators_.SelectShard(allocator);
616
610
 
@@ -629,9 +623,8 @@ void BasicMemoryQuota::MaybeMoveAllocatorBigToSmall(
629
623
 
630
624
  void BasicMemoryQuota::MaybeMoveAllocatorSmallToBig(
631
625
  GrpcMemoryAllocatorImpl* allocator) {
632
- if (GRPC_TRACE_FLAG_ENABLED(resource_quota)) {
633
- LOG(INFO) << "Moving allocator " << allocator << " to big";
634
- }
626
+ GRPC_TRACE_LOG(resource_quota, INFO)
627
+ << "Moving allocator " << allocator << " to big";
635
628
 
636
629
  AllocatorBucket::Shard& old_shard = small_allocators_.SelectShard(allocator);
637
630
 
@@ -766,10 +759,9 @@ double PressureTracker::AddSampleAndGetControlValue(double sample) {
766
759
  } else {
767
760
  report = controller_.Update(current_estimate - kSetPoint);
768
761
  }
769
- if (GRPC_TRACE_FLAG_ENABLED(resource_quota)) {
770
- LOG(INFO) << "RQ: pressure:" << current_estimate << " report:" << report
771
- << " controller:" << controller_.DebugString();
772
- }
762
+ GRPC_TRACE_LOG(resource_quota, INFO)
763
+ << "RQ: pressure:" << current_estimate << " report:" << report
764
+ << " controller:" << controller_.DebugString();
773
765
  report_.store(report, std::memory_order_relaxed);
774
766
  });
775
767
  return report_.load(std::memory_order_relaxed);
@@ -425,10 +425,8 @@ class GrpcMemoryAllocatorImpl final : public EventEngineMemoryAllocatorImpl {
425
425
  void ReturnFree() {
426
426
  size_t ret = free_bytes_.exchange(0, std::memory_order_acq_rel);
427
427
  if (ret == 0) return;
428
- if (GRPC_TRACE_FLAG_ENABLED(resource_quota)) {
429
- LOG(INFO) << "Allocator " << this << " returning " << ret
430
- << " bytes to quota";
431
- }
428
+ GRPC_TRACE_LOG(resource_quota, INFO)
429
+ << "Allocator " << this << " returning " << ret << " bytes to quota";
432
430
  taken_bytes_.fetch_sub(ret, std::memory_order_relaxed);
433
431
  memory_quota_->Return(ret);
434
432
  memory_quota_->MaybeMoveAllocator(this, /*old_free_bytes=*/ret,
@@ -56,9 +56,8 @@ bool PeriodicUpdate::MaybeEndPeriod(absl::FunctionRef<void(Duration)> f) {
56
56
  // Store the remainder left. Note that updates_remaining_ may have been
57
57
  // decremented by another thread whilst we performed the above calculations:
58
58
  // we simply discard those decrements.
59
- auto remaining = better_guess - expected_updates_per_period_;
60
- expected_updates_per_period_ = better_guess;
61
- updates_remaining_.store(remaining, std::memory_order_release);
59
+ updates_remaining_.store(better_guess - expected_updates_per_period_,
60
+ std::memory_order_release);
62
61
  // Not quite done, return, try for longer.
63
62
  return false;
64
63
  }
@@ -16,7 +16,6 @@
16
16
 
17
17
  #include "absl/log/check.h"
18
18
 
19
- #include <grpc/support/log.h>
20
19
  #include <grpc/support/port_platform.h>
21
20
 
22
21
  namespace grpc_core {
@@ -30,7 +30,6 @@
30
30
 
31
31
  #include <grpc/grpc_audit_logging.h>
32
32
  #include <grpc/support/json.h>
33
- #include <grpc/support/log.h>
34
33
  #include <grpc/support/port_platform.h>
35
34
 
36
35
  #include "src/core/lib/gprpp/sync.h"