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
@@ -173,20 +173,21 @@ void OPENSSL_cpuid_setup(void) {
|
|
173
173
|
|
174
174
|
OPENSSL_cpuid(&eax, &ebx, &ecx, &edx, 1);
|
175
175
|
|
176
|
-
|
177
|
-
|
178
|
-
const uint32_t base_family = (eax >> 8) & 15;
|
179
|
-
const uint32_t base_model = (eax >> 4) & 15;
|
176
|
+
const uint32_t base_family = (eax >> 8) & 15;
|
177
|
+
const uint32_t base_model = (eax >> 4) & 15;
|
180
178
|
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
179
|
+
uint32_t family = base_family;
|
180
|
+
uint32_t model = base_model;
|
181
|
+
if (base_family == 15) {
|
182
|
+
const uint32_t ext_family = (eax >> 20) & 255;
|
183
|
+
family += ext_family;
|
184
|
+
}
|
185
|
+
if (base_family == 6 || base_family == 15) {
|
186
|
+
const uint32_t ext_model = (eax >> 16) & 15;
|
187
|
+
model |= ext_model << 4;
|
188
|
+
}
|
189
189
|
|
190
|
+
if (is_amd) {
|
190
191
|
if (family < 0x17 || (family == 0x17 && 0x70 <= model && model <= 0x7f)) {
|
191
192
|
// Disable RDRAND on AMD families before 0x17 (Zen) due to reported
|
192
193
|
// failures after suspend.
|
@@ -227,19 +228,67 @@ void OPENSSL_cpuid_setup(void) {
|
|
227
228
|
ecx &= ~(1u << 28); // AVX
|
228
229
|
ecx &= ~(1u << 12); // FMA
|
229
230
|
ecx &= ~(1u << 11); // AMD XOP
|
230
|
-
|
231
|
-
//
|
232
|
-
|
233
|
-
// doesn't clear those. See the comments in
|
234
|
-
// |CRYPTO_hardware_supports_XSAVE|.
|
235
|
-
extended_features[0] &=
|
236
|
-
~((1u << 5) | (1u << 16) | (1u << 21) | (1u << 30) | (1u << 31));
|
231
|
+
extended_features[0] &= ~(1u << 5); // AVX2
|
232
|
+
extended_features[1] &= ~(1u << 9); // VAES
|
233
|
+
extended_features[1] &= ~(1u << 10); // VPCLMULQDQ
|
237
234
|
}
|
238
|
-
// See Intel manual, volume 1,
|
235
|
+
// See Intel manual, volume 1, sections 15.2 ("Detection of AVX-512 Foundation
|
236
|
+
// Instructions") through 15.4 ("Detection of Intel AVX-512 Instruction Groups
|
237
|
+
// Operating at 256 and 128-bit Vector Lengths").
|
239
238
|
if ((xcr0 & 0xe6) != 0xe6) {
|
240
|
-
//
|
241
|
-
//
|
242
|
-
|
239
|
+
// Without XCR0.111xx11x, no AVX512 feature can be used. This includes ZMM
|
240
|
+
// registers, masking, SIMD registers 16-31 (even if accessed as YMM or
|
241
|
+
// XMM), and EVEX-coded instructions (even on YMM or XMM). Even if only
|
242
|
+
// XCR0.ZMM_Hi256 is missing, it isn't valid to use AVX512 features on
|
243
|
+
// shorter vectors, since AVX512 ties everything to the availability of
|
244
|
+
// 512-bit vectors. See the above-mentioned sections of the Intel manual,
|
245
|
+
// which say that *all* these XCR0 bits must be checked even when just using
|
246
|
+
// 128-bit or 256-bit vectors, and also volume 2a section 2.7.11 ("#UD
|
247
|
+
// Equations for EVEX") which says that all EVEX-coded instructions raise an
|
248
|
+
// undefined-instruction exception if any of these XCR0 bits is zero.
|
249
|
+
//
|
250
|
+
// AVX10 fixes this by reorganizing the features that used to be part of
|
251
|
+
// "AVX512" and allowing them to be used independently of 512-bit support.
|
252
|
+
// TODO: add AVX10 detection.
|
253
|
+
extended_features[0] &= ~(1u << 16); // AVX512F
|
254
|
+
extended_features[0] &= ~(1u << 17); // AVX512DQ
|
255
|
+
extended_features[0] &= ~(1u << 21); // AVX512IFMA
|
256
|
+
extended_features[0] &= ~(1u << 26); // AVX512PF
|
257
|
+
extended_features[0] &= ~(1u << 27); // AVX512ER
|
258
|
+
extended_features[0] &= ~(1u << 28); // AVX512CD
|
259
|
+
extended_features[0] &= ~(1u << 30); // AVX512BW
|
260
|
+
extended_features[0] &= ~(1u << 31); // AVX512VL
|
261
|
+
extended_features[1] &= ~(1u << 1); // AVX512VBMI
|
262
|
+
extended_features[1] &= ~(1u << 6); // AVX512VBMI2
|
263
|
+
extended_features[1] &= ~(1u << 11); // AVX512VNNI
|
264
|
+
extended_features[1] &= ~(1u << 12); // AVX512BITALG
|
265
|
+
extended_features[1] &= ~(1u << 14); // AVX512VPOPCNTDQ
|
266
|
+
}
|
267
|
+
|
268
|
+
// Repurpose the bit for the removed MPX feature to indicate when using zmm
|
269
|
+
// registers should be avoided even when they are supported. (When set, AVX512
|
270
|
+
// features can still be used, but only using ymm or xmm registers.) Skylake
|
271
|
+
// suffered from severe downclocking when zmm registers were used, which
|
272
|
+
// affected unrelated code running on the system, making zmm registers not too
|
273
|
+
// useful outside of benchmarks. The situation improved significantly by Ice
|
274
|
+
// Lake, but a small amount of downclocking remained. (See
|
275
|
+
// https://lore.kernel.org/linux-crypto/e8ce1146-3952-6977-1d0e-a22758e58914@intel.com/)
|
276
|
+
// We take a conservative approach of not allowing zmm registers until after
|
277
|
+
// Ice Lake and Tiger Lake, i.e. until Sapphire Rapids on the server side.
|
278
|
+
//
|
279
|
+
// AMD CPUs, which support AVX512 starting with Zen 4, have not been reported
|
280
|
+
// to have any downclocking problem when zmm registers are used.
|
281
|
+
if (is_intel && family == 6 &&
|
282
|
+
(model == 85 || // Skylake, Cascade Lake, Cooper Lake (server)
|
283
|
+
model == 106 || // Ice Lake (server)
|
284
|
+
model == 108 || // Ice Lake (micro server)
|
285
|
+
model == 125 || // Ice Lake (client)
|
286
|
+
model == 126 || // Ice Lake (mobile)
|
287
|
+
model == 140 || // Tiger Lake (mobile)
|
288
|
+
model == 141)) { // Tiger Lake (client)
|
289
|
+
extended_features[0] |= 1u << 14;
|
290
|
+
} else {
|
291
|
+
extended_features[0] &= ~(1u << 14);
|
243
292
|
}
|
244
293
|
|
245
294
|
OPENSSL_ia32cap_P[0] = edx;
|
@@ -62,34 +62,87 @@
|
|
62
62
|
#include <openssl/mem.h>
|
63
63
|
|
64
64
|
#include "../bytestring/internal.h"
|
65
|
-
#include "../fipsmodule/
|
65
|
+
#include "../fipsmodule/ecdsa/internal.h"
|
66
66
|
#include "../internal.h"
|
67
67
|
|
68
68
|
|
69
|
+
static ECDSA_SIG *ecdsa_sig_from_fixed(const EC_KEY *key, const uint8_t *in,
|
70
|
+
size_t len) {
|
71
|
+
const EC_GROUP *group = EC_KEY_get0_group(key);
|
72
|
+
if (group == NULL) {
|
73
|
+
OPENSSL_PUT_ERROR(ECDSA, ERR_R_PASSED_NULL_PARAMETER);
|
74
|
+
return NULL;
|
75
|
+
}
|
76
|
+
size_t scalar_len = BN_num_bytes(EC_GROUP_get0_order(group));
|
77
|
+
if (len != 2 * scalar_len) {
|
78
|
+
OPENSSL_PUT_ERROR(ECDSA, ECDSA_R_BAD_SIGNATURE);
|
79
|
+
return NULL;
|
80
|
+
}
|
81
|
+
ECDSA_SIG *ret = ECDSA_SIG_new();
|
82
|
+
if (ret == NULL ||
|
83
|
+
!BN_bin2bn(in, scalar_len, ret->r) ||
|
84
|
+
!BN_bin2bn(in + scalar_len, scalar_len, ret->s)) {
|
85
|
+
ECDSA_SIG_free(ret);
|
86
|
+
return NULL;
|
87
|
+
}
|
88
|
+
return ret;
|
89
|
+
}
|
90
|
+
|
91
|
+
static int ecdsa_sig_to_fixed(const EC_KEY *key, uint8_t *out, size_t *out_len,
|
92
|
+
size_t max_out, const ECDSA_SIG *sig) {
|
93
|
+
const EC_GROUP *group = EC_KEY_get0_group(key);
|
94
|
+
if (group == NULL) {
|
95
|
+
OPENSSL_PUT_ERROR(ECDSA, ERR_R_PASSED_NULL_PARAMETER);
|
96
|
+
return 0;
|
97
|
+
}
|
98
|
+
size_t scalar_len = BN_num_bytes(EC_GROUP_get0_order(group));
|
99
|
+
if (max_out < 2 * scalar_len) {
|
100
|
+
OPENSSL_PUT_ERROR(EC, EC_R_BUFFER_TOO_SMALL);
|
101
|
+
return 0;
|
102
|
+
}
|
103
|
+
if (BN_is_negative(sig->r) ||
|
104
|
+
!BN_bn2bin_padded(out, scalar_len, sig->r) ||
|
105
|
+
BN_is_negative(sig->s) ||
|
106
|
+
!BN_bn2bin_padded(out + scalar_len, scalar_len, sig->s)) {
|
107
|
+
OPENSSL_PUT_ERROR(ECDSA, ECDSA_R_BAD_SIGNATURE);
|
108
|
+
return 0;
|
109
|
+
}
|
110
|
+
*out_len = 2 * scalar_len;
|
111
|
+
return 1;
|
112
|
+
}
|
113
|
+
|
69
114
|
int ECDSA_sign(int type, const uint8_t *digest, size_t digest_len, uint8_t *sig,
|
70
|
-
unsigned int *
|
115
|
+
unsigned int *out_sig_len, const EC_KEY *eckey) {
|
71
116
|
if (eckey->ecdsa_meth && eckey->ecdsa_meth->sign) {
|
72
|
-
return eckey->ecdsa_meth->sign(digest, digest_len, sig,
|
117
|
+
return eckey->ecdsa_meth->sign(digest, digest_len, sig, out_sig_len,
|
73
118
|
(EC_KEY*) eckey /* cast away const */);
|
74
119
|
}
|
75
120
|
|
76
|
-
|
77
|
-
|
121
|
+
*out_sig_len = 0;
|
122
|
+
uint8_t fixed[ECDSA_MAX_FIXED_LEN];
|
123
|
+
size_t fixed_len;
|
124
|
+
if (!ecdsa_sign_fixed(digest, digest_len, fixed, &fixed_len, sizeof(fixed),
|
125
|
+
eckey)) {
|
126
|
+
return 0;
|
127
|
+
}
|
128
|
+
|
129
|
+
// TODO(davidben): We can actually do better and go straight from the DER
|
130
|
+
// format to the fixed-width format without a malloc.
|
131
|
+
ECDSA_SIG *s = ecdsa_sig_from_fixed(eckey, fixed, fixed_len);
|
78
132
|
if (s == NULL) {
|
79
|
-
|
80
|
-
goto err;
|
133
|
+
return 0;
|
81
134
|
}
|
82
135
|
|
136
|
+
int ret = 0;
|
83
137
|
CBB cbb;
|
84
138
|
CBB_init_fixed(&cbb, sig, ECDSA_size(eckey));
|
85
139
|
size_t len;
|
86
140
|
if (!ECDSA_SIG_marshal(&cbb, s) ||
|
87
141
|
!CBB_finish(&cbb, NULL, &len)) {
|
88
142
|
OPENSSL_PUT_ERROR(ECDSA, ECDSA_R_ENCODE_ERROR);
|
89
|
-
*sig_len = 0;
|
90
143
|
goto err;
|
91
144
|
}
|
92
|
-
*
|
145
|
+
*out_sig_len = (unsigned)len;
|
93
146
|
ret = 1;
|
94
147
|
|
95
148
|
err:
|
@@ -99,12 +152,13 @@ err:
|
|
99
152
|
|
100
153
|
int ECDSA_verify(int type, const uint8_t *digest, size_t digest_len,
|
101
154
|
const uint8_t *sig, size_t sig_len, const EC_KEY *eckey) {
|
102
|
-
|
155
|
+
// Decode the ECDSA signature.
|
156
|
+
//
|
157
|
+
// TODO(davidben): We can actually do better and go straight from the DER
|
158
|
+
// format to the fixed-width format without a malloc.
|
103
159
|
int ret = 0;
|
104
160
|
uint8_t *der = NULL;
|
105
|
-
|
106
|
-
// Decode the ECDSA signature.
|
107
|
-
s = ECDSA_SIG_from_bytes(sig, sig_len);
|
161
|
+
ECDSA_SIG *s = ECDSA_SIG_from_bytes(sig, sig_len);
|
108
162
|
if (s == NULL) {
|
109
163
|
goto err;
|
110
164
|
}
|
@@ -118,7 +172,10 @@ int ECDSA_verify(int type, const uint8_t *digest, size_t digest_len,
|
|
118
172
|
goto err;
|
119
173
|
}
|
120
174
|
|
121
|
-
|
175
|
+
uint8_t fixed[ECDSA_MAX_FIXED_LEN];
|
176
|
+
size_t fixed_len;
|
177
|
+
ret = ecdsa_sig_to_fixed(eckey, fixed, &fixed_len, sizeof(fixed), s) &&
|
178
|
+
ecdsa_verify_fixed(digest, digest_len, fixed, fixed_len, eckey);
|
122
179
|
|
123
180
|
err:
|
124
181
|
OPENSSL_free(der);
|
@@ -147,6 +204,95 @@ size_t ECDSA_size(const EC_KEY *key) {
|
|
147
204
|
return ECDSA_SIG_max_len(group_order_size);
|
148
205
|
}
|
149
206
|
|
207
|
+
ECDSA_SIG *ECDSA_SIG_new(void) {
|
208
|
+
ECDSA_SIG *sig = OPENSSL_malloc(sizeof(ECDSA_SIG));
|
209
|
+
if (sig == NULL) {
|
210
|
+
return NULL;
|
211
|
+
}
|
212
|
+
sig->r = BN_new();
|
213
|
+
sig->s = BN_new();
|
214
|
+
if (sig->r == NULL || sig->s == NULL) {
|
215
|
+
ECDSA_SIG_free(sig);
|
216
|
+
return NULL;
|
217
|
+
}
|
218
|
+
return sig;
|
219
|
+
}
|
220
|
+
|
221
|
+
void ECDSA_SIG_free(ECDSA_SIG *sig) {
|
222
|
+
if (sig == NULL) {
|
223
|
+
return;
|
224
|
+
}
|
225
|
+
|
226
|
+
BN_free(sig->r);
|
227
|
+
BN_free(sig->s);
|
228
|
+
OPENSSL_free(sig);
|
229
|
+
}
|
230
|
+
|
231
|
+
const BIGNUM *ECDSA_SIG_get0_r(const ECDSA_SIG *sig) {
|
232
|
+
return sig->r;
|
233
|
+
}
|
234
|
+
|
235
|
+
const BIGNUM *ECDSA_SIG_get0_s(const ECDSA_SIG *sig) {
|
236
|
+
return sig->s;
|
237
|
+
}
|
238
|
+
|
239
|
+
void ECDSA_SIG_get0(const ECDSA_SIG *sig, const BIGNUM **out_r,
|
240
|
+
const BIGNUM **out_s) {
|
241
|
+
if (out_r != NULL) {
|
242
|
+
*out_r = sig->r;
|
243
|
+
}
|
244
|
+
if (out_s != NULL) {
|
245
|
+
*out_s = sig->s;
|
246
|
+
}
|
247
|
+
}
|
248
|
+
|
249
|
+
int ECDSA_SIG_set0(ECDSA_SIG *sig, BIGNUM *r, BIGNUM *s) {
|
250
|
+
if (r == NULL || s == NULL) {
|
251
|
+
return 0;
|
252
|
+
}
|
253
|
+
BN_free(sig->r);
|
254
|
+
BN_free(sig->s);
|
255
|
+
sig->r = r;
|
256
|
+
sig->s = s;
|
257
|
+
return 1;
|
258
|
+
}
|
259
|
+
|
260
|
+
int ECDSA_do_verify(const uint8_t *digest, size_t digest_len,
|
261
|
+
const ECDSA_SIG *sig, const EC_KEY *eckey) {
|
262
|
+
uint8_t fixed[ECDSA_MAX_FIXED_LEN];
|
263
|
+
size_t fixed_len;
|
264
|
+
return ecdsa_sig_to_fixed(eckey, fixed, &fixed_len, sizeof(fixed), sig) &&
|
265
|
+
ecdsa_verify_fixed(digest, digest_len, fixed, fixed_len, eckey);
|
266
|
+
}
|
267
|
+
|
268
|
+
// This function is only exported for testing and is not called in production
|
269
|
+
// code.
|
270
|
+
ECDSA_SIG *ECDSA_sign_with_nonce_and_leak_private_key_for_testing(
|
271
|
+
const uint8_t *digest, size_t digest_len, const EC_KEY *eckey,
|
272
|
+
const uint8_t *nonce, size_t nonce_len) {
|
273
|
+
uint8_t sig[ECDSA_MAX_FIXED_LEN];
|
274
|
+
size_t sig_len;
|
275
|
+
if (!ecdsa_sign_fixed_with_nonce_for_known_answer_test(
|
276
|
+
digest, digest_len, sig, &sig_len, sizeof(sig), eckey, nonce,
|
277
|
+
nonce_len)) {
|
278
|
+
return NULL;
|
279
|
+
}
|
280
|
+
|
281
|
+
return ecdsa_sig_from_fixed(eckey, sig, sig_len);
|
282
|
+
}
|
283
|
+
|
284
|
+
ECDSA_SIG *ECDSA_do_sign(const uint8_t *digest, size_t digest_len,
|
285
|
+
const EC_KEY *eckey) {
|
286
|
+
uint8_t sig[ECDSA_MAX_FIXED_LEN];
|
287
|
+
size_t sig_len;
|
288
|
+
if (!ecdsa_sign_fixed(digest, digest_len, sig, &sig_len, sizeof(sig),
|
289
|
+
eckey)) {
|
290
|
+
return NULL;
|
291
|
+
}
|
292
|
+
|
293
|
+
return ecdsa_sig_from_fixed(eckey, sig, sig_len);
|
294
|
+
}
|
295
|
+
|
150
296
|
ECDSA_SIG *ECDSA_SIG_parse(CBS *cbs) {
|
151
297
|
ECDSA_SIG *ret = ECDSA_SIG_new();
|
152
298
|
if (ret == NULL) {
|
@@ -28,84 +28,85 @@
|
|
28
28
|
#include <openssl/hmac.h>
|
29
29
|
#include <openssl/sha.h>
|
30
30
|
|
31
|
+
#include "bcm_interface.h"
|
31
32
|
#include "../internal.h"
|
32
33
|
|
33
|
-
|
34
|
-
|
35
|
-
#include "aes/
|
36
|
-
#include "aes/
|
37
|
-
#include "
|
38
|
-
#include "
|
39
|
-
#include "bn/
|
40
|
-
#include "bn/
|
41
|
-
#include "bn/
|
42
|
-
#include "bn/
|
43
|
-
#include "bn/
|
44
|
-
#include "bn/
|
45
|
-
#include "bn/
|
46
|
-
#include "bn/
|
47
|
-
#include "bn/
|
48
|
-
#include "bn/
|
49
|
-
#include "bn/
|
50
|
-
#include "bn/
|
51
|
-
#include "bn/
|
52
|
-
#include "bn/
|
53
|
-
#include "bn/
|
54
|
-
#include "bn/
|
55
|
-
#include "bn/
|
56
|
-
#include "bn/
|
57
|
-
#include "bn/
|
58
|
-
#include "
|
59
|
-
#include "
|
60
|
-
#include "cipher/
|
61
|
-
#include "cipher/
|
62
|
-
#include "
|
63
|
-
#include "
|
64
|
-
#include "
|
65
|
-
#include "
|
66
|
-
#include "
|
67
|
-
#include "
|
68
|
-
#include "
|
69
|
-
#include "
|
70
|
-
#include "
|
71
|
-
#include "
|
72
|
-
#include "ec/
|
73
|
-
#include "ec/
|
74
|
-
#include "ec/
|
75
|
-
#include "ec/
|
76
|
-
#include "ec/
|
77
|
-
#include "ec/
|
78
|
-
#include "ec/
|
79
|
-
#include "ec/
|
80
|
-
#include "ec/
|
81
|
-
#include "ec/
|
82
|
-
#include "ec/
|
83
|
-
#include "
|
84
|
-
#include "
|
85
|
-
#include "
|
86
|
-
#include "
|
87
|
-
#include "
|
88
|
-
#include "
|
89
|
-
#include "modes/
|
90
|
-
#include "modes/
|
91
|
-
#include "modes/
|
92
|
-
#include "modes/
|
93
|
-
#include "modes/
|
94
|
-
#include "
|
95
|
-
#include "
|
96
|
-
#include "rand/
|
97
|
-
#include "rand/
|
98
|
-
#include "rsa/blinding.c"
|
99
|
-
#include "rsa/padding.c"
|
100
|
-
#include "rsa/rsa.c"
|
101
|
-
#include "rsa/rsa_impl.c"
|
102
|
-
#include "self_check/fips.c"
|
103
|
-
#include "self_check/self_check.c"
|
104
|
-
#include "service_indicator/service_indicator.c"
|
105
|
-
#include "sha/sha1.c"
|
106
|
-
#include "sha/sha256.c"
|
107
|
-
#include "sha/sha512.c"
|
108
|
-
#include "tls/kdf.c"
|
34
|
+
// TODO(crbug.com/362530616): When delocate is removed, build these files as
|
35
|
+
// separate compilation units again.
|
36
|
+
#include "aes/aes.c.inc"
|
37
|
+
#include "aes/aes_nohw.c.inc"
|
38
|
+
#include "aes/key_wrap.c.inc"
|
39
|
+
#include "aes/mode_wrappers.c.inc"
|
40
|
+
#include "bn/add.c.inc"
|
41
|
+
#include "bn/asm/x86_64-gcc.c.inc"
|
42
|
+
#include "bn/bn.c.inc"
|
43
|
+
#include "bn/bytes.c.inc"
|
44
|
+
#include "bn/cmp.c.inc"
|
45
|
+
#include "bn/ctx.c.inc"
|
46
|
+
#include "bn/div.c.inc"
|
47
|
+
#include "bn/div_extra.c.inc"
|
48
|
+
#include "bn/exponentiation.c.inc"
|
49
|
+
#include "bn/gcd.c.inc"
|
50
|
+
#include "bn/gcd_extra.c.inc"
|
51
|
+
#include "bn/generic.c.inc"
|
52
|
+
#include "bn/jacobi.c.inc"
|
53
|
+
#include "bn/montgomery.c.inc"
|
54
|
+
#include "bn/montgomery_inv.c.inc"
|
55
|
+
#include "bn/mul.c.inc"
|
56
|
+
#include "bn/prime.c.inc"
|
57
|
+
#include "bn/random.c.inc"
|
58
|
+
#include "bn/rsaz_exp.c.inc"
|
59
|
+
#include "bn/shift.c.inc"
|
60
|
+
#include "bn/sqrt.c.inc"
|
61
|
+
#include "cipher/aead.c.inc"
|
62
|
+
#include "cipher/cipher.c.inc"
|
63
|
+
#include "cipher/e_aes.c.inc"
|
64
|
+
#include "cipher/e_aesccm.c.inc"
|
65
|
+
#include "cmac/cmac.c.inc"
|
66
|
+
#include "dh/check.c.inc"
|
67
|
+
#include "dh/dh.c.inc"
|
68
|
+
#include "digest/digest.c.inc"
|
69
|
+
#include "digest/digests.c.inc"
|
70
|
+
#include "digestsign/digestsign.c.inc"
|
71
|
+
#include "ecdh/ecdh.c.inc"
|
72
|
+
#include "ecdsa/ecdsa.c.inc"
|
73
|
+
#include "ec/ec.c.inc"
|
74
|
+
#include "ec/ec_key.c.inc"
|
75
|
+
#include "ec/ec_montgomery.c.inc"
|
76
|
+
#include "ec/felem.c.inc"
|
77
|
+
#include "ec/oct.c.inc"
|
78
|
+
#include "ec/p224-64.c.inc"
|
79
|
+
#include "ec/p256.c.inc"
|
80
|
+
#include "ec/p256-nistz.c.inc"
|
81
|
+
#include "ec/scalar.c.inc"
|
82
|
+
#include "ec/simple.c.inc"
|
83
|
+
#include "ec/simple_mul.c.inc"
|
84
|
+
#include "ec/util.c.inc"
|
85
|
+
#include "ec/wnaf.c.inc"
|
86
|
+
#include "hkdf/hkdf.c.inc"
|
87
|
+
#include "hmac/hmac.c.inc"
|
88
|
+
#include "md4/md4.c.inc"
|
89
|
+
#include "md5/md5.c.inc"
|
90
|
+
#include "modes/cbc.c.inc"
|
91
|
+
#include "modes/cfb.c.inc"
|
92
|
+
#include "modes/ctr.c.inc"
|
93
|
+
#include "modes/gcm.c.inc"
|
94
|
+
#include "modes/gcm_nohw.c.inc"
|
95
|
+
#include "modes/ofb.c.inc"
|
96
|
+
#include "modes/polyval.c.inc"
|
97
|
+
#include "rand/ctrdrbg.c.inc"
|
98
|
+
#include "rand/rand.c.inc"
|
99
|
+
#include "rsa/blinding.c.inc"
|
100
|
+
#include "rsa/padding.c.inc"
|
101
|
+
#include "rsa/rsa.c.inc"
|
102
|
+
#include "rsa/rsa_impl.c.inc"
|
103
|
+
#include "self_check/fips.c.inc"
|
104
|
+
#include "self_check/self_check.c.inc"
|
105
|
+
#include "service_indicator/service_indicator.c.inc"
|
106
|
+
#include "sha/sha1.c.inc"
|
107
|
+
#include "sha/sha256.c.inc"
|
108
|
+
#include "sha/sha512.c.inc"
|
109
|
+
#include "tls/kdf.c.inc"
|
109
110
|
|
110
111
|
|
111
112
|
#if defined(BORINGSSL_FIPS)
|
@@ -193,10 +194,10 @@ int BORINGSSL_integrity_test(void) {
|
|
193
194
|
|
194
195
|
assert_within(start, AES_encrypt, end);
|
195
196
|
assert_within(start, RSA_sign, end);
|
196
|
-
assert_within(start,
|
197
|
+
assert_within(start, BCM_rand_bytes, end);
|
197
198
|
assert_within(start, EC_GROUP_cmp, end);
|
198
199
|
assert_within(start, SHA256_Update, end);
|
199
|
-
assert_within(start,
|
200
|
+
assert_within(start, ecdsa_verify_fixed, end);
|
200
201
|
assert_within(start, EVP_AEAD_CTX_seal, end);
|
201
202
|
|
202
203
|
#if defined(BORINGSSL_SHARED_LIBRARY)
|
@@ -0,0 +1,89 @@
|
|
1
|
+
/* Copyright (c) 2024, Google Inc.
|
2
|
+
*
|
3
|
+
* Permission to use, copy, modify, and/or distribute this software for any
|
4
|
+
* purpose with or without fee is hereby granted, provided that the above
|
5
|
+
* copyright notice and this permission notice appear in all copies.
|
6
|
+
*
|
7
|
+
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
8
|
+
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
9
|
+
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
|
10
|
+
* SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
11
|
+
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
|
12
|
+
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
|
13
|
+
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */
|
14
|
+
|
15
|
+
#ifndef OPENSSL_HEADER_CRYPTO_BCM_INTERFACE_H
|
16
|
+
#define OPENSSL_HEADER_CRYPTO_BCM_INTERFACE_H
|
17
|
+
|
18
|
+
// This header will eventually become the interface between BCM and the
|
19
|
+
// rest of libcrypto. More cleanly separating the two is still a work in
|
20
|
+
// progress (see https://crbug.com/boringssl/722) so, at the moment, we
|
21
|
+
// consider this no different from any other header in BCM.
|
22
|
+
//
|
23
|
+
// Over time, calls from libcrypto to BCM will all move to this header
|
24
|
+
// and the separation will become more meaningful.
|
25
|
+
|
26
|
+
#if defined(__cplusplus)
|
27
|
+
extern "C" {
|
28
|
+
#endif
|
29
|
+
|
30
|
+
// Enumerated types for return values from bcm functions, both infallible
|
31
|
+
// and fallible functions. Two success values are used to correspond to the
|
32
|
+
// FIPS service indicator. For the moment, the official service indicator
|
33
|
+
// remains the counter, not these values. Once we fully transition to
|
34
|
+
// these return values from bcm we will change that.
|
35
|
+
enum bcm_infallible_t {
|
36
|
+
bcm_infallible_approved,
|
37
|
+
bcm_infallible_not_approved,
|
38
|
+
};
|
39
|
+
|
40
|
+
enum bcm_status_t {
|
41
|
+
bcm_status_approved,
|
42
|
+
bcm_status_not_approved,
|
43
|
+
|
44
|
+
// Failure codes, which must all be negative.
|
45
|
+
bcm_status_failure,
|
46
|
+
};
|
47
|
+
typedef enum bcm_status_t bcm_status;
|
48
|
+
typedef enum bcm_infallible_t bcm_infallible;
|
49
|
+
|
50
|
+
OPENSSL_INLINE int bcm_success(bcm_status status) {
|
51
|
+
return status == bcm_status_approved || status == bcm_status_not_approved;
|
52
|
+
}
|
53
|
+
|
54
|
+
#if defined(BORINGSSL_FIPS)
|
55
|
+
|
56
|
+
// We overread from /dev/urandom or RDRAND by a factor of 10 and XOR to whiten.
|
57
|
+
// TODO(bbe): disentangle this value which is used to calculate the size of the
|
58
|
+
// stack buffer in RAND_need entropy based on a calculation.
|
59
|
+
#define BORINGSSL_FIPS_OVERREAD 10
|
60
|
+
|
61
|
+
#endif // BORINGSSL_FIPS
|
62
|
+
|
63
|
+
// BCM_rand_load_entropy supplies |entropy_len| bytes of entropy to the BCM
|
64
|
+
// module. The |want_additional_input| parameter is true iff the entropy was
|
65
|
+
// obtained from a source other than the system, e.g. directly from the CPU.
|
66
|
+
bcm_infallible BCM_rand_load_entropy(const uint8_t *entropy, size_t entropy_len,
|
67
|
+
int want_additional_input);
|
68
|
+
|
69
|
+
// BCM_rand_bytes is the same as the public |RAND_bytes| function, other
|
70
|
+
// than returning a bcm_infallible status indicator.
|
71
|
+
OPENSSL_EXPORT bcm_infallible BCM_rand_bytes(uint8_t *out, size_t out_len);
|
72
|
+
|
73
|
+
// BCM_rand_bytes_hwrng attempts to fill |out| with |len| bytes of entropy from
|
74
|
+
// the CPU hardware random number generator if one is present.
|
75
|
+
// bcm_status_approved is returned on success, and a failure status is
|
76
|
+
// returned otherwise.
|
77
|
+
bcm_status BCM_rand_bytes_hwrng(uint8_t *out, size_t len);
|
78
|
+
|
79
|
+
// BCM_rand_bytes_with_additional_data samples from the RNG after mixing 32
|
80
|
+
// bytes from |user_additional_data| in.
|
81
|
+
bcm_infallible BCM_rand_bytes_with_additional_data(
|
82
|
+
uint8_t *out, size_t out_len, const uint8_t user_additional_data[32]);
|
83
|
+
|
84
|
+
|
85
|
+
#if defined(__cplusplus)
|
86
|
+
} // extern C
|
87
|
+
#endif
|
88
|
+
|
89
|
+
#endif // OPENSSL_HEADER_CRYPTO_BCM_INTERFACE_H
|