grpc 1.56.0 → 1.57.0.pre1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (398) hide show
  1. checksums.yaml +4 -4
  2. data/Makefile +31 -22
  3. data/include/grpc/event_engine/event_engine.h +22 -32
  4. data/include/grpc/grpc_security.h +19 -0
  5. data/include/grpc/impl/grpc_types.h +3 -0
  6. data/include/grpc/support/port_platform.h +29 -23
  7. data/src/core/ext/filters/client_channel/client_channel.cc +44 -8
  8. data/src/core/ext/filters/client_channel/dynamic_filters.h +3 -3
  9. data/src/core/ext/filters/client_channel/http_proxy.cc +5 -0
  10. data/src/core/ext/filters/client_channel/lb_policy/address_filtering.cc +21 -52
  11. data/src/core/ext/filters/client_channel/lb_policy/address_filtering.h +19 -7
  12. data/src/core/ext/filters/client_channel/lb_policy/child_policy_handler.cc +25 -35
  13. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc +78 -132
  14. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.cc +2 -1
  15. data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.cc +4 -3
  16. data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h +3 -1
  17. data/src/core/ext/filters/client_channel/lb_policy/health_check_client.cc +38 -15
  18. data/src/core/ext/filters/client_channel/lb_policy/health_check_client.h +3 -5
  19. data/src/core/ext/filters/client_channel/lb_policy/health_check_client_internal.h +22 -6
  20. data/src/core/ext/filters/client_channel/lb_policy/oob_backend_metric_internal.h +2 -0
  21. data/src/core/ext/filters/client_channel/lb_policy/outlier_detection/outlier_detection.cc +98 -72
  22. data/src/core/ext/filters/client_channel/lb_policy/outlier_detection/outlier_detection.h +2 -16
  23. data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc +56 -11
  24. data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.h +25 -0
  25. data/src/core/ext/filters/client_channel/lb_policy/priority/priority.cc +6 -32
  26. data/src/core/ext/filters/client_channel/lb_policy/ring_hash/ring_hash.cc +4 -6
  27. data/src/core/ext/filters/client_channel/lb_policy/rls/rls.cc +20 -79
  28. data/src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc +1 -1
  29. data/src/core/ext/filters/client_channel/lb_policy/subchannel_list.h +31 -19
  30. data/src/core/ext/filters/client_channel/lb_policy/weighted_round_robin/weighted_round_robin.cc +11 -2
  31. data/src/core/ext/filters/client_channel/lb_policy/weighted_target/weighted_target.cc +7 -41
  32. data/src/core/ext/filters/client_channel/lb_policy/xds/cds.cc +3 -67
  33. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_channel_args.h +8 -0
  34. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_impl.cc +31 -74
  35. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_manager.cc +7 -51
  36. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_resolver.cc +16 -87
  37. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_override_host.cc +16 -50
  38. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_wrr_locality.cc +12 -74
  39. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc +1 -4
  40. data/src/core/ext/filters/client_channel/resolver/dns/event_engine/event_engine_client_channel_resolver.cc +69 -59
  41. data/src/core/ext/filters/client_channel/resolver/polling_resolver.cc +7 -2
  42. data/src/core/ext/filters/client_channel/resolver/polling_resolver.h +1 -0
  43. data/src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc +25 -13
  44. data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.cc +366 -311
  45. data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.h +17 -1
  46. data/src/core/ext/filters/client_channel/retry_filter.cc +39 -2498
  47. data/src/core/ext/filters/client_channel/retry_filter.h +91 -1
  48. data/src/core/ext/filters/client_channel/retry_filter_legacy_call_data.cc +2052 -0
  49. data/src/core/ext/filters/client_channel/retry_filter_legacy_call_data.h +442 -0
  50. data/src/core/ext/filters/client_channel/service_config_channel_arg_filter.cc +38 -58
  51. data/src/core/ext/filters/client_channel/subchannel.h +3 -3
  52. data/src/core/ext/filters/client_channel/subchannel_interface_internal.h +3 -0
  53. data/src/core/ext/filters/rbac/rbac_filter.cc +40 -111
  54. data/src/core/ext/filters/rbac/rbac_filter.h +12 -30
  55. data/src/core/ext/filters/stateful_session/stateful_session_filter.cc +162 -86
  56. data/src/core/ext/filters/stateful_session/stateful_session_filter.h +0 -6
  57. data/src/core/ext/transport/chttp2/server/chttp2_server.cc +7 -4
  58. data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +131 -186
  59. data/src/core/ext/transport/chttp2/transport/decode_huff.cc +6569 -174
  60. data/src/core/ext/transport/chttp2/transport/decode_huff.h +2278 -441
  61. data/src/core/ext/transport/chttp2/transport/frame_ping.cc +2 -3
  62. data/src/core/ext/transport/chttp2/transport/hpack_parse_result.cc +176 -0
  63. data/src/core/ext/transport/chttp2/transport/hpack_parse_result.h +326 -0
  64. data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +569 -544
  65. data/src/core/ext/transport/chttp2/transport/hpack_parser.h +150 -9
  66. data/src/core/ext/transport/chttp2/transport/hpack_parser_table.cc +47 -33
  67. data/src/core/ext/transport/chttp2/transport/hpack_parser_table.h +19 -5
  68. data/src/core/ext/transport/chttp2/transport/internal.h +8 -4
  69. data/src/core/ext/transport/chttp2/transport/parsing.cc +27 -15
  70. data/src/core/ext/transport/chttp2/transport/writing.cc +2 -3
  71. data/src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.c +27 -6
  72. data/src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.h +143 -0
  73. data/src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.c +2 -9
  74. data/src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.h +0 -39
  75. data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.c +13 -8
  76. data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.h +35 -6
  77. data/src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.c +17 -13
  78. data/src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.h +85 -20
  79. data/src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.c +26 -7
  80. data/src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.h +45 -3
  81. data/src/core/ext/upb-generated/envoy/config/metrics/v3/metrics_service.upb.c +4 -3
  82. data/src/core/ext/upb-generated/envoy/config/metrics/v3/metrics_service.upb.h +21 -0
  83. data/src/core/ext/upb-generated/envoy/config/overload/v3/overload.upb.c +30 -6
  84. data/src/core/ext/upb-generated/envoy/config/overload/v3/overload.upb.h +180 -0
  85. data/src/core/ext/upb-generated/envoy/data/accesslog/v3/accesslog.upb.c +558 -0
  86. data/src/core/ext/upb-generated/envoy/data/accesslog/v3/accesslog.upb.h +2710 -0
  87. data/src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3/fault.upb.c +30 -11
  88. data/src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3/fault.upb.h +53 -24
  89. data/src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3/router.upb.c +30 -5
  90. data/src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3/router.upb.h +110 -0
  91. data/src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.c +41 -15
  92. data/src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h +150 -27
  93. data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb.c +1 -0
  94. data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb.c +47 -0
  95. data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb.h +93 -0
  96. data/src/core/ext/upbdefs-generated/envoy/config/accesslog/v3/accesslog.upbdefs.c +88 -76
  97. data/src/core/ext/upbdefs-generated/envoy/config/accesslog/v3/accesslog.upbdefs.h +5 -0
  98. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/config_source.upbdefs.c +11 -12
  99. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/config_source.upbdefs.h +0 -5
  100. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_service.upbdefs.c +162 -160
  101. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/health_check.upbdefs.c +129 -118
  102. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/protocol.upbdefs.c +141 -135
  103. data/src/core/ext/upbdefs-generated/envoy/config/metrics/v3/metrics_service.upbdefs.c +19 -12
  104. data/src/core/ext/upbdefs-generated/envoy/config/overload/v3/overload.upbdefs.c +38 -30
  105. data/src/core/ext/upbdefs-generated/envoy/config/overload/v3/overload.upbdefs.h +5 -0
  106. data/src/core/ext/upbdefs-generated/envoy/data/accesslog/v3/accesslog.upbdefs.c +402 -0
  107. data/src/core/ext/upbdefs-generated/envoy/data/accesslog/v3/accesslog.upbdefs.h +111 -0
  108. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3/fault.upbdefs.c +80 -74
  109. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3/router.upbdefs.c +63 -47
  110. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3/router.upbdefs.h +5 -0
  111. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.c +315 -293
  112. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.h +5 -0
  113. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/regex.upbdefs.c +29 -29
  114. data/src/core/ext/xds/xds_bootstrap_grpc.cc +33 -30
  115. data/src/core/ext/xds/xds_bootstrap_grpc.h +5 -13
  116. data/src/core/ext/xds/xds_client_grpc.cc +11 -6
  117. data/src/core/ext/xds/xds_client_grpc.h +16 -2
  118. data/src/core/ext/xds/xds_client_stats.h +10 -0
  119. data/src/core/ext/xds/xds_cluster.cc +26 -16
  120. data/src/core/ext/xds/xds_endpoint.cc +4 -7
  121. data/src/core/ext/xds/xds_health_status.cc +0 -17
  122. data/src/core/ext/xds/xds_health_status.h +5 -25
  123. data/src/core/ext/xds/xds_lb_policy_registry.cc +39 -0
  124. data/src/core/ext/xds/xds_route_config.cc +4 -0
  125. data/src/core/ext/xds/xds_transport_grpc.cc +1 -3
  126. data/src/core/lib/address_utils/parse_address.cc +63 -1
  127. data/src/core/lib/address_utils/parse_address.h +8 -0
  128. data/src/core/lib/address_utils/sockaddr_utils.cc +46 -1
  129. data/src/core/lib/address_utils/sockaddr_utils.h +2 -2
  130. data/src/core/lib/backoff/random_early_detection.h +5 -0
  131. data/src/core/lib/channel/channel_args.cc +21 -10
  132. data/src/core/lib/channel/channel_args.h +3 -0
  133. data/src/core/lib/channel/connected_channel.cc +4 -1
  134. data/src/core/lib/channel/promise_based_filter.h +1 -0
  135. data/src/core/lib/debug/trace.cc +1 -4
  136. data/src/core/lib/event_engine/cf_engine/cf_engine.cc +2 -1
  137. data/src/core/lib/event_engine/cf_engine/cf_engine.h +1 -1
  138. data/src/core/lib/event_engine/event_engine.cc +0 -12
  139. data/src/core/lib/event_engine/forkable.cc +47 -42
  140. data/src/core/lib/event_engine/handle_containers.h +0 -4
  141. data/src/core/lib/event_engine/posix_engine/ev_epoll1_linux.cc +4 -6
  142. data/src/core/lib/event_engine/posix_engine/ev_poll_posix.cc +4 -6
  143. data/src/core/lib/event_engine/posix_engine/posix_endpoint.cc +25 -11
  144. data/src/core/lib/event_engine/posix_engine/posix_endpoint.h +3 -1
  145. data/src/core/lib/event_engine/posix_engine/posix_engine.cc +2 -1
  146. data/src/core/lib/event_engine/posix_engine/posix_engine.h +9 -12
  147. data/src/core/lib/event_engine/posix_engine/posix_engine_listener.cc +66 -27
  148. data/src/core/lib/event_engine/posix_engine/posix_engine_listener.h +5 -0
  149. data/src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.cc +4 -2
  150. data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.cc +42 -2
  151. data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.h +6 -0
  152. data/src/core/lib/event_engine/posix_engine/timer.h +10 -37
  153. data/src/core/lib/event_engine/tcp_socket_utils.cc +67 -7
  154. data/src/core/lib/event_engine/tcp_socket_utils.h +3 -0
  155. data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.cc +90 -37
  156. data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.h +32 -12
  157. data/src/core/lib/event_engine/thready_event_engine/thready_event_engine.cc +12 -21
  158. data/src/core/lib/event_engine/thready_event_engine/thready_event_engine.h +8 -12
  159. data/src/core/lib/event_engine/windows/windows_endpoint.cc +55 -54
  160. data/src/core/lib/event_engine/windows/windows_endpoint.h +15 -12
  161. data/src/core/lib/event_engine/windows/windows_engine.cc +2 -1
  162. data/src/core/lib/event_engine/windows/windows_engine.h +8 -12
  163. data/src/core/lib/experiments/config.cc +60 -22
  164. data/src/core/lib/experiments/config.h +20 -8
  165. data/src/core/lib/experiments/experiments.cc +278 -0
  166. data/src/core/lib/experiments/experiments.h +59 -1
  167. data/src/core/lib/gprpp/dual_ref_counted.h +9 -9
  168. data/src/core/lib/gprpp/fork.cc +8 -9
  169. data/src/core/lib/gprpp/fork.h +6 -5
  170. data/src/core/lib/gprpp/if_list.h +4530 -0
  171. data/src/core/lib/gprpp/orphanable.h +3 -3
  172. data/src/core/lib/gprpp/ref_counted.h +6 -6
  173. data/src/core/lib/gprpp/sorted_pack.h +3 -12
  174. data/src/core/lib/gprpp/status_helper.h +16 -15
  175. data/src/core/lib/gprpp/time.h +12 -0
  176. data/src/core/lib/gprpp/type_list.h +32 -0
  177. data/src/core/lib/http/httpcli.h +6 -9
  178. data/src/core/lib/iomgr/error.cc +32 -2
  179. data/src/core/lib/iomgr/error.h +9 -10
  180. data/src/core/lib/iomgr/ev_epoll1_linux.cc +5 -7
  181. data/src/core/lib/iomgr/ev_poll_posix.cc +6 -5
  182. data/src/core/lib/iomgr/exec_ctx.h +11 -0
  183. data/src/core/lib/iomgr/pollset.h +4 -5
  184. data/src/core/lib/iomgr/port.h +10 -0
  185. data/src/core/lib/iomgr/resolve_address.cc +13 -1
  186. data/src/core/lib/iomgr/resolve_address.h +17 -3
  187. data/src/core/lib/iomgr/sockaddr_posix.h +7 -0
  188. data/src/core/lib/iomgr/socket_utils_common_posix.cc +29 -0
  189. data/src/core/lib/iomgr/socket_utils_posix.cc +2 -0
  190. data/src/core/lib/iomgr/socket_utils_posix.h +6 -0
  191. data/src/core/lib/iomgr/tcp_client_posix.cc +4 -1
  192. data/src/core/lib/iomgr/tcp_posix.cc +21 -4
  193. data/src/core/lib/iomgr/tcp_server_posix.cc +37 -14
  194. data/src/core/lib/iomgr/tcp_server_utils_posix.h +12 -0
  195. data/src/core/lib/iomgr/tcp_server_utils_posix_common.cc +26 -2
  196. data/src/core/lib/iomgr/tcp_windows.cc +1 -3
  197. data/src/core/lib/iomgr/vsock.cc +59 -0
  198. data/src/core/lib/iomgr/vsock.h +38 -0
  199. data/src/core/lib/iomgr/wakeup_fd_posix.h +3 -6
  200. data/src/core/lib/load_balancing/delegating_helper.h +115 -0
  201. data/src/core/lib/load_balancing/lb_policy.h +20 -0
  202. data/src/core/lib/load_balancing/subchannel_interface.h +6 -0
  203. data/src/core/lib/promise/party.h +1 -1
  204. data/src/core/lib/resolver/resolver_factory.h +3 -2
  205. data/src/core/lib/resolver/server_address.cc +9 -94
  206. data/src/core/lib/resolver/server_address.h +10 -64
  207. data/src/core/lib/resource_quota/memory_quota.h +1 -1
  208. data/src/core/lib/security/credentials/channel_creds_registry.h +51 -27
  209. data/src/core/lib/security/credentials/channel_creds_registry_init.cc +169 -9
  210. data/src/core/lib/security/credentials/composite/composite_credentials.cc +1 -1
  211. data/src/core/lib/security/credentials/composite/composite_credentials.h +3 -1
  212. data/src/core/lib/security/credentials/external/external_account_credentials.cc +40 -1
  213. data/src/core/lib/security/credentials/external/external_account_credentials.h +6 -0
  214. data/src/core/lib/security/credentials/fake/fake_credentials.cc +30 -38
  215. data/src/core/lib/security/credentials/fake/fake_credentials.h +28 -0
  216. data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc +8 -0
  217. data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h +5 -1
  218. data/src/core/lib/security/credentials/tls/tls_credentials.cc +1 -1
  219. data/src/core/lib/security/credentials/tls/tls_credentials.h +3 -1
  220. data/src/core/lib/security/security_connector/ssl_utils.cc +2 -1
  221. data/src/core/lib/security/security_connector/ssl_utils.h +1 -1
  222. data/src/core/lib/security/security_connector/tls/tls_security_connector.cc +1 -1
  223. data/src/core/lib/service_config/service_config_call_data.h +5 -0
  224. data/src/core/lib/slice/slice.h +16 -0
  225. data/src/core/lib/surface/call.cc +31 -29
  226. data/src/core/lib/surface/server.h +2 -2
  227. data/src/core/lib/surface/validate_metadata.cc +37 -22
  228. data/src/core/lib/surface/validate_metadata.h +13 -3
  229. data/src/core/lib/surface/version.cc +2 -2
  230. data/src/core/lib/transport/metadata_batch.cc +7 -7
  231. data/src/core/lib/transport/metadata_batch.h +86 -48
  232. data/src/core/lib/transport/parsed_metadata.h +34 -20
  233. data/src/core/lib/transport/simple_slice_based_metadata.h +9 -2
  234. data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.cc +4 -6
  235. data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc +1 -2
  236. data/src/core/tsi/ssl_transport_security.cc +33 -9
  237. data/src/core/tsi/ssl_transport_security.h +13 -1
  238. data/src/ruby/bin/math_pb.rb +24 -18
  239. data/src/ruby/ext/grpc/extconf.rb +19 -18
  240. data/src/ruby/ext/grpc/rb_call.c +62 -39
  241. data/src/ruby/ext/grpc/rb_call_credentials.c +0 -1
  242. data/src/ruby/ext/grpc/rb_channel.c +126 -49
  243. data/src/ruby/ext/grpc/rb_channel.h +1 -0
  244. data/src/ruby/ext/grpc/rb_channel_args.c +16 -2
  245. data/src/ruby/ext/grpc/rb_channel_args.h +4 -0
  246. data/src/ruby/ext/grpc/rb_channel_credentials.c +0 -1
  247. data/src/ruby/ext/grpc/rb_compression_options.c +0 -1
  248. data/src/ruby/ext/grpc/rb_event_thread.c +22 -6
  249. data/src/ruby/ext/grpc/rb_event_thread.h +1 -0
  250. data/src/ruby/ext/grpc/rb_grpc.c +192 -30
  251. data/src/ruby/ext/grpc/rb_grpc.h +8 -2
  252. data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +2 -0
  253. data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +3 -0
  254. data/src/ruby/ext/grpc/rb_server.c +62 -45
  255. data/src/ruby/ext/grpc/rb_server_credentials.c +0 -1
  256. data/src/ruby/ext/grpc/rb_xds_channel_credentials.c +0 -1
  257. data/src/ruby/ext/grpc/rb_xds_server_credentials.c +0 -1
  258. data/src/ruby/lib/grpc/generic/bidi_call.rb +2 -0
  259. data/src/ruby/lib/grpc/version.rb +1 -1
  260. data/src/ruby/pb/grpc/health/v1/health_pb.rb +24 -13
  261. data/src/ruby/pb/src/proto/grpc/testing/empty_pb.rb +24 -3
  262. data/src/ruby/pb/src/proto/grpc/testing/messages_pb.rb +25 -111
  263. data/src/ruby/pb/src/proto/grpc/testing/test_pb.rb +25 -2
  264. data/third_party/boringssl-with-bazel/err_data.c +552 -552
  265. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_strnid.c +5 -5
  266. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_time.c +34 -1
  267. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_utctm.c +4 -1
  268. data/third_party/boringssl-with-bazel/src/crypto/bio/bio.c +3 -3
  269. data/third_party/boringssl-with-bazel/src/crypto/bio/bio_mem.c +7 -8
  270. data/third_party/boringssl-with-bazel/src/crypto/bio/connect.c +2 -2
  271. data/third_party/boringssl-with-bazel/src/crypto/bio/fd.c +2 -2
  272. data/third_party/boringssl-with-bazel/src/crypto/bio/file.c +8 -8
  273. data/third_party/boringssl-with-bazel/src/crypto/bio/socket.c +2 -2
  274. data/third_party/boringssl-with-bazel/src/crypto/bio/socket_helper.c +2 -2
  275. data/third_party/boringssl-with-bazel/src/crypto/chacha/chacha.c +19 -1
  276. data/third_party/boringssl-with-bazel/src/crypto/chacha/internal.h +8 -1
  277. data/third_party/boringssl-with-bazel/src/crypto/conf/conf.c +28 -185
  278. data/third_party/boringssl-with-bazel/src/crypto/conf/conf_def.h +3 -7
  279. data/third_party/boringssl-with-bazel/src/crypto/conf/internal.h +8 -0
  280. data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_apple.c +3 -0
  281. data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519.c +49 -46
  282. data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519_64_adx.c +18 -0
  283. data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519_tables.h +2809 -7417
  284. data/third_party/boringssl-with-bazel/src/crypto/curve25519/internal.h +27 -5
  285. data/third_party/boringssl-with-bazel/src/crypto/dsa/internal.h +20 -0
  286. data/third_party/boringssl-with-bazel/src/crypto/ec_extra/ec_asn1.c +110 -72
  287. data/third_party/boringssl-with-bazel/src/crypto/ec_extra/ec_derive.c +4 -3
  288. data/third_party/boringssl-with-bazel/src/crypto/ec_extra/hash_to_curve.c +15 -14
  289. data/third_party/boringssl-with-bazel/src/crypto/err/err.c +13 -10
  290. data/third_party/boringssl-with-bazel/src/crypto/evp/evp.c +35 -12
  291. data/third_party/boringssl-with-bazel/src/crypto/evp/p_ec.c +2 -4
  292. data/third_party/boringssl-with-bazel/src/crypto/evp/p_ec_asn1.c +3 -7
  293. data/third_party/boringssl-with-bazel/src/crypto/evp/pbkdf.c +3 -3
  294. data/third_party/boringssl-with-bazel/src/crypto/evp/print.c +7 -6
  295. data/third_party/boringssl-with-bazel/src/crypto/ex_data.c +34 -72
  296. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm.c +1 -1
  297. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div.c +12 -5
  298. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/gcd.c +5 -6
  299. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/internal.h +12 -6
  300. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery.c +17 -18
  301. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery_inv.c +51 -15
  302. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/rsaz_exp.c +7 -7
  303. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/delocate.h +5 -6
  304. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/internal.h +2 -0
  305. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/builtin_curves.h +277 -0
  306. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec.c +180 -404
  307. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_key.c +3 -3
  308. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_montgomery.c +24 -57
  309. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/felem.c +17 -13
  310. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/internal.h +33 -71
  311. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/oct.c +18 -17
  312. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p224-64.c +5 -7
  313. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-nistz.c +15 -18
  314. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256.c +9 -11
  315. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/scalar.c +24 -24
  316. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/simple.c +11 -27
  317. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/simple_mul.c +8 -8
  318. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/wnaf.c +4 -4
  319. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/ecdsa.c +9 -3
  320. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/hkdf/hkdf.c +1 -1
  321. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/fork_detect.c +40 -26
  322. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/internal.h +21 -7
  323. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/rand.c +38 -19
  324. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/urandom.c +2 -29
  325. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/internal.h +55 -0
  326. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa_impl.c +33 -52
  327. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/self_check.c +3 -8
  328. data/third_party/boringssl-with-bazel/src/crypto/internal.h +198 -79
  329. data/third_party/boringssl-with-bazel/src/crypto/kyber/kyber.c +5 -4
  330. data/third_party/boringssl-with-bazel/src/crypto/mem.c +7 -8
  331. data/third_party/boringssl-with-bazel/src/crypto/obj/obj.c +19 -23
  332. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/internal.h +3 -3
  333. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/p5_pbev2.c +3 -3
  334. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8.c +7 -7
  335. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8_x509.c +8 -5
  336. data/third_party/boringssl-with-bazel/src/crypto/pool/internal.h +1 -0
  337. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/deterministic.c +7 -6
  338. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/forkunsafe.c +6 -12
  339. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/getentropy.c +48 -0
  340. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/{fuchsia.c → ios.c} +8 -8
  341. data/third_party/boringssl-with-bazel/src/crypto/{refcount_no_threads.c → rand_extra/trusty.c} +15 -19
  342. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/windows.c +41 -19
  343. data/third_party/boringssl-with-bazel/src/crypto/{refcount_c11.c → refcount.c} +11 -17
  344. data/third_party/boringssl-with-bazel/src/crypto/stack/stack.c +147 -72
  345. data/third_party/boringssl-with-bazel/src/crypto/thread_none.c +0 -8
  346. data/third_party/boringssl-with-bazel/src/crypto/thread_pthread.c +6 -35
  347. data/third_party/boringssl-with-bazel/src/crypto/thread_win.c +5 -26
  348. data/third_party/boringssl-with-bazel/src/crypto/trust_token/pmbtoken.c +14 -18
  349. data/third_party/boringssl-with-bazel/src/crypto/trust_token/voprf.c +54 -143
  350. data/third_party/boringssl-with-bazel/src/crypto/x509/by_dir.c +7 -13
  351. data/third_party/boringssl-with-bazel/src/crypto/x509/internal.h +1 -1
  352. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_att.c +1 -1
  353. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_lu.c +2 -4
  354. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_req.c +2 -2
  355. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_trs.c +1 -1
  356. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_v3.c +8 -12
  357. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vfy.c +19 -20
  358. data/third_party/boringssl-with-bazel/src/crypto/x509/x509name.c +11 -15
  359. data/third_party/boringssl-with-bazel/src/crypto/x509/x_crl.c +5 -5
  360. data/third_party/boringssl-with-bazel/src/crypto/x509/x_name.c +1 -1
  361. data/third_party/boringssl-with-bazel/src/crypto/x509/x_pubkey.c +7 -7
  362. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_lib.c +2 -3
  363. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_purp.c +4 -6
  364. data/third_party/boringssl-with-bazel/src/include/openssl/arm_arch.h +4 -119
  365. data/third_party/boringssl-with-bazel/src/include/openssl/asm_base.h +207 -0
  366. data/third_party/boringssl-with-bazel/src/include/openssl/asn1.h +5 -0
  367. data/third_party/boringssl-with-bazel/src/include/openssl/base.h +2 -116
  368. data/third_party/boringssl-with-bazel/src/include/openssl/bn.h +0 -2
  369. data/third_party/boringssl-with-bazel/src/include/openssl/chacha.h +6 -0
  370. data/third_party/boringssl-with-bazel/src/include/openssl/conf.h +5 -1
  371. data/third_party/boringssl-with-bazel/src/include/openssl/dsa.h +0 -21
  372. data/third_party/boringssl-with-bazel/src/include/openssl/ec.h +21 -2
  373. data/third_party/boringssl-with-bazel/src/include/openssl/ec_key.h +19 -6
  374. data/third_party/boringssl-with-bazel/src/include/openssl/evp.h +11 -7
  375. data/third_party/boringssl-with-bazel/src/include/openssl/rand.h +13 -14
  376. data/third_party/boringssl-with-bazel/src/include/openssl/rsa.h +0 -61
  377. data/third_party/boringssl-with-bazel/src/include/openssl/ssl.h +127 -81
  378. data/third_party/boringssl-with-bazel/src/include/openssl/stack.h +224 -209
  379. data/third_party/boringssl-with-bazel/src/include/openssl/target.h +154 -0
  380. data/third_party/boringssl-with-bazel/src/include/openssl/thread.h +1 -29
  381. data/third_party/boringssl-with-bazel/src/include/openssl/x509.h +4 -4
  382. data/third_party/boringssl-with-bazel/src/include/openssl/x509v3.h +3 -2
  383. data/third_party/boringssl-with-bazel/src/ssl/extensions.cc +9 -65
  384. data/third_party/boringssl-with-bazel/src/ssl/handoff.cc +20 -20
  385. data/third_party/boringssl-with-bazel/src/ssl/handshake_server.cc +1 -1
  386. data/third_party/boringssl-with-bazel/src/ssl/internal.h +4 -11
  387. data/third_party/boringssl-with-bazel/src/ssl/ssl_cipher.cc +24 -18
  388. data/third_party/boringssl-with-bazel/src/ssl/ssl_key_share.cc +37 -30
  389. data/third_party/boringssl-with-bazel/src/ssl/ssl_lib.cc +125 -26
  390. data/third_party/boringssl-with-bazel/src/ssl/tls13_client.cc +2 -3
  391. data/third_party/boringssl-with-bazel/src/third_party/fiat/curve25519_64_adx.h +691 -0
  392. data/third_party/upb/upb/collections/map.c +3 -3
  393. metadata +30 -13
  394. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_attributes.cc +0 -42
  395. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_attributes.h +0 -64
  396. data/src/core/ext/transport/chttp2/transport/stream_map.cc +0 -177
  397. data/src/core/ext/transport/chttp2/transport/stream_map.h +0 -68
  398. data/third_party/boringssl-with-bazel/src/crypto/refcount_win.c +0 -89
@@ -51,6 +51,7 @@
51
51
  #include "src/core/lib/iomgr/tcp_posix.h"
52
52
  #include "src/core/lib/iomgr/timer.h"
53
53
  #include "src/core/lib/iomgr/unix_sockets_posix.h"
54
+ #include "src/core/lib/iomgr/vsock.h"
54
55
  #include "src/core/lib/slice/slice_internal.h"
55
56
 
56
57
  extern grpc_core::TraceFlag grpc_tcp_trace;
@@ -111,11 +112,13 @@ static grpc_error_handle prepare_socket(
111
112
  err = grpc_set_socket_rcvbuf(fd, options.tcp_receive_buffer_size);
112
113
  if (!err.ok()) goto error;
113
114
  }
114
- if (!grpc_is_unix_socket(addr)) {
115
+ if (!grpc_is_unix_socket(addr) && !grpc_is_vsock(addr)) {
115
116
  err = grpc_set_socket_low_latency(fd, 1);
116
117
  if (!err.ok()) goto error;
117
118
  err = grpc_set_socket_reuse_addr(fd, 1);
118
119
  if (!err.ok()) goto error;
120
+ err = grpc_set_socket_dscp(fd, options.dscp);
121
+ if (!err.ok()) goto error;
119
122
  err = grpc_set_socket_tcp_user_timeout(fd, options, true /* is_client */);
120
123
  if (!err.ok()) goto error;
121
124
  }
@@ -729,6 +729,9 @@ static void tcp_shutdown(grpc_endpoint* ep, grpc_error_handle why) {
729
729
  grpc_tcp* tcp = reinterpret_cast<grpc_tcp*>(ep);
730
730
  ZerocopyDisableAndWaitForRemaining(tcp);
731
731
  grpc_fd_shutdown(tcp->em_fd, why);
732
+ tcp->read_mu.Lock();
733
+ tcp->memory_owner.Reset();
734
+ tcp->read_mu.Unlock();
732
735
  }
733
736
 
734
737
  static void tcp_free(grpc_tcp* tcp) {
@@ -775,6 +778,9 @@ static void tcp_destroy(grpc_endpoint* ep) {
775
778
  gpr_atm_no_barrier_store(&tcp->stop_error_notification, true);
776
779
  grpc_fd_set_error(tcp->em_fd);
777
780
  }
781
+ tcp->read_mu.Lock();
782
+ tcp->memory_owner.Reset();
783
+ tcp->read_mu.Unlock();
778
784
  TCP_UNREF(tcp, "destroy");
779
785
  }
780
786
 
@@ -795,11 +801,14 @@ static void maybe_post_reclaimer(grpc_tcp* tcp)
795
801
  ABSL_EXCLUSIVE_LOCKS_REQUIRED(tcp->read_mu) {
796
802
  if (!tcp->has_posted_reclaimer) {
797
803
  tcp->has_posted_reclaimer = true;
804
+ TCP_REF(tcp, "posted_reclaimer");
798
805
  tcp->memory_owner.PostReclaimer(
799
806
  grpc_core::ReclamationPass::kBenign,
800
807
  [tcp](absl::optional<grpc_core::ReclamationSweep> sweep) {
801
- if (!sweep.has_value()) return;
802
- perform_reclamation(tcp);
808
+ if (sweep.has_value()) {
809
+ perform_reclamation(tcp);
810
+ }
811
+ TCP_UNREF(tcp, "posted_reclaimer");
803
812
  });
804
813
  }
805
814
  }
@@ -1088,7 +1097,7 @@ static void tcp_handle_read(void* arg /* grpc_tcp */, grpc_error_handle error) {
1088
1097
  }
1089
1098
  tcp->read_mu.Lock();
1090
1099
  grpc_error_handle tcp_read_error;
1091
- if (GPR_LIKELY(error.ok())) {
1100
+ if (GPR_LIKELY(error.ok()) && tcp->memory_owner.is_valid()) {
1092
1101
  maybe_make_read_slices(tcp);
1093
1102
  if (!tcp_do_read(tcp, &tcp_read_error)) {
1094
1103
  // Maybe update rcv lowat value based on the number of bytes read in this
@@ -1101,7 +1110,12 @@ static void tcp_handle_read(void* arg /* grpc_tcp */, grpc_error_handle error) {
1101
1110
  }
1102
1111
  tcp_trace_read(tcp, tcp_read_error);
1103
1112
  } else {
1104
- tcp_read_error = error;
1113
+ if (!tcp->memory_owner.is_valid() && error.ok()) {
1114
+ tcp_read_error =
1115
+ tcp_annotate_error(absl::InternalError("Socket closed"), tcp);
1116
+ } else {
1117
+ tcp_read_error = error;
1118
+ }
1105
1119
  grpc_slice_buffer_reset_and_unref(tcp->incoming_buffer);
1106
1120
  grpc_slice_buffer_reset_and_unref(&tcp->last_read_buffer);
1107
1121
  }
@@ -2031,6 +2045,9 @@ void grpc_tcp_destroy_and_release_fd(grpc_endpoint* ep, int* fd,
2031
2045
  gpr_atm_no_barrier_store(&tcp->stop_error_notification, true);
2032
2046
  grpc_fd_set_error(tcp->em_fd);
2033
2047
  }
2048
+ tcp->read_mu.Lock();
2049
+ tcp->memory_owner.Reset();
2050
+ tcp->read_mu.Unlock();
2034
2051
  TCP_UNREF(tcp, "destroy");
2035
2052
  }
2036
2053
 
@@ -18,12 +18,13 @@
18
18
 
19
19
  #include <grpc/support/port_platform.h>
20
20
 
21
+ #include <utility>
22
+
21
23
  #include <grpc/support/atm.h>
22
24
 
23
25
  // FIXME: "posix" files shouldn't be depending on _GNU_SOURCE
24
26
  #ifndef _GNU_SOURCE
25
27
  #define _GNU_SOURCE
26
- #include <grpc/event_engine/event_engine.h>
27
28
  #endif
28
29
 
29
30
  #include "src/core/lib/iomgr/port.h"
@@ -48,6 +49,7 @@
48
49
 
49
50
  #include <grpc/byte_buffer.h>
50
51
  #include <grpc/event_engine/endpoint_config.h>
52
+ #include <grpc/event_engine/event_engine.h>
51
53
  #include <grpc/support/alloc.h>
52
54
  #include <grpc/support/log.h>
53
55
  #include <grpc/support/sync.h>
@@ -74,10 +76,13 @@
74
76
  #include "src/core/lib/iomgr/tcp_server.h"
75
77
  #include "src/core/lib/iomgr/tcp_server_utils_posix.h"
76
78
  #include "src/core/lib/iomgr/unix_sockets_posix.h"
79
+ #include "src/core/lib/iomgr/vsock.h"
77
80
  #include "src/core/lib/resource_quota/api.h"
78
81
  #include "src/core/lib/transport/error_utils.h"
79
82
 
80
83
  static std::atomic<int64_t> num_dropped_connections{0};
84
+ static constexpr grpc_core::Duration kRetryAcceptWaitTime{
85
+ grpc_core::Duration::Seconds(1)};
81
86
 
82
87
  using ::grpc_event_engine::experimental::EndpointConfig;
83
88
  using ::grpc_event_engine::experimental::EventEngine;
@@ -361,22 +366,38 @@ static void on_read(void* arg, grpc_error_handle err) {
361
366
  if (fd < 0) {
362
367
  if (errno == EINTR) {
363
368
  continue;
364
- } else if (errno == EAGAIN || errno == ECONNABORTED ||
365
- errno == EWOULDBLOCK) {
369
+ }
370
+ // When the process runs out of fds, accept4() returns EMFILE. When this
371
+ // happens, the connection is left in the accept queue until either a
372
+ // read event triggers the on_read callback, or time has passed and the
373
+ // accept should be re-tried regardless. This callback is not cancelled,
374
+ // so a spurious wakeup may occur even when there's nothing to accept.
375
+ // This is not a performant code path, but if an fd limit has been
376
+ // reached, the system is likely in an unhappy state regardless.
377
+ if (errno == EMFILE) {
378
+ GRPC_LOG_EVERY_N_SEC(1, GPR_ERROR, "%s",
379
+ "File descriptor limit reached. Retrying.");
380
+ grpc_fd_notify_on_read(sp->emfd, &sp->read_closure);
381
+ if (gpr_atm_full_xchg(&sp->retry_timer_armed, true)) return;
382
+ grpc_timer_init(&sp->retry_timer,
383
+ grpc_core::Timestamp::Now() + kRetryAcceptWaitTime,
384
+ &sp->retry_closure);
385
+ return;
386
+ }
387
+ if (errno == EAGAIN || errno == ECONNABORTED || errno == EWOULDBLOCK) {
366
388
  grpc_fd_notify_on_read(sp->emfd, &sp->read_closure);
367
389
  return;
390
+ }
391
+ gpr_mu_lock(&sp->server->mu);
392
+ if (!sp->server->shutdown_listeners) {
393
+ gpr_log(GPR_ERROR, "Failed accept4: %s",
394
+ grpc_core::StrError(errno).c_str());
368
395
  } else {
369
- gpr_mu_lock(&sp->server->mu);
370
- if (!sp->server->shutdown_listeners) {
371
- gpr_log(GPR_ERROR, "Failed accept4: %s",
372
- grpc_core::StrError(errno).c_str());
373
- } else {
374
- // if we have shutdown listeners, accept4 could fail, and we
375
- // needn't notify users
376
- }
377
- gpr_mu_unlock(&sp->server->mu);
378
- goto error;
396
+ // if we have shutdown listeners, accept4 could fail, and we
397
+ // needn't notify users
379
398
  }
399
+ gpr_mu_unlock(&sp->server->mu);
400
+ goto error;
380
401
  }
381
402
 
382
403
  if (sp->server->memory_quota->IsMemoryPressureHigh()) {
@@ -569,6 +590,7 @@ static grpc_error_handle clone_port(grpc_tcp_listener* listener,
569
590
  sp->port_index = listener->port_index;
570
591
  sp->fd_index = listener->fd_index + count - i;
571
592
  GPR_ASSERT(sp->emfd);
593
+ grpc_tcp_server_listener_initialize_retry_timer(sp);
572
594
  while (listener->server->tail->next != nullptr) {
573
595
  listener->server->tail = listener->server->tail->next;
574
596
  }
@@ -755,7 +777,7 @@ static void tcp_server_start(grpc_tcp_server* s,
755
777
  sp = s->head;
756
778
  while (sp != nullptr) {
757
779
  if (s->so_reuseport && !grpc_is_unix_socket(&sp->addr) &&
758
- pollsets->size() > 1) {
780
+ !grpc_is_vsock(&sp->addr) && pollsets->size() > 1) {
759
781
  GPR_ASSERT(GRPC_LOG_IF_ERROR(
760
782
  "clone_port", clone_port(sp, (unsigned)(pollsets->size() - 1))));
761
783
  for (i = 0; i < pollsets->size(); i++) {
@@ -817,6 +839,7 @@ static void tcp_server_shutdown_listeners(grpc_tcp_server* s) {
817
839
  if (s->active_ports) {
818
840
  grpc_tcp_listener* sp;
819
841
  for (sp = s->head; sp; sp = sp->next) {
842
+ grpc_timer_cancel(&sp->retry_timer);
820
843
  grpc_fd_shutdown(sp->emfd, GRPC_ERROR_CREATE("Server shutdown"));
821
844
  }
822
845
  }
@@ -30,6 +30,7 @@
30
30
  #include "src/core/lib/iomgr/resolve_address.h"
31
31
  #include "src/core/lib/iomgr/socket_utils_posix.h"
32
32
  #include "src/core/lib/iomgr/tcp_server.h"
33
+ #include "src/core/lib/iomgr/timer.h"
33
34
  #include "src/core/lib/resource_quota/memory_quota.h"
34
35
 
35
36
  // one listening port
@@ -52,6 +53,11 @@ typedef struct grpc_tcp_listener {
52
53
  // identified while iterating through 'next'.
53
54
  struct grpc_tcp_listener* sibling;
54
55
  int is_sibling;
56
+ // If an accept4() call fails, a timer is started to drain the accept queue in
57
+ // case no further connection attempts reach the gRPC server.
58
+ grpc_closure retry_closure;
59
+ grpc_timer retry_timer;
60
+ gpr_atm retry_timer_armed;
55
61
  } grpc_tcp_listener;
56
62
 
57
63
  // the overall server
@@ -139,4 +145,10 @@ grpc_error_handle grpc_tcp_server_prepare_socket(
139
145
  // Ruturn true if the platform supports ifaddrs
140
146
  bool grpc_tcp_server_have_ifaddrs(void);
141
147
 
148
+ // Initialize (but don't start) the timer and callback to retry accept4() on a
149
+ // listening socket after file descriptors have been exhausted. This must be
150
+ // called when creating a new listener.
151
+ void grpc_tcp_server_listener_initialize_retry_timer(
152
+ grpc_tcp_listener* listener);
153
+
142
154
  #endif // GRPC_SRC_CORE_LIB_IOMGR_TCP_SERVER_UTILS_POSIX_H
@@ -18,6 +18,8 @@
18
18
 
19
19
  #include <grpc/support/port_platform.h>
20
20
 
21
+ #include <grpc/support/atm.h>
22
+
21
23
  #include "src/core/lib/iomgr/port.h"
22
24
 
23
25
  #ifdef GRPC_POSIX_SOCKET_TCP_SERVER_UTILS_COMMON
@@ -42,6 +44,7 @@
42
44
  #include "src/core/lib/iomgr/sockaddr.h"
43
45
  #include "src/core/lib/iomgr/tcp_server_utils_posix.h"
44
46
  #include "src/core/lib/iomgr/unix_sockets_posix.h"
47
+ #include "src/core/lib/iomgr/vsock.h"
45
48
 
46
49
  #define MIN_SAFE_ACCEPT_QUEUE_SIZE 100
47
50
 
@@ -81,6 +84,24 @@ static int get_max_accept_queue_size(void) {
81
84
  return s_max_accept_queue_size;
82
85
  }
83
86
 
87
+ static void listener_retry_timer_cb(void* arg, grpc_error_handle err) {
88
+ // Do nothing if cancelled.
89
+ if (!err.ok()) return;
90
+ grpc_tcp_listener* listener = static_cast<grpc_tcp_listener*>(arg);
91
+ gpr_atm_no_barrier_store(&listener->retry_timer_armed, false);
92
+ if (!grpc_fd_is_shutdown(listener->emfd)) {
93
+ grpc_fd_set_readable(listener->emfd);
94
+ }
95
+ }
96
+
97
+ void grpc_tcp_server_listener_initialize_retry_timer(
98
+ grpc_tcp_listener* listener) {
99
+ gpr_atm_no_barrier_store(&listener->retry_timer_armed, false);
100
+ grpc_timer_init_unset(&listener->retry_timer);
101
+ GRPC_CLOSURE_INIT(&listener->retry_closure, listener_retry_timer_cb, listener,
102
+ grpc_schedule_on_exec_ctx);
103
+ }
104
+
84
105
  static grpc_error_handle add_socket_to_server(grpc_tcp_server* s, int fd,
85
106
  const grpc_resolved_address* addr,
86
107
  unsigned port_index,
@@ -112,6 +133,7 @@ static grpc_error_handle add_socket_to_server(grpc_tcp_server* s, int fd,
112
133
  sp->server = s;
113
134
  sp->fd = fd;
114
135
  sp->emfd = grpc_fd_create(fd, name.c_str(), true);
136
+ grpc_tcp_server_listener_initialize_retry_timer(sp);
115
137
 
116
138
  // Check and set fd as prellocated
117
139
  if (grpc_tcp_server_pre_allocated_fd(s) == fd) {
@@ -190,7 +212,7 @@ grpc_error_handle grpc_tcp_server_prepare_socket(
190
212
 
191
213
  GPR_ASSERT(fd >= 0);
192
214
 
193
- if (so_reuseport && !grpc_is_unix_socket(addr)) {
215
+ if (so_reuseport && !grpc_is_unix_socket(addr) && !grpc_is_vsock(addr)) {
194
216
  err = grpc_set_socket_reuse_port(fd, 1);
195
217
  if (!err.ok()) goto error;
196
218
  }
@@ -206,11 +228,13 @@ grpc_error_handle grpc_tcp_server_prepare_socket(
206
228
  if (!err.ok()) goto error;
207
229
  err = grpc_set_socket_cloexec(fd, 1);
208
230
  if (!err.ok()) goto error;
209
- if (!grpc_is_unix_socket(addr)) {
231
+ if (!grpc_is_unix_socket(addr) && !grpc_is_vsock(addr)) {
210
232
  err = grpc_set_socket_low_latency(fd, 1);
211
233
  if (!err.ok()) goto error;
212
234
  err = grpc_set_socket_reuse_addr(fd, 1);
213
235
  if (!err.ok()) goto error;
236
+ err = grpc_set_socket_dscp(fd, s->options.dscp);
237
+ if (!err.ok()) goto error;
214
238
  err =
215
239
  grpc_set_socket_tcp_user_timeout(fd, s->options, false /* is_client */);
216
240
  if (!err.ok()) goto error;
@@ -186,9 +186,7 @@ static void on_read(void* tcpp, grpc_error_handle error) {
186
186
 
187
187
  if (error.ok()) {
188
188
  if (info->wsa_error != 0 && !tcp->shutting_down) {
189
- char* utf8_message = gpr_format_message(info->wsa_error);
190
- error = GRPC_ERROR_CREATE(utf8_message);
191
- gpr_free(utf8_message);
189
+ error = GRPC_WSA_ERROR(info->wsa_error, "IOCP/Socket");
192
190
  grpc_slice_buffer_reset_and_unref(tcp->read_slices);
193
191
  } else {
194
192
  if (info->bytes_transferred != 0 && !tcp->shutting_down) {
@@ -0,0 +1,59 @@
1
+ //
2
+ //
3
+ // Copyright 2023 gRPC authors.
4
+ //
5
+ // Licensed under the Apache License, Version 2.0 (the "License");
6
+ // you may not use this file except in compliance with the License.
7
+ // You may obtain a copy of the License at
8
+ //
9
+ // http://www.apache.org/licenses/LICENSE-2.0
10
+ //
11
+ // Unless required by applicable law or agreed to in writing, software
12
+ // distributed under the License is distributed on an "AS IS" BASIS,
13
+ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ // See the License for the specific language governing permissions and
15
+ // limitations under the License.
16
+ //
17
+ //
18
+ #include <grpc/support/port_platform.h>
19
+
20
+ #include "src/core/lib/iomgr/vsock.h"
21
+
22
+ #ifdef GRPC_HAVE_VSOCK
23
+
24
+ #include <string.h>
25
+ #include <sys/stat.h>
26
+ #include <sys/types.h>
27
+
28
+ #include "absl/strings/str_cat.h"
29
+
30
+ #include <grpc/support/alloc.h>
31
+ #include <grpc/support/log.h>
32
+
33
+ #include "src/core/lib/address_utils/parse_address.h"
34
+ #include "src/core/lib/gpr/useful.h"
35
+ #include "src/core/lib/gprpp/crash.h"
36
+ #include "src/core/lib/iomgr/sockaddr.h"
37
+ #include "src/core/lib/transport/error_utils.h"
38
+
39
+ absl::StatusOr<std::vector<grpc_resolved_address>> grpc_resolve_vsock_address(
40
+ absl::string_view name) {
41
+ grpc_resolved_address addr;
42
+ grpc_error_handle error = grpc_core::VSockaddrPopulate(name, &addr);
43
+ GRPC_RETURN_IF_ERROR(error);
44
+ return std::vector<grpc_resolved_address>({addr});
45
+ }
46
+
47
+ int grpc_is_vsock(const grpc_resolved_address* resolved_addr) {
48
+ const grpc_sockaddr* addr =
49
+ reinterpret_cast<const grpc_sockaddr*>(resolved_addr->addr);
50
+ return addr->sa_family == AF_VSOCK;
51
+ }
52
+ #else
53
+ absl::StatusOr<std::vector<grpc_resolved_address>> grpc_resolve_vsock_address(
54
+ absl::string_view /*name*/) {
55
+ return absl::InvalidArgumentError("VSOCK is not supported.");
56
+ }
57
+
58
+ int grpc_is_vsock(const grpc_resolved_address* /*resolved_addr*/) { return 0; }
59
+ #endif
@@ -0,0 +1,38 @@
1
+ //
2
+ //
3
+ // Copyright 2023 gRPC authors.
4
+ //
5
+ // Licensed under the Apache License, Version 2.0 (the "License");
6
+ // you may not use this file except in compliance with the License.
7
+ // You may obtain a copy of the License at
8
+ //
9
+ // http://www.apache.org/licenses/LICENSE-2.0
10
+ //
11
+ // Unless required by applicable law or agreed to in writing, software
12
+ // distributed under the License is distributed on an "AS IS" BASIS,
13
+ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ // See the License for the specific language governing permissions and
15
+ // limitations under the License.
16
+ //
17
+ //
18
+
19
+ #ifndef GRPC_SRC_CORE_LIB_IOMGR_VSOCK_H
20
+ #define GRPC_SRC_CORE_LIB_IOMGR_VSOCK_H
21
+
22
+ #include <grpc/support/port_platform.h>
23
+
24
+ #include <string>
25
+
26
+ #include "absl/strings/string_view.h"
27
+
28
+ #include <grpc/support/string_util.h>
29
+
30
+ #include "src/core/lib/iomgr/port.h"
31
+ #include "src/core/lib/iomgr/resolve_address.h"
32
+
33
+ absl::StatusOr<std::vector<grpc_resolved_address>> grpc_resolve_vsock_address(
34
+ absl::string_view name);
35
+
36
+ int grpc_is_vsock(const grpc_resolved_address* resolved_addr);
37
+
38
+ #endif /* GRPC_SRC_CORE_LIB_IOMGR_VSOCK_H */
@@ -81,12 +81,9 @@ extern int grpc_allow_pipe_wakeup_fd;
81
81
 
82
82
  #define GRPC_WAKEUP_FD_GET_READ_FD(fd_info) ((fd_info)->read_fd)
83
83
 
84
- grpc_error_handle grpc_wakeup_fd_init(grpc_wakeup_fd* fd_info)
85
- GRPC_MUST_USE_RESULT;
86
- grpc_error_handle grpc_wakeup_fd_consume_wakeup(grpc_wakeup_fd* fd_info)
87
- GRPC_MUST_USE_RESULT;
88
- grpc_error_handle grpc_wakeup_fd_wakeup(grpc_wakeup_fd* fd_info)
89
- GRPC_MUST_USE_RESULT;
84
+ grpc_error_handle grpc_wakeup_fd_init(grpc_wakeup_fd* fd_info);
85
+ grpc_error_handle grpc_wakeup_fd_consume_wakeup(grpc_wakeup_fd* fd_info);
86
+ grpc_error_handle grpc_wakeup_fd_wakeup(grpc_wakeup_fd* fd_info);
90
87
  void grpc_wakeup_fd_destroy(grpc_wakeup_fd* fd_info);
91
88
 
92
89
  // Defined in some specialized implementation's .c file, or by
@@ -0,0 +1,115 @@
1
+ //
2
+ // Copyright 2023 gRPC authors.
3
+ //
4
+ // Licensed under the Apache License, Version 2.0 (the "License");
5
+ // you may not use this file except in compliance with the License.
6
+ // You may obtain a copy of the License at
7
+ //
8
+ // http://www.apache.org/licenses/LICENSE-2.0
9
+ //
10
+ // Unless required by applicable law or agreed to in writing, software
11
+ // distributed under the License is distributed on an "AS IS" BASIS,
12
+ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ // See the License for the specific language governing permissions and
14
+ // limitations under the License.
15
+ //
16
+
17
+ #ifndef GRPC_SRC_CORE_LIB_LOAD_BALANCING_DELEGATING_HELPER_H
18
+ #define GRPC_SRC_CORE_LIB_LOAD_BALANCING_DELEGATING_HELPER_H
19
+
20
+ #include <grpc/support/port_platform.h>
21
+
22
+ #include <utility>
23
+
24
+ #include "absl/status/status.h"
25
+ #include "absl/strings/string_view.h"
26
+
27
+ #include <grpc/event_engine/event_engine.h>
28
+ #include <grpc/grpc.h>
29
+ #include <grpc/impl/connectivity_state.h>
30
+
31
+ #include "src/core/lib/channel/channel_args.h"
32
+ #include "src/core/lib/gprpp/debug_location.h"
33
+ #include "src/core/lib/gprpp/ref_counted_ptr.h"
34
+ #include "src/core/lib/load_balancing/lb_policy.h"
35
+ #include "src/core/lib/load_balancing/subchannel_interface.h"
36
+ #include "src/core/lib/resolver/server_address.h"
37
+ #include "src/core/lib/security/credentials/credentials.h"
38
+
39
+ namespace grpc_core {
40
+
41
+ /// A helper for use in parent policies. All methods delegate to a
42
+ /// parent policy's helper unless otherwise overridden.
43
+ class LoadBalancingPolicy::DelegatingChannelControlHelper
44
+ : public LoadBalancingPolicy::ChannelControlHelper {
45
+ public:
46
+ RefCountedPtr<SubchannelInterface> CreateSubchannel(
47
+ ServerAddress address, const ChannelArgs& args) override {
48
+ return parent_helper()->CreateSubchannel(std::move(address), args);
49
+ }
50
+
51
+ void UpdateState(grpc_connectivity_state state, const absl::Status& status,
52
+ RefCountedPtr<SubchannelPicker> picker) override {
53
+ parent_helper()->UpdateState(state, status, std::move(picker));
54
+ }
55
+
56
+ void RequestReresolution() override {
57
+ parent_helper()->RequestReresolution();
58
+ }
59
+
60
+ absl::string_view GetAuthority() override {
61
+ return parent_helper()->GetAuthority();
62
+ }
63
+
64
+ RefCountedPtr<grpc_channel_credentials> GetChannelCredentials() override {
65
+ return parent_helper()->GetChannelCredentials();
66
+ }
67
+
68
+ RefCountedPtr<grpc_channel_credentials> GetUnsafeChannelCredentials()
69
+ override {
70
+ return parent_helper()->GetUnsafeChannelCredentials();
71
+ }
72
+
73
+ grpc_event_engine::experimental::EventEngine* GetEventEngine() override {
74
+ return parent_helper()->GetEventEngine();
75
+ }
76
+
77
+ void AddTraceEvent(TraceSeverity severity,
78
+ absl::string_view message) override {
79
+ parent_helper()->AddTraceEvent(severity, message);
80
+ }
81
+
82
+ private:
83
+ /// Returns the parent helper that we should delegate to by default.
84
+ virtual ChannelControlHelper* parent_helper() const = 0;
85
+ };
86
+
87
+ /// A delegating helper that owns a ref to the parent policy.
88
+ template <typename ParentPolicy>
89
+ class LoadBalancingPolicy::ParentOwningDelegatingChannelControlHelper
90
+ : public LoadBalancingPolicy::DelegatingChannelControlHelper {
91
+ public:
92
+ explicit ParentOwningDelegatingChannelControlHelper(
93
+ RefCountedPtr<ParentPolicy> parent)
94
+ : parent_(std::move(parent)) {}
95
+
96
+ ~ParentOwningDelegatingChannelControlHelper() override {
97
+ parent_.reset(DEBUG_LOCATION, "Helper");
98
+ }
99
+
100
+ protected:
101
+ ParentPolicy* parent() const {
102
+ return static_cast<ParentPolicy*>(parent_.get());
103
+ }
104
+
105
+ ChannelControlHelper* parent_helper() const override {
106
+ return parent_->channel_control_helper();
107
+ }
108
+
109
+ private:
110
+ RefCountedPtr<LoadBalancingPolicy> parent_;
111
+ };
112
+
113
+ } // namespace grpc_core
114
+
115
+ #endif // GRPC_SRC_CORE_LIB_LOAD_BALANCING_DELEGATING_HELPER_H
@@ -35,6 +35,7 @@
35
35
  #include "absl/types/variant.h"
36
36
 
37
37
  #include <grpc/event_engine/event_engine.h>
38
+ #include <grpc/grpc.h>
38
39
  #include <grpc/impl/connectivity_state.h>
39
40
 
40
41
  #include "src/core/ext/filters/client_channel/lb_policy/backend_metric_data.h"
@@ -297,6 +298,20 @@ class LoadBalancingPolicy : public InternallyRefCounted<LoadBalancingPolicy> {
297
298
  /// Returns the channel authority.
298
299
  virtual absl::string_view GetAuthority() = 0;
299
300
 
301
+ /// Returns the channel credentials from the parent channel. This can
302
+ /// be used to create a control-plane channel inside an LB policy.
303
+ virtual RefCountedPtr<grpc_channel_credentials> GetChannelCredentials() = 0;
304
+
305
+ /// Returns the UNSAFE ChannelCredentials used to construct the channel,
306
+ /// including bearer tokens. LB policies should generally have no use for
307
+ /// these credentials, and use of them is heavily discouraged. These must
308
+ /// be used VERY carefully to avoid sending bearer tokens to untrusted
309
+ /// servers, as the server could then impersonate the client. Generally,
310
+ /// it is safe to use these credentials only when communicating with the
311
+ /// backends.
312
+ virtual RefCountedPtr<grpc_channel_credentials>
313
+ GetUnsafeChannelCredentials() = 0;
314
+
300
315
  /// Returns the EventEngine to use for timers and async work.
301
316
  virtual grpc_event_engine::experimental::EventEngine* GetEventEngine() = 0;
302
317
 
@@ -306,6 +321,11 @@ class LoadBalancingPolicy : public InternallyRefCounted<LoadBalancingPolicy> {
306
321
  absl::string_view message) = 0;
307
322
  };
308
323
 
324
+ class DelegatingChannelControlHelper;
325
+
326
+ template <typename ParentPolicy>
327
+ class ParentOwningDelegatingChannelControlHelper;
328
+
309
329
  /// Interface for configuration data used by an LB policy implementation.
310
330
  /// Individual implementations will create a subclass that adds methods to
311
331
  /// return the parameters they need.
@@ -97,6 +97,9 @@ class SubchannelInterface : public DualRefCounted<SubchannelInterface> {
97
97
  // Registers a new data watcher.
98
98
  virtual void AddDataWatcher(
99
99
  std::unique_ptr<DataWatcherInterface> watcher) = 0;
100
+
101
+ // Cancels a data watch.
102
+ virtual void CancelDataWatcher(DataWatcherInterface* watcher) = 0;
100
103
  };
101
104
 
102
105
  // A class that delegates to another subchannel, to be used in cases
@@ -125,6 +128,9 @@ class DelegatingSubchannel : public SubchannelInterface {
125
128
  void AddDataWatcher(std::unique_ptr<DataWatcherInterface> watcher) override {
126
129
  wrapped_subchannel_->AddDataWatcher(std::move(watcher));
127
130
  }
131
+ void CancelDataWatcher(DataWatcherInterface* watcher) override {
132
+ wrapped_subchannel_->CancelDataWatcher(watcher);
133
+ }
128
134
 
129
135
  private:
130
136
  RefCountedPtr<SubchannelInterface> wrapped_subchannel_;
@@ -384,7 +384,7 @@ class Party : public Activity, private Wakeable {
384
384
  // Should not be called by derived types except as a tail call to the base
385
385
  // class RunParty when overriding this method to add custom context.
386
386
  // Returns true if the party is over.
387
- virtual bool RunParty() GRPC_MUST_USE_RESULT;
387
+ GRPC_MUST_USE_RESULT virtual bool RunParty();
388
388
 
389
389
  bool RefIfNonZero() { return sync_.RefIfNonZero(); }
390
390
 
@@ -66,9 +66,10 @@ class ResolverFactory {
66
66
  virtual OrphanablePtr<Resolver> CreateResolver(ResolverArgs args) const = 0;
67
67
 
68
68
  /// Returns a string representing the default authority to use for this
69
- /// scheme.
69
+ /// scheme. By default, we %-encode the path part of the target URI,
70
+ /// excluding the initial '/' character.
70
71
  virtual std::string GetDefaultAuthority(const URI& uri) const {
71
- return std::string(absl::StripPrefix(uri.path(), "/"));
72
+ return URI::PercentEncodeAuthority(absl::StripPrefix(uri.path(), "/"));
72
73
  }
73
74
  };
74
75