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
@@ -21,17 +21,21 @@
21
21
 
22
22
  #include <grpc/support/port_platform.h>
23
23
 
24
- #include <stdint.h>
25
-
26
- #include <map>
27
- #include <memory>
28
24
  #include <string>
29
25
  #include <vector>
30
26
 
31
27
  #include "src/core/lib/channel/channel_args.h"
32
- #include "src/core/lib/gpr/useful.h"
33
28
  #include "src/core/lib/iomgr/resolved_address.h"
34
29
 
30
+ // A channel arg key prefix used for args that are intended to be used
31
+ // only internally to resolvers and LB policies and should not be part
32
+ // of the subchannel key. The channel will automatically filter out any
33
+ // args with this prefix from the subchannel's args.
34
+ #define GRPC_ARG_NO_SUBCHANNEL_PREFIX "grpc.internal.no_subchannel."
35
+
36
+ // A channel arg indicating the weight of an address.
37
+ #define GRPC_ARG_ADDRESS_WEIGHT GRPC_ARG_NO_SUBCHANNEL_PREFIX "address.weight"
38
+
35
39
  namespace grpc_core {
36
40
 
37
41
  //
@@ -43,30 +47,7 @@ namespace grpc_core {
43
47
  // args when a subchannel is created for this address.
44
48
  class ServerAddress {
45
49
  public:
46
- // Base class for resolver-supplied attributes.
47
- // Unlike channel args, these attributes don't affect subchannel
48
- // uniqueness or behavior. They are for use by LB policies only.
49
- //
50
- // Attributes are keyed by a C string that is unique by address, not
51
- // by value. All attributes added with the same key must be of the
52
- // same type.
53
- class AttributeInterface {
54
- public:
55
- virtual ~AttributeInterface() = default;
56
-
57
- // Creates a copy of the attribute.
58
- virtual std::unique_ptr<AttributeInterface> Copy() const = 0;
59
-
60
- // Compares this attribute with another.
61
- virtual int Cmp(const AttributeInterface* other) const = 0;
62
-
63
- // Returns a human-readable representation of the attribute.
64
- virtual std::string ToString() const = 0;
65
- };
66
-
67
- ServerAddress(const grpc_resolved_address& address, const ChannelArgs& args,
68
- std::map<const char*, std::unique_ptr<AttributeInterface>>
69
- attributes = {});
50
+ ServerAddress(const grpc_resolved_address& address, const ChannelArgs& args);
70
51
 
71
52
  // Copyable.
72
53
  ServerAddress(const ServerAddress& other);
@@ -83,13 +64,6 @@ class ServerAddress {
83
64
  const grpc_resolved_address& address() const { return address_; }
84
65
  const ChannelArgs& args() const { return args_; }
85
66
 
86
- const AttributeInterface* GetAttribute(const char* key) const;
87
-
88
- // Returns a copy of the address with a modified attribute.
89
- // If the new value is null, the attribute is removed.
90
- ServerAddress WithAttribute(const char* key,
91
- std::unique_ptr<AttributeInterface> value) const;
92
-
93
67
  // TODO(ctiller): Prior to making this a public API we should ensure that the
94
68
  // channel args are not part of the generated string, lest we make that debug
95
69
  // format load-bearing via Hyrum's law.
@@ -98,7 +72,6 @@ class ServerAddress {
98
72
  private:
99
73
  grpc_resolved_address address_;
100
74
  ChannelArgs args_;
101
- std::map<const char*, std::unique_ptr<AttributeInterface>> attributes_;
102
75
  };
103
76
 
104
77
  //
@@ -107,33 +80,6 @@ class ServerAddress {
107
80
 
108
81
  using ServerAddressList = std::vector<ServerAddress>;
109
82
 
110
- //
111
- // ServerAddressWeightAttribute
112
- //
113
- class ServerAddressWeightAttribute : public ServerAddress::AttributeInterface {
114
- public:
115
- static const char* kServerAddressWeightAttributeKey;
116
-
117
- explicit ServerAddressWeightAttribute(uint32_t weight) : weight_(weight) {}
118
-
119
- uint32_t weight() const { return weight_; }
120
-
121
- std::unique_ptr<AttributeInterface> Copy() const override {
122
- return std::make_unique<ServerAddressWeightAttribute>(weight_);
123
- }
124
-
125
- int Cmp(const AttributeInterface* other) const override {
126
- const auto* other_locality_attr =
127
- static_cast<const ServerAddressWeightAttribute*>(other);
128
- return QsortCompare(weight_, other_locality_attr->weight_);
129
- }
130
-
131
- std::string ToString() const override;
132
-
133
- private:
134
- uint32_t weight_;
135
- };
136
-
137
83
  } // namespace grpc_core
138
84
 
139
85
  #endif // GRPC_SRC_CORE_LIB_RESOLVER_SERVER_ADDRESS_H
@@ -459,7 +459,7 @@ class GrpcMemoryAllocatorImpl final : public EventEngineMemoryAllocatorImpl {
459
459
  static constexpr size_t kMaxQuotaBufferSize = 1024 * 1024;
460
460
 
461
461
  // Primitive reservation function.
462
- absl::optional<size_t> TryReserve(MemoryRequest request) GRPC_MUST_USE_RESULT;
462
+ GRPC_MUST_USE_RESULT absl::optional<size_t> TryReserve(MemoryRequest request);
463
463
  // This function may be invoked during a memory release operation.
464
464
  // It will try to return half of our free pool to the quota.
465
465
  void MaybeDonateBack();
@@ -21,81 +21,105 @@
21
21
 
22
22
  #include <map>
23
23
  #include <memory>
24
- #include <string>
25
24
  #include <type_traits>
25
+ #include <utility>
26
26
 
27
27
  #include "absl/strings/string_view.h"
28
28
 
29
+ #include "src/core/lib/gprpp/ref_counted.h"
29
30
  #include "src/core/lib/gprpp/ref_counted_ptr.h"
31
+ #include "src/core/lib/gprpp/validation_errors.h"
30
32
  #include "src/core/lib/json/json.h"
33
+ #include "src/core/lib/json/json_args.h"
31
34
 
32
35
  struct grpc_channel_credentials;
33
36
 
34
37
  namespace grpc_core {
35
38
 
39
+ class ChannelCredsConfig : public RefCounted<ChannelCredsConfig> {
40
+ public:
41
+ virtual absl::string_view type() const = 0;
42
+
43
+ virtual bool Equals(const ChannelCredsConfig& other) const = 0;
44
+
45
+ virtual Json ToJson() const = 0;
46
+ };
47
+
36
48
  template <typename T = grpc_channel_credentials>
37
49
  class ChannelCredsFactory final {
38
50
  public:
39
51
  virtual ~ChannelCredsFactory() {}
40
- virtual absl::string_view creds_type() const = delete;
41
- virtual bool IsValidConfig(const Json& config) const = delete;
42
- virtual RefCountedPtr<T> CreateChannelCreds(const Json& config) const =
43
- delete;
52
+ virtual absl::string_view type() const = delete;
53
+ virtual RefCountedPtr<ChannelCredsConfig> ParseConfig(
54
+ const Json& config, const JsonArgs& args,
55
+ ValidationErrors* errors) const = delete;
56
+ virtual RefCountedPtr<T> CreateChannelCreds(
57
+ RefCountedPtr<ChannelCredsConfig> config) const = delete;
44
58
  };
45
59
 
46
60
  template <>
47
61
  class ChannelCredsFactory<grpc_channel_credentials> {
48
62
  public:
49
63
  virtual ~ChannelCredsFactory() {}
50
- virtual absl::string_view creds_type() const = 0;
51
- virtual bool IsValidConfig(const Json& config) const = 0;
64
+ virtual absl::string_view type() const = 0;
65
+ virtual RefCountedPtr<ChannelCredsConfig> ParseConfig(
66
+ const Json& config, const JsonArgs& args,
67
+ ValidationErrors* errors) const = 0;
52
68
  virtual RefCountedPtr<grpc_channel_credentials> CreateChannelCreds(
53
- const Json& config) const = 0;
69
+ RefCountedPtr<ChannelCredsConfig> config) const = 0;
54
70
  };
55
71
 
56
72
  template <typename T = grpc_channel_credentials>
57
73
  class ChannelCredsRegistry {
74
+ private:
75
+ using FactoryMap =
76
+ std::map<absl::string_view, std::unique_ptr<ChannelCredsFactory<T>>>;
77
+
58
78
  public:
59
79
  static_assert(std::is_base_of<grpc_channel_credentials, T>::value,
60
80
  "ChannelCredsRegistry must be instantiated with "
61
81
  "grpc_channel_credentials.");
82
+
62
83
  class Builder {
63
84
  public:
64
85
  void RegisterChannelCredsFactory(
65
86
  std::unique_ptr<ChannelCredsFactory<T>> factory) {
66
- factories_[factory->creds_type()] = std::move(factory);
87
+ absl::string_view type = factory->type();
88
+ factories_[type] = std::move(factory);
67
89
  }
68
90
  ChannelCredsRegistry Build() {
69
- ChannelCredsRegistry<T> registry;
70
- registry.factories_.swap(factories_);
71
- return registry;
91
+ return ChannelCredsRegistry<T>(std::move(factories_));
72
92
  }
73
93
 
74
94
  private:
75
- std::map<absl::string_view, std::unique_ptr<ChannelCredsFactory<T>>>
76
- factories_;
95
+ FactoryMap factories_;
77
96
  };
78
97
 
79
- bool IsSupported(const std::string& creds_type) const {
80
- return factories_.find(creds_type) != factories_.end();
98
+ bool IsSupported(absl::string_view type) const {
99
+ return factories_.find(type) != factories_.end();
81
100
  }
82
101
 
83
- bool IsValidConfig(const std::string& creds_type, const Json& config) const {
84
- const auto iter = factories_.find(creds_type);
85
- return iter != factories_.cend() && iter->second->IsValidConfig(config);
102
+ RefCountedPtr<ChannelCredsConfig> ParseConfig(
103
+ absl::string_view type, const Json& config, const JsonArgs& args,
104
+ ValidationErrors* errors) const {
105
+ const auto it = factories_.find(type);
106
+ if (it == factories_.cend()) return nullptr;
107
+ return it->second->ParseConfig(config, args, errors);
86
108
  }
87
109
 
88
- RefCountedPtr<T> CreateChannelCreds(const std::string& creds_type,
89
- const Json& config) const {
90
- const auto iter = factories_.find(creds_type);
91
- if (iter == factories_.cend()) return nullptr;
92
- return iter->second->CreateChannelCreds(config);
110
+ RefCountedPtr<T> CreateChannelCreds(
111
+ RefCountedPtr<ChannelCredsConfig> config) const {
112
+ if (config == nullptr) return nullptr;
113
+ const auto it = factories_.find(config->type());
114
+ if (it == factories_.cend()) return nullptr;
115
+ return it->second->CreateChannelCreds(std::move(config));
93
116
  }
94
117
 
95
118
  private:
96
- ChannelCredsRegistry() = default;
97
- std::map<absl::string_view, std::unique_ptr<ChannelCredsFactory<T>>>
98
- factories_;
119
+ explicit ChannelCredsRegistry(FactoryMap factories)
120
+ : factories_(std::move(factories)) {}
121
+
122
+ FactoryMap factories_;
99
123
  };
100
124
 
101
125
  } // namespace grpc_core
@@ -18,59 +18,219 @@
18
18
 
19
19
  #include <grpc/support/port_platform.h>
20
20
 
21
+ #include <map>
21
22
  #include <memory>
23
+ #include <string>
24
+ #include <utility>
22
25
 
23
26
  #include "absl/strings/string_view.h"
24
27
 
25
28
  #include <grpc/grpc.h>
26
29
  #include <grpc/grpc_security.h>
30
+ #include <grpc/support/json.h>
31
+ #include <grpc/support/time.h>
27
32
 
28
33
  #include "src/core/lib/config/core_configuration.h"
29
34
  #include "src/core/lib/gprpp/ref_counted_ptr.h"
35
+ #include "src/core/lib/gprpp/time.h"
36
+ #include "src/core/lib/gprpp/validation_errors.h"
30
37
  #include "src/core/lib/json/json.h"
38
+ #include "src/core/lib/json/json_args.h"
39
+ #include "src/core/lib/json/json_object_loader.h"
31
40
  #include "src/core/lib/security/credentials/channel_creds_registry.h"
32
41
  #include "src/core/lib/security/credentials/credentials.h"
33
42
  #include "src/core/lib/security/credentials/fake/fake_credentials.h"
34
43
  #include "src/core/lib/security/credentials/google_default/google_default_credentials.h" // IWYU pragma: keep
44
+ #include "src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.h"
45
+ #include "src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h"
46
+ #include "src/core/lib/security/credentials/tls/tls_credentials.h"
35
47
 
36
48
  namespace grpc_core {
37
49
 
38
50
  class GoogleDefaultChannelCredsFactory : public ChannelCredsFactory<> {
39
51
  public:
40
- absl::string_view creds_type() const override { return "google_default"; }
41
- bool IsValidConfig(const Json& /*config*/) const override { return true; }
52
+ absl::string_view type() const override { return Type(); }
53
+ RefCountedPtr<ChannelCredsConfig> ParseConfig(
54
+ const Json& /*config*/, const JsonArgs& /*args*/,
55
+ ValidationErrors* /*errors*/) const override {
56
+ return MakeRefCounted<Config>();
57
+ }
42
58
  RefCountedPtr<grpc_channel_credentials> CreateChannelCreds(
43
- const Json& /*config*/) const override {
59
+ RefCountedPtr<ChannelCredsConfig> /*config*/) const override {
44
60
  return RefCountedPtr<grpc_channel_credentials>(
45
61
  grpc_google_default_credentials_create(nullptr));
46
62
  }
63
+
64
+ private:
65
+ class Config : public ChannelCredsConfig {
66
+ public:
67
+ absl::string_view type() const override { return Type(); }
68
+ bool Equals(const ChannelCredsConfig&) const override { return true; }
69
+ Json ToJson() const override { return Json::FromObject({}); }
70
+ };
71
+
72
+ static absl::string_view Type() { return "google_default"; }
73
+ };
74
+
75
+ class TlsChannelCredsFactory : public ChannelCredsFactory<> {
76
+ public:
77
+ absl::string_view type() const override { return Type(); }
78
+
79
+ RefCountedPtr<ChannelCredsConfig> ParseConfig(
80
+ const Json& config, const JsonArgs& args,
81
+ ValidationErrors* errors) const override {
82
+ return LoadFromJson<RefCountedPtr<TlsConfig>>(config, args, errors);
83
+ }
84
+
85
+ RefCountedPtr<grpc_channel_credentials> CreateChannelCreds(
86
+ RefCountedPtr<ChannelCredsConfig> base_config) const override {
87
+ auto* config = static_cast<const TlsConfig*>(base_config.get());
88
+ auto options = MakeRefCounted<grpc_tls_credentials_options>();
89
+ if (!config->certificate_file().empty() ||
90
+ !config->ca_certificate_file().empty()) {
91
+ options->set_certificate_provider(
92
+ MakeRefCounted<FileWatcherCertificateProvider>(
93
+ config->private_key_file(), config->certificate_file(),
94
+ config->ca_certificate_file(),
95
+ config->refresh_interval().millis() / GPR_MS_PER_SEC));
96
+ }
97
+ options->set_watch_root_cert(!config->ca_certificate_file().empty());
98
+ options->set_watch_identity_pair(!config->certificate_file().empty());
99
+ return MakeRefCounted<TlsCredentials>(std::move(options));
100
+ }
101
+
102
+ private:
103
+ // TODO(roth): It would be nice to share most of this config with the
104
+ // xDS file watcher cert provider factory, but that would require
105
+ // adding a dependency from lib to ext.
106
+ class TlsConfig : public ChannelCredsConfig {
107
+ public:
108
+ absl::string_view type() const override { return Type(); }
109
+
110
+ bool Equals(const ChannelCredsConfig& other) const override {
111
+ auto& o = static_cast<const TlsConfig&>(other);
112
+ return certificate_file_ == o.certificate_file_ &&
113
+ private_key_file_ == o.private_key_file_ &&
114
+ ca_certificate_file_ == o.ca_certificate_file_ &&
115
+ refresh_interval_ == o.refresh_interval_;
116
+ }
117
+
118
+ Json ToJson() const override {
119
+ Json::Object obj;
120
+ if (!certificate_file_.empty()) {
121
+ obj["certificate_file"] = Json::FromString(certificate_file_);
122
+ }
123
+ if (!private_key_file_.empty()) {
124
+ obj["private_key_file"] = Json::FromString(private_key_file_);
125
+ }
126
+ if (!ca_certificate_file_.empty()) {
127
+ obj["ca_certificate_file"] = Json::FromString(ca_certificate_file_);
128
+ }
129
+ if (refresh_interval_ != kDefaultRefreshInterval) {
130
+ obj["refresh_interval"] =
131
+ Json::FromString(refresh_interval_.ToJsonString());
132
+ }
133
+ return Json::FromObject(std::move(obj));
134
+ }
135
+
136
+ const std::string& certificate_file() const { return certificate_file_; }
137
+ const std::string& private_key_file() const { return private_key_file_; }
138
+ const std::string& ca_certificate_file() const {
139
+ return ca_certificate_file_;
140
+ }
141
+ Duration refresh_interval() const { return refresh_interval_; }
142
+
143
+ static const JsonLoaderInterface* JsonLoader(const JsonArgs&) {
144
+ static const auto* loader =
145
+ JsonObjectLoader<TlsConfig>()
146
+ .OptionalField("certificate_file", &TlsConfig::certificate_file_)
147
+ .OptionalField("private_key_file", &TlsConfig::private_key_file_)
148
+ .OptionalField("ca_certificate_file",
149
+ &TlsConfig::ca_certificate_file_)
150
+ .OptionalField("refresh_interval", &TlsConfig::refresh_interval_)
151
+ .Finish();
152
+ return loader;
153
+ }
154
+
155
+ void JsonPostLoad(const Json& json, const JsonArgs& /*args*/,
156
+ ValidationErrors* errors) {
157
+ if ((json.object().find("certificate_file") == json.object().end()) !=
158
+ (json.object().find("private_key_file") == json.object().end())) {
159
+ errors->AddError(
160
+ "fields \"certificate_file\" and \"private_key_file\" must be "
161
+ "both set or both unset");
162
+ }
163
+ }
164
+
165
+ private:
166
+ static constexpr Duration kDefaultRefreshInterval = Duration::Minutes(10);
167
+
168
+ std::string certificate_file_;
169
+ std::string private_key_file_;
170
+ std::string ca_certificate_file_;
171
+ Duration refresh_interval_ = kDefaultRefreshInterval;
172
+ };
173
+
174
+ static absl::string_view Type() { return "tls"; }
47
175
  };
48
176
 
177
+ constexpr Duration TlsChannelCredsFactory::TlsConfig::kDefaultRefreshInterval;
178
+
49
179
  class InsecureChannelCredsFactory : public ChannelCredsFactory<> {
50
180
  public:
51
- absl::string_view creds_type() const override { return "insecure"; }
52
- bool IsValidConfig(const Json& /*config*/) const override { return true; }
181
+ absl::string_view type() const override { return Type(); }
182
+ RefCountedPtr<ChannelCredsConfig> ParseConfig(
183
+ const Json& /*config*/, const JsonArgs& /*args*/,
184
+ ValidationErrors* /*errors*/) const override {
185
+ return MakeRefCounted<Config>();
186
+ }
53
187
  RefCountedPtr<grpc_channel_credentials> CreateChannelCreds(
54
- const Json& /*config*/) const override {
188
+ RefCountedPtr<ChannelCredsConfig> /*config*/) const override {
55
189
  return RefCountedPtr<grpc_channel_credentials>(
56
190
  grpc_insecure_credentials_create());
57
191
  }
192
+
193
+ private:
194
+ class Config : public ChannelCredsConfig {
195
+ public:
196
+ absl::string_view type() const override { return Type(); }
197
+ bool Equals(const ChannelCredsConfig&) const override { return true; }
198
+ Json ToJson() const override { return Json::FromObject({}); }
199
+ };
200
+
201
+ static absl::string_view Type() { return "insecure"; }
58
202
  };
59
203
 
60
204
  class FakeChannelCredsFactory : public ChannelCredsFactory<> {
61
205
  public:
62
- absl::string_view creds_type() const override { return "fake"; }
63
- bool IsValidConfig(const Json& /*config*/) const override { return true; }
206
+ absl::string_view type() const override { return Type(); }
207
+ RefCountedPtr<ChannelCredsConfig> ParseConfig(
208
+ const Json& /*config*/, const JsonArgs& /*args*/,
209
+ ValidationErrors* /*errors*/) const override {
210
+ return MakeRefCounted<Config>();
211
+ }
64
212
  RefCountedPtr<grpc_channel_credentials> CreateChannelCreds(
65
- const Json& /*config*/) const override {
213
+ RefCountedPtr<ChannelCredsConfig> /*config*/) const override {
66
214
  return RefCountedPtr<grpc_channel_credentials>(
67
215
  grpc_fake_transport_security_credentials_create());
68
216
  }
217
+
218
+ private:
219
+ class Config : public ChannelCredsConfig {
220
+ public:
221
+ absl::string_view type() const override { return Type(); }
222
+ bool Equals(const ChannelCredsConfig&) const override { return true; }
223
+ Json ToJson() const override { return Json::FromObject({}); }
224
+ };
225
+
226
+ static absl::string_view Type() { return "fake"; }
69
227
  };
70
228
 
71
229
  void RegisterChannelDefaultCreds(CoreConfiguration::Builder* builder) {
72
230
  builder->channel_creds_registry()->RegisterChannelCredsFactory(
73
231
  std::make_unique<GoogleDefaultChannelCredsFactory>());
232
+ builder->channel_creds_registry()->RegisterChannelCredsFactory(
233
+ std::make_unique<TlsChannelCredsFactory>());
74
234
  builder->channel_creds_registry()->RegisterChannelCredsFactory(
75
235
  std::make_unique<InsecureChannelCredsFactory>());
76
236
  builder->channel_creds_registry()->RegisterChannelCredsFactory(
@@ -39,7 +39,7 @@
39
39
  // grpc_composite_channel_credentials
40
40
  //
41
41
 
42
- grpc_core::UniqueTypeName grpc_composite_channel_credentials::type() const {
42
+ grpc_core::UniqueTypeName grpc_composite_channel_credentials::Type() {
43
43
  static grpc_core::UniqueTypeName::Factory kFactory("Composite");
44
44
  return kFactory.Create();
45
45
  }
@@ -68,7 +68,9 @@ class grpc_composite_channel_credentials : public grpc_channel_credentials {
68
68
  return inner_creds_->update_arguments(std::move(args));
69
69
  }
70
70
 
71
- grpc_core::UniqueTypeName type() const override;
71
+ static grpc_core::UniqueTypeName Type();
72
+
73
+ grpc_core::UniqueTypeName type() const override { return Type(); }
72
74
 
73
75
  const grpc_channel_credentials* inner_creds() const {
74
76
  return inner_creds_.get();
@@ -29,6 +29,7 @@
29
29
  #include "absl/status/status.h"
30
30
  #include "absl/status/statusor.h"
31
31
  #include "absl/strings/match.h"
32
+ #include "absl/strings/numbers.h"
32
33
  #include "absl/strings/str_cat.h"
33
34
  #include "absl/strings/str_format.h"
34
35
  #include "absl/strings/str_join.h"
@@ -63,6 +64,9 @@
63
64
  "urn:ietf:params:oauth:token-type:access_token"
64
65
  #define GOOGLE_CLOUD_PLATFORM_DEFAULT_SCOPE \
65
66
  "https://www.googleapis.com/auth/cloud-platform"
67
+ #define IMPERSONATED_CRED_DEFAULT_LIFETIME_IN_SECONDS 3600 // 1 hour
68
+ #define IMPERSONATED_CRED_MIN_LIFETIME_IN_SECONDS 600 // 10 mins
69
+ #define IMPERSONATED_CRED_MAX_LIFETIME_IN_SECONDS 43200 // 12 hours
66
70
 
67
71
  namespace grpc_core {
68
72
 
@@ -197,6 +201,36 @@ RefCountedPtr<ExternalAccountCredentials> ExternalAccountCredentials::Create(
197
201
  return nullptr;
198
202
  }
199
203
  }
204
+ it = json.object().find("service_account_impersonation");
205
+ options.service_account_impersonation.token_lifetime_seconds =
206
+ IMPERSONATED_CRED_DEFAULT_LIFETIME_IN_SECONDS;
207
+ if (it != json.object().end() && it->second.type() == Json::Type::kObject) {
208
+ auto service_acc_imp_json = it->second;
209
+ auto service_acc_imp_obj_it =
210
+ service_acc_imp_json.object().find("token_lifetime_seconds");
211
+ if (service_acc_imp_obj_it != service_acc_imp_json.object().end()) {
212
+ if (!absl::SimpleAtoi(
213
+ service_acc_imp_obj_it->second.string(),
214
+ &options.service_account_impersonation.token_lifetime_seconds)) {
215
+ *error = GRPC_ERROR_CREATE("token_lifetime_seconds must be a number");
216
+ return nullptr;
217
+ }
218
+ if (options.service_account_impersonation.token_lifetime_seconds >
219
+ IMPERSONATED_CRED_MAX_LIFETIME_IN_SECONDS) {
220
+ *error = GRPC_ERROR_CREATE(
221
+ absl::StrFormat("token_lifetime_seconds must be less than %ds",
222
+ IMPERSONATED_CRED_MAX_LIFETIME_IN_SECONDS));
223
+ return nullptr;
224
+ }
225
+ if (options.service_account_impersonation.token_lifetime_seconds <
226
+ IMPERSONATED_CRED_MIN_LIFETIME_IN_SECONDS) {
227
+ *error = GRPC_ERROR_CREATE(
228
+ absl::StrFormat("token_lifetime_seconds must be more than %ds",
229
+ IMPERSONATED_CRED_MIN_LIFETIME_IN_SECONDS));
230
+ return nullptr;
231
+ }
232
+ }
233
+ }
200
234
  RefCountedPtr<ExternalAccountCredentials> creds;
201
235
  if (options.credential_source.object().find("environment_id") !=
202
236
  options.credential_source.object().end()) {
@@ -430,8 +464,13 @@ void ExternalAccountCredentials::ImpersenateServiceAccount() {
430
464
  headers[1].key = gpr_strdup("Authorization");
431
465
  headers[1].value = gpr_strdup(str.c_str());
432
466
  request.hdrs = headers;
467
+ std::vector<std::string> body_members;
433
468
  std::string scope = absl::StrJoin(scopes_, " ");
434
- std::string body = absl::StrFormat("scope=%s", scope);
469
+ body_members.push_back(absl::StrFormat("scope=%s", UrlEncode(scope).c_str()));
470
+ body_members.push_back(absl::StrFormat(
471
+ "lifetime=%ds",
472
+ options_.service_account_impersonation.token_lifetime_seconds));
473
+ std::string body = absl::StrJoin(body_members, "&");
435
474
  request.body = const_cast<char*>(body.c_str());
436
475
  request.body_length = body.size();
437
476
  grpc_http_response_destroy(&ctx_->response);
@@ -19,6 +19,8 @@
19
19
 
20
20
  #include <grpc/support/port_platform.h>
21
21
 
22
+ #include <stdint.h>
23
+
22
24
  #include <functional>
23
25
  #include <string>
24
26
  #include <vector>
@@ -45,12 +47,16 @@ namespace grpc_core {
45
47
  class ExternalAccountCredentials
46
48
  : public grpc_oauth2_token_fetcher_credentials {
47
49
  public:
50
+ struct ServiceAccountImpersonation {
51
+ int32_t token_lifetime_seconds;
52
+ };
48
53
  // External account credentials json interface.
49
54
  struct Options {
50
55
  std::string type;
51
56
  std::string audience;
52
57
  std::string subject_token_type;
53
58
  std::string service_account_impersonation_url;
59
+ ServiceAccountImpersonation service_account_impersonation;
54
60
  std::string token_url;
55
61
  std::string token_info_url;
56
62
  Json credential_source;