grpc 1.55.0 → 1.58.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (908) hide show
  1. checksums.yaml +4 -4
  2. data/Makefile +783 -492
  3. data/include/grpc/event_engine/event_engine.h +26 -36
  4. data/include/grpc/event_engine/memory_allocator.h +2 -2
  5. data/include/grpc/grpc_audit_logging.h +96 -0
  6. data/include/grpc/grpc_security.h +19 -0
  7. data/include/grpc/impl/channel_arg_names.h +371 -0
  8. data/include/grpc/impl/grpc_types.h +1 -350
  9. data/include/grpc/module.modulemap +3 -0
  10. data/include/grpc/support/json.h +218 -0
  11. data/include/grpc/support/port_platform.h +29 -23
  12. data/src/core/ext/filters/backend_metrics/backend_metric_filter.cc +6 -1
  13. data/src/core/ext/filters/channel_idle/channel_idle_filter.cc +2 -1
  14. data/src/core/ext/filters/client_channel/backend_metric.cc +2 -0
  15. data/src/core/ext/filters/client_channel/channel_connectivity.cc +4 -4
  16. data/src/core/ext/filters/client_channel/client_channel.cc +137 -115
  17. data/src/core/ext/filters/client_channel/client_channel.h +6 -0
  18. data/src/core/ext/filters/client_channel/client_channel_channelz.cc +19 -18
  19. data/src/core/ext/filters/client_channel/client_channel_internal.h +16 -21
  20. data/src/core/ext/filters/client_channel/config_selector.h +9 -24
  21. data/src/core/ext/filters/client_channel/dynamic_filters.h +3 -3
  22. data/src/core/ext/filters/client_channel/http_proxy.cc +6 -1
  23. data/src/core/ext/filters/client_channel/lb_policy/address_filtering.cc +27 -53
  24. data/src/core/ext/filters/client_channel/lb_policy/address_filtering.h +23 -9
  25. data/src/core/ext/filters/client_channel/lb_policy/backend_metric_data.h +3 -0
  26. data/src/core/ext/filters/client_channel/lb_policy/child_policy_handler.cc +25 -35
  27. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc +84 -136
  28. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.cc +2 -1
  29. data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.cc +4 -3
  30. data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h +3 -1
  31. data/src/core/ext/filters/client_channel/lb_policy/health_check_client.cc +480 -0
  32. data/src/core/ext/filters/client_channel/lb_policy/health_check_client.h +52 -0
  33. data/src/core/ext/filters/client_channel/lb_policy/health_check_client_internal.h +202 -0
  34. data/src/core/ext/filters/client_channel/lb_policy/oob_backend_metric.cc +6 -9
  35. data/src/core/ext/filters/client_channel/lb_policy/oob_backend_metric_internal.h +2 -0
  36. data/src/core/ext/filters/client_channel/lb_policy/outlier_detection/outlier_detection.cc +132 -74
  37. data/src/core/ext/filters/client_channel/lb_policy/outlier_detection/outlier_detection.h +9 -2
  38. data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc +168 -104
  39. data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.h +20 -0
  40. data/src/core/ext/filters/client_channel/lb_policy/priority/priority.cc +14 -43
  41. data/src/core/ext/filters/client_channel/lb_policy/ring_hash/ring_hash.cc +22 -14
  42. data/src/core/ext/filters/client_channel/lb_policy/ring_hash/ring_hash.h +18 -1
  43. data/src/core/ext/filters/client_channel/lb_policy/rls/rls.cc +33 -88
  44. data/src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc +7 -5
  45. data/src/core/ext/filters/client_channel/lb_policy/subchannel_list.h +57 -22
  46. data/src/core/ext/filters/client_channel/lb_policy/weighted_round_robin/static_stride_scheduler.cc +76 -6
  47. data/src/core/ext/filters/client_channel/lb_policy/weighted_round_robin/weighted_round_robin.cc +53 -43
  48. data/src/core/ext/filters/client_channel/lb_policy/weighted_target/weighted_target.cc +17 -52
  49. data/src/core/ext/filters/client_channel/lb_policy/xds/cds.cc +55 -114
  50. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_channel_args.h +8 -0
  51. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_impl.cc +32 -83
  52. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_manager.cc +21 -67
  53. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_resolver.cc +62 -133
  54. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_override_host.cc +23 -62
  55. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_wrr_locality.cc +24 -93
  56. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc +2 -5
  57. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc +102 -11
  58. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc +44 -37
  59. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h +4 -1
  60. data/src/core/ext/filters/client_channel/resolver/dns/dns_resolver_plugin.cc +6 -0
  61. data/src/core/ext/filters/client_channel/resolver/dns/event_engine/event_engine_client_channel_resolver.cc +135 -73
  62. data/src/core/ext/filters/client_channel/resolver/dns/event_engine/service_config_helper.cc +1 -1
  63. data/src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc +1 -1
  64. data/src/core/ext/filters/client_channel/resolver/google_c2p/google_c2p_resolver.cc +28 -27
  65. data/src/core/ext/filters/client_channel/resolver/polling_resolver.cc +10 -4
  66. data/src/core/ext/filters/client_channel/resolver/polling_resolver.h +1 -0
  67. data/src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc +25 -13
  68. data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.cc +428 -256
  69. data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.h +32 -1
  70. data/src/core/ext/filters/client_channel/retry_filter.cc +39 -2498
  71. data/src/core/ext/filters/client_channel/retry_filter.h +92 -1
  72. data/src/core/ext/filters/client_channel/retry_filter_legacy_call_data.cc +2052 -0
  73. data/src/core/ext/filters/client_channel/retry_filter_legacy_call_data.h +442 -0
  74. data/src/core/ext/filters/client_channel/retry_service_config.cc +2 -1
  75. data/src/core/ext/filters/client_channel/service_config_channel_arg_filter.cc +40 -90
  76. data/src/core/ext/filters/client_channel/subchannel.cc +17 -199
  77. data/src/core/ext/filters/client_channel/subchannel.h +14 -48
  78. data/src/core/ext/filters/client_channel/subchannel_interface_internal.h +3 -0
  79. data/src/core/ext/filters/deadline/deadline_filter.cc +1 -1
  80. data/src/core/ext/filters/http/client/http_client_filter.cc +1 -0
  81. data/src/core/ext/filters/http/client_authority_filter.cc +1 -1
  82. data/src/core/ext/filters/http/message_compress/compression_filter.cc +6 -5
  83. data/src/core/ext/filters/http/server/http_server_filter.cc +1 -1
  84. data/src/core/ext/filters/message_size/message_size_filter.cc +1 -0
  85. data/src/core/ext/filters/rbac/rbac_filter.cc +40 -111
  86. data/src/core/ext/filters/rbac/rbac_filter.h +12 -30
  87. data/src/core/ext/filters/rbac/rbac_service_config_parser.cc +94 -3
  88. data/src/core/ext/filters/server_config_selector/server_config_selector_filter.cc +6 -8
  89. data/src/core/ext/filters/stateful_session/stateful_session_filter.cc +164 -88
  90. data/src/core/ext/filters/stateful_session/stateful_session_filter.h +16 -7
  91. data/src/core/ext/transport/chttp2/client/chttp2_connector.cc +1 -0
  92. data/src/core/ext/transport/chttp2/server/chttp2_server.cc +15 -16
  93. data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +463 -519
  94. data/src/core/ext/transport/chttp2/transport/decode_huff.cc +6569 -174
  95. data/src/core/ext/transport/chttp2/transport/decode_huff.h +2278 -441
  96. data/src/core/ext/transport/chttp2/transport/flow_control.cc +46 -95
  97. data/src/core/ext/transport/chttp2/transport/frame_ping.cc +6 -20
  98. data/src/core/ext/transport/chttp2/transport/hpack_parse_result.cc +176 -0
  99. data/src/core/ext/transport/chttp2/transport/hpack_parse_result.h +326 -0
  100. data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +631 -547
  101. data/src/core/ext/transport/chttp2/transport/hpack_parser.h +157 -11
  102. data/src/core/ext/transport/chttp2/transport/hpack_parser_table.cc +47 -33
  103. data/src/core/ext/transport/chttp2/transport/hpack_parser_table.h +19 -5
  104. data/src/core/ext/transport/chttp2/transport/internal.h +39 -76
  105. data/src/core/ext/transport/chttp2/transport/parsing.cc +43 -22
  106. data/src/core/ext/transport/chttp2/transport/ping_abuse_policy.cc +80 -0
  107. data/src/core/ext/transport/chttp2/transport/ping_abuse_policy.h +55 -0
  108. data/src/core/ext/transport/chttp2/transport/ping_rate_policy.cc +98 -0
  109. data/src/core/ext/transport/chttp2/transport/ping_rate_policy.h +73 -0
  110. data/src/core/ext/transport/chttp2/transport/writing.cc +82 -91
  111. data/src/core/ext/transport/inproc/inproc_transport.cc +1 -0
  112. data/src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.c +27 -6
  113. data/src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.h +143 -0
  114. data/src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.c +2 -9
  115. data/src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.h +0 -39
  116. data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.c +13 -8
  117. data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.h +35 -6
  118. data/src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.c +17 -13
  119. data/src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.h +85 -20
  120. data/src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.c +26 -7
  121. data/src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.h +45 -3
  122. data/src/core/ext/upb-generated/envoy/config/metrics/v3/metrics_service.upb.c +4 -3
  123. data/src/core/ext/upb-generated/envoy/config/metrics/v3/metrics_service.upb.h +21 -0
  124. data/src/core/ext/upb-generated/envoy/config/overload/v3/overload.upb.c +30 -6
  125. data/src/core/ext/upb-generated/envoy/config/overload/v3/overload.upb.h +180 -0
  126. data/src/core/ext/upb-generated/envoy/data/accesslog/v3/accesslog.upb.c +558 -0
  127. data/src/core/ext/upb-generated/envoy/data/accesslog/v3/accesslog.upb.h +2710 -0
  128. data/src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3/fault.upb.c +30 -11
  129. data/src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3/fault.upb.h +53 -24
  130. data/src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3/router.upb.c +30 -5
  131. data/src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3/router.upb.h +110 -0
  132. data/src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.c +41 -15
  133. data/src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h +150 -27
  134. data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb.c +1 -0
  135. data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb.c +47 -0
  136. data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb.h +93 -0
  137. data/src/core/ext/upb-generated/xds/data/orca/v3/orca_load_report.upb.c +11 -2
  138. data/src/core/ext/upb-generated/xds/data/orca/v3/orca_load_report.upb.h +15 -0
  139. data/src/core/ext/upbdefs-generated/envoy/config/accesslog/v3/accesslog.upbdefs.c +88 -76
  140. data/src/core/ext/upbdefs-generated/envoy/config/accesslog/v3/accesslog.upbdefs.h +5 -0
  141. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/config_source.upbdefs.c +11 -12
  142. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/config_source.upbdefs.h +0 -5
  143. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_service.upbdefs.c +162 -160
  144. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/health_check.upbdefs.c +129 -118
  145. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/protocol.upbdefs.c +141 -135
  146. data/src/core/ext/upbdefs-generated/envoy/config/metrics/v3/metrics_service.upbdefs.c +19 -12
  147. data/src/core/ext/upbdefs-generated/envoy/config/overload/v3/overload.upbdefs.c +38 -30
  148. data/src/core/ext/upbdefs-generated/envoy/config/overload/v3/overload.upbdefs.h +5 -0
  149. data/src/core/ext/upbdefs-generated/envoy/data/accesslog/v3/accesslog.upbdefs.c +402 -0
  150. data/src/core/ext/upbdefs-generated/envoy/data/accesslog/v3/accesslog.upbdefs.h +111 -0
  151. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3/fault.upbdefs.c +80 -74
  152. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3/router.upbdefs.c +63 -47
  153. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3/router.upbdefs.h +5 -0
  154. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.c +315 -293
  155. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.h +5 -0
  156. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/regex.upbdefs.c +29 -29
  157. data/src/core/ext/xds/certificate_provider_store.cc +4 -9
  158. data/src/core/ext/xds/certificate_provider_store.h +1 -1
  159. data/src/core/ext/xds/file_watcher_certificate_provider_factory.cc +30 -42
  160. data/src/core/ext/xds/file_watcher_certificate_provider_factory.h +14 -9
  161. data/src/core/ext/xds/xds_api.cc +9 -6
  162. data/src/core/ext/xds/xds_api.h +3 -2
  163. data/src/core/ext/xds/xds_audit_logger_registry.cc +122 -0
  164. data/src/core/ext/xds/xds_audit_logger_registry.h +68 -0
  165. data/src/core/ext/xds/xds_bootstrap_grpc.cc +51 -36
  166. data/src/core/ext/xds/xds_bootstrap_grpc.h +10 -13
  167. data/src/core/ext/xds/xds_client.cc +5 -4
  168. data/src/core/ext/xds/xds_client_grpc.cc +12 -6
  169. data/src/core/ext/xds/xds_client_grpc.h +16 -2
  170. data/src/core/ext/xds/xds_client_stats.h +11 -1
  171. data/src/core/ext/xds/xds_cluster.cc +46 -35
  172. data/src/core/ext/xds/xds_cluster_specifier_plugin.cc +11 -8
  173. data/src/core/ext/xds/xds_common_types.cc +3 -1
  174. data/src/core/ext/xds/xds_endpoint.cc +4 -7
  175. data/src/core/ext/xds/xds_health_status.cc +0 -17
  176. data/src/core/ext/xds/xds_health_status.h +5 -25
  177. data/src/core/ext/xds/xds_http_fault_filter.cc +14 -12
  178. data/src/core/ext/xds/xds_http_rbac_filter.cc +147 -65
  179. data/src/core/ext/xds/xds_http_stateful_session_filter.cc +13 -10
  180. data/src/core/ext/xds/xds_lb_policy_registry.cc +58 -16
  181. data/src/core/ext/xds/xds_listener.cc +1 -0
  182. data/src/core/ext/xds/xds_route_config.cc +44 -3
  183. data/src/core/ext/xds/xds_transport_grpc.cc +2 -1
  184. data/src/core/lib/address_utils/parse_address.cc +63 -1
  185. data/src/core/lib/address_utils/parse_address.h +8 -0
  186. data/src/core/lib/address_utils/sockaddr_utils.cc +46 -1
  187. data/src/core/lib/address_utils/sockaddr_utils.h +2 -2
  188. data/src/core/lib/avl/avl.h +15 -173
  189. data/src/core/lib/backoff/random_early_detection.h +5 -0
  190. data/src/core/lib/channel/call_tracer.cc +289 -0
  191. data/src/core/lib/channel/call_tracer.h +35 -0
  192. data/src/core/lib/channel/channel_args.cc +120 -46
  193. data/src/core/lib/channel/channel_args.h +52 -4
  194. data/src/core/lib/channel/channel_trace.cc +16 -12
  195. data/src/core/lib/channel/channelz.cc +159 -132
  196. data/src/core/lib/channel/channelz.h +42 -35
  197. data/src/core/lib/channel/channelz_registry.cc +23 -20
  198. data/src/core/lib/channel/connected_channel.cc +21 -8
  199. data/src/core/lib/channel/promise_based_filter.cc +4 -5
  200. data/src/core/lib/channel/promise_based_filter.h +3 -0
  201. data/src/core/lib/compression/compression_internal.cc +8 -7
  202. data/src/core/lib/config/config_vars.cc +20 -18
  203. data/src/core/lib/config/config_vars.h +4 -4
  204. data/src/core/lib/config/load_config.cc +13 -0
  205. data/src/core/lib/config/load_config.h +6 -0
  206. data/src/core/lib/debug/event_log.h +1 -1
  207. data/src/core/lib/debug/stats_data.cc +93 -21
  208. data/src/core/lib/debug/stats_data.h +42 -1
  209. data/src/core/lib/debug/trace.cc +21 -55
  210. data/src/core/lib/debug/trace.h +3 -1
  211. data/src/core/lib/event_engine/ares_resolver.cc +712 -0
  212. data/src/core/lib/event_engine/ares_resolver.h +150 -0
  213. data/src/core/lib/event_engine/cf_engine/cf_engine.cc +218 -0
  214. data/src/core/lib/event_engine/cf_engine/cf_engine.h +86 -0
  215. data/src/core/lib/event_engine/cf_engine/cfstream_endpoint.cc +354 -0
  216. data/src/core/lib/event_engine/cf_engine/cfstream_endpoint.h +146 -0
  217. data/src/core/lib/event_engine/cf_engine/cftype_unique_ref.h +79 -0
  218. data/src/core/lib/event_engine/cf_engine/dns_service_resolver.cc +229 -0
  219. data/src/core/lib/event_engine/cf_engine/dns_service_resolver.h +117 -0
  220. data/src/core/lib/event_engine/default_event_engine.cc +13 -1
  221. data/src/core/lib/event_engine/default_event_engine_factory.cc +14 -2
  222. data/src/core/lib/event_engine/event_engine.cc +0 -12
  223. data/src/core/lib/event_engine/forkable.cc +62 -43
  224. data/src/core/lib/event_engine/forkable.h +15 -0
  225. data/src/core/lib/event_engine/grpc_polled_fd.h +73 -0
  226. data/src/core/lib/event_engine/handle_containers.h +0 -4
  227. data/src/core/lib/event_engine/poller.h +2 -2
  228. data/src/core/lib/event_engine/posix.h +4 -0
  229. data/src/core/lib/event_engine/posix_engine/ev_epoll1_linux.cc +5 -7
  230. data/src/core/lib/event_engine/posix_engine/ev_poll_posix.cc +29 -9
  231. data/src/core/lib/event_engine/posix_engine/ev_poll_posix.h +10 -1
  232. data/src/core/lib/event_engine/posix_engine/grpc_polled_fd_posix.h +197 -0
  233. data/src/core/lib/event_engine/posix_engine/lockfree_event.cc +7 -18
  234. data/src/core/lib/event_engine/posix_engine/posix_endpoint.cc +28 -14
  235. data/src/core/lib/event_engine/posix_engine/posix_endpoint.h +12 -1
  236. data/src/core/lib/event_engine/posix_engine/posix_engine.cc +82 -21
  237. data/src/core/lib/event_engine/posix_engine/posix_engine.h +22 -14
  238. data/src/core/lib/event_engine/posix_engine/posix_engine_listener.cc +70 -31
  239. data/src/core/lib/event_engine/posix_engine/posix_engine_listener.h +12 -8
  240. data/src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.cc +4 -2
  241. data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.cc +43 -2
  242. data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.h +6 -0
  243. data/src/core/lib/event_engine/posix_engine/timer.h +10 -37
  244. data/src/core/lib/event_engine/posix_engine/timer_manager.h +1 -1
  245. data/src/core/lib/event_engine/posix_engine/traced_buffer_list.cc +2 -0
  246. data/src/core/lib/event_engine/shim.cc +7 -1
  247. data/src/core/lib/event_engine/tcp_socket_utils.cc +67 -7
  248. data/src/core/lib/event_engine/tcp_socket_utils.h +3 -0
  249. data/src/core/lib/event_engine/{thread_pool.cc → thread_pool/original_thread_pool.cc} +28 -25
  250. data/src/core/lib/event_engine/{thread_pool.h → thread_pool/original_thread_pool.h} +11 -15
  251. data/src/core/lib/event_engine/thread_pool/thread_count.cc +58 -0
  252. data/src/core/lib/event_engine/thread_pool/thread_count.h +161 -0
  253. data/src/core/lib/event_engine/{executor/executor.h → thread_pool/thread_pool.h} +21 -9
  254. data/src/core/lib/event_engine/thread_pool/thread_pool_factory.cc +47 -0
  255. data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.cc +517 -0
  256. data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.h +223 -0
  257. data/src/core/lib/event_engine/thready_event_engine/thready_event_engine.cc +157 -0
  258. data/src/core/lib/event_engine/thready_event_engine/thready_event_engine.h +104 -0
  259. data/src/core/lib/event_engine/windows/iocp.cc +4 -3
  260. data/src/core/lib/event_engine/windows/iocp.h +3 -3
  261. data/src/core/lib/event_engine/windows/win_socket.cc +6 -6
  262. data/src/core/lib/event_engine/windows/win_socket.h +4 -4
  263. data/src/core/lib/event_engine/windows/windows_endpoint.cc +60 -59
  264. data/src/core/lib/event_engine/windows/windows_endpoint.h +17 -13
  265. data/src/core/lib/event_engine/windows/windows_engine.cc +21 -18
  266. data/src/core/lib/event_engine/windows/windows_engine.h +14 -18
  267. data/src/core/lib/event_engine/windows/windows_listener.cc +3 -3
  268. data/src/core/lib/event_engine/windows/windows_listener.h +3 -2
  269. data/src/core/lib/event_engine/work_queue/basic_work_queue.cc +63 -0
  270. data/src/core/lib/event_engine/work_queue/basic_work_queue.h +71 -0
  271. data/src/core/lib/event_engine/work_queue/work_queue.h +62 -0
  272. data/src/core/lib/experiments/config.cc +112 -29
  273. data/src/core/lib/experiments/config.h +33 -5
  274. data/src/core/lib/experiments/experiments.cc +226 -64
  275. data/src/core/lib/experiments/experiments.h +93 -30
  276. data/src/core/lib/gpr/log_internal.h +55 -0
  277. data/src/core/lib/gprpp/crash.cc +10 -0
  278. data/src/core/lib/gprpp/crash.h +3 -0
  279. data/src/core/lib/gprpp/dual_ref_counted.h +9 -9
  280. data/src/core/lib/gprpp/fork.cc +8 -9
  281. data/src/core/lib/gprpp/fork.h +6 -5
  282. data/src/core/lib/gprpp/if_list.h +4530 -0
  283. data/src/core/lib/gprpp/orphanable.h +3 -3
  284. data/src/core/lib/gprpp/per_cpu.cc +33 -0
  285. data/src/core/lib/gprpp/per_cpu.h +29 -6
  286. data/src/core/lib/gprpp/ref_counted.h +9 -7
  287. data/src/core/lib/gprpp/ref_counted_string.cc +44 -0
  288. data/src/core/lib/gprpp/ref_counted_string.h +146 -0
  289. data/src/core/lib/gprpp/sorted_pack.h +3 -12
  290. data/src/core/lib/gprpp/status_helper.h +16 -15
  291. data/src/core/lib/gprpp/time.cc +1 -0
  292. data/src/core/lib/gprpp/time.h +13 -1
  293. data/src/core/lib/gprpp/type_list.h +32 -0
  294. data/src/core/lib/gprpp/work_serializer.cc +36 -0
  295. data/src/core/lib/gprpp/work_serializer.h +5 -0
  296. data/src/core/lib/http/httpcli.h +6 -9
  297. data/src/core/lib/http/httpcli_security_connector.cc +1 -0
  298. data/src/core/lib/iomgr/buffer_list.cc +2 -0
  299. data/src/core/lib/iomgr/cfstream_handle.cc +1 -1
  300. data/src/core/lib/iomgr/endpoint_cfstream.cc +10 -8
  301. data/src/core/lib/iomgr/error.cc +32 -2
  302. data/src/core/lib/iomgr/error.h +9 -10
  303. data/src/core/lib/iomgr/ev_apple.cc +12 -12
  304. data/src/core/lib/iomgr/ev_epoll1_linux.cc +15 -10
  305. data/src/core/lib/iomgr/ev_poll_posix.cc +6 -5
  306. data/src/core/lib/iomgr/event_engine_shims/endpoint.cc +22 -23
  307. data/src/core/lib/iomgr/exec_ctx.h +11 -0
  308. data/src/core/lib/iomgr/iocp_windows.cc +24 -3
  309. data/src/core/lib/iomgr/iocp_windows.h +11 -0
  310. data/src/core/lib/iomgr/iomgr_posix_cfstream.cc +1 -1
  311. data/src/core/lib/iomgr/pollset.h +4 -5
  312. data/src/core/lib/iomgr/port.h +10 -0
  313. data/src/core/lib/iomgr/resolve_address.cc +13 -1
  314. data/src/core/lib/iomgr/resolve_address.h +17 -3
  315. data/src/core/lib/iomgr/sockaddr_posix.h +7 -0
  316. data/src/core/lib/iomgr/socket_utils_common_posix.cc +33 -2
  317. data/src/core/lib/iomgr/socket_utils_posix.cc +2 -0
  318. data/src/core/lib/iomgr/socket_utils_posix.h +6 -0
  319. data/src/core/lib/iomgr/socket_windows.cc +61 -7
  320. data/src/core/lib/iomgr/socket_windows.h +9 -2
  321. data/src/core/lib/iomgr/tcp_client_cfstream.cc +14 -3
  322. data/src/core/lib/iomgr/tcp_client_posix.cc +4 -1
  323. data/src/core/lib/iomgr/tcp_posix.cc +24 -7
  324. data/src/core/lib/iomgr/tcp_server_posix.cc +184 -120
  325. data/src/core/lib/iomgr/tcp_server_utils_posix.h +13 -1
  326. data/src/core/lib/iomgr/tcp_server_utils_posix_common.cc +26 -2
  327. data/src/core/lib/iomgr/tcp_server_windows.cc +1 -1
  328. data/src/core/lib/iomgr/tcp_windows.cc +1 -3
  329. data/src/core/lib/iomgr/vsock.cc +59 -0
  330. data/src/core/lib/iomgr/vsock.h +38 -0
  331. data/src/core/lib/iomgr/wakeup_fd_posix.h +3 -6
  332. data/src/core/lib/json/json.h +2 -166
  333. data/src/core/lib/json/json_object_loader.cc +8 -9
  334. data/src/core/lib/json/json_object_loader.h +25 -18
  335. data/src/core/lib/json/json_reader.cc +13 -6
  336. data/src/core/lib/json/json_util.cc +6 -11
  337. data/src/core/lib/json/json_writer.cc +7 -8
  338. data/src/core/lib/load_balancing/delegating_helper.h +115 -0
  339. data/src/core/lib/load_balancing/lb_policy.h +33 -0
  340. data/src/core/lib/load_balancing/lb_policy_registry.cc +2 -1
  341. data/src/core/lib/load_balancing/subchannel_interface.h +6 -0
  342. data/src/core/lib/matchers/matchers.cc +3 -4
  343. data/src/core/lib/matchers/matchers.h +2 -1
  344. data/src/core/lib/promise/activity.cc +5 -0
  345. data/src/core/lib/promise/activity.h +10 -0
  346. data/src/core/lib/promise/detail/basic_seq.h +1 -372
  347. data/src/core/lib/promise/detail/promise_factory.h +1 -1
  348. data/src/core/lib/promise/detail/seq_state.h +2076 -0
  349. data/src/core/lib/promise/party.cc +31 -13
  350. data/src/core/lib/promise/party.h +12 -3
  351. data/src/core/lib/promise/pipe.h +9 -2
  352. data/src/core/lib/promise/prioritized_race.h +95 -0
  353. data/src/core/lib/promise/seq.h +19 -2
  354. data/src/core/lib/promise/sleep.cc +2 -1
  355. data/src/core/lib/promise/sleep.h +5 -10
  356. data/src/core/lib/promise/try_seq.h +34 -2
  357. data/src/core/lib/resolver/resolver_factory.h +3 -2
  358. data/src/core/lib/resolver/server_address.cc +9 -102
  359. data/src/core/lib/resolver/server_address.h +10 -70
  360. data/src/core/lib/resource_quota/api.cc +1 -0
  361. data/src/core/lib/resource_quota/arena.cc +2 -0
  362. data/src/core/lib/resource_quota/arena.h +42 -8
  363. data/src/core/lib/resource_quota/memory_quota.cc +7 -8
  364. data/src/core/lib/resource_quota/memory_quota.h +2 -3
  365. data/src/core/lib/resource_quota/resource_quota.h +1 -0
  366. data/src/core/lib/security/authorization/audit_logging.cc +98 -0
  367. data/src/core/lib/security/authorization/audit_logging.h +73 -0
  368. data/src/core/lib/security/authorization/authorization_policy_provider.h +1 -1
  369. data/src/core/lib/security/authorization/grpc_authorization_engine.cc +47 -2
  370. data/src/core/lib/security/authorization/grpc_authorization_engine.h +18 -1
  371. data/src/core/lib/security/authorization/rbac_policy.cc +36 -4
  372. data/src/core/lib/security/authorization/rbac_policy.h +19 -2
  373. data/src/core/lib/security/authorization/stdout_logger.cc +75 -0
  374. data/src/core/lib/security/authorization/stdout_logger.h +61 -0
  375. data/src/core/lib/security/certificate_provider/certificate_provider_factory.h +8 -4
  376. data/src/core/lib/security/certificate_provider/certificate_provider_registry.cc +8 -18
  377. data/src/core/lib/security/certificate_provider/certificate_provider_registry.h +14 -8
  378. data/src/core/lib/security/credentials/channel_creds_registry.h +51 -27
  379. data/src/core/lib/security/credentials/channel_creds_registry_init.cc +169 -9
  380. data/src/core/lib/security/credentials/composite/composite_credentials.cc +1 -1
  381. data/src/core/lib/security/credentials/composite/composite_credentials.h +3 -1
  382. data/src/core/lib/security/credentials/external/aws_external_account_credentials.cc +19 -12
  383. data/src/core/lib/security/credentials/external/aws_request_signer.cc +8 -0
  384. data/src/core/lib/security/credentials/external/external_account_credentials.cc +44 -3
  385. data/src/core/lib/security/credentials/external/external_account_credentials.h +6 -0
  386. data/src/core/lib/security/credentials/external/file_external_account_credentials.cc +1 -0
  387. data/src/core/lib/security/credentials/external/url_external_account_credentials.cc +1 -0
  388. data/src/core/lib/security/credentials/fake/fake_credentials.cc +30 -38
  389. data/src/core/lib/security/credentials/fake/fake_credentials.h +28 -0
  390. data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +2 -0
  391. data/src/core/lib/security/credentials/jwt/json_token.cc +32 -14
  392. data/src/core/lib/security/credentials/jwt/json_token.h +4 -0
  393. data/src/core/lib/security/credentials/jwt/jwt_credentials.cc +4 -2
  394. data/src/core/lib/security/credentials/jwt/jwt_verifier.cc +43 -0
  395. data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +1 -0
  396. data/src/core/lib/security/credentials/ssl/ssl_credentials.cc +1 -0
  397. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.cc +4 -0
  398. data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc +8 -0
  399. data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h +5 -1
  400. data/src/core/lib/security/credentials/tls/tls_credentials.cc +2 -1
  401. data/src/core/lib/security/credentials/tls/tls_credentials.h +3 -1
  402. data/src/core/lib/security/credentials/xds/xds_credentials.cc +1 -0
  403. data/src/core/lib/security/security_connector/alts/alts_security_connector.cc +2 -5
  404. data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +1 -0
  405. data/src/core/lib/security/security_connector/ssl_utils.cc +3 -1
  406. data/src/core/lib/security/security_connector/ssl_utils.h +1 -1
  407. data/src/core/lib/security/security_connector/tls/tls_security_connector.cc +1 -1
  408. data/src/core/lib/security/transport/client_auth_filter.cc +8 -5
  409. data/src/core/lib/security/transport/security_handshaker.cc +1 -0
  410. data/src/core/lib/security/transport/server_auth_filter.cc +2 -0
  411. data/src/core/lib/security/util/json_util.cc +1 -0
  412. data/src/core/lib/service_config/service_config_call_data.h +54 -20
  413. data/src/core/lib/service_config/service_config_impl.cc +2 -1
  414. data/src/core/lib/slice/slice.h +16 -0
  415. data/src/core/lib/surface/call.cc +100 -59
  416. data/src/core/lib/surface/channel.cc +1 -0
  417. data/src/core/lib/surface/completion_queue.cc +16 -2
  418. data/src/core/lib/surface/init.cc +1 -0
  419. data/src/core/lib/surface/server.cc +67 -64
  420. data/src/core/lib/surface/server.h +1 -15
  421. data/src/core/lib/surface/validate_metadata.cc +37 -22
  422. data/src/core/lib/surface/validate_metadata.h +13 -3
  423. data/src/core/lib/surface/version.cc +2 -2
  424. data/src/core/lib/transport/batch_builder.cc +15 -12
  425. data/src/core/lib/transport/batch_builder.h +39 -35
  426. data/src/core/lib/transport/metadata_batch.cc +7 -7
  427. data/src/core/lib/transport/metadata_batch.h +86 -48
  428. data/src/core/lib/transport/parsed_metadata.h +34 -20
  429. data/src/core/lib/transport/simple_slice_based_metadata.h +9 -2
  430. data/src/core/plugin_registry/grpc_plugin_registry.cc +0 -2
  431. data/src/core/plugin_registry/grpc_plugin_registry_extra.cc +2 -0
  432. data/src/core/tsi/alts/crypt/aes_gcm.cc +27 -2
  433. data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.cc +4 -6
  434. data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc +1 -2
  435. data/src/core/tsi/ssl_transport_security.cc +44 -9
  436. data/src/core/tsi/ssl_transport_security.h +13 -1
  437. data/src/ruby/bin/math_pb.rb +24 -18
  438. data/src/ruby/ext/grpc/extconf.rb +27 -27
  439. data/src/ruby/ext/grpc/rb_call.c +62 -39
  440. data/src/ruby/ext/grpc/rb_call_credentials.c +0 -1
  441. data/src/ruby/ext/grpc/rb_channel.c +109 -84
  442. data/src/ruby/ext/grpc/rb_channel.h +1 -0
  443. data/src/ruby/ext/grpc/rb_channel_args.c +16 -2
  444. data/src/ruby/ext/grpc/rb_channel_args.h +4 -0
  445. data/src/ruby/ext/grpc/rb_channel_credentials.c +0 -1
  446. data/src/ruby/ext/grpc/rb_compression_options.c +0 -1
  447. data/src/ruby/ext/grpc/rb_event_thread.c +22 -6
  448. data/src/ruby/ext/grpc/rb_event_thread.h +1 -0
  449. data/src/ruby/ext/grpc/rb_grpc.c +192 -30
  450. data/src/ruby/ext/grpc/rb_grpc.h +8 -2
  451. data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +2 -0
  452. data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +3 -0
  453. data/src/ruby/ext/grpc/rb_server.c +62 -45
  454. data/src/ruby/ext/grpc/rb_server_credentials.c +0 -1
  455. data/src/ruby/ext/grpc/rb_xds_channel_credentials.c +0 -1
  456. data/src/ruby/ext/grpc/rb_xds_server_credentials.c +0 -1
  457. data/src/ruby/lib/grpc/generic/active_call.rb +9 -14
  458. data/src/ruby/lib/grpc/generic/bidi_call.rb +2 -0
  459. data/src/ruby/lib/grpc/version.rb +1 -1
  460. data/src/ruby/pb/grpc/health/v1/health_pb.rb +24 -13
  461. data/src/ruby/pb/src/proto/grpc/testing/empty_pb.rb +24 -3
  462. data/src/ruby/pb/src/proto/grpc/testing/messages_pb.rb +25 -111
  463. data/src/ruby/pb/src/proto/grpc/testing/test_pb.rb +25 -2
  464. data/src/ruby/pb/test/client.rb +16 -0
  465. data/src/ruby/spec/generic/rpc_server_spec.rb +3 -3
  466. data/third_party/abseil-cpp/absl/algorithm/container.h +3 -2
  467. data/third_party/abseil-cpp/absl/base/attributes.h +58 -5
  468. data/third_party/abseil-cpp/absl/base/call_once.h +1 -1
  469. data/third_party/abseil-cpp/absl/base/casts.h +8 -8
  470. data/third_party/abseil-cpp/absl/base/config.h +89 -106
  471. data/third_party/abseil-cpp/absl/base/dynamic_annotations.h +26 -1
  472. data/third_party/abseil-cpp/absl/base/internal/direct_mmap.h +2 -2
  473. data/third_party/abseil-cpp/absl/base/internal/low_level_alloc.cc +50 -39
  474. data/third_party/abseil-cpp/absl/base/internal/low_level_alloc.h +2 -1
  475. data/third_party/abseil-cpp/absl/base/internal/prefetch.h +17 -18
  476. data/third_party/abseil-cpp/absl/base/internal/raw_logging.cc +32 -3
  477. data/third_party/abseil-cpp/absl/base/internal/raw_logging.h +24 -4
  478. data/third_party/abseil-cpp/absl/base/internal/sysinfo.cc +31 -73
  479. data/third_party/abseil-cpp/absl/base/internal/thread_identity.cc +9 -8
  480. data/third_party/abseil-cpp/absl/base/internal/thread_identity.h +11 -11
  481. data/third_party/abseil-cpp/absl/base/internal/throw_delegate.cc +23 -32
  482. data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.cc +2 -3
  483. data/third_party/abseil-cpp/absl/base/options.h +1 -1
  484. data/third_party/abseil-cpp/absl/base/policy_checks.h +3 -3
  485. data/third_party/abseil-cpp/absl/base/prefetch.h +198 -0
  486. data/third_party/abseil-cpp/absl/container/fixed_array.h +54 -29
  487. data/third_party/abseil-cpp/absl/container/flat_hash_map.h +5 -1
  488. data/third_party/abseil-cpp/absl/container/flat_hash_set.h +6 -2
  489. data/third_party/abseil-cpp/absl/container/inlined_vector.h +167 -79
  490. data/third_party/abseil-cpp/absl/container/internal/common_policy_traits.h +1 -1
  491. data/third_party/abseil-cpp/absl/container/internal/compressed_tuple.h +3 -21
  492. data/third_party/abseil-cpp/absl/container/internal/container_memory.h +1 -1
  493. data/third_party/abseil-cpp/absl/container/internal/hash_function_defaults.h +46 -0
  494. data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.cc +2 -0
  495. data/third_party/abseil-cpp/absl/container/internal/inlined_vector.h +85 -26
  496. data/third_party/abseil-cpp/absl/container/internal/raw_hash_map.h +35 -18
  497. data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.cc +70 -29
  498. data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.h +437 -236
  499. data/third_party/abseil-cpp/absl/crc/crc32c.h +8 -1
  500. data/third_party/abseil-cpp/absl/crc/internal/cpu_detect.cc +14 -8
  501. data/third_party/abseil-cpp/absl/crc/internal/crc.cc +4 -35
  502. data/third_party/abseil-cpp/absl/crc/internal/crc.h +2 -10
  503. data/third_party/abseil-cpp/absl/crc/internal/crc32_x86_arm_combined_simd.h +1 -1
  504. data/third_party/abseil-cpp/absl/crc/internal/crc_cord_state.cc +1 -1
  505. data/third_party/abseil-cpp/absl/crc/internal/crc_cord_state.h +4 -4
  506. data/third_party/abseil-cpp/absl/crc/internal/crc_internal.h +8 -10
  507. data/third_party/abseil-cpp/absl/crc/internal/crc_memcpy_x86_64.cc +17 -19
  508. data/third_party/abseil-cpp/absl/crc/internal/crc_x86_arm_combined.cc +8 -8
  509. data/third_party/abseil-cpp/absl/debugging/internal/elf_mem_image.h +2 -1
  510. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_aarch64-inl.inc +59 -23
  511. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_powerpc-inl.inc +1 -1
  512. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_x86-inl.inc +1 -1
  513. data/third_party/abseil-cpp/absl/debugging/internal/symbolize.h +1 -1
  514. data/third_party/abseil-cpp/absl/debugging/symbolize_elf.inc +43 -19
  515. data/third_party/abseil-cpp/absl/debugging/symbolize_emscripten.inc +3 -0
  516. data/third_party/abseil-cpp/absl/flags/commandlineflag.h +1 -1
  517. data/third_party/abseil-cpp/absl/flags/internal/commandlineflag.cc +1 -1
  518. data/third_party/abseil-cpp/absl/flags/internal/flag.cc +2 -2
  519. data/third_party/abseil-cpp/absl/flags/internal/flag.h +16 -15
  520. data/third_party/abseil-cpp/absl/flags/internal/flag_msvc.inc +1 -1
  521. data/third_party/abseil-cpp/absl/flags/marshalling.cc +43 -2
  522. data/third_party/abseil-cpp/absl/flags/marshalling.h +5 -0
  523. data/third_party/abseil-cpp/absl/functional/any_invocable.h +9 -1
  524. data/third_party/abseil-cpp/absl/functional/bind_front.h +1 -1
  525. data/third_party/abseil-cpp/absl/functional/function_ref.h +3 -3
  526. data/third_party/abseil-cpp/absl/functional/internal/any_invocable.h +37 -24
  527. data/third_party/abseil-cpp/absl/functional/internal/function_ref.h +19 -9
  528. data/third_party/abseil-cpp/absl/hash/hash.h +7 -4
  529. data/third_party/abseil-cpp/absl/hash/internal/hash.h +38 -15
  530. data/third_party/abseil-cpp/absl/hash/internal/low_level_hash.cc +6 -0
  531. data/third_party/abseil-cpp/absl/meta/type_traits.h +48 -373
  532. data/third_party/abseil-cpp/absl/numeric/bits.h +4 -4
  533. data/third_party/abseil-cpp/absl/numeric/int128.cc +20 -8
  534. data/third_party/abseil-cpp/absl/numeric/int128.h +36 -39
  535. data/third_party/abseil-cpp/absl/numeric/int128_have_intrinsic.inc +0 -3
  536. data/third_party/abseil-cpp/absl/numeric/int128_no_intrinsic.inc +47 -30
  537. data/third_party/abseil-cpp/absl/random/internal/fast_uniform_bits.h +4 -3
  538. data/third_party/abseil-cpp/absl/random/internal/generate_real.h +1 -1
  539. data/third_party/abseil-cpp/absl/random/internal/platform.h +1 -1
  540. data/third_party/abseil-cpp/absl/random/internal/randen_detect.cc +4 -0
  541. data/third_party/abseil-cpp/absl/random/internal/randen_engine.h +1 -1
  542. data/third_party/abseil-cpp/absl/random/internal/randen_hwaes.cc +1 -1
  543. data/third_party/abseil-cpp/absl/random/internal/uniform_helper.h +1 -1
  544. data/third_party/abseil-cpp/absl/status/internal/status_internal.h +4 -0
  545. data/third_party/abseil-cpp/absl/status/internal/statusor_internal.h +12 -24
  546. data/third_party/abseil-cpp/absl/status/status.cc +11 -7
  547. data/third_party/abseil-cpp/absl/status/status.h +11 -2
  548. data/third_party/abseil-cpp/absl/status/statusor.h +22 -8
  549. data/third_party/abseil-cpp/absl/strings/ascii.cc +54 -6
  550. data/third_party/abseil-cpp/absl/strings/charconv.cc +21 -4
  551. data/third_party/abseil-cpp/absl/strings/charconv.h +2 -2
  552. data/third_party/abseil-cpp/absl/strings/cord.cc +1 -2
  553. data/third_party/abseil-cpp/absl/strings/cord.h +32 -5
  554. data/third_party/abseil-cpp/absl/strings/cord_analysis.cc +23 -1
  555. data/third_party/abseil-cpp/absl/strings/cord_analysis.h +18 -0
  556. data/third_party/abseil-cpp/absl/strings/cord_buffer.h +2 -5
  557. data/third_party/abseil-cpp/absl/strings/escaping.cc +10 -32
  558. data/third_party/abseil-cpp/absl/strings/escaping.h +1 -1
  559. data/third_party/abseil-cpp/absl/strings/internal/charconv_bigint.cc +2 -4
  560. data/third_party/abseil-cpp/absl/strings/internal/charconv_bigint.h +3 -3
  561. data/third_party/abseil-cpp/absl/strings/internal/cord_internal.cc +0 -1
  562. data/third_party/abseil-cpp/absl/strings/internal/cord_internal.h +15 -13
  563. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree.cc +13 -4
  564. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree.h +8 -0
  565. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_consume.cc +5 -3
  566. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_consume.h +4 -7
  567. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_flat.h +8 -0
  568. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_ring.h +2 -2
  569. data/third_party/abseil-cpp/absl/strings/internal/cordz_handle.cc +46 -20
  570. data/third_party/abseil-cpp/absl/strings/internal/cordz_handle.h +1 -34
  571. data/third_party/abseil-cpp/absl/strings/internal/cordz_info.cc +2 -1
  572. data/third_party/abseil-cpp/absl/strings/internal/escaping.cc +23 -0
  573. data/third_party/abseil-cpp/absl/strings/internal/escaping.h +1 -0
  574. data/third_party/abseil-cpp/absl/strings/internal/memutil.cc +2 -77
  575. data/third_party/abseil-cpp/absl/strings/internal/memutil.h +4 -112
  576. data/third_party/abseil-cpp/absl/strings/internal/stl_type_traits.h +1 -1
  577. data/third_party/abseil-cpp/absl/strings/internal/str_format/arg.cc +10 -31
  578. data/third_party/abseil-cpp/absl/strings/internal/str_format/arg.h +8 -8
  579. data/third_party/abseil-cpp/absl/strings/internal/str_format/bind.h +5 -20
  580. data/third_party/abseil-cpp/absl/strings/internal/str_format/constexpr_parser.h +1 -0
  581. data/third_party/abseil-cpp/absl/strings/internal/str_format/extension.h +1 -1
  582. data/third_party/abseil-cpp/absl/strings/internal/str_format/float_conversion.cc +9 -9
  583. data/third_party/abseil-cpp/absl/strings/internal/str_split_internal.h +56 -6
  584. data/third_party/abseil-cpp/absl/strings/match.cc +87 -0
  585. data/third_party/abseil-cpp/absl/strings/match.h +19 -0
  586. data/third_party/abseil-cpp/absl/strings/numbers.cc +154 -122
  587. data/third_party/abseil-cpp/absl/strings/numbers.h +1 -6
  588. data/third_party/abseil-cpp/absl/strings/str_cat.cc +7 -50
  589. data/third_party/abseil-cpp/absl/strings/str_cat.h +83 -15
  590. data/third_party/abseil-cpp/absl/strings/str_format.h +6 -3
  591. data/third_party/abseil-cpp/absl/strings/str_split.cc +9 -6
  592. data/third_party/abseil-cpp/absl/strings/string_view.cc +26 -4
  593. data/third_party/abseil-cpp/absl/synchronization/internal/create_thread_identity.cc +5 -0
  594. data/third_party/abseil-cpp/absl/synchronization/internal/futex.h +63 -43
  595. data/third_party/abseil-cpp/absl/synchronization/internal/futex_waiter.cc +111 -0
  596. data/third_party/abseil-cpp/absl/synchronization/internal/futex_waiter.h +63 -0
  597. data/third_party/abseil-cpp/absl/synchronization/internal/graphcycles.cc +11 -7
  598. data/third_party/abseil-cpp/absl/synchronization/internal/kernel_timeout.cc +225 -0
  599. data/third_party/abseil-cpp/absl/synchronization/internal/kernel_timeout.h +122 -114
  600. data/third_party/abseil-cpp/absl/synchronization/internal/per_thread_sem.cc +12 -8
  601. data/third_party/abseil-cpp/absl/synchronization/internal/per_thread_sem.h +10 -1
  602. data/third_party/abseil-cpp/absl/synchronization/internal/pthread_waiter.cc +167 -0
  603. data/third_party/abseil-cpp/absl/synchronization/internal/pthread_waiter.h +60 -0
  604. data/third_party/abseil-cpp/absl/synchronization/internal/sem_waiter.cc +122 -0
  605. data/third_party/abseil-cpp/absl/synchronization/internal/sem_waiter.h +65 -0
  606. data/third_party/abseil-cpp/absl/synchronization/internal/stdcpp_waiter.cc +91 -0
  607. data/third_party/abseil-cpp/absl/synchronization/internal/stdcpp_waiter.h +56 -0
  608. data/third_party/abseil-cpp/absl/synchronization/internal/waiter.h +19 -113
  609. data/third_party/abseil-cpp/absl/synchronization/internal/waiter_base.cc +42 -0
  610. data/third_party/abseil-cpp/absl/synchronization/internal/waiter_base.h +90 -0
  611. data/third_party/abseil-cpp/absl/synchronization/internal/win32_waiter.cc +151 -0
  612. data/third_party/abseil-cpp/absl/synchronization/internal/win32_waiter.h +70 -0
  613. data/third_party/abseil-cpp/absl/synchronization/mutex.cc +407 -411
  614. data/third_party/abseil-cpp/absl/synchronization/mutex.h +152 -118
  615. data/third_party/abseil-cpp/absl/time/clock.cc +6 -7
  616. data/third_party/abseil-cpp/absl/time/duration.cc +24 -26
  617. data/third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/time_zone.h +1 -0
  618. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_fixed.cc +1 -1
  619. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_format.cc +3 -3
  620. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_if.cc +8 -6
  621. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_if.h +6 -3
  622. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_impl.cc +4 -2
  623. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_impl.h +4 -0
  624. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_info.cc +322 -295
  625. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_info.h +8 -17
  626. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.cc +51 -33
  627. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.h +7 -2
  628. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_lookup.cc +128 -2
  629. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_posix.h +1 -1
  630. data/third_party/abseil-cpp/absl/time/internal/cctz/src/tzfile.h +5 -1
  631. data/third_party/abseil-cpp/absl/time/internal/cctz/src/zone_info_source.cc +34 -34
  632. data/third_party/abseil-cpp/absl/time/time.cc +9 -2
  633. data/third_party/abseil-cpp/absl/time/time.h +115 -15
  634. data/third_party/abseil-cpp/absl/types/internal/optional.h +0 -52
  635. data/third_party/abseil-cpp/absl/types/internal/span.h +2 -2
  636. data/third_party/abseil-cpp/absl/types/internal/variant.h +2 -2
  637. data/third_party/abseil-cpp/absl/types/optional.h +15 -13
  638. data/third_party/abseil-cpp/absl/types/span.h +1 -2
  639. data/third_party/boringssl-with-bazel/err_data.c +554 -553
  640. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_gentm.c +7 -3
  641. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_mbstr.c +9 -8
  642. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_strex.c +7 -7
  643. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_strnid.c +6 -6
  644. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_time.c +34 -1
  645. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_utctm.c +11 -4
  646. data/third_party/boringssl-with-bazel/src/crypto/asn1/internal.h +3 -3
  647. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_dec.c +10 -6
  648. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_enc.c +7 -4
  649. data/third_party/boringssl-with-bazel/src/crypto/bio/bio.c +9 -7
  650. data/third_party/boringssl-with-bazel/src/crypto/bio/bio_mem.c +7 -8
  651. data/third_party/boringssl-with-bazel/src/crypto/bio/connect.c +7 -7
  652. data/third_party/boringssl-with-bazel/src/crypto/bio/errno.c +92 -0
  653. data/third_party/boringssl-with-bazel/src/crypto/bio/fd.c +7 -50
  654. data/third_party/boringssl-with-bazel/src/crypto/bio/file.c +23 -22
  655. data/third_party/boringssl-with-bazel/src/crypto/bio/internal.h +16 -6
  656. data/third_party/boringssl-with-bazel/src/crypto/bio/pair.c +4 -2
  657. data/third_party/boringssl-with-bazel/src/crypto/bio/socket.c +4 -4
  658. data/third_party/boringssl-with-bazel/src/crypto/bio/socket_helper.c +11 -2
  659. data/third_party/boringssl-with-bazel/src/crypto/blake2/blake2.c +31 -22
  660. data/third_party/boringssl-with-bazel/src/crypto/bytestring/cbs.c +1 -1
  661. data/third_party/boringssl-with-bazel/src/crypto/chacha/chacha.c +19 -1
  662. data/third_party/boringssl-with-bazel/src/crypto/chacha/internal.h +8 -1
  663. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_tls.c +29 -26
  664. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/internal.h +8 -0
  665. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/tls_cbc.c +189 -13
  666. data/third_party/boringssl-with-bazel/src/crypto/conf/conf.c +31 -192
  667. data/third_party/boringssl-with-bazel/src/crypto/conf/conf_def.h +3 -7
  668. data/third_party/boringssl-with-bazel/src/crypto/conf/internal.h +8 -0
  669. data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_apple.c +3 -2
  670. data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_fuchsia.c +0 -1
  671. data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_linux.c +0 -2
  672. data/third_party/boringssl-with-bazel/src/crypto/{cpu_aarch64_freebsd.c → cpu_aarch64_openbsd.c} +23 -24
  673. data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_sysreg.c +93 -0
  674. data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_win.c +1 -1
  675. data/third_party/boringssl-with-bazel/src/crypto/cpu_arm_freebsd.c +0 -1
  676. data/third_party/boringssl-with-bazel/src/crypto/cpu_arm_linux.c +0 -2
  677. data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519.c +55 -50
  678. data/third_party/boringssl-with-bazel/src/crypto/{cpu_arm.c → curve25519/curve25519_64_adx.c} +4 -24
  679. data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519_tables.h +2834 -7442
  680. data/third_party/boringssl-with-bazel/src/crypto/curve25519/internal.h +26 -8
  681. data/third_party/boringssl-with-bazel/src/crypto/dh_extra/dh_asn1.c +4 -0
  682. data/third_party/boringssl-with-bazel/src/crypto/dh_extra/params.c +5 -0
  683. data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa.c +4 -0
  684. data/third_party/boringssl-with-bazel/src/crypto/dsa/internal.h +20 -0
  685. data/third_party/boringssl-with-bazel/src/crypto/ec_extra/ec_asn1.c +110 -72
  686. data/third_party/boringssl-with-bazel/src/crypto/ec_extra/ec_derive.c +4 -3
  687. data/third_party/boringssl-with-bazel/src/crypto/ec_extra/hash_to_curve.c +42 -34
  688. data/third_party/boringssl-with-bazel/src/crypto/ec_extra/internal.h +17 -11
  689. data/third_party/boringssl-with-bazel/src/crypto/ecdh_extra/ecdh_extra.c +1 -1
  690. data/third_party/boringssl-with-bazel/src/crypto/err/err.c +23 -21
  691. data/third_party/boringssl-with-bazel/src/crypto/evp/evp.c +35 -12
  692. data/third_party/boringssl-with-bazel/src/crypto/evp/p_ec.c +2 -4
  693. data/third_party/boringssl-with-bazel/src/crypto/evp/p_ec_asn1.c +3 -7
  694. data/third_party/boringssl-with-bazel/src/crypto/evp/p_rsa.c +1 -1
  695. data/third_party/boringssl-with-bazel/src/crypto/evp/pbkdf.c +3 -3
  696. data/third_party/boringssl-with-bazel/src/crypto/evp/print.c +7 -6
  697. data/third_party/boringssl-with-bazel/src/crypto/ex_data.c +34 -72
  698. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm.c +2 -1
  699. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div.c +12 -5
  700. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/gcd.c +5 -6
  701. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/internal.h +12 -6
  702. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery.c +17 -18
  703. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery_inv.c +51 -15
  704. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/rsaz_exp.c +7 -7
  705. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/delocate.h +5 -6
  706. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/check.c +37 -8
  707. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/dh.c +41 -19
  708. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/internal.h +9 -0
  709. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/builtin_curves.h +277 -0
  710. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec.c +204 -428
  711. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_key.c +4 -4
  712. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_montgomery.c +31 -64
  713. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/felem.c +17 -13
  714. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/internal.h +105 -143
  715. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/oct.c +19 -19
  716. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p224-64.c +16 -18
  717. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-nistz.c +27 -30
  718. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256.c +23 -26
  719. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256_table.h +1 -1
  720. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/scalar.c +24 -24
  721. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/simple.c +21 -37
  722. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/simple_mul.c +31 -31
  723. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/wnaf.c +16 -16
  724. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdh/ecdh.c +1 -1
  725. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/ecdsa.c +11 -5
  726. data/third_party/boringssl-with-bazel/src/crypto/{hkdf → fipsmodule/hkdf}/hkdf.c +2 -2
  727. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/cbc.c +2 -10
  728. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/ctr.c +1 -4
  729. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/gcm.c +115 -133
  730. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/gcm_nohw.c +12 -14
  731. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/internal.h +57 -47
  732. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/ofb.c +1 -8
  733. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/polyval.c +27 -28
  734. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/fork_detect.c +40 -26
  735. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/internal.h +21 -7
  736. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/rand.c +38 -19
  737. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/urandom.c +2 -41
  738. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/internal.h +76 -16
  739. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/padding.c +5 -288
  740. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa.c +143 -83
  741. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa_impl.c +126 -233
  742. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/self_check.c +113 -24
  743. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/service_indicator/service_indicator.c +4 -7
  744. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/tls/internal.h +8 -0
  745. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/tls/kdf.c +33 -0
  746. data/third_party/boringssl-with-bazel/src/crypto/hpke/hpke.c +169 -6
  747. data/third_party/boringssl-with-bazel/src/crypto/internal.h +216 -87
  748. data/third_party/boringssl-with-bazel/src/crypto/kyber/kyber.c +23 -15
  749. data/third_party/boringssl-with-bazel/src/crypto/mem.c +7 -8
  750. data/third_party/boringssl-with-bazel/src/crypto/obj/obj.c +25 -46
  751. data/third_party/boringssl-with-bazel/src/crypto/obj/obj_dat.h +6 -13
  752. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_lib.c +18 -14
  753. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/internal.h +3 -3
  754. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/p5_pbev2.c +3 -3
  755. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8.c +7 -7
  756. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8_x509.c +8 -5
  757. data/third_party/boringssl-with-bazel/src/crypto/pool/internal.h +1 -0
  758. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/deterministic.c +7 -6
  759. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/forkunsafe.c +6 -12
  760. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/getentropy.c +52 -0
  761. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/{fuchsia.c → ios.c} +8 -8
  762. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/trusty.c +38 -0
  763. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/windows.c +41 -19
  764. data/third_party/boringssl-with-bazel/src/crypto/{refcount_c11.c → refcount.c} +11 -17
  765. data/third_party/boringssl-with-bazel/src/crypto/rsa_extra/internal.h +77 -0
  766. data/third_party/boringssl-with-bazel/src/crypto/rsa_extra/rsa_crypt.c +568 -0
  767. data/third_party/boringssl-with-bazel/src/crypto/stack/stack.c +152 -72
  768. data/third_party/boringssl-with-bazel/src/crypto/thread_none.c +0 -8
  769. data/third_party/boringssl-with-bazel/src/crypto/thread_pthread.c +6 -35
  770. data/third_party/boringssl-with-bazel/src/crypto/thread_win.c +5 -26
  771. data/third_party/boringssl-with-bazel/src/crypto/trust_token/internal.h +62 -0
  772. data/third_party/boringssl-with-bazel/src/crypto/trust_token/pmbtoken.c +230 -60
  773. data/third_party/boringssl-with-bazel/src/crypto/trust_token/trust_token.c +35 -0
  774. data/third_party/boringssl-with-bazel/src/crypto/trust_token/voprf.c +580 -120
  775. data/third_party/boringssl-with-bazel/src/crypto/x509/a_sign.c +27 -18
  776. data/third_party/boringssl-with-bazel/src/crypto/x509/asn1_gen.c +1 -1
  777. data/third_party/boringssl-with-bazel/src/crypto/x509/by_dir.c +8 -19
  778. data/third_party/boringssl-with-bazel/src/crypto/x509/by_file.c +0 -3
  779. data/third_party/boringssl-with-bazel/src/crypto/x509/internal.h +1 -1
  780. data/third_party/boringssl-with-bazel/src/crypto/x509/name_print.c +17 -39
  781. data/third_party/boringssl-with-bazel/src/crypto/x509/t_x509.c +39 -48
  782. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_att.c +1 -141
  783. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_d2.c +1 -3
  784. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_lu.c +2 -4
  785. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_req.c +72 -23
  786. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_trs.c +1 -1
  787. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_v3.c +8 -12
  788. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vfy.c +19 -20
  789. data/third_party/boringssl-with-bazel/src/crypto/x509/x509name.c +22 -29
  790. data/third_party/boringssl-with-bazel/src/crypto/x509/x509spki.c +1 -1
  791. data/third_party/boringssl-with-bazel/src/crypto/x509/x_crl.c +5 -5
  792. data/third_party/boringssl-with-bazel/src/crypto/x509/x_name.c +1 -1
  793. data/third_party/boringssl-with-bazel/src/crypto/x509/x_pubkey.c +7 -7
  794. data/third_party/boringssl-with-bazel/src/crypto/x509/x_x509a.c +2 -2
  795. data/third_party/boringssl-with-bazel/src/crypto/x509v3/internal.h +1 -1
  796. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_alt.c +2 -3
  797. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_conf.c +33 -46
  798. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_cpols.c +1 -0
  799. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_info.c +3 -5
  800. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_lib.c +16 -49
  801. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_prn.c +14 -26
  802. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_purp.c +4 -6
  803. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_skey.c +17 -10
  804. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_utl.c +1 -1
  805. data/third_party/boringssl-with-bazel/src/include/openssl/aead.h +5 -7
  806. data/third_party/boringssl-with-bazel/src/include/openssl/arm_arch.h +4 -119
  807. data/third_party/boringssl-with-bazel/src/include/openssl/asm_base.h +207 -0
  808. data/third_party/boringssl-with-bazel/src/include/openssl/asn1.h +11 -4
  809. data/third_party/boringssl-with-bazel/src/include/openssl/base.h +37 -112
  810. data/third_party/boringssl-with-bazel/src/include/openssl/bio.h +11 -5
  811. data/third_party/boringssl-with-bazel/src/include/openssl/blake2.h +1 -4
  812. data/third_party/boringssl-with-bazel/src/include/openssl/bn.h +0 -2
  813. data/third_party/boringssl-with-bazel/src/include/openssl/chacha.h +6 -0
  814. data/third_party/boringssl-with-bazel/src/include/openssl/conf.h +5 -1
  815. data/third_party/boringssl-with-bazel/src/include/openssl/dh.h +4 -1
  816. data/third_party/boringssl-with-bazel/src/include/openssl/dsa.h +0 -21
  817. data/third_party/boringssl-with-bazel/src/include/openssl/ec.h +28 -11
  818. data/third_party/boringssl-with-bazel/src/include/openssl/ec_key.h +19 -6
  819. data/third_party/boringssl-with-bazel/src/include/openssl/evp.h +14 -10
  820. data/third_party/boringssl-with-bazel/src/include/openssl/hpke.h +34 -2
  821. data/third_party/boringssl-with-bazel/src/include/openssl/nid.h +2 -11
  822. data/third_party/boringssl-with-bazel/src/include/openssl/pem.h +0 -3
  823. data/third_party/boringssl-with-bazel/src/include/openssl/rand.h +13 -14
  824. data/third_party/boringssl-with-bazel/src/include/openssl/rsa.h +91 -62
  825. data/third_party/boringssl-with-bazel/src/include/openssl/span.h +26 -19
  826. data/third_party/boringssl-with-bazel/src/include/openssl/ssl.h +275 -96
  827. data/third_party/boringssl-with-bazel/src/include/openssl/stack.h +236 -213
  828. data/third_party/boringssl-with-bazel/src/include/openssl/target.h +201 -0
  829. data/third_party/boringssl-with-bazel/src/include/openssl/thread.h +1 -25
  830. data/third_party/boringssl-with-bazel/src/include/openssl/tls1.h +4 -0
  831. data/third_party/boringssl-with-bazel/src/include/openssl/trust_token.h +8 -0
  832. data/third_party/boringssl-with-bazel/src/include/openssl/x509.h +758 -603
  833. data/third_party/boringssl-with-bazel/src/include/openssl/x509v3.h +45 -12
  834. data/third_party/boringssl-with-bazel/src/ssl/encrypted_client_hello.cc +11 -6
  835. data/third_party/boringssl-with-bazel/src/ssl/extensions.cc +10 -68
  836. data/third_party/boringssl-with-bazel/src/ssl/handoff.cc +20 -20
  837. data/third_party/boringssl-with-bazel/src/ssl/handshake_client.cc +24 -16
  838. data/third_party/boringssl-with-bazel/src/ssl/handshake_server.cc +1 -1
  839. data/third_party/boringssl-with-bazel/src/ssl/internal.h +69 -29
  840. data/third_party/boringssl-with-bazel/src/ssl/s3_both.cc +37 -18
  841. data/third_party/boringssl-with-bazel/src/ssl/ssl_cipher.cc +209 -209
  842. data/third_party/boringssl-with-bazel/src/ssl/ssl_file.cc +4 -4
  843. data/third_party/boringssl-with-bazel/src/ssl/ssl_key_share.cc +46 -155
  844. data/third_party/boringssl-with-bazel/src/ssl/ssl_lib.cc +209 -33
  845. data/third_party/boringssl-with-bazel/src/ssl/ssl_privkey.cc +17 -4
  846. data/third_party/boringssl-with-bazel/src/ssl/ssl_versions.cc +27 -19
  847. data/third_party/boringssl-with-bazel/src/ssl/tls13_client.cc +2 -3
  848. data/third_party/boringssl-with-bazel/src/ssl/tls13_enc.cc +5 -21
  849. data/third_party/boringssl-with-bazel/src/ssl/tls13_server.cc +5 -2
  850. data/third_party/boringssl-with-bazel/src/third_party/fiat/curve25519_64_adx.h +691 -0
  851. data/third_party/boringssl-with-bazel/src/third_party/fiat/curve25519_64_msvc.h +1281 -0
  852. data/third_party/boringssl-with-bazel/src/third_party/fiat/p256_64_msvc.h +2002 -0
  853. data/third_party/cares/cares/include/ares.h +23 -1
  854. data/third_party/cares/cares/{src/lib → include}/ares_nameser.h +9 -7
  855. data/third_party/cares/cares/include/ares_rules.h +2 -2
  856. data/third_party/cares/cares/include/ares_version.h +3 -3
  857. data/third_party/cares/cares/src/lib/ares__addrinfo2hostent.c +266 -0
  858. data/third_party/cares/cares/src/lib/ares__addrinfo_localhost.c +240 -0
  859. data/third_party/cares/cares/src/lib/ares__parse_into_addrinfo.c +49 -80
  860. data/third_party/cares/cares/src/lib/ares__readaddrinfo.c +37 -43
  861. data/third_party/cares/cares/src/lib/ares__sortaddrinfo.c +12 -4
  862. data/third_party/cares/cares/src/lib/ares_data.c +16 -0
  863. data/third_party/cares/cares/src/lib/ares_data.h +7 -0
  864. data/third_party/cares/cares/src/lib/ares_destroy.c +8 -0
  865. data/third_party/cares/cares/src/lib/ares_expand_name.c +17 -6
  866. data/third_party/cares/cares/src/lib/ares_freeaddrinfo.c +1 -0
  867. data/third_party/cares/cares/src/lib/ares_getaddrinfo.c +156 -78
  868. data/third_party/cares/cares/src/lib/ares_gethostbyname.c +130 -326
  869. data/third_party/cares/cares/src/lib/ares_init.c +97 -485
  870. data/third_party/cares/cares/src/lib/ares_library_init.c +2 -89
  871. data/third_party/cares/cares/src/lib/ares_parse_a_reply.c +23 -142
  872. data/third_party/cares/cares/src/lib/ares_parse_aaaa_reply.c +22 -142
  873. data/third_party/cares/cares/src/lib/ares_parse_uri_reply.c +184 -0
  874. data/third_party/cares/cares/src/lib/ares_private.h +30 -16
  875. data/third_party/cares/cares/src/lib/ares_process.c +55 -16
  876. data/third_party/cares/cares/src/lib/ares_query.c +1 -35
  877. data/third_party/cares/cares/src/lib/ares_rand.c +279 -0
  878. data/third_party/cares/cares/src/lib/ares_send.c +5 -7
  879. data/third_party/cares/cares/src/lib/ares_strdup.c +12 -19
  880. data/third_party/cares/cares/src/lib/ares_strsplit.c +44 -128
  881. data/third_party/cares/cares/src/lib/ares_strsplit.h +9 -10
  882. data/third_party/cares/cares/src/lib/inet_net_pton.c +78 -116
  883. data/third_party/cares/cares/src/tools/ares_getopt.h +53 -0
  884. data/third_party/upb/upb/collections/map.c +3 -3
  885. metadata +106 -45
  886. data/src/core/ext/filters/client_channel/health/health_check_client.cc +0 -175
  887. data/src/core/ext/filters/client_channel/health/health_check_client.h +0 -43
  888. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_attributes.cc +0 -42
  889. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_attributes.h +0 -64
  890. data/src/core/ext/transport/chttp2/transport/stream_map.cc +0 -177
  891. data/src/core/ext/transport/chttp2/transport/stream_map.h +0 -68
  892. data/src/core/lib/promise/detail/basic_join.h +0 -197
  893. data/src/core/lib/promise/detail/switch.h +0 -1455
  894. data/src/core/lib/promise/try_join.h +0 -82
  895. data/third_party/abseil-cpp/absl/synchronization/internal/waiter.cc +0 -403
  896. data/third_party/boringssl-with-bazel/src/crypto/refcount_lock.c +0 -52
  897. data/third_party/cares/cares/src/lib/ares_library_init.h +0 -43
  898. data/third_party/re2/util/benchmark.h +0 -156
  899. data/third_party/re2/util/flags.h +0 -26
  900. data/third_party/re2/util/malloc_counter.h +0 -19
  901. data/third_party/re2/util/pcre.cc +0 -1025
  902. data/third_party/re2/util/pcre.h +0 -681
  903. data/third_party/re2/util/test.h +0 -50
  904. data/third_party/upb/upb/mini_table.h +0 -36
  905. data/third_party/zlib/gzclose.c +0 -25
  906. data/third_party/zlib/gzlib.c +0 -639
  907. data/third_party/zlib/gzread.c +0 -650
  908. data/third_party/zlib/gzwrite.c +0 -677
@@ -44,6 +44,11 @@
44
44
  #include <grpc/support/log.h>
45
45
  #include <grpc/support/time.h>
46
46
 
47
+ #ifdef GPR_LINUX
48
+ #include <sys/syscall.h>
49
+ #include <unistd.h>
50
+ #endif
51
+
47
52
  static VALUE grpc_rb_cTimeVal = Qnil;
48
53
 
49
54
  static rb_data_type_t grpc_rb_timespec_data_type = {
@@ -224,20 +229,51 @@ static void Init_grpc_time_consts() {
224
229
  id_tv_nsec = rb_intern("tv_nsec");
225
230
  }
226
231
 
232
+ static bool g_enable_fork_support;
233
+
234
+ #ifdef GPR_LINUX
235
+ static long sys_gettid() { return syscall(__NR_gettid); }
236
+ static bool can_enable_fork_support() { return true; }
237
+ #else
238
+ static long sys_gettid() { return 0; }
239
+ static bool can_enable_fork_support() { return false; }
240
+ #endif
241
+
227
242
  #if GPR_WINDOWS
228
- static void grpc_ruby_set_init_pid(void) {}
229
- static bool grpc_ruby_forked_after_init(void) { return false; }
243
+ static void grpc_ruby_basic_init(void) {}
244
+ static bool grpc_ruby_initial_pid(void) { return true; }
245
+ static bool grpc_ruby_initial_thread(void) { return true; }
246
+ static void grpc_ruby_reset_init_state(void) {}
230
247
  #else
231
- static pid_t grpc_init_pid;
248
+ static pid_t g_init_pid;
249
+ static long g_init_tid;
232
250
 
233
- static void grpc_ruby_set_init_pid(void) {
234
- GPR_ASSERT(grpc_init_pid == 0);
235
- grpc_init_pid = getpid();
251
+ static bool grpc_ruby_initial_pid(void) {
252
+ GPR_ASSERT(g_init_pid != 0);
253
+ return g_init_pid == getpid();
236
254
  }
237
255
 
238
- static bool grpc_ruby_forked_after_init(void) {
239
- GPR_ASSERT(grpc_init_pid != 0);
240
- return grpc_init_pid != getpid();
256
+ static bool grpc_ruby_initial_thread(void) {
257
+ GPR_ASSERT(g_init_tid != 0);
258
+ return sys_gettid() == g_init_tid;
259
+ }
260
+
261
+ static void grpc_ruby_reset_init_state(void) {
262
+ g_init_pid = getpid();
263
+ g_init_tid = sys_gettid();
264
+ }
265
+
266
+ static void grpc_ruby_basic_init(void) {
267
+ GPR_ASSERT(g_init_pid == 0);
268
+ GPR_ASSERT(g_init_tid == 0);
269
+ grpc_ruby_reset_init_state();
270
+ // TODO(apolcyn): ideally, we should share logic with C-core
271
+ // for determining whether or not fork support is enabled, rather
272
+ // than parsing the environment variable ourselves.
273
+ const char* res = getenv("GRPC_ENABLE_FORK_SUPPORT");
274
+ if (res != NULL && strcmp(res, "1") == 0) {
275
+ g_enable_fork_support = can_enable_fork_support();
276
+ }
241
277
  }
242
278
  #endif
243
279
 
@@ -258,59 +294,175 @@ VALUE sym_details = Qundef;
258
294
  VALUE sym_metadata = Qundef;
259
295
 
260
296
  static gpr_once g_once_init = GPR_ONCE_INIT;
297
+ static int64_t g_grpc_rb_prefork_pending; // synchronized by the GIL
298
+ static int64_t g_grpc_rb_num_fork_unsafe_threads; // synchronized by the GIL
261
299
 
262
300
  void grpc_ruby_fork_guard() {
263
- if (grpc_ruby_forked_after_init()) {
264
- rb_raise(rb_eRuntimeError, "grpc cannot be used before and after forking");
301
+ // Check if we're using gRPC between prefork and postfork
302
+ gpr_once_init(&g_once_init, grpc_ruby_basic_init);
303
+ if (g_grpc_rb_prefork_pending) {
304
+ rb_raise(rb_eRuntimeError,
305
+ "grpc cannot be used between calls to GRPC.prefork and "
306
+ "GRPC.postfork_child or GRPC.postfork_parent");
307
+ }
308
+ if (!grpc_ruby_initial_pid()) {
309
+ if (g_enable_fork_support) {
310
+ // Only way we can get here is by enabling for support and forking but not
311
+ // calling prefork
312
+ rb_raise(rb_eRuntimeError,
313
+ "grpc is in a broken state: GRPC.prefork must be called before "
314
+ "calling fork from a process using grpc");
315
+ } else {
316
+ rb_raise(rb_eRuntimeError,
317
+ "grpc cannot be used before and after forking unless the "
318
+ "GRPC_ENABLE_FORK_SUPPORT env var is set to \"1\" and the "
319
+ "platform supports it (linux only)");
320
+ }
265
321
  }
266
322
  }
267
323
 
268
- static VALUE bg_thread_init_rb_mu = Qundef;
269
- static int bg_thread_init_done = 0;
324
+ static VALUE g_bg_thread_init_rb_mu = Qundef;
325
+ static bool g_bg_thread_init_done;
270
326
 
271
327
  static void grpc_ruby_init_threads() {
272
328
  // Avoid calling into ruby library (when creating threads here)
273
329
  // in gpr_once_init. In general, it appears to be unsafe to call
274
330
  // into the ruby library while holding a non-ruby mutex, because a gil yield
275
331
  // could end up trying to lock onto that same mutex and deadlocking.
276
- rb_mutex_lock(bg_thread_init_rb_mu);
277
- if (!bg_thread_init_done) {
332
+ gpr_log(GPR_INFO,
333
+ "GRPC_RUBY: grpc_ruby_init_threads g_bg_thread_init_done=%d",
334
+ g_bg_thread_init_done);
335
+ rb_mutex_lock(g_bg_thread_init_rb_mu);
336
+ if (!g_bg_thread_init_done) {
278
337
  grpc_rb_event_queue_thread_start();
279
338
  grpc_rb_channel_polling_thread_start();
280
- bg_thread_init_done = 1;
339
+ g_bg_thread_init_done = true;
281
340
  }
282
- rb_mutex_unlock(bg_thread_init_rb_mu);
341
+ rb_mutex_unlock(g_bg_thread_init_rb_mu);
283
342
  }
284
343
 
285
344
  static int64_t g_grpc_ruby_init_count;
286
345
 
287
346
  void grpc_ruby_init() {
288
- gpr_once_init(&g_once_init, grpc_ruby_set_init_pid);
347
+ gpr_once_init(&g_once_init, grpc_ruby_basic_init);
348
+ grpc_ruby_fork_guard();
289
349
  grpc_init();
290
350
  grpc_ruby_init_threads();
291
351
  // (only gpr_log after logging has been initialized)
292
352
  gpr_log(GPR_DEBUG,
293
- "GRPC_RUBY: grpc_ruby_init - prev g_grpc_ruby_init_count:%" PRId64,
294
- g_grpc_ruby_init_count++);
353
+ "GRPC_RUBY: grpc_ruby_init - g_enable_fork_support=%d prev "
354
+ "g_grpc_ruby_init_count:%" PRId64,
355
+ g_enable_fork_support, g_grpc_ruby_init_count++);
356
+ }
357
+
358
+ // fork APIs, useable on linux with env var: GRPC_ENABLE_FORK_SUPPORT=1
359
+ //
360
+ // Must be called once and only once before forking. Must be called on the
361
+ // same threads that gRPC was (lazy-)initialized on. One must not call
362
+ // into the gRPC library during or after prefork has been called, until
363
+ // the corresponding postfork_{parent,child} APIs have been called.
364
+ static VALUE grpc_rb_prefork(VALUE self) {
365
+ // This might be the first time we've called into the grpc library, so make
366
+ // sure basic one-time initialization is taken care of. Note that if this is
367
+ // the case, then grpc_init() will start up c-core threads; that's OK since
368
+ // they will be shut down in C-core's pthread_atfork handler.
369
+ gpr_once_init(&g_once_init, grpc_ruby_basic_init);
370
+ grpc_init();
371
+ if (!g_enable_fork_support) {
372
+ rb_raise(rb_eRuntimeError,
373
+ "forking with gRPC/Ruby is only supported on linux with env var: "
374
+ "GRPC_ENABLE_FORK_SUPPORT=1");
375
+ }
376
+ if (g_grpc_rb_prefork_pending) {
377
+ rb_raise(rb_eRuntimeError,
378
+ "GRPC.prefork already called without a matching "
379
+ "GRPC.postfork_{parent,child}");
380
+ }
381
+ if (!grpc_ruby_initial_thread()) {
382
+ rb_raise(rb_eRuntimeError,
383
+ "GRPC.prefork and fork need to be called from the same thread "
384
+ "that GRPC was initialized on (GRPC lazy-initializes when when "
385
+ "the first GRPC object is created");
386
+ }
387
+ if (g_grpc_rb_num_fork_unsafe_threads > 0) {
388
+ rb_raise(
389
+ rb_eRuntimeError,
390
+ "Detected at least %ld threads actively using grpc, so it is not safe "
391
+ "call GRPC.prefork or fork. Note that grpc-ruby servers and "
392
+ "bidirectional "
393
+ "streams manage background threads and are not fork safe.",
394
+ g_grpc_rb_num_fork_unsafe_threads);
395
+ }
396
+ g_grpc_rb_prefork_pending = true;
397
+ rb_mutex_lock(g_bg_thread_init_rb_mu);
398
+ if (g_bg_thread_init_done) {
399
+ grpc_rb_channel_polling_thread_stop();
400
+ grpc_rb_event_queue_thread_stop();
401
+ // all ruby-level background threads joined at this point
402
+ g_bg_thread_init_done = false;
403
+ }
404
+ rb_mutex_unlock(g_bg_thread_init_rb_mu);
405
+ return Qnil;
295
406
  }
296
407
 
297
- void grpc_ruby_shutdown() {
298
- GPR_ASSERT(g_grpc_ruby_init_count > 0);
299
- if (!grpc_ruby_forked_after_init()) grpc_shutdown();
300
- gpr_log(
301
- GPR_DEBUG,
302
- "GRPC_RUBY: grpc_ruby_shutdown - prev g_grpc_ruby_init_count:%" PRId64,
303
- g_grpc_ruby_init_count--);
408
+ static VALUE grpc_rb_postfork_child(VALUE self) {
409
+ if (!g_grpc_rb_prefork_pending) {
410
+ rb_raise(rb_eRuntimeError,
411
+ "GRPC::postfork_child can only be called once following a "
412
+ "GRPC::prefork");
413
+ }
414
+ if (grpc_ruby_initial_pid()) {
415
+ rb_raise(rb_eRuntimeError,
416
+ "GRPC.postfork_child must be called only from the child process "
417
+ "after a fork");
418
+ }
419
+ grpc_ruby_reset_init_state();
420
+ grpc_ruby_init_threads();
421
+ g_grpc_rb_prefork_pending = false;
422
+ return Qnil;
304
423
  }
305
424
 
425
+ static VALUE grpc_rb_postfork_parent(VALUE self) {
426
+ // TODO(apolcyn): check calling thread vs. thread that gRPC was initialized on
427
+ if (!g_grpc_rb_prefork_pending) {
428
+ rb_raise(rb_eRuntimeError,
429
+ "GRPC::postfork_parent can only be called once following a "
430
+ "GRPC::prefork");
431
+ }
432
+ if (!grpc_ruby_initial_pid()) {
433
+ rb_raise(rb_eRuntimeError,
434
+ "GRPC.postfork_parent must be called only from the parent process "
435
+ "after a fork");
436
+ }
437
+ if (!grpc_ruby_initial_thread()) {
438
+ rb_raise(rb_eRuntimeError,
439
+ "GRPC.postfork_parent needs to be called from the same thread "
440
+ "that GRPC.prefork (and fork) was called from");
441
+ }
442
+ grpc_ruby_init_threads();
443
+ g_grpc_rb_prefork_pending = false;
444
+ return Qnil;
445
+ }
446
+
447
+ // APIs to mark fork-unsafe sections from C-extension code
448
+ void grpc_rb_fork_unsafe_begin() { g_grpc_rb_num_fork_unsafe_threads++; }
449
+
450
+ void grpc_rb_fork_unsafe_end() { g_grpc_rb_num_fork_unsafe_threads--; }
451
+
452
+ // APIs to mark fork-unsafe sections from ruby code
453
+ static VALUE grpc_rb_fork_unsafe_begin_api() { grpc_rb_fork_unsafe_begin(); }
454
+
455
+ static VALUE grpc_rb_fork_unsafe_end_api() { grpc_rb_fork_unsafe_end(); }
456
+
457
+ // One-time initialization
306
458
  void Init_grpc_c() {
307
459
  if (!grpc_rb_load_core()) {
308
460
  rb_raise(rb_eLoadError, "Couldn't find or load gRPC's dynamic C core");
309
461
  return;
310
462
  }
311
463
 
312
- rb_global_variable(&bg_thread_init_rb_mu);
313
- bg_thread_init_rb_mu = rb_mutex_new();
464
+ rb_global_variable(&g_bg_thread_init_rb_mu);
465
+ g_bg_thread_init_rb_mu = rb_mutex_new();
314
466
 
315
467
  grpc_rb_mGRPC = rb_define_module("GRPC");
316
468
  grpc_rb_mGrpcCore = rb_define_module_under(grpc_rb_mGRPC, "Core");
@@ -320,7 +472,7 @@ void Init_grpc_c() {
320
472
  sym_code = ID2SYM(rb_intern("code"));
321
473
  sym_details = ID2SYM(rb_intern("details"));
322
474
  sym_metadata = ID2SYM(rb_intern("metadata"));
323
-
475
+ // init C-defined classes
324
476
  Init_grpc_channel();
325
477
  Init_grpc_call();
326
478
  Init_grpc_call_credentials();
@@ -331,4 +483,14 @@ void Init_grpc_c() {
331
483
  Init_grpc_xds_server_credentials();
332
484
  Init_grpc_time_consts();
333
485
  Init_grpc_compression_options();
486
+ // define fork APIs
487
+ rb_define_module_function(grpc_rb_mGRPC, "prefork", grpc_rb_prefork, 0);
488
+ rb_define_module_function(grpc_rb_mGRPC, "postfork_child",
489
+ grpc_rb_postfork_child, 0);
490
+ rb_define_module_function(grpc_rb_mGRPC, "postfork_parent",
491
+ grpc_rb_postfork_parent, 0);
492
+ rb_define_module_function(grpc_rb_mGrpcCore, "fork_unsafe_begin",
493
+ grpc_rb_fork_unsafe_begin_api, 0);
494
+ rb_define_module_function(grpc_rb_mGrpcCore, "fork_unsafe_end",
495
+ grpc_rb_fork_unsafe_end_api, 0);
334
496
  }
@@ -70,8 +70,14 @@ gpr_timespec grpc_rb_time_timeval(VALUE time, int interval);
70
70
 
71
71
  void grpc_ruby_fork_guard();
72
72
 
73
- void grpc_ruby_init();
73
+ /* To be called once and only once before entering code section that is
74
+ * definitely not fork-safe. Used in conjunction with GRPC.prefork
75
+ * to catch for-unsafe processes and raise errors. */
76
+ void grpc_rb_fork_unsafe_begin();
77
+
78
+ /* To be called once and only once after each grpc_rb_fork_unsafe_begin*/
79
+ void grpc_rb_fork_unsafe_end();
74
80
 
75
- void grpc_ruby_shutdown();
81
+ void grpc_ruby_init();
76
82
 
77
83
  #endif /* GRPC_RB_H_ */
@@ -188,6 +188,7 @@ grpc_tls_credentials_options_set_identity_cert_name_type grpc_tls_credentials_op
188
188
  grpc_tls_credentials_options_set_cert_request_type_type grpc_tls_credentials_options_set_cert_request_type_import;
189
189
  grpc_tls_credentials_options_set_crl_directory_type grpc_tls_credentials_options_set_crl_directory_import;
190
190
  grpc_tls_credentials_options_set_verify_server_cert_type grpc_tls_credentials_options_set_verify_server_cert_import;
191
+ grpc_tls_credentials_options_set_send_client_ca_list_type grpc_tls_credentials_options_set_send_client_ca_list_import;
191
192
  grpc_tls_credentials_options_set_check_call_host_type grpc_tls_credentials_options_set_check_call_host_import;
192
193
  grpc_insecure_credentials_create_type grpc_insecure_credentials_create_import;
193
194
  grpc_insecure_server_credentials_create_type grpc_insecure_server_credentials_create_import;
@@ -474,6 +475,7 @@ void grpc_rb_load_imports(HMODULE library) {
474
475
  grpc_tls_credentials_options_set_cert_request_type_import = (grpc_tls_credentials_options_set_cert_request_type_type) GetProcAddress(library, "grpc_tls_credentials_options_set_cert_request_type");
475
476
  grpc_tls_credentials_options_set_crl_directory_import = (grpc_tls_credentials_options_set_crl_directory_type) GetProcAddress(library, "grpc_tls_credentials_options_set_crl_directory");
476
477
  grpc_tls_credentials_options_set_verify_server_cert_import = (grpc_tls_credentials_options_set_verify_server_cert_type) GetProcAddress(library, "grpc_tls_credentials_options_set_verify_server_cert");
478
+ grpc_tls_credentials_options_set_send_client_ca_list_import = (grpc_tls_credentials_options_set_send_client_ca_list_type) GetProcAddress(library, "grpc_tls_credentials_options_set_send_client_ca_list");
477
479
  grpc_tls_credentials_options_set_check_call_host_import = (grpc_tls_credentials_options_set_check_call_host_type) GetProcAddress(library, "grpc_tls_credentials_options_set_check_call_host");
478
480
  grpc_insecure_credentials_create_import = (grpc_insecure_credentials_create_type) GetProcAddress(library, "grpc_insecure_credentials_create");
479
481
  grpc_insecure_server_credentials_create_import = (grpc_insecure_server_credentials_create_type) GetProcAddress(library, "grpc_insecure_server_credentials_create");
@@ -539,6 +539,9 @@ extern grpc_tls_credentials_options_set_crl_directory_type grpc_tls_credentials_
539
539
  typedef void(*grpc_tls_credentials_options_set_verify_server_cert_type)(grpc_tls_credentials_options* options, int verify_server_cert);
540
540
  extern grpc_tls_credentials_options_set_verify_server_cert_type grpc_tls_credentials_options_set_verify_server_cert_import;
541
541
  #define grpc_tls_credentials_options_set_verify_server_cert grpc_tls_credentials_options_set_verify_server_cert_import
542
+ typedef void(*grpc_tls_credentials_options_set_send_client_ca_list_type)(grpc_tls_credentials_options* options, bool send_client_ca_list);
543
+ extern grpc_tls_credentials_options_set_send_client_ca_list_type grpc_tls_credentials_options_set_send_client_ca_list_import;
544
+ #define grpc_tls_credentials_options_set_send_client_ca_list grpc_tls_credentials_options_set_send_client_ca_list_import
542
545
  typedef void(*grpc_tls_credentials_options_set_check_call_host_type)(grpc_tls_credentials_options* options, int check_call_host);
543
546
  extern grpc_tls_credentials_options_set_check_call_host_type grpc_tls_credentials_options_set_check_call_host_import;
544
547
  #define grpc_tls_credentials_options_set_check_call_host grpc_tls_credentials_options_set_check_call_host_import
@@ -106,10 +106,7 @@ static void grpc_rb_server_free_internal(void* p) {
106
106
  }
107
107
 
108
108
  /* Destroys server instances. */
109
- static void grpc_rb_server_free(void* p) {
110
- grpc_rb_server_free_internal(p);
111
- grpc_ruby_shutdown();
112
- }
109
+ static void grpc_rb_server_free(void* p) { grpc_rb_server_free_internal(p); }
113
110
 
114
111
  static const rb_data_type_t grpc_rb_server_data_type = {
115
112
  "grpc_server",
@@ -155,10 +152,7 @@ static VALUE grpc_rb_server_init(VALUE self, VALUE channel_args) {
155
152
  wrapper);
156
153
  grpc_rb_hash_convert_to_channel_args(channel_args, &args);
157
154
  srv = grpc_server_create(&args, NULL);
158
-
159
- if (args.args != NULL) {
160
- xfree(args.args); /* Allocated by grpc_rb_hash_convert_to_channel_args */
161
- }
155
+ grpc_rb_channel_args_destroy(&args);
162
156
  if (srv == NULL) {
163
157
  rb_raise(rb_eRuntimeError, "could not create a gRPC server, not sure why");
164
158
  }
@@ -191,65 +185,88 @@ static void grpc_request_call_stack_cleanup(request_call_stack* st) {
191
185
  grpc_call_details_destroy(&st->details);
192
186
  }
193
187
 
194
- /* call-seq:
195
- server.request_call
188
+ struct server_request_call_args {
189
+ grpc_rb_server* server;
190
+ grpc_completion_queue* call_queue;
191
+ request_call_stack st;
192
+ };
193
+
194
+ static VALUE grpc_rb_server_request_call_try(VALUE value_args) {
195
+ grpc_rb_fork_unsafe_begin();
196
+ struct server_request_call_args* args =
197
+ (struct server_request_call_args*)value_args;
196
198
 
197
- Requests notification of a new call on a server. */
198
- static VALUE grpc_rb_server_request_call(VALUE self) {
199
- grpc_rb_server* s = NULL;
200
199
  grpc_call* call = NULL;
201
- grpc_event ev;
202
- grpc_call_error err;
203
- request_call_stack st;
204
- VALUE result;
205
- void* tag = (void*)&st;
206
- grpc_completion_queue* call_queue =
207
- grpc_completion_queue_create_for_pluck(NULL);
208
- gpr_timespec deadline;
200
+ void* tag = (void*)&args->st;
201
+
202
+ args->call_queue = grpc_completion_queue_create_for_pluck(NULL);
203
+ grpc_request_call_stack_init(&args->st);
209
204
 
210
- TypedData_Get_Struct(self, grpc_rb_server, &grpc_rb_server_data_type, s);
211
- if (s->wrapped == NULL) {
212
- rb_raise(rb_eRuntimeError, "destroyed!");
213
- return Qnil;
214
- }
215
- grpc_request_call_stack_init(&st);
216
205
  /* call grpc_server_request_call, then wait for it to complete using
217
206
  * pluck_event */
218
- err = grpc_server_request_call(s->wrapped, &call, &st.details, &st.md_ary,
219
- call_queue, s->queue, tag);
207
+ grpc_call_error err = grpc_server_request_call(
208
+ args->server->wrapped, &call, &args->st.details, &args->st.md_ary,
209
+ args->call_queue, args->server->queue, tag);
220
210
  if (err != GRPC_CALL_OK) {
221
- grpc_request_call_stack_cleanup(&st);
222
211
  rb_raise(grpc_rb_eCallError,
223
212
  "grpc_server_request_call failed: %s (code=%d)",
224
213
  grpc_call_error_detail_of(err), err);
225
- return Qnil;
226
214
  }
227
215
 
228
- ev = rb_completion_queue_pluck(s->queue, tag,
229
- gpr_inf_future(GPR_CLOCK_REALTIME), NULL);
216
+ grpc_event ev = rb_completion_queue_pluck(
217
+ args->server->queue, tag, gpr_inf_future(GPR_CLOCK_REALTIME), NULL);
230
218
  if (!ev.success) {
231
- grpc_request_call_stack_cleanup(&st);
232
219
  rb_raise(grpc_rb_eCallError, "request_call completion failed");
233
- return Qnil;
234
220
  }
235
221
 
236
222
  /* build the NewServerRpc struct result */
237
- deadline = gpr_convert_clock_type(st.details.deadline, GPR_CLOCK_REALTIME);
238
- result = rb_struct_new(
239
- grpc_rb_sNewServerRpc, grpc_rb_slice_to_ruby_string(st.details.method),
240
- grpc_rb_slice_to_ruby_string(st.details.host),
241
- rb_funcall(rb_cTime, id_at, 2, INT2NUM(deadline.tv_sec),
242
- INT2NUM(deadline.tv_nsec / 1000)),
243
- grpc_rb_md_ary_to_h(&st.md_ary), grpc_rb_wrap_call(call, call_queue),
244
- NULL);
245
- grpc_request_call_stack_cleanup(&st);
223
+ gpr_timespec deadline =
224
+ gpr_convert_clock_type(args->st.details.deadline, GPR_CLOCK_REALTIME);
225
+ VALUE result =
226
+ rb_struct_new(grpc_rb_sNewServerRpc,
227
+ grpc_rb_slice_to_ruby_string(args->st.details.method),
228
+ grpc_rb_slice_to_ruby_string(args->st.details.host),
229
+ rb_funcall(rb_cTime, id_at, 2, INT2NUM(deadline.tv_sec),
230
+ INT2NUM(deadline.tv_nsec / 1000)),
231
+ grpc_rb_md_ary_to_h(&args->st.md_ary),
232
+ grpc_rb_wrap_call(call, args->call_queue), NULL);
233
+ args->call_queue = NULL;
246
234
  return result;
247
235
  }
248
236
 
237
+ static VALUE grpc_rb_server_request_call_ensure(VALUE value_args) {
238
+ grpc_rb_fork_unsafe_end();
239
+ struct server_request_call_args* args =
240
+ (struct server_request_call_args*)value_args;
241
+
242
+ if (args->call_queue) {
243
+ grpc_rb_completion_queue_destroy(args->call_queue);
244
+ }
245
+
246
+ grpc_request_call_stack_cleanup(&args->st);
247
+
248
+ return Qnil;
249
+ }
250
+
251
+ /* call-seq:
252
+ server.request_call
253
+
254
+ Requests notification of a new call on a server. */
255
+ static VALUE grpc_rb_server_request_call(VALUE self) {
256
+ grpc_rb_server* s;
257
+ TypedData_Get_Struct(self, grpc_rb_server, &grpc_rb_server_data_type, s);
258
+ grpc_ruby_fork_guard();
259
+ if (s->wrapped == NULL) {
260
+ rb_raise(rb_eRuntimeError, "destroyed!");
261
+ }
262
+ struct server_request_call_args args = {.server = s, .call_queue = NULL};
263
+ return rb_ensure(grpc_rb_server_request_call_try, (VALUE)&args,
264
+ grpc_rb_server_request_call_ensure, (VALUE)&args);
265
+ }
266
+
249
267
  static VALUE grpc_rb_server_start(VALUE self) {
250
268
  grpc_rb_server* s = NULL;
251
269
  TypedData_Get_Struct(self, grpc_rb_server, &grpc_rb_server_data_type, s);
252
-
253
270
  grpc_ruby_fork_guard();
254
271
  if (s->wrapped == NULL) {
255
272
  rb_raise(rb_eRuntimeError, "destroyed!");
@@ -62,7 +62,6 @@ static void grpc_rb_server_credentials_free_internal(void* p) {
62
62
  /* Destroys the server credentials instances. */
63
63
  static void grpc_rb_server_credentials_free(void* p) {
64
64
  grpc_rb_server_credentials_free_internal(p);
65
- grpc_ruby_shutdown();
66
65
  }
67
66
 
68
67
  /* Protects the mark object from GC */
@@ -62,7 +62,6 @@ static void grpc_rb_xds_channel_credentials_free_internal(void* p) {
62
62
  /* Destroys the credentials instances. */
63
63
  static void grpc_rb_xds_channel_credentials_free(void* p) {
64
64
  grpc_rb_xds_channel_credentials_free_internal(p);
65
- grpc_ruby_shutdown();
66
65
  }
67
66
 
68
67
  /* Protects the mark object from GC */
@@ -63,7 +63,6 @@ static void grpc_rb_xds_server_credentials_free_internal(void* p) {
63
63
  /* Destroys the server credentials instances. */
64
64
  static void grpc_rb_xds_server_credentials_free(void* p) {
65
65
  grpc_rb_xds_server_credentials_free_internal(p);
66
- grpc_ruby_shutdown();
67
66
  }
68
67
 
69
68
  /* Protects the mark object from GC */
@@ -232,17 +232,16 @@ module GRPC
232
232
  def server_unary_response(req, trailing_metadata: {},
233
233
  code: Core::StatusCodes::OK, details: 'OK')
234
234
  ops = {}
235
+ ops[SEND_MESSAGE] = @marshal.call(req)
236
+ ops[SEND_STATUS_FROM_SERVER] = Struct::Status.new(
237
+ code, details, trailing_metadata)
238
+ ops[RECV_CLOSE_ON_SERVER] = nil
239
+
235
240
  @send_initial_md_mutex.synchronize do
236
241
  ops[SEND_INITIAL_METADATA] = @metadata_to_send unless @metadata_sent
237
242
  @metadata_sent = true
238
243
  end
239
244
 
240
- payload = @marshal.call(req)
241
- ops[SEND_MESSAGE] = payload
242
- ops[SEND_STATUS_FROM_SERVER] = Struct::Status.new(
243
- code, details, trailing_metadata)
244
- ops[RECV_CLOSE_ON_SERVER] = nil
245
-
246
245
  @call.run_batch(ops)
247
246
  set_output_stream_done
248
247
  end
@@ -262,6 +261,9 @@ module GRPC
262
261
  @metadata_received = true
263
262
  end
264
263
  get_message_from_batch_result(batch_result)
264
+ rescue GRPC::Core::CallError => e
265
+ GRPC.logger.info("remote_read: #{e}")
266
+ nil
265
267
  end
266
268
 
267
269
  def get_message_from_batch_result(recv_message_batch_result)
@@ -328,14 +330,7 @@ module GRPC
328
330
  def each_remote_read_then_finish
329
331
  return enum_for(:each_remote_read_then_finish) unless block_given?
330
332
  loop do
331
- resp =
332
- begin
333
- remote_read
334
- rescue GRPC::Core::CallError => e
335
- GRPC.logger.warn("In each_remote_read_then_finish: #{e}")
336
- nil
337
- end
338
-
333
+ resp = remote_read
339
334
  break if resp.nil? # the last response was received
340
335
  yield resp
341
336
  end
@@ -141,6 +141,7 @@ module GRPC
141
141
  # set_output_stream_done is relevant on client-side
142
142
  # rubocop:disable Metrics/PerceivedComplexity
143
143
  def write_loop(requests, is_client: true, set_output_stream_done: nil)
144
+ GRPC::Core.fork_unsafe_begin
144
145
  GRPC.logger.debug('bidi-write-loop: starting')
145
146
  count = 0
146
147
  requests.each do |req|
@@ -181,6 +182,7 @@ module GRPC
181
182
  raise e
182
183
  end
183
184
  ensure
185
+ GRPC::Core.fork_unsafe_end
184
186
  set_output_stream_done.call if is_client
185
187
  end
186
188
  # rubocop:enable Metrics/PerceivedComplexity
@@ -14,5 +14,5 @@
14
14
 
15
15
  # GRPC contains the General RPC module.
16
16
  module GRPC
17
- VERSION = '1.55.0'
17
+ VERSION = '1.58.0'
18
18
  end
@@ -1,23 +1,34 @@
1
+ # frozen_string_literal: true
1
2
  # Generated by the protocol buffer compiler. DO NOT EDIT!
2
3
  # source: grpc/health/v1/health.proto
3
4
 
4
5
  require 'google/protobuf'
5
6
 
6
- Google::Protobuf::DescriptorPool.generated_pool.build do
7
- add_file("grpc/health/v1/health.proto", :syntax => :proto3) do
8
- add_message "grpc.health.v1.HealthCheckRequest" do
9
- optional :service, :string, 1
10
- end
11
- add_message "grpc.health.v1.HealthCheckResponse" do
12
- optional :status, :enum, 1, "grpc.health.v1.HealthCheckResponse.ServingStatus"
13
- end
14
- add_enum "grpc.health.v1.HealthCheckResponse.ServingStatus" do
15
- value :UNKNOWN, 0
16
- value :SERVING, 1
17
- value :NOT_SERVING, 2
18
- value :SERVICE_UNKNOWN, 3
7
+
8
+ descriptor_data = "\n\x1bgrpc/health/v1/health.proto\x12\x0egrpc.health.v1\"%\n\x12HealthCheckRequest\x12\x0f\n\x07service\x18\x01 \x01(\t\"\xa9\x01\n\x13HealthCheckResponse\x12\x41\n\x06status\x18\x01 \x01(\x0e\x32\x31.grpc.health.v1.HealthCheckResponse.ServingStatus\"O\n\rServingStatus\x12\x0b\n\x07UNKNOWN\x10\x00\x12\x0b\n\x07SERVING\x10\x01\x12\x0f\n\x0bNOT_SERVING\x10\x02\x12\x13\n\x0fSERVICE_UNKNOWN\x10\x03\x32\xae\x01\n\x06Health\x12P\n\x05\x43heck\x12\".grpc.health.v1.HealthCheckRequest\x1a#.grpc.health.v1.HealthCheckResponse\x12R\n\x05Watch\x12\".grpc.health.v1.HealthCheckRequest\x1a#.grpc.health.v1.HealthCheckResponse0\x01\x42\x61\n\x11io.grpc.health.v1B\x0bHealthProtoP\x01Z,google.golang.org/grpc/health/grpc_health_v1\xaa\x02\x0eGrpc.Health.V1b\x06proto3"
9
+
10
+ pool = Google::Protobuf::DescriptorPool.generated_pool
11
+
12
+ begin
13
+ pool.add_serialized_file(descriptor_data)
14
+ rescue TypeError => e
15
+ # Compatibility code: will be removed in the next major version.
16
+ require 'google/protobuf/descriptor_pb'
17
+ parsed = Google::Protobuf::FileDescriptorProto.decode(descriptor_data)
18
+ parsed.clear_dependency
19
+ serialized = parsed.class.encode(parsed)
20
+ file = pool.add_serialized_file(serialized)
21
+ warn "Warning: Protobuf detected an import path issue while loading generated file #{__FILE__}"
22
+ imports = [
23
+ ]
24
+ imports.each do |type_name, expected_filename|
25
+ import_file = pool.lookup(type_name).file_descriptor
26
+ if import_file.name != expected_filename
27
+ warn "- #{file.name} imports #{expected_filename}, but that import was loaded as #{import_file.name}"
19
28
  end
20
29
  end
30
+ warn "Each proto file must use a consistent fully-qualified name."
31
+ warn "This will become an error in the next major version."
21
32
  end
22
33
 
23
34
  module Grpc