grpc 1.66.0 → 1.67.0.pre1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (547) hide show
  1. checksums.yaml +4 -4
  2. data/Makefile +19 -10
  3. data/include/grpc/credentials.h +1 -1
  4. data/include/grpc/event_engine/README.md +1 -1
  5. data/include/grpc/event_engine/internal/slice_cast.h +1 -1
  6. data/include/grpc/event_engine/slice.h +0 -1
  7. data/include/grpc/event_engine/slice_buffer.h +0 -1
  8. data/include/grpc/grpc_crl_provider.h +1 -1
  9. data/include/grpc/impl/channel_arg_names.h +1 -1
  10. data/include/grpc/support/log.h +34 -32
  11. data/include/grpc/support/sync_generic.h +2 -4
  12. data/src/core/channelz/channelz.cc +0 -1
  13. data/src/core/channelz/channelz_registry.cc +0 -1
  14. data/src/core/client_channel/client_channel.cc +10 -7
  15. data/src/core/client_channel/client_channel.h +1 -1
  16. data/src/core/client_channel/client_channel_filter.cc +21 -18
  17. data/src/core/client_channel/client_channel_filter.h +1 -1
  18. data/src/core/client_channel/client_channel_internal.h +0 -2
  19. data/src/core/client_channel/config_selector.h +0 -1
  20. data/src/core/client_channel/dynamic_filters.cc +0 -2
  21. data/src/core/client_channel/local_subchannel_pool.cc +0 -2
  22. data/src/core/client_channel/retry_filter.h +0 -1
  23. data/src/core/client_channel/retry_filter_legacy_call_data.cc +175 -257
  24. data/src/core/client_channel/subchannel.cc +21 -27
  25. data/src/core/client_channel/subchannel_stream_client.cc +1 -1
  26. data/src/core/ext/filters/backend_metrics/backend_metric_filter.cc +8 -9
  27. data/src/core/ext/filters/channel_idle/legacy_channel_idle_filter.cc +0 -1
  28. data/src/core/ext/filters/fault_injection/fault_injection_filter.cc +3 -4
  29. data/src/core/ext/filters/gcp_authentication/gcp_authentication_filter.cc +167 -0
  30. data/src/core/ext/filters/gcp_authentication/gcp_authentication_filter.h +82 -0
  31. data/src/core/ext/filters/gcp_authentication/gcp_authentication_service_config_parser.cc +81 -0
  32. data/src/core/ext/filters/gcp_authentication/gcp_authentication_service_config_parser.h +87 -0
  33. data/src/core/ext/filters/http/message_compress/compression_filter.cc +7 -9
  34. data/src/core/ext/filters/http/server/http_server_filter.cc +2 -4
  35. data/src/core/ext/filters/message_size/message_size_filter.cc +6 -7
  36. data/src/core/ext/filters/stateful_session/stateful_session_filter.cc +0 -2
  37. data/src/core/ext/transport/chttp2/alpn/alpn.cc +0 -1
  38. data/src/core/ext/transport/chttp2/server/chttp2_server.cc +6 -8
  39. data/src/core/ext/transport/chttp2/transport/bin_encoder.cc +0 -1
  40. data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +288 -265
  41. data/src/core/ext/transport/chttp2/transport/flow_control.cc +3 -4
  42. data/src/core/ext/transport/chttp2/transport/flow_control.h +0 -1
  43. data/src/core/ext/transport/chttp2/transport/frame.cc +0 -1
  44. data/src/core/ext/transport/chttp2/transport/frame_data.cc +0 -1
  45. data/src/core/ext/transport/chttp2/transport/frame_goaway.cc +0 -1
  46. data/src/core/ext/transport/chttp2/transport/frame_ping.cc +6 -6
  47. data/src/core/ext/transport/chttp2/transport/frame_rst_stream.cc +3 -4
  48. data/src/core/ext/transport/chttp2/transport/frame_settings.cc +5 -6
  49. data/src/core/ext/transport/chttp2/transport/frame_window_update.cc +0 -1
  50. data/src/core/ext/transport/chttp2/transport/hpack_encoder.cc +2 -3
  51. data/src/core/ext/transport/chttp2/transport/hpack_encoder_table.cc +0 -1
  52. data/src/core/ext/transport/chttp2/transport/hpack_parse_result.h +0 -1
  53. data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +3 -3
  54. data/src/core/ext/transport/chttp2/transport/hpack_parser_table.cc +37 -5
  55. data/src/core/ext/transport/chttp2/transport/hpack_parser_table.h +27 -6
  56. data/src/core/ext/transport/chttp2/transport/internal.h +2 -3
  57. data/src/core/ext/transport/chttp2/transport/parsing.cc +21 -32
  58. data/src/core/ext/transport/chttp2/transport/ping_callbacks.cc +0 -1
  59. data/src/core/ext/transport/chttp2/transport/stream_lists.cc +6 -8
  60. data/src/core/ext/transport/chttp2/transport/varint.h +0 -1
  61. data/src/core/ext/transport/chttp2/transport/write_size_policy.cc +0 -1
  62. data/src/core/ext/transport/chttp2/transport/writing.cc +22 -22
  63. data/src/core/ext/upb-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upb.h +431 -0
  64. data/src/core/ext/upb-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upb_minitable.c +129 -0
  65. data/src/core/ext/upb-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upb_minitable.h +33 -0
  66. data/src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb.h +16 -0
  67. data/src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb_minitable.c +13 -2
  68. data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb.h +397 -22
  69. data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb_minitable.c +94 -20
  70. data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb_minitable.h +2 -0
  71. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upbdefs.c +86 -0
  72. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upbdefs.h +47 -0
  73. data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/checked.upbdefs.c +108 -107
  74. data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/syntax.upbdefs.c +101 -78
  75. data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/syntax.upbdefs.h +10 -0
  76. data/src/core/handshaker/handshaker.cc +21 -29
  77. data/src/core/handshaker/security/secure_endpoint.cc +3 -3
  78. data/src/core/handshaker/security/security_handshaker.cc +60 -72
  79. data/src/core/handshaker/tcp_connect/tcp_connect_handshaker.cc +0 -1
  80. data/src/core/lib/backoff/backoff.cc +7 -10
  81. data/src/core/lib/backoff/backoff.h +4 -6
  82. data/src/core/lib/channel/channel_stack.cc +0 -1
  83. data/src/core/lib/channel/channel_stack.h +0 -1
  84. data/src/core/lib/channel/channel_stack_builder_impl.cc +0 -1
  85. data/src/core/lib/channel/connected_channel.cc +0 -1
  86. data/src/core/lib/channel/promise_based_filter.cc +146 -194
  87. data/src/core/lib/channel/promise_based_filter.h +1 -1
  88. data/src/core/lib/compression/compression_internal.cc +0 -1
  89. data/src/core/lib/config/config_vars.cc +11 -1
  90. data/src/core/lib/config/config_vars.h +8 -0
  91. data/src/core/lib/config/core_configuration.cc +0 -1
  92. data/src/core/lib/config/core_configuration.h +0 -1
  93. data/src/core/lib/debug/event_log.cc +0 -1
  94. data/src/core/lib/debug/trace_flags.cc +4 -18
  95. data/src/core/lib/debug/trace_flags.h +2 -5
  96. data/src/core/lib/debug/trace_impl.h +6 -0
  97. data/src/core/lib/event_engine/ares_resolver.cc +89 -56
  98. data/src/core/lib/event_engine/ares_resolver.h +0 -9
  99. data/src/core/lib/event_engine/cf_engine/cfstream_endpoint.cc +14 -1
  100. data/src/core/lib/event_engine/cf_engine/cftype_unique_ref.h +1 -1
  101. data/src/core/lib/event_engine/forkable.cc +0 -1
  102. data/src/core/lib/event_engine/forkable.h +0 -1
  103. data/src/core/lib/event_engine/posix_engine/ev_epoll1_linux.cc +1 -1
  104. data/src/core/lib/event_engine/posix_engine/ev_epoll1_linux.h +4 -4
  105. data/src/core/lib/event_engine/posix_engine/ev_poll_posix.cc +0 -1
  106. data/src/core/lib/event_engine/posix_engine/lockfree_event.cc +0 -1
  107. data/src/core/lib/event_engine/posix_engine/posix_endpoint.cc +9 -1
  108. data/src/core/lib/event_engine/posix_engine/posix_endpoint.h +0 -1
  109. data/src/core/lib/event_engine/posix_engine/posix_engine_listener.h +2 -2
  110. data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.h +1 -2
  111. data/src/core/lib/event_engine/posix_engine/timer_manager.cc +4 -9
  112. data/src/core/lib/event_engine/posix_engine/traced_buffer_list.cc +0 -1
  113. data/src/core/lib/event_engine/resolved_address.cc +0 -1
  114. data/src/core/lib/event_engine/slice.cc +0 -1
  115. data/src/core/lib/event_engine/thread_pool/thread_count.cc +0 -1
  116. data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.cc +3 -5
  117. data/src/core/lib/event_engine/windows/grpc_polled_fd_windows.cc +121 -93
  118. data/src/core/lib/experiments/config.cc +12 -10
  119. data/src/core/lib/experiments/experiments.cc +45 -66
  120. data/src/core/lib/experiments/experiments.h +22 -27
  121. data/src/core/lib/gprpp/chunked_vector.h +0 -1
  122. data/src/core/lib/gprpp/down_cast.h +0 -1
  123. data/src/core/lib/gprpp/host_port.cc +0 -1
  124. data/src/core/lib/gprpp/load_file.cc +0 -1
  125. data/src/core/lib/gprpp/mpscq.h +0 -1
  126. data/src/core/lib/gprpp/single_set_ptr.h +0 -1
  127. data/src/core/lib/gprpp/status_helper.cc +0 -1
  128. data/src/core/lib/gprpp/sync.h +0 -1
  129. data/src/core/lib/gprpp/table.h +28 -0
  130. data/src/core/lib/gprpp/thd.h +0 -1
  131. data/src/core/lib/gprpp/time.h +0 -1
  132. data/src/core/lib/gprpp/time_util.cc +0 -1
  133. data/src/core/lib/gprpp/windows/directory_reader.cc +0 -2
  134. data/src/core/lib/gprpp/windows/thd.cc +0 -1
  135. data/src/core/lib/gprpp/work_serializer.cc +23 -34
  136. data/src/core/lib/iomgr/buffer_list.cc +0 -1
  137. data/src/core/lib/iomgr/call_combiner.h +6 -8
  138. data/src/core/lib/iomgr/cfstream_handle.cc +6 -8
  139. data/src/core/lib/iomgr/closure.h +5 -8
  140. data/src/core/lib/iomgr/combiner.cc +6 -8
  141. data/src/core/lib/iomgr/endpoint_cfstream.cc +17 -22
  142. data/src/core/lib/iomgr/endpoint_pair_posix.cc +0 -1
  143. data/src/core/lib/iomgr/error.h +0 -1
  144. data/src/core/lib/iomgr/ev_apple.cc +13 -18
  145. data/src/core/lib/iomgr/ev_epoll1_linux.cc +47 -85
  146. data/src/core/lib/iomgr/ev_poll_posix.cc +17 -24
  147. data/src/core/lib/iomgr/ev_posix.cc +55 -44
  148. data/src/core/lib/iomgr/ev_posix.h +0 -5
  149. data/src/core/lib/iomgr/event_engine_shims/closure.cc +7 -9
  150. data/src/core/lib/iomgr/event_engine_shims/endpoint.cc +3 -4
  151. data/src/core/lib/iomgr/exec_ctx.cc +6 -9
  152. data/src/core/lib/iomgr/exec_ctx.h +26 -16
  153. data/src/core/lib/iomgr/executor.cc +43 -33
  154. data/src/core/lib/iomgr/fork_windows.cc +0 -1
  155. data/src/core/lib/iomgr/internal_errqueue.cc +0 -1
  156. data/src/core/lib/iomgr/iocp_windows.cc +0 -1
  157. data/src/core/lib/iomgr/iomgr_windows.cc +0 -2
  158. data/src/core/lib/iomgr/lockfree_event.cc +7 -11
  159. data/src/core/lib/iomgr/polling_entity.cc +10 -3
  160. data/src/core/lib/iomgr/pollset_windows.cc +0 -2
  161. data/src/core/lib/iomgr/resolve_address.cc +0 -1
  162. data/src/core/lib/iomgr/resolve_address_posix.cc +0 -1
  163. data/src/core/lib/iomgr/resolve_address_windows.cc +0 -1
  164. data/src/core/lib/iomgr/sockaddr_utils_posix.cc +0 -1
  165. data/src/core/lib/iomgr/socket_mutator.cc +0 -1
  166. data/src/core/lib/iomgr/socket_utils_linux.cc +0 -2
  167. data/src/core/lib/iomgr/socket_utils_posix.cc +0 -1
  168. data/src/core/lib/iomgr/socket_utils_windows.cc +0 -2
  169. data/src/core/lib/iomgr/tcp_client_cfstream.cc +7 -12
  170. data/src/core/lib/iomgr/tcp_client_posix.cc +8 -12
  171. data/src/core/lib/iomgr/tcp_client_windows.cc +0 -1
  172. data/src/core/lib/iomgr/tcp_posix.cc +32 -68
  173. data/src/core/lib/iomgr/tcp_server_posix.cc +7 -11
  174. data/src/core/lib/iomgr/tcp_windows.cc +4 -12
  175. data/src/core/lib/iomgr/timer_generic.cc +46 -65
  176. data/src/core/lib/iomgr/timer_manager.cc +4 -5
  177. data/src/core/lib/iomgr/unix_sockets_posix.cc +0 -1
  178. data/src/core/lib/iomgr/unix_sockets_posix_noop.cc +0 -2
  179. data/src/core/lib/iomgr/vsock.cc +0 -1
  180. data/src/core/lib/iomgr/wakeup_fd_eventfd.cc +0 -2
  181. data/src/core/lib/promise/activity.h +0 -1
  182. data/src/core/lib/promise/context.h +0 -1
  183. data/src/core/lib/promise/detail/join_state.h +44 -44
  184. data/src/core/lib/promise/detail/seq_state.h +1101 -1356
  185. data/src/core/lib/promise/for_each.h +8 -15
  186. data/src/core/lib/promise/interceptor_list.h +17 -27
  187. data/src/core/lib/promise/latch.h +16 -24
  188. data/src/core/lib/promise/map.h +1 -1
  189. data/src/core/lib/promise/party.cc +238 -114
  190. data/src/core/lib/promise/party.h +105 -308
  191. data/src/core/lib/promise/pipe.h +3 -4
  192. data/src/core/lib/promise/poll.h +0 -1
  193. data/src/core/lib/promise/status_flag.h +0 -1
  194. data/src/core/lib/resource_quota/connection_quota.cc +0 -1
  195. data/src/core/lib/resource_quota/memory_quota.cc +11 -19
  196. data/src/core/lib/resource_quota/memory_quota.h +2 -4
  197. data/src/core/lib/resource_quota/periodic_update.cc +2 -3
  198. data/src/core/lib/resource_quota/thread_quota.cc +0 -1
  199. data/src/core/lib/security/authorization/audit_logging.cc +0 -1
  200. data/src/core/lib/security/authorization/grpc_authorization_engine.cc +0 -1
  201. data/src/core/lib/security/authorization/grpc_server_authz_filter.cc +14 -19
  202. data/src/core/lib/security/authorization/stdout_logger.cc +0 -1
  203. data/src/core/lib/security/credentials/alts/check_gcp_environment.cc +0 -1
  204. data/src/core/lib/security/credentials/alts/check_gcp_environment_windows.cc +0 -1
  205. data/src/core/lib/security/credentials/call_creds_util.cc +0 -1
  206. data/src/core/lib/security/credentials/composite/composite_credentials.cc +0 -1
  207. data/src/core/lib/security/credentials/composite/composite_credentials.h +2 -0
  208. data/src/core/lib/security/credentials/credentials.h +1 -2
  209. data/src/core/lib/security/credentials/external/aws_external_account_credentials.cc +322 -324
  210. data/src/core/lib/security/credentials/external/aws_external_account_credentials.h +53 -42
  211. data/src/core/lib/security/credentials/external/external_account_credentials.cc +391 -353
  212. data/src/core/lib/security/credentials/external/external_account_credentials.h +121 -51
  213. data/src/core/lib/security/credentials/external/file_external_account_credentials.cc +83 -44
  214. data/src/core/lib/security/credentials/external/file_external_account_credentials.h +27 -7
  215. data/src/core/lib/security/credentials/external/url_external_account_credentials.cc +91 -116
  216. data/src/core/lib/security/credentials/external/url_external_account_credentials.h +14 -17
  217. data/src/core/lib/security/credentials/fake/fake_credentials.h +2 -0
  218. data/src/core/lib/security/credentials/gcp_service_account_identity/gcp_service_account_identity_credentials.cc +196 -0
  219. data/src/core/lib/security/credentials/gcp_service_account_identity/gcp_service_account_identity_credentials.h +90 -0
  220. data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +27 -41
  221. data/src/core/lib/security/credentials/iam/iam_credentials.cc +0 -1
  222. data/src/core/lib/security/credentials/iam/iam_credentials.h +2 -0
  223. data/src/core/lib/security/credentials/jwt/jwt_credentials.h +2 -0
  224. data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +163 -259
  225. data/src/core/lib/security/credentials/oauth2/oauth2_credentials.h +34 -56
  226. data/src/core/lib/security/credentials/plugin/plugin_credentials.cc +12 -16
  227. data/src/core/lib/security/credentials/plugin/plugin_credentials.h +2 -0
  228. data/src/core/lib/security/credentials/ssl/ssl_credentials.h +0 -1
  229. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.cc +0 -1
  230. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.h +0 -1
  231. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.cc +0 -1
  232. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.h +0 -1
  233. data/src/core/lib/security/credentials/token_fetcher/token_fetcher_credentials.cc +298 -0
  234. data/src/core/lib/security/credentials/token_fetcher/token_fetcher_credentials.h +176 -0
  235. data/src/core/lib/security/credentials/xds/xds_credentials.cc +0 -1
  236. data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +0 -1
  237. data/src/core/lib/security/security_connector/insecure/insecure_security_connector.cc +0 -1
  238. data/src/core/lib/security/security_connector/load_system_roots_windows.cc +0 -1
  239. data/src/core/lib/security/transport/server_auth_filter.cc +4 -6
  240. data/src/core/lib/slice/percent_encoding.cc +0 -1
  241. data/src/core/lib/slice/slice.cc +0 -1
  242. data/src/core/lib/slice/slice.h +0 -1
  243. data/src/core/lib/slice/slice_buffer.cc +0 -1
  244. data/src/core/lib/slice/slice_internal.h +0 -1
  245. data/src/core/lib/slice/slice_refcount.h +6 -8
  246. data/src/core/lib/surface/byte_buffer_reader.cc +0 -1
  247. data/src/core/lib/surface/call.cc +3 -5
  248. data/src/core/lib/surface/call_utils.h +0 -1
  249. data/src/core/lib/surface/channel.cc +0 -1
  250. data/src/core/lib/surface/channel_create.cc +0 -1
  251. data/src/core/lib/surface/channel_init.h +0 -1
  252. data/src/core/lib/surface/client_call.cc +0 -1
  253. data/src/core/lib/surface/client_call.h +0 -1
  254. data/src/core/lib/surface/completion_queue.cc +28 -4
  255. data/src/core/lib/surface/completion_queue_factory.cc +0 -1
  256. data/src/core/lib/surface/filter_stack_call.cc +9 -9
  257. data/src/core/lib/surface/filter_stack_call.h +0 -1
  258. data/src/core/lib/surface/lame_client.cc +0 -1
  259. data/src/core/lib/surface/server_call.cc +0 -1
  260. data/src/core/lib/surface/server_call.h +0 -1
  261. data/src/core/lib/surface/validate_metadata.h +0 -1
  262. data/src/core/lib/surface/version.cc +2 -2
  263. data/src/core/lib/transport/bdp_estimator.cc +9 -12
  264. data/src/core/lib/transport/bdp_estimator.h +6 -8
  265. data/src/core/lib/transport/call_arena_allocator.cc +2 -16
  266. data/src/core/lib/transport/call_arena_allocator.h +20 -5
  267. data/src/core/lib/transport/call_filters.cc +6 -9
  268. data/src/core/lib/transport/call_spine.h +24 -13
  269. data/src/core/lib/transport/connectivity_state.cc +34 -42
  270. data/src/core/lib/transport/metadata_batch.h +41 -1
  271. data/src/core/lib/transport/timeout_encoding.cc +0 -1
  272. data/src/core/lib/transport/transport.h +6 -8
  273. data/src/core/lib/transport/transport_op_string.cc +0 -1
  274. data/src/core/lib/uri/uri_parser.cc +0 -1
  275. data/src/core/load_balancing/grpclb/grpclb.cc +55 -71
  276. data/src/core/load_balancing/health_check_client.cc +31 -42
  277. data/src/core/load_balancing/oob_backend_metric.cc +2 -4
  278. data/src/core/load_balancing/outlier_detection/outlier_detection.cc +99 -129
  279. data/src/core/load_balancing/pick_first/pick_first.cc +168 -228
  280. data/src/core/load_balancing/priority/priority.cc +77 -106
  281. data/src/core/load_balancing/ring_hash/ring_hash.cc +32 -46
  282. data/src/core/load_balancing/rls/rls.cc +142 -187
  283. data/src/core/load_balancing/round_robin/round_robin.cc +36 -55
  284. data/src/core/load_balancing/weighted_round_robin/static_stride_scheduler.cc +0 -1
  285. data/src/core/load_balancing/weighted_round_robin/weighted_round_robin.cc +85 -110
  286. data/src/core/load_balancing/weighted_target/weighted_target.cc +52 -75
  287. data/src/core/load_balancing/xds/cds.cc +26 -43
  288. data/src/core/load_balancing/xds/xds_cluster_impl.cc +57 -54
  289. data/src/core/load_balancing/xds/xds_cluster_manager.cc +36 -50
  290. data/src/core/load_balancing/xds/xds_override_host.cc +95 -131
  291. data/src/core/load_balancing/xds/xds_wrr_locality.cc +15 -23
  292. data/src/core/plugin_registry/grpc_plugin_registry_extra.cc +3 -0
  293. data/src/core/resolver/binder/binder_resolver.cc +0 -2
  294. data/src/core/resolver/dns/c_ares/dns_resolver_ares.cc +62 -44
  295. data/src/core/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc +0 -2
  296. data/src/core/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc +110 -89
  297. data/src/core/resolver/dns/c_ares/grpc_ares_wrapper.cc +132 -96
  298. data/src/core/resolver/dns/c_ares/grpc_ares_wrapper.h +0 -7
  299. data/src/core/resolver/dns/dns_resolver_plugin.cc +0 -1
  300. data/src/core/resolver/dns/event_engine/event_engine_client_channel_resolver.cc +40 -39
  301. data/src/core/resolver/dns/native/dns_resolver.cc +8 -14
  302. data/src/core/resolver/endpoint_addresses.cc +0 -1
  303. data/src/core/resolver/fake/fake_resolver.cc +0 -1
  304. data/src/core/resolver/polling_resolver.cc +6 -15
  305. data/src/core/resolver/polling_resolver.h +1 -1
  306. data/src/core/resolver/xds/xds_config.cc +96 -0
  307. data/src/core/resolver/xds/xds_config.h +109 -0
  308. data/src/core/resolver/xds/xds_dependency_manager.cc +59 -154
  309. data/src/core/resolver/xds/xds_dependency_manager.h +1 -69
  310. data/src/core/resolver/xds/xds_resolver.cc +51 -55
  311. data/src/core/server/server.cc +2 -2
  312. data/src/core/server/server_config_selector_filter.cc +0 -1
  313. data/src/core/server/xds_server_config_fetcher.cc +4 -6
  314. data/src/core/service_config/service_config_call_data.h +2 -3
  315. data/src/core/service_config/service_config_channel_arg_filter.cc +0 -1
  316. data/src/core/service_config/service_config_impl.h +0 -1
  317. data/src/core/telemetry/call_tracer.cc +0 -1
  318. data/src/core/telemetry/metrics.h +0 -1
  319. data/src/core/telemetry/stats_data.cc +67 -0
  320. data/src/core/telemetry/stats_data.h +48 -0
  321. data/src/core/tsi/alts/handshaker/alts_shared_resource.cc +0 -1
  322. data/src/core/tsi/alts/handshaker/transport_security_common_api.h +0 -1
  323. data/src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.cc +0 -1
  324. data/src/core/tsi/fake_transport_security.cc +6 -5
  325. data/src/core/tsi/ssl/session_cache/ssl_session_cache.cc +0 -1
  326. data/src/core/util/alloc.cc +0 -1
  327. data/src/core/util/gcp_metadata_query.cc +0 -1
  328. data/src/core/util/http_client/httpcli.cc +12 -15
  329. data/src/core/util/http_client/httpcli.h +16 -11
  330. data/src/core/util/http_client/parser.cc +3 -4
  331. data/src/core/util/json/json_reader.cc +0 -1
  332. data/src/core/util/latent_see.cc +29 -9
  333. data/src/core/util/latent_see.h +122 -27
  334. data/src/core/util/log.cc +36 -55
  335. data/src/core/util/lru_cache.h +104 -0
  336. data/src/core/util/msys/tmpfile.cc +0 -1
  337. data/src/core/util/posix/sync.cc +0 -1
  338. data/src/core/util/posix/time.cc +0 -1
  339. data/src/core/util/ring_buffer.h +123 -0
  340. data/src/core/util/spinlock.h +1 -2
  341. data/src/core/util/string.cc +7 -7
  342. data/src/core/util/sync.cc +0 -1
  343. data/src/core/util/sync_abseil.cc +0 -1
  344. data/src/core/util/time.cc +0 -1
  345. data/src/core/util/unique_ptr_with_bitset.h +86 -0
  346. data/src/core/util/useful.h +0 -24
  347. data/src/core/util/windows/cpu.cc +0 -1
  348. data/src/core/util/windows/sync.cc +0 -1
  349. data/src/core/util/windows/time.cc +0 -1
  350. data/src/core/util/windows/tmpfile.cc +0 -1
  351. data/src/core/xds/grpc/xds_bootstrap_grpc.cc +0 -32
  352. data/src/core/xds/grpc/xds_bootstrap_grpc.h +0 -5
  353. data/src/core/xds/grpc/xds_certificate_provider.cc +0 -1
  354. data/src/core/xds/grpc/xds_client_grpc.cc +11 -16
  355. data/src/core/xds/grpc/xds_cluster.cc +2 -8
  356. data/src/core/xds/grpc/xds_cluster.h +4 -4
  357. data/src/core/xds/grpc/xds_cluster_parser.cc +58 -96
  358. data/src/core/xds/grpc/xds_cluster_specifier_plugin.cc +0 -1
  359. data/src/core/xds/grpc/xds_common_types_parser.cc +4 -4
  360. data/src/core/xds/grpc/xds_common_types_parser.h +17 -0
  361. data/src/core/xds/grpc/xds_endpoint_parser.cc +14 -14
  362. data/src/core/xds/grpc/xds_http_fault_filter.cc +15 -6
  363. data/src/core/xds/grpc/xds_http_fault_filter.h +5 -1
  364. data/src/core/xds/grpc/xds_http_filter.h +11 -1
  365. data/src/core/xds/grpc/xds_http_filter_registry.cc +7 -1
  366. data/src/core/xds/grpc/xds_http_filter_registry.h +8 -1
  367. data/src/core/xds/grpc/xds_http_gcp_authn_filter.cc +142 -0
  368. data/src/core/xds/grpc/xds_http_gcp_authn_filter.h +61 -0
  369. data/src/core/xds/grpc/xds_http_rbac_filter.cc +14 -6
  370. data/src/core/xds/grpc/xds_http_rbac_filter.h +5 -1
  371. data/src/core/xds/grpc/xds_http_stateful_session_filter.cc +9 -1
  372. data/src/core/xds/grpc/xds_http_stateful_session_filter.h +5 -1
  373. data/src/core/xds/grpc/xds_lb_policy_registry.cc +14 -16
  374. data/src/core/xds/grpc/xds_listener_parser.cc +10 -11
  375. data/src/core/xds/grpc/xds_metadata.cc +62 -0
  376. data/src/core/xds/grpc/xds_metadata.h +127 -0
  377. data/src/core/xds/grpc/xds_metadata_parser.cc +143 -0
  378. data/src/core/xds/grpc/xds_metadata_parser.h +36 -0
  379. data/src/core/xds/grpc/xds_route_config_parser.cc +12 -17
  380. data/src/core/xds/grpc/xds_routing.cc +57 -22
  381. data/src/core/xds/grpc/xds_routing.h +10 -2
  382. data/src/core/xds/grpc/xds_transport_grpc.cc +0 -1
  383. data/src/core/xds/xds_client/xds_client.cc +124 -165
  384. data/src/core/xds/xds_client/xds_client_stats.cc +20 -27
  385. data/src/ruby/ext/grpc/rb_call.c +1 -1
  386. data/src/ruby/ext/grpc/rb_call_credentials.c +34 -27
  387. data/src/ruby/ext/grpc/rb_channel.c +22 -16
  388. data/src/ruby/ext/grpc/rb_event_thread.c +3 -2
  389. data/src/ruby/ext/grpc/rb_grpc.c +9 -8
  390. data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +6 -10
  391. data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +9 -15
  392. data/src/ruby/ext/grpc/rb_server.c +10 -8
  393. data/src/ruby/lib/grpc/generic/active_call.rb +8 -5
  394. data/src/ruby/lib/grpc/version.rb +1 -1
  395. data/src/ruby/spec/call_spec.rb +53 -40
  396. data/src/ruby/spec/channel_spec.rb +4 -2
  397. data/src/ruby/spec/client_server_spec.rb +148 -507
  398. data/src/ruby/spec/generic/active_call_spec.rb +64 -86
  399. data/src/ruby/spec/support/services.rb +3 -0
  400. data/third_party/boringssl-with-bazel/src/crypto/{fipsmodule/rand/fork_detect.h → bcm_support.h} +51 -6
  401. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/internal.h +43 -0
  402. data/third_party/boringssl-with-bazel/src/crypto/cpu_intel.c +72 -23
  403. data/third_party/boringssl-with-bazel/src/crypto/crypto.c +1 -1
  404. data/third_party/boringssl-with-bazel/src/crypto/ecdsa_extra/ecdsa_asn1.c +160 -14
  405. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/internal.h +2 -0
  406. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm.c +79 -78
  407. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm_interface.h +89 -0
  408. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{div.c → div.c.inc} +146 -179
  409. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{random.c → random.c.inc} +6 -8
  410. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{sqrt.c → sqrt.c.inc} +1 -1
  411. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/{e_aes.c → e_aes.c.inc} +9 -8
  412. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{ec_key.c → ec_key.c.inc} +11 -7
  413. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{p256-nistz.c → p256-nistz.c.inc} +104 -12
  414. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-nistz.h +65 -8
  415. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/{ecdsa.c → ecdsa.c.inc} +52 -107
  416. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/internal.h +28 -11
  417. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/internal.h +1 -80
  418. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/{rand.c → rand.c.inc} +26 -40
  419. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/{padding.c → padding.c.inc} +2 -5
  420. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/{rsa_impl.c → rsa_impl.c.inc} +1 -1
  421. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/{self_check.c → self_check.c.inc} +9 -35
  422. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/service_indicator/internal.h +2 -2
  423. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/service_indicator/{service_indicator.c → service_indicator.c.inc} +2 -2
  424. data/third_party/boringssl-with-bazel/src/crypto/hpke/hpke.c +293 -2
  425. data/third_party/boringssl-with-bazel/src/crypto/internal.h +69 -14
  426. data/third_party/boringssl-with-bazel/src/crypto/mem.c +7 -3
  427. data/third_party/boringssl-with-bazel/src/crypto/mldsa/internal.h +73 -0
  428. data/third_party/boringssl-with-bazel/src/crypto/mldsa/mldsa.c +1687 -0
  429. data/third_party/boringssl-with-bazel/src/crypto/mlkem/internal.h +90 -0
  430. data/third_party/boringssl-with-bazel/src/crypto/mlkem/mlkem.cc +1097 -0
  431. data/third_party/boringssl-with-bazel/src/crypto/obj/obj_dat.h +4 -1
  432. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_lib.c +4 -5
  433. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pk8.c +2 -3
  434. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pkey.c +1 -1
  435. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/internal.h +1 -0
  436. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/deterministic.c +9 -1
  437. data/third_party/boringssl-with-bazel/src/crypto/{fipsmodule/rand → rand_extra}/fork_detect.c +26 -28
  438. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/getentropy.c +9 -1
  439. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/ios.c +9 -1
  440. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/passive.c +19 -3
  441. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/rand_extra.c +26 -23
  442. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/sysrand_internal.h +37 -0
  443. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/trusty.c +9 -1
  444. data/third_party/boringssl-with-bazel/src/crypto/{fipsmodule/rand → rand_extra}/urandom.c +19 -19
  445. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/windows.c +8 -1
  446. data/third_party/boringssl-with-bazel/src/crypto/rsa_extra/internal.h +2 -0
  447. data/third_party/boringssl-with-bazel/src/include/openssl/asn1.h +14 -1
  448. data/third_party/boringssl-with-bazel/src/include/openssl/bn.h +14 -9
  449. data/third_party/boringssl-with-bazel/src/include/openssl/experimental/dilithium.h +13 -15
  450. data/third_party/boringssl-with-bazel/src/include/openssl/hpke.h +8 -6
  451. data/third_party/boringssl-with-bazel/src/include/openssl/mldsa.h +136 -0
  452. data/third_party/boringssl-with-bazel/src/include/openssl/mlkem.h +246 -0
  453. data/third_party/boringssl-with-bazel/src/include/openssl/nid.h +3 -0
  454. data/third_party/boringssl-with-bazel/src/include/openssl/pem.h +3 -4
  455. data/third_party/boringssl-with-bazel/src/include/openssl/service_indicator.h +2 -2
  456. data/third_party/boringssl-with-bazel/src/include/openssl/span.h +22 -0
  457. data/third_party/boringssl-with-bazel/src/include/openssl/ssl.h +35 -5
  458. data/third_party/boringssl-with-bazel/src/ssl/d1_both.cc +5 -6
  459. data/third_party/boringssl-with-bazel/src/ssl/d1_lib.cc +6 -0
  460. data/third_party/boringssl-with-bazel/src/ssl/d1_pkt.cc +6 -1
  461. data/third_party/boringssl-with-bazel/src/ssl/dtls_method.cc +13 -1
  462. data/third_party/boringssl-with-bazel/src/ssl/dtls_record.cc +289 -55
  463. data/third_party/boringssl-with-bazel/src/ssl/extensions.cc +2 -0
  464. data/third_party/boringssl-with-bazel/src/ssl/handshake_client.cc +69 -38
  465. data/third_party/boringssl-with-bazel/src/ssl/handshake_server.cc +14 -3
  466. data/third_party/boringssl-with-bazel/src/ssl/internal.h +107 -14
  467. data/third_party/boringssl-with-bazel/src/ssl/s3_both.cc +44 -16
  468. data/third_party/boringssl-with-bazel/src/ssl/s3_pkt.cc +21 -1
  469. data/third_party/boringssl-with-bazel/src/ssl/ssl_aead_ctx.cc +86 -1
  470. data/third_party/boringssl-with-bazel/src/ssl/ssl_buffer.cc +7 -4
  471. data/third_party/boringssl-with-bazel/src/ssl/ssl_key_share.cc +97 -3
  472. data/third_party/boringssl-with-bazel/src/ssl/ssl_lib.cc +31 -2
  473. data/third_party/boringssl-with-bazel/src/ssl/ssl_versions.cc +6 -0
  474. data/third_party/boringssl-with-bazel/src/ssl/tls13_client.cc +18 -4
  475. data/third_party/boringssl-with-bazel/src/ssl/tls13_enc.cc +96 -34
  476. data/third_party/boringssl-with-bazel/src/ssl/tls13_server.cc +15 -5
  477. data/third_party/boringssl-with-bazel/src/ssl/tls_record.cc +3 -23
  478. metadata +113 -87
  479. data/src/core/ext/transport/chttp2/transport/max_concurrent_streams_policy.cc +0 -45
  480. data/src/core/ext/transport/chttp2/transport/max_concurrent_streams_policy.h +0 -67
  481. data/src/core/util/android/log.cc +0 -48
  482. data/src/core/util/linux/log.cc +0 -69
  483. data/src/core/util/posix/log.cc +0 -69
  484. data/src/core/util/windows/log.cc +0 -73
  485. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/{aes.c → aes.c.inc} +0 -0
  486. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/{aes_nohw.c → aes_nohw.c.inc} +0 -0
  487. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/{key_wrap.c → key_wrap.c.inc} +0 -0
  488. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/{mode_wrappers.c → mode_wrappers.c.inc} +0 -0
  489. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{add.c → add.c.inc} +0 -0
  490. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/asm/{x86_64-gcc.c → x86_64-gcc.c.inc} +0 -0
  491. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{bn.c → bn.c.inc} +0 -0
  492. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{bytes.c → bytes.c.inc} +0 -0
  493. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{cmp.c → cmp.c.inc} +0 -0
  494. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{ctx.c → ctx.c.inc} +0 -0
  495. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{div_extra.c → div_extra.c.inc} +0 -0
  496. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{exponentiation.c → exponentiation.c.inc} +0 -0
  497. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{gcd.c → gcd.c.inc} +0 -0
  498. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{gcd_extra.c → gcd_extra.c.inc} +0 -0
  499. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{generic.c → generic.c.inc} +0 -0
  500. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{jacobi.c → jacobi.c.inc} +0 -0
  501. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{montgomery.c → montgomery.c.inc} +0 -0
  502. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{montgomery_inv.c → montgomery_inv.c.inc} +0 -0
  503. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{mul.c → mul.c.inc} +0 -0
  504. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{prime.c → prime.c.inc} +0 -0
  505. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{rsaz_exp.c → rsaz_exp.c.inc} +0 -0
  506. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{shift.c → shift.c.inc} +0 -0
  507. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/{aead.c → aead.c.inc} +0 -0
  508. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/{cipher.c → cipher.c.inc} +0 -0
  509. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/{e_aesccm.c → e_aesccm.c.inc} +0 -0
  510. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cmac/{cmac.c → cmac.c.inc} +0 -0
  511. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/{check.c → check.c.inc} +0 -0
  512. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/{dh.c → dh.c.inc} +0 -0
  513. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/{digest.c → digest.c.inc} +0 -0
  514. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/{digests.c → digests.c.inc} +0 -0
  515. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digestsign/{digestsign.c → digestsign.c.inc} +0 -0
  516. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{ec.c → ec.c.inc} +0 -0
  517. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{ec_montgomery.c → ec_montgomery.c.inc} +0 -0
  518. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{felem.c → felem.c.inc} +0 -0
  519. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{oct.c → oct.c.inc} +0 -0
  520. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{p224-64.c → p224-64.c.inc} +0 -0
  521. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{p256.c → p256.c.inc} +0 -0
  522. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{scalar.c → scalar.c.inc} +0 -0
  523. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{simple.c → simple.c.inc} +0 -0
  524. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{simple_mul.c → simple_mul.c.inc} +0 -0
  525. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{util.c → util.c.inc} +0 -0
  526. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{wnaf.c → wnaf.c.inc} +0 -0
  527. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdh/{ecdh.c → ecdh.c.inc} +0 -0
  528. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/hkdf/{hkdf.c → hkdf.c.inc} +0 -0
  529. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/hmac/{hmac.c → hmac.c.inc} +0 -0
  530. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/md4/{md4.c → md4.c.inc} +0 -0
  531. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/md5/{md5.c → md5.c.inc} +0 -0
  532. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{cbc.c → cbc.c.inc} +0 -0
  533. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{cfb.c → cfb.c.inc} +0 -0
  534. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{ctr.c → ctr.c.inc} +0 -0
  535. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{gcm.c → gcm.c.inc} +0 -0
  536. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{gcm_nohw.c → gcm_nohw.c.inc} +0 -0
  537. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{ofb.c → ofb.c.inc} +0 -0
  538. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{polyval.c → polyval.c.inc} +0 -0
  539. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/{ctrdrbg.c → ctrdrbg.c.inc} +0 -0
  540. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/{blinding.c → blinding.c.inc} +0 -0
  541. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/{rsa.c → rsa.c.inc} +0 -0
  542. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/{fips.c → fips.c.inc} +0 -0
  543. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/{sha1.c → sha1.c.inc} +0 -0
  544. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/{sha256.c → sha256.c.inc} +0 -0
  545. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/{sha512.c → sha512.c.inc} +0 -0
  546. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/tls/{kdf.c → kdf.c.inc} +0 -0
  547. /data/third_party/boringssl-with-bazel/src/crypto/{fipsmodule/rand → rand_extra}/getrandom_fillin.h +0 -0
@@ -24,7 +24,6 @@
24
24
  #include "absl/status/statusor.h"
25
25
  #include "absl/types/optional.h"
26
26
 
27
- #include <grpc/support/log.h>
28
27
  #include <grpc/support/port_platform.h>
29
28
 
30
29
  #include "src/core/lib/channel/channel_args.h"
@@ -586,11 +586,9 @@ XdsServerConfigFetcher::ListenerWatcher::ListenerWatcher(
586
586
  void XdsServerConfigFetcher::ListenerWatcher::OnResourceChanged(
587
587
  std::shared_ptr<const XdsListenerResource> listener,
588
588
  RefCountedPtr<ReadDelayHandle> /* read_delay_handle */) {
589
- if (GRPC_TRACE_FLAG_ENABLED(xds_server_config_fetcher)) {
590
- LOG(INFO) << "[ListenerWatcher " << this
591
- << "] Received LDS update from xds client " << xds_client_.get()
592
- << ": " << listener->ToString();
593
- }
589
+ GRPC_TRACE_LOG(xds_server_config_fetcher, INFO)
590
+ << "[ListenerWatcher " << this << "] Received LDS update from xds client "
591
+ << xds_client_.get() << ": " << listener->ToString();
594
592
  auto* tcp_listener =
595
593
  absl::get_if<XdsListenerResource::TcpListener>(&listener->listener);
596
594
  if (tcp_listener == nullptr) {
@@ -1178,7 +1176,7 @@ XdsServerConfigFetcher::ListenerWatcher::FilterChainMatchManager::
1178
1176
  config_selector_route.unsupported_action =
1179
1177
  absl::get_if<XdsRouteConfigResource::Route::NonForwardingAction>(
1180
1178
  &route.action) == nullptr;
1181
- auto result = XdsRouting::GeneratePerHTTPFilterConfigs(
1179
+ auto result = XdsRouting::GeneratePerHTTPFilterConfigsForMethodConfig(
1182
1180
  http_filter_registry, http_filters, vhost, route, nullptr,
1183
1181
  ChannelArgs());
1184
1182
  if (!result.ok()) return result.status();
@@ -35,9 +35,8 @@
35
35
  namespace grpc_core {
36
36
 
37
37
  /// Stores the service config data associated with an individual call.
38
- /// A pointer to this object is stored in the call_context
39
- /// GRPC_CONTEXT_SERVICE_CONFIG_CALL_DATA element, so that filters can
40
- /// easily access method and global parameters for the call.
38
+ /// A pointer to this object is stored in the call context, so that
39
+ /// filters can easily access method and global parameters for the call.
41
40
  ///
42
41
  /// Must be accessed when holding the call combiner (legacy filter) or from
43
42
  /// inside the activity (promise-based filter).
@@ -28,7 +28,6 @@
28
28
  #include "absl/types/optional.h"
29
29
 
30
30
  #include <grpc/impl/channel_arg_names.h>
31
- #include <grpc/support/log.h>
32
31
  #include <grpc/support/port_platform.h>
33
32
 
34
33
  #include "src/core/ext/filters/message_size/message_size_filter.h"
@@ -29,7 +29,6 @@
29
29
  #include "absl/strings/string_view.h"
30
30
 
31
31
  #include <grpc/slice.h>
32
- #include <grpc/support/log.h>
33
32
  #include <grpc/support/port_platform.h>
34
33
 
35
34
  #include "src/core/lib/channel/channel_args.h"
@@ -24,7 +24,6 @@
24
24
 
25
25
  #include "absl/log/check.h"
26
26
 
27
- #include <grpc/support/log.h>
28
27
  #include <grpc/support/port_platform.h>
29
28
 
30
29
  #include "src/core/lib/promise/context.h"
@@ -25,7 +25,6 @@
25
25
  #include "absl/strings/string_view.h"
26
26
  #include "absl/types/span.h"
27
27
 
28
- #include <grpc/support/log.h>
29
28
  #include <grpc/support/metrics.h>
30
29
  #include <grpc/support/port_platform.h>
31
30
 
@@ -106,6 +106,20 @@ Histogram_10000_20 operator-(const Histogram_10000_20& left,
106
106
  }
107
107
  return result;
108
108
  }
109
+ void HistogramCollector_1800000_40::Collect(
110
+ Histogram_1800000_40* result) const {
111
+ for (int i = 0; i < 40; i++) {
112
+ result->buckets_[i] += buckets_[i].load(std::memory_order_relaxed);
113
+ }
114
+ }
115
+ Histogram_1800000_40 operator-(const Histogram_1800000_40& left,
116
+ const Histogram_1800000_40& right) {
117
+ Histogram_1800000_40 result;
118
+ for (int i = 0; i < 40; i++) {
119
+ result.buckets_[i] = left.buckets_[i] - right.buckets_[i];
120
+ }
121
+ return result;
122
+ }
109
123
  const absl::string_view
110
124
  GlobalStats::counter_name[static_cast<int>(Counter::COUNT)] = {
111
125
  "client_calls_created",
@@ -123,6 +137,8 @@ const absl::string_view
123
137
  "http2_writes_begun",
124
138
  "http2_transport_stalls",
125
139
  "http2_stream_stalls",
140
+ "http2_hpack_hits",
141
+ "http2_hpack_misses",
126
142
  "cq_pluck_creates",
127
143
  "cq_next_creates",
128
144
  "cq_callback_creates",
@@ -161,6 +177,8 @@ const absl::string_view GlobalStats::counter_doc[static_cast<int>(
161
177
  "control window",
162
178
  "Number of times sending was completely stalled by the stream flow control "
163
179
  "window",
180
+ "Number of HPACK cache hits",
181
+ "Number of HPACK cache misses (entries added but never used)",
164
182
  "Number of completion queues created for cq_pluck (indicates sync api "
165
183
  "usage)",
166
184
  "Number of completion queues created for cq_next (indicates cq async api "
@@ -192,6 +210,7 @@ const absl::string_view
192
210
  "tcp_read_offer_iov_size",
193
211
  "http2_send_message_size",
194
212
  "http2_metadata_size",
213
+ "http2_hpack_entry_lifetime",
195
214
  "wrr_subchannel_list_size",
196
215
  "wrr_subchannel_ready_size",
197
216
  "work_serializer_run_time_ms",
@@ -223,6 +242,7 @@ const absl::string_view GlobalStats::histogram_doc[static_cast<int>(
223
242
  "Number of byte segments offered to each syscall_read",
224
243
  "Size of messages received by HTTP2 transport",
225
244
  "Number of bytes consumed by metadata, according to HPACK accounting rules",
245
+ "Lifetime of HPACK entries in the cache (in milliseconds)",
226
246
  "Number of subchannels in a subchannel list at picker creation time",
227
247
  "Number of READY subchannels in a subchannel list at picker creation time",
228
248
  "Number of milliseconds work serializers run for",
@@ -278,6 +298,15 @@ const int kStatsTable10[21] = {0, 1, 2, 4, 7, 12, 19,
278
298
  const uint8_t kStatsTable11[23] = {3, 3, 4, 5, 5, 6, 7, 8,
279
299
  9, 9, 10, 11, 12, 12, 13, 14,
280
300
  15, 15, 16, 17, 18, 18, 19};
301
+ const int kStatsTable12[41] = {
302
+ 0, 1, 2, 3, 5, 8, 12, 18, 26,
303
+ 37, 53, 76, 108, 153, 217, 308, 436, 617,
304
+ 873, 1235, 1748, 2473, 3499, 4950, 7003, 9907, 14015,
305
+ 19825, 28044, 39670, 56116, 79379, 112286, 158835, 224680, 317821,
306
+ 449574, 635945, 899575, 1272492, 1800000};
307
+ const uint8_t kStatsTable13[37] = {
308
+ 4, 5, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21,
309
+ 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39};
281
310
  } // namespace
282
311
  int Histogram_100000_20::BucketFor(int value) {
283
312
  if (value < 3) {
@@ -405,6 +434,29 @@ int Histogram_10000_20::BucketFor(int value) {
405
434
  }
406
435
  }
407
436
  }
437
+ int Histogram_1800000_40::BucketFor(int value) {
438
+ if (value < 4) {
439
+ if (value < 0) {
440
+ return 0;
441
+ } else {
442
+ return value;
443
+ }
444
+ } else {
445
+ if (value < 1048577) {
446
+ DblUint val;
447
+ val.dbl = value;
448
+ const int bucket =
449
+ kStatsTable13[((val.uint - 4616189618054758400ull) >> 51)];
450
+ return bucket - (value < kStatsTable12[bucket]);
451
+ } else {
452
+ if (value < 1272492) {
453
+ return 38;
454
+ } else {
455
+ return 39;
456
+ }
457
+ }
458
+ }
459
+ }
408
460
  GlobalStats::GlobalStats()
409
461
  : client_calls_created{0},
410
462
  server_calls_created{0},
@@ -421,6 +473,8 @@ GlobalStats::GlobalStats()
421
473
  http2_writes_begun{0},
422
474
  http2_transport_stalls{0},
423
475
  http2_stream_stalls{0},
476
+ http2_hpack_hits{0},
477
+ http2_hpack_misses{0},
424
478
  cq_pluck_creates{0},
425
479
  cq_next_creates{0},
426
480
  cq_callback_creates{0},
@@ -466,6 +520,9 @@ HistogramView GlobalStats::histogram(Histogram which) const {
466
520
  case Histogram::kHttp2MetadataSize:
467
521
  return HistogramView{&Histogram_65536_26::BucketFor, kStatsTable2, 26,
468
522
  http2_metadata_size.buckets()};
523
+ case Histogram::kHttp2HpackEntryLifetime:
524
+ return HistogramView{&Histogram_1800000_40::BucketFor, kStatsTable12, 40,
525
+ http2_hpack_entry_lifetime.buckets()};
469
526
  case Histogram::kWrrSubchannelListSize:
470
527
  return HistogramView{&Histogram_10000_20::BucketFor, kStatsTable10, 20,
471
528
  wrr_subchannel_list_size.buckets()};
@@ -560,6 +617,10 @@ std::unique_ptr<GlobalStats> GlobalStatsCollector::Collect() const {
560
617
  data.http2_transport_stalls.load(std::memory_order_relaxed);
561
618
  result->http2_stream_stalls +=
562
619
  data.http2_stream_stalls.load(std::memory_order_relaxed);
620
+ result->http2_hpack_hits +=
621
+ data.http2_hpack_hits.load(std::memory_order_relaxed);
622
+ result->http2_hpack_misses +=
623
+ data.http2_hpack_misses.load(std::memory_order_relaxed);
563
624
  result->cq_pluck_creates +=
564
625
  data.cq_pluck_creates.load(std::memory_order_relaxed);
565
626
  result->cq_next_creates +=
@@ -598,6 +659,8 @@ std::unique_ptr<GlobalStats> GlobalStatsCollector::Collect() const {
598
659
  data.tcp_read_offer_iov_size.Collect(&result->tcp_read_offer_iov_size);
599
660
  data.http2_send_message_size.Collect(&result->http2_send_message_size);
600
661
  data.http2_metadata_size.Collect(&result->http2_metadata_size);
662
+ data.http2_hpack_entry_lifetime.Collect(
663
+ &result->http2_hpack_entry_lifetime);
601
664
  data.wrr_subchannel_list_size.Collect(&result->wrr_subchannel_list_size);
602
665
  data.wrr_subchannel_ready_size.Collect(&result->wrr_subchannel_ready_size);
603
666
  data.work_serializer_run_time_ms.Collect(
@@ -664,6 +727,8 @@ std::unique_ptr<GlobalStats> GlobalStats::Diff(const GlobalStats& other) const {
664
727
  result->http2_transport_stalls =
665
728
  http2_transport_stalls - other.http2_transport_stalls;
666
729
  result->http2_stream_stalls = http2_stream_stalls - other.http2_stream_stalls;
730
+ result->http2_hpack_hits = http2_hpack_hits - other.http2_hpack_hits;
731
+ result->http2_hpack_misses = http2_hpack_misses - other.http2_hpack_misses;
667
732
  result->cq_pluck_creates = cq_pluck_creates - other.cq_pluck_creates;
668
733
  result->cq_next_creates = cq_next_creates - other.cq_next_creates;
669
734
  result->cq_callback_creates = cq_callback_creates - other.cq_callback_creates;
@@ -695,6 +760,8 @@ std::unique_ptr<GlobalStats> GlobalStats::Diff(const GlobalStats& other) const {
695
760
  result->http2_send_message_size =
696
761
  http2_send_message_size - other.http2_send_message_size;
697
762
  result->http2_metadata_size = http2_metadata_size - other.http2_metadata_size;
763
+ result->http2_hpack_entry_lifetime =
764
+ http2_hpack_entry_lifetime - other.http2_hpack_entry_lifetime;
698
765
  result->wrr_subchannel_list_size =
699
766
  wrr_subchannel_list_size - other.wrr_subchannel_list_size;
700
767
  result->wrr_subchannel_ready_size =
@@ -35,6 +35,7 @@ class Histogram_100000_20 {
35
35
  public:
36
36
  static int BucketFor(int value);
37
37
  const uint64_t* buckets() const { return buckets_; }
38
+ size_t bucket_count() const { return 20; }
38
39
  friend Histogram_100000_20 operator-(const Histogram_100000_20& left,
39
40
  const Histogram_100000_20& right);
40
41
 
@@ -58,6 +59,7 @@ class Histogram_65536_26 {
58
59
  public:
59
60
  static int BucketFor(int value);
60
61
  const uint64_t* buckets() const { return buckets_; }
62
+ size_t bucket_count() const { return 26; }
61
63
  friend Histogram_65536_26 operator-(const Histogram_65536_26& left,
62
64
  const Histogram_65536_26& right);
63
65
 
@@ -81,6 +83,7 @@ class Histogram_100_20 {
81
83
  public:
82
84
  static int BucketFor(int value);
83
85
  const uint64_t* buckets() const { return buckets_; }
86
+ size_t bucket_count() const { return 20; }
84
87
  friend Histogram_100_20 operator-(const Histogram_100_20& left,
85
88
  const Histogram_100_20& right);
86
89
 
@@ -104,6 +107,7 @@ class Histogram_16777216_20 {
104
107
  public:
105
108
  static int BucketFor(int value);
106
109
  const uint64_t* buckets() const { return buckets_; }
110
+ size_t bucket_count() const { return 20; }
107
111
  friend Histogram_16777216_20 operator-(const Histogram_16777216_20& left,
108
112
  const Histogram_16777216_20& right);
109
113
 
@@ -127,6 +131,7 @@ class Histogram_80_10 {
127
131
  public:
128
132
  static int BucketFor(int value);
129
133
  const uint64_t* buckets() const { return buckets_; }
134
+ size_t bucket_count() const { return 10; }
130
135
  friend Histogram_80_10 operator-(const Histogram_80_10& left,
131
136
  const Histogram_80_10& right);
132
137
 
@@ -150,6 +155,7 @@ class Histogram_10000_20 {
150
155
  public:
151
156
  static int BucketFor(int value);
152
157
  const uint64_t* buckets() const { return buckets_; }
158
+ size_t bucket_count() const { return 20; }
153
159
  friend Histogram_10000_20 operator-(const Histogram_10000_20& left,
154
160
  const Histogram_10000_20& right);
155
161
 
@@ -168,6 +174,30 @@ class HistogramCollector_10000_20 {
168
174
  private:
169
175
  std::atomic<uint64_t> buckets_[20]{};
170
176
  };
177
+ class HistogramCollector_1800000_40;
178
+ class Histogram_1800000_40 {
179
+ public:
180
+ static int BucketFor(int value);
181
+ const uint64_t* buckets() const { return buckets_; }
182
+ size_t bucket_count() const { return 40; }
183
+ friend Histogram_1800000_40 operator-(const Histogram_1800000_40& left,
184
+ const Histogram_1800000_40& right);
185
+
186
+ private:
187
+ friend class HistogramCollector_1800000_40;
188
+ uint64_t buckets_[40]{};
189
+ };
190
+ class HistogramCollector_1800000_40 {
191
+ public:
192
+ void Increment(int value) {
193
+ buckets_[Histogram_1800000_40::BucketFor(value)].fetch_add(
194
+ 1, std::memory_order_relaxed);
195
+ }
196
+ void Collect(Histogram_1800000_40* result) const;
197
+
198
+ private:
199
+ std::atomic<uint64_t> buckets_[40]{};
200
+ };
171
201
  struct GlobalStats {
172
202
  enum class Counter {
173
203
  kClientCallsCreated,
@@ -185,6 +215,8 @@ struct GlobalStats {
185
215
  kHttp2WritesBegun,
186
216
  kHttp2TransportStalls,
187
217
  kHttp2StreamStalls,
218
+ kHttp2HpackHits,
219
+ kHttp2HpackMisses,
188
220
  kCqPluckCreates,
189
221
  kCqNextCreates,
190
222
  kCqCallbackCreates,
@@ -213,6 +245,7 @@ struct GlobalStats {
213
245
  kTcpReadOfferIovSize,
214
246
  kHttp2SendMessageSize,
215
247
  kHttp2MetadataSize,
248
+ kHttp2HpackEntryLifetime,
216
249
  kWrrSubchannelListSize,
217
250
  kWrrSubchannelReadySize,
218
251
  kWorkSerializerRunTimeMs,
@@ -259,6 +292,8 @@ struct GlobalStats {
259
292
  uint64_t http2_writes_begun;
260
293
  uint64_t http2_transport_stalls;
261
294
  uint64_t http2_stream_stalls;
295
+ uint64_t http2_hpack_hits;
296
+ uint64_t http2_hpack_misses;
262
297
  uint64_t cq_pluck_creates;
263
298
  uint64_t cq_next_creates;
264
299
  uint64_t cq_callback_creates;
@@ -287,6 +322,7 @@ struct GlobalStats {
287
322
  Histogram_80_10 tcp_read_offer_iov_size;
288
323
  Histogram_16777216_20 http2_send_message_size;
289
324
  Histogram_65536_26 http2_metadata_size;
325
+ Histogram_1800000_40 http2_hpack_entry_lifetime;
290
326
  Histogram_10000_20 wrr_subchannel_list_size;
291
327
  Histogram_10000_20 wrr_subchannel_ready_size;
292
328
  Histogram_100000_20 work_serializer_run_time_ms;
@@ -367,6 +403,12 @@ class GlobalStatsCollector {
367
403
  data_.this_cpu().http2_stream_stalls.fetch_add(1,
368
404
  std::memory_order_relaxed);
369
405
  }
406
+ void IncrementHttp2HpackHits() {
407
+ data_.this_cpu().http2_hpack_hits.fetch_add(1, std::memory_order_relaxed);
408
+ }
409
+ void IncrementHttp2HpackMisses() {
410
+ data_.this_cpu().http2_hpack_misses.fetch_add(1, std::memory_order_relaxed);
411
+ }
370
412
  void IncrementCqPluckCreates() {
371
413
  data_.this_cpu().cq_pluck_creates.fetch_add(1, std::memory_order_relaxed);
372
414
  }
@@ -447,6 +489,9 @@ class GlobalStatsCollector {
447
489
  void IncrementHttp2MetadataSize(int value) {
448
490
  data_.this_cpu().http2_metadata_size.Increment(value);
449
491
  }
492
+ void IncrementHttp2HpackEntryLifetime(int value) {
493
+ data_.this_cpu().http2_hpack_entry_lifetime.Increment(value);
494
+ }
450
495
  void IncrementWrrSubchannelListSize(int value) {
451
496
  data_.this_cpu().wrr_subchannel_list_size.Increment(value);
452
497
  }
@@ -526,6 +571,8 @@ class GlobalStatsCollector {
526
571
  std::atomic<uint64_t> http2_writes_begun{0};
527
572
  std::atomic<uint64_t> http2_transport_stalls{0};
528
573
  std::atomic<uint64_t> http2_stream_stalls{0};
574
+ std::atomic<uint64_t> http2_hpack_hits{0};
575
+ std::atomic<uint64_t> http2_hpack_misses{0};
529
576
  std::atomic<uint64_t> cq_pluck_creates{0};
530
577
  std::atomic<uint64_t> cq_next_creates{0};
531
578
  std::atomic<uint64_t> cq_callback_creates{0};
@@ -551,6 +598,7 @@ class GlobalStatsCollector {
551
598
  HistogramCollector_80_10 tcp_read_offer_iov_size;
552
599
  HistogramCollector_16777216_20 http2_send_message_size;
553
600
  HistogramCollector_65536_26 http2_metadata_size;
601
+ HistogramCollector_1800000_40 http2_hpack_entry_lifetime;
554
602
  HistogramCollector_10000_20 wrr_subchannel_list_size;
555
603
  HistogramCollector_10000_20 wrr_subchannel_ready_size;
556
604
  HistogramCollector_100000_20 work_serializer_run_time_ms;
@@ -20,7 +20,6 @@
20
20
 
21
21
  #include "absl/log/check.h"
22
22
 
23
- #include <grpc/support/log.h>
24
23
  #include <grpc/support/port_platform.h>
25
24
 
26
25
  #include "src/core/lib/channel/channel_args.h"
@@ -22,7 +22,6 @@
22
22
  #include <grpc/slice.h>
23
23
  #include <grpc/slice_buffer.h>
24
24
  #include <grpc/support/alloc.h>
25
- #include <grpc/support/log.h>
26
25
  #include <grpc/support/port_platform.h>
27
26
 
28
27
  #include "src/core/lib/gprpp/crash.h"
@@ -22,7 +22,6 @@
22
22
  #include <string.h>
23
23
 
24
24
  #include <grpc/support/alloc.h>
25
- #include <grpc/support/log.h>
26
25
  #include <grpc/support/port_platform.h>
27
26
 
28
27
  #include "src/core/lib/gprpp/crash.h"
@@ -28,6 +28,7 @@
28
28
  #include <grpc/support/port_platform.h>
29
29
 
30
30
  #include "src/core/lib/gprpp/crash.h"
31
+ #include "src/core/lib/gprpp/dump_args.h"
31
32
  #include "src/core/lib/gprpp/memory.h"
32
33
  #include "src/core/lib/slice/slice_internal.h"
33
34
  #include "src/core/tsi/transport_security_grpc.h"
@@ -210,6 +211,8 @@ static tsi_result tsi_fake_frame_decode(const unsigned char* incoming_bytes,
210
211
  frame->offset += to_read_size;
211
212
  available_size -= to_read_size;
212
213
  frame->size = load32_little_endian(frame->data);
214
+ if (frame->size < 4) return TSI_DATA_CORRUPTED;
215
+ if (frame->size > 16 * 1024 * 1024) return TSI_DATA_CORRUPTED;
213
216
  tsi_fake_frame_ensure_size(frame);
214
217
  }
215
218
 
@@ -639,11 +642,9 @@ static tsi_result fake_handshaker_get_bytes_to_send_to_peer(
639
642
  if (next_message_to_send > TSI_FAKE_HANDSHAKE_MESSAGE_MAX) {
640
643
  next_message_to_send = TSI_FAKE_HANDSHAKE_MESSAGE_MAX;
641
644
  }
642
- if (GRPC_TRACE_FLAG_ENABLED(tsi)) {
643
- LOG(INFO) << (impl->is_client ? "Client" : "Server") << " prepared "
644
- << tsi_fake_handshake_message_to_string(
645
- impl->next_message_to_send);
646
- }
645
+ GRPC_TRACE_LOG(tsi, INFO)
646
+ << (impl->is_client ? "Client" : "Server") << " prepared "
647
+ << tsi_fake_handshake_message_to_string(impl->next_message_to_send);
647
648
  impl->next_message_to_send = next_message_to_send;
648
649
  }
649
650
  result =
@@ -21,7 +21,6 @@
21
21
  #include "absl/log/check.h"
22
22
  #include "absl/log/log.h"
23
23
 
24
- #include <grpc/support/log.h>
25
24
  #include <grpc/support/port_platform.h>
26
25
  #include <grpc/support/string_util.h>
27
26
 
@@ -24,7 +24,6 @@
24
24
  #include "absl/log/check.h"
25
25
 
26
26
  #include <grpc/support/alloc.h>
27
- #include <grpc/support/log.h>
28
27
 
29
28
  #include "src/core/lib/gprpp/crash.h"
30
29
 
@@ -35,7 +35,6 @@
35
35
  #include <grpc/credentials.h>
36
36
  #include <grpc/grpc.h>
37
37
  #include <grpc/grpc_security.h>
38
- #include <grpc/support/log.h>
39
38
 
40
39
  #include "src/core/lib/debug/trace.h"
41
40
  #include "src/core/lib/gprpp/ref_counted_ptr.h"
@@ -33,7 +33,6 @@
33
33
  #include <grpc/grpc.h>
34
34
  #include <grpc/slice_buffer.h>
35
35
  #include <grpc/support/alloc.h>
36
- #include <grpc/support/log.h>
37
36
 
38
37
  #include "src/core/handshaker/handshaker.h"
39
38
  #include "src/core/handshaker/handshaker_registry.h"
@@ -71,15 +70,14 @@ OrphanablePtr<HttpRequest> HttpRequest::Get(
71
70
  grpc_polling_entity* pollent, const grpc_http_request* request,
72
71
  Timestamp deadline, grpc_closure* on_done, grpc_http_response* response,
73
72
  RefCountedPtr<grpc_channel_credentials> channel_creds) {
74
- absl::optional<std::function<void()>> test_only_generate_response;
73
+ absl::optional<std::function<bool()>> test_only_generate_response;
75
74
  if (g_get_override != nullptr) {
76
75
  test_only_generate_response = [request, uri, deadline, on_done,
77
76
  response]() {
78
77
  // Note that capturing request here assumes it will remain alive
79
78
  // until after Start is called. This avoids making a copy as this
80
79
  // code path is only used for test mocks.
81
- g_get_override(request, uri.authority().c_str(), uri.path().c_str(),
82
- deadline, on_done, response);
80
+ return g_get_override(request, uri, deadline, on_done, response);
83
81
  };
84
82
  }
85
83
  std::string name =
@@ -97,13 +95,13 @@ OrphanablePtr<HttpRequest> HttpRequest::Post(
97
95
  grpc_polling_entity* pollent, const grpc_http_request* request,
98
96
  Timestamp deadline, grpc_closure* on_done, grpc_http_response* response,
99
97
  RefCountedPtr<grpc_channel_credentials> channel_creds) {
100
- absl::optional<std::function<void()>> test_only_generate_response;
98
+ absl::optional<std::function<bool()>> test_only_generate_response;
101
99
  if (g_post_override != nullptr) {
102
100
  test_only_generate_response = [request, uri, deadline, on_done,
103
101
  response]() {
104
- g_post_override(request, uri.authority().c_str(), uri.path().c_str(),
105
- request->body, request->body_length, deadline, on_done,
106
- response);
102
+ return g_post_override(
103
+ request, uri, absl::string_view(request->body, request->body_length),
104
+ deadline, on_done, response);
107
105
  };
108
106
  }
109
107
  std::string name =
@@ -121,13 +119,13 @@ OrphanablePtr<HttpRequest> HttpRequest::Put(
121
119
  grpc_polling_entity* pollent, const grpc_http_request* request,
122
120
  Timestamp deadline, grpc_closure* on_done, grpc_http_response* response,
123
121
  RefCountedPtr<grpc_channel_credentials> channel_creds) {
124
- absl::optional<std::function<void()>> test_only_generate_response;
122
+ absl::optional<std::function<bool()>> test_only_generate_response;
125
123
  if (g_put_override != nullptr) {
126
124
  test_only_generate_response = [request, uri, deadline, on_done,
127
125
  response]() {
128
- g_put_override(request, uri.authority().c_str(), uri.path().c_str(),
129
- request->body, request->body_length, deadline, on_done,
130
- response);
126
+ return g_put_override(
127
+ request, uri, absl::string_view(request->body, request->body_length),
128
+ deadline, on_done, response);
131
129
  };
132
130
  }
133
131
  std::string name =
@@ -157,7 +155,7 @@ HttpRequest::HttpRequest(
157
155
  URI uri, const grpc_slice& request_text, grpc_http_response* response,
158
156
  Timestamp deadline, const grpc_channel_args* channel_args,
159
157
  grpc_closure* on_done, grpc_polling_entity* pollent, const char* name,
160
- absl::optional<std::function<void()>> test_only_generate_response,
158
+ absl::optional<std::function<bool()>> test_only_generate_response,
161
159
  RefCountedPtr<grpc_channel_credentials> channel_creds)
162
160
  : uri_(std::move(uri)),
163
161
  request_text_(request_text),
@@ -204,8 +202,7 @@ HttpRequest::~HttpRequest() {
204
202
  void HttpRequest::Start() {
205
203
  MutexLock lock(&mu_);
206
204
  if (test_only_generate_response_.has_value()) {
207
- test_only_generate_response_.value()();
208
- return;
205
+ if (test_only_generate_response_.value()()) return;
209
206
  }
210
207
  Ref().release(); // ref held by pending DNS resolution
211
208
  dns_request_handle_ = resolver_->LookupHostname(
@@ -30,6 +30,7 @@
30
30
  #include "absl/base/thread_annotations.h"
31
31
  #include "absl/status/status.h"
32
32
  #include "absl/status/statusor.h"
33
+ #include "absl/strings/string_view.h"
33
34
  #include "absl/types/optional.h"
34
35
 
35
36
  #include <grpc/grpc.h>
@@ -59,18 +60,22 @@
59
60
 
60
61
  // override functions return 1 if they handled the request, 0 otherwise
61
62
  typedef int (*grpc_httpcli_get_override)(const grpc_http_request* request,
62
- const char* host, const char* path,
63
+ const grpc_core::URI& uri,
64
+ grpc_core::Timestamp deadline,
65
+ grpc_closure* on_complete,
66
+ grpc_http_response* response);
67
+ typedef int (*grpc_httpcli_post_override)(const grpc_http_request* request,
68
+ const grpc_core::URI& uri,
69
+ absl::string_view body,
70
+ grpc_core::Timestamp deadline,
71
+ grpc_closure* on_complete,
72
+ grpc_http_response* response);
73
+ typedef int (*grpc_httpcli_put_override)(const grpc_http_request* request,
74
+ const grpc_core::URI& uri,
75
+ absl::string_view body,
63
76
  grpc_core::Timestamp deadline,
64
77
  grpc_closure* on_complete,
65
78
  grpc_http_response* response);
66
- typedef int (*grpc_httpcli_post_override)(
67
- const grpc_http_request* request, const char* host, const char* path,
68
- const char* body_bytes, size_t body_size, grpc_core::Timestamp deadline,
69
- grpc_closure* on_complete, grpc_http_response* response);
70
- typedef int (*grpc_httpcli_put_override)(
71
- const grpc_http_request* request, const char* host, const char* path,
72
- const char* body_bytes, size_t body_size, grpc_core::Timestamp deadline,
73
- grpc_closure* on_complete, grpc_http_response* response);
74
79
 
75
80
  namespace grpc_core {
76
81
 
@@ -160,7 +165,7 @@ class HttpRequest : public InternallyRefCounted<HttpRequest> {
160
165
  grpc_http_response* response, Timestamp deadline,
161
166
  const grpc_channel_args* channel_args, grpc_closure* on_done,
162
167
  grpc_polling_entity* pollent, const char* name,
163
- absl::optional<std::function<void()>> test_only_generate_response,
168
+ absl::optional<std::function<bool()>> test_only_generate_response,
164
169
  RefCountedPtr<grpc_channel_credentials> channel_creds);
165
170
 
166
171
  ~HttpRequest() override;
@@ -245,7 +250,7 @@ class HttpRequest : public InternallyRefCounted<HttpRequest> {
245
250
  ResourceQuotaRefPtr resource_quota_;
246
251
  grpc_polling_entity* pollent_;
247
252
  grpc_pollset_set* pollset_set_;
248
- const absl::optional<std::function<void()>> test_only_generate_response_;
253
+ const absl::optional<std::function<bool()>> test_only_generate_response_;
249
254
  Mutex mu_;
250
255
  RefCountedPtr<HandshakeManager> handshake_mgr_ ABSL_GUARDED_BY(mu_);
251
256
  bool cancelled_ ABSL_GUARDED_BY(mu_) = false;
@@ -376,10 +376,9 @@ static grpc_error_handle addbyte(grpc_http_parser* parser, uint8_t byte,
376
376
  case GRPC_HTTP_HEADERS:
377
377
  case GRPC_HTTP_TRAILERS:
378
378
  if (parser->cur_line_length >= GRPC_HTTP_PARSER_MAX_HEADER_LENGTH) {
379
- if (GRPC_TRACE_FLAG_ENABLED(http1)) {
380
- LOG(ERROR) << "HTTP header max line length ("
381
- << GRPC_HTTP_PARSER_MAX_HEADER_LENGTH << ") exceeded";
382
- }
379
+ GRPC_TRACE_LOG(http1, ERROR)
380
+ << "HTTP header max line length ("
381
+ << GRPC_HTTP_PARSER_MAX_HEADER_LENGTH << ") exceeded";
383
382
  return GRPC_ERROR_CREATE("HTTP header max line length exceeded");
384
383
  }
385
384
  parser->cur_line[parser->cur_line_length] = byte;
@@ -36,7 +36,6 @@
36
36
  #include "absl/types/variant.h"
37
37
 
38
38
  #include <grpc/support/json.h>
39
- #include <grpc/support/log.h>
40
39
 
41
40
  #include "src/core/lib/gprpp/match.h"
42
41
  #include "src/core/util/json/json.h"