grpc 1.26.0 → 1.30.0
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of grpc might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/Makefile +7860 -11139
- data/etc/roots.pem +44 -0
- data/include/grpc/grpc.h +2 -2
- data/include/grpc/grpc_security.h +59 -24
- data/include/grpc/grpc_security_constants.h +28 -0
- data/include/grpc/impl/codegen/grpc_types.h +38 -21
- data/include/grpc/impl/codegen/port_platform.h +14 -3
- data/include/grpc/impl/codegen/sync.h +5 -3
- data/include/grpc/impl/codegen/sync_abseil.h +36 -0
- data/include/grpc/module.modulemap +25 -37
- data/include/grpc/support/sync_abseil.h +26 -0
- data/src/core/ext/filters/client_channel/backend_metric.cc +7 -4
- data/src/core/ext/filters/client_channel/client_channel.cc +273 -264
- data/src/core/ext/filters/client_channel/client_channel_channelz.cc +31 -47
- data/src/core/ext/filters/client_channel/client_channel_channelz.h +1 -3
- data/src/core/ext/filters/client_channel/client_channel_plugin.cc +3 -2
- data/src/core/ext/filters/client_channel/health/health_check_client.cc +7 -22
- data/src/core/ext/filters/client_channel/health/health_check_client.h +3 -3
- data/src/core/ext/filters/client_channel/http_connect_handshaker.cc +1 -1
- data/src/core/ext/filters/client_channel/http_proxy.cc +25 -15
- data/src/core/ext/filters/client_channel/lb_policy.cc +20 -18
- data/src/core/ext/filters/client_channel/lb_policy.h +42 -33
- data/src/core/ext/filters/client_channel/lb_policy/address_filtering.cc +83 -0
- data/src/core/ext/filters/client_channel/lb_policy/address_filtering.h +99 -0
- data/src/core/ext/filters/client_channel/lb_policy/child_policy_handler.cc +297 -0
- data/src/core/ext/filters/client_channel/lb_policy/child_policy_handler.h +83 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc +423 -627
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.cc +89 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.h +40 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel_secure.cc +11 -9
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.h +3 -2
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.cc +88 -121
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h +28 -57
- data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc +18 -21
- data/src/core/ext/filters/client_channel/lb_policy/priority/priority.cc +871 -0
- data/src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc +10 -14
- data/src/core/ext/filters/client_channel/lb_policy/subchannel_list.h +5 -11
- data/src/core/ext/filters/client_channel/lb_policy/weighted_target/weighted_target.cc +734 -0
- data/src/core/ext/filters/client_channel/lb_policy/xds/cds.cc +150 -101
- data/src/core/ext/filters/client_channel/lb_policy/xds/eds.cc +938 -0
- data/src/core/ext/filters/client_channel/lb_policy/xds/lrs.cc +528 -0
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds.h +1 -2
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_routing.cc +834 -0
- data/src/core/ext/filters/client_channel/lb_policy_factory.h +3 -3
- data/src/core/ext/filters/client_channel/lb_policy_registry.cc +49 -77
- data/src/core/ext/filters/client_channel/lb_policy_registry.h +1 -1
- data/src/core/ext/filters/client_channel/local_subchannel_pool.h +2 -1
- data/src/core/ext/filters/client_channel/parse_address.cc +22 -21
- data/src/core/ext/filters/client_channel/resolver.cc +5 -8
- data/src/core/ext/filters/client_channel/resolver.h +12 -14
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc +129 -128
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.cc +35 -35
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.h +8 -7
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_libuv.cc +17 -21
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc +5 -5
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc +72 -117
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc +186 -135
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h +5 -3
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_fallback.cc +7 -4
- data/src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc +42 -45
- data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.cc +94 -103
- data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.h +0 -4
- data/src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc +5 -5
- data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.cc +61 -10
- data/src/core/ext/filters/client_channel/resolver_factory.h +2 -2
- data/src/core/ext/filters/client_channel/resolver_registry.cc +6 -3
- data/src/core/ext/filters/client_channel/resolver_registry.h +8 -8
- data/src/core/ext/filters/client_channel/resolver_result_parsing.cc +242 -300
- data/src/core/ext/filters/client_channel/resolver_result_parsing.h +21 -18
- data/src/core/ext/filters/client_channel/resolving_lb_policy.cc +56 -206
- data/src/core/ext/filters/client_channel/resolving_lb_policy.h +11 -14
- data/src/core/ext/filters/client_channel/server_address.cc +6 -9
- data/src/core/ext/filters/client_channel/server_address.h +6 -12
- data/src/core/ext/filters/client_channel/service_config.cc +144 -253
- data/src/core/ext/filters/client_channel/service_config.h +32 -109
- data/src/core/ext/filters/client_channel/service_config_call_data.h +68 -0
- data/src/core/ext/filters/client_channel/service_config_parser.cc +87 -0
- data/src/core/ext/filters/client_channel/service_config_parser.h +89 -0
- data/src/core/ext/filters/client_channel/subchannel.cc +54 -24
- data/src/core/ext/filters/client_channel/subchannel.h +35 -11
- data/src/core/ext/filters/client_channel/xds/xds_api.cc +1556 -232
- data/src/core/ext/filters/client_channel/xds/xds_api.h +213 -114
- data/src/core/ext/filters/client_channel/xds/xds_bootstrap.cc +237 -345
- data/src/core/ext/filters/client_channel/xds/xds_bootstrap.h +34 -46
- data/src/core/ext/filters/client_channel/xds/xds_channel.h +3 -1
- data/src/core/ext/filters/client_channel/xds/xds_channel_secure.cc +18 -11
- data/src/core/ext/filters/client_channel/xds/xds_client.cc +1326 -399
- data/src/core/ext/filters/client_channel/xds/xds_client.h +124 -41
- data/src/core/ext/filters/client_channel/xds/xds_client_stats.cc +59 -138
- data/src/core/ext/filters/client_channel/xds/xds_client_stats.h +133 -154
- data/src/core/ext/filters/http/client/http_client_filter.cc +23 -28
- data/src/core/ext/filters/http/client_authority_filter.cc +4 -4
- data/src/core/ext/filters/http/http_filters_plugin.cc +27 -12
- data/src/core/ext/filters/http/message_compress/message_compress_filter.cc +258 -221
- data/src/core/ext/filters/http/message_compress/message_decompress_filter.cc +358 -0
- data/src/core/ext/filters/http/message_compress/message_decompress_filter.h +29 -0
- data/src/core/ext/filters/message_size/message_size_filter.cc +38 -44
- data/src/core/ext/filters/message_size/message_size_filter.h +5 -5
- data/src/core/ext/transport/chttp2/server/chttp2_server.cc +7 -10
- data/src/core/ext/transport/chttp2/transport/bin_encoder.cc +4 -6
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +28 -29
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.h +1 -0
- data/src/core/ext/transport/chttp2/transport/flow_control.cc +3 -3
- data/src/core/ext/transport/chttp2/transport/frame_goaway.h +2 -3
- data/src/core/ext/transport/chttp2/transport/frame_ping.h +2 -3
- data/src/core/ext/transport/chttp2/transport/frame_rst_stream.h +2 -3
- data/src/core/ext/transport/chttp2/transport/frame_settings.h +2 -3
- data/src/core/ext/transport/chttp2/transport/frame_window_update.h +2 -3
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.cc +29 -16
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.h +2 -3
- data/src/core/ext/transport/chttp2/transport/hpack_parser.h +2 -3
- data/src/core/ext/transport/chttp2/transport/hpack_table.h +2 -2
- data/src/core/ext/transport/chttp2/transport/http2_settings.h +4 -5
- data/src/core/ext/transport/chttp2/transport/huffsyms.h +2 -3
- data/src/core/ext/transport/chttp2/transport/internal.h +14 -21
- data/src/core/ext/transport/chttp2/transport/stream_map.h +2 -3
- data/src/core/ext/transport/chttp2/transport/writing.cc +16 -9
- data/src/core/ext/transport/inproc/inproc_transport.cc +41 -42
- data/src/core/ext/upb-generated/envoy/annotations/deprecation.upb.c +17 -0
- data/src/core/ext/upb-generated/envoy/annotations/deprecation.upb.h +30 -0
- data/src/core/ext/upb-generated/envoy/annotations/resource.upb.c +27 -0
- data/src/core/ext/upb-generated/envoy/annotations/resource.upb.h +54 -0
- data/src/core/ext/upb-generated/envoy/api/v2/auth/cert.upb.c +5 -205
- data/src/core/ext/upb-generated/envoy/api/v2/auth/cert.upb.h +5 -788
- data/src/core/ext/upb-generated/envoy/api/v2/auth/common.upb.c +114 -0
- data/src/core/ext/upb-generated/envoy/api/v2/auth/common.upb.h +418 -0
- data/src/core/ext/upb-generated/envoy/api/v2/auth/secret.upb.c +72 -0
- data/src/core/ext/upb-generated/envoy/api/v2/auth/secret.upb.h +197 -0
- data/src/core/ext/upb-generated/envoy/api/v2/auth/tls.upb.c +105 -0
- data/src/core/ext/upb-generated/envoy/api/v2/auth/tls.upb.h +378 -0
- data/src/core/ext/upb-generated/envoy/api/v2/cds.upb.c +5 -362
- data/src/core/ext/upb-generated/envoy/api/v2/cds.upb.h +14 -1337
- data/src/core/ext/upb-generated/envoy/api/v2/cluster.upb.c +403 -0
- data/src/core/ext/upb-generated/envoy/api/v2/cluster.upb.h +1447 -0
- data/src/core/ext/upb-generated/envoy/api/v2/cluster/circuit_breaker.upb.c +30 -8
- data/src/core/ext/upb-generated/envoy/api/v2/cluster/circuit_breaker.upb.h +60 -0
- data/src/core/ext/upb-generated/envoy/api/v2/cluster/filter.upb.c +2 -0
- data/src/core/ext/upb-generated/envoy/api/v2/cluster/outlier_detection.upb.c +2 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/address.upb.c +7 -4
- data/src/core/ext/upb-generated/envoy/api/v2/core/address.upb.h +6 -2
- data/src/core/ext/upb-generated/envoy/api/v2/core/backoff.upb.c +35 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/backoff.upb.h +78 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/base.upb.c +87 -23
- data/src/core/ext/upb-generated/envoy/api/v2/core/base.upb.h +262 -62
- data/src/core/ext/upb-generated/envoy/api/v2/core/config_source.upb.c +20 -15
- data/src/core/ext/upb-generated/envoy/api/v2/core/config_source.upb.h +46 -32
- data/src/core/ext/upb-generated/envoy/api/v2/core/event_service_config.upb.c +34 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/event_service_config.upb.h +72 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/grpc_service.upb.c +27 -4
- data/src/core/ext/upb-generated/envoy/api/v2/core/grpc_service.upb.h +70 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/health_check.upb.c +46 -25
- data/src/core/ext/upb-generated/envoy/api/v2/core/health_check.upb.h +98 -25
- data/src/core/ext/upb-generated/envoy/api/v2/core/http_uri.upb.c +2 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/protocol.upb.c +77 -21
- data/src/core/ext/upb-generated/envoy/api/v2/core/protocol.upb.h +201 -4
- data/src/core/ext/upb-generated/envoy/api/v2/core/socket_option.upb.c +34 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/socket_option.upb.h +89 -0
- data/src/core/ext/upb-generated/envoy/api/v2/discovery.upb.c +2 -0
- data/src/core/ext/upb-generated/envoy/api/v2/eds.upb.c +8 -68
- data/src/core/ext/upb-generated/envoy/api/v2/eds.upb.h +14 -201
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint.upb.c +92 -0
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint.upb.h +240 -0
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint/endpoint.upb.c +2 -71
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint/endpoint.upb.h +3 -228
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint/endpoint_components.upb.c +91 -0
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint/endpoint_components.upb.h +266 -0
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint/load_report.upb.c +2 -0
- data/src/core/ext/upb-generated/envoy/api/v2/lds.upb.c +31 -0
- data/src/core/ext/upb-generated/envoy/api/v2/lds.upb.h +53 -0
- data/src/core/ext/upb-generated/envoy/api/v2/listener.upb.c +109 -0
- data/src/core/ext/upb-generated/envoy/api/v2/listener.upb.h +399 -0
- data/src/core/ext/upb-generated/envoy/api/v2/listener/listener.upb.c +18 -0
- data/src/core/ext/upb-generated/envoy/api/v2/listener/listener.upb.h +33 -0
- data/src/core/ext/upb-generated/envoy/api/v2/listener/listener_components.upb.c +145 -0
- data/src/core/ext/upb-generated/envoy/api/v2/listener/listener_components.upb.h +527 -0
- data/src/core/ext/upb-generated/envoy/api/v2/listener/udp_listener_config.upb.c +43 -0
- data/src/core/ext/upb-generated/envoy/api/v2/listener/udp_listener_config.upb.h +112 -0
- data/src/core/ext/upb-generated/envoy/api/v2/rds.upb.c +30 -0
- data/src/core/ext/upb-generated/envoy/api/v2/rds.upb.h +53 -0
- data/src/core/ext/upb-generated/envoy/api/v2/route.upb.c +63 -0
- data/src/core/ext/upb-generated/envoy/api/v2/route.upb.h +199 -0
- data/src/core/ext/upb-generated/envoy/api/v2/route/route.upb.c +18 -0
- data/src/core/ext/upb-generated/envoy/api/v2/route/route.upb.h +33 -0
- data/src/core/ext/upb-generated/envoy/api/v2/route/route_components.upb.c +815 -0
- data/src/core/ext/upb-generated/envoy/api/v2/route/route_components.upb.h +3032 -0
- data/src/core/ext/upb-generated/envoy/api/v2/scoped_route.upb.c +59 -0
- data/src/core/ext/upb-generated/envoy/api/v2/scoped_route.upb.h +134 -0
- data/src/core/ext/upb-generated/envoy/api/v2/srds.upb.c +28 -0
- data/src/core/ext/upb-generated/envoy/api/v2/srds.upb.h +53 -0
- data/src/core/ext/upb-generated/envoy/config/filter/accesslog/v2/accesslog.upb.c +228 -0
- data/src/core/ext/upb-generated/envoy/config/filter/accesslog/v2/accesslog.upb.h +725 -0
- data/src/core/ext/upb-generated/envoy/config/filter/network/http_connection_manager/v2/http_connection_manager.upb.c +316 -0
- data/src/core/ext/upb-generated/envoy/config/filter/network/http_connection_manager/v2/http_connection_manager.upb.h +1132 -0
- data/src/core/ext/upb-generated/envoy/config/listener/v2/api_listener.upb.c +33 -0
- data/src/core/ext/upb-generated/envoy/config/listener/v2/api_listener.upb.h +65 -0
- data/src/core/ext/upb-generated/envoy/config/trace/v2/http_tracer.upb.c +51 -0
- data/src/core/ext/upb-generated/envoy/config/trace/v2/http_tracer.upb.h +125 -0
- data/src/core/ext/upb-generated/envoy/service/discovery/v2/ads.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/service/load_stats/v2/lrs.upb.c +4 -2
- data/src/core/ext/upb-generated/envoy/service/load_stats/v2/lrs.upb.h +4 -0
- data/src/core/ext/upb-generated/envoy/type/http.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/type/matcher/regex.upb.c +63 -0
- data/src/core/ext/upb-generated/envoy/type/matcher/regex.upb.h +144 -0
- data/src/core/ext/upb-generated/envoy/type/matcher/string.upb.c +53 -0
- data/src/core/ext/upb-generated/envoy/type/matcher/string.upb.h +133 -0
- data/src/core/ext/upb-generated/envoy/type/metadata/v2/metadata.upb.c +88 -0
- data/src/core/ext/upb-generated/envoy/type/metadata/v2/metadata.upb.h +258 -0
- data/src/core/ext/upb-generated/envoy/type/percent.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/type/range.upb.c +12 -0
- data/src/core/ext/upb-generated/envoy/type/range.upb.h +27 -0
- data/src/core/ext/upb-generated/envoy/type/semantic_version.upb.c +29 -0
- data/src/core/ext/upb-generated/envoy/type/semantic_version.upb.h +62 -0
- data/src/core/ext/upb-generated/envoy/type/tracing/v2/custom_tag.upb.c +89 -0
- data/src/core/ext/upb-generated/envoy/type/tracing/v2/custom_tag.upb.h +249 -0
- data/src/core/ext/upb-generated/google/protobuf/descriptor.upb.c +9 -8
- data/src/core/ext/upb-generated/google/protobuf/descriptor.upb.h +30 -24
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.c +30 -27
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.h +64 -52
- data/src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.c +13 -5
- data/src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.h +34 -0
- data/src/core/ext/upb-generated/udpa/annotations/migrate.upb.c +48 -0
- data/src/core/ext/upb-generated/udpa/annotations/migrate.upb.h +104 -0
- data/src/core/ext/upb-generated/udpa/annotations/sensitive.upb.c +17 -0
- data/src/core/ext/upb-generated/udpa/annotations/sensitive.upb.h +30 -0
- data/src/core/ext/upb-generated/udpa/annotations/status.upb.c +28 -0
- data/src/core/ext/upb-generated/udpa/annotations/status.upb.h +65 -0
- data/src/core/ext/upb-generated/validate/validate.upb.c +44 -39
- data/src/core/ext/upb-generated/validate/validate.upb.h +155 -119
- data/src/core/lib/channel/channel_args.cc +15 -14
- data/src/core/lib/channel/channel_args.h +3 -1
- data/src/core/lib/channel/channel_stack.h +20 -13
- data/src/core/lib/channel/channel_trace.cc +32 -41
- data/src/core/lib/channel/channel_trace.h +3 -3
- data/src/core/lib/channel/channelz.cc +163 -254
- data/src/core/lib/channel/channelz.h +20 -12
- data/src/core/lib/channel/channelz_registry.cc +52 -77
- data/src/core/lib/channel/channelz_registry.h +4 -4
- data/src/core/lib/channel/connected_channel.cc +7 -5
- data/src/core/lib/channel/context.h +1 -1
- data/src/core/lib/channel/handshaker.cc +11 -13
- data/src/core/lib/channel/handshaker.h +4 -2
- data/src/core/lib/channel/handshaker_registry.cc +5 -17
- data/src/core/lib/channel/status_util.cc +2 -3
- data/src/core/lib/compression/message_compress.cc +5 -1
- data/src/core/lib/debug/stats.cc +21 -27
- data/src/core/lib/debug/stats.h +3 -1
- data/src/core/lib/gpr/spinlock.h +2 -3
- data/src/core/lib/gpr/string.cc +2 -26
- data/src/core/lib/gpr/string.h +0 -16
- data/src/core/lib/gpr/sync_abseil.cc +116 -0
- data/src/core/lib/gpr/sync_posix.cc +8 -5
- data/src/core/lib/gpr/sync_windows.cc +4 -2
- data/src/core/lib/gpr/time.cc +4 -0
- data/src/core/lib/gpr/time_posix.cc +1 -1
- data/src/core/lib/gpr/time_precise.cc +1 -1
- data/src/core/lib/gprpp/atomic.h +6 -6
- data/src/core/lib/gprpp/fork.cc +1 -1
- data/src/core/lib/gprpp/host_port.cc +30 -36
- data/src/core/lib/gprpp/host_port.h +14 -17
- data/src/core/lib/gprpp/map.h +5 -11
- data/src/core/lib/gprpp/memory.h +2 -6
- data/src/core/lib/gprpp/ref_counted_ptr.h +5 -0
- data/src/core/lib/gprpp/sync.h +9 -0
- data/src/core/lib/http/format_request.cc +46 -65
- data/src/core/lib/http/httpcli.cc +2 -3
- data/src/core/lib/http/httpcli.h +2 -3
- data/src/core/lib/http/httpcli_security_connector.cc +5 -5
- data/src/core/lib/http/parser.h +2 -3
- data/src/core/lib/iomgr/buffer_list.cc +36 -35
- data/src/core/lib/iomgr/buffer_list.h +22 -21
- data/src/core/lib/iomgr/call_combiner.h +3 -2
- data/src/core/lib/iomgr/cfstream_handle.cc +3 -2
- data/src/core/lib/iomgr/closure.h +2 -3
- data/src/core/lib/iomgr/dualstack_socket_posix.cc +47 -0
- data/src/core/lib/iomgr/endpoint_cfstream.cc +2 -3
- data/src/core/lib/iomgr/endpoint_pair.h +2 -3
- data/src/core/lib/iomgr/error.cc +6 -9
- data/src/core/lib/iomgr/error.h +4 -5
- data/src/core/lib/iomgr/ev_apple.cc +356 -0
- data/src/core/lib/iomgr/ev_apple.h +43 -0
- data/src/core/lib/iomgr/ev_epoll1_linux.cc +20 -23
- data/src/core/lib/iomgr/ev_epollex_linux.cc +14 -7
- data/src/core/lib/iomgr/ev_poll_posix.cc +3 -3
- data/src/core/lib/iomgr/ev_posix.cc +2 -3
- data/src/core/lib/iomgr/exec_ctx.h +14 -2
- data/src/core/lib/iomgr/executor.cc +1 -1
- data/src/core/lib/iomgr/fork_posix.cc +4 -0
- data/src/core/lib/iomgr/iomgr_posix_cfstream.cc +84 -20
- data/src/core/lib/iomgr/load_file.cc +1 -0
- data/src/core/lib/iomgr/poller/eventmanager_libuv.cc +87 -0
- data/src/core/lib/iomgr/poller/eventmanager_libuv.h +88 -0
- data/src/core/lib/iomgr/pollset_set_custom.cc +10 -10
- data/src/core/lib/iomgr/pollset_uv.h +32 -0
- data/src/core/lib/iomgr/port.h +1 -0
- data/src/core/lib/iomgr/python_util.h +46 -0
- data/src/core/lib/iomgr/resolve_address.h +4 -6
- data/src/core/lib/iomgr/resolve_address_custom.cc +29 -39
- data/src/core/lib/iomgr/resolve_address_custom.h +4 -2
- data/src/core/lib/iomgr/resolve_address_posix.cc +10 -11
- data/src/core/lib/iomgr/resolve_address_windows.cc +8 -17
- data/src/core/lib/iomgr/resource_quota.cc +4 -6
- data/src/core/lib/iomgr/sockaddr_utils.cc +23 -29
- data/src/core/lib/iomgr/sockaddr_utils.h +9 -14
- data/src/core/lib/iomgr/socket_factory_posix.h +2 -3
- data/src/core/lib/iomgr/socket_mutator.h +2 -3
- data/src/core/lib/iomgr/socket_utils_common_posix.cc +21 -26
- data/src/core/lib/iomgr/socket_utils_posix.h +15 -0
- data/src/core/lib/iomgr/tcp_client_cfstream.cc +5 -7
- data/src/core/lib/iomgr/tcp_client_posix.cc +25 -22
- data/src/core/lib/iomgr/tcp_client_posix.h +6 -6
- data/src/core/lib/iomgr/tcp_client_windows.cc +2 -3
- data/src/core/lib/iomgr/tcp_custom.cc +2 -3
- data/src/core/lib/iomgr/tcp_custom.h +3 -0
- data/src/core/lib/iomgr/tcp_posix.cc +608 -56
- data/src/core/lib/iomgr/tcp_server_custom.cc +20 -11
- data/src/core/lib/iomgr/tcp_server_posix.cc +5 -4
- data/src/core/lib/iomgr/tcp_server_utils_posix_common.cc +13 -4
- data/src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc +8 -11
- data/src/core/lib/iomgr/tcp_uv.cc +3 -2
- data/src/core/lib/iomgr/time_averaged_stats.h +2 -3
- data/src/core/lib/iomgr/timer_generic.cc +2 -3
- data/src/core/lib/iomgr/timer_generic.h +39 -0
- data/src/core/lib/iomgr/timer_heap.h +2 -3
- data/src/core/lib/iomgr/udp_server.cc +9 -14
- data/src/core/lib/iomgr/work_serializer.cc +155 -0
- data/src/core/lib/iomgr/work_serializer.h +65 -0
- data/src/core/lib/json/json.h +209 -68
- data/src/core/lib/json/json_reader.cc +511 -319
- data/src/core/lib/json/json_writer.cc +202 -110
- data/src/core/lib/security/credentials/alts/check_gcp_environment.cc +1 -1
- data/src/core/lib/security/credentials/composite/composite_credentials.cc +19 -0
- data/src/core/lib/security/credentials/composite/composite_credentials.h +11 -4
- data/src/core/lib/security/credentials/credentials.cc +0 -84
- data/src/core/lib/security/credentials/credentials.h +18 -60
- data/src/core/lib/security/credentials/fake/fake_credentials.h +6 -1
- data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +9 -12
- data/src/core/lib/security/credentials/iam/iam_credentials.cc +8 -6
- data/src/core/lib/security/credentials/iam/iam_credentials.h +4 -0
- data/src/core/lib/security/credentials/jwt/json_token.cc +26 -56
- data/src/core/lib/security/credentials/jwt/json_token.h +4 -6
- data/src/core/lib/security/credentials/jwt/jwt_credentials.cc +8 -18
- data/src/core/lib/security/credentials/jwt/jwt_credentials.h +12 -0
- data/src/core/lib/security/credentials/jwt/jwt_verifier.cc +151 -168
- data/src/core/lib/security/credentials/jwt/jwt_verifier.h +4 -6
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +92 -61
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.h +10 -4
- data/src/core/lib/security/credentials/plugin/plugin_credentials.cc +19 -4
- data/src/core/lib/security/credentials/plugin/plugin_credentials.h +4 -1
- data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc +43 -13
- data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h +47 -11
- data/src/core/lib/security/credentials/tls/tls_credentials.cc +128 -0
- data/src/core/lib/security/credentials/tls/tls_credentials.h +62 -0
- data/src/core/lib/security/security_connector/alts/alts_security_connector.cc +34 -6
- data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +29 -9
- data/src/core/lib/security/security_connector/load_system_roots_fallback.cc +2 -2
- data/src/core/lib/security/security_connector/load_system_roots_linux.cc +5 -4
- data/src/core/lib/security/security_connector/local/local_security_connector.cc +32 -7
- data/src/core/lib/security/security_connector/security_connector.h +1 -1
- data/src/core/lib/security/security_connector/ssl/ssl_security_connector.cc +20 -37
- data/src/core/lib/security/security_connector/ssl/ssl_security_connector.h +4 -6
- data/src/core/lib/security/security_connector/ssl_utils.cc +107 -16
- data/src/core/lib/security/security_connector/ssl_utils.h +24 -11
- data/src/core/lib/security/security_connector/tls/tls_security_connector.cc +603 -0
- data/src/core/lib/security/security_connector/tls/tls_security_connector.h +183 -0
- data/src/core/lib/security/transport/client_auth_filter.cc +34 -2
- data/src/core/lib/security/transport/security_handshaker.cc +2 -2
- data/src/core/lib/security/util/json_util.cc +22 -15
- data/src/core/lib/security/util/json_util.h +2 -2
- data/src/core/lib/slice/slice_intern.cc +2 -3
- data/src/core/lib/slice/slice_internal.h +14 -0
- data/src/core/lib/slice/slice_utils.h +9 -0
- data/src/core/lib/surface/byte_buffer_reader.cc +2 -47
- data/src/core/lib/surface/call.cc +2 -3
- data/src/core/lib/surface/call_log_batch.cc +50 -58
- data/src/core/lib/surface/channel.cc +53 -31
- data/src/core/lib/surface/channel.h +35 -4
- data/src/core/lib/surface/channel_ping.cc +2 -3
- data/src/core/lib/surface/completion_queue.cc +55 -34
- data/src/core/lib/surface/event_string.cc +18 -25
- data/src/core/lib/surface/event_string.h +3 -1
- data/src/core/lib/surface/init_secure.cc +1 -4
- data/src/core/lib/surface/server.cc +570 -369
- data/src/core/lib/surface/server.h +32 -0
- data/src/core/lib/surface/version.cc +2 -2
- data/src/core/lib/transport/byte_stream.h +7 -2
- data/src/core/lib/transport/connectivity_state.cc +7 -6
- data/src/core/lib/transport/connectivity_state.h +5 -3
- data/src/core/lib/transport/metadata.cc +3 -3
- data/src/core/lib/transport/metadata_batch.h +2 -3
- data/src/core/lib/transport/static_metadata.h +1 -1
- data/src/core/lib/transport/status_conversion.cc +6 -14
- data/src/core/lib/transport/transport.cc +2 -3
- data/src/core/lib/transport/transport.h +3 -2
- data/src/core/lib/transport/transport_op_string.cc +61 -102
- data/src/core/lib/uri/uri_parser.h +2 -3
- data/src/core/plugin_registry/grpc_plugin_registry.cc +20 -4
- data/src/core/tsi/alts/crypt/aes_gcm.cc +0 -2
- data/src/core/tsi/alts/handshaker/alts_handshaker_client.cc +9 -2
- data/src/core/tsi/alts/handshaker/alts_handshaker_client.h +8 -4
- data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc +44 -4
- data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.h +10 -2
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.h +2 -3
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc +3 -3
- data/src/core/tsi/fake_transport_security.cc +17 -18
- data/src/core/tsi/fake_transport_security.h +2 -0
- data/src/core/tsi/ssl/session_cache/ssl_session.h +0 -2
- data/src/core/tsi/ssl/session_cache/ssl_session_boringssl.cc +1 -1
- data/src/core/tsi/ssl/session_cache/ssl_session_cache.h +0 -2
- data/src/core/tsi/ssl/session_cache/ssl_session_openssl.cc +1 -1
- data/src/core/tsi/ssl_transport_security.cc +197 -47
- data/src/core/tsi/ssl_transport_security.h +23 -9
- data/src/core/tsi/ssl_types.h +0 -2
- data/src/core/tsi/transport_security.cc +13 -0
- data/src/core/tsi/transport_security.h +6 -9
- data/src/core/tsi/transport_security_grpc.cc +2 -2
- data/src/core/tsi/transport_security_grpc.h +4 -5
- data/src/core/tsi/transport_security_interface.h +15 -3
- data/src/ruby/bin/math_pb.rb +5 -5
- data/src/ruby/ext/grpc/rb_call.c +9 -1
- data/src/ruby/ext/grpc/rb_call_credentials.c +4 -1
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +2 -0
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +4 -1
- data/src/ruby/lib/grpc/errors.rb +103 -42
- data/src/ruby/lib/grpc/generic/active_call.rb +2 -3
- data/src/ruby/lib/grpc/generic/interceptors.rb +4 -4
- data/src/ruby/lib/grpc/generic/rpc_server.rb +9 -10
- data/src/ruby/lib/grpc/generic/service.rb +5 -4
- data/src/ruby/lib/grpc/structs.rb +1 -1
- data/src/ruby/lib/grpc/version.rb +1 -1
- data/src/ruby/pb/generate_proto_ruby.sh +5 -3
- data/src/ruby/pb/grpc/health/v1/health_pb.rb +3 -3
- data/src/ruby/pb/src/proto/grpc/testing/empty_pb.rb +1 -1
- data/src/ruby/pb/src/proto/grpc/testing/messages_pb.rb +34 -13
- data/src/ruby/pb/src/proto/grpc/testing/test_services_pb.rb +16 -0
- data/src/ruby/spec/debug_message_spec.rb +134 -0
- data/src/ruby/spec/generic/service_spec.rb +2 -0
- data/src/ruby/spec/pb/codegen/grpc/testing/package_options_ruby_style.proto +5 -0
- data/src/ruby/spec/pb/codegen/package_option_spec.rb +2 -0
- data/src/ruby/spec/testdata/ca.pem +18 -13
- data/src/ruby/spec/testdata/client.key +26 -14
- data/src/ruby/spec/testdata/client.pem +18 -12
- data/src/ruby/spec/testdata/server1.key +26 -14
- data/src/ruby/spec/testdata/server1.pem +20 -14
- data/third_party/abseil-cpp/absl/algorithm/algorithm.h +159 -0
- data/third_party/abseil-cpp/absl/base/attributes.h +621 -0
- data/third_party/abseil-cpp/absl/base/call_once.h +226 -0
- data/third_party/abseil-cpp/absl/base/casts.h +184 -0
- data/third_party/abseil-cpp/absl/base/config.h +671 -0
- data/third_party/abseil-cpp/absl/base/const_init.h +76 -0
- data/third_party/abseil-cpp/absl/base/dynamic_annotations.cc +129 -0
- data/third_party/abseil-cpp/absl/base/dynamic_annotations.h +389 -0
- data/third_party/abseil-cpp/absl/base/internal/atomic_hook.h +200 -0
- data/third_party/abseil-cpp/absl/base/internal/bits.h +218 -0
- data/third_party/abseil-cpp/absl/base/internal/cycleclock.cc +107 -0
- data/third_party/abseil-cpp/absl/base/internal/cycleclock.h +94 -0
- data/third_party/abseil-cpp/absl/base/internal/endian.h +266 -0
- data/third_party/abseil-cpp/absl/base/internal/errno_saver.h +43 -0
- data/third_party/abseil-cpp/absl/base/internal/hide_ptr.h +51 -0
- data/third_party/abseil-cpp/absl/base/internal/identity.h +37 -0
- data/third_party/abseil-cpp/absl/base/internal/inline_variable.h +107 -0
- data/third_party/abseil-cpp/absl/base/internal/invoke.h +187 -0
- data/third_party/abseil-cpp/absl/base/internal/low_level_scheduling.h +107 -0
- data/third_party/abseil-cpp/absl/base/internal/per_thread_tls.h +52 -0
- data/third_party/abseil-cpp/absl/base/internal/raw_logging.cc +240 -0
- data/third_party/abseil-cpp/absl/base/internal/raw_logging.h +183 -0
- data/third_party/abseil-cpp/absl/base/internal/scheduling_mode.h +58 -0
- data/third_party/abseil-cpp/absl/base/internal/spinlock.cc +233 -0
- data/third_party/abseil-cpp/absl/base/internal/spinlock.h +243 -0
- data/third_party/abseil-cpp/absl/base/internal/spinlock_akaros.inc +35 -0
- data/third_party/abseil-cpp/absl/base/internal/spinlock_linux.inc +66 -0
- data/third_party/abseil-cpp/absl/base/internal/spinlock_posix.inc +46 -0
- data/third_party/abseil-cpp/absl/base/internal/spinlock_wait.cc +81 -0
- data/third_party/abseil-cpp/absl/base/internal/spinlock_wait.h +93 -0
- data/third_party/abseil-cpp/absl/base/internal/spinlock_win32.inc +37 -0
- data/third_party/abseil-cpp/absl/base/internal/sysinfo.cc +416 -0
- data/third_party/abseil-cpp/absl/base/internal/sysinfo.h +66 -0
- data/third_party/abseil-cpp/absl/base/internal/thread_annotations.h +271 -0
- data/third_party/abseil-cpp/absl/base/internal/thread_identity.cc +152 -0
- data/third_party/abseil-cpp/absl/base/internal/thread_identity.h +259 -0
- data/third_party/abseil-cpp/absl/base/internal/throw_delegate.cc +108 -0
- data/third_party/abseil-cpp/absl/base/internal/throw_delegate.h +75 -0
- data/third_party/abseil-cpp/absl/base/internal/tsan_mutex_interface.h +66 -0
- data/third_party/abseil-cpp/absl/base/internal/unaligned_access.h +158 -0
- data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.cc +140 -0
- data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.h +124 -0
- data/third_party/abseil-cpp/absl/base/log_severity.cc +27 -0
- data/third_party/abseil-cpp/absl/base/log_severity.h +121 -0
- data/third_party/abseil-cpp/absl/base/macros.h +220 -0
- data/third_party/abseil-cpp/absl/base/optimization.h +181 -0
- data/third_party/abseil-cpp/absl/base/options.h +211 -0
- data/third_party/abseil-cpp/absl/base/policy_checks.h +111 -0
- data/third_party/abseil-cpp/absl/base/port.h +26 -0
- data/third_party/abseil-cpp/absl/base/thread_annotations.h +280 -0
- data/third_party/abseil-cpp/absl/container/inlined_vector.h +848 -0
- data/third_party/abseil-cpp/absl/container/internal/compressed_tuple.h +265 -0
- data/third_party/abseil-cpp/absl/container/internal/inlined_vector.h +892 -0
- data/third_party/abseil-cpp/absl/memory/memory.h +695 -0
- data/third_party/abseil-cpp/absl/meta/type_traits.h +759 -0
- data/third_party/abseil-cpp/absl/numeric/int128.cc +404 -0
- data/third_party/abseil-cpp/absl/numeric/int128.h +1091 -0
- data/third_party/abseil-cpp/absl/numeric/int128_have_intrinsic.inc +302 -0
- data/third_party/abseil-cpp/absl/numeric/int128_no_intrinsic.inc +308 -0
- data/third_party/abseil-cpp/absl/strings/ascii.cc +200 -0
- data/third_party/abseil-cpp/absl/strings/ascii.h +242 -0
- data/third_party/abseil-cpp/absl/strings/charconv.cc +984 -0
- data/third_party/abseil-cpp/absl/strings/charconv.h +119 -0
- data/third_party/abseil-cpp/absl/strings/escaping.cc +949 -0
- data/third_party/abseil-cpp/absl/strings/escaping.h +164 -0
- data/third_party/abseil-cpp/absl/strings/internal/char_map.h +156 -0
- data/third_party/abseil-cpp/absl/strings/internal/charconv_bigint.cc +359 -0
- data/third_party/abseil-cpp/absl/strings/internal/charconv_bigint.h +423 -0
- data/third_party/abseil-cpp/absl/strings/internal/charconv_parse.cc +504 -0
- data/third_party/abseil-cpp/absl/strings/internal/charconv_parse.h +99 -0
- data/third_party/abseil-cpp/absl/strings/internal/escaping.cc +180 -0
- data/third_party/abseil-cpp/absl/strings/internal/escaping.h +58 -0
- data/third_party/abseil-cpp/absl/strings/internal/memutil.cc +112 -0
- data/third_party/abseil-cpp/absl/strings/internal/memutil.h +148 -0
- data/third_party/abseil-cpp/absl/strings/internal/ostringstream.cc +36 -0
- data/third_party/abseil-cpp/absl/strings/internal/ostringstream.h +89 -0
- data/third_party/abseil-cpp/absl/strings/internal/resize_uninitialized.h +73 -0
- data/third_party/abseil-cpp/absl/strings/internal/stl_type_traits.h +248 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/arg.cc +388 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/arg.h +432 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/bind.cc +245 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/bind.h +209 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/checker.h +326 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/extension.cc +51 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/extension.h +415 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/float_conversion.cc +493 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/float_conversion.h +23 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/output.cc +72 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/output.h +104 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/parser.cc +334 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/parser.h +333 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_join_internal.h +314 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_split_internal.h +455 -0
- data/third_party/abseil-cpp/absl/strings/internal/utf8.cc +53 -0
- data/third_party/abseil-cpp/absl/strings/internal/utf8.h +50 -0
- data/third_party/abseil-cpp/absl/strings/match.cc +40 -0
- data/third_party/abseil-cpp/absl/strings/match.h +90 -0
- data/third_party/abseil-cpp/absl/strings/numbers.cc +965 -0
- data/third_party/abseil-cpp/absl/strings/numbers.h +266 -0
- data/third_party/abseil-cpp/absl/strings/str_cat.cc +246 -0
- data/third_party/abseil-cpp/absl/strings/str_cat.h +408 -0
- data/third_party/abseil-cpp/absl/strings/str_format.h +537 -0
- data/third_party/abseil-cpp/absl/strings/str_join.h +293 -0
- data/third_party/abseil-cpp/absl/strings/str_replace.cc +82 -0
- data/third_party/abseil-cpp/absl/strings/str_replace.h +219 -0
- data/third_party/abseil-cpp/absl/strings/str_split.cc +139 -0
- data/third_party/abseil-cpp/absl/strings/str_split.h +513 -0
- data/third_party/abseil-cpp/absl/strings/string_view.cc +235 -0
- data/third_party/abseil-cpp/absl/strings/string_view.h +622 -0
- data/third_party/abseil-cpp/absl/strings/strip.h +91 -0
- data/third_party/abseil-cpp/absl/strings/substitute.cc +171 -0
- data/third_party/abseil-cpp/absl/strings/substitute.h +693 -0
- data/third_party/abseil-cpp/absl/time/civil_time.cc +175 -0
- data/third_party/abseil-cpp/absl/time/civil_time.h +538 -0
- data/third_party/abseil-cpp/absl/time/clock.cc +569 -0
- data/third_party/abseil-cpp/absl/time/clock.h +74 -0
- data/third_party/abseil-cpp/absl/time/duration.cc +922 -0
- data/third_party/abseil-cpp/absl/time/format.cc +153 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/civil_time.h +332 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/civil_time_detail.h +622 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/time_zone.h +384 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/zone_info_source.h +102 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/civil_time_detail.cc +94 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_fixed.cc +140 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_fixed.h +52 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_format.cc +922 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_if.cc +45 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_if.h +76 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_impl.cc +121 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_impl.h +93 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_info.cc +958 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_info.h +138 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.cc +308 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.h +55 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_lookup.cc +187 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_posix.cc +159 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_posix.h +132 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/tzfile.h +122 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/zone_info_source.cc +115 -0
- data/third_party/abseil-cpp/absl/time/internal/get_current_time_chrono.inc +31 -0
- data/third_party/abseil-cpp/absl/time/internal/get_current_time_posix.inc +24 -0
- data/third_party/abseil-cpp/absl/time/time.cc +499 -0
- data/third_party/abseil-cpp/absl/time/time.h +1584 -0
- data/third_party/abseil-cpp/absl/types/bad_optional_access.cc +48 -0
- data/third_party/abseil-cpp/absl/types/bad_optional_access.h +78 -0
- data/third_party/abseil-cpp/absl/types/internal/optional.h +396 -0
- data/third_party/abseil-cpp/absl/types/internal/span.h +128 -0
- data/third_party/abseil-cpp/absl/types/optional.h +776 -0
- data/third_party/abseil-cpp/absl/types/span.h +713 -0
- data/third_party/abseil-cpp/absl/utility/utility.h +350 -0
- data/third_party/boringssl-with-bazel/err_data.c +1439 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/a_bitstr.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/a_bool.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/a_d2i_fp.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/a_dup.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/a_enum.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/a_gentm.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/a_i2d_fp.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/a_int.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/a_mbstr.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/a_object.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/a_octet.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/a_print.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/a_strnid.c +0 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_time.c +212 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/a_type.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/a_utctm.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/a_utf8.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/asn1_lib.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/asn1_locl.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/asn1_par.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/asn_pack.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/f_enum.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/f_int.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/f_string.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/tasn_dec.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/tasn_enc.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/tasn_fre.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/tasn_new.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/tasn_typ.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/tasn_utl.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/time_support.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/base64/base64.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/bio/bio.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/bio/bio_mem.c +0 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/connect.c +545 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/fd.c +279 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/file.c +317 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/bio/hexdump.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/bio/internal.h +0 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/pair.c +488 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/bio/printf.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/bio/socket.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/bio/socket_helper.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/bn_extra/bn_asn1.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/bn_extra/convert.c +0 -0
- data/third_party/boringssl-with-bazel/src/crypto/buf/buf.c +172 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/bytestring/asn1_compat.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/bytestring/ber.c +0 -0
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/cbb.c +719 -0
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/cbs.c +688 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/bytestring/internal.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/bytestring/unicode.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/chacha/chacha.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/chacha/internal.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/cipher_extra/cipher_extra.c +0 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/derive_key.c +152 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/cipher_extra/e_aesccm.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/cipher_extra/e_aesctrhmac.c +0 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_aesgcmsiv.c +891 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/cipher_extra/e_chacha20poly1305.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/cipher_extra/e_null.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/cipher_extra/e_rc2.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/cipher_extra/e_rc4.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/cipher_extra/e_tls.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/cipher_extra/internal.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/cipher_extra/tls_cbc.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/cmac/cmac.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/conf/conf.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/conf/conf_def.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/conf/internal.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/cpu-aarch64-fuchsia.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/cpu-aarch64-linux.c +0 -0
- data/third_party/boringssl-with-bazel/src/crypto/cpu-arm-linux.c +220 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/cpu-arm-linux.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/cpu-arm.c +0 -0
- data/third_party/boringssl-with-bazel/src/crypto/cpu-intel.c +291 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/cpu-ppc64le.c +0 -0
- data/third_party/boringssl-with-bazel/src/crypto/crypto.c +226 -0
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519.c +2159 -0
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519_tables.h +7872 -0
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/internal.h +146 -0
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/spake25519.c +539 -0
- data/third_party/boringssl-with-bazel/src/crypto/dh/check.c +217 -0
- data/third_party/boringssl-with-bazel/src/crypto/dh/dh.c +533 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/dh/dh_asn1.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/dh/params.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/digest_extra/digest_extra.c +0 -0
- data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa.c +980 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/dsa/dsa_asn1.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/ec_extra/ec_asn1.c +0 -0
- data/third_party/boringssl-with-bazel/src/crypto/ec_extra/ec_derive.c +95 -0
- data/third_party/boringssl-with-bazel/src/crypto/ec_extra/hash_to_curve.c +425 -0
- data/third_party/boringssl-with-bazel/src/crypto/ec_extra/internal.h +78 -0
- data/third_party/boringssl-with-bazel/src/crypto/ecdh_extra/ecdh_extra.c +124 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/ecdsa_extra/ecdsa_asn1.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/engine/engine.c +0 -0
- data/third_party/boringssl-with-bazel/src/crypto/err/err.c +850 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/err/internal.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/evp/digestsign.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/evp/evp.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/evp/evp_asn1.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/evp/evp_ctx.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/evp/internal.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/evp/p_dsa_asn1.c +0 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_ec.c +286 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/evp/p_ec_asn1.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/evp/p_ed25519.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/evp/p_ed25519_asn1.c +0 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_rsa.c +648 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/evp/p_rsa_asn1.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/evp/p_x25519.c +0 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_x25519_asn1.c +248 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/evp/pbkdf.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/evp/print.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/evp/scrypt.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/evp/sign.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/ex_data.c +0 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/aes.c +108 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/aes_nohw.c +1282 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/internal.h +238 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/aes/key_wrap.c +0 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/mode_wrappers.c +106 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm.c +263 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/bn/add.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/bn/asm/x86_64-gcc.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/bn/bn.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/bn/bytes.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/bn/cmp.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/bn/ctx.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/bn/div.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/bn/div_extra.c +0 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/exponentiation.c +1288 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/bn/gcd.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/bn/gcd_extra.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/bn/generic.c +0 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/internal.h +694 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/bn/jacobi.c +0 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery.c +502 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/bn/montgomery_inv.c +0 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/mul.c +749 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/prime.c +1068 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/bn/random.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/bn/rsaz_exp.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/bn/rsaz_exp.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/bn/shift.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/bn/sqrt.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/cipher/aead.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/cipher/cipher.c +0 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/e_aes.c +1302 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/cipher/e_des.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/cipher/internal.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/delocate.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/des/des.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/des/internal.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/digest/digest.c +0 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/digests.c +296 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/digest/internal.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/digest/md32_common.h +0 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec.c +1252 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_key.c +465 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_montgomery.c +524 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/felem.c +100 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/internal.h +775 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/oct.c +328 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p224-64.c +1178 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-x86_64-table.h +9497 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-x86_64.c +632 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/ec/p256-x86_64.h +0 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256.c +736 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256_table.h +297 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/scalar.c +175 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/simple.c +357 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/simple_mul.c +270 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/ec/util.c +0 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/wnaf.c +270 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdh/ecdh.c +122 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/ecdsa.c +328 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/fips_shared_support.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/hmac/hmac.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/is_fips.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/md4/md4.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/md5/internal.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/md5/md5.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/modes/cbc.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/modes/cfb.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/modes/ctr.c +0 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/gcm.c +729 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/gcm_nohw.c +304 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/internal.h +441 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/modes/ofb.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/modes/polyval.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/rand/ctrdrbg.c +0 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/fork_detect.c +137 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/fork_detect.h +49 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/getrandom_fillin.h +64 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/internal.h +163 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/rand.c +378 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/urandom.c +391 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/blinding.c +243 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/internal.h +127 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/rsa/padding.c +0 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa.c +898 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa_impl.c +1358 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/self_check/self_check.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/sha/internal.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/sha/sha1-altivec.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/sha/sha1.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/sha/sha256.c +0 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha512.c +544 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/tls/internal.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/tls/kdf.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/hkdf/hkdf.c +0 -0
- data/third_party/boringssl-with-bazel/src/crypto/hrss/hrss.c +2100 -0
- data/third_party/boringssl-with-bazel/src/crypto/hrss/internal.h +61 -0
- data/third_party/boringssl-with-bazel/src/crypto/internal.h +834 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/lhash/lhash.c +0 -0
- data/third_party/boringssl-with-bazel/src/crypto/mem.c +359 -0
- data/third_party/boringssl-with-bazel/src/crypto/obj/obj.c +549 -0
- data/third_party/boringssl-with-bazel/src/crypto/obj/obj_dat.h +11585 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/obj/obj_xref.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/pem/pem_all.c +0 -0
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_info.c +360 -0
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_lib.c +777 -0
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_oth.c +87 -0
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pk8.c +257 -0
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pkey.c +218 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/pem/pem_x509.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/pem/pem_xaux.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/pkcs7/internal.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/pkcs7/pkcs7.c +0 -0
- data/third_party/boringssl-with-bazel/src/crypto/pkcs7/pkcs7_x509.c +385 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/pkcs8/internal.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/pkcs8/p5_pbev2.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/pkcs8/pkcs8.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/pkcs8/pkcs8_x509.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/poly1305/internal.h +0 -0
- data/third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305.c +318 -0
- data/third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305_arm.c +305 -0
- data/third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305_vec.c +856 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/pool/internal.h +0 -0
- data/third_party/boringssl-with-bazel/src/crypto/pool/pool.c +220 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/deterministic.c +52 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/rand_extra/forkunsafe.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/rand_extra/fuchsia.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/rand_extra/rand_extra.c +0 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/windows.c +69 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/rc4/rc4.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/refcount_c11.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/refcount_lock.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/rsa_extra/rsa_asn1.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/rsa_extra/rsa_print.c +0 -0
- data/third_party/boringssl-with-bazel/src/crypto/siphash/siphash.c +82 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/stack/stack.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/thread.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/thread_none.c +0 -0
- data/third_party/boringssl-with-bazel/src/crypto/thread_pthread.c +210 -0
- data/third_party/boringssl-with-bazel/src/crypto/thread_win.c +260 -0
- data/third_party/boringssl-with-bazel/src/crypto/trust_token/internal.h +278 -0
- data/third_party/boringssl-with-bazel/src/crypto/trust_token/pmbtoken.c +1474 -0
- data/third_party/boringssl-with-bazel/src/crypto/trust_token/trust_token.c +720 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/a_digest.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/a_sign.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/a_strex.c +0 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/a_verify.c +114 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/algorithm.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/asn1_gen.c +0 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/by_dir.c +458 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/by_file.c +275 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/charmap.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/i2d_pr.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/internal.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/rsa_pss.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/t_crl.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/t_req.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/t_x509.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/t_x509a.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/vpm_int.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x509.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x509_att.c +0 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_cmp.c +476 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x509_d2.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x509_def.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x509_ext.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x509_lu.c +0 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_obj.c +198 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_r2x.c +116 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_req.c +341 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_set.c +185 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_trs.c +326 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x509_txt.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x509_v3.c +0 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vfy.c +2487 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vpm.c +671 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x509cset.c +0 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509name.c +389 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x509rset.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x509spki.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x_algor.c +0 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_all.c +399 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x_attrib.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x_crl.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x_exten.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x_info.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x_name.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x_pkey.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x_pubkey.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x_req.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x_sig.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x_spki.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x_val.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x_x509.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x_x509a.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/ext_dat.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/internal.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/pcy_cache.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/pcy_data.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/pcy_int.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/pcy_lib.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/pcy_map.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/pcy_node.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/pcy_tree.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_akey.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_akeya.c +0 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_alt.c +629 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_bcons.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_bitst.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_conf.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_cpols.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_crld.c +0 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_enum.c +100 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_extku.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_genn.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_ia5.c +0 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_info.c +218 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_int.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_lib.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_ncons.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_ocsp.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_pci.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_pcia.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_pcons.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_pku.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_pmaps.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_prn.c +0 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_purp.c +843 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_skey.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_sxnet.c +0 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_utl.c +1395 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/aead.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/aes.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/arm_arch.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/asn1.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/asn1_mac.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/asn1t.h +0 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/base.h +575 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/base64.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/bio.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/blowfish.h +0 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/bn.h +1057 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/buf.h +137 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/buffer.h +0 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/bytestring.h +561 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/cast.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/chacha.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/cipher.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/cmac.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/conf.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/cpu.h +0 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/crypto.h +149 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/curve25519.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/des.h +0 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/dh.h +319 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/digest.h +331 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/dsa.h +457 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/dtls1.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/e_os2.h +0 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/ec.h +424 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/ec_key.h +372 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/ecdh.h +0 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/ecdsa.h +205 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/engine.h +0 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/err.h +465 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/evp.h +1050 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/ex_data.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/hkdf.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/hmac.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/hrss.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/is_boringssl.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/lhash.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/md4.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/md5.h +0 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/mem.h +175 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/nid.h +4259 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/obj.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/obj_mac.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/objects.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/opensslconf.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/opensslv.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/ossl_typ.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/pem.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/pkcs12.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/pkcs7.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/pkcs8.h +0 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/poly1305.h +49 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/pool.h +0 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/rand.h +111 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/rc4.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/ripemd.h +0 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/rsa.h +818 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/safestack.h +0 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/sha.h +294 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/siphash.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/span.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/srtp.h +0 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/ssl.h +5198 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/ssl3.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/stack.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/thread.h +0 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/tls1.h +632 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/trust_token.h +291 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/type_check.h +0 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/x509.h +1207 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/x509_vfy.h +681 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/x509v3.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/bio_ssl.cc +0 -0
- data/third_party/boringssl-with-bazel/src/ssl/d1_both.cc +837 -0
- data/third_party/boringssl-with-bazel/src/ssl/d1_lib.cc +268 -0
- data/third_party/boringssl-with-bazel/src/ssl/d1_pkt.cc +273 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/d1_srtp.cc +0 -0
- data/third_party/boringssl-with-bazel/src/ssl/dtls_method.cc +200 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/dtls_record.cc +0 -0
- data/third_party/boringssl-with-bazel/src/ssl/handoff.cc +675 -0
- data/third_party/boringssl-with-bazel/src/ssl/handshake.cc +703 -0
- data/third_party/boringssl-with-bazel/src/ssl/handshake_client.cc +1890 -0
- data/third_party/boringssl-with-bazel/src/ssl/handshake_server.cc +1805 -0
- data/third_party/boringssl-with-bazel/src/ssl/internal.h +3572 -0
- data/third_party/boringssl-with-bazel/src/ssl/s3_both.cc +724 -0
- data/third_party/boringssl-with-bazel/src/ssl/s3_lib.cc +221 -0
- data/third_party/boringssl-with-bazel/src/ssl/s3_pkt.cc +458 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/ssl_aead_ctx.cc +0 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_asn1.cc +856 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_buffer.cc +306 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_cert.cc +1019 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_cipher.cc +1718 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/ssl_file.cc +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/ssl_key_share.cc +0 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_lib.cc +3015 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_privkey.cc +835 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_session.cc +1333 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_stat.cc +230 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/ssl_transcript.cc +0 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_versions.cc +394 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/ssl_x509.cc +0 -0
- data/third_party/boringssl-with-bazel/src/ssl/t1_enc.cc +365 -0
- data/third_party/boringssl-with-bazel/src/ssl/t1_lib.cc +3870 -0
- data/third_party/boringssl-with-bazel/src/ssl/tls13_both.cc +689 -0
- data/third_party/boringssl-with-bazel/src/ssl/tls13_client.cc +1017 -0
- data/third_party/boringssl-with-bazel/src/ssl/tls13_enc.cc +513 -0
- data/third_party/boringssl-with-bazel/src/ssl/tls13_server.cc +1096 -0
- data/third_party/boringssl-with-bazel/src/ssl/tls_method.cc +317 -0
- data/third_party/boringssl-with-bazel/src/ssl/tls_record.cc +703 -0
- data/third_party/boringssl-with-bazel/src/third_party/fiat/curve25519_32.h +981 -0
- data/third_party/boringssl-with-bazel/src/third_party/fiat/curve25519_64.h +619 -0
- data/third_party/boringssl-with-bazel/src/third_party/fiat/p256_32.h +3147 -0
- data/third_party/boringssl-with-bazel/src/third_party/fiat/p256_64.h +1226 -0
- data/third_party/upb/upb/decode.c +4 -0
- data/third_party/upb/upb/port.c +0 -1
- data/third_party/upb/upb/port_def.inc +1 -3
- data/third_party/upb/upb/table.c +2 -1
- metadata +758 -509
- data/src/boringssl/err_data.c +0 -1407
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds.cc +0 -1898
- data/src/core/lib/gprpp/inlined_vector.h +0 -246
- data/src/core/lib/gprpp/optional.h +0 -48
- data/src/core/lib/gprpp/string_view.h +0 -165
- data/src/core/lib/iomgr/logical_thread.cc +0 -103
- data/src/core/lib/iomgr/logical_thread.h +0 -52
- data/src/core/lib/json/json.cc +0 -94
- data/src/core/lib/json/json_common.h +0 -34
- data/src/core/lib/json/json_reader.h +0 -146
- data/src/core/lib/json/json_string.cc +0 -367
- data/src/core/lib/json/json_writer.h +0 -84
- data/src/core/lib/security/credentials/tls/spiffe_credentials.cc +0 -129
- data/src/core/lib/security/credentials/tls/spiffe_credentials.h +0 -62
- data/src/core/lib/security/security_connector/tls/spiffe_security_connector.cc +0 -541
- data/src/core/lib/security/security_connector/tls/spiffe_security_connector.h +0 -158
- data/src/core/tsi/grpc_shadow_boringssl.h +0 -3297
- data/third_party/boringssl/crypto/asn1/a_time.c +0 -213
- data/third_party/boringssl/crypto/bio/connect.c +0 -546
- data/third_party/boringssl/crypto/bio/fd.c +0 -280
- data/third_party/boringssl/crypto/bio/file.c +0 -318
- data/third_party/boringssl/crypto/bio/pair.c +0 -489
- data/third_party/boringssl/crypto/buf/buf.c +0 -231
- data/third_party/boringssl/crypto/bytestring/cbb.c +0 -680
- data/third_party/boringssl/crypto/bytestring/cbs.c +0 -631
- data/third_party/boringssl/crypto/cipher_extra/derive_key.c +0 -152
- data/third_party/boringssl/crypto/cipher_extra/e_aesgcmsiv.c +0 -883
- data/third_party/boringssl/crypto/cpu-arm-linux.c +0 -219
- data/third_party/boringssl/crypto/cpu-intel.c +0 -282
- data/third_party/boringssl/crypto/crypto.c +0 -215
- data/third_party/boringssl/crypto/curve25519/spake25519.c +0 -539
- data/third_party/boringssl/crypto/dh/check.c +0 -217
- data/third_party/boringssl/crypto/dh/dh.c +0 -519
- data/third_party/boringssl/crypto/dsa/dsa.c +0 -970
- data/third_party/boringssl/crypto/ec_extra/ec_derive.c +0 -96
- data/third_party/boringssl/crypto/ecdh_extra/ecdh_extra.c +0 -124
- data/third_party/boringssl/crypto/err/err.c +0 -849
- data/third_party/boringssl/crypto/evp/p_ec.c +0 -287
- data/third_party/boringssl/crypto/evp/p_rsa.c +0 -636
- data/third_party/boringssl/crypto/evp/p_x25519_asn1.c +0 -249
- data/third_party/boringssl/crypto/fipsmodule/aes/aes.c +0 -860
- data/third_party/boringssl/crypto/fipsmodule/aes/internal.h +0 -240
- data/third_party/boringssl/crypto/fipsmodule/aes/mode_wrappers.c +0 -108
- data/third_party/boringssl/crypto/fipsmodule/bcm.c +0 -260
- data/third_party/boringssl/crypto/fipsmodule/bn/exponentiation.c +0 -1288
- data/third_party/boringssl/crypto/fipsmodule/bn/internal.h +0 -691
- data/third_party/boringssl/crypto/fipsmodule/bn/montgomery.c +0 -502
- data/third_party/boringssl/crypto/fipsmodule/bn/mul.c +0 -873
- data/third_party/boringssl/crypto/fipsmodule/bn/prime.c +0 -1069
- data/third_party/boringssl/crypto/fipsmodule/cipher/e_aes.c +0 -1304
- data/third_party/boringssl/crypto/fipsmodule/digest/digests.c +0 -280
- data/third_party/boringssl/crypto/fipsmodule/ec/ec.c +0 -1080
- data/third_party/boringssl/crypto/fipsmodule/ec/ec_key.c +0 -479
- data/third_party/boringssl/crypto/fipsmodule/ec/ec_montgomery.c +0 -483
- data/third_party/boringssl/crypto/fipsmodule/ec/felem.c +0 -82
- data/third_party/boringssl/crypto/fipsmodule/ec/internal.h +0 -503
- data/third_party/boringssl/crypto/fipsmodule/ec/oct.c +0 -336
- data/third_party/boringssl/crypto/fipsmodule/ec/p224-64.c +0 -1187
- data/third_party/boringssl/crypto/fipsmodule/ec/p256-x86_64-table.h +0 -9501
- data/third_party/boringssl/crypto/fipsmodule/ec/p256-x86_64.c +0 -651
- data/third_party/boringssl/crypto/fipsmodule/ec/scalar.c +0 -96
- data/third_party/boringssl/crypto/fipsmodule/ec/simple.c +0 -380
- data/third_party/boringssl/crypto/fipsmodule/ec/simple_mul.c +0 -84
- data/third_party/boringssl/crypto/fipsmodule/ec/wnaf.c +0 -227
- data/third_party/boringssl/crypto/fipsmodule/ecdh/ecdh.c +0 -122
- data/third_party/boringssl/crypto/fipsmodule/ecdsa/ecdsa.c +0 -313
- data/third_party/boringssl/crypto/fipsmodule/modes/gcm.c +0 -877
- data/third_party/boringssl/crypto/fipsmodule/modes/internal.h +0 -451
- data/third_party/boringssl/crypto/fipsmodule/rand/internal.h +0 -127
- data/third_party/boringssl/crypto/fipsmodule/rand/rand.c +0 -363
- data/third_party/boringssl/crypto/fipsmodule/rand/urandom.c +0 -481
- data/third_party/boringssl/crypto/fipsmodule/rsa/blinding.c +0 -239
- data/third_party/boringssl/crypto/fipsmodule/rsa/internal.h +0 -126
- data/third_party/boringssl/crypto/fipsmodule/rsa/rsa.c +0 -879
- data/third_party/boringssl/crypto/fipsmodule/rsa/rsa_impl.c +0 -1335
- data/third_party/boringssl/crypto/fipsmodule/sha/sha512.c +0 -535
- data/third_party/boringssl/crypto/hrss/hrss.c +0 -2201
- data/third_party/boringssl/crypto/hrss/internal.h +0 -62
- data/third_party/boringssl/crypto/internal.h +0 -814
- data/third_party/boringssl/crypto/mem.c +0 -272
- data/third_party/boringssl/crypto/obj/obj.c +0 -554
- data/third_party/boringssl/crypto/obj/obj_dat.h +0 -11550
- data/third_party/boringssl/crypto/pem/pem_info.c +0 -361
- data/third_party/boringssl/crypto/pem/pem_lib.c +0 -777
- data/third_party/boringssl/crypto/pem/pem_oth.c +0 -88
- data/third_party/boringssl/crypto/pem/pem_pk8.c +0 -258
- data/third_party/boringssl/crypto/pem/pem_pkey.c +0 -219
- data/third_party/boringssl/crypto/pkcs7/pkcs7_x509.c +0 -385
- data/third_party/boringssl/crypto/poly1305/poly1305.c +0 -318
- data/third_party/boringssl/crypto/poly1305/poly1305_arm.c +0 -304
- data/third_party/boringssl/crypto/poly1305/poly1305_vec.c +0 -839
- data/third_party/boringssl/crypto/pool/pool.c +0 -221
- data/third_party/boringssl/crypto/rand_extra/deterministic.c +0 -56
- data/third_party/boringssl/crypto/rand_extra/windows.c +0 -53
- data/third_party/boringssl/crypto/siphash/siphash.c +0 -80
- data/third_party/boringssl/crypto/thread_pthread.c +0 -206
- data/third_party/boringssl/crypto/thread_win.c +0 -256
- data/third_party/boringssl/crypto/x509/a_verify.c +0 -115
- data/third_party/boringssl/crypto/x509/by_dir.c +0 -458
- data/third_party/boringssl/crypto/x509/by_file.c +0 -276
- data/third_party/boringssl/crypto/x509/x509_cmp.c +0 -477
- data/third_party/boringssl/crypto/x509/x509_obj.c +0 -198
- data/third_party/boringssl/crypto/x509/x509_r2x.c +0 -117
- data/third_party/boringssl/crypto/x509/x509_req.c +0 -342
- data/third_party/boringssl/crypto/x509/x509_set.c +0 -169
- data/third_party/boringssl/crypto/x509/x509_trs.c +0 -327
- data/third_party/boringssl/crypto/x509/x509_vfy.c +0 -2483
- data/third_party/boringssl/crypto/x509/x509_vpm.c +0 -672
- data/third_party/boringssl/crypto/x509/x509name.c +0 -388
- data/third_party/boringssl/crypto/x509/x_all.c +0 -400
- data/third_party/boringssl/crypto/x509v3/v3_alt.c +0 -629
- data/third_party/boringssl/crypto/x509v3/v3_enum.c +0 -100
- data/third_party/boringssl/crypto/x509v3/v3_info.c +0 -219
- data/third_party/boringssl/crypto/x509v3/v3_purp.c +0 -844
- data/third_party/boringssl/crypto/x509v3/v3_utl.c +0 -1396
- data/third_party/boringssl/include/openssl/base.h +0 -571
- data/third_party/boringssl/include/openssl/bn.h +0 -1045
- data/third_party/boringssl/include/openssl/buf.h +0 -137
- data/third_party/boringssl/include/openssl/bytestring.h +0 -527
- data/third_party/boringssl/include/openssl/crypto.h +0 -144
- data/third_party/boringssl/include/openssl/dh.h +0 -299
- data/third_party/boringssl/include/openssl/digest.h +0 -330
- data/third_party/boringssl/include/openssl/dsa.h +0 -441
- data/third_party/boringssl/include/openssl/ec.h +0 -417
- data/third_party/boringssl/include/openssl/ec_key.h +0 -370
- data/third_party/boringssl/include/openssl/ecdsa.h +0 -199
- data/third_party/boringssl/include/openssl/err.h +0 -461
- data/third_party/boringssl/include/openssl/evp.h +0 -1030
- data/third_party/boringssl/include/openssl/mem.h +0 -160
- data/third_party/boringssl/include/openssl/nid.h +0 -4245
- data/third_party/boringssl/include/openssl/poly1305.h +0 -51
- data/third_party/boringssl/include/openssl/rand.h +0 -125
- data/third_party/boringssl/include/openssl/rsa.h +0 -787
- data/third_party/boringssl/include/openssl/sha.h +0 -268
- data/third_party/boringssl/include/openssl/ssl.h +0 -5113
- data/third_party/boringssl/include/openssl/tls1.h +0 -634
- data/third_party/boringssl/include/openssl/x509.h +0 -1205
- data/third_party/boringssl/include/openssl/x509_vfy.h +0 -680
- data/third_party/boringssl/ssl/d1_both.cc +0 -842
- data/third_party/boringssl/ssl/d1_lib.cc +0 -268
- data/third_party/boringssl/ssl/d1_pkt.cc +0 -274
- data/third_party/boringssl/ssl/dtls_method.cc +0 -192
- data/third_party/boringssl/ssl/handoff.cc +0 -489
- data/third_party/boringssl/ssl/handshake.cc +0 -691
- data/third_party/boringssl/ssl/handshake_client.cc +0 -1871
- data/third_party/boringssl/ssl/handshake_server.cc +0 -1801
- data/third_party/boringssl/ssl/internal.h +0 -3549
- data/third_party/boringssl/ssl/s3_both.cc +0 -724
- data/third_party/boringssl/ssl/s3_lib.cc +0 -222
- data/third_party/boringssl/ssl/s3_pkt.cc +0 -459
- data/third_party/boringssl/ssl/ssl_asn1.cc +0 -828
- data/third_party/boringssl/ssl/ssl_buffer.cc +0 -287
- data/third_party/boringssl/ssl/ssl_cert.cc +0 -1016
- data/third_party/boringssl/ssl/ssl_cipher.cc +0 -1719
- data/third_party/boringssl/ssl/ssl_lib.cc +0 -3011
- data/third_party/boringssl/ssl/ssl_privkey.cc +0 -824
- data/third_party/boringssl/ssl/ssl_session.cc +0 -1273
- data/third_party/boringssl/ssl/ssl_stat.cc +0 -224
- data/third_party/boringssl/ssl/ssl_versions.cc +0 -394
- data/third_party/boringssl/ssl/t1_enc.cc +0 -361
- data/third_party/boringssl/ssl/t1_lib.cc +0 -4036
- data/third_party/boringssl/ssl/tls13_both.cc +0 -689
- data/third_party/boringssl/ssl/tls13_client.cc +0 -947
- data/third_party/boringssl/ssl/tls13_enc.cc +0 -561
- data/third_party/boringssl/ssl/tls13_server.cc +0 -1089
- data/third_party/boringssl/ssl/tls_method.cc +0 -279
- data/third_party/boringssl/ssl/tls_record.cc +0 -698
- data/third_party/boringssl/third_party/fiat/curve25519.c +0 -2167
- data/third_party/boringssl/third_party/fiat/curve25519_32.h +0 -911
- data/third_party/boringssl/third_party/fiat/curve25519_64.h +0 -559
- data/third_party/boringssl/third_party/fiat/curve25519_tables.h +0 -7880
- data/third_party/boringssl/third_party/fiat/internal.h +0 -154
- data/third_party/boringssl/third_party/fiat/p256.c +0 -1063
- data/third_party/boringssl/third_party/fiat/p256_32.h +0 -3226
- data/third_party/boringssl/third_party/fiat/p256_64.h +0 -1217
@@ -1,3011 +0,0 @@
|
|
1
|
-
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
|
2
|
-
* All rights reserved.
|
3
|
-
*
|
4
|
-
* This package is an SSL implementation written
|
5
|
-
* by Eric Young (eay@cryptsoft.com).
|
6
|
-
* The implementation was written so as to conform with Netscapes SSL.
|
7
|
-
*
|
8
|
-
* This library is free for commercial and non-commercial use as long as
|
9
|
-
* the following conditions are aheared to. The following conditions
|
10
|
-
* apply to all code found in this distribution, be it the RC4, RSA,
|
11
|
-
* lhash, DES, etc., code; not just the SSL code. The SSL documentation
|
12
|
-
* included with this distribution is covered by the same copyright terms
|
13
|
-
* except that the holder is Tim Hudson (tjh@cryptsoft.com).
|
14
|
-
*
|
15
|
-
* Copyright remains Eric Young's, and as such any Copyright notices in
|
16
|
-
* the code are not to be removed.
|
17
|
-
* If this package is used in a product, Eric Young should be given attribution
|
18
|
-
* as the author of the parts of the library used.
|
19
|
-
* This can be in the form of a textual message at program startup or
|
20
|
-
* in documentation (online or textual) provided with the package.
|
21
|
-
*
|
22
|
-
* Redistribution and use in source and binary forms, with or without
|
23
|
-
* modification, are permitted provided that the following conditions
|
24
|
-
* are met:
|
25
|
-
* 1. Redistributions of source code must retain the copyright
|
26
|
-
* notice, this list of conditions and the following disclaimer.
|
27
|
-
* 2. Redistributions in binary form must reproduce the above copyright
|
28
|
-
* notice, this list of conditions and the following disclaimer in the
|
29
|
-
* documentation and/or other materials provided with the distribution.
|
30
|
-
* 3. All advertising materials mentioning features or use of this software
|
31
|
-
* must display the following acknowledgement:
|
32
|
-
* "This product includes cryptographic software written by
|
33
|
-
* Eric Young (eay@cryptsoft.com)"
|
34
|
-
* The word 'cryptographic' can be left out if the rouines from the library
|
35
|
-
* being used are not cryptographic related :-).
|
36
|
-
* 4. If you include any Windows specific code (or a derivative thereof) from
|
37
|
-
* the apps directory (application code) you must include an acknowledgement:
|
38
|
-
* "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
|
39
|
-
*
|
40
|
-
* THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
|
41
|
-
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
42
|
-
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
43
|
-
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
44
|
-
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
45
|
-
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
46
|
-
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
47
|
-
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
48
|
-
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
49
|
-
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
50
|
-
* SUCH DAMAGE.
|
51
|
-
*
|
52
|
-
* The licence and distribution terms for any publically available version or
|
53
|
-
* derivative of this code cannot be changed. i.e. this code cannot simply be
|
54
|
-
* copied and put under another distribution licence
|
55
|
-
* [including the GNU Public Licence.]
|
56
|
-
*/
|
57
|
-
/* ====================================================================
|
58
|
-
* Copyright (c) 1998-2007 The OpenSSL Project. All rights reserved.
|
59
|
-
*
|
60
|
-
* Redistribution and use in source and binary forms, with or without
|
61
|
-
* modification, are permitted provided that the following conditions
|
62
|
-
* are met:
|
63
|
-
*
|
64
|
-
* 1. Redistributions of source code must retain the above copyright
|
65
|
-
* notice, this list of conditions and the following disclaimer.
|
66
|
-
*
|
67
|
-
* 2. Redistributions in binary form must reproduce the above copyright
|
68
|
-
* notice, this list of conditions and the following disclaimer in
|
69
|
-
* the documentation and/or other materials provided with the
|
70
|
-
* distribution.
|
71
|
-
*
|
72
|
-
* 3. All advertising materials mentioning features or use of this
|
73
|
-
* software must display the following acknowledgment:
|
74
|
-
* "This product includes software developed by the OpenSSL Project
|
75
|
-
* for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
|
76
|
-
*
|
77
|
-
* 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
|
78
|
-
* endorse or promote products derived from this software without
|
79
|
-
* prior written permission. For written permission, please contact
|
80
|
-
* openssl-core@openssl.org.
|
81
|
-
*
|
82
|
-
* 5. Products derived from this software may not be called "OpenSSL"
|
83
|
-
* nor may "OpenSSL" appear in their names without prior written
|
84
|
-
* permission of the OpenSSL Project.
|
85
|
-
*
|
86
|
-
* 6. Redistributions of any form whatsoever must retain the following
|
87
|
-
* acknowledgment:
|
88
|
-
* "This product includes software developed by the OpenSSL Project
|
89
|
-
* for use in the OpenSSL Toolkit (http://www.openssl.org/)"
|
90
|
-
*
|
91
|
-
* THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
|
92
|
-
* EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
93
|
-
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
94
|
-
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
|
95
|
-
* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
96
|
-
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
97
|
-
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
98
|
-
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
99
|
-
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
100
|
-
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
101
|
-
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
102
|
-
* OF THE POSSIBILITY OF SUCH DAMAGE.
|
103
|
-
* ====================================================================
|
104
|
-
*
|
105
|
-
* This product includes cryptographic software written by Eric Young
|
106
|
-
* (eay@cryptsoft.com). This product includes software written by Tim
|
107
|
-
* Hudson (tjh@cryptsoft.com).
|
108
|
-
*
|
109
|
-
*/
|
110
|
-
/* ====================================================================
|
111
|
-
* Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED.
|
112
|
-
* ECC cipher suite support in OpenSSL originally developed by
|
113
|
-
* SUN MICROSYSTEMS, INC., and contributed to the OpenSSL project.
|
114
|
-
*/
|
115
|
-
/* ====================================================================
|
116
|
-
* Copyright 2005 Nokia. All rights reserved.
|
117
|
-
*
|
118
|
-
* The portions of the attached software ("Contribution") is developed by
|
119
|
-
* Nokia Corporation and is licensed pursuant to the OpenSSL open source
|
120
|
-
* license.
|
121
|
-
*
|
122
|
-
* The Contribution, originally written by Mika Kousa and Pasi Eronen of
|
123
|
-
* Nokia Corporation, consists of the "PSK" (Pre-Shared Key) ciphersuites
|
124
|
-
* support (see RFC 4279) to OpenSSL.
|
125
|
-
*
|
126
|
-
* No patent licenses or other rights except those expressly stated in
|
127
|
-
* the OpenSSL open source license shall be deemed granted or received
|
128
|
-
* expressly, by implication, estoppel, or otherwise.
|
129
|
-
*
|
130
|
-
* No assurances are provided by Nokia that the Contribution does not
|
131
|
-
* infringe the patent or other intellectual property rights of any third
|
132
|
-
* party or that the license provides you with all the necessary rights
|
133
|
-
* to make use of the Contribution.
|
134
|
-
*
|
135
|
-
* THE SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. IN
|
136
|
-
* ADDITION TO THE DISCLAIMERS INCLUDED IN THE LICENSE, NOKIA
|
137
|
-
* SPECIFICALLY DISCLAIMS ANY LIABILITY FOR CLAIMS BROUGHT BY YOU OR ANY
|
138
|
-
* OTHER ENTITY BASED ON INFRINGEMENT OF INTELLECTUAL PROPERTY RIGHTS OR
|
139
|
-
* OTHERWISE. */
|
140
|
-
|
141
|
-
#include <openssl/ssl.h>
|
142
|
-
|
143
|
-
#include <assert.h>
|
144
|
-
#include <stdlib.h>
|
145
|
-
#include <string.h>
|
146
|
-
|
147
|
-
#include <openssl/bytestring.h>
|
148
|
-
#include <openssl/crypto.h>
|
149
|
-
#include <openssl/err.h>
|
150
|
-
#include <openssl/lhash.h>
|
151
|
-
#include <openssl/mem.h>
|
152
|
-
#include <openssl/rand.h>
|
153
|
-
|
154
|
-
#include "internal.h"
|
155
|
-
#include "../crypto/internal.h"
|
156
|
-
|
157
|
-
#if defined(OPENSSL_WINDOWS)
|
158
|
-
#include <sys/timeb.h>
|
159
|
-
#else
|
160
|
-
#include <sys/socket.h>
|
161
|
-
#include <sys/time.h>
|
162
|
-
#endif
|
163
|
-
|
164
|
-
|
165
|
-
BSSL_NAMESPACE_BEGIN
|
166
|
-
|
167
|
-
// |SSL_R_UNKNOWN_PROTOCOL| is no longer emitted, but continue to define it
|
168
|
-
// to avoid downstream churn.
|
169
|
-
OPENSSL_DECLARE_ERROR_REASON(SSL, UNKNOWN_PROTOCOL)
|
170
|
-
|
171
|
-
// The following errors are no longer emitted, but are used in nginx without
|
172
|
-
// #ifdefs.
|
173
|
-
OPENSSL_DECLARE_ERROR_REASON(SSL, BLOCK_CIPHER_PAD_IS_WRONG)
|
174
|
-
OPENSSL_DECLARE_ERROR_REASON(SSL, NO_CIPHERS_SPECIFIED)
|
175
|
-
|
176
|
-
// Some error codes are special. Ensure the make_errors.go script never
|
177
|
-
// regresses this.
|
178
|
-
static_assert(SSL_R_TLSV1_ALERT_NO_RENEGOTIATION ==
|
179
|
-
SSL_AD_NO_RENEGOTIATION + SSL_AD_REASON_OFFSET,
|
180
|
-
"alert reason code mismatch");
|
181
|
-
|
182
|
-
// kMaxHandshakeSize is the maximum size, in bytes, of a handshake message.
|
183
|
-
static const size_t kMaxHandshakeSize = (1u << 24) - 1;
|
184
|
-
|
185
|
-
static CRYPTO_EX_DATA_CLASS g_ex_data_class_ssl =
|
186
|
-
CRYPTO_EX_DATA_CLASS_INIT_WITH_APP_DATA;
|
187
|
-
static CRYPTO_EX_DATA_CLASS g_ex_data_class_ssl_ctx =
|
188
|
-
CRYPTO_EX_DATA_CLASS_INIT_WITH_APP_DATA;
|
189
|
-
|
190
|
-
bool CBBFinishArray(CBB *cbb, Array<uint8_t> *out) {
|
191
|
-
uint8_t *ptr;
|
192
|
-
size_t len;
|
193
|
-
if (!CBB_finish(cbb, &ptr, &len)) {
|
194
|
-
OPENSSL_PUT_ERROR(SSL, ERR_R_INTERNAL_ERROR);
|
195
|
-
return false;
|
196
|
-
}
|
197
|
-
out->Reset(ptr, len);
|
198
|
-
return true;
|
199
|
-
}
|
200
|
-
|
201
|
-
void ssl_reset_error_state(SSL *ssl) {
|
202
|
-
// Functions which use |SSL_get_error| must reset I/O and error state on
|
203
|
-
// entry.
|
204
|
-
ssl->s3->rwstate = SSL_ERROR_NONE;
|
205
|
-
ERR_clear_error();
|
206
|
-
ERR_clear_system_error();
|
207
|
-
}
|
208
|
-
|
209
|
-
void ssl_set_read_error(SSL* ssl) {
|
210
|
-
ssl->s3->read_shutdown = ssl_shutdown_error;
|
211
|
-
ssl->s3->read_error.reset(ERR_save_state());
|
212
|
-
}
|
213
|
-
|
214
|
-
static bool check_read_error(const SSL *ssl) {
|
215
|
-
if (ssl->s3->read_shutdown == ssl_shutdown_error) {
|
216
|
-
ERR_restore_state(ssl->s3->read_error.get());
|
217
|
-
return false;
|
218
|
-
}
|
219
|
-
return true;
|
220
|
-
}
|
221
|
-
|
222
|
-
bool ssl_can_write(const SSL *ssl) {
|
223
|
-
return !SSL_in_init(ssl) || ssl->s3->hs->can_early_write;
|
224
|
-
}
|
225
|
-
|
226
|
-
bool ssl_can_read(const SSL *ssl) {
|
227
|
-
return !SSL_in_init(ssl) || ssl->s3->hs->can_early_read;
|
228
|
-
}
|
229
|
-
|
230
|
-
ssl_open_record_t ssl_open_handshake(SSL *ssl, size_t *out_consumed,
|
231
|
-
uint8_t *out_alert, Span<uint8_t> in) {
|
232
|
-
*out_consumed = 0;
|
233
|
-
if (!check_read_error(ssl)) {
|
234
|
-
*out_alert = 0;
|
235
|
-
return ssl_open_record_error;
|
236
|
-
}
|
237
|
-
auto ret = ssl->method->open_handshake(ssl, out_consumed, out_alert, in);
|
238
|
-
if (ret == ssl_open_record_error) {
|
239
|
-
ssl_set_read_error(ssl);
|
240
|
-
}
|
241
|
-
return ret;
|
242
|
-
}
|
243
|
-
|
244
|
-
ssl_open_record_t ssl_open_change_cipher_spec(SSL *ssl, size_t *out_consumed,
|
245
|
-
uint8_t *out_alert,
|
246
|
-
Span<uint8_t> in) {
|
247
|
-
*out_consumed = 0;
|
248
|
-
if (!check_read_error(ssl)) {
|
249
|
-
*out_alert = 0;
|
250
|
-
return ssl_open_record_error;
|
251
|
-
}
|
252
|
-
auto ret =
|
253
|
-
ssl->method->open_change_cipher_spec(ssl, out_consumed, out_alert, in);
|
254
|
-
if (ret == ssl_open_record_error) {
|
255
|
-
ssl_set_read_error(ssl);
|
256
|
-
}
|
257
|
-
return ret;
|
258
|
-
}
|
259
|
-
|
260
|
-
ssl_open_record_t ssl_open_app_data(SSL *ssl, Span<uint8_t> *out,
|
261
|
-
size_t *out_consumed, uint8_t *out_alert,
|
262
|
-
Span<uint8_t> in) {
|
263
|
-
*out_consumed = 0;
|
264
|
-
if (!check_read_error(ssl)) {
|
265
|
-
*out_alert = 0;
|
266
|
-
return ssl_open_record_error;
|
267
|
-
}
|
268
|
-
auto ret = ssl->method->open_app_data(ssl, out, out_consumed, out_alert, in);
|
269
|
-
if (ret == ssl_open_record_error) {
|
270
|
-
ssl_set_read_error(ssl);
|
271
|
-
}
|
272
|
-
return ret;
|
273
|
-
}
|
274
|
-
|
275
|
-
void ssl_update_cache(SSL_HANDSHAKE *hs, int mode) {
|
276
|
-
SSL *const ssl = hs->ssl;
|
277
|
-
SSL_CTX *ctx = ssl->session_ctx.get();
|
278
|
-
// Never cache sessions with empty session IDs.
|
279
|
-
if (ssl->s3->established_session->session_id_length == 0 ||
|
280
|
-
ssl->s3->established_session->not_resumable ||
|
281
|
-
(ctx->session_cache_mode & mode) != mode) {
|
282
|
-
return;
|
283
|
-
}
|
284
|
-
|
285
|
-
// Clients never use the internal session cache.
|
286
|
-
int use_internal_cache = ssl->server && !(ctx->session_cache_mode &
|
287
|
-
SSL_SESS_CACHE_NO_INTERNAL_STORE);
|
288
|
-
|
289
|
-
// A client may see new sessions on abbreviated handshakes if the server
|
290
|
-
// decides to renew the ticket. Once the handshake is completed, it should be
|
291
|
-
// inserted into the cache.
|
292
|
-
if (ssl->s3->established_session.get() != ssl->session.get() ||
|
293
|
-
(!ssl->server && hs->ticket_expected)) {
|
294
|
-
if (use_internal_cache) {
|
295
|
-
SSL_CTX_add_session(ctx, ssl->s3->established_session.get());
|
296
|
-
}
|
297
|
-
if (ctx->new_session_cb != NULL) {
|
298
|
-
UniquePtr<SSL_SESSION> ref = UpRef(ssl->s3->established_session);
|
299
|
-
if (ctx->new_session_cb(ssl, ref.get())) {
|
300
|
-
// |new_session_cb|'s return value signals whether it took ownership.
|
301
|
-
ref.release();
|
302
|
-
}
|
303
|
-
}
|
304
|
-
}
|
305
|
-
|
306
|
-
if (use_internal_cache &&
|
307
|
-
!(ctx->session_cache_mode & SSL_SESS_CACHE_NO_AUTO_CLEAR)) {
|
308
|
-
// Automatically flush the internal session cache every 255 connections.
|
309
|
-
int flush_cache = 0;
|
310
|
-
CRYPTO_MUTEX_lock_write(&ctx->lock);
|
311
|
-
ctx->handshakes_since_cache_flush++;
|
312
|
-
if (ctx->handshakes_since_cache_flush >= 255) {
|
313
|
-
flush_cache = 1;
|
314
|
-
ctx->handshakes_since_cache_flush = 0;
|
315
|
-
}
|
316
|
-
CRYPTO_MUTEX_unlock_write(&ctx->lock);
|
317
|
-
|
318
|
-
if (flush_cache) {
|
319
|
-
struct OPENSSL_timeval now;
|
320
|
-
ssl_get_current_time(ssl, &now);
|
321
|
-
SSL_CTX_flush_sessions(ctx, now.tv_sec);
|
322
|
-
}
|
323
|
-
}
|
324
|
-
}
|
325
|
-
|
326
|
-
static bool cbb_add_hex(CBB *cbb, Span<const uint8_t> in) {
|
327
|
-
static const char hextable[] = "0123456789abcdef";
|
328
|
-
uint8_t *out;
|
329
|
-
|
330
|
-
if (!CBB_add_space(cbb, &out, in.size() * 2)) {
|
331
|
-
return false;
|
332
|
-
}
|
333
|
-
|
334
|
-
for (uint8_t b : in) {
|
335
|
-
*(out++) = (uint8_t)hextable[b >> 4];
|
336
|
-
*(out++) = (uint8_t)hextable[b & 0xf];
|
337
|
-
}
|
338
|
-
|
339
|
-
return true;
|
340
|
-
}
|
341
|
-
|
342
|
-
bool ssl_log_secret(const SSL *ssl, const char *label,
|
343
|
-
Span<const uint8_t> secret) {
|
344
|
-
if (ssl->ctx->keylog_callback == NULL) {
|
345
|
-
return true;
|
346
|
-
}
|
347
|
-
|
348
|
-
ScopedCBB cbb;
|
349
|
-
Array<uint8_t> line;
|
350
|
-
if (!CBB_init(cbb.get(), strlen(label) + 1 + SSL3_RANDOM_SIZE * 2 + 1 +
|
351
|
-
secret.size() * 2 + 1) ||
|
352
|
-
!CBB_add_bytes(cbb.get(), reinterpret_cast<const uint8_t *>(label),
|
353
|
-
strlen(label)) ||
|
354
|
-
!CBB_add_u8(cbb.get(), ' ') ||
|
355
|
-
!cbb_add_hex(cbb.get(), ssl->s3->client_random) ||
|
356
|
-
!CBB_add_u8(cbb.get(), ' ') ||
|
357
|
-
!cbb_add_hex(cbb.get(), secret) ||
|
358
|
-
!CBB_add_u8(cbb.get(), 0 /* NUL */) ||
|
359
|
-
!CBBFinishArray(cbb.get(), &line)) {
|
360
|
-
return false;
|
361
|
-
}
|
362
|
-
|
363
|
-
ssl->ctx->keylog_callback(ssl, reinterpret_cast<const char *>(line.data()));
|
364
|
-
return true;
|
365
|
-
}
|
366
|
-
|
367
|
-
void ssl_do_info_callback(const SSL *ssl, int type, int value) {
|
368
|
-
void (*cb)(const SSL *ssl, int type, int value) = NULL;
|
369
|
-
if (ssl->info_callback != NULL) {
|
370
|
-
cb = ssl->info_callback;
|
371
|
-
} else if (ssl->ctx->info_callback != NULL) {
|
372
|
-
cb = ssl->ctx->info_callback;
|
373
|
-
}
|
374
|
-
|
375
|
-
if (cb != NULL) {
|
376
|
-
cb(ssl, type, value);
|
377
|
-
}
|
378
|
-
}
|
379
|
-
|
380
|
-
void ssl_do_msg_callback(const SSL *ssl, int is_write, int content_type,
|
381
|
-
Span<const uint8_t> in) {
|
382
|
-
if (ssl->msg_callback == NULL) {
|
383
|
-
return;
|
384
|
-
}
|
385
|
-
|
386
|
-
// |version| is zero when calling for |SSL3_RT_HEADER| and |SSL2_VERSION| for
|
387
|
-
// a V2ClientHello.
|
388
|
-
int version;
|
389
|
-
switch (content_type) {
|
390
|
-
case 0:
|
391
|
-
// V2ClientHello
|
392
|
-
version = SSL2_VERSION;
|
393
|
-
break;
|
394
|
-
case SSL3_RT_HEADER:
|
395
|
-
version = 0;
|
396
|
-
break;
|
397
|
-
default:
|
398
|
-
version = SSL_version(ssl);
|
399
|
-
}
|
400
|
-
|
401
|
-
ssl->msg_callback(is_write, version, content_type, in.data(), in.size(),
|
402
|
-
const_cast<SSL *>(ssl), ssl->msg_callback_arg);
|
403
|
-
}
|
404
|
-
|
405
|
-
void ssl_get_current_time(const SSL *ssl, struct OPENSSL_timeval *out_clock) {
|
406
|
-
// TODO(martinkr): Change callers to |ssl_ctx_get_current_time| and drop the
|
407
|
-
// |ssl| arg from |current_time_cb| if possible.
|
408
|
-
ssl_ctx_get_current_time(ssl->ctx.get(), out_clock);
|
409
|
-
}
|
410
|
-
|
411
|
-
void ssl_ctx_get_current_time(const SSL_CTX *ctx,
|
412
|
-
struct OPENSSL_timeval *out_clock) {
|
413
|
-
if (ctx->current_time_cb != NULL) {
|
414
|
-
// TODO(davidben): Update current_time_cb to use OPENSSL_timeval. See
|
415
|
-
// https://crbug.com/boringssl/155.
|
416
|
-
struct timeval clock;
|
417
|
-
ctx->current_time_cb(nullptr /* ssl */, &clock);
|
418
|
-
if (clock.tv_sec < 0) {
|
419
|
-
assert(0);
|
420
|
-
out_clock->tv_sec = 0;
|
421
|
-
out_clock->tv_usec = 0;
|
422
|
-
} else {
|
423
|
-
out_clock->tv_sec = (uint64_t)clock.tv_sec;
|
424
|
-
out_clock->tv_usec = (uint32_t)clock.tv_usec;
|
425
|
-
}
|
426
|
-
return;
|
427
|
-
}
|
428
|
-
|
429
|
-
#if defined(BORINGSSL_UNSAFE_DETERMINISTIC_MODE)
|
430
|
-
out_clock->tv_sec = 1234;
|
431
|
-
out_clock->tv_usec = 1234;
|
432
|
-
#elif defined(OPENSSL_WINDOWS)
|
433
|
-
struct _timeb time;
|
434
|
-
_ftime(&time);
|
435
|
-
if (time.time < 0) {
|
436
|
-
assert(0);
|
437
|
-
out_clock->tv_sec = 0;
|
438
|
-
out_clock->tv_usec = 0;
|
439
|
-
} else {
|
440
|
-
out_clock->tv_sec = time.time;
|
441
|
-
out_clock->tv_usec = time.millitm * 1000;
|
442
|
-
}
|
443
|
-
#else
|
444
|
-
struct timeval clock;
|
445
|
-
gettimeofday(&clock, NULL);
|
446
|
-
if (clock.tv_sec < 0) {
|
447
|
-
assert(0);
|
448
|
-
out_clock->tv_sec = 0;
|
449
|
-
out_clock->tv_usec = 0;
|
450
|
-
} else {
|
451
|
-
out_clock->tv_sec = (uint64_t)clock.tv_sec;
|
452
|
-
out_clock->tv_usec = (uint32_t)clock.tv_usec;
|
453
|
-
}
|
454
|
-
#endif
|
455
|
-
}
|
456
|
-
|
457
|
-
void SSL_CTX_set_handoff_mode(SSL_CTX *ctx, bool on) {
|
458
|
-
ctx->handoff = on;
|
459
|
-
}
|
460
|
-
|
461
|
-
static bool ssl_can_renegotiate(const SSL *ssl) {
|
462
|
-
if (ssl->server || SSL_is_dtls(ssl)) {
|
463
|
-
return false;
|
464
|
-
}
|
465
|
-
|
466
|
-
if (ssl_protocol_version(ssl) >= TLS1_3_VERSION) {
|
467
|
-
return false;
|
468
|
-
}
|
469
|
-
|
470
|
-
// The config has already been shed.
|
471
|
-
if (!ssl->config) {
|
472
|
-
return false;
|
473
|
-
}
|
474
|
-
|
475
|
-
switch (ssl->renegotiate_mode) {
|
476
|
-
case ssl_renegotiate_ignore:
|
477
|
-
case ssl_renegotiate_never:
|
478
|
-
return false;
|
479
|
-
|
480
|
-
case ssl_renegotiate_freely:
|
481
|
-
case ssl_renegotiate_explicit:
|
482
|
-
return true;
|
483
|
-
case ssl_renegotiate_once:
|
484
|
-
return ssl->s3->total_renegotiations == 0;
|
485
|
-
}
|
486
|
-
|
487
|
-
assert(0);
|
488
|
-
return false;
|
489
|
-
}
|
490
|
-
|
491
|
-
static void ssl_maybe_shed_handshake_config(SSL *ssl) {
|
492
|
-
if (ssl->s3->hs != nullptr ||
|
493
|
-
ssl->config == nullptr ||
|
494
|
-
!ssl->config->shed_handshake_config ||
|
495
|
-
ssl_can_renegotiate(ssl)) {
|
496
|
-
return;
|
497
|
-
}
|
498
|
-
|
499
|
-
ssl->config.reset();
|
500
|
-
}
|
501
|
-
|
502
|
-
void SSL_set_handoff_mode(SSL *ssl, bool on) {
|
503
|
-
if (!ssl->config) {
|
504
|
-
return;
|
505
|
-
}
|
506
|
-
ssl->config->handoff = on;
|
507
|
-
}
|
508
|
-
|
509
|
-
bool SSL_get_traffic_secrets(const SSL *ssl,
|
510
|
-
Span<const uint8_t> *out_read_traffic_secret,
|
511
|
-
Span<const uint8_t> *out_write_traffic_secret) {
|
512
|
-
if (SSL_version(ssl) < TLS1_3_VERSION) {
|
513
|
-
OPENSSL_PUT_ERROR(SSL, SSL_R_WRONG_SSL_VERSION);
|
514
|
-
return false;
|
515
|
-
}
|
516
|
-
|
517
|
-
if (!ssl->s3->initial_handshake_complete) {
|
518
|
-
OPENSSL_PUT_ERROR(SSL, SSL_R_HANDSHAKE_NOT_COMPLETE);
|
519
|
-
return false;
|
520
|
-
}
|
521
|
-
|
522
|
-
*out_read_traffic_secret = Span<const uint8_t>(
|
523
|
-
ssl->s3->read_traffic_secret, ssl->s3->read_traffic_secret_len);
|
524
|
-
*out_write_traffic_secret = Span<const uint8_t>(
|
525
|
-
ssl->s3->write_traffic_secret, ssl->s3->write_traffic_secret_len);
|
526
|
-
|
527
|
-
return true;
|
528
|
-
}
|
529
|
-
|
530
|
-
BSSL_NAMESPACE_END
|
531
|
-
|
532
|
-
using namespace bssl;
|
533
|
-
|
534
|
-
int SSL_library_init(void) {
|
535
|
-
CRYPTO_library_init();
|
536
|
-
return 1;
|
537
|
-
}
|
538
|
-
|
539
|
-
int OPENSSL_init_ssl(uint64_t opts, const OPENSSL_INIT_SETTINGS *settings) {
|
540
|
-
CRYPTO_library_init();
|
541
|
-
return 1;
|
542
|
-
}
|
543
|
-
|
544
|
-
static uint32_t ssl_session_hash(const SSL_SESSION *sess) {
|
545
|
-
return ssl_hash_session_id(
|
546
|
-
MakeConstSpan(sess->session_id, sess->session_id_length));
|
547
|
-
}
|
548
|
-
|
549
|
-
static int ssl_session_cmp(const SSL_SESSION *a, const SSL_SESSION *b) {
|
550
|
-
if (a->session_id_length != b->session_id_length) {
|
551
|
-
return 1;
|
552
|
-
}
|
553
|
-
|
554
|
-
return OPENSSL_memcmp(a->session_id, b->session_id, a->session_id_length);
|
555
|
-
}
|
556
|
-
|
557
|
-
ssl_ctx_st::ssl_ctx_st(const SSL_METHOD *ssl_method)
|
558
|
-
: method(ssl_method->method),
|
559
|
-
x509_method(ssl_method->x509_method),
|
560
|
-
retain_only_sha256_of_client_certs(false),
|
561
|
-
quiet_shutdown(false),
|
562
|
-
ocsp_stapling_enabled(false),
|
563
|
-
signed_cert_timestamps_enabled(false),
|
564
|
-
channel_id_enabled(false),
|
565
|
-
grease_enabled(false),
|
566
|
-
allow_unknown_alpn_protos(false),
|
567
|
-
ed25519_enabled(false),
|
568
|
-
rsa_pss_rsae_certs_enabled(true),
|
569
|
-
false_start_allowed_without_alpn(false),
|
570
|
-
ignore_tls13_downgrade(false),
|
571
|
-
handoff(false),
|
572
|
-
enable_early_data(false),
|
573
|
-
pq_experiment_signal(false) {
|
574
|
-
CRYPTO_MUTEX_init(&lock);
|
575
|
-
CRYPTO_new_ex_data(&ex_data);
|
576
|
-
}
|
577
|
-
|
578
|
-
ssl_ctx_st::~ssl_ctx_st() {
|
579
|
-
// Free the internal session cache. Note that this calls the caller-supplied
|
580
|
-
// remove callback, so we must do it before clearing ex_data. (See ticket
|
581
|
-
// [openssl.org #212].)
|
582
|
-
SSL_CTX_flush_sessions(this, 0);
|
583
|
-
|
584
|
-
CRYPTO_free_ex_data(&g_ex_data_class_ssl_ctx, this, &ex_data);
|
585
|
-
|
586
|
-
CRYPTO_MUTEX_cleanup(&lock);
|
587
|
-
lh_SSL_SESSION_free(sessions);
|
588
|
-
x509_method->ssl_ctx_free(this);
|
589
|
-
}
|
590
|
-
|
591
|
-
SSL_CTX *SSL_CTX_new(const SSL_METHOD *method) {
|
592
|
-
if (method == NULL) {
|
593
|
-
OPENSSL_PUT_ERROR(SSL, SSL_R_NULL_SSL_METHOD_PASSED);
|
594
|
-
return nullptr;
|
595
|
-
}
|
596
|
-
|
597
|
-
UniquePtr<SSL_CTX> ret = MakeUnique<SSL_CTX>(method);
|
598
|
-
if (!ret) {
|
599
|
-
return nullptr;
|
600
|
-
}
|
601
|
-
|
602
|
-
ret->cert = MakeUnique<CERT>(method->x509_method);
|
603
|
-
ret->sessions = lh_SSL_SESSION_new(ssl_session_hash, ssl_session_cmp);
|
604
|
-
ret->client_CA.reset(sk_CRYPTO_BUFFER_new_null());
|
605
|
-
if (ret->cert == nullptr ||
|
606
|
-
ret->sessions == nullptr ||
|
607
|
-
ret->client_CA == nullptr ||
|
608
|
-
!ret->x509_method->ssl_ctx_new(ret.get())) {
|
609
|
-
return nullptr;
|
610
|
-
}
|
611
|
-
|
612
|
-
if (!SSL_CTX_set_strict_cipher_list(ret.get(), SSL_DEFAULT_CIPHER_LIST) ||
|
613
|
-
// Lock the SSL_CTX to the specified version, for compatibility with
|
614
|
-
// legacy uses of SSL_METHOD.
|
615
|
-
!SSL_CTX_set_max_proto_version(ret.get(), method->version) ||
|
616
|
-
!SSL_CTX_set_min_proto_version(ret.get(), method->version)) {
|
617
|
-
OPENSSL_PUT_ERROR(SSL, ERR_R_INTERNAL_ERROR);
|
618
|
-
return nullptr;
|
619
|
-
}
|
620
|
-
|
621
|
-
return ret.release();
|
622
|
-
}
|
623
|
-
|
624
|
-
int SSL_CTX_up_ref(SSL_CTX *ctx) {
|
625
|
-
CRYPTO_refcount_inc(&ctx->references);
|
626
|
-
return 1;
|
627
|
-
}
|
628
|
-
|
629
|
-
void SSL_CTX_free(SSL_CTX *ctx) {
|
630
|
-
if (ctx == NULL ||
|
631
|
-
!CRYPTO_refcount_dec_and_test_zero(&ctx->references)) {
|
632
|
-
return;
|
633
|
-
}
|
634
|
-
|
635
|
-
ctx->~ssl_ctx_st();
|
636
|
-
OPENSSL_free(ctx);
|
637
|
-
}
|
638
|
-
|
639
|
-
ssl_st::ssl_st(SSL_CTX *ctx_arg)
|
640
|
-
: method(ctx_arg->method),
|
641
|
-
max_send_fragment(ctx_arg->max_send_fragment),
|
642
|
-
msg_callback(ctx_arg->msg_callback),
|
643
|
-
msg_callback_arg(ctx_arg->msg_callback_arg),
|
644
|
-
ctx(UpRef(ctx_arg)),
|
645
|
-
session_ctx(UpRef(ctx_arg)),
|
646
|
-
options(ctx->options),
|
647
|
-
mode(ctx->mode),
|
648
|
-
max_cert_list(ctx->max_cert_list),
|
649
|
-
server(false),
|
650
|
-
quiet_shutdown(ctx->quiet_shutdown),
|
651
|
-
enable_early_data(ctx->enable_early_data) {
|
652
|
-
CRYPTO_new_ex_data(&ex_data);
|
653
|
-
}
|
654
|
-
|
655
|
-
ssl_st::~ssl_st() {
|
656
|
-
CRYPTO_free_ex_data(&g_ex_data_class_ssl, this, &ex_data);
|
657
|
-
// |config| refers to |this|, so we must release it earlier.
|
658
|
-
config.reset();
|
659
|
-
if (method != NULL) {
|
660
|
-
method->ssl_free(this);
|
661
|
-
}
|
662
|
-
}
|
663
|
-
|
664
|
-
SSL *SSL_new(SSL_CTX *ctx) {
|
665
|
-
if (ctx == nullptr) {
|
666
|
-
OPENSSL_PUT_ERROR(SSL, SSL_R_NULL_SSL_CTX);
|
667
|
-
return nullptr;
|
668
|
-
}
|
669
|
-
|
670
|
-
UniquePtr<SSL> ssl = MakeUnique<SSL>(ctx);
|
671
|
-
if (ssl == nullptr) {
|
672
|
-
return nullptr;
|
673
|
-
}
|
674
|
-
|
675
|
-
ssl->config = MakeUnique<SSL_CONFIG>(ssl.get());
|
676
|
-
if (ssl->config == nullptr) {
|
677
|
-
return nullptr;
|
678
|
-
}
|
679
|
-
ssl->config->conf_min_version = ctx->conf_min_version;
|
680
|
-
ssl->config->conf_max_version = ctx->conf_max_version;
|
681
|
-
|
682
|
-
ssl->config->cert = ssl_cert_dup(ctx->cert.get());
|
683
|
-
if (ssl->config->cert == nullptr) {
|
684
|
-
return nullptr;
|
685
|
-
}
|
686
|
-
|
687
|
-
ssl->config->verify_mode = ctx->verify_mode;
|
688
|
-
ssl->config->verify_callback = ctx->default_verify_callback;
|
689
|
-
ssl->config->custom_verify_callback = ctx->custom_verify_callback;
|
690
|
-
ssl->config->retain_only_sha256_of_client_certs =
|
691
|
-
ctx->retain_only_sha256_of_client_certs;
|
692
|
-
|
693
|
-
if (!ssl->config->supported_group_list.CopyFrom(ctx->supported_group_list) ||
|
694
|
-
!ssl->config->alpn_client_proto_list.CopyFrom(
|
695
|
-
ctx->alpn_client_proto_list) ||
|
696
|
-
!ssl->config->verify_sigalgs.CopyFrom(ctx->verify_sigalgs)) {
|
697
|
-
return nullptr;
|
698
|
-
}
|
699
|
-
|
700
|
-
if (ctx->psk_identity_hint) {
|
701
|
-
ssl->config->psk_identity_hint.reset(
|
702
|
-
BUF_strdup(ctx->psk_identity_hint.get()));
|
703
|
-
if (ssl->config->psk_identity_hint == nullptr) {
|
704
|
-
return nullptr;
|
705
|
-
}
|
706
|
-
}
|
707
|
-
ssl->config->psk_client_callback = ctx->psk_client_callback;
|
708
|
-
ssl->config->psk_server_callback = ctx->psk_server_callback;
|
709
|
-
|
710
|
-
ssl->config->channel_id_enabled = ctx->channel_id_enabled;
|
711
|
-
ssl->config->channel_id_private = UpRef(ctx->channel_id_private);
|
712
|
-
|
713
|
-
ssl->config->signed_cert_timestamps_enabled =
|
714
|
-
ctx->signed_cert_timestamps_enabled;
|
715
|
-
ssl->config->ocsp_stapling_enabled = ctx->ocsp_stapling_enabled;
|
716
|
-
ssl->config->handoff = ctx->handoff;
|
717
|
-
ssl->config->ignore_tls13_downgrade = ctx->ignore_tls13_downgrade;
|
718
|
-
ssl->quic_method = ctx->quic_method;
|
719
|
-
|
720
|
-
if (!ssl->method->ssl_new(ssl.get()) ||
|
721
|
-
!ssl->ctx->x509_method->ssl_new(ssl->s3->hs.get())) {
|
722
|
-
return nullptr;
|
723
|
-
}
|
724
|
-
|
725
|
-
return ssl.release();
|
726
|
-
}
|
727
|
-
|
728
|
-
SSL_CONFIG::SSL_CONFIG(SSL *ssl_arg)
|
729
|
-
: ssl(ssl_arg),
|
730
|
-
signed_cert_timestamps_enabled(false),
|
731
|
-
ocsp_stapling_enabled(false),
|
732
|
-
channel_id_enabled(false),
|
733
|
-
enforce_rsa_key_usage(false),
|
734
|
-
retain_only_sha256_of_client_certs(false),
|
735
|
-
handoff(false),
|
736
|
-
shed_handshake_config(false),
|
737
|
-
ignore_tls13_downgrade(false),
|
738
|
-
jdk11_workaround(false) {
|
739
|
-
assert(ssl);
|
740
|
-
}
|
741
|
-
|
742
|
-
SSL_CONFIG::~SSL_CONFIG() {
|
743
|
-
if (ssl->ctx != nullptr) {
|
744
|
-
ssl->ctx->x509_method->ssl_config_free(this);
|
745
|
-
}
|
746
|
-
}
|
747
|
-
|
748
|
-
void SSL_free(SSL *ssl) {
|
749
|
-
Delete(ssl);
|
750
|
-
}
|
751
|
-
|
752
|
-
void SSL_set_connect_state(SSL *ssl) {
|
753
|
-
ssl->server = false;
|
754
|
-
ssl->do_handshake = ssl_client_handshake;
|
755
|
-
}
|
756
|
-
|
757
|
-
void SSL_set_accept_state(SSL *ssl) {
|
758
|
-
ssl->server = true;
|
759
|
-
ssl->do_handshake = ssl_server_handshake;
|
760
|
-
}
|
761
|
-
|
762
|
-
void SSL_set0_rbio(SSL *ssl, BIO *rbio) {
|
763
|
-
ssl->rbio.reset(rbio);
|
764
|
-
}
|
765
|
-
|
766
|
-
void SSL_set0_wbio(SSL *ssl, BIO *wbio) {
|
767
|
-
ssl->wbio.reset(wbio);
|
768
|
-
}
|
769
|
-
|
770
|
-
void SSL_set_bio(SSL *ssl, BIO *rbio, BIO *wbio) {
|
771
|
-
// For historical reasons, this function has many different cases in ownership
|
772
|
-
// handling.
|
773
|
-
|
774
|
-
// If nothing has changed, do nothing
|
775
|
-
if (rbio == SSL_get_rbio(ssl) && wbio == SSL_get_wbio(ssl)) {
|
776
|
-
return;
|
777
|
-
}
|
778
|
-
|
779
|
-
// If the two arguments are equal, one fewer reference is granted than
|
780
|
-
// taken.
|
781
|
-
if (rbio != NULL && rbio == wbio) {
|
782
|
-
BIO_up_ref(rbio);
|
783
|
-
}
|
784
|
-
|
785
|
-
// If only the wbio is changed, adopt only one reference.
|
786
|
-
if (rbio == SSL_get_rbio(ssl)) {
|
787
|
-
SSL_set0_wbio(ssl, wbio);
|
788
|
-
return;
|
789
|
-
}
|
790
|
-
|
791
|
-
// There is an asymmetry here for historical reasons. If only the rbio is
|
792
|
-
// changed AND the rbio and wbio were originally different, then we only adopt
|
793
|
-
// one reference.
|
794
|
-
if (wbio == SSL_get_wbio(ssl) && SSL_get_rbio(ssl) != SSL_get_wbio(ssl)) {
|
795
|
-
SSL_set0_rbio(ssl, rbio);
|
796
|
-
return;
|
797
|
-
}
|
798
|
-
|
799
|
-
// Otherwise, adopt both references.
|
800
|
-
SSL_set0_rbio(ssl, rbio);
|
801
|
-
SSL_set0_wbio(ssl, wbio);
|
802
|
-
}
|
803
|
-
|
804
|
-
BIO *SSL_get_rbio(const SSL *ssl) { return ssl->rbio.get(); }
|
805
|
-
|
806
|
-
BIO *SSL_get_wbio(const SSL *ssl) { return ssl->wbio.get(); }
|
807
|
-
|
808
|
-
size_t SSL_quic_max_handshake_flight_len(const SSL *ssl,
|
809
|
-
enum ssl_encryption_level_t level) {
|
810
|
-
// Limits flights to 16K by default when there are no large
|
811
|
-
// (certificate-carrying) messages.
|
812
|
-
static const size_t kDefaultLimit = 16384;
|
813
|
-
|
814
|
-
switch (level) {
|
815
|
-
case ssl_encryption_initial:
|
816
|
-
return kDefaultLimit;
|
817
|
-
case ssl_encryption_early_data:
|
818
|
-
// QUIC does not send EndOfEarlyData.
|
819
|
-
return 0;
|
820
|
-
case ssl_encryption_handshake:
|
821
|
-
if (ssl->server) {
|
822
|
-
// Servers may receive Certificate message if configured to request
|
823
|
-
// client certificates.
|
824
|
-
if (!!(ssl->config->verify_mode & SSL_VERIFY_PEER) &&
|
825
|
-
ssl->max_cert_list > kDefaultLimit) {
|
826
|
-
return ssl->max_cert_list;
|
827
|
-
}
|
828
|
-
} else {
|
829
|
-
// Clients may receive both Certificate message and a CertificateRequest
|
830
|
-
// message.
|
831
|
-
if (2*ssl->max_cert_list > kDefaultLimit) {
|
832
|
-
return 2*ssl->max_cert_list;
|
833
|
-
}
|
834
|
-
}
|
835
|
-
return kDefaultLimit;
|
836
|
-
case ssl_encryption_application:
|
837
|
-
// Note there is not actually a bound on the number of NewSessionTickets
|
838
|
-
// one may send in a row. This level may need more involved flow
|
839
|
-
// control. See https://github.com/quicwg/base-drafts/issues/1834.
|
840
|
-
return kDefaultLimit;
|
841
|
-
}
|
842
|
-
|
843
|
-
return 0;
|
844
|
-
}
|
845
|
-
|
846
|
-
enum ssl_encryption_level_t SSL_quic_read_level(const SSL *ssl) {
|
847
|
-
return ssl->s3->read_level;
|
848
|
-
}
|
849
|
-
|
850
|
-
enum ssl_encryption_level_t SSL_quic_write_level(const SSL *ssl) {
|
851
|
-
return ssl->s3->write_level;
|
852
|
-
}
|
853
|
-
|
854
|
-
int SSL_provide_quic_data(SSL *ssl, enum ssl_encryption_level_t level,
|
855
|
-
const uint8_t *data, size_t len) {
|
856
|
-
if (ssl->quic_method == nullptr) {
|
857
|
-
OPENSSL_PUT_ERROR(SSL, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
|
858
|
-
return 0;
|
859
|
-
}
|
860
|
-
|
861
|
-
if (level != ssl->s3->read_level) {
|
862
|
-
OPENSSL_PUT_ERROR(SSL, SSL_R_WRONG_ENCRYPTION_LEVEL_RECEIVED);
|
863
|
-
return 0;
|
864
|
-
}
|
865
|
-
|
866
|
-
size_t new_len = (ssl->s3->hs_buf ? ssl->s3->hs_buf->length : 0) + len;
|
867
|
-
if (new_len < len ||
|
868
|
-
new_len > SSL_quic_max_handshake_flight_len(ssl, level)) {
|
869
|
-
OPENSSL_PUT_ERROR(SSL, SSL_R_EXCESSIVE_MESSAGE_SIZE);
|
870
|
-
return 0;
|
871
|
-
}
|
872
|
-
|
873
|
-
return tls_append_handshake_data(ssl, MakeConstSpan(data, len));
|
874
|
-
}
|
875
|
-
|
876
|
-
int SSL_do_handshake(SSL *ssl) {
|
877
|
-
ssl_reset_error_state(ssl);
|
878
|
-
|
879
|
-
if (ssl->do_handshake == NULL) {
|
880
|
-
OPENSSL_PUT_ERROR(SSL, SSL_R_CONNECTION_TYPE_NOT_SET);
|
881
|
-
return -1;
|
882
|
-
}
|
883
|
-
|
884
|
-
if (!SSL_in_init(ssl)) {
|
885
|
-
return 1;
|
886
|
-
}
|
887
|
-
|
888
|
-
// Run the handshake.
|
889
|
-
SSL_HANDSHAKE *hs = ssl->s3->hs.get();
|
890
|
-
|
891
|
-
bool early_return = false;
|
892
|
-
int ret = ssl_run_handshake(hs, &early_return);
|
893
|
-
ssl_do_info_callback(
|
894
|
-
ssl, ssl->server ? SSL_CB_ACCEPT_EXIT : SSL_CB_CONNECT_EXIT, ret);
|
895
|
-
if (ret <= 0) {
|
896
|
-
return ret;
|
897
|
-
}
|
898
|
-
|
899
|
-
// Destroy the handshake object if the handshake has completely finished.
|
900
|
-
if (!early_return) {
|
901
|
-
ssl->s3->hs.reset();
|
902
|
-
ssl_maybe_shed_handshake_config(ssl);
|
903
|
-
}
|
904
|
-
|
905
|
-
return 1;
|
906
|
-
}
|
907
|
-
|
908
|
-
int SSL_connect(SSL *ssl) {
|
909
|
-
if (ssl->do_handshake == NULL) {
|
910
|
-
// Not properly initialized yet
|
911
|
-
SSL_set_connect_state(ssl);
|
912
|
-
}
|
913
|
-
|
914
|
-
return SSL_do_handshake(ssl);
|
915
|
-
}
|
916
|
-
|
917
|
-
int SSL_accept(SSL *ssl) {
|
918
|
-
if (ssl->do_handshake == NULL) {
|
919
|
-
// Not properly initialized yet
|
920
|
-
SSL_set_accept_state(ssl);
|
921
|
-
}
|
922
|
-
|
923
|
-
return SSL_do_handshake(ssl);
|
924
|
-
}
|
925
|
-
|
926
|
-
static int ssl_do_post_handshake(SSL *ssl, const SSLMessage &msg) {
|
927
|
-
if (ssl_protocol_version(ssl) >= TLS1_3_VERSION) {
|
928
|
-
return tls13_post_handshake(ssl, msg);
|
929
|
-
}
|
930
|
-
|
931
|
-
// Check for renegotiation on the server before parsing to use the correct
|
932
|
-
// error. Renegotiation is triggered by a different message for servers.
|
933
|
-
if (ssl->server) {
|
934
|
-
OPENSSL_PUT_ERROR(SSL, SSL_R_NO_RENEGOTIATION);
|
935
|
-
ssl_send_alert(ssl, SSL3_AL_FATAL, SSL_AD_NO_RENEGOTIATION);
|
936
|
-
return 0;
|
937
|
-
}
|
938
|
-
|
939
|
-
if (msg.type != SSL3_MT_HELLO_REQUEST || CBS_len(&msg.body) != 0) {
|
940
|
-
ssl_send_alert(ssl, SSL3_AL_FATAL, SSL_AD_DECODE_ERROR);
|
941
|
-
OPENSSL_PUT_ERROR(SSL, SSL_R_BAD_HELLO_REQUEST);
|
942
|
-
return 0;
|
943
|
-
}
|
944
|
-
|
945
|
-
if (ssl->renegotiate_mode == ssl_renegotiate_ignore) {
|
946
|
-
return 1; // Ignore the HelloRequest.
|
947
|
-
}
|
948
|
-
|
949
|
-
ssl->s3->renegotiate_pending = true;
|
950
|
-
if (ssl->renegotiate_mode == ssl_renegotiate_explicit) {
|
951
|
-
return 1; // Handle it later.
|
952
|
-
}
|
953
|
-
|
954
|
-
if (!SSL_renegotiate(ssl)) {
|
955
|
-
ssl_send_alert(ssl, SSL3_AL_FATAL, SSL_AD_NO_RENEGOTIATION);
|
956
|
-
return 0;
|
957
|
-
}
|
958
|
-
|
959
|
-
return 1;
|
960
|
-
}
|
961
|
-
|
962
|
-
int SSL_process_quic_post_handshake(SSL *ssl) {
|
963
|
-
ssl_reset_error_state(ssl);
|
964
|
-
|
965
|
-
if (SSL_in_init(ssl)) {
|
966
|
-
OPENSSL_PUT_ERROR(SSL, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
|
967
|
-
return 0;
|
968
|
-
}
|
969
|
-
|
970
|
-
// Replay post-handshake message errors.
|
971
|
-
if (!check_read_error(ssl)) {
|
972
|
-
return 0;
|
973
|
-
}
|
974
|
-
|
975
|
-
// Process any buffered post-handshake messages.
|
976
|
-
SSLMessage msg;
|
977
|
-
while (ssl->method->get_message(ssl, &msg)) {
|
978
|
-
// Handle the post-handshake message and try again.
|
979
|
-
if (!ssl_do_post_handshake(ssl, msg)) {
|
980
|
-
ssl_set_read_error(ssl);
|
981
|
-
return 0;
|
982
|
-
}
|
983
|
-
ssl->method->next_message(ssl);
|
984
|
-
}
|
985
|
-
|
986
|
-
return 1;
|
987
|
-
}
|
988
|
-
|
989
|
-
static int ssl_read_impl(SSL *ssl) {
|
990
|
-
ssl_reset_error_state(ssl);
|
991
|
-
|
992
|
-
if (ssl->do_handshake == NULL) {
|
993
|
-
OPENSSL_PUT_ERROR(SSL, SSL_R_UNINITIALIZED);
|
994
|
-
return -1;
|
995
|
-
}
|
996
|
-
|
997
|
-
// Replay post-handshake message errors.
|
998
|
-
if (!check_read_error(ssl)) {
|
999
|
-
return -1;
|
1000
|
-
}
|
1001
|
-
|
1002
|
-
while (ssl->s3->pending_app_data.empty()) {
|
1003
|
-
if (ssl->s3->renegotiate_pending) {
|
1004
|
-
ssl->s3->rwstate = SSL_ERROR_WANT_RENEGOTIATE;
|
1005
|
-
return -1;
|
1006
|
-
}
|
1007
|
-
|
1008
|
-
// Complete the current handshake, if any. False Start will cause
|
1009
|
-
// |SSL_do_handshake| to return mid-handshake, so this may require multiple
|
1010
|
-
// iterations.
|
1011
|
-
while (!ssl_can_read(ssl)) {
|
1012
|
-
int ret = SSL_do_handshake(ssl);
|
1013
|
-
if (ret < 0) {
|
1014
|
-
return ret;
|
1015
|
-
}
|
1016
|
-
if (ret == 0) {
|
1017
|
-
OPENSSL_PUT_ERROR(SSL, SSL_R_SSL_HANDSHAKE_FAILURE);
|
1018
|
-
return -1;
|
1019
|
-
}
|
1020
|
-
}
|
1021
|
-
|
1022
|
-
// Process any buffered post-handshake messages.
|
1023
|
-
SSLMessage msg;
|
1024
|
-
if (ssl->method->get_message(ssl, &msg)) {
|
1025
|
-
// If we received an interrupt in early read (EndOfEarlyData), loop again
|
1026
|
-
// for the handshake to process it.
|
1027
|
-
if (SSL_in_init(ssl)) {
|
1028
|
-
ssl->s3->hs->can_early_read = false;
|
1029
|
-
continue;
|
1030
|
-
}
|
1031
|
-
|
1032
|
-
// Handle the post-handshake message and try again.
|
1033
|
-
if (!ssl_do_post_handshake(ssl, msg)) {
|
1034
|
-
ssl_set_read_error(ssl);
|
1035
|
-
return -1;
|
1036
|
-
}
|
1037
|
-
ssl->method->next_message(ssl);
|
1038
|
-
continue; // Loop again. We may have begun a new handshake.
|
1039
|
-
}
|
1040
|
-
|
1041
|
-
uint8_t alert = SSL_AD_DECODE_ERROR;
|
1042
|
-
size_t consumed = 0;
|
1043
|
-
auto ret = ssl_open_app_data(ssl, &ssl->s3->pending_app_data, &consumed,
|
1044
|
-
&alert, ssl->s3->read_buffer.span());
|
1045
|
-
bool retry;
|
1046
|
-
int bio_ret = ssl_handle_open_record(ssl, &retry, ret, consumed, alert);
|
1047
|
-
if (bio_ret <= 0) {
|
1048
|
-
return bio_ret;
|
1049
|
-
}
|
1050
|
-
if (!retry) {
|
1051
|
-
assert(!ssl->s3->pending_app_data.empty());
|
1052
|
-
ssl->s3->key_update_count = 0;
|
1053
|
-
}
|
1054
|
-
}
|
1055
|
-
|
1056
|
-
return 1;
|
1057
|
-
}
|
1058
|
-
|
1059
|
-
int SSL_read(SSL *ssl, void *buf, int num) {
|
1060
|
-
int ret = SSL_peek(ssl, buf, num);
|
1061
|
-
if (ret <= 0) {
|
1062
|
-
return ret;
|
1063
|
-
}
|
1064
|
-
// TODO(davidben): In DTLS, should the rest of the record be discarded? DTLS
|
1065
|
-
// is not a stream. See https://crbug.com/boringssl/65.
|
1066
|
-
ssl->s3->pending_app_data =
|
1067
|
-
ssl->s3->pending_app_data.subspan(static_cast<size_t>(ret));
|
1068
|
-
if (ssl->s3->pending_app_data.empty()) {
|
1069
|
-
ssl->s3->read_buffer.DiscardConsumed();
|
1070
|
-
}
|
1071
|
-
return ret;
|
1072
|
-
}
|
1073
|
-
|
1074
|
-
int SSL_peek(SSL *ssl, void *buf, int num) {
|
1075
|
-
if (ssl->quic_method != nullptr) {
|
1076
|
-
OPENSSL_PUT_ERROR(SSL, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
|
1077
|
-
return 0;
|
1078
|
-
}
|
1079
|
-
|
1080
|
-
int ret = ssl_read_impl(ssl);
|
1081
|
-
if (ret <= 0) {
|
1082
|
-
return ret;
|
1083
|
-
}
|
1084
|
-
if (num <= 0) {
|
1085
|
-
return num;
|
1086
|
-
}
|
1087
|
-
size_t todo =
|
1088
|
-
std::min(ssl->s3->pending_app_data.size(), static_cast<size_t>(num));
|
1089
|
-
OPENSSL_memcpy(buf, ssl->s3->pending_app_data.data(), todo);
|
1090
|
-
return static_cast<int>(todo);
|
1091
|
-
}
|
1092
|
-
|
1093
|
-
int SSL_write(SSL *ssl, const void *buf, int num) {
|
1094
|
-
ssl_reset_error_state(ssl);
|
1095
|
-
|
1096
|
-
if (ssl->quic_method != nullptr) {
|
1097
|
-
OPENSSL_PUT_ERROR(SSL, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
|
1098
|
-
return 0;
|
1099
|
-
}
|
1100
|
-
|
1101
|
-
if (ssl->do_handshake == NULL) {
|
1102
|
-
OPENSSL_PUT_ERROR(SSL, SSL_R_UNINITIALIZED);
|
1103
|
-
return -1;
|
1104
|
-
}
|
1105
|
-
|
1106
|
-
if (ssl->s3->write_shutdown != ssl_shutdown_none) {
|
1107
|
-
OPENSSL_PUT_ERROR(SSL, SSL_R_PROTOCOL_IS_SHUTDOWN);
|
1108
|
-
return -1;
|
1109
|
-
}
|
1110
|
-
|
1111
|
-
int ret = 0;
|
1112
|
-
bool needs_handshake = false;
|
1113
|
-
do {
|
1114
|
-
// If necessary, complete the handshake implicitly.
|
1115
|
-
if (!ssl_can_write(ssl)) {
|
1116
|
-
ret = SSL_do_handshake(ssl);
|
1117
|
-
if (ret < 0) {
|
1118
|
-
return ret;
|
1119
|
-
}
|
1120
|
-
if (ret == 0) {
|
1121
|
-
OPENSSL_PUT_ERROR(SSL, SSL_R_SSL_HANDSHAKE_FAILURE);
|
1122
|
-
return -1;
|
1123
|
-
}
|
1124
|
-
}
|
1125
|
-
|
1126
|
-
ret = ssl->method->write_app_data(ssl, &needs_handshake,
|
1127
|
-
(const uint8_t *)buf, num);
|
1128
|
-
} while (needs_handshake);
|
1129
|
-
return ret;
|
1130
|
-
}
|
1131
|
-
|
1132
|
-
int SSL_key_update(SSL *ssl, int request_type) {
|
1133
|
-
ssl_reset_error_state(ssl);
|
1134
|
-
|
1135
|
-
if (ssl->do_handshake == NULL) {
|
1136
|
-
OPENSSL_PUT_ERROR(SSL, SSL_R_UNINITIALIZED);
|
1137
|
-
return 0;
|
1138
|
-
}
|
1139
|
-
|
1140
|
-
if (ssl->ctx->quic_method != nullptr) {
|
1141
|
-
OPENSSL_PUT_ERROR(SSL, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
|
1142
|
-
return 0;
|
1143
|
-
}
|
1144
|
-
|
1145
|
-
if (!ssl->s3->initial_handshake_complete) {
|
1146
|
-
OPENSSL_PUT_ERROR(SSL, SSL_R_HANDSHAKE_NOT_COMPLETE);
|
1147
|
-
return 0;
|
1148
|
-
}
|
1149
|
-
|
1150
|
-
if (ssl_protocol_version(ssl) < TLS1_3_VERSION) {
|
1151
|
-
OPENSSL_PUT_ERROR(SSL, SSL_R_WRONG_SSL_VERSION);
|
1152
|
-
return 0;
|
1153
|
-
}
|
1154
|
-
|
1155
|
-
if (!ssl->s3->key_update_pending &&
|
1156
|
-
!tls13_add_key_update(ssl, request_type)) {
|
1157
|
-
return 0;
|
1158
|
-
}
|
1159
|
-
|
1160
|
-
return 1;
|
1161
|
-
}
|
1162
|
-
|
1163
|
-
int SSL_shutdown(SSL *ssl) {
|
1164
|
-
ssl_reset_error_state(ssl);
|
1165
|
-
|
1166
|
-
if (ssl->do_handshake == NULL) {
|
1167
|
-
OPENSSL_PUT_ERROR(SSL, SSL_R_UNINITIALIZED);
|
1168
|
-
return -1;
|
1169
|
-
}
|
1170
|
-
|
1171
|
-
// If we are in the middle of a handshake, silently succeed. Consumers often
|
1172
|
-
// call this function before |SSL_free|, whether the handshake succeeded or
|
1173
|
-
// not. We assume the caller has already handled failed handshakes.
|
1174
|
-
if (SSL_in_init(ssl)) {
|
1175
|
-
return 1;
|
1176
|
-
}
|
1177
|
-
|
1178
|
-
if (ssl->quiet_shutdown) {
|
1179
|
-
// Do nothing if configured not to send a close_notify.
|
1180
|
-
ssl->s3->write_shutdown = ssl_shutdown_close_notify;
|
1181
|
-
ssl->s3->read_shutdown = ssl_shutdown_close_notify;
|
1182
|
-
return 1;
|
1183
|
-
}
|
1184
|
-
|
1185
|
-
// This function completes in two stages. It sends a close_notify and then it
|
1186
|
-
// waits for a close_notify to come in. Perform exactly one action and return
|
1187
|
-
// whether or not it succeeds.
|
1188
|
-
|
1189
|
-
if (ssl->s3->write_shutdown != ssl_shutdown_close_notify) {
|
1190
|
-
// Send a close_notify.
|
1191
|
-
if (ssl_send_alert_impl(ssl, SSL3_AL_WARNING, SSL_AD_CLOSE_NOTIFY) <= 0) {
|
1192
|
-
return -1;
|
1193
|
-
}
|
1194
|
-
} else if (ssl->s3->alert_dispatch) {
|
1195
|
-
// Finish sending the close_notify.
|
1196
|
-
if (ssl->method->dispatch_alert(ssl) <= 0) {
|
1197
|
-
return -1;
|
1198
|
-
}
|
1199
|
-
} else if (ssl->s3->read_shutdown != ssl_shutdown_close_notify) {
|
1200
|
-
if (SSL_is_dtls(ssl)) {
|
1201
|
-
// Bidirectional shutdown doesn't make sense for an unordered
|
1202
|
-
// transport. DTLS alerts also aren't delivered reliably, so we may even
|
1203
|
-
// time out because the peer never received our close_notify. Report to
|
1204
|
-
// the caller that the channel has fully shut down.
|
1205
|
-
if (ssl->s3->read_shutdown == ssl_shutdown_error) {
|
1206
|
-
ERR_restore_state(ssl->s3->read_error.get());
|
1207
|
-
return -1;
|
1208
|
-
}
|
1209
|
-
ssl->s3->read_shutdown = ssl_shutdown_close_notify;
|
1210
|
-
} else {
|
1211
|
-
// Process records until an error, close_notify, or application data.
|
1212
|
-
if (ssl_read_impl(ssl) > 0) {
|
1213
|
-
// We received some unexpected application data.
|
1214
|
-
OPENSSL_PUT_ERROR(SSL, SSL_R_APPLICATION_DATA_ON_SHUTDOWN);
|
1215
|
-
return -1;
|
1216
|
-
}
|
1217
|
-
if (ssl->s3->read_shutdown != ssl_shutdown_close_notify) {
|
1218
|
-
return -1;
|
1219
|
-
}
|
1220
|
-
}
|
1221
|
-
}
|
1222
|
-
|
1223
|
-
// Return 0 for unidirectional shutdown and 1 for bidirectional shutdown.
|
1224
|
-
return ssl->s3->read_shutdown == ssl_shutdown_close_notify;
|
1225
|
-
}
|
1226
|
-
|
1227
|
-
int SSL_send_fatal_alert(SSL *ssl, uint8_t alert) {
|
1228
|
-
if (ssl->s3->alert_dispatch) {
|
1229
|
-
if (ssl->s3->send_alert[0] != SSL3_AL_FATAL ||
|
1230
|
-
ssl->s3->send_alert[1] != alert) {
|
1231
|
-
// We are already attempting to write a different alert.
|
1232
|
-
OPENSSL_PUT_ERROR(SSL, SSL_R_PROTOCOL_IS_SHUTDOWN);
|
1233
|
-
return -1;
|
1234
|
-
}
|
1235
|
-
return ssl->method->dispatch_alert(ssl);
|
1236
|
-
}
|
1237
|
-
|
1238
|
-
return ssl_send_alert_impl(ssl, SSL3_AL_FATAL, alert);
|
1239
|
-
}
|
1240
|
-
|
1241
|
-
void SSL_CTX_enable_pq_experiment_signal(SSL_CTX *ctx) {
|
1242
|
-
ctx->pq_experiment_signal = true;
|
1243
|
-
}
|
1244
|
-
|
1245
|
-
int SSL_pq_experiment_signal_seen(const SSL *ssl) {
|
1246
|
-
return ssl->s3->pq_experiment_signal_seen;
|
1247
|
-
}
|
1248
|
-
|
1249
|
-
int SSL_set_quic_transport_params(SSL *ssl, const uint8_t *params,
|
1250
|
-
size_t params_len) {
|
1251
|
-
return ssl->config && ssl->config->quic_transport_params.CopyFrom(
|
1252
|
-
MakeConstSpan(params, params_len));
|
1253
|
-
}
|
1254
|
-
|
1255
|
-
void SSL_get_peer_quic_transport_params(const SSL *ssl,
|
1256
|
-
const uint8_t **out_params,
|
1257
|
-
size_t *out_params_len) {
|
1258
|
-
*out_params = ssl->s3->peer_quic_transport_params.data();
|
1259
|
-
*out_params_len = ssl->s3->peer_quic_transport_params.size();
|
1260
|
-
}
|
1261
|
-
|
1262
|
-
void SSL_CTX_set_early_data_enabled(SSL_CTX *ctx, int enabled) {
|
1263
|
-
ctx->enable_early_data = !!enabled;
|
1264
|
-
}
|
1265
|
-
|
1266
|
-
void SSL_set_early_data_enabled(SSL *ssl, int enabled) {
|
1267
|
-
ssl->enable_early_data = !!enabled;
|
1268
|
-
}
|
1269
|
-
|
1270
|
-
int SSL_in_early_data(const SSL *ssl) {
|
1271
|
-
if (ssl->s3->hs == NULL) {
|
1272
|
-
return 0;
|
1273
|
-
}
|
1274
|
-
return ssl->s3->hs->in_early_data;
|
1275
|
-
}
|
1276
|
-
|
1277
|
-
int SSL_early_data_accepted(const SSL *ssl) {
|
1278
|
-
return ssl->s3->early_data_accepted;
|
1279
|
-
}
|
1280
|
-
|
1281
|
-
void SSL_reset_early_data_reject(SSL *ssl) {
|
1282
|
-
SSL_HANDSHAKE *hs = ssl->s3->hs.get();
|
1283
|
-
if (hs == NULL ||
|
1284
|
-
hs->wait != ssl_hs_early_data_rejected) {
|
1285
|
-
abort();
|
1286
|
-
}
|
1287
|
-
|
1288
|
-
hs->wait = ssl_hs_ok;
|
1289
|
-
hs->in_early_data = false;
|
1290
|
-
hs->early_session.reset();
|
1291
|
-
|
1292
|
-
// Discard any unfinished writes from the perspective of |SSL_write|'s
|
1293
|
-
// retry. The handshake will transparently flush out the pending record
|
1294
|
-
// (discarded by the server) to keep the framing correct.
|
1295
|
-
ssl->s3->wpend_pending = false;
|
1296
|
-
}
|
1297
|
-
|
1298
|
-
enum ssl_early_data_reason_t SSL_get_early_data_reason(const SSL *ssl) {
|
1299
|
-
return ssl->s3->early_data_reason;
|
1300
|
-
}
|
1301
|
-
|
1302
|
-
static int bio_retry_reason_to_error(int reason) {
|
1303
|
-
switch (reason) {
|
1304
|
-
case BIO_RR_CONNECT:
|
1305
|
-
return SSL_ERROR_WANT_CONNECT;
|
1306
|
-
case BIO_RR_ACCEPT:
|
1307
|
-
return SSL_ERROR_WANT_ACCEPT;
|
1308
|
-
default:
|
1309
|
-
return SSL_ERROR_SYSCALL;
|
1310
|
-
}
|
1311
|
-
}
|
1312
|
-
|
1313
|
-
int SSL_get_error(const SSL *ssl, int ret_code) {
|
1314
|
-
if (ret_code > 0) {
|
1315
|
-
return SSL_ERROR_NONE;
|
1316
|
-
}
|
1317
|
-
|
1318
|
-
// Make things return SSL_ERROR_SYSCALL when doing SSL_do_handshake etc,
|
1319
|
-
// where we do encode the error
|
1320
|
-
uint32_t err = ERR_peek_error();
|
1321
|
-
if (err != 0) {
|
1322
|
-
if (ERR_GET_LIB(err) == ERR_LIB_SYS) {
|
1323
|
-
return SSL_ERROR_SYSCALL;
|
1324
|
-
}
|
1325
|
-
return SSL_ERROR_SSL;
|
1326
|
-
}
|
1327
|
-
|
1328
|
-
if (ret_code == 0) {
|
1329
|
-
if (ssl->s3->read_shutdown == ssl_shutdown_close_notify) {
|
1330
|
-
return SSL_ERROR_ZERO_RETURN;
|
1331
|
-
}
|
1332
|
-
// An EOF was observed which violates the protocol, and the underlying
|
1333
|
-
// transport does not participate in the error queue. Bubble up to the
|
1334
|
-
// caller.
|
1335
|
-
return SSL_ERROR_SYSCALL;
|
1336
|
-
}
|
1337
|
-
|
1338
|
-
switch (ssl->s3->rwstate) {
|
1339
|
-
case SSL_ERROR_PENDING_SESSION:
|
1340
|
-
case SSL_ERROR_PENDING_CERTIFICATE:
|
1341
|
-
case SSL_ERROR_HANDOFF:
|
1342
|
-
case SSL_ERROR_HANDBACK:
|
1343
|
-
case SSL_ERROR_WANT_X509_LOOKUP:
|
1344
|
-
case SSL_ERROR_WANT_CHANNEL_ID_LOOKUP:
|
1345
|
-
case SSL_ERROR_WANT_PRIVATE_KEY_OPERATION:
|
1346
|
-
case SSL_ERROR_PENDING_TICKET:
|
1347
|
-
case SSL_ERROR_EARLY_DATA_REJECTED:
|
1348
|
-
case SSL_ERROR_WANT_CERTIFICATE_VERIFY:
|
1349
|
-
case SSL_ERROR_WANT_RENEGOTIATE:
|
1350
|
-
return ssl->s3->rwstate;
|
1351
|
-
|
1352
|
-
case SSL_ERROR_WANT_READ: {
|
1353
|
-
if (ssl->quic_method) {
|
1354
|
-
return SSL_ERROR_WANT_READ;
|
1355
|
-
}
|
1356
|
-
BIO *bio = SSL_get_rbio(ssl);
|
1357
|
-
if (BIO_should_read(bio)) {
|
1358
|
-
return SSL_ERROR_WANT_READ;
|
1359
|
-
}
|
1360
|
-
|
1361
|
-
if (BIO_should_write(bio)) {
|
1362
|
-
// TODO(davidben): OpenSSL historically checked for writes on the read
|
1363
|
-
// BIO. Can this be removed?
|
1364
|
-
return SSL_ERROR_WANT_WRITE;
|
1365
|
-
}
|
1366
|
-
|
1367
|
-
if (BIO_should_io_special(bio)) {
|
1368
|
-
return bio_retry_reason_to_error(BIO_get_retry_reason(bio));
|
1369
|
-
}
|
1370
|
-
|
1371
|
-
break;
|
1372
|
-
}
|
1373
|
-
|
1374
|
-
case SSL_ERROR_WANT_WRITE: {
|
1375
|
-
BIO *bio = SSL_get_wbio(ssl);
|
1376
|
-
if (BIO_should_write(bio)) {
|
1377
|
-
return SSL_ERROR_WANT_WRITE;
|
1378
|
-
}
|
1379
|
-
|
1380
|
-
if (BIO_should_read(bio)) {
|
1381
|
-
// TODO(davidben): OpenSSL historically checked for reads on the write
|
1382
|
-
// BIO. Can this be removed?
|
1383
|
-
return SSL_ERROR_WANT_READ;
|
1384
|
-
}
|
1385
|
-
|
1386
|
-
if (BIO_should_io_special(bio)) {
|
1387
|
-
return bio_retry_reason_to_error(BIO_get_retry_reason(bio));
|
1388
|
-
}
|
1389
|
-
|
1390
|
-
break;
|
1391
|
-
}
|
1392
|
-
}
|
1393
|
-
|
1394
|
-
return SSL_ERROR_SYSCALL;
|
1395
|
-
}
|
1396
|
-
|
1397
|
-
const char *SSL_error_description(int err) {
|
1398
|
-
switch (err) {
|
1399
|
-
case SSL_ERROR_NONE:
|
1400
|
-
return "NONE";
|
1401
|
-
case SSL_ERROR_SSL:
|
1402
|
-
return "SSL";
|
1403
|
-
case SSL_ERROR_WANT_READ:
|
1404
|
-
return "WANT_READ";
|
1405
|
-
case SSL_ERROR_WANT_WRITE:
|
1406
|
-
return "WANT_WRITE";
|
1407
|
-
case SSL_ERROR_WANT_X509_LOOKUP:
|
1408
|
-
return "WANT_X509_LOOKUP";
|
1409
|
-
case SSL_ERROR_SYSCALL:
|
1410
|
-
return "SYSCALL";
|
1411
|
-
case SSL_ERROR_ZERO_RETURN:
|
1412
|
-
return "ZERO_RETURN";
|
1413
|
-
case SSL_ERROR_WANT_CONNECT:
|
1414
|
-
return "WANT_CONNECT";
|
1415
|
-
case SSL_ERROR_WANT_ACCEPT:
|
1416
|
-
return "WANT_ACCEPT";
|
1417
|
-
case SSL_ERROR_WANT_CHANNEL_ID_LOOKUP:
|
1418
|
-
return "WANT_CHANNEL_ID_LOOKUP";
|
1419
|
-
case SSL_ERROR_PENDING_SESSION:
|
1420
|
-
return "PENDING_SESSION";
|
1421
|
-
case SSL_ERROR_PENDING_CERTIFICATE:
|
1422
|
-
return "PENDING_CERTIFICATE";
|
1423
|
-
case SSL_ERROR_WANT_PRIVATE_KEY_OPERATION:
|
1424
|
-
return "WANT_PRIVATE_KEY_OPERATION";
|
1425
|
-
case SSL_ERROR_PENDING_TICKET:
|
1426
|
-
return "PENDING_TICKET";
|
1427
|
-
case SSL_ERROR_EARLY_DATA_REJECTED:
|
1428
|
-
return "EARLY_DATA_REJECTED";
|
1429
|
-
case SSL_ERROR_WANT_CERTIFICATE_VERIFY:
|
1430
|
-
return "WANT_CERTIFICATE_VERIFY";
|
1431
|
-
case SSL_ERROR_HANDOFF:
|
1432
|
-
return "HANDOFF";
|
1433
|
-
case SSL_ERROR_HANDBACK:
|
1434
|
-
return "HANDBACK";
|
1435
|
-
default:
|
1436
|
-
return nullptr;
|
1437
|
-
}
|
1438
|
-
}
|
1439
|
-
|
1440
|
-
uint32_t SSL_CTX_set_options(SSL_CTX *ctx, uint32_t options) {
|
1441
|
-
ctx->options |= options;
|
1442
|
-
return ctx->options;
|
1443
|
-
}
|
1444
|
-
|
1445
|
-
uint32_t SSL_CTX_clear_options(SSL_CTX *ctx, uint32_t options) {
|
1446
|
-
ctx->options &= ~options;
|
1447
|
-
return ctx->options;
|
1448
|
-
}
|
1449
|
-
|
1450
|
-
uint32_t SSL_CTX_get_options(const SSL_CTX *ctx) { return ctx->options; }
|
1451
|
-
|
1452
|
-
uint32_t SSL_set_options(SSL *ssl, uint32_t options) {
|
1453
|
-
ssl->options |= options;
|
1454
|
-
return ssl->options;
|
1455
|
-
}
|
1456
|
-
|
1457
|
-
uint32_t SSL_clear_options(SSL *ssl, uint32_t options) {
|
1458
|
-
ssl->options &= ~options;
|
1459
|
-
return ssl->options;
|
1460
|
-
}
|
1461
|
-
|
1462
|
-
uint32_t SSL_get_options(const SSL *ssl) { return ssl->options; }
|
1463
|
-
|
1464
|
-
uint32_t SSL_CTX_set_mode(SSL_CTX *ctx, uint32_t mode) {
|
1465
|
-
ctx->mode |= mode;
|
1466
|
-
return ctx->mode;
|
1467
|
-
}
|
1468
|
-
|
1469
|
-
uint32_t SSL_CTX_clear_mode(SSL_CTX *ctx, uint32_t mode) {
|
1470
|
-
ctx->mode &= ~mode;
|
1471
|
-
return ctx->mode;
|
1472
|
-
}
|
1473
|
-
|
1474
|
-
uint32_t SSL_CTX_get_mode(const SSL_CTX *ctx) { return ctx->mode; }
|
1475
|
-
|
1476
|
-
uint32_t SSL_set_mode(SSL *ssl, uint32_t mode) {
|
1477
|
-
ssl->mode |= mode;
|
1478
|
-
return ssl->mode;
|
1479
|
-
}
|
1480
|
-
|
1481
|
-
uint32_t SSL_clear_mode(SSL *ssl, uint32_t mode) {
|
1482
|
-
ssl->mode &= ~mode;
|
1483
|
-
return ssl->mode;
|
1484
|
-
}
|
1485
|
-
|
1486
|
-
uint32_t SSL_get_mode(const SSL *ssl) { return ssl->mode; }
|
1487
|
-
|
1488
|
-
void SSL_CTX_set0_buffer_pool(SSL_CTX *ctx, CRYPTO_BUFFER_POOL *pool) {
|
1489
|
-
ctx->pool = pool;
|
1490
|
-
}
|
1491
|
-
|
1492
|
-
int SSL_get_tls_unique(const SSL *ssl, uint8_t *out, size_t *out_len,
|
1493
|
-
size_t max_out) {
|
1494
|
-
*out_len = 0;
|
1495
|
-
OPENSSL_memset(out, 0, max_out);
|
1496
|
-
|
1497
|
-
// tls-unique is not defined for TLS 1.3.
|
1498
|
-
if (!ssl->s3->initial_handshake_complete ||
|
1499
|
-
ssl_protocol_version(ssl) >= TLS1_3_VERSION) {
|
1500
|
-
return 0;
|
1501
|
-
}
|
1502
|
-
|
1503
|
-
// The tls-unique value is the first Finished message in the handshake, which
|
1504
|
-
// is the client's in a full handshake and the server's for a resumption. See
|
1505
|
-
// https://tools.ietf.org/html/rfc5929#section-3.1.
|
1506
|
-
const uint8_t *finished = ssl->s3->previous_client_finished;
|
1507
|
-
size_t finished_len = ssl->s3->previous_client_finished_len;
|
1508
|
-
if (ssl->session != NULL) {
|
1509
|
-
// tls-unique is broken for resumed sessions unless EMS is used.
|
1510
|
-
if (!ssl->session->extended_master_secret) {
|
1511
|
-
return 0;
|
1512
|
-
}
|
1513
|
-
finished = ssl->s3->previous_server_finished;
|
1514
|
-
finished_len = ssl->s3->previous_server_finished_len;
|
1515
|
-
}
|
1516
|
-
|
1517
|
-
*out_len = finished_len;
|
1518
|
-
if (finished_len > max_out) {
|
1519
|
-
*out_len = max_out;
|
1520
|
-
}
|
1521
|
-
|
1522
|
-
OPENSSL_memcpy(out, finished, *out_len);
|
1523
|
-
return 1;
|
1524
|
-
}
|
1525
|
-
|
1526
|
-
static int set_session_id_context(CERT *cert, const uint8_t *sid_ctx,
|
1527
|
-
size_t sid_ctx_len) {
|
1528
|
-
if (sid_ctx_len > sizeof(cert->sid_ctx)) {
|
1529
|
-
OPENSSL_PUT_ERROR(SSL, SSL_R_SSL_SESSION_ID_CONTEXT_TOO_LONG);
|
1530
|
-
return 0;
|
1531
|
-
}
|
1532
|
-
|
1533
|
-
static_assert(sizeof(cert->sid_ctx) < 256, "sid_ctx too large");
|
1534
|
-
cert->sid_ctx_length = (uint8_t)sid_ctx_len;
|
1535
|
-
OPENSSL_memcpy(cert->sid_ctx, sid_ctx, sid_ctx_len);
|
1536
|
-
return 1;
|
1537
|
-
}
|
1538
|
-
|
1539
|
-
int SSL_CTX_set_session_id_context(SSL_CTX *ctx, const uint8_t *sid_ctx,
|
1540
|
-
size_t sid_ctx_len) {
|
1541
|
-
return set_session_id_context(ctx->cert.get(), sid_ctx, sid_ctx_len);
|
1542
|
-
}
|
1543
|
-
|
1544
|
-
int SSL_set_session_id_context(SSL *ssl, const uint8_t *sid_ctx,
|
1545
|
-
size_t sid_ctx_len) {
|
1546
|
-
if (!ssl->config) {
|
1547
|
-
return 0;
|
1548
|
-
}
|
1549
|
-
return set_session_id_context(ssl->config->cert.get(), sid_ctx, sid_ctx_len);
|
1550
|
-
}
|
1551
|
-
|
1552
|
-
const uint8_t *SSL_get0_session_id_context(const SSL *ssl, size_t *out_len) {
|
1553
|
-
if (!ssl->config) {
|
1554
|
-
assert(ssl->config);
|
1555
|
-
*out_len = 0;
|
1556
|
-
return NULL;
|
1557
|
-
}
|
1558
|
-
*out_len = ssl->config->cert->sid_ctx_length;
|
1559
|
-
return ssl->config->cert->sid_ctx;
|
1560
|
-
}
|
1561
|
-
|
1562
|
-
void SSL_certs_clear(SSL *ssl) {
|
1563
|
-
if (!ssl->config) {
|
1564
|
-
return;
|
1565
|
-
}
|
1566
|
-
ssl_cert_clear_certs(ssl->config->cert.get());
|
1567
|
-
}
|
1568
|
-
|
1569
|
-
int SSL_get_fd(const SSL *ssl) { return SSL_get_rfd(ssl); }
|
1570
|
-
|
1571
|
-
int SSL_get_rfd(const SSL *ssl) {
|
1572
|
-
int ret = -1;
|
1573
|
-
BIO *b = BIO_find_type(SSL_get_rbio(ssl), BIO_TYPE_DESCRIPTOR);
|
1574
|
-
if (b != NULL) {
|
1575
|
-
BIO_get_fd(b, &ret);
|
1576
|
-
}
|
1577
|
-
return ret;
|
1578
|
-
}
|
1579
|
-
|
1580
|
-
int SSL_get_wfd(const SSL *ssl) {
|
1581
|
-
int ret = -1;
|
1582
|
-
BIO *b = BIO_find_type(SSL_get_wbio(ssl), BIO_TYPE_DESCRIPTOR);
|
1583
|
-
if (b != NULL) {
|
1584
|
-
BIO_get_fd(b, &ret);
|
1585
|
-
}
|
1586
|
-
return ret;
|
1587
|
-
}
|
1588
|
-
|
1589
|
-
int SSL_set_fd(SSL *ssl, int fd) {
|
1590
|
-
BIO *bio = BIO_new(BIO_s_socket());
|
1591
|
-
if (bio == NULL) {
|
1592
|
-
OPENSSL_PUT_ERROR(SSL, ERR_R_BUF_LIB);
|
1593
|
-
return 0;
|
1594
|
-
}
|
1595
|
-
BIO_set_fd(bio, fd, BIO_NOCLOSE);
|
1596
|
-
SSL_set_bio(ssl, bio, bio);
|
1597
|
-
return 1;
|
1598
|
-
}
|
1599
|
-
|
1600
|
-
int SSL_set_wfd(SSL *ssl, int fd) {
|
1601
|
-
BIO *rbio = SSL_get_rbio(ssl);
|
1602
|
-
if (rbio == NULL || BIO_method_type(rbio) != BIO_TYPE_SOCKET ||
|
1603
|
-
BIO_get_fd(rbio, NULL) != fd) {
|
1604
|
-
BIO *bio = BIO_new(BIO_s_socket());
|
1605
|
-
if (bio == NULL) {
|
1606
|
-
OPENSSL_PUT_ERROR(SSL, ERR_R_BUF_LIB);
|
1607
|
-
return 0;
|
1608
|
-
}
|
1609
|
-
BIO_set_fd(bio, fd, BIO_NOCLOSE);
|
1610
|
-
SSL_set0_wbio(ssl, bio);
|
1611
|
-
} else {
|
1612
|
-
// Copy the rbio over to the wbio.
|
1613
|
-
BIO_up_ref(rbio);
|
1614
|
-
SSL_set0_wbio(ssl, rbio);
|
1615
|
-
}
|
1616
|
-
|
1617
|
-
return 1;
|
1618
|
-
}
|
1619
|
-
|
1620
|
-
int SSL_set_rfd(SSL *ssl, int fd) {
|
1621
|
-
BIO *wbio = SSL_get_wbio(ssl);
|
1622
|
-
if (wbio == NULL || BIO_method_type(wbio) != BIO_TYPE_SOCKET ||
|
1623
|
-
BIO_get_fd(wbio, NULL) != fd) {
|
1624
|
-
BIO *bio = BIO_new(BIO_s_socket());
|
1625
|
-
if (bio == NULL) {
|
1626
|
-
OPENSSL_PUT_ERROR(SSL, ERR_R_BUF_LIB);
|
1627
|
-
return 0;
|
1628
|
-
}
|
1629
|
-
BIO_set_fd(bio, fd, BIO_NOCLOSE);
|
1630
|
-
SSL_set0_rbio(ssl, bio);
|
1631
|
-
} else {
|
1632
|
-
// Copy the wbio over to the rbio.
|
1633
|
-
BIO_up_ref(wbio);
|
1634
|
-
SSL_set0_rbio(ssl, wbio);
|
1635
|
-
}
|
1636
|
-
return 1;
|
1637
|
-
}
|
1638
|
-
|
1639
|
-
static size_t copy_finished(void *out, size_t out_len, const uint8_t *in,
|
1640
|
-
size_t in_len) {
|
1641
|
-
if (out_len > in_len) {
|
1642
|
-
out_len = in_len;
|
1643
|
-
}
|
1644
|
-
OPENSSL_memcpy(out, in, out_len);
|
1645
|
-
return in_len;
|
1646
|
-
}
|
1647
|
-
|
1648
|
-
size_t SSL_get_finished(const SSL *ssl, void *buf, size_t count) {
|
1649
|
-
if (!ssl->s3->initial_handshake_complete ||
|
1650
|
-
ssl_protocol_version(ssl) >= TLS1_3_VERSION) {
|
1651
|
-
return 0;
|
1652
|
-
}
|
1653
|
-
|
1654
|
-
if (ssl->server) {
|
1655
|
-
return copy_finished(buf, count, ssl->s3->previous_server_finished,
|
1656
|
-
ssl->s3->previous_server_finished_len);
|
1657
|
-
}
|
1658
|
-
|
1659
|
-
return copy_finished(buf, count, ssl->s3->previous_client_finished,
|
1660
|
-
ssl->s3->previous_client_finished_len);
|
1661
|
-
}
|
1662
|
-
|
1663
|
-
size_t SSL_get_peer_finished(const SSL *ssl, void *buf, size_t count) {
|
1664
|
-
if (!ssl->s3->initial_handshake_complete ||
|
1665
|
-
ssl_protocol_version(ssl) >= TLS1_3_VERSION) {
|
1666
|
-
return 0;
|
1667
|
-
}
|
1668
|
-
|
1669
|
-
if (ssl->server) {
|
1670
|
-
return copy_finished(buf, count, ssl->s3->previous_client_finished,
|
1671
|
-
ssl->s3->previous_client_finished_len);
|
1672
|
-
}
|
1673
|
-
|
1674
|
-
return copy_finished(buf, count, ssl->s3->previous_server_finished,
|
1675
|
-
ssl->s3->previous_server_finished_len);
|
1676
|
-
}
|
1677
|
-
|
1678
|
-
int SSL_get_verify_mode(const SSL *ssl) {
|
1679
|
-
if (!ssl->config) {
|
1680
|
-
assert(ssl->config);
|
1681
|
-
return -1;
|
1682
|
-
}
|
1683
|
-
return ssl->config->verify_mode;
|
1684
|
-
}
|
1685
|
-
|
1686
|
-
int SSL_get_extms_support(const SSL *ssl) {
|
1687
|
-
// TLS 1.3 does not require extended master secret and always reports as
|
1688
|
-
// supporting it.
|
1689
|
-
if (!ssl->s3->have_version) {
|
1690
|
-
return 0;
|
1691
|
-
}
|
1692
|
-
if (ssl_protocol_version(ssl) >= TLS1_3_VERSION) {
|
1693
|
-
return 1;
|
1694
|
-
}
|
1695
|
-
|
1696
|
-
// If the initial handshake completed, query the established session.
|
1697
|
-
if (ssl->s3->established_session != NULL) {
|
1698
|
-
return ssl->s3->established_session->extended_master_secret;
|
1699
|
-
}
|
1700
|
-
|
1701
|
-
// Otherwise, query the in-progress handshake.
|
1702
|
-
if (ssl->s3->hs != NULL) {
|
1703
|
-
return ssl->s3->hs->extended_master_secret;
|
1704
|
-
}
|
1705
|
-
assert(0);
|
1706
|
-
return 0;
|
1707
|
-
}
|
1708
|
-
|
1709
|
-
int SSL_CTX_get_read_ahead(const SSL_CTX *ctx) { return 0; }
|
1710
|
-
|
1711
|
-
int SSL_get_read_ahead(const SSL *ssl) { return 0; }
|
1712
|
-
|
1713
|
-
int SSL_CTX_set_read_ahead(SSL_CTX *ctx, int yes) { return 1; }
|
1714
|
-
|
1715
|
-
int SSL_set_read_ahead(SSL *ssl, int yes) { return 1; }
|
1716
|
-
|
1717
|
-
int SSL_pending(const SSL *ssl) {
|
1718
|
-
return static_cast<int>(ssl->s3->pending_app_data.size());
|
1719
|
-
}
|
1720
|
-
|
1721
|
-
int SSL_CTX_check_private_key(const SSL_CTX *ctx) {
|
1722
|
-
return ssl_cert_check_private_key(ctx->cert.get(),
|
1723
|
-
ctx->cert->privatekey.get());
|
1724
|
-
}
|
1725
|
-
|
1726
|
-
int SSL_check_private_key(const SSL *ssl) {
|
1727
|
-
if (!ssl->config) {
|
1728
|
-
return 0;
|
1729
|
-
}
|
1730
|
-
return ssl_cert_check_private_key(ssl->config->cert.get(),
|
1731
|
-
ssl->config->cert->privatekey.get());
|
1732
|
-
}
|
1733
|
-
|
1734
|
-
long SSL_get_default_timeout(const SSL *ssl) {
|
1735
|
-
return SSL_DEFAULT_SESSION_TIMEOUT;
|
1736
|
-
}
|
1737
|
-
|
1738
|
-
int SSL_renegotiate(SSL *ssl) {
|
1739
|
-
// Caller-initiated renegotiation is not supported.
|
1740
|
-
if (!ssl->s3->renegotiate_pending) {
|
1741
|
-
OPENSSL_PUT_ERROR(SSL, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
|
1742
|
-
return 0;
|
1743
|
-
}
|
1744
|
-
|
1745
|
-
if (!ssl_can_renegotiate(ssl)) {
|
1746
|
-
OPENSSL_PUT_ERROR(SSL, SSL_R_NO_RENEGOTIATION);
|
1747
|
-
return 0;
|
1748
|
-
}
|
1749
|
-
|
1750
|
-
// Renegotiation is only supported at quiescent points in the application
|
1751
|
-
// protocol, namely in HTTPS, just before reading the HTTP response.
|
1752
|
-
// Require the record-layer be idle and avoid complexities of sending a
|
1753
|
-
// handshake record while an application_data record is being written.
|
1754
|
-
if (!ssl->s3->write_buffer.empty() ||
|
1755
|
-
ssl->s3->write_shutdown != ssl_shutdown_none) {
|
1756
|
-
OPENSSL_PUT_ERROR(SSL, SSL_R_NO_RENEGOTIATION);
|
1757
|
-
return 0;
|
1758
|
-
}
|
1759
|
-
|
1760
|
-
// Begin a new handshake.
|
1761
|
-
if (ssl->s3->hs != nullptr) {
|
1762
|
-
OPENSSL_PUT_ERROR(SSL, ERR_R_INTERNAL_ERROR);
|
1763
|
-
return 0;
|
1764
|
-
}
|
1765
|
-
ssl->s3->hs = ssl_handshake_new(ssl);
|
1766
|
-
if (ssl->s3->hs == nullptr) {
|
1767
|
-
return 0;
|
1768
|
-
}
|
1769
|
-
|
1770
|
-
ssl->s3->renegotiate_pending = false;
|
1771
|
-
ssl->s3->total_renegotiations++;
|
1772
|
-
return 1;
|
1773
|
-
}
|
1774
|
-
|
1775
|
-
int SSL_renegotiate_pending(SSL *ssl) {
|
1776
|
-
return SSL_in_init(ssl) && ssl->s3->initial_handshake_complete;
|
1777
|
-
}
|
1778
|
-
|
1779
|
-
int SSL_total_renegotiations(const SSL *ssl) {
|
1780
|
-
return ssl->s3->total_renegotiations;
|
1781
|
-
}
|
1782
|
-
|
1783
|
-
size_t SSL_CTX_get_max_cert_list(const SSL_CTX *ctx) {
|
1784
|
-
return ctx->max_cert_list;
|
1785
|
-
}
|
1786
|
-
|
1787
|
-
void SSL_CTX_set_max_cert_list(SSL_CTX *ctx, size_t max_cert_list) {
|
1788
|
-
if (max_cert_list > kMaxHandshakeSize) {
|
1789
|
-
max_cert_list = kMaxHandshakeSize;
|
1790
|
-
}
|
1791
|
-
ctx->max_cert_list = (uint32_t)max_cert_list;
|
1792
|
-
}
|
1793
|
-
|
1794
|
-
size_t SSL_get_max_cert_list(const SSL *ssl) {
|
1795
|
-
return ssl->max_cert_list;
|
1796
|
-
}
|
1797
|
-
|
1798
|
-
void SSL_set_max_cert_list(SSL *ssl, size_t max_cert_list) {
|
1799
|
-
if (max_cert_list > kMaxHandshakeSize) {
|
1800
|
-
max_cert_list = kMaxHandshakeSize;
|
1801
|
-
}
|
1802
|
-
ssl->max_cert_list = (uint32_t)max_cert_list;
|
1803
|
-
}
|
1804
|
-
|
1805
|
-
int SSL_CTX_set_max_send_fragment(SSL_CTX *ctx, size_t max_send_fragment) {
|
1806
|
-
if (max_send_fragment < 512) {
|
1807
|
-
max_send_fragment = 512;
|
1808
|
-
}
|
1809
|
-
if (max_send_fragment > SSL3_RT_MAX_PLAIN_LENGTH) {
|
1810
|
-
max_send_fragment = SSL3_RT_MAX_PLAIN_LENGTH;
|
1811
|
-
}
|
1812
|
-
ctx->max_send_fragment = (uint16_t)max_send_fragment;
|
1813
|
-
|
1814
|
-
return 1;
|
1815
|
-
}
|
1816
|
-
|
1817
|
-
int SSL_set_max_send_fragment(SSL *ssl, size_t max_send_fragment) {
|
1818
|
-
if (max_send_fragment < 512) {
|
1819
|
-
max_send_fragment = 512;
|
1820
|
-
}
|
1821
|
-
if (max_send_fragment > SSL3_RT_MAX_PLAIN_LENGTH) {
|
1822
|
-
max_send_fragment = SSL3_RT_MAX_PLAIN_LENGTH;
|
1823
|
-
}
|
1824
|
-
ssl->max_send_fragment = (uint16_t)max_send_fragment;
|
1825
|
-
|
1826
|
-
return 1;
|
1827
|
-
}
|
1828
|
-
|
1829
|
-
int SSL_set_mtu(SSL *ssl, unsigned mtu) {
|
1830
|
-
if (!SSL_is_dtls(ssl) || mtu < dtls1_min_mtu()) {
|
1831
|
-
return 0;
|
1832
|
-
}
|
1833
|
-
ssl->d1->mtu = mtu;
|
1834
|
-
return 1;
|
1835
|
-
}
|
1836
|
-
|
1837
|
-
int SSL_get_secure_renegotiation_support(const SSL *ssl) {
|
1838
|
-
if (!ssl->s3->have_version) {
|
1839
|
-
return 0;
|
1840
|
-
}
|
1841
|
-
return ssl_protocol_version(ssl) >= TLS1_3_VERSION ||
|
1842
|
-
ssl->s3->send_connection_binding;
|
1843
|
-
}
|
1844
|
-
|
1845
|
-
size_t SSL_CTX_sess_number(const SSL_CTX *ctx) {
|
1846
|
-
MutexReadLock lock(const_cast<CRYPTO_MUTEX *>(&ctx->lock));
|
1847
|
-
return lh_SSL_SESSION_num_items(ctx->sessions);
|
1848
|
-
}
|
1849
|
-
|
1850
|
-
unsigned long SSL_CTX_sess_set_cache_size(SSL_CTX *ctx, unsigned long size) {
|
1851
|
-
unsigned long ret = ctx->session_cache_size;
|
1852
|
-
ctx->session_cache_size = size;
|
1853
|
-
return ret;
|
1854
|
-
}
|
1855
|
-
|
1856
|
-
unsigned long SSL_CTX_sess_get_cache_size(const SSL_CTX *ctx) {
|
1857
|
-
return ctx->session_cache_size;
|
1858
|
-
}
|
1859
|
-
|
1860
|
-
int SSL_CTX_set_session_cache_mode(SSL_CTX *ctx, int mode) {
|
1861
|
-
int ret = ctx->session_cache_mode;
|
1862
|
-
ctx->session_cache_mode = mode;
|
1863
|
-
return ret;
|
1864
|
-
}
|
1865
|
-
|
1866
|
-
int SSL_CTX_get_session_cache_mode(const SSL_CTX *ctx) {
|
1867
|
-
return ctx->session_cache_mode;
|
1868
|
-
}
|
1869
|
-
|
1870
|
-
|
1871
|
-
int SSL_CTX_get_tlsext_ticket_keys(SSL_CTX *ctx, void *out, size_t len) {
|
1872
|
-
if (out == NULL) {
|
1873
|
-
return 48;
|
1874
|
-
}
|
1875
|
-
if (len != 48) {
|
1876
|
-
OPENSSL_PUT_ERROR(SSL, SSL_R_INVALID_TICKET_KEYS_LENGTH);
|
1877
|
-
return 0;
|
1878
|
-
}
|
1879
|
-
|
1880
|
-
// The default ticket keys are initialized lazily. Trigger a key
|
1881
|
-
// rotation to initialize them.
|
1882
|
-
if (!ssl_ctx_rotate_ticket_encryption_key(ctx)) {
|
1883
|
-
return 0;
|
1884
|
-
}
|
1885
|
-
|
1886
|
-
uint8_t *out_bytes = reinterpret_cast<uint8_t *>(out);
|
1887
|
-
MutexReadLock lock(&ctx->lock);
|
1888
|
-
OPENSSL_memcpy(out_bytes, ctx->ticket_key_current->name, 16);
|
1889
|
-
OPENSSL_memcpy(out_bytes + 16, ctx->ticket_key_current->hmac_key, 16);
|
1890
|
-
OPENSSL_memcpy(out_bytes + 32, ctx->ticket_key_current->aes_key, 16);
|
1891
|
-
return 1;
|
1892
|
-
}
|
1893
|
-
|
1894
|
-
int SSL_CTX_set_tlsext_ticket_keys(SSL_CTX *ctx, const void *in, size_t len) {
|
1895
|
-
if (in == NULL) {
|
1896
|
-
return 48;
|
1897
|
-
}
|
1898
|
-
if (len != 48) {
|
1899
|
-
OPENSSL_PUT_ERROR(SSL, SSL_R_INVALID_TICKET_KEYS_LENGTH);
|
1900
|
-
return 0;
|
1901
|
-
}
|
1902
|
-
auto key = MakeUnique<TicketKey>();
|
1903
|
-
if (!key) {
|
1904
|
-
return 0;
|
1905
|
-
}
|
1906
|
-
const uint8_t *in_bytes = reinterpret_cast<const uint8_t *>(in);
|
1907
|
-
OPENSSL_memcpy(key->name, in_bytes, 16);
|
1908
|
-
OPENSSL_memcpy(key->hmac_key, in_bytes + 16, 16);
|
1909
|
-
OPENSSL_memcpy(key->aes_key, in_bytes + 32, 16);
|
1910
|
-
// Disable automatic key rotation for manually-configured keys. This is now
|
1911
|
-
// the caller's responsibility.
|
1912
|
-
key->next_rotation_tv_sec = 0;
|
1913
|
-
ctx->ticket_key_current = std::move(key);
|
1914
|
-
ctx->ticket_key_prev.reset();
|
1915
|
-
return 1;
|
1916
|
-
}
|
1917
|
-
|
1918
|
-
int SSL_CTX_set_tlsext_ticket_key_cb(
|
1919
|
-
SSL_CTX *ctx, int (*callback)(SSL *ssl, uint8_t *key_name, uint8_t *iv,
|
1920
|
-
EVP_CIPHER_CTX *ctx, HMAC_CTX *hmac_ctx,
|
1921
|
-
int encrypt)) {
|
1922
|
-
ctx->ticket_key_cb = callback;
|
1923
|
-
return 1;
|
1924
|
-
}
|
1925
|
-
|
1926
|
-
int SSL_CTX_set1_curves(SSL_CTX *ctx, const int *curves, size_t curves_len) {
|
1927
|
-
return tls1_set_curves(&ctx->supported_group_list,
|
1928
|
-
MakeConstSpan(curves, curves_len));
|
1929
|
-
}
|
1930
|
-
|
1931
|
-
int SSL_set1_curves(SSL *ssl, const int *curves, size_t curves_len) {
|
1932
|
-
if (!ssl->config) {
|
1933
|
-
return 0;
|
1934
|
-
}
|
1935
|
-
return tls1_set_curves(&ssl->config->supported_group_list,
|
1936
|
-
MakeConstSpan(curves, curves_len));
|
1937
|
-
}
|
1938
|
-
|
1939
|
-
int SSL_CTX_set1_curves_list(SSL_CTX *ctx, const char *curves) {
|
1940
|
-
return tls1_set_curves_list(&ctx->supported_group_list, curves);
|
1941
|
-
}
|
1942
|
-
|
1943
|
-
int SSL_set1_curves_list(SSL *ssl, const char *curves) {
|
1944
|
-
if (!ssl->config) {
|
1945
|
-
return 0;
|
1946
|
-
}
|
1947
|
-
return tls1_set_curves_list(&ssl->config->supported_group_list, curves);
|
1948
|
-
}
|
1949
|
-
|
1950
|
-
uint16_t SSL_get_curve_id(const SSL *ssl) {
|
1951
|
-
// TODO(davidben): This checks the wrong session if there is a renegotiation
|
1952
|
-
// in progress.
|
1953
|
-
SSL_SESSION *session = SSL_get_session(ssl);
|
1954
|
-
if (session == NULL) {
|
1955
|
-
return 0;
|
1956
|
-
}
|
1957
|
-
|
1958
|
-
return session->group_id;
|
1959
|
-
}
|
1960
|
-
|
1961
|
-
int SSL_CTX_set_tmp_dh(SSL_CTX *ctx, const DH *dh) {
|
1962
|
-
return 1;
|
1963
|
-
}
|
1964
|
-
|
1965
|
-
int SSL_set_tmp_dh(SSL *ssl, const DH *dh) {
|
1966
|
-
return 1;
|
1967
|
-
}
|
1968
|
-
|
1969
|
-
STACK_OF(SSL_CIPHER) *SSL_CTX_get_ciphers(const SSL_CTX *ctx) {
|
1970
|
-
return ctx->cipher_list->ciphers.get();
|
1971
|
-
}
|
1972
|
-
|
1973
|
-
int SSL_CTX_cipher_in_group(const SSL_CTX *ctx, size_t i) {
|
1974
|
-
if (i >= sk_SSL_CIPHER_num(ctx->cipher_list->ciphers.get())) {
|
1975
|
-
return 0;
|
1976
|
-
}
|
1977
|
-
return ctx->cipher_list->in_group_flags[i];
|
1978
|
-
}
|
1979
|
-
|
1980
|
-
STACK_OF(SSL_CIPHER) *SSL_get_ciphers(const SSL *ssl) {
|
1981
|
-
if (ssl == NULL) {
|
1982
|
-
return NULL;
|
1983
|
-
}
|
1984
|
-
if (ssl->config == NULL) {
|
1985
|
-
assert(ssl->config);
|
1986
|
-
return NULL;
|
1987
|
-
}
|
1988
|
-
|
1989
|
-
return ssl->config->cipher_list ? ssl->config->cipher_list->ciphers.get()
|
1990
|
-
: ssl->ctx->cipher_list->ciphers.get();
|
1991
|
-
}
|
1992
|
-
|
1993
|
-
const char *SSL_get_cipher_list(const SSL *ssl, int n) {
|
1994
|
-
if (ssl == NULL) {
|
1995
|
-
return NULL;
|
1996
|
-
}
|
1997
|
-
|
1998
|
-
STACK_OF(SSL_CIPHER) *sk = SSL_get_ciphers(ssl);
|
1999
|
-
if (sk == NULL || n < 0 || (size_t)n >= sk_SSL_CIPHER_num(sk)) {
|
2000
|
-
return NULL;
|
2001
|
-
}
|
2002
|
-
|
2003
|
-
const SSL_CIPHER *c = sk_SSL_CIPHER_value(sk, n);
|
2004
|
-
if (c == NULL) {
|
2005
|
-
return NULL;
|
2006
|
-
}
|
2007
|
-
|
2008
|
-
return c->name;
|
2009
|
-
}
|
2010
|
-
|
2011
|
-
int SSL_CTX_set_cipher_list(SSL_CTX *ctx, const char *str) {
|
2012
|
-
return ssl_create_cipher_list(&ctx->cipher_list, str, false /* not strict */);
|
2013
|
-
}
|
2014
|
-
|
2015
|
-
int SSL_CTX_set_strict_cipher_list(SSL_CTX *ctx, const char *str) {
|
2016
|
-
return ssl_create_cipher_list(&ctx->cipher_list, str, true /* strict */);
|
2017
|
-
}
|
2018
|
-
|
2019
|
-
int SSL_set_cipher_list(SSL *ssl, const char *str) {
|
2020
|
-
if (!ssl->config) {
|
2021
|
-
return 0;
|
2022
|
-
}
|
2023
|
-
return ssl_create_cipher_list(&ssl->config->cipher_list, str,
|
2024
|
-
false /* not strict */);
|
2025
|
-
}
|
2026
|
-
|
2027
|
-
int SSL_set_strict_cipher_list(SSL *ssl, const char *str) {
|
2028
|
-
if (!ssl->config) {
|
2029
|
-
return 0;
|
2030
|
-
}
|
2031
|
-
return ssl_create_cipher_list(&ssl->config->cipher_list, str,
|
2032
|
-
true /* strict */);
|
2033
|
-
}
|
2034
|
-
|
2035
|
-
const char *SSL_get_servername(const SSL *ssl, const int type) {
|
2036
|
-
if (type != TLSEXT_NAMETYPE_host_name) {
|
2037
|
-
return NULL;
|
2038
|
-
}
|
2039
|
-
|
2040
|
-
// Historically, |SSL_get_servername| was also the configuration getter
|
2041
|
-
// corresponding to |SSL_set_tlsext_host_name|.
|
2042
|
-
if (ssl->hostname != nullptr) {
|
2043
|
-
return ssl->hostname.get();
|
2044
|
-
}
|
2045
|
-
|
2046
|
-
return ssl->s3->hostname.get();
|
2047
|
-
}
|
2048
|
-
|
2049
|
-
int SSL_get_servername_type(const SSL *ssl) {
|
2050
|
-
if (SSL_get_servername(ssl, TLSEXT_NAMETYPE_host_name) == NULL) {
|
2051
|
-
return -1;
|
2052
|
-
}
|
2053
|
-
return TLSEXT_NAMETYPE_host_name;
|
2054
|
-
}
|
2055
|
-
|
2056
|
-
void SSL_CTX_set_custom_verify(
|
2057
|
-
SSL_CTX *ctx, int mode,
|
2058
|
-
enum ssl_verify_result_t (*callback)(SSL *ssl, uint8_t *out_alert)) {
|
2059
|
-
ctx->verify_mode = mode;
|
2060
|
-
ctx->custom_verify_callback = callback;
|
2061
|
-
}
|
2062
|
-
|
2063
|
-
void SSL_set_custom_verify(
|
2064
|
-
SSL *ssl, int mode,
|
2065
|
-
enum ssl_verify_result_t (*callback)(SSL *ssl, uint8_t *out_alert)) {
|
2066
|
-
if (!ssl->config) {
|
2067
|
-
return;
|
2068
|
-
}
|
2069
|
-
ssl->config->verify_mode = mode;
|
2070
|
-
ssl->config->custom_verify_callback = callback;
|
2071
|
-
}
|
2072
|
-
|
2073
|
-
void SSL_CTX_enable_signed_cert_timestamps(SSL_CTX *ctx) {
|
2074
|
-
ctx->signed_cert_timestamps_enabled = true;
|
2075
|
-
}
|
2076
|
-
|
2077
|
-
void SSL_enable_signed_cert_timestamps(SSL *ssl) {
|
2078
|
-
if (!ssl->config) {
|
2079
|
-
return;
|
2080
|
-
}
|
2081
|
-
ssl->config->signed_cert_timestamps_enabled = true;
|
2082
|
-
}
|
2083
|
-
|
2084
|
-
void SSL_CTX_enable_ocsp_stapling(SSL_CTX *ctx) {
|
2085
|
-
ctx->ocsp_stapling_enabled = true;
|
2086
|
-
}
|
2087
|
-
|
2088
|
-
void SSL_enable_ocsp_stapling(SSL *ssl) {
|
2089
|
-
if (!ssl->config) {
|
2090
|
-
return;
|
2091
|
-
}
|
2092
|
-
ssl->config->ocsp_stapling_enabled = true;
|
2093
|
-
}
|
2094
|
-
|
2095
|
-
void SSL_get0_signed_cert_timestamp_list(const SSL *ssl, const uint8_t **out,
|
2096
|
-
size_t *out_len) {
|
2097
|
-
SSL_SESSION *session = SSL_get_session(ssl);
|
2098
|
-
if (ssl->server || !session || !session->signed_cert_timestamp_list) {
|
2099
|
-
*out_len = 0;
|
2100
|
-
*out = NULL;
|
2101
|
-
return;
|
2102
|
-
}
|
2103
|
-
|
2104
|
-
*out = CRYPTO_BUFFER_data(session->signed_cert_timestamp_list.get());
|
2105
|
-
*out_len = CRYPTO_BUFFER_len(session->signed_cert_timestamp_list.get());
|
2106
|
-
}
|
2107
|
-
|
2108
|
-
void SSL_get0_ocsp_response(const SSL *ssl, const uint8_t **out,
|
2109
|
-
size_t *out_len) {
|
2110
|
-
SSL_SESSION *session = SSL_get_session(ssl);
|
2111
|
-
if (ssl->server || !session || !session->ocsp_response) {
|
2112
|
-
*out_len = 0;
|
2113
|
-
*out = NULL;
|
2114
|
-
return;
|
2115
|
-
}
|
2116
|
-
|
2117
|
-
*out = CRYPTO_BUFFER_data(session->ocsp_response.get());
|
2118
|
-
*out_len = CRYPTO_BUFFER_len(session->ocsp_response.get());
|
2119
|
-
}
|
2120
|
-
|
2121
|
-
int SSL_set_tlsext_host_name(SSL *ssl, const char *name) {
|
2122
|
-
ssl->hostname.reset();
|
2123
|
-
if (name == nullptr) {
|
2124
|
-
return 1;
|
2125
|
-
}
|
2126
|
-
|
2127
|
-
size_t len = strlen(name);
|
2128
|
-
if (len == 0 || len > TLSEXT_MAXLEN_host_name) {
|
2129
|
-
OPENSSL_PUT_ERROR(SSL, SSL_R_SSL3_EXT_INVALID_SERVERNAME);
|
2130
|
-
return 0;
|
2131
|
-
}
|
2132
|
-
ssl->hostname.reset(BUF_strdup(name));
|
2133
|
-
if (ssl->hostname == nullptr) {
|
2134
|
-
OPENSSL_PUT_ERROR(SSL, ERR_R_MALLOC_FAILURE);
|
2135
|
-
return 0;
|
2136
|
-
}
|
2137
|
-
return 1;
|
2138
|
-
}
|
2139
|
-
|
2140
|
-
int SSL_CTX_set_tlsext_servername_callback(
|
2141
|
-
SSL_CTX *ctx, int (*callback)(SSL *ssl, int *out_alert, void *arg)) {
|
2142
|
-
ctx->servername_callback = callback;
|
2143
|
-
return 1;
|
2144
|
-
}
|
2145
|
-
|
2146
|
-
int SSL_CTX_set_tlsext_servername_arg(SSL_CTX *ctx, void *arg) {
|
2147
|
-
ctx->servername_arg = arg;
|
2148
|
-
return 1;
|
2149
|
-
}
|
2150
|
-
|
2151
|
-
int SSL_select_next_proto(uint8_t **out, uint8_t *out_len, const uint8_t *peer,
|
2152
|
-
unsigned peer_len, const uint8_t *supported,
|
2153
|
-
unsigned supported_len) {
|
2154
|
-
const uint8_t *result;
|
2155
|
-
int status;
|
2156
|
-
|
2157
|
-
// For each protocol in peer preference order, see if we support it.
|
2158
|
-
for (unsigned i = 0; i < peer_len;) {
|
2159
|
-
for (unsigned j = 0; j < supported_len;) {
|
2160
|
-
if (peer[i] == supported[j] &&
|
2161
|
-
OPENSSL_memcmp(&peer[i + 1], &supported[j + 1], peer[i]) == 0) {
|
2162
|
-
// We found a match
|
2163
|
-
result = &peer[i];
|
2164
|
-
status = OPENSSL_NPN_NEGOTIATED;
|
2165
|
-
goto found;
|
2166
|
-
}
|
2167
|
-
j += supported[j];
|
2168
|
-
j++;
|
2169
|
-
}
|
2170
|
-
i += peer[i];
|
2171
|
-
i++;
|
2172
|
-
}
|
2173
|
-
|
2174
|
-
// There's no overlap between our protocols and the peer's list.
|
2175
|
-
result = supported;
|
2176
|
-
status = OPENSSL_NPN_NO_OVERLAP;
|
2177
|
-
|
2178
|
-
found:
|
2179
|
-
*out = (uint8_t *)result + 1;
|
2180
|
-
*out_len = result[0];
|
2181
|
-
return status;
|
2182
|
-
}
|
2183
|
-
|
2184
|
-
void SSL_get0_next_proto_negotiated(const SSL *ssl, const uint8_t **out_data,
|
2185
|
-
unsigned *out_len) {
|
2186
|
-
*out_data = ssl->s3->next_proto_negotiated.data();
|
2187
|
-
*out_len = ssl->s3->next_proto_negotiated.size();
|
2188
|
-
}
|
2189
|
-
|
2190
|
-
void SSL_CTX_set_next_protos_advertised_cb(
|
2191
|
-
SSL_CTX *ctx,
|
2192
|
-
int (*cb)(SSL *ssl, const uint8_t **out, unsigned *out_len, void *arg),
|
2193
|
-
void *arg) {
|
2194
|
-
ctx->next_protos_advertised_cb = cb;
|
2195
|
-
ctx->next_protos_advertised_cb_arg = arg;
|
2196
|
-
}
|
2197
|
-
|
2198
|
-
void SSL_CTX_set_next_proto_select_cb(
|
2199
|
-
SSL_CTX *ctx, int (*cb)(SSL *ssl, uint8_t **out, uint8_t *out_len,
|
2200
|
-
const uint8_t *in, unsigned in_len, void *arg),
|
2201
|
-
void *arg) {
|
2202
|
-
ctx->next_proto_select_cb = cb;
|
2203
|
-
ctx->next_proto_select_cb_arg = arg;
|
2204
|
-
}
|
2205
|
-
|
2206
|
-
int SSL_CTX_set_alpn_protos(SSL_CTX *ctx, const uint8_t *protos,
|
2207
|
-
unsigned protos_len) {
|
2208
|
-
// Note this function's calling convention is backwards.
|
2209
|
-
return ctx->alpn_client_proto_list.CopyFrom(MakeConstSpan(protos, protos_len))
|
2210
|
-
? 0
|
2211
|
-
: 1;
|
2212
|
-
}
|
2213
|
-
|
2214
|
-
int SSL_set_alpn_protos(SSL *ssl, const uint8_t *protos, unsigned protos_len) {
|
2215
|
-
// Note this function's calling convention is backwards.
|
2216
|
-
if (!ssl->config) {
|
2217
|
-
return 1;
|
2218
|
-
}
|
2219
|
-
return ssl->config->alpn_client_proto_list.CopyFrom(
|
2220
|
-
MakeConstSpan(protos, protos_len))
|
2221
|
-
? 0
|
2222
|
-
: 1;
|
2223
|
-
}
|
2224
|
-
|
2225
|
-
void SSL_CTX_set_alpn_select_cb(SSL_CTX *ctx,
|
2226
|
-
int (*cb)(SSL *ssl, const uint8_t **out,
|
2227
|
-
uint8_t *out_len, const uint8_t *in,
|
2228
|
-
unsigned in_len, void *arg),
|
2229
|
-
void *arg) {
|
2230
|
-
ctx->alpn_select_cb = cb;
|
2231
|
-
ctx->alpn_select_cb_arg = arg;
|
2232
|
-
}
|
2233
|
-
|
2234
|
-
void SSL_get0_alpn_selected(const SSL *ssl, const uint8_t **out_data,
|
2235
|
-
unsigned *out_len) {
|
2236
|
-
if (SSL_in_early_data(ssl) && !ssl->server) {
|
2237
|
-
*out_data = ssl->s3->hs->early_session->early_alpn.data();
|
2238
|
-
*out_len = ssl->s3->hs->early_session->early_alpn.size();
|
2239
|
-
} else {
|
2240
|
-
*out_data = ssl->s3->alpn_selected.data();
|
2241
|
-
*out_len = ssl->s3->alpn_selected.size();
|
2242
|
-
}
|
2243
|
-
}
|
2244
|
-
|
2245
|
-
void SSL_CTX_set_allow_unknown_alpn_protos(SSL_CTX *ctx, int enabled) {
|
2246
|
-
ctx->allow_unknown_alpn_protos = !!enabled;
|
2247
|
-
}
|
2248
|
-
|
2249
|
-
int SSL_CTX_add_cert_compression_alg(SSL_CTX *ctx, uint16_t alg_id,
|
2250
|
-
ssl_cert_compression_func_t compress,
|
2251
|
-
ssl_cert_decompression_func_t decompress) {
|
2252
|
-
assert(compress != nullptr || decompress != nullptr);
|
2253
|
-
|
2254
|
-
for (const auto &alg : ctx->cert_compression_algs) {
|
2255
|
-
if (alg.alg_id == alg_id) {
|
2256
|
-
return 0;
|
2257
|
-
}
|
2258
|
-
}
|
2259
|
-
|
2260
|
-
CertCompressionAlg alg;
|
2261
|
-
alg.alg_id = alg_id;
|
2262
|
-
alg.compress = compress;
|
2263
|
-
alg.decompress = decompress;
|
2264
|
-
return ctx->cert_compression_algs.Push(alg);
|
2265
|
-
}
|
2266
|
-
|
2267
|
-
void SSL_CTX_set_tls_channel_id_enabled(SSL_CTX *ctx, int enabled) {
|
2268
|
-
ctx->channel_id_enabled = !!enabled;
|
2269
|
-
}
|
2270
|
-
|
2271
|
-
int SSL_CTX_enable_tls_channel_id(SSL_CTX *ctx) {
|
2272
|
-
SSL_CTX_set_tls_channel_id_enabled(ctx, 1);
|
2273
|
-
return 1;
|
2274
|
-
}
|
2275
|
-
|
2276
|
-
void SSL_set_tls_channel_id_enabled(SSL *ssl, int enabled) {
|
2277
|
-
if (!ssl->config) {
|
2278
|
-
return;
|
2279
|
-
}
|
2280
|
-
ssl->config->channel_id_enabled = !!enabled;
|
2281
|
-
}
|
2282
|
-
|
2283
|
-
int SSL_enable_tls_channel_id(SSL *ssl) {
|
2284
|
-
SSL_set_tls_channel_id_enabled(ssl, 1);
|
2285
|
-
return 1;
|
2286
|
-
}
|
2287
|
-
|
2288
|
-
static int is_p256_key(EVP_PKEY *private_key) {
|
2289
|
-
const EC_KEY *ec_key = EVP_PKEY_get0_EC_KEY(private_key);
|
2290
|
-
return ec_key != NULL &&
|
2291
|
-
EC_GROUP_get_curve_name(EC_KEY_get0_group(ec_key)) ==
|
2292
|
-
NID_X9_62_prime256v1;
|
2293
|
-
}
|
2294
|
-
|
2295
|
-
int SSL_CTX_set1_tls_channel_id(SSL_CTX *ctx, EVP_PKEY *private_key) {
|
2296
|
-
if (!is_p256_key(private_key)) {
|
2297
|
-
OPENSSL_PUT_ERROR(SSL, SSL_R_CHANNEL_ID_NOT_P256);
|
2298
|
-
return 0;
|
2299
|
-
}
|
2300
|
-
|
2301
|
-
ctx->channel_id_private = UpRef(private_key);
|
2302
|
-
ctx->channel_id_enabled = true;
|
2303
|
-
|
2304
|
-
return 1;
|
2305
|
-
}
|
2306
|
-
|
2307
|
-
int SSL_set1_tls_channel_id(SSL *ssl, EVP_PKEY *private_key) {
|
2308
|
-
if (!ssl->config) {
|
2309
|
-
return 0;
|
2310
|
-
}
|
2311
|
-
if (!is_p256_key(private_key)) {
|
2312
|
-
OPENSSL_PUT_ERROR(SSL, SSL_R_CHANNEL_ID_NOT_P256);
|
2313
|
-
return 0;
|
2314
|
-
}
|
2315
|
-
|
2316
|
-
ssl->config->channel_id_private = UpRef(private_key);
|
2317
|
-
ssl->config->channel_id_enabled = true;
|
2318
|
-
|
2319
|
-
return 1;
|
2320
|
-
}
|
2321
|
-
|
2322
|
-
size_t SSL_get_tls_channel_id(SSL *ssl, uint8_t *out, size_t max_out) {
|
2323
|
-
if (!ssl->s3->channel_id_valid) {
|
2324
|
-
return 0;
|
2325
|
-
}
|
2326
|
-
OPENSSL_memcpy(out, ssl->s3->channel_id, (max_out < 64) ? max_out : 64);
|
2327
|
-
return 64;
|
2328
|
-
}
|
2329
|
-
|
2330
|
-
int SSL_set_token_binding_params(SSL *ssl, const uint8_t *params, size_t len) {
|
2331
|
-
if (!ssl->config) {
|
2332
|
-
return 0;
|
2333
|
-
}
|
2334
|
-
if (len > 256) {
|
2335
|
-
OPENSSL_PUT_ERROR(SSL, ERR_R_OVERFLOW);
|
2336
|
-
return 0;
|
2337
|
-
}
|
2338
|
-
return ssl->config->token_binding_params.CopyFrom(MakeConstSpan(params, len));
|
2339
|
-
}
|
2340
|
-
|
2341
|
-
int SSL_is_token_binding_negotiated(const SSL *ssl) {
|
2342
|
-
return ssl->s3->token_binding_negotiated;
|
2343
|
-
}
|
2344
|
-
|
2345
|
-
uint8_t SSL_get_negotiated_token_binding_param(const SSL *ssl) {
|
2346
|
-
return ssl->s3->negotiated_token_binding_param;
|
2347
|
-
}
|
2348
|
-
|
2349
|
-
size_t SSL_get0_certificate_types(const SSL *ssl, const uint8_t **out_types) {
|
2350
|
-
Span<const uint8_t> types;
|
2351
|
-
if (!ssl->server && ssl->s3->hs != nullptr) {
|
2352
|
-
types = ssl->s3->hs->certificate_types;
|
2353
|
-
}
|
2354
|
-
*out_types = types.data();
|
2355
|
-
return types.size();
|
2356
|
-
}
|
2357
|
-
|
2358
|
-
size_t SSL_get0_peer_verify_algorithms(const SSL *ssl,
|
2359
|
-
const uint16_t **out_sigalgs) {
|
2360
|
-
Span<const uint16_t> sigalgs;
|
2361
|
-
if (ssl->s3->hs != nullptr) {
|
2362
|
-
sigalgs = ssl->s3->hs->peer_sigalgs;
|
2363
|
-
}
|
2364
|
-
*out_sigalgs = sigalgs.data();
|
2365
|
-
return sigalgs.size();
|
2366
|
-
}
|
2367
|
-
|
2368
|
-
EVP_PKEY *SSL_get_privatekey(const SSL *ssl) {
|
2369
|
-
if (!ssl->config) {
|
2370
|
-
assert(ssl->config);
|
2371
|
-
return NULL;
|
2372
|
-
}
|
2373
|
-
if (ssl->config->cert != NULL) {
|
2374
|
-
return ssl->config->cert->privatekey.get();
|
2375
|
-
}
|
2376
|
-
|
2377
|
-
return NULL;
|
2378
|
-
}
|
2379
|
-
|
2380
|
-
EVP_PKEY *SSL_CTX_get0_privatekey(const SSL_CTX *ctx) {
|
2381
|
-
if (ctx->cert != NULL) {
|
2382
|
-
return ctx->cert->privatekey.get();
|
2383
|
-
}
|
2384
|
-
|
2385
|
-
return NULL;
|
2386
|
-
}
|
2387
|
-
|
2388
|
-
const SSL_CIPHER *SSL_get_current_cipher(const SSL *ssl) {
|
2389
|
-
const SSL_SESSION *session = SSL_get_session(ssl);
|
2390
|
-
return session == nullptr ? nullptr : session->cipher;
|
2391
|
-
}
|
2392
|
-
|
2393
|
-
int SSL_session_reused(const SSL *ssl) {
|
2394
|
-
return ssl->s3->session_reused || SSL_in_early_data(ssl);
|
2395
|
-
}
|
2396
|
-
|
2397
|
-
const COMP_METHOD *SSL_get_current_compression(SSL *ssl) { return NULL; }
|
2398
|
-
|
2399
|
-
const COMP_METHOD *SSL_get_current_expansion(SSL *ssl) { return NULL; }
|
2400
|
-
|
2401
|
-
int SSL_get_server_tmp_key(SSL *ssl, EVP_PKEY **out_key) { return 0; }
|
2402
|
-
|
2403
|
-
void SSL_CTX_set_quiet_shutdown(SSL_CTX *ctx, int mode) {
|
2404
|
-
ctx->quiet_shutdown = (mode != 0);
|
2405
|
-
}
|
2406
|
-
|
2407
|
-
int SSL_CTX_get_quiet_shutdown(const SSL_CTX *ctx) {
|
2408
|
-
return ctx->quiet_shutdown;
|
2409
|
-
}
|
2410
|
-
|
2411
|
-
void SSL_set_quiet_shutdown(SSL *ssl, int mode) {
|
2412
|
-
ssl->quiet_shutdown = (mode != 0);
|
2413
|
-
}
|
2414
|
-
|
2415
|
-
int SSL_get_quiet_shutdown(const SSL *ssl) { return ssl->quiet_shutdown; }
|
2416
|
-
|
2417
|
-
void SSL_set_shutdown(SSL *ssl, int mode) {
|
2418
|
-
// It is an error to clear any bits that have already been set. (We can't try
|
2419
|
-
// to get a second close_notify or send two.)
|
2420
|
-
assert((SSL_get_shutdown(ssl) & mode) == SSL_get_shutdown(ssl));
|
2421
|
-
|
2422
|
-
if (mode & SSL_RECEIVED_SHUTDOWN &&
|
2423
|
-
ssl->s3->read_shutdown == ssl_shutdown_none) {
|
2424
|
-
ssl->s3->read_shutdown = ssl_shutdown_close_notify;
|
2425
|
-
}
|
2426
|
-
|
2427
|
-
if (mode & SSL_SENT_SHUTDOWN &&
|
2428
|
-
ssl->s3->write_shutdown == ssl_shutdown_none) {
|
2429
|
-
ssl->s3->write_shutdown = ssl_shutdown_close_notify;
|
2430
|
-
}
|
2431
|
-
}
|
2432
|
-
|
2433
|
-
int SSL_get_shutdown(const SSL *ssl) {
|
2434
|
-
int ret = 0;
|
2435
|
-
if (ssl->s3->read_shutdown != ssl_shutdown_none) {
|
2436
|
-
// Historically, OpenSSL set |SSL_RECEIVED_SHUTDOWN| on both close_notify
|
2437
|
-
// and fatal alert.
|
2438
|
-
ret |= SSL_RECEIVED_SHUTDOWN;
|
2439
|
-
}
|
2440
|
-
if (ssl->s3->write_shutdown == ssl_shutdown_close_notify) {
|
2441
|
-
// Historically, OpenSSL set |SSL_SENT_SHUTDOWN| on only close_notify.
|
2442
|
-
ret |= SSL_SENT_SHUTDOWN;
|
2443
|
-
}
|
2444
|
-
return ret;
|
2445
|
-
}
|
2446
|
-
|
2447
|
-
SSL_CTX *SSL_get_SSL_CTX(const SSL *ssl) { return ssl->ctx.get(); }
|
2448
|
-
|
2449
|
-
SSL_CTX *SSL_set_SSL_CTX(SSL *ssl, SSL_CTX *ctx) {
|
2450
|
-
if (!ssl->config) {
|
2451
|
-
return NULL;
|
2452
|
-
}
|
2453
|
-
if (ssl->ctx.get() == ctx) {
|
2454
|
-
return ssl->ctx.get();
|
2455
|
-
}
|
2456
|
-
|
2457
|
-
// One cannot change the X.509 callbacks during a connection.
|
2458
|
-
if (ssl->ctx->x509_method != ctx->x509_method) {
|
2459
|
-
assert(0);
|
2460
|
-
return NULL;
|
2461
|
-
}
|
2462
|
-
|
2463
|
-
UniquePtr<CERT> new_cert = ssl_cert_dup(ctx->cert.get());
|
2464
|
-
if (!new_cert) {
|
2465
|
-
return nullptr;
|
2466
|
-
}
|
2467
|
-
|
2468
|
-
ssl->config->cert = std::move(new_cert);
|
2469
|
-
ssl->ctx = UpRef(ctx);
|
2470
|
-
ssl->enable_early_data = ssl->ctx->enable_early_data;
|
2471
|
-
|
2472
|
-
return ssl->ctx.get();
|
2473
|
-
}
|
2474
|
-
|
2475
|
-
void SSL_set_info_callback(SSL *ssl,
|
2476
|
-
void (*cb)(const SSL *ssl, int type, int value)) {
|
2477
|
-
ssl->info_callback = cb;
|
2478
|
-
}
|
2479
|
-
|
2480
|
-
void (*SSL_get_info_callback(const SSL *ssl))(const SSL *ssl, int type,
|
2481
|
-
int value) {
|
2482
|
-
return ssl->info_callback;
|
2483
|
-
}
|
2484
|
-
|
2485
|
-
int SSL_state(const SSL *ssl) {
|
2486
|
-
return SSL_in_init(ssl) ? SSL_ST_INIT : SSL_ST_OK;
|
2487
|
-
}
|
2488
|
-
|
2489
|
-
void SSL_set_state(SSL *ssl, int state) { }
|
2490
|
-
|
2491
|
-
char *SSL_get_shared_ciphers(const SSL *ssl, char *buf, int len) {
|
2492
|
-
if (len <= 0) {
|
2493
|
-
return NULL;
|
2494
|
-
}
|
2495
|
-
buf[0] = '\0';
|
2496
|
-
return buf;
|
2497
|
-
}
|
2498
|
-
|
2499
|
-
int SSL_CTX_set_quic_method(SSL_CTX *ctx, const SSL_QUIC_METHOD *quic_method) {
|
2500
|
-
if (ctx->method->is_dtls) {
|
2501
|
-
return 0;
|
2502
|
-
}
|
2503
|
-
ctx->quic_method = quic_method;
|
2504
|
-
return 1;
|
2505
|
-
}
|
2506
|
-
|
2507
|
-
int SSL_set_quic_method(SSL *ssl, const SSL_QUIC_METHOD *quic_method) {
|
2508
|
-
if (ssl->method->is_dtls) {
|
2509
|
-
return 0;
|
2510
|
-
}
|
2511
|
-
ssl->quic_method = quic_method;
|
2512
|
-
return 1;
|
2513
|
-
}
|
2514
|
-
|
2515
|
-
int SSL_get_ex_new_index(long argl, void *argp, CRYPTO_EX_unused *unused,
|
2516
|
-
CRYPTO_EX_dup *dup_unused, CRYPTO_EX_free *free_func) {
|
2517
|
-
int index;
|
2518
|
-
if (!CRYPTO_get_ex_new_index(&g_ex_data_class_ssl, &index, argl, argp,
|
2519
|
-
free_func)) {
|
2520
|
-
return -1;
|
2521
|
-
}
|
2522
|
-
return index;
|
2523
|
-
}
|
2524
|
-
|
2525
|
-
int SSL_set_ex_data(SSL *ssl, int idx, void *data) {
|
2526
|
-
return CRYPTO_set_ex_data(&ssl->ex_data, idx, data);
|
2527
|
-
}
|
2528
|
-
|
2529
|
-
void *SSL_get_ex_data(const SSL *ssl, int idx) {
|
2530
|
-
return CRYPTO_get_ex_data(&ssl->ex_data, idx);
|
2531
|
-
}
|
2532
|
-
|
2533
|
-
int SSL_CTX_get_ex_new_index(long argl, void *argp, CRYPTO_EX_unused *unused,
|
2534
|
-
CRYPTO_EX_dup *dup_unused,
|
2535
|
-
CRYPTO_EX_free *free_func) {
|
2536
|
-
int index;
|
2537
|
-
if (!CRYPTO_get_ex_new_index(&g_ex_data_class_ssl_ctx, &index, argl, argp,
|
2538
|
-
free_func)) {
|
2539
|
-
return -1;
|
2540
|
-
}
|
2541
|
-
return index;
|
2542
|
-
}
|
2543
|
-
|
2544
|
-
int SSL_CTX_set_ex_data(SSL_CTX *ctx, int idx, void *data) {
|
2545
|
-
return CRYPTO_set_ex_data(&ctx->ex_data, idx, data);
|
2546
|
-
}
|
2547
|
-
|
2548
|
-
void *SSL_CTX_get_ex_data(const SSL_CTX *ctx, int idx) {
|
2549
|
-
return CRYPTO_get_ex_data(&ctx->ex_data, idx);
|
2550
|
-
}
|
2551
|
-
|
2552
|
-
int SSL_want(const SSL *ssl) { return ssl->s3->rwstate; }
|
2553
|
-
|
2554
|
-
void SSL_CTX_set_tmp_rsa_callback(SSL_CTX *ctx,
|
2555
|
-
RSA *(*cb)(SSL *ssl, int is_export,
|
2556
|
-
int keylength)) {}
|
2557
|
-
|
2558
|
-
void SSL_set_tmp_rsa_callback(SSL *ssl, RSA *(*cb)(SSL *ssl, int is_export,
|
2559
|
-
int keylength)) {}
|
2560
|
-
|
2561
|
-
void SSL_CTX_set_tmp_dh_callback(SSL_CTX *ctx,
|
2562
|
-
DH *(*cb)(SSL *ssl, int is_export,
|
2563
|
-
int keylength)) {}
|
2564
|
-
|
2565
|
-
void SSL_set_tmp_dh_callback(SSL *ssl, DH *(*cb)(SSL *ssl, int is_export,
|
2566
|
-
int keylength)) {}
|
2567
|
-
|
2568
|
-
static int use_psk_identity_hint(UniquePtr<char> *out,
|
2569
|
-
const char *identity_hint) {
|
2570
|
-
if (identity_hint != NULL && strlen(identity_hint) > PSK_MAX_IDENTITY_LEN) {
|
2571
|
-
OPENSSL_PUT_ERROR(SSL, SSL_R_DATA_LENGTH_TOO_LONG);
|
2572
|
-
return 0;
|
2573
|
-
}
|
2574
|
-
|
2575
|
-
// Clear currently configured hint, if any.
|
2576
|
-
out->reset();
|
2577
|
-
|
2578
|
-
// Treat the empty hint as not supplying one. Plain PSK makes it possible to
|
2579
|
-
// send either no hint (omit ServerKeyExchange) or an empty hint, while
|
2580
|
-
// ECDHE_PSK can only spell empty hint. Having different capabilities is odd,
|
2581
|
-
// so we interpret empty and missing as identical.
|
2582
|
-
if (identity_hint != NULL && identity_hint[0] != '\0') {
|
2583
|
-
out->reset(BUF_strdup(identity_hint));
|
2584
|
-
if (*out == nullptr) {
|
2585
|
-
return 0;
|
2586
|
-
}
|
2587
|
-
}
|
2588
|
-
|
2589
|
-
return 1;
|
2590
|
-
}
|
2591
|
-
|
2592
|
-
int SSL_CTX_use_psk_identity_hint(SSL_CTX *ctx, const char *identity_hint) {
|
2593
|
-
return use_psk_identity_hint(&ctx->psk_identity_hint, identity_hint);
|
2594
|
-
}
|
2595
|
-
|
2596
|
-
int SSL_use_psk_identity_hint(SSL *ssl, const char *identity_hint) {
|
2597
|
-
if (!ssl->config) {
|
2598
|
-
return 0;
|
2599
|
-
}
|
2600
|
-
return use_psk_identity_hint(&ssl->config->psk_identity_hint, identity_hint);
|
2601
|
-
}
|
2602
|
-
|
2603
|
-
const char *SSL_get_psk_identity_hint(const SSL *ssl) {
|
2604
|
-
if (ssl == NULL) {
|
2605
|
-
return NULL;
|
2606
|
-
}
|
2607
|
-
if (ssl->config == NULL) {
|
2608
|
-
assert(ssl->config);
|
2609
|
-
return NULL;
|
2610
|
-
}
|
2611
|
-
return ssl->config->psk_identity_hint.get();
|
2612
|
-
}
|
2613
|
-
|
2614
|
-
const char *SSL_get_psk_identity(const SSL *ssl) {
|
2615
|
-
if (ssl == NULL) {
|
2616
|
-
return NULL;
|
2617
|
-
}
|
2618
|
-
SSL_SESSION *session = SSL_get_session(ssl);
|
2619
|
-
if (session == NULL) {
|
2620
|
-
return NULL;
|
2621
|
-
}
|
2622
|
-
return session->psk_identity.get();
|
2623
|
-
}
|
2624
|
-
|
2625
|
-
void SSL_set_psk_client_callback(
|
2626
|
-
SSL *ssl, unsigned (*cb)(SSL *ssl, const char *hint, char *identity,
|
2627
|
-
unsigned max_identity_len, uint8_t *psk,
|
2628
|
-
unsigned max_psk_len)) {
|
2629
|
-
if (!ssl->config) {
|
2630
|
-
return;
|
2631
|
-
}
|
2632
|
-
ssl->config->psk_client_callback = cb;
|
2633
|
-
}
|
2634
|
-
|
2635
|
-
void SSL_CTX_set_psk_client_callback(
|
2636
|
-
SSL_CTX *ctx, unsigned (*cb)(SSL *ssl, const char *hint, char *identity,
|
2637
|
-
unsigned max_identity_len, uint8_t *psk,
|
2638
|
-
unsigned max_psk_len)) {
|
2639
|
-
ctx->psk_client_callback = cb;
|
2640
|
-
}
|
2641
|
-
|
2642
|
-
void SSL_set_psk_server_callback(
|
2643
|
-
SSL *ssl, unsigned (*cb)(SSL *ssl, const char *identity, uint8_t *psk,
|
2644
|
-
unsigned max_psk_len)) {
|
2645
|
-
if (!ssl->config) {
|
2646
|
-
return;
|
2647
|
-
}
|
2648
|
-
ssl->config->psk_server_callback = cb;
|
2649
|
-
}
|
2650
|
-
|
2651
|
-
void SSL_CTX_set_psk_server_callback(
|
2652
|
-
SSL_CTX *ctx, unsigned (*cb)(SSL *ssl, const char *identity,
|
2653
|
-
uint8_t *psk, unsigned max_psk_len)) {
|
2654
|
-
ctx->psk_server_callback = cb;
|
2655
|
-
}
|
2656
|
-
|
2657
|
-
void SSL_CTX_set_msg_callback(SSL_CTX *ctx,
|
2658
|
-
void (*cb)(int write_p, int version,
|
2659
|
-
int content_type, const void *buf,
|
2660
|
-
size_t len, SSL *ssl, void *arg)) {
|
2661
|
-
ctx->msg_callback = cb;
|
2662
|
-
}
|
2663
|
-
|
2664
|
-
void SSL_CTX_set_msg_callback_arg(SSL_CTX *ctx, void *arg) {
|
2665
|
-
ctx->msg_callback_arg = arg;
|
2666
|
-
}
|
2667
|
-
|
2668
|
-
void SSL_set_msg_callback(SSL *ssl,
|
2669
|
-
void (*cb)(int write_p, int version, int content_type,
|
2670
|
-
const void *buf, size_t len, SSL *ssl,
|
2671
|
-
void *arg)) {
|
2672
|
-
ssl->msg_callback = cb;
|
2673
|
-
}
|
2674
|
-
|
2675
|
-
void SSL_set_msg_callback_arg(SSL *ssl, void *arg) {
|
2676
|
-
ssl->msg_callback_arg = arg;
|
2677
|
-
}
|
2678
|
-
|
2679
|
-
void SSL_CTX_set_keylog_callback(SSL_CTX *ctx,
|
2680
|
-
void (*cb)(const SSL *ssl, const char *line)) {
|
2681
|
-
ctx->keylog_callback = cb;
|
2682
|
-
}
|
2683
|
-
|
2684
|
-
void (*SSL_CTX_get_keylog_callback(const SSL_CTX *ctx))(const SSL *ssl,
|
2685
|
-
const char *line) {
|
2686
|
-
return ctx->keylog_callback;
|
2687
|
-
}
|
2688
|
-
|
2689
|
-
void SSL_CTX_set_current_time_cb(SSL_CTX *ctx,
|
2690
|
-
void (*cb)(const SSL *ssl,
|
2691
|
-
struct timeval *out_clock)) {
|
2692
|
-
ctx->current_time_cb = cb;
|
2693
|
-
}
|
2694
|
-
|
2695
|
-
int SSL_is_init_finished(const SSL *ssl) {
|
2696
|
-
return !SSL_in_init(ssl);
|
2697
|
-
}
|
2698
|
-
|
2699
|
-
int SSL_in_init(const SSL *ssl) {
|
2700
|
-
// This returns false once all the handshake state has been finalized, to
|
2701
|
-
// allow callbacks and getters based on SSL_in_init to return the correct
|
2702
|
-
// values.
|
2703
|
-
SSL_HANDSHAKE *hs = ssl->s3->hs.get();
|
2704
|
-
return hs != nullptr && !hs->handshake_finalized;
|
2705
|
-
}
|
2706
|
-
|
2707
|
-
int SSL_in_false_start(const SSL *ssl) {
|
2708
|
-
if (ssl->s3->hs == NULL) {
|
2709
|
-
return 0;
|
2710
|
-
}
|
2711
|
-
return ssl->s3->hs->in_false_start;
|
2712
|
-
}
|
2713
|
-
|
2714
|
-
int SSL_cutthrough_complete(const SSL *ssl) {
|
2715
|
-
return SSL_in_false_start(ssl);
|
2716
|
-
}
|
2717
|
-
|
2718
|
-
int SSL_is_server(const SSL *ssl) { return ssl->server; }
|
2719
|
-
|
2720
|
-
int SSL_is_dtls(const SSL *ssl) { return ssl->method->is_dtls; }
|
2721
|
-
|
2722
|
-
void SSL_CTX_set_select_certificate_cb(
|
2723
|
-
SSL_CTX *ctx,
|
2724
|
-
enum ssl_select_cert_result_t (*cb)(const SSL_CLIENT_HELLO *)) {
|
2725
|
-
ctx->select_certificate_cb = cb;
|
2726
|
-
}
|
2727
|
-
|
2728
|
-
void SSL_CTX_set_dos_protection_cb(SSL_CTX *ctx,
|
2729
|
-
int (*cb)(const SSL_CLIENT_HELLO *)) {
|
2730
|
-
ctx->dos_protection_cb = cb;
|
2731
|
-
}
|
2732
|
-
|
2733
|
-
void SSL_CTX_set_reverify_on_resume(SSL_CTX *ctx, int enabled) {
|
2734
|
-
ctx->reverify_on_resume = !!enabled;
|
2735
|
-
}
|
2736
|
-
|
2737
|
-
void SSL_set_enforce_rsa_key_usage(SSL *ssl, int enabled) {
|
2738
|
-
if (!ssl->config) {
|
2739
|
-
return;
|
2740
|
-
}
|
2741
|
-
ssl->config->enforce_rsa_key_usage = !!enabled;
|
2742
|
-
}
|
2743
|
-
|
2744
|
-
void SSL_set_renegotiate_mode(SSL *ssl, enum ssl_renegotiate_mode_t mode) {
|
2745
|
-
ssl->renegotiate_mode = mode;
|
2746
|
-
|
2747
|
-
// Check if |ssl_can_renegotiate| has changed and the configuration may now be
|
2748
|
-
// shed. HTTP clients may initially allow renegotiation for HTTP/1.1, and then
|
2749
|
-
// disable after the handshake once the ALPN protocol is known to be HTTP/2.
|
2750
|
-
ssl_maybe_shed_handshake_config(ssl);
|
2751
|
-
}
|
2752
|
-
|
2753
|
-
int SSL_get_ivs(const SSL *ssl, const uint8_t **out_read_iv,
|
2754
|
-
const uint8_t **out_write_iv, size_t *out_iv_len) {
|
2755
|
-
size_t write_iv_len;
|
2756
|
-
if (!ssl->s3->aead_read_ctx->GetIV(out_read_iv, out_iv_len) ||
|
2757
|
-
!ssl->s3->aead_write_ctx->GetIV(out_write_iv, &write_iv_len) ||
|
2758
|
-
*out_iv_len != write_iv_len) {
|
2759
|
-
return 0;
|
2760
|
-
}
|
2761
|
-
|
2762
|
-
return 1;
|
2763
|
-
}
|
2764
|
-
|
2765
|
-
static uint64_t be_to_u64(const uint8_t in[8]) {
|
2766
|
-
return (((uint64_t)in[0]) << 56) | (((uint64_t)in[1]) << 48) |
|
2767
|
-
(((uint64_t)in[2]) << 40) | (((uint64_t)in[3]) << 32) |
|
2768
|
-
(((uint64_t)in[4]) << 24) | (((uint64_t)in[5]) << 16) |
|
2769
|
-
(((uint64_t)in[6]) << 8) | ((uint64_t)in[7]);
|
2770
|
-
}
|
2771
|
-
|
2772
|
-
uint64_t SSL_get_read_sequence(const SSL *ssl) {
|
2773
|
-
// TODO(davidben): Internally represent sequence numbers as uint64_t.
|
2774
|
-
if (SSL_is_dtls(ssl)) {
|
2775
|
-
// max_seq_num already includes the epoch.
|
2776
|
-
assert(ssl->d1->r_epoch == (ssl->d1->bitmap.max_seq_num >> 48));
|
2777
|
-
return ssl->d1->bitmap.max_seq_num;
|
2778
|
-
}
|
2779
|
-
return be_to_u64(ssl->s3->read_sequence);
|
2780
|
-
}
|
2781
|
-
|
2782
|
-
uint64_t SSL_get_write_sequence(const SSL *ssl) {
|
2783
|
-
uint64_t ret = be_to_u64(ssl->s3->write_sequence);
|
2784
|
-
if (SSL_is_dtls(ssl)) {
|
2785
|
-
assert((ret >> 48) == 0);
|
2786
|
-
ret |= ((uint64_t)ssl->d1->w_epoch) << 48;
|
2787
|
-
}
|
2788
|
-
return ret;
|
2789
|
-
}
|
2790
|
-
|
2791
|
-
uint16_t SSL_get_peer_signature_algorithm(const SSL *ssl) {
|
2792
|
-
// TODO(davidben): This checks the wrong session if there is a renegotiation
|
2793
|
-
// in progress.
|
2794
|
-
SSL_SESSION *session = SSL_get_session(ssl);
|
2795
|
-
if (session == NULL) {
|
2796
|
-
return 0;
|
2797
|
-
}
|
2798
|
-
|
2799
|
-
return session->peer_signature_algorithm;
|
2800
|
-
}
|
2801
|
-
|
2802
|
-
size_t SSL_get_client_random(const SSL *ssl, uint8_t *out, size_t max_out) {
|
2803
|
-
if (max_out == 0) {
|
2804
|
-
return sizeof(ssl->s3->client_random);
|
2805
|
-
}
|
2806
|
-
if (max_out > sizeof(ssl->s3->client_random)) {
|
2807
|
-
max_out = sizeof(ssl->s3->client_random);
|
2808
|
-
}
|
2809
|
-
OPENSSL_memcpy(out, ssl->s3->client_random, max_out);
|
2810
|
-
return max_out;
|
2811
|
-
}
|
2812
|
-
|
2813
|
-
size_t SSL_get_server_random(const SSL *ssl, uint8_t *out, size_t max_out) {
|
2814
|
-
if (max_out == 0) {
|
2815
|
-
return sizeof(ssl->s3->server_random);
|
2816
|
-
}
|
2817
|
-
if (max_out > sizeof(ssl->s3->server_random)) {
|
2818
|
-
max_out = sizeof(ssl->s3->server_random);
|
2819
|
-
}
|
2820
|
-
OPENSSL_memcpy(out, ssl->s3->server_random, max_out);
|
2821
|
-
return max_out;
|
2822
|
-
}
|
2823
|
-
|
2824
|
-
const SSL_CIPHER *SSL_get_pending_cipher(const SSL *ssl) {
|
2825
|
-
SSL_HANDSHAKE *hs = ssl->s3->hs.get();
|
2826
|
-
if (hs == NULL) {
|
2827
|
-
return NULL;
|
2828
|
-
}
|
2829
|
-
return hs->new_cipher;
|
2830
|
-
}
|
2831
|
-
|
2832
|
-
void SSL_set_retain_only_sha256_of_client_certs(SSL *ssl, int enabled) {
|
2833
|
-
if (!ssl->config) {
|
2834
|
-
return;
|
2835
|
-
}
|
2836
|
-
ssl->config->retain_only_sha256_of_client_certs = !!enabled;
|
2837
|
-
}
|
2838
|
-
|
2839
|
-
void SSL_CTX_set_retain_only_sha256_of_client_certs(SSL_CTX *ctx, int enabled) {
|
2840
|
-
ctx->retain_only_sha256_of_client_certs = !!enabled;
|
2841
|
-
}
|
2842
|
-
|
2843
|
-
void SSL_CTX_set_grease_enabled(SSL_CTX *ctx, int enabled) {
|
2844
|
-
ctx->grease_enabled = !!enabled;
|
2845
|
-
}
|
2846
|
-
|
2847
|
-
int32_t SSL_get_ticket_age_skew(const SSL *ssl) {
|
2848
|
-
return ssl->s3->ticket_age_skew;
|
2849
|
-
}
|
2850
|
-
|
2851
|
-
void SSL_CTX_set_false_start_allowed_without_alpn(SSL_CTX *ctx, int allowed) {
|
2852
|
-
ctx->false_start_allowed_without_alpn = !!allowed;
|
2853
|
-
}
|
2854
|
-
|
2855
|
-
int SSL_is_tls13_downgrade(const SSL *ssl) { return ssl->s3->tls13_downgrade; }
|
2856
|
-
|
2857
|
-
void SSL_CTX_set_ignore_tls13_downgrade(SSL_CTX *ctx, int ignore) {
|
2858
|
-
ctx->ignore_tls13_downgrade = !!ignore;
|
2859
|
-
}
|
2860
|
-
|
2861
|
-
void SSL_set_ignore_tls13_downgrade(SSL *ssl, int ignore) {
|
2862
|
-
if (!ssl->config) {
|
2863
|
-
return;
|
2864
|
-
}
|
2865
|
-
ssl->config->ignore_tls13_downgrade = !!ignore;
|
2866
|
-
}
|
2867
|
-
|
2868
|
-
void SSL_set_shed_handshake_config(SSL *ssl, int enable) {
|
2869
|
-
if (!ssl->config) {
|
2870
|
-
return;
|
2871
|
-
}
|
2872
|
-
ssl->config->shed_handshake_config = !!enable;
|
2873
|
-
}
|
2874
|
-
|
2875
|
-
void SSL_set_jdk11_workaround(SSL *ssl, int enable) {
|
2876
|
-
if (!ssl->config) {
|
2877
|
-
return;
|
2878
|
-
}
|
2879
|
-
ssl->config->jdk11_workaround = !!enable;
|
2880
|
-
}
|
2881
|
-
|
2882
|
-
int SSL_clear(SSL *ssl) {
|
2883
|
-
if (!ssl->config) {
|
2884
|
-
return 0; // SSL_clear may not be used after shedding config.
|
2885
|
-
}
|
2886
|
-
|
2887
|
-
// In OpenSSL, reusing a client |SSL| with |SSL_clear| causes the previously
|
2888
|
-
// established session to be offered the next time around. wpa_supplicant
|
2889
|
-
// depends on this behavior, so emulate it.
|
2890
|
-
UniquePtr<SSL_SESSION> session;
|
2891
|
-
if (!ssl->server && ssl->s3->established_session != NULL) {
|
2892
|
-
session = UpRef(ssl->s3->established_session);
|
2893
|
-
}
|
2894
|
-
|
2895
|
-
// The ssl->d1->mtu is simultaneously configuration (preserved across
|
2896
|
-
// clear) and connection-specific state (gets reset).
|
2897
|
-
//
|
2898
|
-
// TODO(davidben): Avoid this.
|
2899
|
-
unsigned mtu = 0;
|
2900
|
-
if (ssl->d1 != NULL) {
|
2901
|
-
mtu = ssl->d1->mtu;
|
2902
|
-
}
|
2903
|
-
|
2904
|
-
ssl->method->ssl_free(ssl);
|
2905
|
-
if (!ssl->method->ssl_new(ssl)) {
|
2906
|
-
return 0;
|
2907
|
-
}
|
2908
|
-
|
2909
|
-
if (SSL_is_dtls(ssl) && (SSL_get_options(ssl) & SSL_OP_NO_QUERY_MTU)) {
|
2910
|
-
ssl->d1->mtu = mtu;
|
2911
|
-
}
|
2912
|
-
|
2913
|
-
if (session != nullptr) {
|
2914
|
-
SSL_set_session(ssl, session.get());
|
2915
|
-
}
|
2916
|
-
|
2917
|
-
return 1;
|
2918
|
-
}
|
2919
|
-
|
2920
|
-
int SSL_CTX_sess_connect(const SSL_CTX *ctx) { return 0; }
|
2921
|
-
int SSL_CTX_sess_connect_good(const SSL_CTX *ctx) { return 0; }
|
2922
|
-
int SSL_CTX_sess_connect_renegotiate(const SSL_CTX *ctx) { return 0; }
|
2923
|
-
int SSL_CTX_sess_accept(const SSL_CTX *ctx) { return 0; }
|
2924
|
-
int SSL_CTX_sess_accept_renegotiate(const SSL_CTX *ctx) { return 0; }
|
2925
|
-
int SSL_CTX_sess_accept_good(const SSL_CTX *ctx) { return 0; }
|
2926
|
-
int SSL_CTX_sess_hits(const SSL_CTX *ctx) { return 0; }
|
2927
|
-
int SSL_CTX_sess_cb_hits(const SSL_CTX *ctx) { return 0; }
|
2928
|
-
int SSL_CTX_sess_misses(const SSL_CTX *ctx) { return 0; }
|
2929
|
-
int SSL_CTX_sess_timeouts(const SSL_CTX *ctx) { return 0; }
|
2930
|
-
int SSL_CTX_sess_cache_full(const SSL_CTX *ctx) { return 0; }
|
2931
|
-
|
2932
|
-
int SSL_num_renegotiations(const SSL *ssl) {
|
2933
|
-
return SSL_total_renegotiations(ssl);
|
2934
|
-
}
|
2935
|
-
|
2936
|
-
int SSL_CTX_need_tmp_RSA(const SSL_CTX *ctx) { return 0; }
|
2937
|
-
int SSL_need_tmp_RSA(const SSL *ssl) { return 0; }
|
2938
|
-
int SSL_CTX_set_tmp_rsa(SSL_CTX *ctx, const RSA *rsa) { return 1; }
|
2939
|
-
int SSL_set_tmp_rsa(SSL *ssl, const RSA *rsa) { return 1; }
|
2940
|
-
void ERR_load_SSL_strings(void) {}
|
2941
|
-
void SSL_load_error_strings(void) {}
|
2942
|
-
int SSL_cache_hit(SSL *ssl) { return SSL_session_reused(ssl); }
|
2943
|
-
|
2944
|
-
int SSL_CTX_set_tmp_ecdh(SSL_CTX *ctx, const EC_KEY *ec_key) {
|
2945
|
-
if (ec_key == NULL || EC_KEY_get0_group(ec_key) == NULL) {
|
2946
|
-
OPENSSL_PUT_ERROR(SSL, ERR_R_PASSED_NULL_PARAMETER);
|
2947
|
-
return 0;
|
2948
|
-
}
|
2949
|
-
int nid = EC_GROUP_get_curve_name(EC_KEY_get0_group(ec_key));
|
2950
|
-
return SSL_CTX_set1_curves(ctx, &nid, 1);
|
2951
|
-
}
|
2952
|
-
|
2953
|
-
int SSL_set_tmp_ecdh(SSL *ssl, const EC_KEY *ec_key) {
|
2954
|
-
if (ec_key == NULL || EC_KEY_get0_group(ec_key) == NULL) {
|
2955
|
-
OPENSSL_PUT_ERROR(SSL, ERR_R_PASSED_NULL_PARAMETER);
|
2956
|
-
return 0;
|
2957
|
-
}
|
2958
|
-
int nid = EC_GROUP_get_curve_name(EC_KEY_get0_group(ec_key));
|
2959
|
-
return SSL_set1_curves(ssl, &nid, 1);
|
2960
|
-
}
|
2961
|
-
|
2962
|
-
void SSL_CTX_set_ticket_aead_method(SSL_CTX *ctx,
|
2963
|
-
const SSL_TICKET_AEAD_METHOD *aead_method) {
|
2964
|
-
ctx->ticket_aead_method = aead_method;
|
2965
|
-
}
|
2966
|
-
|
2967
|
-
int SSL_set_tlsext_status_type(SSL *ssl, int type) {
|
2968
|
-
if (!ssl->config) {
|
2969
|
-
return 0;
|
2970
|
-
}
|
2971
|
-
ssl->config->ocsp_stapling_enabled = type == TLSEXT_STATUSTYPE_ocsp;
|
2972
|
-
return 1;
|
2973
|
-
}
|
2974
|
-
|
2975
|
-
int SSL_get_tlsext_status_type(const SSL *ssl) {
|
2976
|
-
if (ssl->server) {
|
2977
|
-
SSL_HANDSHAKE *hs = ssl->s3->hs.get();
|
2978
|
-
return hs != nullptr && hs->ocsp_stapling_requested
|
2979
|
-
? TLSEXT_STATUSTYPE_ocsp
|
2980
|
-
: TLSEXT_STATUSTYPE_nothing;
|
2981
|
-
}
|
2982
|
-
|
2983
|
-
return ssl->config != nullptr && ssl->config->ocsp_stapling_enabled
|
2984
|
-
? TLSEXT_STATUSTYPE_ocsp
|
2985
|
-
: TLSEXT_STATUSTYPE_nothing;
|
2986
|
-
}
|
2987
|
-
|
2988
|
-
int SSL_set_tlsext_status_ocsp_resp(SSL *ssl, uint8_t *resp, size_t resp_len) {
|
2989
|
-
if (SSL_set_ocsp_response(ssl, resp, resp_len)) {
|
2990
|
-
OPENSSL_free(resp);
|
2991
|
-
return 1;
|
2992
|
-
}
|
2993
|
-
return 0;
|
2994
|
-
}
|
2995
|
-
|
2996
|
-
size_t SSL_get_tlsext_status_ocsp_resp(const SSL *ssl, const uint8_t **out) {
|
2997
|
-
size_t ret;
|
2998
|
-
SSL_get0_ocsp_response(ssl, out, &ret);
|
2999
|
-
return ret;
|
3000
|
-
}
|
3001
|
-
|
3002
|
-
int SSL_CTX_set_tlsext_status_cb(SSL_CTX *ctx,
|
3003
|
-
int (*callback)(SSL *ssl, void *arg)) {
|
3004
|
-
ctx->legacy_ocsp_callback = callback;
|
3005
|
-
return 1;
|
3006
|
-
}
|
3007
|
-
|
3008
|
-
int SSL_CTX_set_tlsext_status_arg(SSL_CTX *ctx, void *arg) {
|
3009
|
-
ctx->legacy_ocsp_callback_arg = arg;
|
3010
|
-
return 1;
|
3011
|
-
}
|