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.
- checksums.yaml +4 -4
- data/Makefile +19 -10
- data/include/grpc/credentials.h +1 -1
- data/include/grpc/event_engine/README.md +1 -1
- data/include/grpc/event_engine/internal/slice_cast.h +1 -1
- data/include/grpc/event_engine/slice.h +0 -1
- data/include/grpc/event_engine/slice_buffer.h +0 -1
- data/include/grpc/grpc_crl_provider.h +1 -1
- data/include/grpc/impl/channel_arg_names.h +1 -1
- data/include/grpc/support/log.h +34 -32
- data/include/grpc/support/sync_generic.h +2 -4
- data/src/core/channelz/channelz.cc +0 -1
- data/src/core/channelz/channelz_registry.cc +0 -1
- data/src/core/client_channel/client_channel.cc +10 -7
- data/src/core/client_channel/client_channel.h +1 -1
- data/src/core/client_channel/client_channel_filter.cc +21 -18
- data/src/core/client_channel/client_channel_filter.h +1 -1
- data/src/core/client_channel/client_channel_internal.h +0 -2
- data/src/core/client_channel/config_selector.h +0 -1
- data/src/core/client_channel/dynamic_filters.cc +0 -2
- data/src/core/client_channel/local_subchannel_pool.cc +0 -2
- data/src/core/client_channel/retry_filter.h +0 -1
- data/src/core/client_channel/retry_filter_legacy_call_data.cc +175 -257
- data/src/core/client_channel/subchannel.cc +21 -27
- data/src/core/client_channel/subchannel_stream_client.cc +1 -1
- data/src/core/ext/filters/backend_metrics/backend_metric_filter.cc +8 -9
- data/src/core/ext/filters/channel_idle/legacy_channel_idle_filter.cc +0 -1
- data/src/core/ext/filters/fault_injection/fault_injection_filter.cc +3 -4
- data/src/core/ext/filters/gcp_authentication/gcp_authentication_filter.cc +167 -0
- data/src/core/ext/filters/gcp_authentication/gcp_authentication_filter.h +82 -0
- data/src/core/ext/filters/gcp_authentication/gcp_authentication_service_config_parser.cc +81 -0
- data/src/core/ext/filters/gcp_authentication/gcp_authentication_service_config_parser.h +87 -0
- data/src/core/ext/filters/http/message_compress/compression_filter.cc +7 -9
- data/src/core/ext/filters/http/server/http_server_filter.cc +2 -4
- data/src/core/ext/filters/message_size/message_size_filter.cc +6 -7
- data/src/core/ext/filters/stateful_session/stateful_session_filter.cc +0 -2
- data/src/core/ext/transport/chttp2/alpn/alpn.cc +0 -1
- data/src/core/ext/transport/chttp2/server/chttp2_server.cc +6 -8
- data/src/core/ext/transport/chttp2/transport/bin_encoder.cc +0 -1
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +288 -265
- data/src/core/ext/transport/chttp2/transport/flow_control.cc +3 -4
- data/src/core/ext/transport/chttp2/transport/flow_control.h +0 -1
- data/src/core/ext/transport/chttp2/transport/frame.cc +0 -1
- data/src/core/ext/transport/chttp2/transport/frame_data.cc +0 -1
- data/src/core/ext/transport/chttp2/transport/frame_goaway.cc +0 -1
- data/src/core/ext/transport/chttp2/transport/frame_ping.cc +6 -6
- data/src/core/ext/transport/chttp2/transport/frame_rst_stream.cc +3 -4
- data/src/core/ext/transport/chttp2/transport/frame_settings.cc +5 -6
- data/src/core/ext/transport/chttp2/transport/frame_window_update.cc +0 -1
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.cc +2 -3
- data/src/core/ext/transport/chttp2/transport/hpack_encoder_table.cc +0 -1
- data/src/core/ext/transport/chttp2/transport/hpack_parse_result.h +0 -1
- data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +3 -3
- data/src/core/ext/transport/chttp2/transport/hpack_parser_table.cc +37 -5
- data/src/core/ext/transport/chttp2/transport/hpack_parser_table.h +27 -6
- data/src/core/ext/transport/chttp2/transport/internal.h +2 -3
- data/src/core/ext/transport/chttp2/transport/parsing.cc +21 -32
- data/src/core/ext/transport/chttp2/transport/ping_callbacks.cc +0 -1
- data/src/core/ext/transport/chttp2/transport/stream_lists.cc +6 -8
- data/src/core/ext/transport/chttp2/transport/varint.h +0 -1
- data/src/core/ext/transport/chttp2/transport/write_size_policy.cc +0 -1
- data/src/core/ext/transport/chttp2/transport/writing.cc +22 -22
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upb.h +431 -0
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upb_minitable.c +129 -0
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upb_minitable.h +33 -0
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb.h +16 -0
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb_minitable.c +13 -2
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb.h +397 -22
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb_minitable.c +94 -20
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb_minitable.h +2 -0
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upbdefs.c +86 -0
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upbdefs.h +47 -0
- data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/checked.upbdefs.c +108 -107
- data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/syntax.upbdefs.c +101 -78
- data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/syntax.upbdefs.h +10 -0
- data/src/core/handshaker/handshaker.cc +21 -29
- data/src/core/handshaker/security/secure_endpoint.cc +3 -3
- data/src/core/handshaker/security/security_handshaker.cc +60 -72
- data/src/core/handshaker/tcp_connect/tcp_connect_handshaker.cc +0 -1
- data/src/core/lib/backoff/backoff.cc +7 -10
- data/src/core/lib/backoff/backoff.h +4 -6
- data/src/core/lib/channel/channel_stack.cc +0 -1
- data/src/core/lib/channel/channel_stack.h +0 -1
- data/src/core/lib/channel/channel_stack_builder_impl.cc +0 -1
- data/src/core/lib/channel/connected_channel.cc +0 -1
- data/src/core/lib/channel/promise_based_filter.cc +146 -194
- data/src/core/lib/channel/promise_based_filter.h +1 -1
- data/src/core/lib/compression/compression_internal.cc +0 -1
- data/src/core/lib/config/config_vars.cc +11 -1
- data/src/core/lib/config/config_vars.h +8 -0
- data/src/core/lib/config/core_configuration.cc +0 -1
- data/src/core/lib/config/core_configuration.h +0 -1
- data/src/core/lib/debug/event_log.cc +0 -1
- data/src/core/lib/debug/trace_flags.cc +4 -18
- data/src/core/lib/debug/trace_flags.h +2 -5
- data/src/core/lib/debug/trace_impl.h +6 -0
- data/src/core/lib/event_engine/ares_resolver.cc +89 -56
- data/src/core/lib/event_engine/ares_resolver.h +0 -9
- data/src/core/lib/event_engine/cf_engine/cfstream_endpoint.cc +14 -1
- data/src/core/lib/event_engine/cf_engine/cftype_unique_ref.h +1 -1
- data/src/core/lib/event_engine/forkable.cc +0 -1
- data/src/core/lib/event_engine/forkable.h +0 -1
- data/src/core/lib/event_engine/posix_engine/ev_epoll1_linux.cc +1 -1
- data/src/core/lib/event_engine/posix_engine/ev_epoll1_linux.h +4 -4
- data/src/core/lib/event_engine/posix_engine/ev_poll_posix.cc +0 -1
- data/src/core/lib/event_engine/posix_engine/lockfree_event.cc +0 -1
- data/src/core/lib/event_engine/posix_engine/posix_endpoint.cc +9 -1
- data/src/core/lib/event_engine/posix_engine/posix_endpoint.h +0 -1
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener.h +2 -2
- data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.h +1 -2
- data/src/core/lib/event_engine/posix_engine/timer_manager.cc +4 -9
- data/src/core/lib/event_engine/posix_engine/traced_buffer_list.cc +0 -1
- data/src/core/lib/event_engine/resolved_address.cc +0 -1
- data/src/core/lib/event_engine/slice.cc +0 -1
- data/src/core/lib/event_engine/thread_pool/thread_count.cc +0 -1
- data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.cc +3 -5
- data/src/core/lib/event_engine/windows/grpc_polled_fd_windows.cc +121 -93
- data/src/core/lib/experiments/config.cc +12 -10
- data/src/core/lib/experiments/experiments.cc +45 -66
- data/src/core/lib/experiments/experiments.h +22 -27
- data/src/core/lib/gprpp/chunked_vector.h +0 -1
- data/src/core/lib/gprpp/down_cast.h +0 -1
- data/src/core/lib/gprpp/host_port.cc +0 -1
- data/src/core/lib/gprpp/load_file.cc +0 -1
- data/src/core/lib/gprpp/mpscq.h +0 -1
- data/src/core/lib/gprpp/single_set_ptr.h +0 -1
- data/src/core/lib/gprpp/status_helper.cc +0 -1
- data/src/core/lib/gprpp/sync.h +0 -1
- data/src/core/lib/gprpp/table.h +28 -0
- data/src/core/lib/gprpp/thd.h +0 -1
- data/src/core/lib/gprpp/time.h +0 -1
- data/src/core/lib/gprpp/time_util.cc +0 -1
- data/src/core/lib/gprpp/windows/directory_reader.cc +0 -2
- data/src/core/lib/gprpp/windows/thd.cc +0 -1
- data/src/core/lib/gprpp/work_serializer.cc +23 -34
- data/src/core/lib/iomgr/buffer_list.cc +0 -1
- data/src/core/lib/iomgr/call_combiner.h +6 -8
- data/src/core/lib/iomgr/cfstream_handle.cc +6 -8
- data/src/core/lib/iomgr/closure.h +5 -8
- data/src/core/lib/iomgr/combiner.cc +6 -8
- data/src/core/lib/iomgr/endpoint_cfstream.cc +17 -22
- data/src/core/lib/iomgr/endpoint_pair_posix.cc +0 -1
- data/src/core/lib/iomgr/error.h +0 -1
- data/src/core/lib/iomgr/ev_apple.cc +13 -18
- data/src/core/lib/iomgr/ev_epoll1_linux.cc +47 -85
- data/src/core/lib/iomgr/ev_poll_posix.cc +17 -24
- data/src/core/lib/iomgr/ev_posix.cc +55 -44
- data/src/core/lib/iomgr/ev_posix.h +0 -5
- data/src/core/lib/iomgr/event_engine_shims/closure.cc +7 -9
- data/src/core/lib/iomgr/event_engine_shims/endpoint.cc +3 -4
- data/src/core/lib/iomgr/exec_ctx.cc +6 -9
- data/src/core/lib/iomgr/exec_ctx.h +26 -16
- data/src/core/lib/iomgr/executor.cc +43 -33
- data/src/core/lib/iomgr/fork_windows.cc +0 -1
- data/src/core/lib/iomgr/internal_errqueue.cc +0 -1
- data/src/core/lib/iomgr/iocp_windows.cc +0 -1
- data/src/core/lib/iomgr/iomgr_windows.cc +0 -2
- data/src/core/lib/iomgr/lockfree_event.cc +7 -11
- data/src/core/lib/iomgr/polling_entity.cc +10 -3
- data/src/core/lib/iomgr/pollset_windows.cc +0 -2
- data/src/core/lib/iomgr/resolve_address.cc +0 -1
- data/src/core/lib/iomgr/resolve_address_posix.cc +0 -1
- data/src/core/lib/iomgr/resolve_address_windows.cc +0 -1
- data/src/core/lib/iomgr/sockaddr_utils_posix.cc +0 -1
- data/src/core/lib/iomgr/socket_mutator.cc +0 -1
- data/src/core/lib/iomgr/socket_utils_linux.cc +0 -2
- data/src/core/lib/iomgr/socket_utils_posix.cc +0 -1
- data/src/core/lib/iomgr/socket_utils_windows.cc +0 -2
- data/src/core/lib/iomgr/tcp_client_cfstream.cc +7 -12
- data/src/core/lib/iomgr/tcp_client_posix.cc +8 -12
- data/src/core/lib/iomgr/tcp_client_windows.cc +0 -1
- data/src/core/lib/iomgr/tcp_posix.cc +32 -68
- data/src/core/lib/iomgr/tcp_server_posix.cc +7 -11
- data/src/core/lib/iomgr/tcp_windows.cc +4 -12
- data/src/core/lib/iomgr/timer_generic.cc +46 -65
- data/src/core/lib/iomgr/timer_manager.cc +4 -5
- data/src/core/lib/iomgr/unix_sockets_posix.cc +0 -1
- data/src/core/lib/iomgr/unix_sockets_posix_noop.cc +0 -2
- data/src/core/lib/iomgr/vsock.cc +0 -1
- data/src/core/lib/iomgr/wakeup_fd_eventfd.cc +0 -2
- data/src/core/lib/promise/activity.h +0 -1
- data/src/core/lib/promise/context.h +0 -1
- data/src/core/lib/promise/detail/join_state.h +44 -44
- data/src/core/lib/promise/detail/seq_state.h +1101 -1356
- data/src/core/lib/promise/for_each.h +8 -15
- data/src/core/lib/promise/interceptor_list.h +17 -27
- data/src/core/lib/promise/latch.h +16 -24
- data/src/core/lib/promise/map.h +1 -1
- data/src/core/lib/promise/party.cc +238 -114
- data/src/core/lib/promise/party.h +105 -308
- data/src/core/lib/promise/pipe.h +3 -4
- data/src/core/lib/promise/poll.h +0 -1
- data/src/core/lib/promise/status_flag.h +0 -1
- data/src/core/lib/resource_quota/connection_quota.cc +0 -1
- data/src/core/lib/resource_quota/memory_quota.cc +11 -19
- data/src/core/lib/resource_quota/memory_quota.h +2 -4
- data/src/core/lib/resource_quota/periodic_update.cc +2 -3
- data/src/core/lib/resource_quota/thread_quota.cc +0 -1
- data/src/core/lib/security/authorization/audit_logging.cc +0 -1
- data/src/core/lib/security/authorization/grpc_authorization_engine.cc +0 -1
- data/src/core/lib/security/authorization/grpc_server_authz_filter.cc +14 -19
- data/src/core/lib/security/authorization/stdout_logger.cc +0 -1
- data/src/core/lib/security/credentials/alts/check_gcp_environment.cc +0 -1
- data/src/core/lib/security/credentials/alts/check_gcp_environment_windows.cc +0 -1
- data/src/core/lib/security/credentials/call_creds_util.cc +0 -1
- data/src/core/lib/security/credentials/composite/composite_credentials.cc +0 -1
- data/src/core/lib/security/credentials/composite/composite_credentials.h +2 -0
- data/src/core/lib/security/credentials/credentials.h +1 -2
- data/src/core/lib/security/credentials/external/aws_external_account_credentials.cc +322 -324
- data/src/core/lib/security/credentials/external/aws_external_account_credentials.h +53 -42
- data/src/core/lib/security/credentials/external/external_account_credentials.cc +391 -353
- data/src/core/lib/security/credentials/external/external_account_credentials.h +121 -51
- data/src/core/lib/security/credentials/external/file_external_account_credentials.cc +83 -44
- data/src/core/lib/security/credentials/external/file_external_account_credentials.h +27 -7
- data/src/core/lib/security/credentials/external/url_external_account_credentials.cc +91 -116
- data/src/core/lib/security/credentials/external/url_external_account_credentials.h +14 -17
- data/src/core/lib/security/credentials/fake/fake_credentials.h +2 -0
- data/src/core/lib/security/credentials/gcp_service_account_identity/gcp_service_account_identity_credentials.cc +196 -0
- data/src/core/lib/security/credentials/gcp_service_account_identity/gcp_service_account_identity_credentials.h +90 -0
- data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +27 -41
- data/src/core/lib/security/credentials/iam/iam_credentials.cc +0 -1
- data/src/core/lib/security/credentials/iam/iam_credentials.h +2 -0
- data/src/core/lib/security/credentials/jwt/jwt_credentials.h +2 -0
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +163 -259
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.h +34 -56
- data/src/core/lib/security/credentials/plugin/plugin_credentials.cc +12 -16
- data/src/core/lib/security/credentials/plugin/plugin_credentials.h +2 -0
- data/src/core/lib/security/credentials/ssl/ssl_credentials.h +0 -1
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.cc +0 -1
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.h +0 -1
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.cc +0 -1
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.h +0 -1
- data/src/core/lib/security/credentials/token_fetcher/token_fetcher_credentials.cc +298 -0
- data/src/core/lib/security/credentials/token_fetcher/token_fetcher_credentials.h +176 -0
- data/src/core/lib/security/credentials/xds/xds_credentials.cc +0 -1
- data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +0 -1
- data/src/core/lib/security/security_connector/insecure/insecure_security_connector.cc +0 -1
- data/src/core/lib/security/security_connector/load_system_roots_windows.cc +0 -1
- data/src/core/lib/security/transport/server_auth_filter.cc +4 -6
- data/src/core/lib/slice/percent_encoding.cc +0 -1
- data/src/core/lib/slice/slice.cc +0 -1
- data/src/core/lib/slice/slice.h +0 -1
- data/src/core/lib/slice/slice_buffer.cc +0 -1
- data/src/core/lib/slice/slice_internal.h +0 -1
- data/src/core/lib/slice/slice_refcount.h +6 -8
- data/src/core/lib/surface/byte_buffer_reader.cc +0 -1
- data/src/core/lib/surface/call.cc +3 -5
- data/src/core/lib/surface/call_utils.h +0 -1
- data/src/core/lib/surface/channel.cc +0 -1
- data/src/core/lib/surface/channel_create.cc +0 -1
- data/src/core/lib/surface/channel_init.h +0 -1
- data/src/core/lib/surface/client_call.cc +0 -1
- data/src/core/lib/surface/client_call.h +0 -1
- data/src/core/lib/surface/completion_queue.cc +28 -4
- data/src/core/lib/surface/completion_queue_factory.cc +0 -1
- data/src/core/lib/surface/filter_stack_call.cc +9 -9
- data/src/core/lib/surface/filter_stack_call.h +0 -1
- data/src/core/lib/surface/lame_client.cc +0 -1
- data/src/core/lib/surface/server_call.cc +0 -1
- data/src/core/lib/surface/server_call.h +0 -1
- data/src/core/lib/surface/validate_metadata.h +0 -1
- data/src/core/lib/surface/version.cc +2 -2
- data/src/core/lib/transport/bdp_estimator.cc +9 -12
- data/src/core/lib/transport/bdp_estimator.h +6 -8
- data/src/core/lib/transport/call_arena_allocator.cc +2 -16
- data/src/core/lib/transport/call_arena_allocator.h +20 -5
- data/src/core/lib/transport/call_filters.cc +6 -9
- data/src/core/lib/transport/call_spine.h +24 -13
- data/src/core/lib/transport/connectivity_state.cc +34 -42
- data/src/core/lib/transport/metadata_batch.h +41 -1
- data/src/core/lib/transport/timeout_encoding.cc +0 -1
- data/src/core/lib/transport/transport.h +6 -8
- data/src/core/lib/transport/transport_op_string.cc +0 -1
- data/src/core/lib/uri/uri_parser.cc +0 -1
- data/src/core/load_balancing/grpclb/grpclb.cc +55 -71
- data/src/core/load_balancing/health_check_client.cc +31 -42
- data/src/core/load_balancing/oob_backend_metric.cc +2 -4
- data/src/core/load_balancing/outlier_detection/outlier_detection.cc +99 -129
- data/src/core/load_balancing/pick_first/pick_first.cc +168 -228
- data/src/core/load_balancing/priority/priority.cc +77 -106
- data/src/core/load_balancing/ring_hash/ring_hash.cc +32 -46
- data/src/core/load_balancing/rls/rls.cc +142 -187
- data/src/core/load_balancing/round_robin/round_robin.cc +36 -55
- data/src/core/load_balancing/weighted_round_robin/static_stride_scheduler.cc +0 -1
- data/src/core/load_balancing/weighted_round_robin/weighted_round_robin.cc +85 -110
- data/src/core/load_balancing/weighted_target/weighted_target.cc +52 -75
- data/src/core/load_balancing/xds/cds.cc +26 -43
- data/src/core/load_balancing/xds/xds_cluster_impl.cc +57 -54
- data/src/core/load_balancing/xds/xds_cluster_manager.cc +36 -50
- data/src/core/load_balancing/xds/xds_override_host.cc +95 -131
- data/src/core/load_balancing/xds/xds_wrr_locality.cc +15 -23
- data/src/core/plugin_registry/grpc_plugin_registry_extra.cc +3 -0
- data/src/core/resolver/binder/binder_resolver.cc +0 -2
- data/src/core/resolver/dns/c_ares/dns_resolver_ares.cc +62 -44
- data/src/core/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc +0 -2
- data/src/core/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc +110 -89
- data/src/core/resolver/dns/c_ares/grpc_ares_wrapper.cc +132 -96
- data/src/core/resolver/dns/c_ares/grpc_ares_wrapper.h +0 -7
- data/src/core/resolver/dns/dns_resolver_plugin.cc +0 -1
- data/src/core/resolver/dns/event_engine/event_engine_client_channel_resolver.cc +40 -39
- data/src/core/resolver/dns/native/dns_resolver.cc +8 -14
- data/src/core/resolver/endpoint_addresses.cc +0 -1
- data/src/core/resolver/fake/fake_resolver.cc +0 -1
- data/src/core/resolver/polling_resolver.cc +6 -15
- data/src/core/resolver/polling_resolver.h +1 -1
- data/src/core/resolver/xds/xds_config.cc +96 -0
- data/src/core/resolver/xds/xds_config.h +109 -0
- data/src/core/resolver/xds/xds_dependency_manager.cc +59 -154
- data/src/core/resolver/xds/xds_dependency_manager.h +1 -69
- data/src/core/resolver/xds/xds_resolver.cc +51 -55
- data/src/core/server/server.cc +2 -2
- data/src/core/server/server_config_selector_filter.cc +0 -1
- data/src/core/server/xds_server_config_fetcher.cc +4 -6
- data/src/core/service_config/service_config_call_data.h +2 -3
- data/src/core/service_config/service_config_channel_arg_filter.cc +0 -1
- data/src/core/service_config/service_config_impl.h +0 -1
- data/src/core/telemetry/call_tracer.cc +0 -1
- data/src/core/telemetry/metrics.h +0 -1
- data/src/core/telemetry/stats_data.cc +67 -0
- data/src/core/telemetry/stats_data.h +48 -0
- data/src/core/tsi/alts/handshaker/alts_shared_resource.cc +0 -1
- data/src/core/tsi/alts/handshaker/transport_security_common_api.h +0 -1
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.cc +0 -1
- data/src/core/tsi/fake_transport_security.cc +6 -5
- data/src/core/tsi/ssl/session_cache/ssl_session_cache.cc +0 -1
- data/src/core/util/alloc.cc +0 -1
- data/src/core/util/gcp_metadata_query.cc +0 -1
- data/src/core/util/http_client/httpcli.cc +12 -15
- data/src/core/util/http_client/httpcli.h +16 -11
- data/src/core/util/http_client/parser.cc +3 -4
- data/src/core/util/json/json_reader.cc +0 -1
- data/src/core/util/latent_see.cc +29 -9
- data/src/core/util/latent_see.h +122 -27
- data/src/core/util/log.cc +36 -55
- data/src/core/util/lru_cache.h +104 -0
- data/src/core/util/msys/tmpfile.cc +0 -1
- data/src/core/util/posix/sync.cc +0 -1
- data/src/core/util/posix/time.cc +0 -1
- data/src/core/util/ring_buffer.h +123 -0
- data/src/core/util/spinlock.h +1 -2
- data/src/core/util/string.cc +7 -7
- data/src/core/util/sync.cc +0 -1
- data/src/core/util/sync_abseil.cc +0 -1
- data/src/core/util/time.cc +0 -1
- data/src/core/util/unique_ptr_with_bitset.h +86 -0
- data/src/core/util/useful.h +0 -24
- data/src/core/util/windows/cpu.cc +0 -1
- data/src/core/util/windows/sync.cc +0 -1
- data/src/core/util/windows/time.cc +0 -1
- data/src/core/util/windows/tmpfile.cc +0 -1
- data/src/core/xds/grpc/xds_bootstrap_grpc.cc +0 -32
- data/src/core/xds/grpc/xds_bootstrap_grpc.h +0 -5
- data/src/core/xds/grpc/xds_certificate_provider.cc +0 -1
- data/src/core/xds/grpc/xds_client_grpc.cc +11 -16
- data/src/core/xds/grpc/xds_cluster.cc +2 -8
- data/src/core/xds/grpc/xds_cluster.h +4 -4
- data/src/core/xds/grpc/xds_cluster_parser.cc +58 -96
- data/src/core/xds/grpc/xds_cluster_specifier_plugin.cc +0 -1
- data/src/core/xds/grpc/xds_common_types_parser.cc +4 -4
- data/src/core/xds/grpc/xds_common_types_parser.h +17 -0
- data/src/core/xds/grpc/xds_endpoint_parser.cc +14 -14
- data/src/core/xds/grpc/xds_http_fault_filter.cc +15 -6
- data/src/core/xds/grpc/xds_http_fault_filter.h +5 -1
- data/src/core/xds/grpc/xds_http_filter.h +11 -1
- data/src/core/xds/grpc/xds_http_filter_registry.cc +7 -1
- data/src/core/xds/grpc/xds_http_filter_registry.h +8 -1
- data/src/core/xds/grpc/xds_http_gcp_authn_filter.cc +142 -0
- data/src/core/xds/grpc/xds_http_gcp_authn_filter.h +61 -0
- data/src/core/xds/grpc/xds_http_rbac_filter.cc +14 -6
- data/src/core/xds/grpc/xds_http_rbac_filter.h +5 -1
- data/src/core/xds/grpc/xds_http_stateful_session_filter.cc +9 -1
- data/src/core/xds/grpc/xds_http_stateful_session_filter.h +5 -1
- data/src/core/xds/grpc/xds_lb_policy_registry.cc +14 -16
- data/src/core/xds/grpc/xds_listener_parser.cc +10 -11
- data/src/core/xds/grpc/xds_metadata.cc +62 -0
- data/src/core/xds/grpc/xds_metadata.h +127 -0
- data/src/core/xds/grpc/xds_metadata_parser.cc +143 -0
- data/src/core/xds/grpc/xds_metadata_parser.h +36 -0
- data/src/core/xds/grpc/xds_route_config_parser.cc +12 -17
- data/src/core/xds/grpc/xds_routing.cc +57 -22
- data/src/core/xds/grpc/xds_routing.h +10 -2
- data/src/core/xds/grpc/xds_transport_grpc.cc +0 -1
- data/src/core/xds/xds_client/xds_client.cc +124 -165
- data/src/core/xds/xds_client/xds_client_stats.cc +20 -27
- data/src/ruby/ext/grpc/rb_call.c +1 -1
- data/src/ruby/ext/grpc/rb_call_credentials.c +34 -27
- data/src/ruby/ext/grpc/rb_channel.c +22 -16
- data/src/ruby/ext/grpc/rb_event_thread.c +3 -2
- data/src/ruby/ext/grpc/rb_grpc.c +9 -8
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +6 -10
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +9 -15
- data/src/ruby/ext/grpc/rb_server.c +10 -8
- data/src/ruby/lib/grpc/generic/active_call.rb +8 -5
- data/src/ruby/lib/grpc/version.rb +1 -1
- data/src/ruby/spec/call_spec.rb +53 -40
- data/src/ruby/spec/channel_spec.rb +4 -2
- data/src/ruby/spec/client_server_spec.rb +148 -507
- data/src/ruby/spec/generic/active_call_spec.rb +64 -86
- data/src/ruby/spec/support/services.rb +3 -0
- data/third_party/boringssl-with-bazel/src/crypto/{fipsmodule/rand/fork_detect.h → bcm_support.h} +51 -6
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/internal.h +43 -0
- data/third_party/boringssl-with-bazel/src/crypto/cpu_intel.c +72 -23
- data/third_party/boringssl-with-bazel/src/crypto/crypto.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/ecdsa_extra/ecdsa_asn1.c +160 -14
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/internal.h +2 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm.c +79 -78
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm_interface.h +89 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{div.c → div.c.inc} +146 -179
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{random.c → random.c.inc} +6 -8
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{sqrt.c → sqrt.c.inc} +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/{e_aes.c → e_aes.c.inc} +9 -8
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{ec_key.c → ec_key.c.inc} +11 -7
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{p256-nistz.c → p256-nistz.c.inc} +104 -12
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-nistz.h +65 -8
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/{ecdsa.c → ecdsa.c.inc} +52 -107
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/internal.h +28 -11
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/internal.h +1 -80
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/{rand.c → rand.c.inc} +26 -40
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/{padding.c → padding.c.inc} +2 -5
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/{rsa_impl.c → rsa_impl.c.inc} +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/{self_check.c → self_check.c.inc} +9 -35
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/service_indicator/internal.h +2 -2
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/service_indicator/{service_indicator.c → service_indicator.c.inc} +2 -2
- data/third_party/boringssl-with-bazel/src/crypto/hpke/hpke.c +293 -2
- data/third_party/boringssl-with-bazel/src/crypto/internal.h +69 -14
- data/third_party/boringssl-with-bazel/src/crypto/mem.c +7 -3
- data/third_party/boringssl-with-bazel/src/crypto/mldsa/internal.h +73 -0
- data/third_party/boringssl-with-bazel/src/crypto/mldsa/mldsa.c +1687 -0
- data/third_party/boringssl-with-bazel/src/crypto/mlkem/internal.h +90 -0
- data/third_party/boringssl-with-bazel/src/crypto/mlkem/mlkem.cc +1097 -0
- data/third_party/boringssl-with-bazel/src/crypto/obj/obj_dat.h +4 -1
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_lib.c +4 -5
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pk8.c +2 -3
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pkey.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/internal.h +1 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/deterministic.c +9 -1
- data/third_party/boringssl-with-bazel/src/crypto/{fipsmodule/rand → rand_extra}/fork_detect.c +26 -28
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/getentropy.c +9 -1
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/ios.c +9 -1
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/passive.c +19 -3
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/rand_extra.c +26 -23
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/sysrand_internal.h +37 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/trusty.c +9 -1
- data/third_party/boringssl-with-bazel/src/crypto/{fipsmodule/rand → rand_extra}/urandom.c +19 -19
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/windows.c +8 -1
- data/third_party/boringssl-with-bazel/src/crypto/rsa_extra/internal.h +2 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/asn1.h +14 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/bn.h +14 -9
- data/third_party/boringssl-with-bazel/src/include/openssl/experimental/dilithium.h +13 -15
- data/third_party/boringssl-with-bazel/src/include/openssl/hpke.h +8 -6
- data/third_party/boringssl-with-bazel/src/include/openssl/mldsa.h +136 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/mlkem.h +246 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/nid.h +3 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/pem.h +3 -4
- data/third_party/boringssl-with-bazel/src/include/openssl/service_indicator.h +2 -2
- data/third_party/boringssl-with-bazel/src/include/openssl/span.h +22 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/ssl.h +35 -5
- data/third_party/boringssl-with-bazel/src/ssl/d1_both.cc +5 -6
- data/third_party/boringssl-with-bazel/src/ssl/d1_lib.cc +6 -0
- data/third_party/boringssl-with-bazel/src/ssl/d1_pkt.cc +6 -1
- data/third_party/boringssl-with-bazel/src/ssl/dtls_method.cc +13 -1
- data/third_party/boringssl-with-bazel/src/ssl/dtls_record.cc +289 -55
- data/third_party/boringssl-with-bazel/src/ssl/extensions.cc +2 -0
- data/third_party/boringssl-with-bazel/src/ssl/handshake_client.cc +69 -38
- data/third_party/boringssl-with-bazel/src/ssl/handshake_server.cc +14 -3
- data/third_party/boringssl-with-bazel/src/ssl/internal.h +107 -14
- data/third_party/boringssl-with-bazel/src/ssl/s3_both.cc +44 -16
- data/third_party/boringssl-with-bazel/src/ssl/s3_pkt.cc +21 -1
- data/third_party/boringssl-with-bazel/src/ssl/ssl_aead_ctx.cc +86 -1
- data/third_party/boringssl-with-bazel/src/ssl/ssl_buffer.cc +7 -4
- data/third_party/boringssl-with-bazel/src/ssl/ssl_key_share.cc +97 -3
- data/third_party/boringssl-with-bazel/src/ssl/ssl_lib.cc +31 -2
- data/third_party/boringssl-with-bazel/src/ssl/ssl_versions.cc +6 -0
- data/third_party/boringssl-with-bazel/src/ssl/tls13_client.cc +18 -4
- data/third_party/boringssl-with-bazel/src/ssl/tls13_enc.cc +96 -34
- data/third_party/boringssl-with-bazel/src/ssl/tls13_server.cc +15 -5
- data/third_party/boringssl-with-bazel/src/ssl/tls_record.cc +3 -23
- metadata +113 -87
- data/src/core/ext/transport/chttp2/transport/max_concurrent_streams_policy.cc +0 -45
- data/src/core/ext/transport/chttp2/transport/max_concurrent_streams_policy.h +0 -67
- data/src/core/util/android/log.cc +0 -48
- data/src/core/util/linux/log.cc +0 -69
- data/src/core/util/posix/log.cc +0 -69
- data/src/core/util/windows/log.cc +0 -73
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/{aes.c → aes.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/{aes_nohw.c → aes_nohw.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/{key_wrap.c → key_wrap.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/{mode_wrappers.c → mode_wrappers.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{add.c → add.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/asm/{x86_64-gcc.c → x86_64-gcc.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{bn.c → bn.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{bytes.c → bytes.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{cmp.c → cmp.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{ctx.c → ctx.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{div_extra.c → div_extra.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{exponentiation.c → exponentiation.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{gcd.c → gcd.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{gcd_extra.c → gcd_extra.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{generic.c → generic.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{jacobi.c → jacobi.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{montgomery.c → montgomery.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{montgomery_inv.c → montgomery_inv.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{mul.c → mul.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{prime.c → prime.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{rsaz_exp.c → rsaz_exp.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{shift.c → shift.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/{aead.c → aead.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/{cipher.c → cipher.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/{e_aesccm.c → e_aesccm.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cmac/{cmac.c → cmac.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/{check.c → check.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/{dh.c → dh.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/{digest.c → digest.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/{digests.c → digests.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digestsign/{digestsign.c → digestsign.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{ec.c → ec.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{ec_montgomery.c → ec_montgomery.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{felem.c → felem.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{oct.c → oct.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{p224-64.c → p224-64.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{p256.c → p256.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{scalar.c → scalar.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{simple.c → simple.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{simple_mul.c → simple_mul.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{util.c → util.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{wnaf.c → wnaf.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdh/{ecdh.c → ecdh.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/hkdf/{hkdf.c → hkdf.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/hmac/{hmac.c → hmac.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/md4/{md4.c → md4.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/md5/{md5.c → md5.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{cbc.c → cbc.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{cfb.c → cfb.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{ctr.c → ctr.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{gcm.c → gcm.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{gcm_nohw.c → gcm_nohw.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{ofb.c → ofb.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{polyval.c → polyval.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/{ctrdrbg.c → ctrdrbg.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/{blinding.c → blinding.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/{rsa.c → rsa.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/{fips.c → fips.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/{sha1.c → sha1.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/{sha256.c → sha256.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/{sha512.c → sha512.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/tls/{kdf.c → kdf.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/{fipsmodule/rand → rand_extra}/getrandom_fillin.h +0 -0
@@ -0,0 +1,123 @@
|
|
1
|
+
// Copyright 2024 gRPC authors.
|
2
|
+
//
|
3
|
+
// Licensed under the Apache License, Version 2.0 (the "License");
|
4
|
+
// you may not use this file except in compliance with the License.
|
5
|
+
// You may obtain a copy of the License at
|
6
|
+
//
|
7
|
+
// http://www.apache.org/licenses/LICENSE-2.0
|
8
|
+
//
|
9
|
+
// Unless required by applicable law or agreed to in writing, software
|
10
|
+
// distributed under the License is distributed on an "AS IS" BASIS,
|
11
|
+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
12
|
+
// See the License for the specific language governing permissions and
|
13
|
+
// limitations under the License.
|
14
|
+
|
15
|
+
#ifndef GRPC_SRC_CORE_UTIL_RING_BUFFER_H
|
16
|
+
#define GRPC_SRC_CORE_UTIL_RING_BUFFER_H
|
17
|
+
|
18
|
+
#include <grpc/support/port_platform.h>
|
19
|
+
|
20
|
+
#include <array>
|
21
|
+
#include <cstddef>
|
22
|
+
#include <iterator>
|
23
|
+
|
24
|
+
#include "absl/types/optional.h"
|
25
|
+
|
26
|
+
namespace grpc_core {
|
27
|
+
|
28
|
+
template <typename T, int kCapacity>
|
29
|
+
class RingBuffer {
|
30
|
+
public:
|
31
|
+
class RingBufferIterator {
|
32
|
+
public:
|
33
|
+
using iterator_category = std::forward_iterator_tag;
|
34
|
+
using value_type = const T;
|
35
|
+
using pointer = void;
|
36
|
+
using reference = void;
|
37
|
+
using difference_type = std::ptrdiff_t;
|
38
|
+
|
39
|
+
RingBufferIterator& operator++() {
|
40
|
+
if (--size_ <= 0) {
|
41
|
+
head_ = 0;
|
42
|
+
size_ = 0;
|
43
|
+
buffer_ = nullptr;
|
44
|
+
} else {
|
45
|
+
head_ = (head_ + 1) % kCapacity;
|
46
|
+
}
|
47
|
+
return *this;
|
48
|
+
}
|
49
|
+
|
50
|
+
RingBufferIterator operator++(int) {
|
51
|
+
RingBufferIterator tmp(*this);
|
52
|
+
operator++();
|
53
|
+
return tmp;
|
54
|
+
}
|
55
|
+
|
56
|
+
bool operator==(const RingBufferIterator& rhs) const {
|
57
|
+
return (buffer_ == rhs.buffer_ && head_ == rhs.head_ &&
|
58
|
+
size_ == rhs.size_);
|
59
|
+
}
|
60
|
+
|
61
|
+
bool operator!=(const RingBufferIterator& rhs) const {
|
62
|
+
return !operator==(rhs);
|
63
|
+
}
|
64
|
+
|
65
|
+
T operator*() { return buffer_->data_[head_]; }
|
66
|
+
|
67
|
+
RingBufferIterator() : buffer_(nullptr), head_(0), size_(0) {};
|
68
|
+
RingBufferIterator(const RingBufferIterator& other) = default;
|
69
|
+
explicit RingBufferIterator(const RingBuffer<T, kCapacity>* buffer)
|
70
|
+
: buffer_(buffer), head_(buffer->head_), size_(buffer->size_) {
|
71
|
+
if (!size_) {
|
72
|
+
buffer_ = nullptr;
|
73
|
+
}
|
74
|
+
}
|
75
|
+
|
76
|
+
private:
|
77
|
+
friend class RingBuffer<T, kCapacity>;
|
78
|
+
const RingBuffer<T, kCapacity>* buffer_;
|
79
|
+
int head_ = 0;
|
80
|
+
int size_ = 0;
|
81
|
+
};
|
82
|
+
|
83
|
+
RingBuffer() = default;
|
84
|
+
|
85
|
+
void Append(T data) {
|
86
|
+
if (size_ < kCapacity) {
|
87
|
+
data_[size_] = std::move(data);
|
88
|
+
size_++;
|
89
|
+
} else {
|
90
|
+
data_[head_] = std::move(data);
|
91
|
+
head_ = (head_ + 1) % kCapacity;
|
92
|
+
}
|
93
|
+
}
|
94
|
+
|
95
|
+
// Returns the data of the first element in the buffer and removes it from
|
96
|
+
// the buffer. If the buffer is empty, returns absl::nullopt.
|
97
|
+
absl::optional<T> PopIfNotEmpty() {
|
98
|
+
if (!size_) return absl::nullopt;
|
99
|
+
T data = std::move(data_[head_]);
|
100
|
+
--size_;
|
101
|
+
head_ = (head_ + 1) % kCapacity;
|
102
|
+
return data;
|
103
|
+
}
|
104
|
+
|
105
|
+
void Clear() {
|
106
|
+
head_ = 0;
|
107
|
+
size_ = 0;
|
108
|
+
}
|
109
|
+
|
110
|
+
RingBufferIterator begin() const { return RingBufferIterator(this); }
|
111
|
+
|
112
|
+
RingBufferIterator end() const { return RingBufferIterator(); }
|
113
|
+
|
114
|
+
private:
|
115
|
+
friend class RingBufferIterator;
|
116
|
+
std::array<T, kCapacity> data_;
|
117
|
+
int head_ = 0;
|
118
|
+
int size_ = 0;
|
119
|
+
};
|
120
|
+
|
121
|
+
} // namespace grpc_core
|
122
|
+
|
123
|
+
#endif // GRPC_SRC_CORE_UTIL_RING_BUFFER_H
|
data/src/core/util/spinlock.h
CHANGED
@@ -34,8 +34,7 @@ struct gpr_spinlock {
|
|
34
34
|
#else
|
35
35
|
#define GPR_SPINLOCK_INITIALIZER ((gpr_spinlock){0})
|
36
36
|
#endif
|
37
|
-
#define GPR_SPINLOCK_STATIC_INITIALIZER
|
38
|
-
{ 0 }
|
37
|
+
#define GPR_SPINLOCK_STATIC_INITIALIZER {0}
|
39
38
|
|
40
39
|
#define gpr_spinlock_trylock(lock) (gpr_atm_acq_cas(&(lock)->atm, 0, 1))
|
41
40
|
#define gpr_spinlock_unlock(lock) (gpr_atm_rel_store(&(lock)->atm, 0))
|
data/src/core/util/string.cc
CHANGED
@@ -29,9 +29,9 @@
|
|
29
29
|
#include <time.h>
|
30
30
|
|
31
31
|
#include "absl/strings/str_cat.h"
|
32
|
+
#include "absl/time/time.h"
|
32
33
|
|
33
34
|
#include <grpc/support/alloc.h>
|
34
|
-
#include <grpc/support/log.h>
|
35
35
|
#include <grpc/support/string_util.h>
|
36
36
|
|
37
37
|
#include "src/core/lib/gprpp/crash.h"
|
@@ -54,14 +54,14 @@ char* gpr_strdup(const char* src) {
|
|
54
54
|
}
|
55
55
|
|
56
56
|
std::string gpr_format_timespec(gpr_timespec tm) {
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
strftime(time_buffer, sizeof(time_buffer), "%Y-%m-%dT%H:%M:%S", tm_info);
|
61
|
-
snprintf(ns_buffer, 11, ".%09d", tm.tv_nsec);
|
57
|
+
const std::string time_str =
|
58
|
+
absl::FormatTime("%Y-%m-%d%ET%H:%M:%S", absl::FromUnixSeconds(tm.tv_sec),
|
59
|
+
absl::LocalTimeZone());
|
62
60
|
// This loop trims off trailing zeros by inserting a null character that the
|
63
61
|
// right point. We iterate in chunks of three because we want 0, 3, 6, or 9
|
64
62
|
// fractional digits.
|
63
|
+
char ns_buffer[11]; // '.' + 9 digits of precision
|
64
|
+
snprintf(ns_buffer, 11, ".%09d", tm.tv_nsec);
|
65
65
|
for (int i = 7; i >= 1; i -= 3) {
|
66
66
|
if (ns_buffer[i] == '0' && ns_buffer[i + 1] == '0' &&
|
67
67
|
ns_buffer[i + 2] == '0') {
|
@@ -74,7 +74,7 @@ std::string gpr_format_timespec(gpr_timespec tm) {
|
|
74
74
|
break;
|
75
75
|
}
|
76
76
|
}
|
77
|
-
return absl::StrCat(
|
77
|
+
return absl::StrCat(time_str, ns_buffer, "Z");
|
78
78
|
}
|
79
79
|
|
80
80
|
struct dump_out {
|
data/src/core/util/sync.cc
CHANGED
data/src/core/util/time.cc
CHANGED
@@ -0,0 +1,86 @@
|
|
1
|
+
// Copyright 2024 gRPC authors.
|
2
|
+
//
|
3
|
+
// Licensed under the Apache License, Version 2.0 (the "License");
|
4
|
+
// you may not use this file except in compliance with the License.
|
5
|
+
// You may obtain a copy of the License at
|
6
|
+
//
|
7
|
+
// http://www.apache.org/licenses/LICENSE-2.0
|
8
|
+
//
|
9
|
+
// Unless required by applicable law or agreed to in writing, software
|
10
|
+
// distributed under the License is distributed on an "AS IS" BASIS,
|
11
|
+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
12
|
+
// See the License for the specific language governing permissions and
|
13
|
+
// limitations under the License.
|
14
|
+
|
15
|
+
#ifndef GRPC_SRC_CORE_UTIL_UNIQUE_PTR_WITH_BITSET_H
|
16
|
+
#define GRPC_SRC_CORE_UTIL_UNIQUE_PTR_WITH_BITSET_H
|
17
|
+
|
18
|
+
#include <memory>
|
19
|
+
#include <utility>
|
20
|
+
|
21
|
+
#include "absl/log/check.h"
|
22
|
+
#include "absl/numeric/bits.h"
|
23
|
+
|
24
|
+
namespace grpc_core {
|
25
|
+
|
26
|
+
// Like std::unique_ptr, but also includes a small bitset stored in the lower
|
27
|
+
// bits of the underlying T*.
|
28
|
+
template <typename T, size_t kBits>
|
29
|
+
class UniquePtrWithBitset {
|
30
|
+
public:
|
31
|
+
UniquePtrWithBitset() : p_(0) {}
|
32
|
+
// NOLINTNEXTLINE(google-explicit-constructor)
|
33
|
+
UniquePtrWithBitset(std::nullptr_t) : p_(0) {}
|
34
|
+
explicit UniquePtrWithBitset(T* p) : p_(reinterpret_cast<uintptr_t>(p)) {}
|
35
|
+
// NOLINTNEXTLINE(google-explicit-constructor)
|
36
|
+
UniquePtrWithBitset(std::unique_ptr<T>&& p)
|
37
|
+
: UniquePtrWithBitset(p.release()) {}
|
38
|
+
~UniquePtrWithBitset() {
|
39
|
+
DCHECK_LE(kBits, static_cast<size_t>(absl::countr_zero(alignof(T))));
|
40
|
+
delete get();
|
41
|
+
}
|
42
|
+
UniquePtrWithBitset(const UniquePtrWithBitset&) = delete;
|
43
|
+
UniquePtrWithBitset& operator=(const UniquePtrWithBitset&) = delete;
|
44
|
+
UniquePtrWithBitset(UniquePtrWithBitset&& other) noexcept
|
45
|
+
: p_(std::exchange(other.p_, 0)) {}
|
46
|
+
UniquePtrWithBitset& operator=(UniquePtrWithBitset&& other) noexcept {
|
47
|
+
p_ = std::exchange(other.p_, 0);
|
48
|
+
return *this;
|
49
|
+
}
|
50
|
+
|
51
|
+
T* get() const { return reinterpret_cast<T*>(p_ & ~kBitMask); }
|
52
|
+
T* operator->() const { return get(); }
|
53
|
+
T& operator*() const { return *get(); }
|
54
|
+
explicit operator bool() const { return get() != nullptr; }
|
55
|
+
void reset(T* p = nullptr) {
|
56
|
+
uintptr_t bits = p_ & kBitMask;
|
57
|
+
delete get();
|
58
|
+
p_ = reinterpret_cast<uintptr_t>(p) | bits;
|
59
|
+
}
|
60
|
+
|
61
|
+
void SetBit(size_t bit) {
|
62
|
+
DCHECK_LT(bit, kBits);
|
63
|
+
p_ |= 1 << bit;
|
64
|
+
}
|
65
|
+
void ClearBit(size_t bit) {
|
66
|
+
DCHECK_LT(bit, kBits);
|
67
|
+
p_ &= ~(1 << bit);
|
68
|
+
}
|
69
|
+
bool TestBit(size_t bit) const {
|
70
|
+
DCHECK_LT(bit, kBits);
|
71
|
+
return p_ & (1 << bit);
|
72
|
+
}
|
73
|
+
|
74
|
+
friend bool operator==(const UniquePtrWithBitset& a,
|
75
|
+
const UniquePtrWithBitset& b) {
|
76
|
+
return a.p_ == b.p_;
|
77
|
+
}
|
78
|
+
|
79
|
+
private:
|
80
|
+
static constexpr uintptr_t kBitMask = (1 << kBits) - 1;
|
81
|
+
uintptr_t p_;
|
82
|
+
};
|
83
|
+
|
84
|
+
} // namespace grpc_core
|
85
|
+
|
86
|
+
#endif // GRPC_SRC_CORE_UTIL_UNIQUE_PTR_WITH_BITSET_H
|
data/src/core/util/useful.h
CHANGED
@@ -57,30 +57,6 @@ bool GetBit(T i, size_t n) {
|
|
57
57
|
return (i & (T(1) << n)) != 0;
|
58
58
|
}
|
59
59
|
|
60
|
-
#if GRPC_HAS_BUILTIN(__builtin_ctz)
|
61
|
-
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION inline uint32_t CountTrailingZeros(
|
62
|
-
uint32_t i) {
|
63
|
-
DCHECK_NE(i, 0u); // __builtin_ctz returns undefined behavior for 0
|
64
|
-
return __builtin_ctz(i);
|
65
|
-
}
|
66
|
-
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION inline uint32_t CountTrailingZeros(
|
67
|
-
uint64_t i) {
|
68
|
-
DCHECK_NE(i, 0u); // __builtin_ctz returns undefined behavior for 0
|
69
|
-
return __builtin_ctzll(i);
|
70
|
-
}
|
71
|
-
#else
|
72
|
-
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION inline uint32_t CountTrailingZeros(
|
73
|
-
uint32_t i) {
|
74
|
-
DCHECK_NE(i, 0); // __builtin_ctz returns undefined behavior for 0
|
75
|
-
return absl::popcount((i & -i) - 1);
|
76
|
-
}
|
77
|
-
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION inline uint32_t CountTrailingZeros(
|
78
|
-
uint64_t i) {
|
79
|
-
DCHECK_NE(i, 0); // __builtin_ctz returns undefined behavior for 0
|
80
|
-
return absl::popcount((i & -i) - 1);
|
81
|
-
}
|
82
|
-
#endif
|
83
|
-
|
84
60
|
// This function uses operator< to implement a qsort-style comparison, whereby:
|
85
61
|
// if a is smaller than b, a number smaller than 0 is returned.
|
86
62
|
// if a is bigger than b, a number greater than 0 is returned.
|
@@ -18,8 +18,6 @@
|
|
18
18
|
|
19
19
|
#include <stdlib.h>
|
20
20
|
|
21
|
-
#include <algorithm>
|
22
|
-
#include <set>
|
23
21
|
#include <string>
|
24
22
|
#include <utility>
|
25
23
|
#include <vector>
|
@@ -36,29 +34,14 @@
|
|
36
34
|
#include <grpc/support/json.h>
|
37
35
|
#include <grpc/support/port_platform.h>
|
38
36
|
|
39
|
-
#include "src/core/lib/config/core_configuration.h"
|
40
|
-
#include "src/core/lib/gprpp/env.h"
|
41
37
|
#include "src/core/lib/gprpp/ref_counted_ptr.h"
|
42
|
-
#include "src/core/lib/security/credentials/channel_creds_registry.h"
|
43
38
|
#include "src/core/util/json/json.h"
|
44
39
|
#include "src/core/util/json/json_object_loader.h"
|
45
40
|
#include "src/core/util/json/json_reader.h"
|
46
41
|
#include "src/core/util/json/json_writer.h"
|
47
|
-
#include "src/core/util/string.h"
|
48
42
|
|
49
43
|
namespace grpc_core {
|
50
44
|
|
51
|
-
namespace {
|
52
|
-
bool IsFallbackExperimentEnabled() {
|
53
|
-
auto fallback_enabled = GetEnv("GRPC_EXPERIMENTAL_XDS_FALLBACK");
|
54
|
-
bool enabled = false;
|
55
|
-
return gpr_parse_bool_value(fallback_enabled.value_or("0").c_str(),
|
56
|
-
&enabled) &&
|
57
|
-
enabled;
|
58
|
-
}
|
59
|
-
|
60
|
-
} // namespace
|
61
|
-
|
62
45
|
//
|
63
46
|
// GrpcXdsBootstrap::GrpcNode::Locality
|
64
47
|
//
|
@@ -106,16 +89,6 @@ const JsonLoaderInterface* GrpcXdsBootstrap::GrpcAuthority::JsonLoader(
|
|
106
89
|
return loader;
|
107
90
|
}
|
108
91
|
|
109
|
-
void GrpcXdsBootstrap::GrpcAuthority::JsonPostLoad(
|
110
|
-
const Json& /*json*/, const JsonArgs& /*args*/,
|
111
|
-
ValidationErrors* /*errors*/) {
|
112
|
-
if (!IsFallbackExperimentEnabled()) {
|
113
|
-
if (servers_.size() > 1) {
|
114
|
-
servers_.resize(1);
|
115
|
-
}
|
116
|
-
}
|
117
|
-
}
|
118
|
-
|
119
92
|
//
|
120
93
|
// GrpcXdsBootstrap
|
121
94
|
//
|
@@ -190,11 +163,6 @@ void GrpcXdsBootstrap::JsonPostLoad(const Json& /*json*/,
|
|
190
163
|
}
|
191
164
|
}
|
192
165
|
}
|
193
|
-
if (!IsFallbackExperimentEnabled()) {
|
194
|
-
if (servers_.size() > 1) {
|
195
|
-
servers_.resize(1);
|
196
|
-
}
|
197
|
-
}
|
198
166
|
}
|
199
167
|
|
200
168
|
std::string GrpcXdsBootstrap::ToString() const {
|
@@ -19,7 +19,6 @@
|
|
19
19
|
|
20
20
|
#include <map>
|
21
21
|
#include <memory>
|
22
|
-
#include <set>
|
23
22
|
#include <string>
|
24
23
|
#include <vector>
|
25
24
|
|
@@ -29,9 +28,7 @@
|
|
29
28
|
|
30
29
|
#include <grpc/support/port_platform.h>
|
31
30
|
|
32
|
-
#include "src/core/lib/gprpp/ref_counted_ptr.h"
|
33
31
|
#include "src/core/lib/gprpp/validation_errors.h"
|
34
|
-
#include "src/core/lib/security/credentials/channel_creds_registry.h"
|
35
32
|
#include "src/core/util/json/json.h"
|
36
33
|
#include "src/core/util/json/json_args.h"
|
37
34
|
#include "src/core/util/json/json_object_loader.h"
|
@@ -93,8 +90,6 @@ class GrpcXdsBootstrap final : public XdsBootstrap {
|
|
93
90
|
}
|
94
91
|
|
95
92
|
static const JsonLoaderInterface* JsonLoader(const JsonArgs&);
|
96
|
-
void JsonPostLoad(const Json& json, const JsonArgs& args,
|
97
|
-
ValidationErrors* errors);
|
98
93
|
|
99
94
|
private:
|
100
95
|
std::vector<GrpcXdsServer> servers_;
|
@@ -198,11 +198,10 @@ absl::StatusOr<std::string> GetBootstrapContents(const char* fallback_config) {
|
|
198
198
|
// First, try GRPC_XDS_BOOTSTRAP env var.
|
199
199
|
auto path = GetEnv("GRPC_XDS_BOOTSTRAP");
|
200
200
|
if (path.has_value()) {
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
}
|
201
|
+
GRPC_TRACE_LOG(xds_client, INFO)
|
202
|
+
<< "Got bootstrap file location from GRPC_XDS_BOOTSTRAP "
|
203
|
+
"environment variable: "
|
204
|
+
<< *path;
|
206
205
|
auto contents = LoadFile(*path, /*add_null_terminator=*/true);
|
207
206
|
if (!contents.ok()) return contents.status();
|
208
207
|
return std::string(contents->as_string_view());
|
@@ -210,10 +209,9 @@ absl::StatusOr<std::string> GetBootstrapContents(const char* fallback_config) {
|
|
210
209
|
// Next, try GRPC_XDS_BOOTSTRAP_CONFIG env var.
|
211
210
|
auto env_config = GetEnv("GRPC_XDS_BOOTSTRAP_CONFIG");
|
212
211
|
if (env_config.has_value()) {
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
}
|
212
|
+
GRPC_TRACE_LOG(xds_client, INFO)
|
213
|
+
<< "Got bootstrap contents from GRPC_XDS_BOOTSTRAP_CONFIG "
|
214
|
+
<< "environment variable";
|
217
215
|
return std::move(*env_config);
|
218
216
|
}
|
219
217
|
// Finally, try fallback config.
|
@@ -258,9 +256,8 @@ absl::StatusOr<RefCountedPtr<GrpcXdsClient>> GrpcXdsClient::GetOrCreate(
|
|
258
256
|
// Find bootstrap contents.
|
259
257
|
auto bootstrap_contents = GetBootstrapContents(g_fallback_bootstrap_config);
|
260
258
|
if (!bootstrap_contents.ok()) return bootstrap_contents.status();
|
261
|
-
|
262
|
-
|
263
|
-
}
|
259
|
+
GRPC_TRACE_LOG(xds_client, INFO)
|
260
|
+
<< "xDS bootstrap contents: " << *bootstrap_contents;
|
264
261
|
// Parse bootstrap.
|
265
262
|
auto bootstrap = GrpcXdsBootstrap::Create(*bootstrap_contents);
|
266
263
|
if (!bootstrap.ok()) return bootstrap.status();
|
@@ -270,10 +267,8 @@ absl::StatusOr<RefCountedPtr<GrpcXdsClient>> GrpcXdsClient::GetOrCreate(
|
|
270
267
|
key, std::move(*bootstrap), channel_args,
|
271
268
|
MakeOrphanable<GrpcXdsTransportFactory>(channel_args));
|
272
269
|
g_xds_client_map->emplace(xds_client->key(), xds_client.get());
|
273
|
-
|
274
|
-
|
275
|
-
<< "] Created xDS client for key " << key;
|
276
|
-
}
|
270
|
+
GRPC_TRACE_LOG(xds_client, INFO) << "[xds_client " << xds_client.get()
|
271
|
+
<< "] Created xDS client for key " << key;
|
277
272
|
return xds_client;
|
278
273
|
}
|
279
274
|
|
@@ -65,14 +65,8 @@ std::string XdsClusterResource::ToString() const {
|
|
65
65
|
absl::StrCat("max_concurrent_requests=", max_concurrent_requests));
|
66
66
|
contents.push_back(absl::StrCat("override_host_statuses=",
|
67
67
|
override_host_statuses.ToString()));
|
68
|
-
if (!
|
69
|
-
contents.push_back(absl::StrCat("
|
70
|
-
service_telemetry_label.as_string_view()));
|
71
|
-
}
|
72
|
-
if (!namespace_telemetry_label.as_string_view().empty()) {
|
73
|
-
contents.push_back(
|
74
|
-
absl::StrCat("service_namespace_telemetry_label=",
|
75
|
-
namespace_telemetry_label.as_string_view()));
|
68
|
+
if (!metadata.empty()) {
|
69
|
+
contents.push_back(absl::StrCat("metadata={", metadata.ToString(), "}"));
|
76
70
|
}
|
77
71
|
return absl::StrCat("{", absl::StrJoin(contents, ", "), "}");
|
78
72
|
}
|
@@ -20,6 +20,7 @@
|
|
20
20
|
#include <string>
|
21
21
|
#include <vector>
|
22
22
|
|
23
|
+
#include "absl/container/flat_hash_map.h"
|
23
24
|
#include "absl/types/optional.h"
|
24
25
|
#include "absl/types/variant.h"
|
25
26
|
|
@@ -27,6 +28,7 @@
|
|
27
28
|
#include "src/core/util/json/json.h"
|
28
29
|
#include "src/core/xds/grpc/xds_common_types.h"
|
29
30
|
#include "src/core/xds/grpc/xds_health_status.h"
|
31
|
+
#include "src/core/xds/grpc/xds_metadata.h"
|
30
32
|
#include "src/core/xds/grpc/xds_server_grpc.h"
|
31
33
|
#include "src/core/xds/xds_client/xds_resource_type.h"
|
32
34
|
#include "src/core/xds/xds_client/xds_resource_type_impl.h"
|
@@ -86,8 +88,7 @@ struct XdsClusterResource : public XdsResourceType::ResourceData {
|
|
86
88
|
|
87
89
|
XdsHealthStatusSet override_host_statuses;
|
88
90
|
|
89
|
-
|
90
|
-
RefCountedStringValue namespace_telemetry_label;
|
91
|
+
XdsMetadataMap metadata;
|
91
92
|
|
92
93
|
bool operator==(const XdsClusterResource& other) const {
|
93
94
|
return type == other.type && lb_policy_config == other.lb_policy_config &&
|
@@ -97,8 +98,7 @@ struct XdsClusterResource : public XdsResourceType::ResourceData {
|
|
97
98
|
max_concurrent_requests == other.max_concurrent_requests &&
|
98
99
|
outlier_detection == other.outlier_detection &&
|
99
100
|
override_host_statuses == other.override_host_statuses &&
|
100
|
-
|
101
|
-
namespace_telemetry_label == other.namespace_telemetry_label;
|
101
|
+
metadata == other.metadata;
|
102
102
|
}
|
103
103
|
|
104
104
|
std::string ToString() const;
|