grpc 1.56.2 → 1.57.0.pre1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (383) hide show
  1. checksums.yaml +4 -4
  2. data/Makefile +29 -22
  3. data/include/grpc/event_engine/event_engine.h +22 -32
  4. data/include/grpc/impl/grpc_types.h +3 -0
  5. data/include/grpc/support/port_platform.h +29 -23
  6. data/src/core/ext/filters/client_channel/client_channel.cc +44 -8
  7. data/src/core/ext/filters/client_channel/dynamic_filters.h +3 -3
  8. data/src/core/ext/filters/client_channel/http_proxy.cc +5 -0
  9. data/src/core/ext/filters/client_channel/lb_policy/address_filtering.cc +21 -52
  10. data/src/core/ext/filters/client_channel/lb_policy/address_filtering.h +19 -7
  11. data/src/core/ext/filters/client_channel/lb_policy/child_policy_handler.cc +25 -35
  12. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc +78 -132
  13. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.cc +2 -1
  14. data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.cc +4 -3
  15. data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h +3 -1
  16. data/src/core/ext/filters/client_channel/lb_policy/health_check_client.cc +38 -15
  17. data/src/core/ext/filters/client_channel/lb_policy/health_check_client.h +3 -5
  18. data/src/core/ext/filters/client_channel/lb_policy/health_check_client_internal.h +22 -6
  19. data/src/core/ext/filters/client_channel/lb_policy/oob_backend_metric_internal.h +2 -0
  20. data/src/core/ext/filters/client_channel/lb_policy/outlier_detection/outlier_detection.cc +97 -71
  21. data/src/core/ext/filters/client_channel/lb_policy/outlier_detection/outlier_detection.h +2 -16
  22. data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc +56 -11
  23. data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.h +25 -0
  24. data/src/core/ext/filters/client_channel/lb_policy/priority/priority.cc +6 -32
  25. data/src/core/ext/filters/client_channel/lb_policy/ring_hash/ring_hash.cc +4 -6
  26. data/src/core/ext/filters/client_channel/lb_policy/rls/rls.cc +20 -79
  27. data/src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc +1 -1
  28. data/src/core/ext/filters/client_channel/lb_policy/subchannel_list.h +31 -19
  29. data/src/core/ext/filters/client_channel/lb_policy/weighted_round_robin/weighted_round_robin.cc +1 -1
  30. data/src/core/ext/filters/client_channel/lb_policy/weighted_target/weighted_target.cc +7 -41
  31. data/src/core/ext/filters/client_channel/lb_policy/xds/cds.cc +3 -67
  32. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_channel_args.h +8 -0
  33. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_impl.cc +31 -74
  34. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_manager.cc +7 -51
  35. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_resolver.cc +16 -87
  36. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_override_host.cc +16 -50
  37. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_wrr_locality.cc +12 -74
  38. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc +1 -4
  39. data/src/core/ext/filters/client_channel/resolver/dns/event_engine/event_engine_client_channel_resolver.cc +69 -59
  40. data/src/core/ext/filters/client_channel/resolver/polling_resolver.cc +7 -2
  41. data/src/core/ext/filters/client_channel/resolver/polling_resolver.h +1 -0
  42. data/src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc +25 -13
  43. data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.cc +366 -311
  44. data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.h +17 -1
  45. data/src/core/ext/filters/client_channel/retry_filter.cc +39 -2498
  46. data/src/core/ext/filters/client_channel/retry_filter.h +91 -1
  47. data/src/core/ext/filters/client_channel/retry_filter_legacy_call_data.cc +2052 -0
  48. data/src/core/ext/filters/client_channel/retry_filter_legacy_call_data.h +442 -0
  49. data/src/core/ext/filters/client_channel/service_config_channel_arg_filter.cc +38 -58
  50. data/src/core/ext/filters/client_channel/subchannel.h +3 -3
  51. data/src/core/ext/filters/client_channel/subchannel_interface_internal.h +3 -0
  52. data/src/core/ext/filters/rbac/rbac_filter.cc +40 -111
  53. data/src/core/ext/filters/rbac/rbac_filter.h +12 -30
  54. data/src/core/ext/filters/stateful_session/stateful_session_filter.cc +162 -86
  55. data/src/core/ext/filters/stateful_session/stateful_session_filter.h +0 -6
  56. data/src/core/ext/transport/chttp2/server/chttp2_server.cc +7 -4
  57. data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +131 -186
  58. data/src/core/ext/transport/chttp2/transport/decode_huff.cc +6569 -174
  59. data/src/core/ext/transport/chttp2/transport/decode_huff.h +2278 -441
  60. data/src/core/ext/transport/chttp2/transport/frame_ping.cc +2 -3
  61. data/src/core/ext/transport/chttp2/transport/hpack_parse_result.h +4 -3
  62. data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +9 -8
  63. data/src/core/ext/transport/chttp2/transport/hpack_parser_table.cc +4 -4
  64. data/src/core/ext/transport/chttp2/transport/hpack_parser_table.h +3 -2
  65. data/src/core/ext/transport/chttp2/transport/internal.h +8 -4
  66. data/src/core/ext/transport/chttp2/transport/parsing.cc +15 -3
  67. data/src/core/ext/transport/chttp2/transport/writing.cc +2 -3
  68. data/src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.c +27 -6
  69. data/src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.h +143 -0
  70. data/src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.c +2 -9
  71. data/src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.h +0 -39
  72. data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.c +13 -8
  73. data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.h +35 -6
  74. data/src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.c +17 -13
  75. data/src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.h +85 -20
  76. data/src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.c +26 -7
  77. data/src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.h +45 -3
  78. data/src/core/ext/upb-generated/envoy/config/metrics/v3/metrics_service.upb.c +4 -3
  79. data/src/core/ext/upb-generated/envoy/config/metrics/v3/metrics_service.upb.h +21 -0
  80. data/src/core/ext/upb-generated/envoy/config/overload/v3/overload.upb.c +30 -6
  81. data/src/core/ext/upb-generated/envoy/config/overload/v3/overload.upb.h +180 -0
  82. data/src/core/ext/upb-generated/envoy/data/accesslog/v3/accesslog.upb.c +558 -0
  83. data/src/core/ext/upb-generated/envoy/data/accesslog/v3/accesslog.upb.h +2710 -0
  84. data/src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3/fault.upb.c +30 -11
  85. data/src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3/fault.upb.h +53 -24
  86. data/src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3/router.upb.c +30 -5
  87. data/src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3/router.upb.h +110 -0
  88. data/src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.c +41 -15
  89. data/src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h +150 -27
  90. data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb.c +1 -0
  91. data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb.c +47 -0
  92. data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb.h +93 -0
  93. data/src/core/ext/upbdefs-generated/envoy/config/accesslog/v3/accesslog.upbdefs.c +88 -76
  94. data/src/core/ext/upbdefs-generated/envoy/config/accesslog/v3/accesslog.upbdefs.h +5 -0
  95. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/config_source.upbdefs.c +11 -12
  96. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/config_source.upbdefs.h +0 -5
  97. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_service.upbdefs.c +162 -160
  98. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/health_check.upbdefs.c +129 -118
  99. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/protocol.upbdefs.c +141 -135
  100. data/src/core/ext/upbdefs-generated/envoy/config/metrics/v3/metrics_service.upbdefs.c +19 -12
  101. data/src/core/ext/upbdefs-generated/envoy/config/overload/v3/overload.upbdefs.c +38 -30
  102. data/src/core/ext/upbdefs-generated/envoy/config/overload/v3/overload.upbdefs.h +5 -0
  103. data/src/core/ext/upbdefs-generated/envoy/data/accesslog/v3/accesslog.upbdefs.c +402 -0
  104. data/src/core/ext/upbdefs-generated/envoy/data/accesslog/v3/accesslog.upbdefs.h +111 -0
  105. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3/fault.upbdefs.c +80 -74
  106. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3/router.upbdefs.c +63 -47
  107. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3/router.upbdefs.h +5 -0
  108. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.c +315 -293
  109. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.h +5 -0
  110. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/regex.upbdefs.c +29 -29
  111. data/src/core/ext/xds/xds_bootstrap_grpc.cc +33 -30
  112. data/src/core/ext/xds/xds_bootstrap_grpc.h +5 -13
  113. data/src/core/ext/xds/xds_client_grpc.cc +11 -6
  114. data/src/core/ext/xds/xds_client_grpc.h +16 -2
  115. data/src/core/ext/xds/xds_client_stats.h +10 -0
  116. data/src/core/ext/xds/xds_cluster.cc +26 -16
  117. data/src/core/ext/xds/xds_endpoint.cc +4 -7
  118. data/src/core/ext/xds/xds_health_status.cc +0 -17
  119. data/src/core/ext/xds/xds_health_status.h +5 -25
  120. data/src/core/ext/xds/xds_lb_policy_registry.cc +39 -0
  121. data/src/core/ext/xds/xds_route_config.cc +4 -0
  122. data/src/core/ext/xds/xds_transport_grpc.cc +1 -3
  123. data/src/core/lib/address_utils/parse_address.cc +63 -1
  124. data/src/core/lib/address_utils/parse_address.h +8 -0
  125. data/src/core/lib/address_utils/sockaddr_utils.cc +46 -1
  126. data/src/core/lib/address_utils/sockaddr_utils.h +2 -2
  127. data/src/core/lib/channel/channel_args.cc +21 -10
  128. data/src/core/lib/channel/channel_args.h +3 -0
  129. data/src/core/lib/channel/connected_channel.cc +4 -1
  130. data/src/core/lib/channel/promise_based_filter.h +1 -0
  131. data/src/core/lib/debug/trace.cc +1 -4
  132. data/src/core/lib/event_engine/cf_engine/cf_engine.cc +2 -1
  133. data/src/core/lib/event_engine/cf_engine/cf_engine.h +1 -1
  134. data/src/core/lib/event_engine/event_engine.cc +0 -12
  135. data/src/core/lib/event_engine/forkable.cc +47 -42
  136. data/src/core/lib/event_engine/handle_containers.h +0 -4
  137. data/src/core/lib/event_engine/posix_engine/ev_epoll1_linux.cc +4 -6
  138. data/src/core/lib/event_engine/posix_engine/ev_poll_posix.cc +4 -6
  139. data/src/core/lib/event_engine/posix_engine/posix_endpoint.cc +25 -11
  140. data/src/core/lib/event_engine/posix_engine/posix_endpoint.h +3 -1
  141. data/src/core/lib/event_engine/posix_engine/posix_engine.cc +2 -1
  142. data/src/core/lib/event_engine/posix_engine/posix_engine.h +8 -12
  143. data/src/core/lib/event_engine/posix_engine/posix_engine_listener.cc +37 -27
  144. data/src/core/lib/event_engine/posix_engine/posix_engine_listener.h +2 -0
  145. data/src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.cc +4 -2
  146. data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.cc +42 -2
  147. data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.h +6 -0
  148. data/src/core/lib/event_engine/posix_engine/timer.h +10 -37
  149. data/src/core/lib/event_engine/tcp_socket_utils.cc +67 -7
  150. data/src/core/lib/event_engine/tcp_socket_utils.h +3 -0
  151. data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.cc +90 -37
  152. data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.h +32 -12
  153. data/src/core/lib/event_engine/thready_event_engine/thready_event_engine.cc +12 -21
  154. data/src/core/lib/event_engine/thready_event_engine/thready_event_engine.h +8 -12
  155. data/src/core/lib/event_engine/windows/windows_endpoint.cc +55 -54
  156. data/src/core/lib/event_engine/windows/windows_endpoint.h +15 -12
  157. data/src/core/lib/event_engine/windows/windows_engine.cc +2 -1
  158. data/src/core/lib/event_engine/windows/windows_engine.h +8 -12
  159. data/src/core/lib/experiments/config.cc +60 -22
  160. data/src/core/lib/experiments/config.h +20 -8
  161. data/src/core/lib/experiments/experiments.cc +278 -0
  162. data/src/core/lib/experiments/experiments.h +59 -1
  163. data/src/core/lib/gprpp/dual_ref_counted.h +9 -9
  164. data/src/core/lib/gprpp/fork.cc +8 -9
  165. data/src/core/lib/gprpp/fork.h +6 -5
  166. data/src/core/lib/gprpp/if_list.h +4530 -0
  167. data/src/core/lib/gprpp/orphanable.h +3 -3
  168. data/src/core/lib/gprpp/ref_counted.h +6 -6
  169. data/src/core/lib/gprpp/sorted_pack.h +3 -12
  170. data/src/core/lib/gprpp/status_helper.h +16 -15
  171. data/src/core/lib/gprpp/time.h +12 -0
  172. data/src/core/lib/gprpp/type_list.h +32 -0
  173. data/src/core/lib/http/httpcli.h +6 -9
  174. data/src/core/lib/iomgr/error.cc +32 -2
  175. data/src/core/lib/iomgr/error.h +9 -10
  176. data/src/core/lib/iomgr/ev_epoll1_linux.cc +5 -7
  177. data/src/core/lib/iomgr/ev_poll_posix.cc +6 -5
  178. data/src/core/lib/iomgr/exec_ctx.h +11 -0
  179. data/src/core/lib/iomgr/pollset.h +4 -5
  180. data/src/core/lib/iomgr/port.h +10 -0
  181. data/src/core/lib/iomgr/resolve_address.cc +13 -1
  182. data/src/core/lib/iomgr/resolve_address.h +17 -3
  183. data/src/core/lib/iomgr/sockaddr_posix.h +7 -0
  184. data/src/core/lib/iomgr/socket_utils_common_posix.cc +29 -0
  185. data/src/core/lib/iomgr/socket_utils_posix.cc +2 -0
  186. data/src/core/lib/iomgr/socket_utils_posix.h +6 -0
  187. data/src/core/lib/iomgr/tcp_client_posix.cc +4 -1
  188. data/src/core/lib/iomgr/tcp_posix.cc +21 -4
  189. data/src/core/lib/iomgr/tcp_server_posix.cc +3 -2
  190. data/src/core/lib/iomgr/tcp_server_utils_posix_common.cc +5 -2
  191. data/src/core/lib/iomgr/tcp_windows.cc +1 -3
  192. data/src/core/lib/iomgr/vsock.cc +59 -0
  193. data/src/core/lib/iomgr/vsock.h +38 -0
  194. data/src/core/lib/iomgr/wakeup_fd_posix.h +3 -6
  195. data/src/core/lib/load_balancing/delegating_helper.h +115 -0
  196. data/src/core/lib/load_balancing/lb_policy.h +20 -0
  197. data/src/core/lib/load_balancing/subchannel_interface.h +6 -0
  198. data/src/core/lib/promise/party.h +1 -1
  199. data/src/core/lib/resolver/resolver_factory.h +3 -2
  200. data/src/core/lib/resolver/server_address.cc +9 -94
  201. data/src/core/lib/resolver/server_address.h +10 -64
  202. data/src/core/lib/resource_quota/memory_quota.h +1 -1
  203. data/src/core/lib/security/credentials/channel_creds_registry.h +51 -27
  204. data/src/core/lib/security/credentials/channel_creds_registry_init.cc +169 -9
  205. data/src/core/lib/security/credentials/composite/composite_credentials.cc +1 -1
  206. data/src/core/lib/security/credentials/composite/composite_credentials.h +3 -1
  207. data/src/core/lib/security/credentials/external/external_account_credentials.cc +40 -1
  208. data/src/core/lib/security/credentials/external/external_account_credentials.h +6 -0
  209. data/src/core/lib/security/credentials/fake/fake_credentials.cc +30 -38
  210. data/src/core/lib/security/credentials/fake/fake_credentials.h +28 -0
  211. data/src/core/lib/security/credentials/tls/tls_credentials.cc +1 -1
  212. data/src/core/lib/security/credentials/tls/tls_credentials.h +3 -1
  213. data/src/core/lib/service_config/service_config_call_data.h +5 -0
  214. data/src/core/lib/slice/slice.h +16 -0
  215. data/src/core/lib/surface/call.cc +31 -29
  216. data/src/core/lib/surface/server.h +2 -2
  217. data/src/core/lib/surface/version.cc +2 -2
  218. data/src/core/lib/transport/metadata_batch.cc +7 -7
  219. data/src/core/lib/transport/metadata_batch.h +86 -48
  220. data/src/core/lib/transport/parsed_metadata.h +34 -20
  221. data/src/core/lib/transport/simple_slice_based_metadata.h +9 -2
  222. data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.cc +4 -6
  223. data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc +1 -2
  224. data/src/core/tsi/ssl_transport_security.cc +28 -7
  225. data/src/ruby/bin/math_pb.rb +24 -18
  226. data/src/ruby/ext/grpc/extconf.rb +19 -18
  227. data/src/ruby/ext/grpc/rb_call.c +62 -39
  228. data/src/ruby/ext/grpc/rb_call_credentials.c +0 -1
  229. data/src/ruby/ext/grpc/rb_channel.c +126 -49
  230. data/src/ruby/ext/grpc/rb_channel.h +1 -0
  231. data/src/ruby/ext/grpc/rb_channel_args.c +16 -2
  232. data/src/ruby/ext/grpc/rb_channel_args.h +4 -0
  233. data/src/ruby/ext/grpc/rb_channel_credentials.c +0 -1
  234. data/src/ruby/ext/grpc/rb_compression_options.c +0 -1
  235. data/src/ruby/ext/grpc/rb_event_thread.c +22 -6
  236. data/src/ruby/ext/grpc/rb_event_thread.h +1 -0
  237. data/src/ruby/ext/grpc/rb_grpc.c +192 -30
  238. data/src/ruby/ext/grpc/rb_grpc.h +8 -2
  239. data/src/ruby/ext/grpc/rb_server.c +62 -45
  240. data/src/ruby/ext/grpc/rb_server_credentials.c +0 -1
  241. data/src/ruby/ext/grpc/rb_xds_channel_credentials.c +0 -1
  242. data/src/ruby/ext/grpc/rb_xds_server_credentials.c +0 -1
  243. data/src/ruby/lib/grpc/generic/bidi_call.rb +2 -0
  244. data/src/ruby/lib/grpc/version.rb +1 -1
  245. data/src/ruby/pb/grpc/health/v1/health_pb.rb +24 -13
  246. data/src/ruby/pb/src/proto/grpc/testing/empty_pb.rb +24 -3
  247. data/src/ruby/pb/src/proto/grpc/testing/messages_pb.rb +25 -111
  248. data/src/ruby/pb/src/proto/grpc/testing/test_pb.rb +25 -2
  249. data/third_party/boringssl-with-bazel/err_data.c +552 -552
  250. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_strnid.c +5 -5
  251. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_time.c +34 -1
  252. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_utctm.c +4 -1
  253. data/third_party/boringssl-with-bazel/src/crypto/bio/bio.c +3 -3
  254. data/third_party/boringssl-with-bazel/src/crypto/bio/bio_mem.c +7 -8
  255. data/third_party/boringssl-with-bazel/src/crypto/bio/connect.c +2 -2
  256. data/third_party/boringssl-with-bazel/src/crypto/bio/fd.c +2 -2
  257. data/third_party/boringssl-with-bazel/src/crypto/bio/file.c +8 -8
  258. data/third_party/boringssl-with-bazel/src/crypto/bio/socket.c +2 -2
  259. data/third_party/boringssl-with-bazel/src/crypto/bio/socket_helper.c +2 -2
  260. data/third_party/boringssl-with-bazel/src/crypto/chacha/chacha.c +19 -1
  261. data/third_party/boringssl-with-bazel/src/crypto/chacha/internal.h +8 -1
  262. data/third_party/boringssl-with-bazel/src/crypto/conf/conf.c +28 -185
  263. data/third_party/boringssl-with-bazel/src/crypto/conf/conf_def.h +3 -7
  264. data/third_party/boringssl-with-bazel/src/crypto/conf/internal.h +8 -0
  265. data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_apple.c +3 -0
  266. data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519.c +49 -46
  267. data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519_64_adx.c +18 -0
  268. data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519_tables.h +2809 -7417
  269. data/third_party/boringssl-with-bazel/src/crypto/curve25519/internal.h +27 -5
  270. data/third_party/boringssl-with-bazel/src/crypto/dsa/internal.h +20 -0
  271. data/third_party/boringssl-with-bazel/src/crypto/ec_extra/ec_asn1.c +110 -72
  272. data/third_party/boringssl-with-bazel/src/crypto/ec_extra/ec_derive.c +4 -3
  273. data/third_party/boringssl-with-bazel/src/crypto/ec_extra/hash_to_curve.c +15 -14
  274. data/third_party/boringssl-with-bazel/src/crypto/err/err.c +13 -10
  275. data/third_party/boringssl-with-bazel/src/crypto/evp/evp.c +35 -12
  276. data/third_party/boringssl-with-bazel/src/crypto/evp/p_ec.c +2 -4
  277. data/third_party/boringssl-with-bazel/src/crypto/evp/p_ec_asn1.c +3 -7
  278. data/third_party/boringssl-with-bazel/src/crypto/evp/pbkdf.c +3 -3
  279. data/third_party/boringssl-with-bazel/src/crypto/evp/print.c +7 -6
  280. data/third_party/boringssl-with-bazel/src/crypto/ex_data.c +34 -72
  281. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm.c +1 -1
  282. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div.c +12 -5
  283. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/gcd.c +5 -6
  284. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/internal.h +12 -6
  285. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery.c +17 -18
  286. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery_inv.c +51 -15
  287. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/rsaz_exp.c +7 -7
  288. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/delocate.h +5 -6
  289. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/internal.h +2 -0
  290. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/builtin_curves.h +277 -0
  291. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec.c +180 -404
  292. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_key.c +3 -3
  293. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_montgomery.c +24 -57
  294. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/felem.c +17 -13
  295. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/internal.h +33 -71
  296. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/oct.c +18 -17
  297. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p224-64.c +5 -7
  298. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-nistz.c +15 -18
  299. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256.c +9 -11
  300. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/scalar.c +24 -24
  301. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/simple.c +11 -27
  302. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/simple_mul.c +8 -8
  303. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/wnaf.c +4 -4
  304. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/ecdsa.c +9 -3
  305. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/hkdf/hkdf.c +1 -1
  306. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/fork_detect.c +40 -26
  307. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/internal.h +21 -7
  308. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/rand.c +38 -19
  309. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/urandom.c +2 -29
  310. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/internal.h +55 -0
  311. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa_impl.c +33 -52
  312. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/self_check.c +3 -8
  313. data/third_party/boringssl-with-bazel/src/crypto/internal.h +198 -79
  314. data/third_party/boringssl-with-bazel/src/crypto/kyber/kyber.c +5 -4
  315. data/third_party/boringssl-with-bazel/src/crypto/mem.c +7 -8
  316. data/third_party/boringssl-with-bazel/src/crypto/obj/obj.c +19 -23
  317. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/internal.h +3 -3
  318. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/p5_pbev2.c +3 -3
  319. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8.c +7 -7
  320. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8_x509.c +8 -5
  321. data/third_party/boringssl-with-bazel/src/crypto/pool/internal.h +1 -0
  322. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/deterministic.c +7 -6
  323. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/forkunsafe.c +6 -12
  324. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/getentropy.c +48 -0
  325. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/{fuchsia.c → ios.c} +8 -8
  326. data/third_party/boringssl-with-bazel/src/crypto/{refcount_no_threads.c → rand_extra/trusty.c} +15 -19
  327. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/windows.c +41 -19
  328. data/third_party/boringssl-with-bazel/src/crypto/{refcount_c11.c → refcount.c} +11 -17
  329. data/third_party/boringssl-with-bazel/src/crypto/stack/stack.c +147 -72
  330. data/third_party/boringssl-with-bazel/src/crypto/thread_none.c +0 -8
  331. data/third_party/boringssl-with-bazel/src/crypto/thread_pthread.c +6 -35
  332. data/third_party/boringssl-with-bazel/src/crypto/thread_win.c +5 -26
  333. data/third_party/boringssl-with-bazel/src/crypto/trust_token/pmbtoken.c +14 -18
  334. data/third_party/boringssl-with-bazel/src/crypto/trust_token/voprf.c +54 -143
  335. data/third_party/boringssl-with-bazel/src/crypto/x509/by_dir.c +7 -13
  336. data/third_party/boringssl-with-bazel/src/crypto/x509/internal.h +1 -1
  337. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_att.c +1 -1
  338. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_lu.c +2 -4
  339. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_req.c +2 -2
  340. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_trs.c +1 -1
  341. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_v3.c +8 -12
  342. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vfy.c +19 -20
  343. data/third_party/boringssl-with-bazel/src/crypto/x509/x509name.c +11 -15
  344. data/third_party/boringssl-with-bazel/src/crypto/x509/x_crl.c +5 -5
  345. data/third_party/boringssl-with-bazel/src/crypto/x509/x_name.c +1 -1
  346. data/third_party/boringssl-with-bazel/src/crypto/x509/x_pubkey.c +7 -7
  347. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_lib.c +2 -3
  348. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_purp.c +4 -6
  349. data/third_party/boringssl-with-bazel/src/include/openssl/arm_arch.h +4 -119
  350. data/third_party/boringssl-with-bazel/src/include/openssl/asm_base.h +207 -0
  351. data/third_party/boringssl-with-bazel/src/include/openssl/asn1.h +5 -0
  352. data/third_party/boringssl-with-bazel/src/include/openssl/base.h +2 -116
  353. data/third_party/boringssl-with-bazel/src/include/openssl/bn.h +0 -2
  354. data/third_party/boringssl-with-bazel/src/include/openssl/chacha.h +6 -0
  355. data/third_party/boringssl-with-bazel/src/include/openssl/conf.h +5 -1
  356. data/third_party/boringssl-with-bazel/src/include/openssl/dsa.h +0 -21
  357. data/third_party/boringssl-with-bazel/src/include/openssl/ec.h +21 -2
  358. data/third_party/boringssl-with-bazel/src/include/openssl/ec_key.h +19 -6
  359. data/third_party/boringssl-with-bazel/src/include/openssl/evp.h +11 -7
  360. data/third_party/boringssl-with-bazel/src/include/openssl/rand.h +13 -14
  361. data/third_party/boringssl-with-bazel/src/include/openssl/rsa.h +0 -61
  362. data/third_party/boringssl-with-bazel/src/include/openssl/ssl.h +127 -81
  363. data/third_party/boringssl-with-bazel/src/include/openssl/stack.h +224 -209
  364. data/third_party/boringssl-with-bazel/src/include/openssl/target.h +154 -0
  365. data/third_party/boringssl-with-bazel/src/include/openssl/thread.h +1 -29
  366. data/third_party/boringssl-with-bazel/src/include/openssl/x509.h +4 -4
  367. data/third_party/boringssl-with-bazel/src/include/openssl/x509v3.h +3 -2
  368. data/third_party/boringssl-with-bazel/src/ssl/extensions.cc +9 -65
  369. data/third_party/boringssl-with-bazel/src/ssl/handoff.cc +20 -20
  370. data/third_party/boringssl-with-bazel/src/ssl/handshake_server.cc +1 -1
  371. data/third_party/boringssl-with-bazel/src/ssl/internal.h +4 -11
  372. data/third_party/boringssl-with-bazel/src/ssl/ssl_cipher.cc +24 -18
  373. data/third_party/boringssl-with-bazel/src/ssl/ssl_key_share.cc +37 -30
  374. data/third_party/boringssl-with-bazel/src/ssl/ssl_lib.cc +125 -26
  375. data/third_party/boringssl-with-bazel/src/ssl/tls13_client.cc +2 -3
  376. data/third_party/boringssl-with-bazel/src/third_party/fiat/curve25519_64_adx.h +691 -0
  377. data/third_party/upb/upb/collections/map.c +3 -3
  378. metadata +27 -12
  379. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_attributes.cc +0 -42
  380. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_attributes.h +0 -64
  381. data/src/core/ext/transport/chttp2/transport/stream_map.cc +0 -177
  382. data/src/core/ext/transport/chttp2/transport/stream_map.h +0 -68
  383. data/third_party/boringssl-with-bazel/src/crypto/refcount_win.c +0 -89
@@ -17,7 +17,6 @@
17
17
  #include <grpc/support/port_platform.h>
18
18
 
19
19
  #include <stdint.h>
20
- #include <stdlib.h>
21
20
  #include <string.h>
22
21
 
23
22
  #include <algorithm>
@@ -47,7 +46,6 @@
47
46
 
48
47
  #include <grpc/grpc.h>
49
48
 
50
- #include "src/core/lib/gprpp/unique_type_name.h"
51
49
  #include "src/core/lib/slice/slice.h"
52
50
 
53
51
  #define XXH_INLINE_ALL
@@ -102,43 +100,21 @@ namespace grpc_core {
102
100
 
103
101
  TraceFlag grpc_xds_resolver_trace(false, "xds_resolver");
104
102
 
105
- UniqueTypeName XdsClusterAttribute::TypeName() {
106
- static UniqueTypeName::Factory kFactory("xds_cluster_name");
107
- return kFactory.Create();
108
- }
109
-
110
103
  namespace {
111
104
 
112
- std::string GetDefaultAuthorityInternal(const URI& uri) {
113
- // Obtain the authority to use for the data plane connections, which is
114
- // also used to select the right VirtualHost from the RouteConfiguration.
115
- // We need to take the part of the URI path following the last
116
- // "/" character or the entire path if the path contains no "/" character.
117
- size_t pos = uri.path().find_last_of('/');
118
- if (pos == uri.path().npos) return uri.path();
119
- return uri.path().substr(pos + 1);
120
- }
121
-
122
- std::string GetDataPlaneAuthority(const ChannelArgs& args, const URI& uri) {
123
- absl::optional<std::string> authority =
124
- args.GetOwnedString(GRPC_ARG_DEFAULT_AUTHORITY);
125
- if (authority.has_value()) return std::move(*authority);
126
- return GetDefaultAuthorityInternal(uri);
127
- }
128
-
129
105
  //
130
106
  // XdsResolver
131
107
  //
132
108
 
133
109
  class XdsResolver : public Resolver {
134
110
  public:
135
- explicit XdsResolver(ResolverArgs args)
111
+ XdsResolver(ResolverArgs args, std::string data_plane_authority)
136
112
  : work_serializer_(std::move(args.work_serializer)),
137
113
  result_handler_(std::move(args.result_handler)),
138
114
  args_(std::move(args.args)),
139
115
  interested_parties_(args.pollset_set),
140
116
  uri_(std::move(args.uri)),
141
- data_plane_authority_(GetDataPlaneAuthority(args_, uri_)),
117
+ data_plane_authority_(std::move(data_plane_authority)),
142
118
  channel_id_(absl::Uniform<uint64_t>(absl::BitGen())) {
143
119
  if (GRPC_TRACE_FLAG_ENABLED(grpc_xds_resolver_trace)) {
144
120
  gpr_log(
@@ -246,15 +222,15 @@ class XdsResolver : public Resolver {
246
222
  // the cluster by the ConfigSelector. The ref for each call is held
247
223
  // until the call is committed. When the strong refs go away, we hop
248
224
  // back into the WorkSerializer to remove the entry from the map.
249
- class ClusterState : public DualRefCounted<ClusterState> {
225
+ class ClusterRef : public DualRefCounted<ClusterRef> {
250
226
  public:
251
- ClusterState(RefCountedPtr<XdsResolver> resolver,
252
- absl::string_view cluster_name)
227
+ ClusterRef(RefCountedPtr<XdsResolver> resolver,
228
+ absl::string_view cluster_name)
253
229
  : resolver_(std::move(resolver)), cluster_name_(cluster_name) {}
254
230
 
255
231
  void Orphan() override {
256
- auto* resolver = resolver_.get();
257
- resolver->work_serializer_->Run(
232
+ XdsResolver* resolver_ptr = resolver_.get();
233
+ resolver_ptr->work_serializer_->Run(
258
234
  [resolver = std::move(resolver_)]() {
259
235
  resolver->MaybeRemoveUnusedClusters();
260
236
  },
@@ -268,21 +244,49 @@ class XdsResolver : public Resolver {
268
244
  std::string cluster_name_;
269
245
  };
270
246
 
271
- // A map containing cluster refs held by the XdsConfigSelector. A ref to
272
- // this map will be taken by each call processed by the XdsConfigSelector,
273
- // stored in a the call's call attributes, and later unreffed
274
- // by the ClusterSelection filter.
275
- class XdsClusterMap : public RefCounted<XdsClusterMap> {
247
+ // A routing data including cluster refs and routes table held by the
248
+ // XdsConfigSelector. A ref to this map will be taken by each call processed
249
+ // by the XdsConfigSelector, stored in a the call's call attributes, and later
250
+ // unreffed by the ClusterSelection filter.
251
+ class RouteConfigData : public RefCounted<RouteConfigData> {
276
252
  public:
277
- explicit XdsClusterMap(
278
- std::map<absl::string_view, RefCountedPtr<ClusterState>> clusters)
279
- : clusters_(std::move(clusters)) {}
253
+ struct RouteEntry {
254
+ struct ClusterWeightState {
255
+ uint32_t range_end;
256
+ absl::string_view cluster;
257
+ RefCountedPtr<ServiceConfig> method_config;
258
+
259
+ bool operator==(const ClusterWeightState& other) const {
260
+ return range_end == other.range_end && cluster == other.cluster &&
261
+ MethodConfigsEqual(method_config.get(),
262
+ other.method_config.get());
263
+ }
264
+ };
265
+
266
+ XdsRouteConfigResource::Route route;
267
+ RefCountedPtr<ServiceConfig> method_config;
268
+ std::vector<ClusterWeightState> weighted_cluster_state;
269
+
270
+ explicit RouteEntry(const XdsRouteConfigResource::Route& r) : route(r) {}
271
+
272
+ bool operator==(const RouteEntry& other) const {
273
+ return route == other.route &&
274
+ weighted_cluster_state == other.weighted_cluster_state &&
275
+ MethodConfigsEqual(method_config.get(),
276
+ other.method_config.get());
277
+ }
278
+ };
280
279
 
281
- bool operator==(const XdsClusterMap& other) const {
282
- return clusters_ == other.clusters_;
280
+ static absl::StatusOr<RefCountedPtr<RouteConfigData>> Create(
281
+ XdsResolver* resolver,
282
+ const std::vector<XdsRouteConfigResource::Route>& routes,
283
+ const Duration& default_max_stream_duration);
284
+
285
+ bool operator==(const RouteConfigData& other) const {
286
+ return clusters_ == other.clusters_ && routes_ == other.routes_;
283
287
  }
284
288
 
285
- RefCountedPtr<ClusterState> Find(absl::string_view name) const {
289
+ RefCountedPtr<ClusterRef> FindClusterRef(absl::string_view name) const {
286
290
  auto it = clusters_.find(name);
287
291
  if (it == clusters_.end()) {
288
292
  return nullptr;
@@ -290,14 +294,36 @@ class XdsResolver : public Resolver {
290
294
  return it->second;
291
295
  }
292
296
 
297
+ RouteEntry* GetRouteForRequest(absl::string_view path,
298
+ grpc_metadata_batch* initial_metadata);
299
+
293
300
  private:
294
- std::map<absl::string_view, RefCountedPtr<ClusterState>> clusters_;
301
+ class RouteListIterator;
302
+
303
+ static absl::StatusOr<RefCountedPtr<ServiceConfig>> CreateMethodConfig(
304
+ XdsResolver* resolver, const XdsRouteConfigResource::Route& route,
305
+ const XdsRouteConfigResource::Route::RouteAction::ClusterWeight*
306
+ cluster_weight);
307
+
308
+ static bool MethodConfigsEqual(const ServiceConfig* sc1,
309
+ const ServiceConfig* sc2) {
310
+ if (sc1 == nullptr) return sc2 == nullptr;
311
+ if (sc2 == nullptr) return false;
312
+ return sc1->json_string() == sc2->json_string();
313
+ }
314
+
315
+ absl::Status AddRouteEntry(const XdsRouteConfigResource::Route& route,
316
+ const Duration& default_max_stream_duration,
317
+ XdsResolver* resolver);
318
+
319
+ std::map<absl::string_view, RefCountedPtr<ClusterRef>> clusters_;
320
+ std::vector<RouteEntry> routes_;
295
321
  };
296
322
 
297
323
  class XdsConfigSelector : public ConfigSelector {
298
324
  public:
299
325
  XdsConfigSelector(RefCountedPtr<XdsResolver> resolver,
300
- absl::Status* status);
326
+ RefCountedPtr<RouteConfigData> route_config_data);
301
327
  ~XdsConfigSelector() override;
302
328
 
303
329
  const char* name() const override { return "XdsConfigSelector"; }
@@ -305,8 +331,8 @@ class XdsResolver : public Resolver {
305
331
  bool Equals(const ConfigSelector* other) const override {
306
332
  const auto* other_xds = static_cast<const XdsConfigSelector*>(other);
307
333
  // Don't need to compare resolver_, since that will always be the same.
308
- return route_table_ == other_xds->route_table_ &&
309
- *cluster_map_ == *other_xds->cluster_map_;
334
+ return *route_config_data_ == *other_xds->route_config_data_ &&
335
+ filters_ == other_xds->filters_;
310
336
  }
311
337
 
312
338
  absl::Status GetCallConfig(GetCallConfigArgs args) override;
@@ -316,34 +342,28 @@ class XdsResolver : public Resolver {
316
342
  }
317
343
 
318
344
  private:
319
- struct Route {
320
- struct ClusterWeightState {
321
- uint32_t range_end;
322
- absl::string_view cluster;
323
- RefCountedPtr<ServiceConfig> method_config;
324
-
325
- bool operator==(const ClusterWeightState& other) const;
326
- };
327
-
328
- XdsRouteConfigResource::Route route;
329
- RefCountedPtr<ServiceConfig> method_config;
330
- std::vector<ClusterWeightState> weighted_cluster_state;
345
+ RefCountedPtr<XdsResolver> resolver_;
346
+ RefCountedPtr<RouteConfigData> route_config_data_;
347
+ std::vector<const grpc_channel_filter*> filters_;
348
+ };
331
349
 
332
- bool operator==(const Route& other) const;
333
- };
334
- using RouteTable = std::vector<Route>;
350
+ class XdsRouteStateAttributeImpl : public XdsRouteStateAttribute {
351
+ public:
352
+ explicit XdsRouteStateAttributeImpl(
353
+ RefCountedPtr<RouteConfigData> route_config_data,
354
+ RouteConfigData::RouteEntry* route)
355
+ : route_config_data_(std::move(route_config_data)), route_(route) {}
335
356
 
336
- class RouteListIterator;
357
+ // This method can be called only once. The first call will release
358
+ // the reference to the cluster map, and subsequent calls will return
359
+ // nullptr.
360
+ RefCountedPtr<ClusterRef> LockAndGetCluster(absl::string_view cluster_name);
337
361
 
338
- absl::StatusOr<RefCountedPtr<ServiceConfig>> CreateMethodConfig(
339
- const XdsRouteConfigResource::Route& route,
340
- const XdsRouteConfigResource::Route::RouteAction::ClusterWeight*
341
- cluster_weight);
362
+ bool HasClusterForRoute(absl::string_view cluster_name) const override;
342
363
 
343
- RefCountedPtr<XdsResolver> resolver_;
344
- RouteTable route_table_;
345
- RefCountedPtr<XdsClusterMap> cluster_map_;
346
- std::vector<const grpc_channel_filter*> filters_;
364
+ private:
365
+ RefCountedPtr<RouteConfigData> route_config_data_;
366
+ RouteConfigData::RouteEntry* route_;
347
367
  };
348
368
 
349
369
  class ClusterSelectionFilter : public ChannelFilter {
@@ -357,29 +377,7 @@ class XdsResolver : public Resolver {
357
377
 
358
378
  // Construct a promise for one call.
359
379
  ArenaPromise<ServerMetadataHandle> MakeCallPromise(
360
- CallArgs call_args, NextPromiseFactory next_promise_factory) override {
361
- auto* service_config_call_data =
362
- static_cast<ClientChannelServiceConfigCallData*>(
363
- GetContext<grpc_call_context_element>()
364
- [GRPC_CONTEXT_SERVICE_CONFIG_CALL_DATA]
365
- .value);
366
- GPR_ASSERT(service_config_call_data != nullptr);
367
- auto* cluster_data = static_cast<XdsClusterMapAttribute*>(
368
- service_config_call_data->GetCallAttribute(
369
- XdsClusterMapAttribute::TypeName()));
370
- auto* cluster_name_attribute = static_cast<XdsClusterAttribute*>(
371
- service_config_call_data->GetCallAttribute(
372
- XdsClusterAttribute::TypeName()));
373
- if (cluster_data != nullptr && cluster_name_attribute != nullptr) {
374
- auto cluster =
375
- cluster_data->LockAndGetCluster(cluster_name_attribute->cluster());
376
- if (cluster != nullptr) {
377
- service_config_call_data->SetOnCommit(
378
- [cluster = std::move(cluster)]() mutable { cluster.reset(); });
379
- }
380
- }
381
- return next_promise_factory(std::move(call_args));
382
- }
380
+ CallArgs call_args, NextPromiseFactory next_promise_factory) override;
383
381
 
384
382
  private:
385
383
  explicit ClusterSelectionFilter(ChannelFilter::Args filter_args)
@@ -388,46 +386,17 @@ class XdsResolver : public Resolver {
388
386
  ChannelFilter::Args filter_args_;
389
387
  };
390
388
 
391
- RefCountedPtr<ClusterState> GetOrCreateClusterState(
389
+ RefCountedPtr<ClusterRef> GetOrCreateClusterRef(
392
390
  absl::string_view cluster_name) {
393
- auto it = cluster_state_map_.find(cluster_name);
394
- if (it == cluster_state_map_.end()) {
395
- auto cluster = MakeRefCounted<ClusterState>(Ref(), cluster_name);
396
- cluster_state_map_.emplace(cluster->cluster_name(), cluster->WeakRef());
391
+ auto it = cluster_ref_map_.find(cluster_name);
392
+ if (it == cluster_ref_map_.end()) {
393
+ auto cluster = MakeRefCounted<ClusterRef>(Ref(), cluster_name);
394
+ cluster_ref_map_.emplace(cluster->cluster_name(), cluster->WeakRef());
397
395
  return cluster;
398
396
  }
399
397
  return it->second->Ref();
400
398
  }
401
399
 
402
- class XdsClusterMapAttribute
403
- : public ServiceConfigCallData::CallAttributeInterface {
404
- public:
405
- static UniqueTypeName TypeName() {
406
- static UniqueTypeName::Factory factory("xds_cluster_lb_data");
407
- return factory.Create();
408
- }
409
-
410
- explicit XdsClusterMapAttribute(RefCountedPtr<XdsClusterMap> cluster_map)
411
- : cluster_map_(std::move(cluster_map)) {}
412
-
413
- // This method can be called only once. The first call will release the
414
- // reference to the cluster map, and subsequent calls will return nullptr.
415
- RefCountedPtr<ClusterState> LockAndGetCluster(
416
- absl::string_view cluster_name) {
417
- if (cluster_map_ == nullptr) {
418
- return nullptr;
419
- }
420
- auto cluster = cluster_map_->Find(cluster_name);
421
- cluster_map_.reset();
422
- return cluster;
423
- }
424
-
425
- UniqueTypeName type() const override { return TypeName(); }
426
-
427
- private:
428
- RefCountedPtr<XdsClusterMap> cluster_map_;
429
- };
430
-
431
400
  void OnListenerUpdate(XdsListenerResource listener);
432
401
  void OnRouteConfigUpdate(XdsRouteConfigResource rds_update);
433
402
  void OnError(absl::string_view context, absl::Status status);
@@ -461,188 +430,72 @@ class XdsResolver : public Resolver {
461
430
  std::string /*LB policy config*/>
462
431
  cluster_specifier_plugin_map_;
463
432
 
464
- std::map<absl::string_view, WeakRefCountedPtr<ClusterState>>
465
- cluster_state_map_;
433
+ std::map<absl::string_view, WeakRefCountedPtr<ClusterRef>> cluster_ref_map_;
466
434
  };
467
435
 
468
436
  //
469
- // XdsResolver::XdsConfigSelector::Route
437
+ // XdsResolver::RouteConfigData::RouteListIterator
470
438
  //
471
439
 
472
- bool MethodConfigsEqual(const ServiceConfig* sc1, const ServiceConfig* sc2) {
473
- if (sc1 == nullptr) return sc2 == nullptr;
474
- if (sc2 == nullptr) return false;
475
- return sc1->json_string() == sc2->json_string();
476
- }
477
-
478
- const grpc_channel_filter XdsResolver::ClusterSelectionFilter::kFilter =
479
- MakePromiseBasedFilter<ClusterSelectionFilter, FilterEndpoint::kClient,
480
- kFilterExaminesServerInitialMetadata>(
481
- "cluster_selection_filter");
482
-
483
- bool XdsResolver::XdsConfigSelector::Route::ClusterWeightState::operator==(
484
- const ClusterWeightState& other) const {
485
- return range_end == other.range_end && cluster == other.cluster &&
486
- MethodConfigsEqual(method_config.get(), other.method_config.get());
487
- }
488
-
489
- bool XdsResolver::XdsConfigSelector::Route::operator==(
490
- const Route& other) const {
491
- return route == other.route &&
492
- weighted_cluster_state == other.weighted_cluster_state &&
493
- MethodConfigsEqual(method_config.get(), other.method_config.get());
494
- }
495
-
496
440
  // Implementation of XdsRouting::RouteListIterator for getting the matching
497
441
  // route for a request.
498
- class XdsResolver::XdsConfigSelector::RouteListIterator
442
+ class XdsResolver::RouteConfigData::RouteListIterator
499
443
  : public XdsRouting::RouteListIterator {
500
444
  public:
501
- explicit RouteListIterator(const RouteTable* route_table)
445
+ explicit RouteListIterator(const RouteConfigData* route_table)
502
446
  : route_table_(route_table) {}
503
447
 
504
- size_t Size() const override { return route_table_->size(); }
448
+ size_t Size() const override { return route_table_->routes_.size(); }
505
449
 
506
450
  const XdsRouteConfigResource::Route::Matchers& GetMatchersForRoute(
507
451
  size_t index) const override {
508
- return (*route_table_)[index].route.matchers;
452
+ return route_table_->routes_[index].route.matchers;
509
453
  }
510
454
 
511
455
  private:
512
- const RouteTable* route_table_;
456
+ const RouteConfigData* route_table_;
513
457
  };
514
458
 
515
459
  //
516
- // XdsResolver::XdsConfigSelector
460
+ // XdsResolver::RouteConfigData
517
461
  //
518
462
 
519
- XdsResolver::XdsConfigSelector::XdsConfigSelector(
520
- RefCountedPtr<XdsResolver> resolver, absl::Status* status)
521
- : resolver_(std::move(resolver)) {
522
- if (GRPC_TRACE_FLAG_ENABLED(grpc_xds_resolver_trace)) {
523
- gpr_log(GPR_INFO, "[xds_resolver %p] creating XdsConfigSelector %p",
524
- resolver_.get(), this);
525
- }
526
- // 1. Construct the route table
527
- // 2 Update resolver's cluster state map
528
- // 3. Construct cluster list to hold on to entries in the cluster state
529
- // map.
463
+ absl::StatusOr<RefCountedPtr<XdsResolver::RouteConfigData>>
464
+ XdsResolver::RouteConfigData::Create(
465
+ XdsResolver* resolver,
466
+ const std::vector<XdsRouteConfigResource::Route>& routes,
467
+ const Duration& default_max_stream_duration) {
468
+ auto data = MakeRefCounted<RouteConfigData>();
530
469
  // Reserve the necessary entries up-front to avoid reallocation as we add
531
470
  // elements. This is necessary because the string_view in the entry's
532
471
  // weighted_cluster_state field points to the memory in the route field, so
533
472
  // moving the entry in a reallocation will cause the string_view to point to
534
473
  // invalid data.
535
- route_table_.reserve(resolver_->current_virtual_host_->routes.size());
536
- std::map<absl::string_view, RefCountedPtr<ClusterState>> clusters;
537
- auto maybe_add_cluster = [&](absl::string_view cluster_name) {
538
- if (clusters.find(cluster_name) != clusters.end()) return;
539
- auto cluster_state = resolver_->GetOrCreateClusterState(cluster_name);
540
- absl::string_view name = cluster_state->cluster_name();
541
- clusters.emplace(name, std::move(cluster_state));
542
- };
543
- for (auto& route : resolver_->current_virtual_host_->routes) {
544
- if (GRPC_TRACE_FLAG_ENABLED(grpc_xds_resolver_trace)) {
545
- gpr_log(GPR_INFO, "[xds_resolver %p] XdsConfigSelector %p: route: %s",
546
- resolver_.get(), this, route.ToString().c_str());
547
- }
548
- route_table_.emplace_back();
549
- auto& route_entry = route_table_.back();
550
- route_entry.route = route;
551
- auto* route_action =
552
- absl::get_if<XdsRouteConfigResource::Route::RouteAction>(
553
- &route_entry.route.action);
554
- if (route_action != nullptr) {
555
- // If the route doesn't specify a timeout, set its timeout to the global
556
- // one.
557
- if (!route_action->max_stream_duration.has_value()) {
558
- route_action->max_stream_duration =
559
- resolver_->current_listener_.http_max_stream_duration;
560
- }
561
- Match(
562
- route_action->action,
563
- // cluster name
564
- [&](const XdsRouteConfigResource::Route::RouteAction::ClusterName&
565
- cluster_name) {
566
- auto result = CreateMethodConfig(route_entry.route, nullptr);
567
- if (!result.ok()) {
568
- *status = result.status();
569
- return;
570
- }
571
- route_entry.method_config = std::move(*result);
572
- maybe_add_cluster(
573
- absl::StrCat("cluster:", cluster_name.cluster_name));
574
- },
575
- // WeightedClusters
576
- [&](const std::vector<
577
- XdsRouteConfigResource::Route::RouteAction::ClusterWeight>&
578
- weighted_clusters) {
579
- uint32_t end = 0;
580
- for (const auto& weighted_cluster : weighted_clusters) {
581
- Route::ClusterWeightState cluster_weight_state;
582
- auto result =
583
- CreateMethodConfig(route_entry.route, &weighted_cluster);
584
- if (!result.ok()) {
585
- *status = result.status();
586
- return;
587
- }
588
- cluster_weight_state.method_config = std::move(*result);
589
- end += weighted_cluster.weight;
590
- cluster_weight_state.range_end = end;
591
- cluster_weight_state.cluster = weighted_cluster.name;
592
- route_entry.weighted_cluster_state.push_back(
593
- std::move(cluster_weight_state));
594
- maybe_add_cluster(
595
- absl::StrCat("cluster:", weighted_cluster.name));
596
- }
597
- },
598
- // ClusterSpecifierPlugin
599
- [&](const XdsRouteConfigResource::Route::RouteAction::
600
- ClusterSpecifierPluginName& cluster_specifier_plugin_name) {
601
- auto result = CreateMethodConfig(route_entry.route, nullptr);
602
- if (!result.ok()) {
603
- *status = result.status();
604
- return;
605
- }
606
- route_entry.method_config = std::move(*result);
607
- maybe_add_cluster(absl::StrCat(
608
- "cluster_specifier_plugin:",
609
- cluster_specifier_plugin_name.cluster_specifier_plugin_name));
610
- });
611
- if (!status->ok()) return;
612
- }
613
- }
614
- cluster_map_ = MakeRefCounted<XdsClusterMap>(std::move(clusters));
615
- // Populate filter list.
616
- const auto& http_filter_registry =
617
- static_cast<const GrpcXdsBootstrap&>(resolver_->xds_client_->bootstrap())
618
- .http_filter_registry();
619
- for (const auto& http_filter : resolver_->current_listener_.http_filters) {
620
- // Find filter. This is guaranteed to succeed, because it's checked
621
- // at config validation time in the XdsApi code.
622
- const XdsHttpFilterImpl* filter_impl =
623
- http_filter_registry.GetFilterForType(
624
- http_filter.config.config_proto_type_name);
625
- GPR_ASSERT(filter_impl != nullptr);
626
- // Add C-core filter to list.
627
- if (filter_impl->channel_filter() != nullptr) {
628
- filters_.push_back(filter_impl->channel_filter());
474
+ data->routes_.reserve(routes.size());
475
+ for (auto& route : routes) {
476
+ absl::Status status =
477
+ data->AddRouteEntry(route, default_max_stream_duration, resolver);
478
+ if (!status.ok()) {
479
+ return status;
629
480
  }
630
481
  }
631
- filters_.push_back(&ClusterSelectionFilter::kFilter);
482
+ return data;
632
483
  }
633
484
 
634
- XdsResolver::XdsConfigSelector::~XdsConfigSelector() {
635
- if (GRPC_TRACE_FLAG_ENABLED(grpc_xds_resolver_trace)) {
636
- gpr_log(GPR_INFO, "[xds_resolver %p] destroying XdsConfigSelector %p",
637
- resolver_.get(), this);
485
+ XdsResolver::RouteConfigData::RouteEntry*
486
+ XdsResolver::RouteConfigData::GetRouteForRequest(
487
+ absl::string_view path, grpc_metadata_batch* initial_metadata) {
488
+ auto route_index = XdsRouting::GetRouteForRequest(RouteListIterator(this),
489
+ path, initial_metadata);
490
+ if (!route_index.has_value()) {
491
+ return nullptr;
638
492
  }
639
- cluster_map_.reset();
640
- resolver_->MaybeRemoveUnusedClusters();
493
+ return &routes_[*route_index];
641
494
  }
642
495
 
643
496
  absl::StatusOr<RefCountedPtr<ServiceConfig>>
644
- XdsResolver::XdsConfigSelector::CreateMethodConfig(
645
- const XdsRouteConfigResource::Route& route,
497
+ XdsResolver::RouteConfigData::CreateMethodConfig(
498
+ XdsResolver* resolver, const XdsRouteConfigResource::Route& route,
646
499
  const XdsRouteConfigResource::Route::RouteAction::ClusterWeight*
647
500
  cluster_weight) {
648
501
  std::vector<std::string> fields;
@@ -694,11 +547,11 @@ XdsResolver::XdsConfigSelector::CreateMethodConfig(
694
547
  }
695
548
  // Handle xDS HTTP filters.
696
549
  auto result = XdsRouting::GeneratePerHTTPFilterConfigs(
697
- static_cast<const GrpcXdsBootstrap&>(resolver_->xds_client_->bootstrap())
550
+ static_cast<const GrpcXdsBootstrap&>(resolver->xds_client_->bootstrap())
698
551
  .http_filter_registry(),
699
- resolver_->current_listener_.http_filters,
700
- resolver_->current_virtual_host_.value(), route, cluster_weight,
701
- resolver_->args_);
552
+ resolver->current_listener_.http_filters,
553
+ resolver->current_virtual_host_.value(), route, cluster_weight,
554
+ resolver->args_);
702
555
  if (!result.ok()) return result.status();
703
556
  for (const auto& p : result->per_filter_configs) {
704
557
  fields.emplace_back(absl::StrCat(" \"", p.first, "\": [\n",
@@ -722,6 +575,128 @@ XdsResolver::XdsConfigSelector::CreateMethodConfig(
722
575
  return nullptr;
723
576
  }
724
577
 
578
+ absl::Status XdsResolver::RouteConfigData::AddRouteEntry(
579
+ const XdsRouteConfigResource::Route& route,
580
+ const Duration& default_max_stream_duration, XdsResolver* resolver) {
581
+ if (GRPC_TRACE_FLAG_ENABLED(grpc_xds_resolver_trace)) {
582
+ gpr_log(GPR_INFO, "[xds_resolver %p] XdsConfigSelector %p: route: %s",
583
+ resolver, this, route.ToString().c_str());
584
+ }
585
+ routes_.emplace_back(route);
586
+ auto* route_entry = &routes_.back();
587
+ auto maybe_add_cluster = [&](absl::string_view cluster_name) {
588
+ if (clusters_.find(cluster_name) != clusters_.end()) return;
589
+ auto cluster_state = resolver->GetOrCreateClusterRef(cluster_name);
590
+ absl::string_view name = cluster_state->cluster_name();
591
+ clusters_.emplace(name, std::move(cluster_state));
592
+ };
593
+ auto* route_action = absl::get_if<XdsRouteConfigResource::Route::RouteAction>(
594
+ &route_entry->route.action);
595
+ if (route_action != nullptr) {
596
+ // If the route doesn't specify a timeout, set its timeout to the global
597
+ // one.
598
+ if (!route_action->max_stream_duration.has_value()) {
599
+ route_action->max_stream_duration = default_max_stream_duration;
600
+ }
601
+ absl::Status status = Match(
602
+ route_action->action,
603
+ // cluster name
604
+ [&](const XdsRouteConfigResource::Route::RouteAction::ClusterName&
605
+ cluster_name) {
606
+ auto result =
607
+ CreateMethodConfig(resolver, route_entry->route, nullptr);
608
+ if (!result.ok()) {
609
+ return result.status();
610
+ }
611
+ route_entry->method_config = std::move(*result);
612
+ maybe_add_cluster(
613
+ absl::StrCat("cluster:", cluster_name.cluster_name));
614
+ return absl::OkStatus();
615
+ },
616
+ // WeightedClusters
617
+ [&](const std::vector<
618
+ XdsRouteConfigResource::Route::RouteAction::ClusterWeight>&
619
+ weighted_clusters) {
620
+ uint32_t end = 0;
621
+ for (const auto& weighted_cluster : weighted_clusters) {
622
+ auto result = CreateMethodConfig(resolver, route_entry->route,
623
+ &weighted_cluster);
624
+ if (!result.ok()) {
625
+ return result.status();
626
+ }
627
+ RouteEntry::ClusterWeightState cluster_weight_state;
628
+ cluster_weight_state.method_config = std::move(*result);
629
+ end += weighted_cluster.weight;
630
+ cluster_weight_state.range_end = end;
631
+ cluster_weight_state.cluster = weighted_cluster.name;
632
+ route_entry->weighted_cluster_state.push_back(
633
+ std::move(cluster_weight_state));
634
+ maybe_add_cluster(absl::StrCat("cluster:", weighted_cluster.name));
635
+ }
636
+ return absl::OkStatus();
637
+ },
638
+ // ClusterSpecifierPlugin
639
+ [&](const XdsRouteConfigResource::Route::RouteAction::
640
+ ClusterSpecifierPluginName& cluster_specifier_plugin_name) {
641
+ auto result =
642
+ CreateMethodConfig(resolver, route_entry->route, nullptr);
643
+ if (!result.ok()) {
644
+ return result.status();
645
+ }
646
+ route_entry->method_config = std::move(*result);
647
+ maybe_add_cluster(absl::StrCat(
648
+ "cluster_specifier_plugin:",
649
+ cluster_specifier_plugin_name.cluster_specifier_plugin_name));
650
+ return absl::OkStatus();
651
+ });
652
+ if (!status.ok()) {
653
+ return status;
654
+ }
655
+ }
656
+ return absl::OkStatus();
657
+ }
658
+
659
+ //
660
+ // XdsResolver::XdsConfigSelector
661
+ //
662
+
663
+ XdsResolver::XdsConfigSelector::XdsConfigSelector(
664
+ RefCountedPtr<XdsResolver> resolver,
665
+ RefCountedPtr<RouteConfigData> route_config_data)
666
+ : resolver_(std::move(resolver)),
667
+ route_config_data_(std::move(route_config_data)) {
668
+ if (GRPC_TRACE_FLAG_ENABLED(grpc_xds_resolver_trace)) {
669
+ gpr_log(GPR_INFO, "[xds_resolver %p] creating XdsConfigSelector %p",
670
+ resolver_.get(), this);
671
+ }
672
+ // Populate filter list.
673
+ const auto& http_filter_registry =
674
+ static_cast<const GrpcXdsBootstrap&>(resolver_->xds_client_->bootstrap())
675
+ .http_filter_registry();
676
+ for (const auto& http_filter : resolver_->current_listener_.http_filters) {
677
+ // Find filter. This is guaranteed to succeed, because it's checked
678
+ // at config validation time in the XdsApi code.
679
+ const XdsHttpFilterImpl* filter_impl =
680
+ http_filter_registry.GetFilterForType(
681
+ http_filter.config.config_proto_type_name);
682
+ GPR_ASSERT(filter_impl != nullptr);
683
+ // Add C-core filter to list.
684
+ if (filter_impl->channel_filter() != nullptr) {
685
+ filters_.push_back(filter_impl->channel_filter());
686
+ }
687
+ }
688
+ filters_.push_back(&ClusterSelectionFilter::kFilter);
689
+ }
690
+
691
+ XdsResolver::XdsConfigSelector::~XdsConfigSelector() {
692
+ if (GRPC_TRACE_FLAG_ENABLED(grpc_xds_resolver_trace)) {
693
+ gpr_log(GPR_INFO, "[xds_resolver %p] destroying XdsConfigSelector %p",
694
+ resolver_.get(), this);
695
+ }
696
+ route_config_data_.reset();
697
+ resolver_->MaybeRemoveUnusedClusters();
698
+ }
699
+
725
700
  absl::optional<uint64_t> HeaderHashHelper(
726
701
  const XdsRouteConfigResource::Route::RouteAction::HashPolicy::Header&
727
702
  header_policy,
@@ -747,18 +722,16 @@ absl::Status XdsResolver::XdsConfigSelector::GetCallConfig(
747
722
  GetCallConfigArgs args) {
748
723
  Slice* path = args.initial_metadata->get_pointer(HttpPathMetadata());
749
724
  GPR_ASSERT(path != nullptr);
750
- auto route_index = XdsRouting::GetRouteForRequest(
751
- RouteListIterator(&route_table_), path->as_string_view(),
752
- args.initial_metadata);
753
- if (!route_index.has_value()) {
725
+ auto* entry = route_config_data_->GetRouteForRequest(path->as_string_view(),
726
+ args.initial_metadata);
727
+ if (entry == nullptr) {
754
728
  return absl::UnavailableError(
755
729
  "No matching route found in xDS route config");
756
730
  }
757
- auto& entry = route_table_[*route_index];
758
731
  // Found a route match
759
732
  const auto* route_action =
760
733
  absl::get_if<XdsRouteConfigResource::Route::RouteAction>(
761
- &entry.route.action);
734
+ &entry->route.action);
762
735
  if (route_action == nullptr) {
763
736
  return absl::UnavailableError("Matching route has inappropriate action");
764
737
  }
@@ -771,24 +744,24 @@ absl::Status XdsResolver::XdsConfigSelector::GetCallConfig(
771
744
  action_cluster_name) {
772
745
  cluster_name =
773
746
  absl::StrCat("cluster:", action_cluster_name.cluster_name);
774
- method_config = entry.method_config;
747
+ method_config = entry->method_config;
775
748
  },
776
749
  // WeightedClusters
777
750
  [&](const std::vector<
778
751
  XdsRouteConfigResource::Route::RouteAction::ClusterWeight>&
779
752
  /*weighted_clusters*/) {
780
753
  const uint32_t key = absl::Uniform<uint32_t>(
781
- absl::BitGen(), 0, entry.weighted_cluster_state.back().range_end);
754
+ absl::BitGen(), 0, entry->weighted_cluster_state.back().range_end);
782
755
  // Find the index in weighted clusters corresponding to key.
783
756
  size_t mid = 0;
784
757
  size_t start_index = 0;
785
- size_t end_index = entry.weighted_cluster_state.size() - 1;
758
+ size_t end_index = entry->weighted_cluster_state.size() - 1;
786
759
  size_t index = 0;
787
760
  while (end_index > start_index) {
788
761
  mid = (start_index + end_index) / 2;
789
- if (entry.weighted_cluster_state[mid].range_end > key) {
762
+ if (entry->weighted_cluster_state[mid].range_end > key) {
790
763
  end_index = mid;
791
- } else if (entry.weighted_cluster_state[mid].range_end < key) {
764
+ } else if (entry->weighted_cluster_state[mid].range_end < key) {
792
765
  start_index = mid + 1;
793
766
  } else {
794
767
  index = mid + 1;
@@ -796,10 +769,10 @@ absl::Status XdsResolver::XdsConfigSelector::GetCallConfig(
796
769
  }
797
770
  }
798
771
  if (index == 0) index = start_index;
799
- GPR_ASSERT(entry.weighted_cluster_state[index].range_end > key);
772
+ GPR_ASSERT(entry->weighted_cluster_state[index].range_end > key);
800
773
  cluster_name = absl::StrCat(
801
- "cluster:", entry.weighted_cluster_state[index].cluster);
802
- method_config = entry.weighted_cluster_state[index].method_config;
774
+ "cluster:", entry->weighted_cluster_state[index].cluster);
775
+ method_config = entry->weighted_cluster_state[index].method_config;
803
776
  },
804
777
  // ClusterSpecifierPlugin
805
778
  [&](const XdsRouteConfigResource::Route::RouteAction::
@@ -807,9 +780,9 @@ absl::Status XdsResolver::XdsConfigSelector::GetCallConfig(
807
780
  cluster_name = absl::StrCat(
808
781
  "cluster_specifier_plugin:",
809
782
  cluster_specifier_plugin_name.cluster_specifier_plugin_name);
810
- method_config = entry.method_config;
783
+ method_config = entry->method_config;
811
784
  });
812
- auto cluster = cluster_map_->Find(cluster_name);
785
+ auto cluster = route_config_data_->FindClusterRef(cluster_name);
813
786
  GPR_ASSERT(cluster != nullptr);
814
787
  // Generate a hash.
815
788
  absl::optional<uint64_t> hash;
@@ -857,10 +830,85 @@ absl::Status XdsResolver::XdsConfigSelector::GetCallConfig(
857
830
  args.service_config_call_data->SetCallAttribute(
858
831
  args.arena->New<RequestHashAttribute>(hash_value));
859
832
  args.service_config_call_data->SetCallAttribute(
860
- args.arena->ManagedNew<XdsClusterMapAttribute>(cluster_map_));
833
+ args.arena->ManagedNew<XdsRouteStateAttributeImpl>(route_config_data_,
834
+ entry));
861
835
  return absl::OkStatus();
862
836
  }
863
837
 
838
+ //
839
+ // XdsResolver::XdsRouteStateAttributeImpl
840
+ //
841
+
842
+ bool XdsResolver::XdsRouteStateAttributeImpl::HasClusterForRoute(
843
+ absl::string_view cluster_name) const {
844
+ // Found a route match
845
+ const auto* route_action =
846
+ absl::get_if<XdsRouteConfigResource::Route::RouteAction>(
847
+ &static_cast<RouteConfigData::RouteEntry*>(route_)->route.action);
848
+ if (route_action == nullptr) return false;
849
+ return Match(
850
+ route_action->action,
851
+ [&](const XdsRouteConfigResource::Route::RouteAction::ClusterName& name) {
852
+ return name.cluster_name == cluster_name;
853
+ },
854
+ [&](const std::vector<
855
+ XdsRouteConfigResource::Route::RouteAction::ClusterWeight>&
856
+ clusters) {
857
+ for (const auto& cluster : clusters) {
858
+ if (cluster.name == cluster_name) {
859
+ return true;
860
+ }
861
+ }
862
+ return false;
863
+ },
864
+ [&](const XdsRouteConfigResource::Route::RouteAction::
865
+ ClusterSpecifierPluginName& /* name */) { return false; });
866
+ }
867
+
868
+ RefCountedPtr<XdsResolver::ClusterRef>
869
+ XdsResolver::XdsRouteStateAttributeImpl::LockAndGetCluster(
870
+ absl::string_view cluster_name) {
871
+ if (route_config_data_ == nullptr) {
872
+ return nullptr;
873
+ }
874
+ auto cluster = route_config_data_->FindClusterRef(cluster_name);
875
+ route_config_data_.reset();
876
+ return cluster;
877
+ }
878
+
879
+ //
880
+ // XdsResolver::ClusterSelectionFilter
881
+ //
882
+
883
+ const grpc_channel_filter XdsResolver::ClusterSelectionFilter::kFilter =
884
+ MakePromiseBasedFilter<ClusterSelectionFilter, FilterEndpoint::kClient,
885
+ kFilterExaminesServerInitialMetadata>(
886
+ "cluster_selection_filter");
887
+
888
+ ArenaPromise<ServerMetadataHandle>
889
+ XdsResolver::ClusterSelectionFilter::MakeCallPromise(
890
+ CallArgs call_args, NextPromiseFactory next_promise_factory) {
891
+ auto* service_config_call_data =
892
+ static_cast<ClientChannelServiceConfigCallData*>(
893
+ GetContext<grpc_call_context_element>()
894
+ [GRPC_CONTEXT_SERVICE_CONFIG_CALL_DATA]
895
+ .value);
896
+ GPR_ASSERT(service_config_call_data != nullptr);
897
+ auto* route_state_attribute = static_cast<XdsRouteStateAttributeImpl*>(
898
+ service_config_call_data->GetCallAttribute<XdsRouteStateAttribute>());
899
+ auto* cluster_name_attribute =
900
+ service_config_call_data->GetCallAttribute<XdsClusterAttribute>();
901
+ if (route_state_attribute != nullptr && cluster_name_attribute != nullptr) {
902
+ auto cluster = route_state_attribute->LockAndGetCluster(
903
+ cluster_name_attribute->cluster());
904
+ if (cluster != nullptr) {
905
+ service_config_call_data->SetOnCommit(
906
+ [cluster = std::move(cluster)]() mutable { cluster.reset(); });
907
+ }
908
+ }
909
+ return next_promise_factory(std::move(call_args));
910
+ }
911
+
864
912
  //
865
913
  // XdsResolver
866
914
  //
@@ -1016,7 +1064,6 @@ void XdsResolver::OnListenerUpdate(XdsListenerResource listener) {
1016
1064
  });
1017
1065
  }
1018
1066
 
1019
- namespace {
1020
1067
  class VirtualHostListIterator : public XdsRouting::VirtualHostListIterator {
1021
1068
  public:
1022
1069
  explicit VirtualHostListIterator(
@@ -1033,7 +1080,6 @@ class VirtualHostListIterator : public XdsRouting::VirtualHostListIterator {
1033
1080
  private:
1034
1081
  const std::vector<XdsRouteConfigResource::VirtualHost>* virtual_hosts_;
1035
1082
  };
1036
- } // namespace
1037
1083
 
1038
1084
  void XdsResolver::OnRouteConfigUpdate(XdsRouteConfigResource rds_update) {
1039
1085
  if (GRPC_TRACE_FLAG_ENABLED(grpc_xds_resolver_trace)) {
@@ -1100,7 +1146,7 @@ void XdsResolver::OnResourceDoesNotExist(std::string context) {
1100
1146
  absl::StatusOr<RefCountedPtr<ServiceConfig>>
1101
1147
  XdsResolver::CreateServiceConfig() {
1102
1148
  std::vector<std::string> clusters;
1103
- for (const auto& cluster : cluster_state_map_) {
1149
+ for (const auto& cluster : cluster_ref_map_) {
1104
1150
  absl::string_view child_name = cluster.first;
1105
1151
  if (absl::ConsumePrefix(&child_name, "cluster_specifier_plugin:")) {
1106
1152
  clusters.push_back(absl::StrFormat(
@@ -1142,13 +1188,16 @@ void XdsResolver::GenerateResult() {
1142
1188
  if (!current_virtual_host_.has_value()) return;
1143
1189
  // First create XdsConfigSelector, which may add new entries to the cluster
1144
1190
  // state map, and then CreateServiceConfig for LB policies.
1145
- absl::Status status;
1146
- auto config_selector = MakeRefCounted<XdsConfigSelector>(Ref(), &status);
1147
- if (!status.ok()) {
1191
+ auto route_config_data =
1192
+ RouteConfigData::Create(this, current_virtual_host_->routes,
1193
+ current_listener_.http_max_stream_duration);
1194
+ if (!route_config_data.ok()) {
1148
1195
  OnError("could not create ConfigSelector",
1149
- absl::UnavailableError(status.message()));
1196
+ absl::UnavailableError(route_config_data.status().message()));
1150
1197
  return;
1151
1198
  }
1199
+ auto config_selector =
1200
+ MakeRefCounted<XdsConfigSelector>(Ref(), std::move(*route_config_data));
1152
1201
  Result result;
1153
1202
  result.addresses.emplace();
1154
1203
  result.service_config = CreateServiceConfig();
@@ -1169,13 +1218,13 @@ void XdsResolver::GenerateResult() {
1169
1218
 
1170
1219
  void XdsResolver::MaybeRemoveUnusedClusters() {
1171
1220
  bool update_needed = false;
1172
- for (auto it = cluster_state_map_.begin(); it != cluster_state_map_.end();) {
1173
- RefCountedPtr<ClusterState> cluster_state = it->second->RefIfNonZero();
1221
+ for (auto it = cluster_ref_map_.begin(); it != cluster_ref_map_.end();) {
1222
+ RefCountedPtr<ClusterRef> cluster_state = it->second->RefIfNonZero();
1174
1223
  if (cluster_state != nullptr) {
1175
1224
  ++it;
1176
1225
  } else {
1177
1226
  update_needed = true;
1178
- it = cluster_state_map_.erase(it);
1227
+ it = cluster_ref_map_.erase(it);
1179
1228
  }
1180
1229
  }
1181
1230
  if (update_needed && xds_client_ != nullptr) {
@@ -1185,7 +1234,7 @@ void XdsResolver::MaybeRemoveUnusedClusters() {
1185
1234
  }
1186
1235
 
1187
1236
  //
1188
- // Factory
1237
+ // XdsResolverFactory
1189
1238
  //
1190
1239
 
1191
1240
  class XdsResolverFactory : public ResolverFactory {
@@ -1201,13 +1250,19 @@ class XdsResolverFactory : public ResolverFactory {
1201
1250
  return true;
1202
1251
  }
1203
1252
 
1204
- std::string GetDefaultAuthority(const URI& uri) const override {
1205
- return GetDefaultAuthorityInternal(uri);
1206
- }
1207
-
1208
1253
  OrphanablePtr<Resolver> CreateResolver(ResolverArgs args) const override {
1209
1254
  if (!IsValidUri(args.uri)) return nullptr;
1210
- return MakeOrphanable<XdsResolver>(std::move(args));
1255
+ std::string authority = GetDataPlaneAuthority(args.args, args.uri);
1256
+ return MakeOrphanable<XdsResolver>(std::move(args), std::move(authority));
1257
+ }
1258
+
1259
+ private:
1260
+ std::string GetDataPlaneAuthority(const ChannelArgs& args,
1261
+ const URI& uri) const {
1262
+ absl::optional<absl::string_view> authority =
1263
+ args.GetString(GRPC_ARG_DEFAULT_AUTHORITY);
1264
+ if (authority.has_value()) return URI::PercentEncodeAuthority(*authority);
1265
+ return GetDefaultAuthority(uri);
1211
1266
  }
1212
1267
  };
1213
1268