grpc 1.57.0 → 1.58.0.pre1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (402) hide show
  1. checksums.yaml +4 -4
  2. data/Makefile +534 -284
  3. data/include/grpc/event_engine/event_engine.h +0 -1
  4. data/include/grpc/event_engine/memory_allocator.h +2 -2
  5. data/include/grpc/impl/channel_arg_names.h +371 -0
  6. data/include/grpc/impl/grpc_types.h +1 -353
  7. data/include/grpc/module.modulemap +1 -0
  8. data/src/core/ext/filters/backend_metrics/backend_metric_filter.cc +1 -1
  9. data/src/core/ext/filters/channel_idle/channel_idle_filter.cc +2 -1
  10. data/src/core/ext/filters/client_channel/client_channel.cc +7 -3
  11. data/src/core/ext/filters/client_channel/http_proxy.cc +1 -1
  12. data/src/core/ext/filters/client_channel/lb_policy/address_filtering.cc +10 -5
  13. data/src/core/ext/filters/client_channel/lb_policy/address_filtering.h +7 -5
  14. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc +1 -0
  15. data/src/core/ext/filters/client_channel/lb_policy/health_check_client.cc +5 -3
  16. data/src/core/ext/filters/client_channel/lb_policy/oob_backend_metric.cc +4 -2
  17. data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc +115 -109
  18. data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.h +0 -5
  19. data/src/core/ext/filters/client_channel/lb_policy/priority/priority.cc +7 -2
  20. data/src/core/ext/filters/client_channel/lb_policy/ring_hash/ring_hash.cc +2 -1
  21. data/src/core/ext/filters/client_channel/lb_policy/rls/rls.cc +1 -0
  22. data/src/core/ext/filters/client_channel/lb_policy/subchannel_list.h +1 -1
  23. data/src/core/ext/filters/client_channel/lb_policy/weighted_round_robin/weighted_round_robin.cc +11 -3
  24. data/src/core/ext/filters/client_channel/lb_policy/weighted_target/weighted_target.cc +6 -1
  25. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_resolver.cc +8 -5
  26. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc +1 -1
  27. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc +102 -11
  28. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc +9 -4
  29. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h +4 -1
  30. data/src/core/ext/filters/client_channel/resolver/dns/dns_resolver_plugin.cc +6 -0
  31. data/src/core/ext/filters/client_channel/resolver/dns/event_engine/event_engine_client_channel_resolver.cc +41 -14
  32. data/src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc +1 -1
  33. data/src/core/ext/filters/client_channel/resolver/polling_resolver.cc +3 -2
  34. data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.cc +1 -1
  35. data/src/core/ext/filters/client_channel/retry_filter.h +1 -0
  36. data/src/core/ext/filters/client_channel/retry_service_config.cc +1 -1
  37. data/src/core/ext/filters/client_channel/service_config_channel_arg_filter.cc +1 -1
  38. data/src/core/ext/filters/client_channel/subchannel.cc +9 -5
  39. data/src/core/ext/filters/client_channel/subchannel.h +8 -2
  40. data/src/core/ext/filters/deadline/deadline_filter.cc +1 -1
  41. data/src/core/ext/filters/http/client/http_client_filter.cc +1 -0
  42. data/src/core/ext/filters/http/client_authority_filter.cc +1 -1
  43. data/src/core/ext/filters/http/message_compress/compression_filter.cc +1 -0
  44. data/src/core/ext/filters/http/server/http_server_filter.cc +1 -1
  45. data/src/core/ext/filters/message_size/message_size_filter.cc +1 -0
  46. data/src/core/ext/filters/rbac/rbac_service_config_parser.cc +4 -7
  47. data/src/core/ext/transport/chttp2/client/chttp2_connector.cc +1 -0
  48. data/src/core/ext/transport/chttp2/server/chttp2_server.cc +8 -12
  49. data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +357 -358
  50. data/src/core/ext/transport/chttp2/transport/frame_ping.cc +5 -18
  51. data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +63 -4
  52. data/src/core/ext/transport/chttp2/transport/hpack_parser.h +7 -2
  53. data/src/core/ext/transport/chttp2/transport/internal.h +30 -57
  54. data/src/core/ext/transport/chttp2/transport/parsing.cc +16 -7
  55. data/src/core/ext/transport/chttp2/transport/ping_abuse_policy.cc +80 -0
  56. data/src/core/ext/transport/chttp2/transport/ping_abuse_policy.h +55 -0
  57. data/src/core/ext/transport/chttp2/transport/ping_rate_policy.cc +98 -0
  58. data/src/core/ext/transport/chttp2/transport/ping_rate_policy.h +73 -0
  59. data/src/core/ext/transport/chttp2/transport/writing.cc +81 -89
  60. data/src/core/ext/transport/inproc/inproc_transport.cc +1 -0
  61. data/src/core/ext/xds/xds_client_grpc.cc +1 -0
  62. data/src/core/ext/xds/xds_http_fault_filter.cc +1 -2
  63. data/src/core/ext/xds/xds_http_fault_filter.h +1 -2
  64. data/src/core/ext/xds/xds_http_filters.h +2 -4
  65. data/src/core/ext/xds/xds_http_rbac_filter.cc +3 -8
  66. data/src/core/ext/xds/xds_http_rbac_filter.h +1 -2
  67. data/src/core/ext/xds/xds_http_stateful_session_filter.cc +1 -2
  68. data/src/core/ext/xds/xds_http_stateful_session_filter.h +1 -2
  69. data/src/core/ext/xds/xds_lb_policy_registry.cc +3 -6
  70. data/src/core/ext/xds/xds_routing.cc +2 -2
  71. data/src/core/ext/xds/xds_transport_grpc.cc +1 -0
  72. data/src/core/lib/avl/avl.h +10 -173
  73. data/src/core/lib/channel/call_tracer.cc +289 -0
  74. data/src/core/lib/channel/call_tracer.h +35 -0
  75. data/src/core/lib/channel/channel_args.cc +84 -79
  76. data/src/core/lib/channel/channel_args.h +29 -17
  77. data/src/core/lib/channel/connected_channel.cc +0 -1
  78. data/src/core/lib/channel/promise_based_filter.cc +4 -1
  79. data/src/core/lib/compression/compression_internal.cc +8 -4
  80. data/src/core/lib/debug/stats_data.cc +93 -21
  81. data/src/core/lib/debug/stats_data.h +41 -0
  82. data/src/core/lib/event_engine/ares_resolver.cc +712 -0
  83. data/src/core/lib/event_engine/ares_resolver.h +150 -0
  84. data/src/core/lib/event_engine/cf_engine/cf_engine.cc +9 -3
  85. data/src/core/lib/event_engine/cf_engine/cfstream_endpoint.cc +2 -2
  86. data/src/core/lib/event_engine/cf_engine/dns_service_resolver.cc +229 -0
  87. data/src/core/lib/event_engine/cf_engine/dns_service_resolver.h +117 -0
  88. data/src/core/lib/event_engine/forkable.cc +15 -1
  89. data/src/core/lib/event_engine/forkable.h +15 -0
  90. data/src/core/lib/event_engine/grpc_polled_fd.h +73 -0
  91. data/src/core/lib/event_engine/posix_engine/ev_poll_posix.cc +25 -3
  92. data/src/core/lib/event_engine/posix_engine/ev_poll_posix.h +10 -1
  93. data/src/core/lib/event_engine/posix_engine/grpc_polled_fd_posix.h +197 -0
  94. data/src/core/lib/event_engine/posix_engine/posix_endpoint.cc +3 -3
  95. data/src/core/lib/event_engine/posix_engine/posix_engine.cc +47 -1
  96. data/src/core/lib/event_engine/posix_engine/posix_engine.h +12 -1
  97. data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.cc +1 -0
  98. data/src/core/lib/event_engine/posix_engine/traced_buffer_list.cc +2 -0
  99. data/src/core/lib/event_engine/thread_pool/thread_count.cc +58 -0
  100. data/src/core/lib/event_engine/thread_pool/thread_count.h +161 -0
  101. data/src/core/lib/event_engine/thread_pool/thread_pool_factory.cc +7 -0
  102. data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.cc +86 -111
  103. data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.h +15 -61
  104. data/src/core/lib/event_engine/windows/windows_endpoint.cc +3 -4
  105. data/src/core/lib/experiments/config.cc +14 -0
  106. data/src/core/lib/experiments/experiments.cc +141 -304
  107. data/src/core/lib/experiments/experiments.h +16 -17
  108. data/src/core/lib/gprpp/ref_counted.h +3 -1
  109. data/src/core/lib/gprpp/ref_counted_string.cc +44 -0
  110. data/src/core/lib/gprpp/ref_counted_string.h +146 -0
  111. data/src/core/lib/gprpp/time.h +2 -2
  112. data/src/core/lib/gprpp/work_serializer.cc +36 -0
  113. data/src/core/lib/gprpp/work_serializer.h +5 -0
  114. data/src/core/lib/http/httpcli_security_connector.cc +1 -0
  115. data/src/core/lib/iomgr/buffer_list.cc +2 -0
  116. data/src/core/lib/iomgr/event_engine_shims/endpoint.cc +7 -22
  117. data/src/core/lib/iomgr/tcp_posix.cc +3 -3
  118. data/src/core/lib/promise/detail/basic_seq.h +1 -372
  119. data/src/core/lib/promise/detail/seq_state.h +2076 -0
  120. data/src/core/lib/promise/seq.h +19 -2
  121. data/src/core/lib/promise/sleep.h +5 -10
  122. data/src/core/lib/promise/try_seq.h +34 -2
  123. data/src/core/lib/resource_quota/api.cc +1 -0
  124. data/src/core/lib/resource_quota/arena.cc +2 -0
  125. data/src/core/lib/resource_quota/arena.h +42 -8
  126. data/src/core/lib/resource_quota/memory_quota.cc +0 -1
  127. data/src/core/lib/resource_quota/resource_quota.h +1 -0
  128. data/src/core/lib/security/authorization/authorization_policy_provider.h +1 -1
  129. data/src/core/lib/security/authorization/rbac_policy.h +1 -1
  130. data/src/core/lib/security/credentials/external/aws_request_signer.cc +8 -0
  131. data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +1 -0
  132. data/src/core/lib/security/credentials/jwt/json_token.cc +17 -0
  133. data/src/core/lib/security/credentials/jwt/json_token.h +4 -0
  134. data/src/core/lib/security/credentials/jwt/jwt_verifier.cc +42 -0
  135. data/src/core/lib/security/credentials/ssl/ssl_credentials.cc +1 -0
  136. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.cc +4 -0
  137. data/src/core/lib/security/credentials/tls/tls_credentials.cc +1 -0
  138. data/src/core/lib/security/credentials/xds/xds_credentials.cc +1 -0
  139. data/src/core/lib/security/security_connector/alts/alts_security_connector.cc +1 -0
  140. data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +1 -0
  141. data/src/core/lib/security/security_connector/ssl_utils.cc +1 -0
  142. data/src/core/lib/security/transport/client_auth_filter.cc +8 -5
  143. data/src/core/lib/security/transport/security_handshaker.cc +1 -0
  144. data/src/core/lib/security/transport/server_auth_filter.cc +2 -0
  145. data/src/core/lib/surface/call.cc +32 -8
  146. data/src/core/lib/surface/channel.cc +1 -0
  147. data/src/core/lib/surface/completion_queue.cc +10 -0
  148. data/src/core/lib/surface/init.cc +1 -0
  149. data/src/core/lib/surface/server.cc +67 -64
  150. data/src/core/lib/surface/server.h +1 -15
  151. data/src/core/lib/surface/version.cc +2 -2
  152. data/src/core/tsi/alts/crypt/aes_gcm.cc +27 -2
  153. data/src/core/tsi/ssl_transport_security.cc +11 -0
  154. data/src/ruby/lib/grpc/generic/active_call.rb +9 -14
  155. data/src/ruby/lib/grpc/version.rb +1 -1
  156. data/src/ruby/pb/test/client.rb +16 -0
  157. data/src/ruby/spec/generic/rpc_server_spec.rb +3 -3
  158. data/third_party/abseil-cpp/absl/algorithm/container.h +3 -2
  159. data/third_party/abseil-cpp/absl/base/attributes.h +58 -5
  160. data/third_party/abseil-cpp/absl/base/call_once.h +1 -1
  161. data/third_party/abseil-cpp/absl/base/casts.h +8 -8
  162. data/third_party/abseil-cpp/absl/base/config.h +89 -106
  163. data/third_party/abseil-cpp/absl/base/dynamic_annotations.h +26 -1
  164. data/third_party/abseil-cpp/absl/base/internal/direct_mmap.h +2 -2
  165. data/third_party/abseil-cpp/absl/base/internal/low_level_alloc.cc +50 -39
  166. data/third_party/abseil-cpp/absl/base/internal/low_level_alloc.h +2 -1
  167. data/third_party/abseil-cpp/absl/base/internal/prefetch.h +17 -18
  168. data/third_party/abseil-cpp/absl/base/internal/raw_logging.cc +32 -3
  169. data/third_party/abseil-cpp/absl/base/internal/raw_logging.h +24 -4
  170. data/third_party/abseil-cpp/absl/base/internal/sysinfo.cc +31 -73
  171. data/third_party/abseil-cpp/absl/base/internal/thread_identity.cc +9 -8
  172. data/third_party/abseil-cpp/absl/base/internal/thread_identity.h +11 -11
  173. data/third_party/abseil-cpp/absl/base/internal/throw_delegate.cc +23 -32
  174. data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.cc +2 -3
  175. data/third_party/abseil-cpp/absl/base/options.h +1 -1
  176. data/third_party/abseil-cpp/absl/base/policy_checks.h +3 -3
  177. data/third_party/abseil-cpp/absl/base/prefetch.h +198 -0
  178. data/third_party/abseil-cpp/absl/container/fixed_array.h +54 -29
  179. data/third_party/abseil-cpp/absl/container/flat_hash_map.h +5 -1
  180. data/third_party/abseil-cpp/absl/container/flat_hash_set.h +6 -2
  181. data/third_party/abseil-cpp/absl/container/inlined_vector.h +167 -79
  182. data/third_party/abseil-cpp/absl/container/internal/common_policy_traits.h +1 -1
  183. data/third_party/abseil-cpp/absl/container/internal/compressed_tuple.h +3 -21
  184. data/third_party/abseil-cpp/absl/container/internal/container_memory.h +1 -1
  185. data/third_party/abseil-cpp/absl/container/internal/hash_function_defaults.h +46 -0
  186. data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.cc +2 -0
  187. data/third_party/abseil-cpp/absl/container/internal/inlined_vector.h +85 -26
  188. data/third_party/abseil-cpp/absl/container/internal/raw_hash_map.h +35 -18
  189. data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.cc +70 -29
  190. data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.h +437 -236
  191. data/third_party/abseil-cpp/absl/crc/crc32c.h +8 -1
  192. data/third_party/abseil-cpp/absl/crc/internal/cpu_detect.cc +14 -8
  193. data/third_party/abseil-cpp/absl/crc/internal/crc.cc +4 -35
  194. data/third_party/abseil-cpp/absl/crc/internal/crc.h +2 -10
  195. data/third_party/abseil-cpp/absl/crc/internal/crc32_x86_arm_combined_simd.h +1 -1
  196. data/third_party/abseil-cpp/absl/crc/internal/crc_cord_state.cc +1 -1
  197. data/third_party/abseil-cpp/absl/crc/internal/crc_cord_state.h +4 -4
  198. data/third_party/abseil-cpp/absl/crc/internal/crc_internal.h +8 -10
  199. data/third_party/abseil-cpp/absl/crc/internal/crc_memcpy_x86_64.cc +17 -19
  200. data/third_party/abseil-cpp/absl/crc/internal/crc_x86_arm_combined.cc +8 -8
  201. data/third_party/abseil-cpp/absl/debugging/internal/elf_mem_image.h +2 -1
  202. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_aarch64-inl.inc +59 -23
  203. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_powerpc-inl.inc +1 -1
  204. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_x86-inl.inc +1 -1
  205. data/third_party/abseil-cpp/absl/debugging/internal/symbolize.h +1 -1
  206. data/third_party/abseil-cpp/absl/debugging/symbolize_elf.inc +43 -19
  207. data/third_party/abseil-cpp/absl/debugging/symbolize_emscripten.inc +3 -0
  208. data/third_party/abseil-cpp/absl/flags/commandlineflag.h +1 -1
  209. data/third_party/abseil-cpp/absl/flags/internal/commandlineflag.cc +1 -1
  210. data/third_party/abseil-cpp/absl/flags/internal/flag.cc +2 -2
  211. data/third_party/abseil-cpp/absl/flags/internal/flag.h +16 -15
  212. data/third_party/abseil-cpp/absl/flags/internal/flag_msvc.inc +1 -1
  213. data/third_party/abseil-cpp/absl/flags/marshalling.cc +43 -2
  214. data/third_party/abseil-cpp/absl/flags/marshalling.h +5 -0
  215. data/third_party/abseil-cpp/absl/functional/any_invocable.h +9 -1
  216. data/third_party/abseil-cpp/absl/functional/bind_front.h +1 -1
  217. data/third_party/abseil-cpp/absl/functional/function_ref.h +3 -3
  218. data/third_party/abseil-cpp/absl/functional/internal/any_invocable.h +37 -24
  219. data/third_party/abseil-cpp/absl/functional/internal/function_ref.h +19 -9
  220. data/third_party/abseil-cpp/absl/hash/hash.h +7 -4
  221. data/third_party/abseil-cpp/absl/hash/internal/hash.h +38 -15
  222. data/third_party/abseil-cpp/absl/hash/internal/low_level_hash.cc +6 -0
  223. data/third_party/abseil-cpp/absl/meta/type_traits.h +48 -373
  224. data/third_party/abseil-cpp/absl/numeric/bits.h +4 -4
  225. data/third_party/abseil-cpp/absl/numeric/int128.cc +20 -8
  226. data/third_party/abseil-cpp/absl/numeric/int128.h +36 -39
  227. data/third_party/abseil-cpp/absl/numeric/int128_have_intrinsic.inc +0 -3
  228. data/third_party/abseil-cpp/absl/numeric/int128_no_intrinsic.inc +47 -30
  229. data/third_party/abseil-cpp/absl/random/internal/fast_uniform_bits.h +4 -3
  230. data/third_party/abseil-cpp/absl/random/internal/generate_real.h +1 -1
  231. data/third_party/abseil-cpp/absl/random/internal/platform.h +1 -1
  232. data/third_party/abseil-cpp/absl/random/internal/randen_detect.cc +4 -0
  233. data/third_party/abseil-cpp/absl/random/internal/randen_engine.h +1 -1
  234. data/third_party/abseil-cpp/absl/random/internal/randen_hwaes.cc +1 -1
  235. data/third_party/abseil-cpp/absl/random/internal/uniform_helper.h +1 -1
  236. data/third_party/abseil-cpp/absl/status/internal/status_internal.h +4 -0
  237. data/third_party/abseil-cpp/absl/status/internal/statusor_internal.h +12 -24
  238. data/third_party/abseil-cpp/absl/status/status.cc +11 -7
  239. data/third_party/abseil-cpp/absl/status/status.h +11 -2
  240. data/third_party/abseil-cpp/absl/status/statusor.h +22 -8
  241. data/third_party/abseil-cpp/absl/strings/ascii.cc +54 -6
  242. data/third_party/abseil-cpp/absl/strings/charconv.cc +21 -4
  243. data/third_party/abseil-cpp/absl/strings/charconv.h +2 -2
  244. data/third_party/abseil-cpp/absl/strings/cord.cc +1 -2
  245. data/third_party/abseil-cpp/absl/strings/cord.h +32 -5
  246. data/third_party/abseil-cpp/absl/strings/cord_analysis.cc +23 -1
  247. data/third_party/abseil-cpp/absl/strings/cord_analysis.h +18 -0
  248. data/third_party/abseil-cpp/absl/strings/cord_buffer.h +2 -5
  249. data/third_party/abseil-cpp/absl/strings/escaping.cc +10 -32
  250. data/third_party/abseil-cpp/absl/strings/escaping.h +1 -1
  251. data/third_party/abseil-cpp/absl/strings/internal/charconv_bigint.cc +2 -4
  252. data/third_party/abseil-cpp/absl/strings/internal/charconv_bigint.h +3 -3
  253. data/third_party/abseil-cpp/absl/strings/internal/cord_internal.cc +0 -1
  254. data/third_party/abseil-cpp/absl/strings/internal/cord_internal.h +15 -13
  255. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree.cc +13 -4
  256. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree.h +8 -0
  257. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_consume.cc +5 -3
  258. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_consume.h +4 -7
  259. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_flat.h +8 -0
  260. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_ring.h +2 -2
  261. data/third_party/abseil-cpp/absl/strings/internal/cordz_handle.cc +46 -20
  262. data/third_party/abseil-cpp/absl/strings/internal/cordz_handle.h +1 -34
  263. data/third_party/abseil-cpp/absl/strings/internal/cordz_info.cc +2 -1
  264. data/third_party/abseil-cpp/absl/strings/internal/escaping.cc +23 -0
  265. data/third_party/abseil-cpp/absl/strings/internal/escaping.h +1 -0
  266. data/third_party/abseil-cpp/absl/strings/internal/memutil.cc +2 -77
  267. data/third_party/abseil-cpp/absl/strings/internal/memutil.h +4 -112
  268. data/third_party/abseil-cpp/absl/strings/internal/stl_type_traits.h +1 -1
  269. data/third_party/abseil-cpp/absl/strings/internal/str_format/arg.cc +10 -31
  270. data/third_party/abseil-cpp/absl/strings/internal/str_format/arg.h +8 -8
  271. data/third_party/abseil-cpp/absl/strings/internal/str_format/bind.h +5 -20
  272. data/third_party/abseil-cpp/absl/strings/internal/str_format/constexpr_parser.h +1 -0
  273. data/third_party/abseil-cpp/absl/strings/internal/str_format/extension.h +1 -1
  274. data/third_party/abseil-cpp/absl/strings/internal/str_format/float_conversion.cc +9 -9
  275. data/third_party/abseil-cpp/absl/strings/internal/str_split_internal.h +56 -6
  276. data/third_party/abseil-cpp/absl/strings/match.cc +87 -0
  277. data/third_party/abseil-cpp/absl/strings/match.h +19 -0
  278. data/third_party/abseil-cpp/absl/strings/numbers.cc +154 -122
  279. data/third_party/abseil-cpp/absl/strings/numbers.h +1 -6
  280. data/third_party/abseil-cpp/absl/strings/str_cat.cc +7 -50
  281. data/third_party/abseil-cpp/absl/strings/str_cat.h +83 -15
  282. data/third_party/abseil-cpp/absl/strings/str_format.h +6 -3
  283. data/third_party/abseil-cpp/absl/strings/str_split.cc +9 -6
  284. data/third_party/abseil-cpp/absl/strings/string_view.cc +26 -4
  285. data/third_party/abseil-cpp/absl/synchronization/internal/create_thread_identity.cc +5 -0
  286. data/third_party/abseil-cpp/absl/synchronization/internal/futex.h +63 -43
  287. data/third_party/abseil-cpp/absl/synchronization/internal/futex_waiter.cc +111 -0
  288. data/third_party/abseil-cpp/absl/synchronization/internal/futex_waiter.h +63 -0
  289. data/third_party/abseil-cpp/absl/synchronization/internal/graphcycles.cc +11 -7
  290. data/third_party/abseil-cpp/absl/synchronization/internal/kernel_timeout.cc +225 -0
  291. data/third_party/abseil-cpp/absl/synchronization/internal/kernel_timeout.h +122 -114
  292. data/third_party/abseil-cpp/absl/synchronization/internal/per_thread_sem.cc +12 -8
  293. data/third_party/abseil-cpp/absl/synchronization/internal/per_thread_sem.h +10 -1
  294. data/third_party/abseil-cpp/absl/synchronization/internal/pthread_waiter.cc +167 -0
  295. data/third_party/abseil-cpp/absl/synchronization/internal/pthread_waiter.h +60 -0
  296. data/third_party/abseil-cpp/absl/synchronization/internal/sem_waiter.cc +122 -0
  297. data/third_party/abseil-cpp/absl/synchronization/internal/sem_waiter.h +65 -0
  298. data/third_party/abseil-cpp/absl/synchronization/internal/stdcpp_waiter.cc +91 -0
  299. data/third_party/abseil-cpp/absl/synchronization/internal/stdcpp_waiter.h +56 -0
  300. data/third_party/abseil-cpp/absl/synchronization/internal/waiter.h +19 -113
  301. data/third_party/abseil-cpp/absl/synchronization/internal/waiter_base.cc +42 -0
  302. data/third_party/abseil-cpp/absl/synchronization/internal/waiter_base.h +90 -0
  303. data/third_party/abseil-cpp/absl/synchronization/internal/win32_waiter.cc +151 -0
  304. data/third_party/abseil-cpp/absl/synchronization/internal/win32_waiter.h +70 -0
  305. data/third_party/abseil-cpp/absl/synchronization/mutex.cc +407 -411
  306. data/third_party/abseil-cpp/absl/synchronization/mutex.h +152 -118
  307. data/third_party/abseil-cpp/absl/time/clock.cc +6 -7
  308. data/third_party/abseil-cpp/absl/time/duration.cc +24 -26
  309. data/third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/time_zone.h +1 -0
  310. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_fixed.cc +1 -1
  311. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_format.cc +3 -3
  312. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_if.cc +8 -6
  313. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_if.h +6 -3
  314. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_impl.cc +4 -2
  315. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_impl.h +4 -0
  316. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_info.cc +322 -295
  317. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_info.h +8 -17
  318. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.cc +51 -33
  319. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.h +7 -2
  320. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_lookup.cc +128 -2
  321. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_posix.h +1 -1
  322. data/third_party/abseil-cpp/absl/time/internal/cctz/src/tzfile.h +5 -1
  323. data/third_party/abseil-cpp/absl/time/internal/cctz/src/zone_info_source.cc +34 -34
  324. data/third_party/abseil-cpp/absl/time/time.cc +9 -2
  325. data/third_party/abseil-cpp/absl/time/time.h +115 -15
  326. data/third_party/abseil-cpp/absl/types/internal/optional.h +0 -52
  327. data/third_party/abseil-cpp/absl/types/internal/span.h +2 -2
  328. data/third_party/abseil-cpp/absl/types/internal/variant.h +2 -2
  329. data/third_party/abseil-cpp/absl/types/optional.h +15 -13
  330. data/third_party/abseil-cpp/absl/types/span.h +1 -2
  331. data/third_party/boringssl-with-bazel/err_data.c +15 -14
  332. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_gentm.c +7 -3
  333. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_strex.c +7 -7
  334. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_utctm.c +7 -3
  335. data/third_party/boringssl-with-bazel/src/crypto/bio/connect.c +5 -5
  336. data/third_party/boringssl-with-bazel/src/crypto/bio/errno.c +92 -0
  337. data/third_party/boringssl-with-bazel/src/crypto/bio/fd.c +4 -48
  338. data/third_party/boringssl-with-bazel/src/crypto/bio/file.c +11 -6
  339. data/third_party/boringssl-with-bazel/src/crypto/bio/internal.h +16 -6
  340. data/third_party/boringssl-with-bazel/src/crypto/bio/socket.c +2 -2
  341. data/third_party/boringssl-with-bazel/src/crypto/bio/socket_helper.c +9 -0
  342. data/third_party/boringssl-with-bazel/src/crypto/bytestring/cbs.c +1 -1
  343. data/third_party/boringssl-with-bazel/src/crypto/conf/conf.c +3 -7
  344. data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_apple.c +0 -2
  345. data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_fuchsia.c +0 -1
  346. data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_linux.c +0 -2
  347. data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_openbsd.c +0 -1
  348. data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_sysreg.c +93 -0
  349. data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_win.c +1 -1
  350. data/third_party/boringssl-with-bazel/src/crypto/cpu_arm_freebsd.c +0 -1
  351. data/third_party/boringssl-with-bazel/src/crypto/cpu_arm_linux.c +0 -2
  352. data/third_party/boringssl-with-bazel/src/crypto/dh_extra/dh_asn1.c +4 -0
  353. data/third_party/boringssl-with-bazel/src/crypto/dh_extra/params.c +5 -0
  354. data/third_party/boringssl-with-bazel/src/crypto/ec_extra/hash_to_curve.c +9 -14
  355. data/third_party/boringssl-with-bazel/src/crypto/ec_extra/internal.h +4 -6
  356. data/third_party/boringssl-with-bazel/src/crypto/err/err.c +10 -11
  357. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/check.c +37 -8
  358. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/dh.c +38 -19
  359. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/internal.h +7 -0
  360. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/self_check.c +39 -16
  361. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/service_indicator/service_indicator.c +4 -7
  362. data/third_party/boringssl-with-bazel/src/crypto/hpke/hpke.c +7 -0
  363. data/third_party/boringssl-with-bazel/src/crypto/internal.h +13 -21
  364. data/third_party/boringssl-with-bazel/src/crypto/obj/obj.c +6 -23
  365. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/getentropy.c +4 -0
  366. data/third_party/boringssl-with-bazel/src/crypto/stack/stack.c +5 -0
  367. data/third_party/boringssl-with-bazel/src/crypto/x509/by_dir.c +1 -6
  368. data/third_party/boringssl-with-bazel/src/crypto/x509/by_file.c +0 -3
  369. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_d2.c +1 -3
  370. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_alt.c +2 -3
  371. data/third_party/boringssl-with-bazel/src/include/openssl/base.h +9 -1
  372. data/third_party/boringssl-with-bazel/src/include/openssl/bio.h +11 -1
  373. data/third_party/boringssl-with-bazel/src/include/openssl/dh.h +4 -1
  374. data/third_party/boringssl-with-bazel/src/include/openssl/ec.h +7 -9
  375. data/third_party/boringssl-with-bazel/src/include/openssl/hpke.h +6 -2
  376. data/third_party/boringssl-with-bazel/src/include/openssl/span.h +22 -20
  377. data/third_party/boringssl-with-bazel/src/include/openssl/ssl.h +4 -0
  378. data/third_party/boringssl-with-bazel/src/include/openssl/stack.h +20 -12
  379. data/third_party/boringssl-with-bazel/src/include/openssl/target.h +50 -3
  380. data/third_party/boringssl-with-bazel/src/include/openssl/x509.h +0 -4
  381. data/third_party/boringssl-with-bazel/src/ssl/ssl_cipher.cc +2 -2
  382. data/third_party/boringssl-with-bazel/src/ssl/ssl_file.cc +4 -4
  383. data/third_party/boringssl-with-bazel/src/ssl/ssl_lib.cc +2 -0
  384. metadata +41 -33
  385. data/src/core/lib/promise/detail/basic_join.h +0 -197
  386. data/src/core/lib/promise/detail/switch.h +0 -1455
  387. data/src/core/lib/promise/try_join.h +0 -82
  388. data/third_party/abseil-cpp/absl/synchronization/internal/waiter.cc +0 -403
  389. data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_freebsd.c +0 -62
  390. data/third_party/boringssl-with-bazel/src/crypto/cpu_arm.c +0 -38
  391. data/third_party/boringssl-with-bazel/src/crypto/cpu_arm_openbsd.c +0 -31
  392. data/third_party/re2/util/benchmark.h +0 -156
  393. data/third_party/re2/util/flags.h +0 -26
  394. data/third_party/re2/util/malloc_counter.h +0 -19
  395. data/third_party/re2/util/pcre.cc +0 -1025
  396. data/third_party/re2/util/pcre.h +0 -681
  397. data/third_party/re2/util/test.h +0 -50
  398. data/third_party/upb/upb/mini_table.h +0 -36
  399. data/third_party/zlib/gzclose.c +0 -25
  400. data/third_party/zlib/gzlib.c +0 -639
  401. data/third_party/zlib/gzread.c +0 -650
  402. data/third_party/zlib/gzwrite.c +0 -677
@@ -17,11 +17,14 @@
17
17
 
18
18
  #include <grpc/support/port_platform.h>
19
19
 
20
+ #include <stdlib.h>
21
+
20
22
  #include <type_traits>
21
23
  #include <utility>
22
24
 
23
25
  #include "src/core/lib/promise/detail/basic_seq.h"
24
26
  #include "src/core/lib/promise/detail/promise_like.h"
27
+ #include "src/core/lib/promise/detail/seq_state.h"
25
28
  #include "src/core/lib/promise/poll.h"
26
29
 
27
30
  namespace grpc_core {
@@ -36,6 +39,11 @@ struct SeqTraits {
36
39
  static auto CallFactory(Next* next, T&& value) {
37
40
  return next->Make(std::forward<T>(value));
38
41
  }
42
+ static bool IsOk(const T&) { return true; }
43
+ template <typename R>
44
+ static R ReturnValue(T&&) {
45
+ abort();
46
+ }
39
47
  template <typename F, typename Elem>
40
48
  static auto CallSeqFactory(F& f, Elem&& elem, T&& value) {
41
49
  return f(std::forward<Elem>(elem), std::forward<T>(value));
@@ -47,8 +55,17 @@ struct SeqTraits {
47
55
  }
48
56
  };
49
57
 
50
- template <typename... Fs>
51
- using Seq = BasicSeq<SeqTraits, Fs...>;
58
+ template <typename P, typename... Fs>
59
+ class Seq {
60
+ public:
61
+ explicit Seq(P&& promise, Fs&&... factories)
62
+ : state_(std::forward<P>(promise), std::forward<Fs>(factories)...) {}
63
+
64
+ auto operator()() { return state_.PollOnce(); }
65
+
66
+ private:
67
+ SeqState<SeqTraits, P, Fs...> state_;
68
+ };
52
69
 
53
70
  template <typename I, typename F, typename Arg>
54
71
  struct SeqIterTraits {
@@ -18,11 +18,11 @@
18
18
  #include <grpc/support/port_platform.h>
19
19
 
20
20
  #include <atomic>
21
+ #include <utility>
21
22
 
22
23
  #include "absl/status/status.h"
23
24
 
24
25
  #include <grpc/event_engine/event_engine.h>
25
- #include <grpc/support/log.h>
26
26
 
27
27
  #include "src/core/lib/gprpp/time.h"
28
28
  #include "src/core/lib/promise/activity.h"
@@ -38,17 +38,12 @@ class Sleep final {
38
38
 
39
39
  Sleep(const Sleep&) = delete;
40
40
  Sleep& operator=(const Sleep&) = delete;
41
- Sleep(Sleep&& other) noexcept : deadline_(other.deadline_) {
42
- // Promises can be moved only until they're polled, and since we only create
43
- // the closure when first polled we can assume it's nullptr here.
44
- GPR_DEBUG_ASSERT(other.closure_ == nullptr);
45
- };
41
+ Sleep(Sleep&& other) noexcept
42
+ : deadline_(other.deadline_),
43
+ closure_(std::exchange(other.closure_, nullptr)) {}
46
44
  Sleep& operator=(Sleep&& other) noexcept {
47
- // Promises can be moved only until they're polled, and since we only create
48
- // the closure when first polled we can assume it's nullptr here.
49
- GPR_DEBUG_ASSERT(closure_ == nullptr);
50
- GPR_DEBUG_ASSERT(other.closure_ == nullptr);
51
45
  deadline_ = other.deadline_;
46
+ std::swap(closure_, other.closure_);
52
47
  return *this;
53
48
  };
54
49
 
@@ -17,6 +17,8 @@
17
17
 
18
18
  #include <grpc/support/port_platform.h>
19
19
 
20
+ #include <stdlib.h>
21
+
20
22
  #include <type_traits>
21
23
  #include <utility>
22
24
 
@@ -26,6 +28,7 @@
26
28
 
27
29
  #include "src/core/lib/promise/detail/basic_seq.h"
28
30
  #include "src/core/lib/promise/detail/promise_like.h"
31
+ #include "src/core/lib/promise/detail/seq_state.h"
29
32
  #include "src/core/lib/promise/detail/status.h"
30
33
  #include "src/core/lib/promise/poll.h"
31
34
 
@@ -41,6 +44,11 @@ struct TrySeqTraitsWithSfinae {
41
44
  static auto CallFactory(Next* next, T&& value) {
42
45
  return next->Make(std::forward<T>(value));
43
46
  }
47
+ static bool IsOk(const T&) { return true; }
48
+ template <typename R>
49
+ static R ReturnValue(T&&) {
50
+ abort();
51
+ }
44
52
  template <typename F, typename Elem>
45
53
  static auto CallSeqFactory(F& f, Elem&& elem, T&& value)
46
54
  -> decltype(f(std::forward<Elem>(elem), std::forward<T>(value))) {
@@ -60,6 +68,11 @@ struct TrySeqTraitsWithSfinae<absl::StatusOr<T>> {
60
68
  static auto CallFactory(Next* next, absl::StatusOr<T>&& status) {
61
69
  return next->Make(std::move(*status));
62
70
  }
71
+ static bool IsOk(const absl::StatusOr<T>& status) { return status.ok(); }
72
+ template <typename R>
73
+ static R ReturnValue(absl::StatusOr<T>&& status) {
74
+ return StatusCast<R>(status.status());
75
+ }
63
76
  template <typename F, typename Elem>
64
77
  static auto CallSeqFactory(F& f, Elem&& elem, absl::StatusOr<T> value)
65
78
  -> decltype(f(std::forward<Elem>(elem), std::move(*value))) {
@@ -86,6 +99,11 @@ struct TrySeqTraitsWithSfinae<
86
99
  static auto CallFactory(Next* next, T&&) {
87
100
  return next->Make();
88
101
  }
102
+ static bool IsOk(const T& status) { return IsStatusOk(status); }
103
+ template <typename R>
104
+ static R ReturnValue(T&& status) {
105
+ return R(std::move(status));
106
+ }
89
107
  template <typename Result, typename RunNext>
90
108
  static Poll<Result> CheckResultAndRunNext(T prior, RunNext run_next) {
91
109
  if (!IsStatusOk(prior)) return Result(std::move(prior));
@@ -100,6 +118,11 @@ struct TrySeqTraitsWithSfinae<absl::Status> {
100
118
  static auto CallFactory(Next* next, absl::Status&&) {
101
119
  return next->Make();
102
120
  }
121
+ static bool IsOk(const absl::Status& status) { return status.ok(); }
122
+ template <typename R>
123
+ static R ReturnValue(absl::Status&& status) {
124
+ return StatusCast<R>(std::move(status));
125
+ }
103
126
  template <typename Result, typename RunNext>
104
127
  static Poll<Result> CheckResultAndRunNext(absl::Status prior,
105
128
  RunNext run_next) {
@@ -111,8 +134,17 @@ struct TrySeqTraitsWithSfinae<absl::Status> {
111
134
  template <typename T>
112
135
  using TrySeqTraits = TrySeqTraitsWithSfinae<T>;
113
136
 
114
- template <typename... Fs>
115
- using TrySeq = BasicSeq<TrySeqTraits, Fs...>;
137
+ template <typename P, typename... Fs>
138
+ class TrySeq {
139
+ public:
140
+ explicit TrySeq(P&& promise, Fs&&... factories)
141
+ : state_(std::forward<P>(promise), std::forward<Fs>(factories)...) {}
142
+
143
+ auto operator()() { return state_.PollOnce(); }
144
+
145
+ private:
146
+ SeqState<TrySeqTraits, P, Fs...> state_;
147
+ };
116
148
 
117
149
  template <typename I, typename F, typename Arg>
118
150
  struct TrySeqIterTraits {
@@ -26,6 +26,7 @@
26
26
  #include "absl/strings/str_cat.h"
27
27
 
28
28
  #include <grpc/grpc.h>
29
+ #include <grpc/impl/channel_arg_names.h>
29
30
 
30
31
  #include "src/core/lib/channel/channel_args.h"
31
32
  #include "src/core/lib/gprpp/ref_counted_ptr.h"
@@ -121,6 +121,7 @@ void Arena::ManagedNewObject::Link(std::atomic<ManagedNewObject*>* head) {
121
121
  }
122
122
  }
123
123
 
124
+ #ifndef GRPC_ARENA_POOLED_ALLOCATIONS_USE_MALLOC
124
125
  void* Arena::AllocPooled(size_t obj_size, size_t alloc_size,
125
126
  std::atomic<FreePoolNode*>* head) {
126
127
  // ABA mitigation:
@@ -177,5 +178,6 @@ void Arena::FreePooled(void* p, std::atomic<FreePoolNode*>* head) {
177
178
  node->next, node, std::memory_order_acq_rel, std::memory_order_relaxed)) {
178
179
  }
179
180
  }
181
+ #endif
180
182
 
181
183
  } // namespace grpc_core
@@ -30,14 +30,10 @@
30
30
  #include <stddef.h>
31
31
 
32
32
  #include <atomic>
33
- #include <limits>
33
+ #include <iosfwd>
34
34
  #include <memory>
35
- #include <new>
36
35
  #include <utility>
37
36
 
38
- #include "absl/meta/type_traits.h"
39
- #include "absl/utility/utility.h"
40
-
41
37
  #include <grpc/event_engine/memory_allocator.h>
42
38
 
43
39
  #include "src/core/lib/gpr/alloc.h"
@@ -45,13 +41,14 @@
45
41
  #include "src/core/lib/promise/context.h"
46
42
  #include "src/core/lib/resource_quota/memory_quota.h"
47
43
 
48
- // #define GRPC_ARENA_POOLED_ALLOCATIONS_USE_MALLOC
44
+ #define GRPC_ARENA_POOLED_ALLOCATIONS_USE_MALLOC
49
45
  // #define GRPC_ARENA_TRACE_POOLED_ALLOCATIONS
50
46
 
51
47
  namespace grpc_core {
52
48
 
53
49
  namespace arena_detail {
54
50
 
51
+ #ifndef GRPC_ARENA_POOLED_ALLOCATIONS_USE_MALLOC
55
52
  struct PoolAndSize {
56
53
  size_t alloc_size;
57
54
  size_t pool_index;
@@ -113,16 +110,29 @@ PoolAndSize ChoosePoolForAllocationSize(
113
110
  size_t n, absl::integer_sequence<size_t, kBucketSizes...>) {
114
111
  return ChoosePoolForAllocationSizeImpl<0, kBucketSizes...>::Fn(n);
115
112
  }
113
+ #else
114
+ template <typename T, typename A, typename B>
115
+ struct IfArray {
116
+ using Result = A;
117
+ };
118
+
119
+ template <typename T, typename A, typename B>
120
+ struct IfArray<T[], A, B> {
121
+ using Result = B;
122
+ };
123
+ #endif
116
124
 
117
125
  } // namespace arena_detail
118
126
 
119
127
  class Arena {
128
+ #ifndef GRPC_ARENA_POOLED_ALLOCATIONS_USE_MALLOC
120
129
  // Selected pool sizes.
121
130
  // How to tune: see tools/codegen/core/optimize_arena_pool_sizes.py
122
131
  using PoolSizes = absl::integer_sequence<size_t, 80, 304, 528, 1024>;
123
132
  struct FreePoolNode {
124
133
  FreePoolNode* next;
125
134
  };
135
+ #endif
126
136
 
127
137
  public:
128
138
  // Create an arena, with \a initial_size bytes in the first allocated buffer.
@@ -291,8 +301,30 @@ class Arena {
291
301
  bool delete_ = true;
292
302
  };
293
303
 
304
+ class ArrayPooledDeleter {
305
+ public:
306
+ ArrayPooledDeleter() = default;
307
+ explicit ArrayPooledDeleter(std::nullptr_t) : delete_(false) {}
308
+ template <typename T>
309
+ void operator()(T* p) {
310
+ // TODO(ctiller): promise based filter hijacks ownership of some pointers
311
+ // to make them appear as PoolPtr without really transferring ownership,
312
+ // by setting the arena to nullptr.
313
+ // This is a transitional hack and should be removed once promise based
314
+ // filter is removed.
315
+ if (delete_) delete[] p;
316
+ }
317
+
318
+ bool has_freelist() const { return delete_; }
319
+
320
+ private:
321
+ bool delete_ = true;
322
+ };
323
+
294
324
  template <typename T>
295
- using PoolPtr = std::unique_ptr<T, PooledDeleter>;
325
+ using PoolPtr =
326
+ std::unique_ptr<T, typename arena_detail::IfArray<
327
+ T, PooledDeleter, ArrayPooledDeleter>::Result>;
296
328
 
297
329
  // Make a unique_ptr to T that is allocated from the arena.
298
330
  // When the pointer is released, the memory may be reused for other
@@ -314,7 +346,7 @@ class Arena {
314
346
  // arena size.
315
347
  template <typename T>
316
348
  PoolPtr<T[]> MakePooledArray(size_t n) {
317
- return PoolPtr<T[]>(new T[n], PooledDeleter());
349
+ return PoolPtr<T[]>(new T[n], ArrayPooledDeleter());
318
350
  }
319
351
 
320
352
  // Like MakePooled, but with manual memory management.
@@ -372,9 +404,11 @@ class Arena {
372
404
 
373
405
  void* AllocZone(size_t size);
374
406
 
407
+ #ifndef GRPC_ARENA_POOLED_ALLOCATIONS_USE_MALLOC
375
408
  void* AllocPooled(size_t obj_size, size_t alloc_size,
376
409
  std::atomic<FreePoolNode*>* head);
377
410
  static void FreePooled(void* p, std::atomic<FreePoolNode*>* head);
411
+ #endif
378
412
 
379
413
  void TracePoolAlloc(size_t size, void* ptr) {
380
414
  (void)size;
@@ -28,7 +28,6 @@
28
28
  #include "src/core/lib/debug/trace.h"
29
29
  #include "src/core/lib/gpr/useful.h"
30
30
  #include "src/core/lib/gprpp/mpscq.h"
31
- #include "src/core/lib/promise/detail/basic_seq.h"
32
31
  #include "src/core/lib/promise/exec_ctx_wakeup_scheduler.h"
33
32
  #include "src/core/lib/promise/loop.h"
34
33
  #include "src/core/lib/promise/map.h"
@@ -23,6 +23,7 @@
23
23
  #include "absl/strings/string_view.h"
24
24
 
25
25
  #include <grpc/grpc.h>
26
+ #include <grpc/impl/channel_arg_names.h>
26
27
 
27
28
  #include "src/core/lib/gpr/useful.h"
28
29
  #include "src/core/lib/gprpp/cpp_impl_of.h"
@@ -19,8 +19,8 @@
19
19
 
20
20
  #include "absl/strings/string_view.h"
21
21
 
22
- #include <grpc/grpc.h>
23
22
  #include <grpc/grpc_security.h>
23
+ #include <grpc/impl/channel_arg_names.h>
24
24
 
25
25
  #include "src/core/lib/gpr/useful.h"
26
26
  #include "src/core/lib/gprpp/dual_ref_counted.h"
@@ -179,7 +179,7 @@ struct Rbac {
179
179
 
180
180
  std::string ToString() const;
181
181
 
182
- // The authorization policy name or the HTTP RBAC filter name.
182
+ // The authorization policy name or empty string in xDS case.
183
183
  std::string name;
184
184
 
185
185
  Action action;
@@ -42,15 +42,23 @@ namespace grpc_core {
42
42
 
43
43
  namespace {
44
44
 
45
+ #if OPENSSL_VERSION_NUMBER >= 0x30000000L
46
+ const char kSha256[] = "SHA256";
47
+ #endif
45
48
  const char kAlgorithm[] = "AWS4-HMAC-SHA256";
46
49
  const char kDateFormat[] = "%a, %d %b %E4Y %H:%M:%S %Z";
47
50
  const char kXAmzDateFormat[] = "%Y%m%dT%H%M%SZ";
48
51
 
49
52
  void SHA256(const std::string& str, unsigned char out[SHA256_DIGEST_LENGTH]) {
53
+ #if OPENSSL_VERSION_NUMBER < 0x30000000L
50
54
  SHA256_CTX sha256;
51
55
  SHA256_Init(&sha256);
52
56
  SHA256_Update(&sha256, str.c_str(), str.size());
53
57
  SHA256_Final(out, &sha256);
58
+ #else
59
+ EVP_Q_digest(nullptr, kSha256, nullptr, str.c_str(), str.size(), out,
60
+ nullptr);
61
+ #endif
54
62
  }
55
63
 
56
64
  std::string SHA256Hex(const std::string& str) {
@@ -32,6 +32,7 @@
32
32
 
33
33
  #include <grpc/grpc_security.h> // IWYU pragma: keep
34
34
  #include <grpc/grpc_security_constants.h>
35
+ #include <grpc/impl/channel_arg_names.h>
35
36
  #include <grpc/slice.h>
36
37
  #include <grpc/support/alloc.h>
37
38
  #include <grpc/support/json.h>
@@ -115,8 +115,12 @@ grpc_auth_json_key grpc_auth_json_key_create_from_json(const Json& json) {
115
115
  gpr_log(GPR_ERROR, "Could not write into openssl BIO.");
116
116
  goto end;
117
117
  }
118
+ #if OPENSSL_VERSION_NUMBER < 0x30000000L
118
119
  result.private_key =
119
120
  PEM_read_bio_RSAPrivateKey(bio, nullptr, nullptr, const_cast<char*>(""));
121
+ #else
122
+ result.private_key = PEM_read_bio_PrivateKey(bio, nullptr, nullptr, nullptr);
123
+ #endif
120
124
  if (result.private_key == nullptr) {
121
125
  gpr_log(GPR_ERROR, "Could not deserialize private key.");
122
126
  goto end;
@@ -158,7 +162,11 @@ void grpc_auth_json_key_destruct(grpc_auth_json_key* json_key) {
158
162
  json_key->client_email = nullptr;
159
163
  }
160
164
  if (json_key->private_key != nullptr) {
165
+ #if OPENSSL_VERSION_NUMBER < 0x30000000L
161
166
  RSA_free(json_key->private_key);
167
+ #else
168
+ EVP_PKEY_free(json_key->private_key);
169
+ #endif
162
170
  json_key->private_key = nullptr;
163
171
  }
164
172
  }
@@ -237,7 +245,9 @@ char* compute_and_encode_signature(const grpc_auth_json_key* json_key,
237
245
  const char* to_sign) {
238
246
  const EVP_MD* md = openssl_digest_from_algorithm(signature_algorithm);
239
247
  EVP_MD_CTX* md_ctx = nullptr;
248
+ #if OPENSSL_VERSION_NUMBER < 0x30000000L
240
249
  EVP_PKEY* key = EVP_PKEY_new();
250
+ #endif
241
251
  size_t sig_len = 0;
242
252
  unsigned char* sig = nullptr;
243
253
  char* result = nullptr;
@@ -247,8 +257,13 @@ char* compute_and_encode_signature(const grpc_auth_json_key* json_key,
247
257
  gpr_log(GPR_ERROR, "Could not create MD_CTX");
248
258
  goto end;
249
259
  }
260
+ #if OPENSSL_VERSION_NUMBER < 0x30000000L
250
261
  EVP_PKEY_set1_RSA(key, json_key->private_key);
251
262
  if (EVP_DigestSignInit(md_ctx, nullptr, md, nullptr, key) != 1) {
263
+ #else
264
+ if (EVP_DigestSignInit(md_ctx, nullptr, md, nullptr, json_key->private_key) !=
265
+ 1) {
266
+ #endif
252
267
  gpr_log(GPR_ERROR, "DigestInit failed.");
253
268
  goto end;
254
269
  }
@@ -268,7 +283,9 @@ char* compute_and_encode_signature(const grpc_auth_json_key* json_key,
268
283
  result = grpc_base64_encode(sig, sig_len, 1, 0);
269
284
 
270
285
  end:
286
+ #if OPENSSL_VERSION_NUMBER < 0x30000000L
271
287
  if (key != nullptr) EVP_PKEY_free(key);
288
+ #endif
272
289
  if (md_ctx != nullptr) EVP_MD_CTX_destroy(md_ctx);
273
290
  if (sig != nullptr) gpr_free(sig);
274
291
  return result;
@@ -38,7 +38,11 @@ struct grpc_auth_json_key {
38
38
  char* private_key_id;
39
39
  char* client_id;
40
40
  char* client_email;
41
+ #if OPENSSL_VERSION_NUMBER < 0x30000000L
41
42
  RSA* private_key;
43
+ #else
44
+ EVP_PKEY* private_key;
45
+ #endif
42
46
  };
43
47
  // Returns 1 if the object is valid, 0 otherwise.
44
48
  int grpc_auth_json_key_is_valid(const grpc_auth_json_key* json_key);
@@ -37,6 +37,9 @@
37
37
  #include <openssl/pem.h>
38
38
  #include <openssl/rsa.h>
39
39
  #include <openssl/x509.h>
40
+ #if OPENSSL_VERSION_NUMBER >= 0x30000000L
41
+ #include <openssl/param_build.h>
42
+ #endif
40
43
 
41
44
  #include "absl/status/status.h"
42
45
  #include "absl/status/statusor.h"
@@ -523,7 +526,13 @@ static int RSA_set0_key(RSA* r, BIGNUM* n, BIGNUM* e, BIGNUM* d) {
523
526
  #endif // OPENSSL_VERSION_NUMBER < 0x10100000L
524
527
 
525
528
  static EVP_PKEY* pkey_from_jwk(const Json& json, const char* kty) {
529
+ #if OPENSSL_VERSION_NUMBER < 0x30000000L
526
530
  RSA* rsa = nullptr;
531
+ #else
532
+ EVP_PKEY_CTX* ctx = nullptr;
533
+ OSSL_PARAM* params = NULL;
534
+ OSSL_PARAM_BLD* bld = OSSL_PARAM_BLD_new();
535
+ #endif
527
536
  EVP_PKEY* result = nullptr;
528
537
  BIGNUM* tmp_n = nullptr;
529
538
  BIGNUM* tmp_e = nullptr;
@@ -535,11 +544,13 @@ static EVP_PKEY* pkey_from_jwk(const Json& json, const char* kty) {
535
544
  gpr_log(GPR_ERROR, "Unsupported key type %s.", kty);
536
545
  goto end;
537
546
  }
547
+ #if OPENSSL_VERSION_NUMBER < 0x30000000L
538
548
  rsa = RSA_new();
539
549
  if (rsa == nullptr) {
540
550
  gpr_log(GPR_ERROR, "Could not create rsa key.");
541
551
  goto end;
542
552
  }
553
+ #endif
543
554
  it = json.object().find("n");
544
555
  if (it == json.object().end()) {
545
556
  gpr_log(GPR_ERROR, "Missing RSA public key field.");
@@ -554,6 +565,7 @@ static EVP_PKEY* pkey_from_jwk(const Json& json, const char* kty) {
554
565
  }
555
566
  tmp_e = bignum_from_base64(validate_string_field(it->second, "e"));
556
567
  if (tmp_e == nullptr) goto end;
568
+ #if OPENSSL_VERSION_NUMBER < 0x30000000L
557
569
  if (!RSA_set0_key(rsa, tmp_n, tmp_e, nullptr)) {
558
570
  gpr_log(GPR_ERROR, "Cannot set RSA key from inputs.");
559
571
  goto end;
@@ -563,9 +575,38 @@ static EVP_PKEY* pkey_from_jwk(const Json& json, const char* kty) {
563
575
  tmp_e = nullptr;
564
576
  result = EVP_PKEY_new();
565
577
  EVP_PKEY_set1_RSA(result, rsa); // uprefs rsa.
578
+ #else
579
+
580
+ if (!OSSL_PARAM_BLD_push_BN(bld, "n", tmp_n) ||
581
+ !OSSL_PARAM_BLD_push_BN(bld, "e", tmp_e) ||
582
+ (params = OSSL_PARAM_BLD_to_param(bld)) == NULL) {
583
+ gpr_log(GPR_ERROR, "Could not create OSSL_PARAM");
584
+ goto end;
585
+ }
586
+
587
+ ctx = EVP_PKEY_CTX_new_from_name(nullptr, "RSA", nullptr);
588
+ if (ctx == nullptr) {
589
+ gpr_log(GPR_ERROR, "Could not create rsa key.");
590
+ goto end;
591
+ }
592
+ if (EVP_PKEY_fromdata_init(ctx) <= 0) {
593
+ gpr_log(GPR_ERROR, "Could not create rsa key.");
594
+ goto end;
595
+ }
596
+ if (EVP_PKEY_fromdata(ctx, &result, EVP_PKEY_KEYPAIR, params) <= 0) {
597
+ gpr_log(GPR_ERROR, "Cannot set RSA key from inputs.");
598
+ goto end;
599
+ }
600
+ #endif
566
601
 
567
602
  end:
603
+ #if OPENSSL_VERSION_NUMBER < 0x30000000L
568
604
  RSA_free(rsa);
605
+ #else
606
+ EVP_PKEY_CTX_free(ctx);
607
+ OSSL_PARAM_free(params);
608
+ OSSL_PARAM_BLD_free(bld);
609
+ #endif
569
610
  BN_free(tmp_n);
570
611
  BN_free(tmp_e);
571
612
  return result;
@@ -642,6 +683,7 @@ static int verify_jwt_signature(EVP_PKEY* key, const char* alg,
642
683
  if (EVP_DigestVerifyFinal(md_ctx, GRPC_SLICE_START_PTR(signature),
643
684
  GRPC_SLICE_LENGTH(signature)) != 1) {
644
685
  gpr_log(GPR_ERROR, "JWT signature verification failed.");
686
+
645
687
  goto end;
646
688
  }
647
689
  result = 1;
@@ -28,6 +28,7 @@
28
28
  #include "absl/strings/string_view.h"
29
29
  #include "absl/types/optional.h"
30
30
 
31
+ #include <grpc/impl/channel_arg_names.h>
31
32
  #include <grpc/support/alloc.h>
32
33
  #include <grpc/support/log.h>
33
34
  #include <grpc/support/string_util.h>
@@ -437,7 +437,11 @@ absl::StatusOr<bool> PrivateKeyAndCertificateMatch(
437
437
  return absl::InvalidArgumentError(
438
438
  "Conversion from PEM string to EVP_PKEY failed.");
439
439
  }
440
+ #if OPENSSL_VERSION_NUMBER < 0x30000000L
440
441
  bool result = EVP_PKEY_cmp(private_evp_pkey, public_evp_pkey) == 1;
442
+ #else
443
+ bool result = EVP_PKEY_eq(private_evp_pkey, public_evp_pkey) == 1;
444
+ #endif
441
445
  EVP_PKEY_free(private_evp_pkey);
442
446
  EVP_PKEY_free(public_evp_pkey);
443
447
  return result;
@@ -28,6 +28,7 @@
28
28
 
29
29
  #include <grpc/grpc.h>
30
30
  #include <grpc/grpc_security_constants.h>
31
+ #include <grpc/impl/channel_arg_names.h>
31
32
  #include <grpc/support/log.h>
32
33
 
33
34
  #include "src/core/lib/channel/channel_args.h"
@@ -24,6 +24,7 @@
24
24
  #include "absl/types/optional.h"
25
25
 
26
26
  #include <grpc/grpc_security_constants.h>
27
+ #include <grpc/impl/channel_arg_names.h>
27
28
  #include <grpc/support/log.h>
28
29
 
29
30
  #include "src/core/ext/filters/client_channel/lb_policy/xds/xds_channel_args.h"
@@ -31,6 +31,7 @@
31
31
 
32
32
  #include <grpc/grpc.h>
33
33
  #include <grpc/grpc_security_constants.h>
34
+ #include <grpc/impl/channel_arg_names.h>
34
35
  #include <grpc/slice.h>
35
36
  #include <grpc/support/alloc.h>
36
37
  #include <grpc/support/log.h>
@@ -34,6 +34,7 @@
34
34
  #include "absl/types/optional.h"
35
35
 
36
36
  #include <grpc/grpc_security_constants.h>
37
+ #include <grpc/impl/channel_arg_names.h>
37
38
  #include <grpc/support/alloc.h>
38
39
  #include <grpc/support/log.h>
39
40
  #include <grpc/support/string_util.h>
@@ -30,6 +30,7 @@
30
30
  #include "absl/strings/str_split.h"
31
31
 
32
32
  #include <grpc/grpc.h>
33
+ #include <grpc/impl/channel_arg_names.h>
33
34
  #include <grpc/support/alloc.h>
34
35
  #include <grpc/support/log.h>
35
36
  #include <grpc/support/string_util.h>
@@ -18,6 +18,7 @@
18
18
 
19
19
  #include <grpc/support/port_platform.h>
20
20
 
21
+ #include <stdint.h>
21
22
  #include <string.h>
22
23
 
23
24
  #include <functional>
@@ -43,7 +44,6 @@
43
44
  #include "src/core/lib/gprpp/ref_counted_ptr.h"
44
45
  #include "src/core/lib/promise/arena_promise.h"
45
46
  #include "src/core/lib/promise/context.h"
46
- #include "src/core/lib/promise/detail/basic_seq.h"
47
47
  #include "src/core/lib/promise/promise.h"
48
48
  #include "src/core/lib/promise/seq.h"
49
49
  #include "src/core/lib/promise/try_seq.h"
@@ -196,10 +196,13 @@ ArenaPromise<ServerMetadataHandle> ClientAuthFilter::MakeCallPromise(
196
196
  if (host == nullptr) {
197
197
  return next_promise_factory(std::move(call_args));
198
198
  }
199
- return TrySeq(args_.security_connector->CheckCallHost(
200
- host->as_string_view(), args_.auth_context.get()),
201
- GetCallCredsMetadata(std::move(call_args)),
202
- next_promise_factory);
199
+ return TrySeq(
200
+ args_.security_connector->CheckCallHost(host->as_string_view(),
201
+ args_.auth_context.get()),
202
+ [this, call_args = std::move(call_args)]() mutable {
203
+ return GetCallCredsMetadata(std::move(call_args));
204
+ },
205
+ next_promise_factory);
203
206
  }
204
207
 
205
208
  absl::StatusOr<ClientAuthFilter> ClientAuthFilter::Create(
@@ -36,6 +36,7 @@
36
36
 
37
37
  #include <grpc/grpc_security.h>
38
38
  #include <grpc/grpc_security_constants.h>
39
+ #include <grpc/impl/channel_arg_names.h>
39
40
  #include <grpc/slice.h>
40
41
  #include <grpc/slice_buffer.h>
41
42
  #include <grpc/support/alloc.h>
@@ -18,6 +18,8 @@
18
18
 
19
19
  #include <grpc/support/port_platform.h>
20
20
 
21
+ #include <stdint.h>
22
+
21
23
  #include <algorithm>
22
24
  #include <atomic>
23
25
  #include <cstddef>