wearefair-grpc 1.3.1.pre.a
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.yardopts +1 -0
- data/Makefile +19484 -0
- data/etc/roots.pem +5288 -0
- data/include/grpc/byte_buffer.h +102 -0
- data/include/grpc/byte_buffer_reader.h +39 -0
- data/include/grpc/census.h +484 -0
- data/include/grpc/compression.h +85 -0
- data/include/grpc/grpc.h +509 -0
- data/include/grpc/grpc_cronet.h +51 -0
- data/include/grpc/grpc_posix.h +81 -0
- data/include/grpc/grpc_security.h +390 -0
- data/include/grpc/grpc_security_constants.h +114 -0
- data/include/grpc/impl/codegen/atm.h +100 -0
- data/include/grpc/impl/codegen/atm_gcc_atomic.h +97 -0
- data/include/grpc/impl/codegen/atm_gcc_sync.h +97 -0
- data/include/grpc/impl/codegen/atm_windows.h +140 -0
- data/include/grpc/impl/codegen/byte_buffer_reader.h +57 -0
- data/include/grpc/impl/codegen/compression_types.h +122 -0
- data/include/grpc/impl/codegen/connectivity_state.h +61 -0
- data/include/grpc/impl/codegen/exec_ctx_fwd.h +41 -0
- data/include/grpc/impl/codegen/gpr_slice.h +84 -0
- data/include/grpc/impl/codegen/gpr_types.h +75 -0
- data/include/grpc/impl/codegen/grpc_types.h +550 -0
- data/include/grpc/impl/codegen/port_platform.h +421 -0
- data/include/grpc/impl/codegen/propagation_bits.h +67 -0
- data/include/grpc/impl/codegen/slice.h +157 -0
- data/include/grpc/impl/codegen/status.h +163 -0
- data/include/grpc/impl/codegen/sync.h +75 -0
- data/include/grpc/impl/codegen/sync_generic.h +55 -0
- data/include/grpc/impl/codegen/sync_posix.h +47 -0
- data/include/grpc/impl/codegen/sync_windows.h +49 -0
- data/include/grpc/load_reporting.h +63 -0
- data/include/grpc/module.modulemap +13 -0
- data/include/grpc/slice.h +168 -0
- data/include/grpc/slice_buffer.h +94 -0
- data/include/grpc/status.h +39 -0
- data/include/grpc/support/alloc.h +82 -0
- data/include/grpc/support/atm.h +39 -0
- data/include/grpc/support/atm_gcc_atomic.h +39 -0
- data/include/grpc/support/atm_gcc_sync.h +39 -0
- data/include/grpc/support/atm_windows.h +39 -0
- data/include/grpc/support/avl.h +97 -0
- data/include/grpc/support/cmdline.h +103 -0
- data/include/grpc/support/cpu.h +59 -0
- data/include/grpc/support/histogram.h +79 -0
- data/include/grpc/support/host_port.h +66 -0
- data/include/grpc/support/log.h +118 -0
- data/include/grpc/support/log_windows.h +53 -0
- data/include/grpc/support/port_platform.h +39 -0
- data/include/grpc/support/string_util.h +64 -0
- data/include/grpc/support/subprocess.h +59 -0
- data/include/grpc/support/sync.h +295 -0
- data/include/grpc/support/sync_generic.h +39 -0
- data/include/grpc/support/sync_posix.h +39 -0
- data/include/grpc/support/sync_windows.h +39 -0
- data/include/grpc/support/thd.h +91 -0
- data/include/grpc/support/time.h +105 -0
- data/include/grpc/support/tls.h +77 -0
- data/include/grpc/support/tls_gcc.h +100 -0
- data/include/grpc/support/tls_msvc.h +56 -0
- data/include/grpc/support/tls_pthread.h +60 -0
- data/include/grpc/support/useful.h +80 -0
- data/src/boringssl/err_data.c +1270 -0
- data/src/core/ext/census/aggregation.h +66 -0
- data/src/core/ext/census/base_resources.c +71 -0
- data/src/core/ext/census/base_resources.h +39 -0
- data/src/core/ext/census/census_interface.h +76 -0
- data/src/core/ext/census/census_rpc_stats.h +101 -0
- data/src/core/ext/census/context.c +509 -0
- data/src/core/ext/census/gen/census.pb.c +176 -0
- data/src/core/ext/census/gen/census.pb.h +295 -0
- data/src/core/ext/census/gen/trace_context.pb.c +54 -0
- data/src/core/ext/census/gen/trace_context.pb.h +93 -0
- data/src/core/ext/census/grpc_context.c +53 -0
- data/src/core/ext/census/grpc_filter.c +213 -0
- data/src/core/ext/census/grpc_filter.h +44 -0
- data/src/core/ext/census/grpc_plugin.c +85 -0
- data/src/core/ext/census/initialize.c +66 -0
- data/src/core/ext/census/mlog.c +600 -0
- data/src/core/ext/census/mlog.h +95 -0
- data/src/core/ext/census/operation.c +63 -0
- data/src/core/ext/census/placeholders.c +64 -0
- data/src/core/ext/census/resource.c +312 -0
- data/src/core/ext/census/resource.h +63 -0
- data/src/core/ext/census/rpc_metric_id.h +51 -0
- data/src/core/ext/census/trace_context.c +86 -0
- data/src/core/ext/census/trace_context.h +71 -0
- data/src/core/ext/census/trace_label.h +61 -0
- data/src/core/ext/census/trace_propagation.h +63 -0
- data/src/core/ext/census/trace_status.h +45 -0
- data/src/core/ext/census/trace_string.h +50 -0
- data/src/core/ext/census/tracing.c +71 -0
- data/src/core/ext/census/tracing.h +124 -0
- data/src/core/ext/filters/client_channel/channel_connectivity.c +226 -0
- data/src/core/ext/filters/client_channel/client_channel.c +1410 -0
- data/src/core/ext/filters/client_channel/client_channel.h +64 -0
- data/src/core/ext/filters/client_channel/client_channel_factory.c +87 -0
- data/src/core/ext/filters/client_channel/client_channel_factory.h +92 -0
- data/src/core/ext/filters/client_channel/client_channel_plugin.c +106 -0
- data/src/core/ext/filters/client_channel/connector.c +55 -0
- data/src/core/ext/filters/client_channel/connector.h +88 -0
- data/src/core/ext/filters/client_channel/http_connect_handshaker.c +389 -0
- data/src/core/ext/filters/client_channel/http_connect_handshaker.h +49 -0
- data/src/core/ext/filters/client_channel/http_proxy.c +125 -0
- data/src/core/ext/filters/client_channel/http_proxy.h +39 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.c +1419 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.h +44 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel.h +57 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel_secure.c +107 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.c +249 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h +105 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.c +88 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.h +158 -0
- data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.c +476 -0
- data/src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.c +795 -0
- data/src/core/ext/filters/client_channel/lb_policy.c +167 -0
- data/src/core/ext/filters/client_channel/lb_policy.h +209 -0
- data/src/core/ext/filters/client_channel/lb_policy_factory.c +163 -0
- data/src/core/ext/filters/client_channel/lb_policy_factory.h +134 -0
- data/src/core/ext/filters/client_channel/lb_policy_registry.c +85 -0
- data/src/core/ext/filters/client_channel/lb_policy_registry.h +55 -0
- data/src/core/ext/filters/client_channel/parse_address.c +170 -0
- data/src/core/ext/filters/client_channel/parse_address.h +54 -0
- data/src/core/ext/filters/client_channel/proxy_mapper.c +63 -0
- data/src/core/ext/filters/client_channel/proxy_mapper.h +89 -0
- data/src/core/ext/filters/client_channel/proxy_mapper_registry.c +139 -0
- data/src/core/ext/filters/client_channel/proxy_mapper_registry.h +59 -0
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.c +350 -0
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.h +66 -0
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.c +319 -0
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.c +289 -0
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h +64 -0
- data/src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.c +325 -0
- data/src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.c +234 -0
- data/src/core/ext/filters/client_channel/resolver.c +88 -0
- data/src/core/ext/filters/client_channel/resolver.h +101 -0
- data/src/core/ext/filters/client_channel/resolver_factory.c +56 -0
- data/src/core/ext/filters/client_channel/resolver_factory.h +85 -0
- data/src/core/ext/filters/client_channel/resolver_registry.c +174 -0
- data/src/core/ext/filters/client_channel/resolver_registry.h +84 -0
- data/src/core/ext/filters/client_channel/retry_throttle.c +210 -0
- data/src/core/ext/filters/client_channel/retry_throttle.h +65 -0
- data/src/core/ext/filters/client_channel/subchannel.c +835 -0
- data/src/core/ext/filters/client_channel/subchannel.h +203 -0
- data/src/core/ext/filters/client_channel/subchannel_index.c +262 -0
- data/src/core/ext/filters/client_channel/subchannel_index.h +77 -0
- data/src/core/ext/filters/client_channel/uri_parser.c +315 -0
- data/src/core/ext/filters/client_channel/uri_parser.h +65 -0
- data/src/core/ext/filters/load_reporting/load_reporting.c +106 -0
- data/src/core/ext/filters/load_reporting/load_reporting.h +73 -0
- data/src/core/ext/filters/load_reporting/load_reporting_filter.c +218 -0
- data/src/core/ext/filters/load_reporting/load_reporting_filter.h +42 -0
- data/src/core/ext/filters/max_age/max_age_filter.c +439 -0
- data/src/core/ext/filters/max_age/max_age_filter.h +39 -0
- data/src/core/ext/transport/chttp2/alpn/alpn.c +56 -0
- data/src/core/ext/transport/chttp2/alpn/alpn.h +49 -0
- data/src/core/ext/transport/chttp2/client/chttp2_connector.c +221 -0
- data/src/core/ext/transport/chttp2/client/chttp2_connector.h +41 -0
- data/src/core/ext/transport/chttp2/client/insecure/channel_create.c +121 -0
- data/src/core/ext/transport/chttp2/client/insecure/channel_create_posix.c +95 -0
- data/src/core/ext/transport/chttp2/client/secure/secure_channel_create.c +239 -0
- data/src/core/ext/transport/chttp2/server/chttp2_server.c +304 -0
- data/src/core/ext/transport/chttp2/server/chttp2_server.h +47 -0
- data/src/core/ext/transport/chttp2/server/insecure/server_chttp2.c +59 -0
- data/src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.c +90 -0
- data/src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.c +101 -0
- data/src/core/ext/transport/chttp2/transport/bin_decoder.c +236 -0
- data/src/core/ext/transport/chttp2/transport/bin_decoder.h +67 -0
- data/src/core/ext/transport/chttp2/transport/bin_encoder.c +241 -0
- data/src/core/ext/transport/chttp2/transport/bin_encoder.h +54 -0
- data/src/core/ext/transport/chttp2/transport/chttp2_plugin.c +43 -0
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.c +2847 -0
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.h +53 -0
- data/src/core/ext/transport/chttp2/transport/frame.h +61 -0
- data/src/core/ext/transport/chttp2/transport/frame_data.c +287 -0
- data/src/core/ext/transport/chttp2/transport/frame_data.h +104 -0
- data/src/core/ext/transport/chttp2/transport/frame_goaway.c +198 -0
- data/src/core/ext/transport/chttp2/transport/frame_goaway.h +78 -0
- data/src/core/ext/transport/chttp2/transport/frame_ping.c +145 -0
- data/src/core/ext/transport/chttp2/transport/frame_ping.h +59 -0
- data/src/core/ext/transport/chttp2/transport/frame_rst_stream.c +125 -0
- data/src/core/ext/transport/chttp2/transport/frame_rst_stream.h +58 -0
- data/src/core/ext/transport/chttp2/transport/frame_settings.c +239 -0
- data/src/core/ext/transport/chttp2/transport/frame_settings.h +76 -0
- data/src/core/ext/transport/chttp2/transport/frame_window_update.c +134 -0
- data/src/core/ext/transport/chttp2/transport/frame_window_update.h +57 -0
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.c +661 -0
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.h +107 -0
- data/src/core/ext/transport/chttp2/transport/hpack_parser.c +1734 -0
- data/src/core/ext/transport/chttp2/transport/hpack_parser.h +129 -0
- data/src/core/ext/transport/chttp2/transport/hpack_table.c +383 -0
- data/src/core/ext/transport/chttp2/transport/hpack_table.h +112 -0
- data/src/core/ext/transport/chttp2/transport/http2_settings.c +75 -0
- data/src/core/ext/transport/chttp2/transport/http2_settings.h +74 -0
- data/src/core/ext/transport/chttp2/transport/huffsyms.c +105 -0
- data/src/core/ext/transport/chttp2/transport/huffsyms.h +48 -0
- data/src/core/ext/transport/chttp2/transport/incoming_metadata.c +88 -0
- data/src/core/ext/transport/chttp2/transport/incoming_metadata.h +63 -0
- data/src/core/ext/transport/chttp2/transport/internal.h +852 -0
- data/src/core/ext/transport/chttp2/transport/parsing.c +825 -0
- data/src/core/ext/transport/chttp2/transport/stream_lists.c +194 -0
- data/src/core/ext/transport/chttp2/transport/stream_map.c +176 -0
- data/src/core/ext/transport/chttp2/transport/stream_map.h +83 -0
- data/src/core/ext/transport/chttp2/transport/varint.c +65 -0
- data/src/core/ext/transport/chttp2/transport/varint.h +75 -0
- data/src/core/ext/transport/chttp2/transport/writing.c +429 -0
- data/src/core/lib/channel/channel_args.c +355 -0
- data/src/core/lib/channel/channel_args.h +126 -0
- data/src/core/lib/channel/channel_stack.c +291 -0
- data/src/core/lib/channel/channel_stack.h +319 -0
- data/src/core/lib/channel/channel_stack_builder.c +284 -0
- data/src/core/lib/channel/channel_stack_builder.h +170 -0
- data/src/core/lib/channel/compress_filter.c +353 -0
- data/src/core/lib/channel/compress_filter.h +67 -0
- data/src/core/lib/channel/connected_channel.c +188 -0
- data/src/core/lib/channel/connected_channel.h +48 -0
- data/src/core/lib/channel/context.h +64 -0
- data/src/core/lib/channel/deadline_filter.c +348 -0
- data/src/core/lib/channel/deadline_filter.h +102 -0
- data/src/core/lib/channel/handshaker.c +281 -0
- data/src/core/lib/channel/handshaker.h +182 -0
- data/src/core/lib/channel/handshaker_factory.c +54 -0
- data/src/core/lib/channel/handshaker_factory.h +66 -0
- data/src/core/lib/channel/handshaker_registry.c +113 -0
- data/src/core/lib/channel/handshaker_registry.h +63 -0
- data/src/core/lib/channel/http_client_filter.c +601 -0
- data/src/core/lib/channel/http_client_filter.h +47 -0
- data/src/core/lib/channel/http_server_filter.c +445 -0
- data/src/core/lib/channel/http_server_filter.h +42 -0
- data/src/core/lib/channel/message_size_filter.c +270 -0
- data/src/core/lib/channel/message_size_filter.h +39 -0
- data/src/core/lib/compression/algorithm_metadata.h +53 -0
- data/src/core/lib/compression/compression.c +198 -0
- data/src/core/lib/compression/message_compress.c +204 -0
- data/src/core/lib/compression/message_compress.h +54 -0
- data/src/core/lib/debug/trace.c +140 -0
- data/src/core/lib/debug/trace.h +43 -0
- data/src/core/lib/http/format_request.c +135 -0
- data/src/core/lib/http/format_request.h +47 -0
- data/src/core/lib/http/httpcli.c +336 -0
- data/src/core/lib/http/httpcli.h +141 -0
- data/src/core/lib/http/httpcli_security_connector.c +199 -0
- data/src/core/lib/http/parser.c +379 -0
- data/src/core/lib/http/parser.h +126 -0
- data/src/core/lib/iomgr/closure.c +168 -0
- data/src/core/lib/iomgr/closure.h +153 -0
- data/src/core/lib/iomgr/combiner.c +460 -0
- data/src/core/lib/iomgr/combiner.h +83 -0
- data/src/core/lib/iomgr/endpoint.c +78 -0
- data/src/core/lib/iomgr/endpoint.h +117 -0
- data/src/core/lib/iomgr/endpoint_pair.h +47 -0
- data/src/core/lib/iomgr/endpoint_pair_posix.c +87 -0
- data/src/core/lib/iomgr/endpoint_pair_uv.c +53 -0
- data/src/core/lib/iomgr/endpoint_pair_windows.c +101 -0
- data/src/core/lib/iomgr/error.c +793 -0
- data/src/core/lib/iomgr/error.h +218 -0
- data/src/core/lib/iomgr/error_internal.h +75 -0
- data/src/core/lib/iomgr/ev_epoll_linux.c +1965 -0
- data/src/core/lib/iomgr/ev_epoll_linux.h +48 -0
- data/src/core/lib/iomgr/ev_poll_posix.c +1593 -0
- data/src/core/lib/iomgr/ev_poll_posix.h +42 -0
- data/src/core/lib/iomgr/ev_posix.c +287 -0
- data/src/core/lib/iomgr/ev_posix.h +189 -0
- data/src/core/lib/iomgr/exec_ctx.c +117 -0
- data/src/core/lib/iomgr/exec_ctx.h +117 -0
- data/src/core/lib/iomgr/executor.c +170 -0
- data/src/core/lib/iomgr/executor.h +51 -0
- data/src/core/lib/iomgr/iocp_windows.c +168 -0
- data/src/core/lib/iomgr/iocp_windows.h +55 -0
- data/src/core/lib/iomgr/iomgr.c +183 -0
- data/src/core/lib/iomgr/iomgr.h +47 -0
- data/src/core/lib/iomgr/iomgr_internal.h +58 -0
- data/src/core/lib/iomgr/iomgr_posix.c +56 -0
- data/src/core/lib/iomgr/iomgr_posix.h +39 -0
- data/src/core/lib/iomgr/iomgr_uv.c +49 -0
- data/src/core/lib/iomgr/iomgr_windows.c +76 -0
- data/src/core/lib/iomgr/load_file.c +92 -0
- data/src/core/lib/iomgr/load_file.h +56 -0
- data/src/core/lib/iomgr/lockfree_event.c +238 -0
- data/src/core/lib/iomgr/lockfree_event.h +54 -0
- data/src/core/lib/iomgr/network_status_tracker.c +48 -0
- data/src/core/lib/iomgr/network_status_tracker.h +45 -0
- data/src/core/lib/iomgr/polling_entity.c +104 -0
- data/src/core/lib/iomgr/polling_entity.h +81 -0
- data/src/core/lib/iomgr/pollset.h +97 -0
- data/src/core/lib/iomgr/pollset_set.h +62 -0
- data/src/core/lib/iomgr/pollset_set_uv.c +63 -0
- data/src/core/lib/iomgr/pollset_set_windows.c +64 -0
- data/src/core/lib/iomgr/pollset_set_windows.h +39 -0
- data/src/core/lib/iomgr/pollset_uv.c +156 -0
- data/src/core/lib/iomgr/pollset_uv.h +42 -0
- data/src/core/lib/iomgr/pollset_windows.c +232 -0
- data/src/core/lib/iomgr/pollset_windows.h +78 -0
- data/src/core/lib/iomgr/port.h +138 -0
- data/src/core/lib/iomgr/resolve_address.h +70 -0
- data/src/core/lib/iomgr/resolve_address_posix.c +207 -0
- data/src/core/lib/iomgr/resolve_address_uv.c +284 -0
- data/src/core/lib/iomgr/resolve_address_windows.c +190 -0
- data/src/core/lib/iomgr/resource_quota.c +877 -0
- data/src/core/lib/iomgr/resource_quota.h +167 -0
- data/src/core/lib/iomgr/sockaddr.h +55 -0
- data/src/core/lib/iomgr/sockaddr_posix.h +44 -0
- data/src/core/lib/iomgr/sockaddr_utils.c +272 -0
- data/src/core/lib/iomgr/sockaddr_utils.h +93 -0
- data/src/core/lib/iomgr/sockaddr_windows.h +43 -0
- data/src/core/lib/iomgr/socket_factory_posix.c +110 -0
- data/src/core/lib/iomgr/socket_factory_posix.h +90 -0
- data/src/core/lib/iomgr/socket_mutator.c +98 -0
- data/src/core/lib/iomgr/socket_mutator.h +80 -0
- data/src/core/lib/iomgr/socket_utils.h +42 -0
- data/src/core/lib/iomgr/socket_utils_common_posix.c +330 -0
- data/src/core/lib/iomgr/socket_utils_linux.c +57 -0
- data/src/core/lib/iomgr/socket_utils_posix.c +73 -0
- data/src/core/lib/iomgr/socket_utils_posix.h +147 -0
- data/src/core/lib/iomgr/socket_utils_uv.c +49 -0
- data/src/core/lib/iomgr/socket_utils_windows.c +52 -0
- data/src/core/lib/iomgr/socket_windows.c +167 -0
- data/src/core/lib/iomgr/socket_windows.h +125 -0
- data/src/core/lib/iomgr/tcp_client.h +55 -0
- data/src/core/lib/iomgr/tcp_client_posix.c +368 -0
- data/src/core/lib/iomgr/tcp_client_posix.h +45 -0
- data/src/core/lib/iomgr/tcp_client_uv.c +192 -0
- data/src/core/lib/iomgr/tcp_client_windows.c +260 -0
- data/src/core/lib/iomgr/tcp_posix.c +677 -0
- data/src/core/lib/iomgr/tcp_posix.h +70 -0
- data/src/core/lib/iomgr/tcp_server.h +116 -0
- data/src/core/lib/iomgr/tcp_server_posix.c +579 -0
- data/src/core/lib/iomgr/tcp_server_utils_posix.h +135 -0
- data/src/core/lib/iomgr/tcp_server_utils_posix_common.c +221 -0
- data/src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.c +196 -0
- data/src/core/lib/iomgr/tcp_server_utils_posix_noifaddrs.c +49 -0
- data/src/core/lib/iomgr/tcp_server_uv.c +393 -0
- data/src/core/lib/iomgr/tcp_server_windows.c +558 -0
- data/src/core/lib/iomgr/tcp_uv.c +374 -0
- data/src/core/lib/iomgr/tcp_uv.h +59 -0
- data/src/core/lib/iomgr/tcp_windows.c +462 -0
- data/src/core/lib/iomgr/tcp_windows.h +59 -0
- data/src/core/lib/iomgr/time_averaged_stats.c +77 -0
- data/src/core/lib/iomgr/time_averaged_stats.h +88 -0
- data/src/core/lib/iomgr/timer.h +111 -0
- data/src/core/lib/iomgr/timer_generic.c +567 -0
- data/src/core/lib/iomgr/timer_generic.h +49 -0
- data/src/core/lib/iomgr/timer_heap.c +152 -0
- data/src/core/lib/iomgr/timer_heap.h +57 -0
- data/src/core/lib/iomgr/timer_uv.c +103 -0
- data/src/core/lib/iomgr/timer_uv.h +47 -0
- data/src/core/lib/iomgr/udp_server.c +529 -0
- data/src/core/lib/iomgr/udp_server.h +89 -0
- data/src/core/lib/iomgr/unix_sockets_posix.c +108 -0
- data/src/core/lib/iomgr/unix_sockets_posix.h +56 -0
- data/src/core/lib/iomgr/unix_sockets_posix_noop.c +62 -0
- data/src/core/lib/iomgr/wakeup_fd_cv.c +118 -0
- data/src/core/lib/iomgr/wakeup_fd_cv.h +80 -0
- data/src/core/lib/iomgr/wakeup_fd_eventfd.c +97 -0
- data/src/core/lib/iomgr/wakeup_fd_nospecial.c +51 -0
- data/src/core/lib/iomgr/wakeup_fd_pipe.c +112 -0
- data/src/core/lib/iomgr/wakeup_fd_pipe.h +41 -0
- data/src/core/lib/iomgr/wakeup_fd_posix.c +101 -0
- data/src/core/lib/iomgr/wakeup_fd_posix.h +109 -0
- data/src/core/lib/iomgr/workqueue.h +87 -0
- data/src/core/lib/iomgr/workqueue_uv.c +65 -0
- data/src/core/lib/iomgr/workqueue_uv.h +37 -0
- data/src/core/lib/iomgr/workqueue_windows.c +63 -0
- data/src/core/lib/iomgr/workqueue_windows.h +37 -0
- data/src/core/lib/json/json.c +63 -0
- data/src/core/lib/json/json.h +88 -0
- data/src/core/lib/json/json_common.h +49 -0
- data/src/core/lib/json/json_reader.c +675 -0
- data/src/core/lib/json/json_reader.h +160 -0
- data/src/core/lib/json/json_string.c +379 -0
- data/src/core/lib/json/json_writer.c +258 -0
- data/src/core/lib/json/json_writer.h +97 -0
- data/src/core/lib/profiling/basic_timers.c +298 -0
- data/src/core/lib/profiling/stap_timers.c +65 -0
- data/src/core/lib/profiling/timers.h +121 -0
- data/src/core/lib/security/context/security_context.c +350 -0
- data/src/core/lib/security/context/security_context.h +134 -0
- data/src/core/lib/security/credentials/composite/composite_credentials.c +274 -0
- data/src/core/lib/security/credentials/composite/composite_credentials.h +72 -0
- data/src/core/lib/security/credentials/credentials.c +308 -0
- data/src/core/lib/security/credentials/credentials.h +268 -0
- data/src/core/lib/security/credentials/credentials_metadata.c +103 -0
- data/src/core/lib/security/credentials/fake/fake_credentials.c +141 -0
- data/src/core/lib/security/credentials/fake/fake_credentials.h +71 -0
- data/src/core/lib/security/credentials/google_default/credentials_generic.c +54 -0
- data/src/core/lib/security/credentials/google_default/google_default_credentials.c +337 -0
- data/src/core/lib/security/credentials/google_default/google_default_credentials.h +60 -0
- data/src/core/lib/security/credentials/iam/iam_credentials.c +85 -0
- data/src/core/lib/security/credentials/iam/iam_credentials.h +44 -0
- data/src/core/lib/security/credentials/jwt/json_token.c +321 -0
- data/src/core/lib/security/credentials/jwt/json_token.h +88 -0
- data/src/core/lib/security/credentials/jwt/jwt_credentials.c +195 -0
- data/src/core/lib/security/credentials/jwt/jwt_credentials.h +63 -0
- data/src/core/lib/security/credentials/jwt/jwt_verifier.c +910 -0
- data/src/core/lib/security/credentials/jwt/jwt_verifier.h +140 -0
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.c +468 -0
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.h +109 -0
- data/src/core/lib/security/credentials/plugin/plugin_credentials.c +153 -0
- data/src/core/lib/security/credentials/plugin/plugin_credentials.h +45 -0
- data/src/core/lib/security/credentials/ssl/ssl_credentials.c +242 -0
- data/src/core/lib/security/credentials/ssl/ssl_credentials.h +48 -0
- data/src/core/lib/security/transport/auth_filters.h +42 -0
- data/src/core/lib/security/transport/client_auth_filter.c +384 -0
- data/src/core/lib/security/transport/lb_targets_info.c +70 -0
- data/src/core/lib/security/transport/lb_targets_info.h +47 -0
- data/src/core/lib/security/transport/secure_endpoint.c +427 -0
- data/src/core/lib/security/transport/secure_endpoint.h +49 -0
- data/src/core/lib/security/transport/security_connector.c +909 -0
- data/src/core/lib/security/transport/security_connector.h +252 -0
- data/src/core/lib/security/transport/security_handshaker.c +507 -0
- data/src/core/lib/security/transport/security_handshaker.h +49 -0
- data/src/core/lib/security/transport/server_auth_filter.c +277 -0
- data/src/core/lib/security/transport/tsi_error.c +42 -0
- data/src/core/lib/security/transport/tsi_error.h +42 -0
- data/src/core/lib/security/util/json_util.c +61 -0
- data/src/core/lib/security/util/json_util.h +55 -0
- data/src/core/lib/slice/b64.c +251 -0
- data/src/core/lib/slice/b64.h +65 -0
- data/src/core/lib/slice/percent_encoding.c +182 -0
- data/src/core/lib/slice/percent_encoding.h +78 -0
- data/src/core/lib/slice/slice.c +466 -0
- data/src/core/lib/slice/slice_buffer.c +355 -0
- data/src/core/lib/slice/slice_hash_table.c +125 -0
- data/src/core/lib/slice/slice_hash_table.h +77 -0
- data/src/core/lib/slice/slice_intern.c +346 -0
- data/src/core/lib/slice/slice_internal.h +64 -0
- data/src/core/lib/slice/slice_string_helpers.c +95 -0
- data/src/core/lib/slice/slice_string_helpers.h +63 -0
- data/src/core/lib/support/alloc.c +117 -0
- data/src/core/lib/support/arena.c +98 -0
- data/src/core/lib/support/arena.h +54 -0
- data/src/core/lib/support/atm.c +47 -0
- data/src/core/lib/support/avl.c +299 -0
- data/src/core/lib/support/backoff.c +87 -0
- data/src/core/lib/support/backoff.h +71 -0
- data/src/core/lib/support/block_annotate.h +48 -0
- data/src/core/lib/support/cmdline.c +345 -0
- data/src/core/lib/support/cpu_iphone.c +49 -0
- data/src/core/lib/support/cpu_linux.c +83 -0
- data/src/core/lib/support/cpu_posix.c +72 -0
- data/src/core/lib/support/cpu_windows.c +47 -0
- data/src/core/lib/support/env.h +58 -0
- data/src/core/lib/support/env_linux.c +89 -0
- data/src/core/lib/support/env_posix.c +57 -0
- data/src/core/lib/support/env_windows.c +79 -0
- data/src/core/lib/support/histogram.c +243 -0
- data/src/core/lib/support/host_port.c +110 -0
- data/src/core/lib/support/log.c +103 -0
- data/src/core/lib/support/log_android.c +87 -0
- data/src/core/lib/support/log_linux.c +105 -0
- data/src/core/lib/support/log_posix.c +106 -0
- data/src/core/lib/support/log_windows.c +112 -0
- data/src/core/lib/support/mpscq.c +83 -0
- data/src/core/lib/support/mpscq.h +65 -0
- data/src/core/lib/support/murmur_hash.c +94 -0
- data/src/core/lib/support/murmur_hash.h +44 -0
- data/src/core/lib/support/spinlock.h +52 -0
- data/src/core/lib/support/stack_lockfree.c +185 -0
- data/src/core/lib/support/stack_lockfree.h +53 -0
- data/src/core/lib/support/string.c +315 -0
- data/src/core/lib/support/string.h +128 -0
- data/src/core/lib/support/string_posix.c +86 -0
- data/src/core/lib/support/string_util_windows.c +94 -0
- data/src/core/lib/support/string_windows.c +83 -0
- data/src/core/lib/support/string_windows.h +47 -0
- data/src/core/lib/support/subprocess_posix.c +114 -0
- data/src/core/lib/support/subprocess_windows.c +141 -0
- data/src/core/lib/support/sync.c +137 -0
- data/src/core/lib/support/sync_posix.c +113 -0
- data/src/core/lib/support/sync_windows.c +133 -0
- data/src/core/lib/support/thd.c +64 -0
- data/src/core/lib/support/thd_internal.h +39 -0
- data/src/core/lib/support/thd_posix.c +95 -0
- data/src/core/lib/support/thd_windows.c +117 -0
- data/src/core/lib/support/time.c +262 -0
- data/src/core/lib/support/time_posix.c +176 -0
- data/src/core/lib/support/time_precise.c +89 -0
- data/src/core/lib/support/time_precise.h +42 -0
- data/src/core/lib/support/time_windows.c +116 -0
- data/src/core/lib/support/tls_pthread.c +45 -0
- data/src/core/lib/support/tmpfile.h +53 -0
- data/src/core/lib/support/tmpfile_msys.c +73 -0
- data/src/core/lib/support/tmpfile_posix.c +85 -0
- data/src/core/lib/support/tmpfile_windows.c +84 -0
- data/src/core/lib/support/wrap_memcpy.c +55 -0
- data/src/core/lib/surface/alarm.c +87 -0
- data/src/core/lib/surface/api_trace.c +36 -0
- data/src/core/lib/surface/api_trace.h +65 -0
- data/src/core/lib/surface/byte_buffer.c +103 -0
- data/src/core/lib/surface/byte_buffer_reader.c +140 -0
- data/src/core/lib/surface/call.c +1835 -0
- data/src/core/lib/surface/call.h +135 -0
- data/src/core/lib/surface/call_details.c +56 -0
- data/src/core/lib/surface/call_log_batch.c +131 -0
- data/src/core/lib/surface/call_test_only.h +64 -0
- data/src/core/lib/surface/channel.c +434 -0
- data/src/core/lib/surface/channel.h +99 -0
- data/src/core/lib/surface/channel_init.c +140 -0
- data/src/core/lib/surface/channel_init.h +96 -0
- data/src/core/lib/surface/channel_ping.c +80 -0
- data/src/core/lib/surface/channel_stack_type.c +54 -0
- data/src/core/lib/surface/channel_stack_type.h +58 -0
- data/src/core/lib/surface/completion_queue.c +692 -0
- data/src/core/lib/surface/completion_queue.h +102 -0
- data/src/core/lib/surface/completion_queue_factory.c +77 -0
- data/src/core/lib/surface/completion_queue_factory.h +51 -0
- data/src/core/lib/surface/event_string.c +81 -0
- data/src/core/lib/surface/event_string.h +42 -0
- data/src/core/lib/surface/init.c +261 -0
- data/src/core/lib/surface/init.h +42 -0
- data/src/core/lib/surface/init_secure.c +94 -0
- data/src/core/lib/surface/lame_client.c +188 -0
- data/src/core/lib/surface/lame_client.h +41 -0
- data/src/core/lib/surface/metadata_array.c +49 -0
- data/src/core/lib/surface/server.c +1529 -0
- data/src/core/lib/surface/server.h +71 -0
- data/src/core/lib/surface/validate_metadata.c +108 -0
- data/src/core/lib/surface/validate_metadata.h +43 -0
- data/src/core/lib/surface/version.c +41 -0
- data/src/core/lib/transport/bdp_estimator.c +104 -0
- data/src/core/lib/transport/bdp_estimator.h +76 -0
- data/src/core/lib/transport/byte_stream.c +81 -0
- data/src/core/lib/transport/byte_stream.h +85 -0
- data/src/core/lib/transport/connectivity_state.c +219 -0
- data/src/core/lib/transport/connectivity_state.h +101 -0
- data/src/core/lib/transport/error_utils.c +124 -0
- data/src/core/lib/transport/error_utils.h +56 -0
- data/src/core/lib/transport/http2_errors.h +56 -0
- data/src/core/lib/transport/metadata.c +529 -0
- data/src/core/lib/transport/metadata.h +186 -0
- data/src/core/lib/transport/metadata_batch.c +328 -0
- data/src/core/lib/transport/metadata_batch.h +166 -0
- data/src/core/lib/transport/pid_controller.c +78 -0
- data/src/core/lib/transport/pid_controller.h +77 -0
- data/src/core/lib/transport/service_config.c +266 -0
- data/src/core/lib/transport/service_config.h +77 -0
- data/src/core/lib/transport/static_metadata.c +801 -0
- data/src/core/lib/transport/static_metadata.h +557 -0
- data/src/core/lib/transport/status_conversion.c +113 -0
- data/src/core/lib/transport/status_conversion.h +49 -0
- data/src/core/lib/transport/timeout_encoding.c +190 -0
- data/src/core/lib/transport/timeout_encoding.h +49 -0
- data/src/core/lib/transport/transport.c +282 -0
- data/src/core/lib/transport/transport.h +354 -0
- data/src/core/lib/transport/transport_impl.h +90 -0
- data/src/core/lib/transport/transport_op_string.c +217 -0
- data/src/core/plugin_registry/grpc_plugin_registry.c +82 -0
- data/src/core/tsi/fake_transport_security.c +527 -0
- data/src/core/tsi/fake_transport_security.h +61 -0
- data/src/core/tsi/ssl_transport_security.c +1533 -0
- data/src/core/tsi/ssl_transport_security.h +214 -0
- data/src/core/tsi/ssl_types.h +55 -0
- data/src/core/tsi/transport_security.c +266 -0
- data/src/core/tsi/transport_security.h +111 -0
- data/src/core/tsi/transport_security_interface.h +353 -0
- data/src/ruby/bin/apis/google/protobuf/empty.rb +44 -0
- data/src/ruby/bin/apis/pubsub_demo.rb +256 -0
- data/src/ruby/bin/apis/tech/pubsub/proto/pubsub.rb +174 -0
- data/src/ruby/bin/apis/tech/pubsub/proto/pubsub_services.rb +103 -0
- data/src/ruby/bin/math_client.rb +147 -0
- data/src/ruby/bin/math_pb.rb +32 -0
- data/src/ruby/bin/math_server.rb +206 -0
- data/src/ruby/bin/math_services_pb.rb +66 -0
- data/src/ruby/bin/noproto_client.rb +108 -0
- data/src/ruby/bin/noproto_server.rb +112 -0
- data/src/ruby/ext/grpc/extconf.rb +131 -0
- data/src/ruby/ext/grpc/rb_byte_buffer.c +77 -0
- data/src/ruby/ext/grpc/rb_byte_buffer.h +50 -0
- data/src/ruby/ext/grpc/rb_call.c +1009 -0
- data/src/ruby/ext/grpc/rb_call.h +66 -0
- data/src/ruby/ext/grpc/rb_call_credentials.c +295 -0
- data/src/ruby/ext/grpc/rb_call_credentials.h +46 -0
- data/src/ruby/ext/grpc/rb_channel.c +662 -0
- data/src/ruby/ext/grpc/rb_channel.h +49 -0
- data/src/ruby/ext/grpc/rb_channel_args.c +168 -0
- data/src/ruby/ext/grpc/rb_channel_args.h +53 -0
- data/src/ruby/ext/grpc/rb_channel_credentials.c +268 -0
- data/src/ruby/ext/grpc/rb_channel_credentials.h +47 -0
- data/src/ruby/ext/grpc/rb_completion_queue.c +117 -0
- data/src/ruby/ext/grpc/rb_completion_queue.h +51 -0
- data/src/ruby/ext/grpc/rb_compression_options.c +472 -0
- data/src/ruby/ext/grpc/rb_compression_options.h +44 -0
- data/src/ruby/ext/grpc/rb_event_thread.c +158 -0
- data/src/ruby/ext/grpc/rb_event_thread.h +37 -0
- data/src/ruby/ext/grpc/rb_grpc.c +343 -0
- data/src/ruby/ext/grpc/rb_grpc.h +87 -0
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +634 -0
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +955 -0
- data/src/ruby/ext/grpc/rb_loader.c +72 -0
- data/src/ruby/ext/grpc/rb_loader.h +40 -0
- data/src/ruby/ext/grpc/rb_server.c +359 -0
- data/src/ruby/ext/grpc/rb_server.h +47 -0
- data/src/ruby/ext/grpc/rb_server_credentials.c +258 -0
- data/src/ruby/ext/grpc/rb_server_credentials.h +47 -0
- data/src/ruby/lib/grpc/core/time_consts.rb +71 -0
- data/src/ruby/lib/grpc/errors.rb +215 -0
- data/src/ruby/lib/grpc/generic/active_call.rb +547 -0
- data/src/ruby/lib/grpc/generic/bidi_call.rb +229 -0
- data/src/ruby/lib/grpc/generic/client_stub.rb +463 -0
- data/src/ruby/lib/grpc/generic/rpc_desc.rb +173 -0
- data/src/ruby/lib/grpc/generic/rpc_server.rb +476 -0
- data/src/ruby/lib/grpc/generic/service.rb +225 -0
- data/src/ruby/lib/grpc/grpc.rb +39 -0
- data/src/ruby/lib/grpc/grpc_c.bundle +0 -0
- data/src/ruby/lib/grpc/logconfig.rb +59 -0
- data/src/ruby/lib/grpc/notifier.rb +60 -0
- data/src/ruby/lib/grpc/version.rb +33 -0
- data/src/ruby/lib/grpc.rb +49 -0
- data/src/ruby/pb/README.md +42 -0
- data/src/ruby/pb/generate_proto_ruby.sh +58 -0
- data/src/ruby/pb/grpc/health/checker.rb +77 -0
- data/src/ruby/pb/grpc/health/v1/health_pb.rb +28 -0
- data/src/ruby/pb/grpc/health/v1/health_services_pb.rb +56 -0
- data/src/ruby/pb/grpc/testing/duplicate/echo_duplicate_services_pb.rb +58 -0
- data/src/ruby/pb/grpc/testing/metrics_pb.rb +28 -0
- data/src/ruby/pb/grpc/testing/metrics_services_pb.rb +64 -0
- data/src/ruby/pb/src/proto/grpc/testing/empty_pb.rb +15 -0
- data/src/ruby/pb/src/proto/grpc/testing/messages_pb.rb +82 -0
- data/src/ruby/pb/src/proto/grpc/testing/test_pb.rb +14 -0
- data/src/ruby/pb/src/proto/grpc/testing/test_services_pb.rb +117 -0
- data/src/ruby/pb/test/client.rb +779 -0
- data/src/ruby/pb/test/server.rb +267 -0
- data/src/ruby/spec/call_credentials_spec.rb +57 -0
- data/src/ruby/spec/call_spec.rb +162 -0
- data/src/ruby/spec/channel_connection_spec.rb +141 -0
- data/src/ruby/spec/channel_credentials_spec.rb +97 -0
- data/src/ruby/spec/channel_spec.rb +205 -0
- data/src/ruby/spec/client_server_spec.rb +491 -0
- data/src/ruby/spec/compression_options_spec.rb +164 -0
- data/src/ruby/spec/error_sanity_spec.rb +64 -0
- data/src/ruby/spec/generic/active_call_spec.rb +632 -0
- data/src/ruby/spec/generic/client_stub_spec.rb +556 -0
- data/src/ruby/spec/generic/rpc_desc_spec.rb +351 -0
- data/src/ruby/spec/generic/rpc_server_pool_spec.rb +142 -0
- data/src/ruby/spec/generic/rpc_server_spec.rb +524 -0
- data/src/ruby/spec/generic/service_spec.rb +276 -0
- data/src/ruby/spec/pb/duplicate/codegen_spec.rb +71 -0
- data/src/ruby/spec/pb/health/checker_spec.rb +222 -0
- data/src/ruby/spec/server_credentials_spec.rb +94 -0
- data/src/ruby/spec/server_spec.rb +205 -0
- data/src/ruby/spec/spec_helper.rb +71 -0
- data/src/ruby/spec/testdata/README +1 -0
- data/src/ruby/spec/testdata/ca.pem +15 -0
- data/src/ruby/spec/testdata/server1.key +16 -0
- data/src/ruby/spec/testdata/server1.pem +16 -0
- data/src/ruby/spec/time_consts_spec.rb +89 -0
- data/third_party/boringssl/crypto/aes/aes.c +1142 -0
- data/third_party/boringssl/crypto/aes/internal.h +87 -0
- data/third_party/boringssl/crypto/aes/mode_wrappers.c +112 -0
- data/third_party/boringssl/crypto/asn1/a_bitstr.c +263 -0
- data/third_party/boringssl/crypto/asn1/a_bool.c +110 -0
- data/third_party/boringssl/crypto/asn1/a_d2i_fp.c +282 -0
- data/third_party/boringssl/crypto/asn1/a_dup.c +111 -0
- data/third_party/boringssl/crypto/asn1/a_enum.c +181 -0
- data/third_party/boringssl/crypto/asn1/a_gentm.c +256 -0
- data/third_party/boringssl/crypto/asn1/a_i2d_fp.c +147 -0
- data/third_party/boringssl/crypto/asn1/a_int.c +460 -0
- data/third_party/boringssl/crypto/asn1/a_mbstr.c +409 -0
- data/third_party/boringssl/crypto/asn1/a_object.c +400 -0
- data/third_party/boringssl/crypto/asn1/a_octet.c +77 -0
- data/third_party/boringssl/crypto/asn1/a_print.c +121 -0
- data/third_party/boringssl/crypto/asn1/a_strnid.c +309 -0
- data/third_party/boringssl/crypto/asn1/a_time.c +206 -0
- data/third_party/boringssl/crypto/asn1/a_type.c +151 -0
- data/third_party/boringssl/crypto/asn1/a_utctm.c +304 -0
- data/third_party/boringssl/crypto/asn1/a_utf8.c +234 -0
- data/third_party/boringssl/crypto/asn1/asn1_lib.c +483 -0
- data/third_party/boringssl/crypto/asn1/asn1_locl.h +63 -0
- data/third_party/boringssl/crypto/asn1/asn1_par.c +80 -0
- data/third_party/boringssl/crypto/asn1/asn_pack.c +105 -0
- data/third_party/boringssl/crypto/asn1/f_enum.c +93 -0
- data/third_party/boringssl/crypto/asn1/f_int.c +97 -0
- data/third_party/boringssl/crypto/asn1/f_string.c +91 -0
- data/third_party/boringssl/crypto/asn1/t_bitst.c +103 -0
- data/third_party/boringssl/crypto/asn1/tasn_dec.c +1221 -0
- data/third_party/boringssl/crypto/asn1/tasn_enc.c +665 -0
- data/third_party/boringssl/crypto/asn1/tasn_fre.c +246 -0
- data/third_party/boringssl/crypto/asn1/tasn_new.c +381 -0
- data/third_party/boringssl/crypto/asn1/tasn_typ.c +131 -0
- data/third_party/boringssl/crypto/asn1/tasn_utl.c +266 -0
- data/third_party/boringssl/crypto/asn1/x_bignum.c +153 -0
- data/third_party/boringssl/crypto/asn1/x_long.c +197 -0
- data/third_party/boringssl/crypto/base64/base64.c +442 -0
- data/third_party/boringssl/crypto/bio/bio.c +598 -0
- data/third_party/boringssl/crypto/bio/bio_mem.c +328 -0
- data/third_party/boringssl/crypto/bio/buffer.c +496 -0
- data/third_party/boringssl/crypto/bio/connect.c +553 -0
- data/third_party/boringssl/crypto/bio/fd.c +277 -0
- data/third_party/boringssl/crypto/bio/file.c +313 -0
- data/third_party/boringssl/crypto/bio/hexdump.c +191 -0
- data/third_party/boringssl/crypto/bio/internal.h +111 -0
- data/third_party/boringssl/crypto/bio/pair.c +803 -0
- data/third_party/boringssl/crypto/bio/printf.c +119 -0
- data/third_party/boringssl/crypto/bio/socket.c +203 -0
- data/third_party/boringssl/crypto/bio/socket_helper.c +113 -0
- data/third_party/boringssl/crypto/bn/add.c +377 -0
- data/third_party/boringssl/crypto/bn/asm/x86_64-gcc.c +531 -0
- data/third_party/boringssl/crypto/bn/bn.c +379 -0
- data/third_party/boringssl/crypto/bn/bn_asn1.c +80 -0
- data/third_party/boringssl/crypto/bn/cmp.c +225 -0
- data/third_party/boringssl/crypto/bn/convert.c +599 -0
- data/third_party/boringssl/crypto/bn/ctx.c +311 -0
- data/third_party/boringssl/crypto/bn/div.c +671 -0
- data/third_party/boringssl/crypto/bn/exponentiation.c +1258 -0
- data/third_party/boringssl/crypto/bn/gcd.c +628 -0
- data/third_party/boringssl/crypto/bn/generic.c +703 -0
- data/third_party/boringssl/crypto/bn/internal.h +245 -0
- data/third_party/boringssl/crypto/bn/kronecker.c +175 -0
- data/third_party/boringssl/crypto/bn/montgomery.c +410 -0
- data/third_party/boringssl/crypto/bn/montgomery_inv.c +160 -0
- data/third_party/boringssl/crypto/bn/mul.c +869 -0
- data/third_party/boringssl/crypto/bn/prime.c +861 -0
- data/third_party/boringssl/crypto/bn/random.c +340 -0
- data/third_party/boringssl/crypto/bn/rsaz_exp.c +319 -0
- data/third_party/boringssl/crypto/bn/rsaz_exp.h +56 -0
- data/third_party/boringssl/crypto/bn/shift.c +299 -0
- data/third_party/boringssl/crypto/bn/sqrt.c +504 -0
- data/third_party/boringssl/crypto/buf/buf.c +239 -0
- data/third_party/boringssl/crypto/bytestring/asn1_compat.c +51 -0
- data/third_party/boringssl/crypto/bytestring/ber.c +263 -0
- data/third_party/boringssl/crypto/bytestring/cbb.c +473 -0
- data/third_party/boringssl/crypto/bytestring/cbs.c +439 -0
- data/third_party/boringssl/crypto/bytestring/internal.h +75 -0
- data/third_party/boringssl/crypto/chacha/chacha.c +167 -0
- data/third_party/boringssl/crypto/cipher/aead.c +156 -0
- data/third_party/boringssl/crypto/cipher/cipher.c +652 -0
- data/third_party/boringssl/crypto/cipher/derive_key.c +154 -0
- data/third_party/boringssl/crypto/cipher/e_aes.c +1717 -0
- data/third_party/boringssl/crypto/cipher/e_chacha20poly1305.c +300 -0
- data/third_party/boringssl/crypto/cipher/e_des.c +205 -0
- data/third_party/boringssl/crypto/cipher/e_null.c +85 -0
- data/third_party/boringssl/crypto/cipher/e_rc2.c +443 -0
- data/third_party/boringssl/crypto/cipher/e_rc4.c +87 -0
- data/third_party/boringssl/crypto/cipher/e_ssl3.c +403 -0
- data/third_party/boringssl/crypto/cipher/e_tls.c +602 -0
- data/third_party/boringssl/crypto/cipher/internal.h +162 -0
- data/third_party/boringssl/crypto/cipher/tls_cbc.c +553 -0
- data/third_party/boringssl/crypto/cmac/cmac.c +239 -0
- data/third_party/boringssl/crypto/conf/conf.c +788 -0
- data/third_party/boringssl/crypto/conf/conf_def.h +127 -0
- data/third_party/boringssl/crypto/conf/internal.h +31 -0
- data/third_party/boringssl/crypto/cpu-aarch64-linux.c +61 -0
- data/third_party/boringssl/crypto/cpu-arm-linux.c +360 -0
- data/third_party/boringssl/crypto/cpu-arm.c +38 -0
- data/third_party/boringssl/crypto/cpu-intel.c +263 -0
- data/third_party/boringssl/crypto/cpu-ppc64le.c +40 -0
- data/third_party/boringssl/crypto/crypto.c +164 -0
- data/third_party/boringssl/crypto/curve25519/curve25519.c +4944 -0
- data/third_party/boringssl/crypto/curve25519/internal.h +109 -0
- data/third_party/boringssl/crypto/curve25519/spake25519.c +464 -0
- data/third_party/boringssl/crypto/curve25519/x25519-x86_64.c +246 -0
- data/third_party/boringssl/crypto/des/des.c +771 -0
- data/third_party/boringssl/crypto/des/internal.h +212 -0
- data/third_party/boringssl/crypto/dh/check.c +218 -0
- data/third_party/boringssl/crypto/dh/dh.c +487 -0
- data/third_party/boringssl/crypto/dh/dh_asn1.c +160 -0
- data/third_party/boringssl/crypto/dh/params.c +253 -0
- data/third_party/boringssl/crypto/digest/digest.c +248 -0
- data/third_party/boringssl/crypto/digest/digests.c +321 -0
- data/third_party/boringssl/crypto/digest/internal.h +112 -0
- data/third_party/boringssl/crypto/digest/md32_common.h +262 -0
- data/third_party/boringssl/crypto/dsa/dsa.c +964 -0
- data/third_party/boringssl/crypto/dsa/dsa_asn1.c +339 -0
- data/third_party/boringssl/crypto/ec/ec.c +847 -0
- data/third_party/boringssl/crypto/ec/ec_asn1.c +549 -0
- data/third_party/boringssl/crypto/ec/ec_key.c +479 -0
- data/third_party/boringssl/crypto/ec/ec_montgomery.c +308 -0
- data/third_party/boringssl/crypto/ec/internal.h +276 -0
- data/third_party/boringssl/crypto/ec/oct.c +428 -0
- data/third_party/boringssl/crypto/ec/p224-64.c +1187 -0
- data/third_party/boringssl/crypto/ec/p256-64.c +1741 -0
- data/third_party/boringssl/crypto/ec/p256-x86_64-table.h +9543 -0
- data/third_party/boringssl/crypto/ec/p256-x86_64.c +574 -0
- data/third_party/boringssl/crypto/ec/simple.c +1117 -0
- data/third_party/boringssl/crypto/ec/util-64.c +109 -0
- data/third_party/boringssl/crypto/ec/wnaf.c +449 -0
- data/third_party/boringssl/crypto/ecdh/ecdh.c +159 -0
- data/third_party/boringssl/crypto/ecdsa/ecdsa.c +478 -0
- data/third_party/boringssl/crypto/ecdsa/ecdsa_asn1.c +227 -0
- data/third_party/boringssl/crypto/engine/engine.c +96 -0
- data/third_party/boringssl/crypto/err/err.c +756 -0
- data/third_party/boringssl/crypto/evp/digestsign.c +159 -0
- data/third_party/boringssl/crypto/evp/evp.c +367 -0
- data/third_party/boringssl/crypto/evp/evp_asn1.c +337 -0
- data/third_party/boringssl/crypto/evp/evp_ctx.c +448 -0
- data/third_party/boringssl/crypto/evp/internal.h +237 -0
- data/third_party/boringssl/crypto/evp/p_dsa_asn1.c +268 -0
- data/third_party/boringssl/crypto/evp/p_ec.c +236 -0
- data/third_party/boringssl/crypto/evp/p_ec_asn1.c +257 -0
- data/third_party/boringssl/crypto/evp/p_rsa.c +673 -0
- data/third_party/boringssl/crypto/evp/p_rsa_asn1.c +200 -0
- data/third_party/boringssl/crypto/evp/pbkdf.c +151 -0
- data/third_party/boringssl/crypto/evp/print.c +520 -0
- data/third_party/boringssl/crypto/evp/sign.c +151 -0
- data/third_party/boringssl/crypto/ex_data.c +292 -0
- data/third_party/boringssl/crypto/hkdf/hkdf.c +110 -0
- data/third_party/boringssl/crypto/hmac/hmac.c +213 -0
- data/third_party/boringssl/crypto/internal.h +527 -0
- data/third_party/boringssl/crypto/lhash/lhash.c +342 -0
- data/third_party/boringssl/crypto/md4/md4.c +234 -0
- data/third_party/boringssl/crypto/md5/md5.c +275 -0
- data/third_party/boringssl/crypto/mem.c +200 -0
- data/third_party/boringssl/crypto/modes/cbc.c +216 -0
- data/third_party/boringssl/crypto/modes/cfb.c +230 -0
- data/third_party/boringssl/crypto/modes/ctr.c +219 -0
- data/third_party/boringssl/crypto/modes/gcm.c +1288 -0
- data/third_party/boringssl/crypto/modes/internal.h +358 -0
- data/third_party/boringssl/crypto/modes/ofb.c +95 -0
- data/third_party/boringssl/crypto/newhope/error_correction.c +131 -0
- data/third_party/boringssl/crypto/newhope/internal.h +71 -0
- data/third_party/boringssl/crypto/newhope/newhope.c +174 -0
- data/third_party/boringssl/crypto/newhope/ntt.c +148 -0
- data/third_party/boringssl/crypto/newhope/poly.c +183 -0
- data/third_party/boringssl/crypto/newhope/precomp.c +306 -0
- data/third_party/boringssl/crypto/newhope/reduce.c +42 -0
- data/third_party/boringssl/crypto/obj/obj.c +640 -0
- data/third_party/boringssl/crypto/obj/obj_dat.h +5254 -0
- data/third_party/boringssl/crypto/obj/obj_xref.c +124 -0
- data/third_party/boringssl/crypto/obj/obj_xref.h +96 -0
- data/third_party/boringssl/crypto/pem/pem_all.c +262 -0
- data/third_party/boringssl/crypto/pem/pem_info.c +381 -0
- data/third_party/boringssl/crypto/pem/pem_lib.c +778 -0
- data/third_party/boringssl/crypto/pem/pem_oth.c +88 -0
- data/third_party/boringssl/crypto/pem/pem_pk8.c +257 -0
- data/third_party/boringssl/crypto/pem/pem_pkey.c +227 -0
- data/third_party/boringssl/crypto/pem/pem_x509.c +65 -0
- data/third_party/boringssl/crypto/pem/pem_xaux.c +67 -0
- data/third_party/boringssl/crypto/pkcs8/internal.h +83 -0
- data/third_party/boringssl/crypto/pkcs8/p5_pbe.c +151 -0
- data/third_party/boringssl/crypto/pkcs8/p5_pbev2.c +441 -0
- data/third_party/boringssl/crypto/pkcs8/p8_pkey.c +85 -0
- data/third_party/boringssl/crypto/pkcs8/pkcs8.c +1219 -0
- data/third_party/boringssl/crypto/poly1305/internal.h +40 -0
- data/third_party/boringssl/crypto/poly1305/poly1305.c +324 -0
- data/third_party/boringssl/crypto/poly1305/poly1305_arm.c +304 -0
- data/third_party/boringssl/crypto/poly1305/poly1305_vec.c +890 -0
- data/third_party/boringssl/crypto/rand/deterministic.c +47 -0
- data/third_party/boringssl/crypto/rand/internal.h +32 -0
- data/third_party/boringssl/crypto/rand/rand.c +244 -0
- data/third_party/boringssl/crypto/rand/urandom.c +221 -0
- data/third_party/boringssl/crypto/rand/windows.c +53 -0
- data/third_party/boringssl/crypto/rc4/rc4.c +98 -0
- data/third_party/boringssl/crypto/refcount_c11.c +67 -0
- data/third_party/boringssl/crypto/refcount_lock.c +53 -0
- data/third_party/boringssl/crypto/rsa/blinding.c +264 -0
- data/third_party/boringssl/crypto/rsa/internal.h +148 -0
- data/third_party/boringssl/crypto/rsa/padding.c +708 -0
- data/third_party/boringssl/crypto/rsa/rsa.c +830 -0
- data/third_party/boringssl/crypto/rsa/rsa_asn1.c +446 -0
- data/third_party/boringssl/crypto/rsa/rsa_impl.c +1139 -0
- data/third_party/boringssl/crypto/sha/sha1.c +337 -0
- data/third_party/boringssl/crypto/sha/sha256.c +327 -0
- data/third_party/boringssl/crypto/sha/sha512.c +607 -0
- data/third_party/boringssl/crypto/stack/stack.c +377 -0
- data/third_party/boringssl/crypto/thread.c +110 -0
- data/third_party/boringssl/crypto/thread_none.c +59 -0
- data/third_party/boringssl/crypto/thread_pthread.c +176 -0
- data/third_party/boringssl/crypto/thread_win.c +237 -0
- data/third_party/boringssl/crypto/time_support.c +206 -0
- data/third_party/boringssl/crypto/x509/a_digest.c +96 -0
- data/third_party/boringssl/crypto/x509/a_sign.c +135 -0
- data/third_party/boringssl/crypto/x509/a_strex.c +633 -0
- data/third_party/boringssl/crypto/x509/a_verify.c +127 -0
- data/third_party/boringssl/crypto/x509/algorithm.c +137 -0
- data/third_party/boringssl/crypto/x509/asn1_gen.c +818 -0
- data/third_party/boringssl/crypto/x509/by_dir.c +453 -0
- data/third_party/boringssl/crypto/x509/by_file.c +275 -0
- data/third_party/boringssl/crypto/x509/charmap.h +15 -0
- data/third_party/boringssl/crypto/x509/i2d_pr.c +83 -0
- data/third_party/boringssl/crypto/x509/internal.h +66 -0
- data/third_party/boringssl/crypto/x509/pkcs7.c +353 -0
- data/third_party/boringssl/crypto/x509/rsa_pss.c +385 -0
- data/third_party/boringssl/crypto/x509/t_crl.c +128 -0
- data/third_party/boringssl/crypto/x509/t_req.c +246 -0
- data/third_party/boringssl/crypto/x509/t_x509.c +506 -0
- data/third_party/boringssl/crypto/x509/t_x509a.c +111 -0
- data/third_party/boringssl/crypto/x509/vpm_int.h +70 -0
- data/third_party/boringssl/crypto/x509/x509.c +157 -0
- data/third_party/boringssl/crypto/x509/x509_att.c +381 -0
- data/third_party/boringssl/crypto/x509/x509_cmp.c +474 -0
- data/third_party/boringssl/crypto/x509/x509_d2.c +106 -0
- data/third_party/boringssl/crypto/x509/x509_def.c +98 -0
- data/third_party/boringssl/crypto/x509/x509_ext.c +206 -0
- data/third_party/boringssl/crypto/x509/x509_lu.c +690 -0
- data/third_party/boringssl/crypto/x509/x509_obj.c +197 -0
- data/third_party/boringssl/crypto/x509/x509_r2x.c +117 -0
- data/third_party/boringssl/crypto/x509/x509_req.c +322 -0
- data/third_party/boringssl/crypto/x509/x509_set.c +154 -0
- data/third_party/boringssl/crypto/x509/x509_trs.c +326 -0
- data/third_party/boringssl/crypto/x509/x509_txt.c +211 -0
- data/third_party/boringssl/crypto/x509/x509_v3.c +278 -0
- data/third_party/boringssl/crypto/x509/x509_vfy.c +2436 -0
- data/third_party/boringssl/crypto/x509/x509_vpm.c +647 -0
- data/third_party/boringssl/crypto/x509/x509cset.c +170 -0
- data/third_party/boringssl/crypto/x509/x509name.c +386 -0
- data/third_party/boringssl/crypto/x509/x509rset.c +81 -0
- data/third_party/boringssl/crypto/x509/x509spki.c +137 -0
- data/third_party/boringssl/crypto/x509/x509type.c +126 -0
- data/third_party/boringssl/crypto/x509/x_algor.c +151 -0
- data/third_party/boringssl/crypto/x509/x_all.c +501 -0
- data/third_party/boringssl/crypto/x509/x_attrib.c +111 -0
- data/third_party/boringssl/crypto/x509/x_crl.c +539 -0
- data/third_party/boringssl/crypto/x509/x_exten.c +75 -0
- data/third_party/boringssl/crypto/x509/x_info.c +98 -0
- data/third_party/boringssl/crypto/x509/x_name.c +534 -0
- data/third_party/boringssl/crypto/x509/x_pkey.c +103 -0
- data/third_party/boringssl/crypto/x509/x_pubkey.c +368 -0
- data/third_party/boringssl/crypto/x509/x_req.c +109 -0
- data/third_party/boringssl/crypto/x509/x_sig.c +69 -0
- data/third_party/boringssl/crypto/x509/x_spki.c +80 -0
- data/third_party/boringssl/crypto/x509/x_val.c +69 -0
- data/third_party/boringssl/crypto/x509/x_x509.c +289 -0
- data/third_party/boringssl/crypto/x509/x_x509a.c +205 -0
- data/third_party/boringssl/crypto/x509v3/ext_dat.h +135 -0
- data/third_party/boringssl/crypto/x509v3/pcy_cache.c +284 -0
- data/third_party/boringssl/crypto/x509v3/pcy_data.c +130 -0
- data/third_party/boringssl/crypto/x509v3/pcy_int.h +217 -0
- data/third_party/boringssl/crypto/x509v3/pcy_lib.c +164 -0
- data/third_party/boringssl/crypto/x509v3/pcy_map.c +130 -0
- data/third_party/boringssl/crypto/x509v3/pcy_node.c +188 -0
- data/third_party/boringssl/crypto/x509v3/pcy_tree.c +829 -0
- data/third_party/boringssl/crypto/x509v3/v3_akey.c +204 -0
- data/third_party/boringssl/crypto/x509v3/v3_akeya.c +72 -0
- data/third_party/boringssl/crypto/x509v3/v3_alt.c +614 -0
- data/third_party/boringssl/crypto/x509v3/v3_bcons.c +133 -0
- data/third_party/boringssl/crypto/x509v3/v3_bitst.c +141 -0
- data/third_party/boringssl/crypto/x509v3/v3_conf.c +462 -0
- data/third_party/boringssl/crypto/x509v3/v3_cpols.c +496 -0
- data/third_party/boringssl/crypto/x509v3/v3_crld.c +561 -0
- data/third_party/boringssl/crypto/x509v3/v3_enum.c +100 -0
- data/third_party/boringssl/crypto/x509v3/v3_extku.c +148 -0
- data/third_party/boringssl/crypto/x509v3/v3_genn.c +250 -0
- data/third_party/boringssl/crypto/x509v3/v3_ia5.c +119 -0
- data/third_party/boringssl/crypto/x509v3/v3_info.c +212 -0
- data/third_party/boringssl/crypto/x509v3/v3_int.c +91 -0
- data/third_party/boringssl/crypto/x509v3/v3_lib.c +362 -0
- data/third_party/boringssl/crypto/x509v3/v3_ncons.c +482 -0
- data/third_party/boringssl/crypto/x509v3/v3_pci.c +317 -0
- data/third_party/boringssl/crypto/x509v3/v3_pcia.c +57 -0
- data/third_party/boringssl/crypto/x509v3/v3_pcons.c +139 -0
- data/third_party/boringssl/crypto/x509v3/v3_pku.c +110 -0
- data/third_party/boringssl/crypto/x509v3/v3_pmaps.c +154 -0
- data/third_party/boringssl/crypto/x509v3/v3_prn.c +229 -0
- data/third_party/boringssl/crypto/x509v3/v3_purp.c +874 -0
- data/third_party/boringssl/crypto/x509v3/v3_skey.c +152 -0
- data/third_party/boringssl/crypto/x509v3/v3_sxnet.c +274 -0
- data/third_party/boringssl/crypto/x509v3/v3_utl.c +1327 -0
- data/third_party/boringssl/include/openssl/aead.h +345 -0
- data/third_party/boringssl/include/openssl/aes.h +158 -0
- data/third_party/boringssl/include/openssl/arm_arch.h +121 -0
- data/third_party/boringssl/include/openssl/asn1.h +1038 -0
- data/third_party/boringssl/include/openssl/asn1_mac.h +18 -0
- data/third_party/boringssl/include/openssl/asn1t.h +896 -0
- data/third_party/boringssl/include/openssl/base.h +412 -0
- data/third_party/boringssl/include/openssl/base64.h +187 -0
- data/third_party/boringssl/include/openssl/bio.h +926 -0
- data/third_party/boringssl/include/openssl/blowfish.h +93 -0
- data/third_party/boringssl/include/openssl/bn.h +955 -0
- data/third_party/boringssl/include/openssl/buf.h +133 -0
- data/third_party/boringssl/include/openssl/buffer.h +18 -0
- data/third_party/boringssl/include/openssl/bytestring.h +437 -0
- data/third_party/boringssl/include/openssl/cast.h +96 -0
- data/third_party/boringssl/include/openssl/chacha.h +37 -0
- data/third_party/boringssl/include/openssl/cipher.h +588 -0
- data/third_party/boringssl/include/openssl/cmac.h +87 -0
- data/third_party/boringssl/include/openssl/conf.h +181 -0
- data/third_party/boringssl/include/openssl/cpu.h +181 -0
- data/third_party/boringssl/include/openssl/crypto.h +94 -0
- data/third_party/boringssl/include/openssl/curve25519.h +183 -0
- data/third_party/boringssl/include/openssl/des.h +177 -0
- data/third_party/boringssl/include/openssl/dh.h +297 -0
- data/third_party/boringssl/include/openssl/digest.h +285 -0
- data/third_party/boringssl/include/openssl/dsa.h +436 -0
- data/third_party/boringssl/include/openssl/dtls1.h +16 -0
- data/third_party/boringssl/include/openssl/ec.h +406 -0
- data/third_party/boringssl/include/openssl/ec_key.h +337 -0
- data/third_party/boringssl/include/openssl/ecdh.h +102 -0
- data/third_party/boringssl/include/openssl/ecdsa.h +217 -0
- data/third_party/boringssl/include/openssl/engine.h +109 -0
- data/third_party/boringssl/include/openssl/err.h +488 -0
- data/third_party/boringssl/include/openssl/evp.h +797 -0
- data/third_party/boringssl/include/openssl/ex_data.h +213 -0
- data/third_party/boringssl/include/openssl/hkdf.h +64 -0
- data/third_party/boringssl/include/openssl/hmac.h +174 -0
- data/third_party/boringssl/include/openssl/lhash.h +192 -0
- data/third_party/boringssl/include/openssl/lhash_macros.h +132 -0
- data/third_party/boringssl/include/openssl/md4.h +106 -0
- data/third_party/boringssl/include/openssl/md5.h +107 -0
- data/third_party/boringssl/include/openssl/mem.h +150 -0
- data/third_party/boringssl/include/openssl/newhope.h +158 -0
- data/third_party/boringssl/include/openssl/nid.h +4166 -0
- data/third_party/boringssl/include/openssl/obj.h +226 -0
- data/third_party/boringssl/include/openssl/obj_mac.h +18 -0
- data/third_party/boringssl/include/openssl/objects.h +18 -0
- data/third_party/boringssl/include/openssl/opensslconf.h +60 -0
- data/third_party/boringssl/include/openssl/opensslv.h +18 -0
- data/third_party/boringssl/include/openssl/ossl_typ.h +18 -0
- data/third_party/boringssl/include/openssl/pem.h +517 -0
- data/third_party/boringssl/include/openssl/pkcs12.h +18 -0
- data/third_party/boringssl/include/openssl/pkcs7.h +16 -0
- data/third_party/boringssl/include/openssl/pkcs8.h +236 -0
- data/third_party/boringssl/include/openssl/poly1305.h +51 -0
- data/third_party/boringssl/include/openssl/rand.h +122 -0
- data/third_party/boringssl/include/openssl/rc4.h +96 -0
- data/third_party/boringssl/include/openssl/ripemd.h +107 -0
- data/third_party/boringssl/include/openssl/rsa.h +699 -0
- data/third_party/boringssl/include/openssl/safestack.h +16 -0
- data/third_party/boringssl/include/openssl/sha.h +260 -0
- data/third_party/boringssl/include/openssl/srtp.h +18 -0
- data/third_party/boringssl/include/openssl/ssl.h +4826 -0
- data/third_party/boringssl/include/openssl/ssl3.h +434 -0
- data/third_party/boringssl/include/openssl/stack.h +293 -0
- data/third_party/boringssl/include/openssl/stack_macros.h +3902 -0
- data/third_party/boringssl/include/openssl/thread.h +191 -0
- data/third_party/boringssl/include/openssl/time_support.h +91 -0
- data/third_party/boringssl/include/openssl/tls1.h +657 -0
- data/third_party/boringssl/include/openssl/type_check.h +91 -0
- data/third_party/boringssl/include/openssl/x509.h +1299 -0
- data/third_party/boringssl/include/openssl/x509_vfy.h +618 -0
- data/third_party/boringssl/include/openssl/x509v3.h +819 -0
- data/third_party/boringssl/ssl/custom_extensions.c +255 -0
- data/third_party/boringssl/ssl/d1_both.c +845 -0
- data/third_party/boringssl/ssl/d1_lib.c +270 -0
- data/third_party/boringssl/ssl/d1_pkt.c +419 -0
- data/third_party/boringssl/ssl/d1_srtp.c +236 -0
- data/third_party/boringssl/ssl/dtls_method.c +203 -0
- data/third_party/boringssl/ssl/dtls_record.c +309 -0
- data/third_party/boringssl/ssl/handshake_client.c +2002 -0
- data/third_party/boringssl/ssl/handshake_server.c +1932 -0
- data/third_party/boringssl/ssl/internal.h +1551 -0
- data/third_party/boringssl/ssl/s3_both.c +745 -0
- data/third_party/boringssl/ssl/s3_enc.c +412 -0
- data/third_party/boringssl/ssl/s3_lib.c +336 -0
- data/third_party/boringssl/ssl/s3_pkt.c +497 -0
- data/third_party/boringssl/ssl/ssl_aead_ctx.c +329 -0
- data/third_party/boringssl/ssl/ssl_asn1.c +748 -0
- data/third_party/boringssl/ssl/ssl_buffer.c +311 -0
- data/third_party/boringssl/ssl/ssl_cert.c +814 -0
- data/third_party/boringssl/ssl/ssl_cipher.c +2062 -0
- data/third_party/boringssl/ssl/ssl_ecdh.c +610 -0
- data/third_party/boringssl/ssl/ssl_file.c +586 -0
- data/third_party/boringssl/ssl/ssl_lib.c +3063 -0
- data/third_party/boringssl/ssl/ssl_rsa.c +793 -0
- data/third_party/boringssl/ssl/ssl_session.c +985 -0
- data/third_party/boringssl/ssl/ssl_stat.c +509 -0
- data/third_party/boringssl/ssl/t1_enc.c +547 -0
- data/third_party/boringssl/ssl/t1_lib.c +3279 -0
- data/third_party/boringssl/ssl/tls13_both.c +440 -0
- data/third_party/boringssl/ssl/tls13_client.c +682 -0
- data/third_party/boringssl/ssl/tls13_enc.c +391 -0
- data/third_party/boringssl/ssl/tls13_server.c +672 -0
- data/third_party/boringssl/ssl/tls_method.c +245 -0
- data/third_party/boringssl/ssl/tls_record.c +461 -0
- data/third_party/cares/ares_build.h +264 -0
- data/third_party/cares/cares/ares.h +636 -0
- data/third_party/cares/cares/ares__close_sockets.c +61 -0
- data/third_party/cares/cares/ares__get_hostent.c +261 -0
- data/third_party/cares/cares/ares__read_line.c +73 -0
- data/third_party/cares/cares/ares__timeval.c +111 -0
- data/third_party/cares/cares/ares_cancel.c +63 -0
- data/third_party/cares/cares/ares_create_query.c +202 -0
- data/third_party/cares/cares/ares_data.c +221 -0
- data/third_party/cares/cares/ares_data.h +72 -0
- data/third_party/cares/cares/ares_destroy.c +108 -0
- data/third_party/cares/cares/ares_dns.h +103 -0
- data/third_party/cares/cares/ares_expand_name.c +205 -0
- data/third_party/cares/cares/ares_expand_string.c +70 -0
- data/third_party/cares/cares/ares_fds.c +59 -0
- data/third_party/cares/cares/ares_free_hostent.c +41 -0
- data/third_party/cares/cares/ares_free_string.c +25 -0
- data/third_party/cares/cares/ares_getenv.c +30 -0
- data/third_party/cares/cares/ares_getenv.h +26 -0
- data/third_party/cares/cares/ares_gethostbyaddr.c +294 -0
- data/third_party/cares/cares/ares_gethostbyname.c +518 -0
- data/third_party/cares/cares/ares_getnameinfo.c +422 -0
- data/third_party/cares/cares/ares_getopt.c +122 -0
- data/third_party/cares/cares/ares_getopt.h +53 -0
- data/third_party/cares/cares/ares_getsock.c +66 -0
- data/third_party/cares/cares/ares_inet_net_pton.h +25 -0
- data/third_party/cares/cares/ares_init.c +2146 -0
- data/third_party/cares/cares/ares_iphlpapi.h +221 -0
- data/third_party/cares/cares/ares_ipv6.h +78 -0
- data/third_party/cares/cares/ares_library_init.c +167 -0
- data/third_party/cares/cares/ares_library_init.h +42 -0
- data/third_party/cares/cares/ares_llist.c +63 -0
- data/third_party/cares/cares/ares_llist.h +39 -0
- data/third_party/cares/cares/ares_mkquery.c +24 -0
- data/third_party/cares/cares/ares_nowarn.c +260 -0
- data/third_party/cares/cares/ares_nowarn.h +61 -0
- data/third_party/cares/cares/ares_options.c +402 -0
- data/third_party/cares/cares/ares_parse_a_reply.c +264 -0
- data/third_party/cares/cares/ares_parse_aaaa_reply.c +264 -0
- data/third_party/cares/cares/ares_parse_mx_reply.c +170 -0
- data/third_party/cares/cares/ares_parse_naptr_reply.c +188 -0
- data/third_party/cares/cares/ares_parse_ns_reply.c +183 -0
- data/third_party/cares/cares/ares_parse_ptr_reply.c +219 -0
- data/third_party/cares/cares/ares_parse_soa_reply.c +133 -0
- data/third_party/cares/cares/ares_parse_srv_reply.c +179 -0
- data/third_party/cares/cares/ares_parse_txt_reply.c +220 -0
- data/third_party/cares/cares/ares_platform.c +11035 -0
- data/third_party/cares/cares/ares_platform.h +43 -0
- data/third_party/cares/cares/ares_private.h +363 -0
- data/third_party/cares/cares/ares_process.c +1359 -0
- data/third_party/cares/cares/ares_query.c +186 -0
- data/third_party/cares/cares/ares_rules.h +125 -0
- data/third_party/cares/cares/ares_search.c +316 -0
- data/third_party/cares/cares/ares_send.c +131 -0
- data/third_party/cares/cares/ares_setup.h +217 -0
- data/third_party/cares/cares/ares_strcasecmp.c +66 -0
- data/third_party/cares/cares/ares_strcasecmp.h +30 -0
- data/third_party/cares/cares/ares_strdup.c +49 -0
- data/third_party/cares/cares/ares_strdup.h +24 -0
- data/third_party/cares/cares/ares_strerror.c +56 -0
- data/third_party/cares/cares/ares_timeout.c +88 -0
- data/third_party/cares/cares/ares_version.c +11 -0
- data/third_party/cares/cares/ares_version.h +24 -0
- data/third_party/cares/cares/ares_writev.c +79 -0
- data/third_party/cares/cares/bitncmp.c +59 -0
- data/third_party/cares/cares/bitncmp.h +26 -0
- data/third_party/cares/cares/config-win32.h +377 -0
- data/third_party/cares/cares/inet_net_pton.c +450 -0
- data/third_party/cares/cares/inet_ntop.c +208 -0
- data/third_party/cares/cares/setup_once.h +554 -0
- data/third_party/cares/cares/windows_port.c +22 -0
- data/third_party/cares/config_darwin/ares_config.h +523 -0
- data/third_party/cares/config_linux/ares_config.h +524 -0
- data/third_party/nanopb/pb.h +579 -0
- data/third_party/nanopb/pb_common.c +97 -0
- data/third_party/nanopb/pb_common.h +42 -0
- data/third_party/nanopb/pb_decode.c +1347 -0
- data/third_party/nanopb/pb_decode.h +149 -0
- data/third_party/nanopb/pb_encode.c +696 -0
- data/third_party/nanopb/pb_encode.h +154 -0
- data/third_party/zlib/adler32.c +179 -0
- data/third_party/zlib/compress.c +80 -0
- data/third_party/zlib/crc32.c +425 -0
- data/third_party/zlib/crc32.h +441 -0
- data/third_party/zlib/deflate.c +1967 -0
- data/third_party/zlib/deflate.h +346 -0
- data/third_party/zlib/gzclose.c +25 -0
- data/third_party/zlib/gzguts.h +209 -0
- data/third_party/zlib/gzlib.c +634 -0
- data/third_party/zlib/gzread.c +594 -0
- data/third_party/zlib/gzwrite.c +577 -0
- data/third_party/zlib/infback.c +640 -0
- data/third_party/zlib/inffast.c +340 -0
- data/third_party/zlib/inffast.h +11 -0
- data/third_party/zlib/inffixed.h +94 -0
- data/third_party/zlib/inflate.c +1512 -0
- data/third_party/zlib/inflate.h +122 -0
- data/third_party/zlib/inftrees.c +306 -0
- data/third_party/zlib/inftrees.h +62 -0
- data/third_party/zlib/trees.c +1226 -0
- data/third_party/zlib/trees.h +128 -0
- data/third_party/zlib/uncompr.c +59 -0
- data/third_party/zlib/zconf.h +511 -0
- data/third_party/zlib/zlib.h +1768 -0
- data/third_party/zlib/zutil.c +324 -0
- data/third_party/zlib/zutil.h +253 -0
- metadata +1397 -0
@@ -0,0 +1,1551 @@
|
|
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
|
+
|
142
|
+
#ifndef OPENSSL_HEADER_SSL_INTERNAL_H
|
143
|
+
#define OPENSSL_HEADER_SSL_INTERNAL_H
|
144
|
+
|
145
|
+
#include <openssl/base.h>
|
146
|
+
|
147
|
+
#include <openssl/aead.h>
|
148
|
+
#include <openssl/ssl.h>
|
149
|
+
#include <openssl/stack.h>
|
150
|
+
|
151
|
+
|
152
|
+
#if defined(OPENSSL_WINDOWS)
|
153
|
+
/* Windows defines struct timeval in winsock2.h. */
|
154
|
+
OPENSSL_MSVC_PRAGMA(warning(push, 3))
|
155
|
+
#include <winsock2.h>
|
156
|
+
OPENSSL_MSVC_PRAGMA(warning(pop))
|
157
|
+
#else
|
158
|
+
#include <sys/time.h>
|
159
|
+
#endif
|
160
|
+
|
161
|
+
#if defined(__cplusplus)
|
162
|
+
extern "C" {
|
163
|
+
#endif
|
164
|
+
|
165
|
+
|
166
|
+
/* Cipher suites. */
|
167
|
+
|
168
|
+
/* Bits for |algorithm_mkey| (key exchange algorithm). */
|
169
|
+
#define SSL_kRSA 0x00000001L
|
170
|
+
#define SSL_kDHE 0x00000002L
|
171
|
+
#define SSL_kECDHE 0x00000004L
|
172
|
+
/* SSL_kPSK is only set for plain PSK, not ECDHE_PSK. */
|
173
|
+
#define SSL_kPSK 0x00000008L
|
174
|
+
#define SSL_kCECPQ1 0x00000010L
|
175
|
+
|
176
|
+
/* Bits for |algorithm_auth| (server authentication). */
|
177
|
+
#define SSL_aRSA 0x00000001L
|
178
|
+
#define SSL_aECDSA 0x00000002L
|
179
|
+
/* SSL_aPSK is set for both PSK and ECDHE_PSK. */
|
180
|
+
#define SSL_aPSK 0x00000004L
|
181
|
+
|
182
|
+
#define SSL_aCERT (SSL_aRSA | SSL_aECDSA)
|
183
|
+
|
184
|
+
/* Bits for |algorithm_enc| (symmetric encryption). */
|
185
|
+
#define SSL_3DES 0x00000001L
|
186
|
+
#define SSL_AES128 0x00000002L
|
187
|
+
#define SSL_AES256 0x00000004L
|
188
|
+
#define SSL_AES128GCM 0x00000008L
|
189
|
+
#define SSL_AES256GCM 0x00000010L
|
190
|
+
#define SSL_CHACHA20POLY1305_OLD 0x00000020L
|
191
|
+
#define SSL_eNULL 0x00000040L
|
192
|
+
#define SSL_CHACHA20POLY1305 0x00000080L
|
193
|
+
|
194
|
+
#define SSL_AES (SSL_AES128 | SSL_AES256 | SSL_AES128GCM | SSL_AES256GCM)
|
195
|
+
|
196
|
+
/* Bits for |algorithm_mac| (symmetric authentication). */
|
197
|
+
#define SSL_MD5 0x00000001L
|
198
|
+
#define SSL_SHA1 0x00000002L
|
199
|
+
#define SSL_SHA256 0x00000004L
|
200
|
+
#define SSL_SHA384 0x00000008L
|
201
|
+
/* SSL_AEAD is set for all AEADs. */
|
202
|
+
#define SSL_AEAD 0x00000010L
|
203
|
+
|
204
|
+
/* Bits for |algorithm_prf| (handshake digest). */
|
205
|
+
#define SSL_HANDSHAKE_MAC_DEFAULT 0x1
|
206
|
+
#define SSL_HANDSHAKE_MAC_SHA256 0x2
|
207
|
+
#define SSL_HANDSHAKE_MAC_SHA384 0x4
|
208
|
+
|
209
|
+
/* SSL_MAX_DIGEST is the number of digest types which exist. When adding a new
|
210
|
+
* one, update the table in ssl_cipher.c. */
|
211
|
+
#define SSL_MAX_DIGEST 4
|
212
|
+
|
213
|
+
/* ssl_cipher_get_evp_aead sets |*out_aead| to point to the correct EVP_AEAD
|
214
|
+
* object for |cipher| protocol version |version|. It sets |*out_mac_secret_len|
|
215
|
+
* and |*out_fixed_iv_len| to the MAC key length and fixed IV length,
|
216
|
+
* respectively. The MAC key length is zero except for legacy block and stream
|
217
|
+
* ciphers. It returns 1 on success and 0 on error. */
|
218
|
+
int ssl_cipher_get_evp_aead(const EVP_AEAD **out_aead,
|
219
|
+
size_t *out_mac_secret_len,
|
220
|
+
size_t *out_fixed_iv_len,
|
221
|
+
const SSL_CIPHER *cipher, uint16_t version);
|
222
|
+
|
223
|
+
/* ssl_get_handshake_digest returns the |EVP_MD| corresponding to
|
224
|
+
* |algorithm_prf|. It returns SHA-1 for |SSL_HANDSHAKE_DEFAULT|. The caller is
|
225
|
+
* responsible for maintaining the additional MD5 digest and switching to
|
226
|
+
* SHA-256 in TLS 1.2. */
|
227
|
+
const EVP_MD *ssl_get_handshake_digest(uint32_t algorithm_prf);
|
228
|
+
|
229
|
+
/* ssl_create_cipher_list evaluates |rule_str| according to the ciphers in
|
230
|
+
* |ssl_method|. It sets |*out_cipher_list| to a newly-allocated
|
231
|
+
* |ssl_cipher_preference_list_st| containing the result.
|
232
|
+
* |*out_cipher_list_by_id| is set to a list of selected ciphers sorted by
|
233
|
+
* id. It returns |(*out_cipher_list)->ciphers| on success and NULL on
|
234
|
+
* failure. */
|
235
|
+
STACK_OF(SSL_CIPHER) *
|
236
|
+
ssl_create_cipher_list(const SSL_PROTOCOL_METHOD *ssl_method,
|
237
|
+
struct ssl_cipher_preference_list_st **out_cipher_list,
|
238
|
+
STACK_OF(SSL_CIPHER) **out_cipher_list_by_id,
|
239
|
+
const char *rule_str);
|
240
|
+
|
241
|
+
/* ssl_cipher_get_value returns the cipher suite id of |cipher|. */
|
242
|
+
uint16_t ssl_cipher_get_value(const SSL_CIPHER *cipher);
|
243
|
+
|
244
|
+
/* ssl_cipher_get_resumption_cipher returns the cipher suite id of the cipher
|
245
|
+
* matching |cipher| with PSK enabled. */
|
246
|
+
int ssl_cipher_get_ecdhe_psk_cipher(const SSL_CIPHER *cipher,
|
247
|
+
uint16_t *out_cipher);
|
248
|
+
|
249
|
+
/* ssl_cipher_get_key_type returns the |EVP_PKEY_*| value corresponding to the
|
250
|
+
* server key used in |cipher| or |EVP_PKEY_NONE| if there is none. */
|
251
|
+
int ssl_cipher_get_key_type(const SSL_CIPHER *cipher);
|
252
|
+
|
253
|
+
/* ssl_cipher_uses_certificate_auth returns one if |cipher| authenticates the
|
254
|
+
* server and, optionally, the client with a certificate. Otherwise it returns
|
255
|
+
* zero. */
|
256
|
+
int ssl_cipher_uses_certificate_auth(const SSL_CIPHER *cipher);
|
257
|
+
|
258
|
+
/* ssl_cipher_requires_server_key_exchange returns 1 if |cipher| requires a
|
259
|
+
* ServerKeyExchange message. Otherwise it returns 0.
|
260
|
+
*
|
261
|
+
* This function may return zero while still allowing |cipher| an optional
|
262
|
+
* ServerKeyExchange. This is the case for plain PSK ciphers. */
|
263
|
+
int ssl_cipher_requires_server_key_exchange(const SSL_CIPHER *cipher);
|
264
|
+
|
265
|
+
/* ssl_cipher_get_record_split_len, for TLS 1.0 CBC mode ciphers, returns the
|
266
|
+
* length of an encrypted 1-byte record, for use in record-splitting. Otherwise
|
267
|
+
* it returns zero. */
|
268
|
+
size_t ssl_cipher_get_record_split_len(const SSL_CIPHER *cipher);
|
269
|
+
|
270
|
+
|
271
|
+
/* Encryption layer. */
|
272
|
+
|
273
|
+
/* SSL_AEAD_CTX contains information about an AEAD that is being used to encrypt
|
274
|
+
* an SSL connection. */
|
275
|
+
struct ssl_aead_ctx_st {
|
276
|
+
const SSL_CIPHER *cipher;
|
277
|
+
EVP_AEAD_CTX ctx;
|
278
|
+
/* fixed_nonce contains any bytes of the nonce that are fixed for all
|
279
|
+
* records. */
|
280
|
+
uint8_t fixed_nonce[12];
|
281
|
+
uint8_t fixed_nonce_len, variable_nonce_len;
|
282
|
+
/* variable_nonce_included_in_record is non-zero if the variable nonce
|
283
|
+
* for a record is included as a prefix before the ciphertext. */
|
284
|
+
char variable_nonce_included_in_record;
|
285
|
+
/* random_variable_nonce is non-zero if the variable nonce is
|
286
|
+
* randomly generated, rather than derived from the sequence
|
287
|
+
* number. */
|
288
|
+
char random_variable_nonce;
|
289
|
+
/* omit_length_in_ad is non-zero if the length should be omitted in the
|
290
|
+
* AEAD's ad parameter. */
|
291
|
+
char omit_length_in_ad;
|
292
|
+
/* omit_version_in_ad is non-zero if the version should be omitted
|
293
|
+
* in the AEAD's ad parameter. */
|
294
|
+
char omit_version_in_ad;
|
295
|
+
/* omit_ad is non-zero if the AEAD's ad parameter should be omitted. */
|
296
|
+
char omit_ad;
|
297
|
+
/* xor_fixed_nonce is non-zero if the fixed nonce should be XOR'd into the
|
298
|
+
* variable nonce rather than prepended. */
|
299
|
+
char xor_fixed_nonce;
|
300
|
+
} /* SSL_AEAD_CTX */;
|
301
|
+
|
302
|
+
/* SSL_AEAD_CTX_new creates a newly-allocated |SSL_AEAD_CTX| using the supplied
|
303
|
+
* key material. It returns NULL on error. Only one of |SSL_AEAD_CTX_open| or
|
304
|
+
* |SSL_AEAD_CTX_seal| may be used with the resulting object, depending on
|
305
|
+
* |direction|. |version| is the normalized protocol version, so DTLS 1.0 is
|
306
|
+
* represented as 0x0301, not 0xffef. */
|
307
|
+
SSL_AEAD_CTX *SSL_AEAD_CTX_new(enum evp_aead_direction_t direction,
|
308
|
+
uint16_t version, const SSL_CIPHER *cipher,
|
309
|
+
const uint8_t *enc_key, size_t enc_key_len,
|
310
|
+
const uint8_t *mac_key, size_t mac_key_len,
|
311
|
+
const uint8_t *fixed_iv, size_t fixed_iv_len);
|
312
|
+
|
313
|
+
/* SSL_AEAD_CTX_free frees |ctx|. */
|
314
|
+
void SSL_AEAD_CTX_free(SSL_AEAD_CTX *ctx);
|
315
|
+
|
316
|
+
/* SSL_AEAD_CTX_explicit_nonce_len returns the length of the explicit nonce for
|
317
|
+
* |ctx|, if any. |ctx| may be NULL to denote the null cipher. */
|
318
|
+
size_t SSL_AEAD_CTX_explicit_nonce_len(SSL_AEAD_CTX *ctx);
|
319
|
+
|
320
|
+
/* SSL_AEAD_CTX_max_overhead returns the maximum overhead of calling
|
321
|
+
* |SSL_AEAD_CTX_seal|. |ctx| may be NULL to denote the null cipher. */
|
322
|
+
size_t SSL_AEAD_CTX_max_overhead(SSL_AEAD_CTX *ctx);
|
323
|
+
|
324
|
+
/* SSL_AEAD_CTX_open authenticates and decrypts |in_len| bytes from |in|
|
325
|
+
* in-place. On success, it sets |*out| to the plaintext in |in| and returns
|
326
|
+
* one. Otherwise, it returns zero. |ctx| may be NULL to denote the null cipher.
|
327
|
+
* The output will always be |explicit_nonce_len| bytes ahead of |in|. */
|
328
|
+
int SSL_AEAD_CTX_open(SSL_AEAD_CTX *ctx, CBS *out, uint8_t type,
|
329
|
+
uint16_t wire_version, const uint8_t seqnum[8],
|
330
|
+
uint8_t *in, size_t in_len);
|
331
|
+
|
332
|
+
/* SSL_AEAD_CTX_seal encrypts and authenticates |in_len| bytes from |in| and
|
333
|
+
* writes the result to |out|. It returns one on success and zero on
|
334
|
+
* error. |ctx| may be NULL to denote the null cipher.
|
335
|
+
*
|
336
|
+
* If |in| and |out| alias then |out| + |explicit_nonce_len| must be == |in|. */
|
337
|
+
int SSL_AEAD_CTX_seal(SSL_AEAD_CTX *ctx, uint8_t *out, size_t *out_len,
|
338
|
+
size_t max_out, uint8_t type, uint16_t wire_version,
|
339
|
+
const uint8_t seqnum[8], const uint8_t *in,
|
340
|
+
size_t in_len);
|
341
|
+
|
342
|
+
|
343
|
+
/* DTLS replay bitmap. */
|
344
|
+
|
345
|
+
/* DTLS1_BITMAP maintains a sliding window of 64 sequence numbers to detect
|
346
|
+
* replayed packets. It should be initialized by zeroing every field. */
|
347
|
+
typedef struct dtls1_bitmap_st {
|
348
|
+
/* map is a bit mask of the last 64 sequence numbers. Bit
|
349
|
+
* |1<<i| corresponds to |max_seq_num - i|. */
|
350
|
+
uint64_t map;
|
351
|
+
/* max_seq_num is the largest sequence number seen so far as a 64-bit
|
352
|
+
* integer. */
|
353
|
+
uint64_t max_seq_num;
|
354
|
+
} DTLS1_BITMAP;
|
355
|
+
|
356
|
+
|
357
|
+
/* Record layer. */
|
358
|
+
|
359
|
+
/* ssl_record_sequence_update increments the sequence number in |seq|. It
|
360
|
+
* returns one on success and zero on wraparound. */
|
361
|
+
int ssl_record_sequence_update(uint8_t *seq, size_t seq_len);
|
362
|
+
|
363
|
+
/* ssl_record_prefix_len returns the length of the prefix before the ciphertext
|
364
|
+
* of a record for |ssl|.
|
365
|
+
*
|
366
|
+
* TODO(davidben): Expose this as part of public API once the high-level
|
367
|
+
* buffer-free APIs are available. */
|
368
|
+
size_t ssl_record_prefix_len(const SSL *ssl);
|
369
|
+
|
370
|
+
enum ssl_open_record_t {
|
371
|
+
ssl_open_record_success,
|
372
|
+
ssl_open_record_discard,
|
373
|
+
ssl_open_record_partial,
|
374
|
+
ssl_open_record_close_notify,
|
375
|
+
ssl_open_record_fatal_alert,
|
376
|
+
ssl_open_record_error,
|
377
|
+
};
|
378
|
+
|
379
|
+
/* tls_open_record decrypts a record from |in| in-place.
|
380
|
+
*
|
381
|
+
* If the input did not contain a complete record, it returns
|
382
|
+
* |ssl_open_record_partial|. It sets |*out_consumed| to the total number of
|
383
|
+
* bytes necessary. It is guaranteed that a successful call to |tls_open_record|
|
384
|
+
* will consume at least that many bytes.
|
385
|
+
*
|
386
|
+
* Otherwise, it sets |*out_consumed| to the number of bytes of input
|
387
|
+
* consumed. Note that input may be consumed on all return codes if a record was
|
388
|
+
* decrypted.
|
389
|
+
*
|
390
|
+
* On success, it returns |ssl_open_record_success|. It sets |*out_type| to the
|
391
|
+
* record type and |*out| to the record body in |in|. Note that |*out| may be
|
392
|
+
* empty.
|
393
|
+
*
|
394
|
+
* If a record was successfully processed but should be discarded, it returns
|
395
|
+
* |ssl_open_record_discard|.
|
396
|
+
*
|
397
|
+
* If a record was successfully processed but is a close_notify or fatal alert,
|
398
|
+
* it returns |ssl_open_record_close_notify| or |ssl_open_record_fatal_alert|.
|
399
|
+
*
|
400
|
+
* On failure, it returns |ssl_open_record_error| and sets |*out_alert| to an
|
401
|
+
* alert to emit. */
|
402
|
+
enum ssl_open_record_t tls_open_record(SSL *ssl, uint8_t *out_type, CBS *out,
|
403
|
+
size_t *out_consumed, uint8_t *out_alert,
|
404
|
+
uint8_t *in, size_t in_len);
|
405
|
+
|
406
|
+
/* dtls_open_record implements |tls_open_record| for DTLS. It never returns
|
407
|
+
* |ssl_open_record_partial| but otherwise behaves analogously. */
|
408
|
+
enum ssl_open_record_t dtls_open_record(SSL *ssl, uint8_t *out_type, CBS *out,
|
409
|
+
size_t *out_consumed,
|
410
|
+
uint8_t *out_alert, uint8_t *in,
|
411
|
+
size_t in_len);
|
412
|
+
|
413
|
+
/* ssl_seal_align_prefix_len returns the length of the prefix before the start
|
414
|
+
* of the bulk of the ciphertext when sealing a record with |ssl|. Callers may
|
415
|
+
* use this to align buffers.
|
416
|
+
*
|
417
|
+
* Note when TLS 1.0 CBC record-splitting is enabled, this includes the one byte
|
418
|
+
* record and is the offset into second record's ciphertext. Thus this value may
|
419
|
+
* differ from |ssl_record_prefix_len| and sealing a small record may result in
|
420
|
+
* a smaller output than this value.
|
421
|
+
*
|
422
|
+
* TODO(davidben): Expose this as part of public API once the high-level
|
423
|
+
* buffer-free APIs are available. */
|
424
|
+
size_t ssl_seal_align_prefix_len(const SSL *ssl);
|
425
|
+
|
426
|
+
/* ssl_max_seal_overhead returns the maximum overhead of sealing a record with
|
427
|
+
* |ssl|.
|
428
|
+
*
|
429
|
+
* TODO(davidben): Expose this as part of public API once the high-level
|
430
|
+
* buffer-free APIs are available. */
|
431
|
+
size_t ssl_max_seal_overhead(const SSL *ssl);
|
432
|
+
|
433
|
+
/* tls_seal_record seals a new record of type |type| and body |in| and writes it
|
434
|
+
* to |out|. At most |max_out| bytes will be written. It returns one on success
|
435
|
+
* and zero on error. If enabled, |tls_seal_record| implements TLS 1.0 CBC 1/n-1
|
436
|
+
* record splitting and may write two records concatenated.
|
437
|
+
*
|
438
|
+
* For a large record, the bulk of the ciphertext will begin
|
439
|
+
* |ssl_seal_align_prefix_len| bytes into out. Aligning |out| appropriately may
|
440
|
+
* improve performance. It writes at most |in_len| + |ssl_max_seal_overhead|
|
441
|
+
* bytes to |out|.
|
442
|
+
*
|
443
|
+
* |in| and |out| may not alias. */
|
444
|
+
int tls_seal_record(SSL *ssl, uint8_t *out, size_t *out_len, size_t max_out,
|
445
|
+
uint8_t type, const uint8_t *in, size_t in_len);
|
446
|
+
|
447
|
+
enum dtls1_use_epoch_t {
|
448
|
+
dtls1_use_previous_epoch,
|
449
|
+
dtls1_use_current_epoch,
|
450
|
+
};
|
451
|
+
|
452
|
+
/* dtls_seal_record implements |tls_seal_record| for DTLS. |use_epoch| selects
|
453
|
+
* which epoch's cipher state to use. */
|
454
|
+
int dtls_seal_record(SSL *ssl, uint8_t *out, size_t *out_len, size_t max_out,
|
455
|
+
uint8_t type, const uint8_t *in, size_t in_len,
|
456
|
+
enum dtls1_use_epoch_t use_epoch);
|
457
|
+
|
458
|
+
/* ssl_process_alert processes |in| as an alert and updates |ssl|'s shutdown
|
459
|
+
* state. It returns one of |ssl_open_record_discard|, |ssl_open_record_error|,
|
460
|
+
* |ssl_open_record_close_notify|, or |ssl_open_record_fatal_alert| as
|
461
|
+
* appropriate. */
|
462
|
+
enum ssl_open_record_t ssl_process_alert(SSL *ssl, uint8_t *out_alert,
|
463
|
+
const uint8_t *in, size_t in_len);
|
464
|
+
|
465
|
+
|
466
|
+
/* Private key operations. */
|
467
|
+
|
468
|
+
/* ssl_has_private_key returns one if |ssl| has a private key
|
469
|
+
* configured and zero otherwise. */
|
470
|
+
int ssl_has_private_key(const SSL *ssl);
|
471
|
+
|
472
|
+
/* ssl_is_ecdsa_key_type returns one if |type| is an ECDSA key type and zero
|
473
|
+
* otherwise. */
|
474
|
+
int ssl_is_ecdsa_key_type(int type);
|
475
|
+
|
476
|
+
/* ssl_private_key_* call the corresponding function on the
|
477
|
+
* |SSL_PRIVATE_KEY_METHOD| for |ssl|, if configured. Otherwise, they implement
|
478
|
+
* the operation with |EVP_PKEY|. */
|
479
|
+
|
480
|
+
int ssl_private_key_type(SSL *ssl);
|
481
|
+
|
482
|
+
size_t ssl_private_key_max_signature_len(SSL *ssl);
|
483
|
+
|
484
|
+
enum ssl_private_key_result_t ssl_private_key_sign(
|
485
|
+
SSL *ssl, uint8_t *out, size_t *out_len, size_t max_out,
|
486
|
+
uint16_t signature_algorithm, const uint8_t *in, size_t in_len);
|
487
|
+
|
488
|
+
enum ssl_private_key_result_t ssl_private_key_decrypt(
|
489
|
+
SSL *ssl, uint8_t *out, size_t *out_len, size_t max_out,
|
490
|
+
const uint8_t *in, size_t in_len);
|
491
|
+
|
492
|
+
enum ssl_private_key_result_t ssl_private_key_complete(SSL *ssl, uint8_t *out,
|
493
|
+
size_t *out_len,
|
494
|
+
size_t max_out);
|
495
|
+
|
496
|
+
/* ssl_private_key_supports_signature_algorithm returns one if |ssl|'s private
|
497
|
+
* key supports |signature_algorithm| and zero otherwise. */
|
498
|
+
int ssl_private_key_supports_signature_algorithm(SSL *ssl,
|
499
|
+
uint16_t signature_algorithm);
|
500
|
+
|
501
|
+
/* ssl_public_key_verify verifies that the |signature| is valid for the public
|
502
|
+
* key |pkey| and input |in|, using the |signature_algorithm| specified. */
|
503
|
+
int ssl_public_key_verify(
|
504
|
+
SSL *ssl, const uint8_t *signature, size_t signature_len,
|
505
|
+
uint16_t signature_algorithm, EVP_PKEY *pkey,
|
506
|
+
const uint8_t *in, size_t in_len);
|
507
|
+
|
508
|
+
|
509
|
+
/* Custom extensions */
|
510
|
+
|
511
|
+
/* ssl_custom_extension (a.k.a. SSL_CUSTOM_EXTENSION) is a structure that
|
512
|
+
* contains information about custom-extension callbacks. */
|
513
|
+
struct ssl_custom_extension {
|
514
|
+
SSL_custom_ext_add_cb add_callback;
|
515
|
+
void *add_arg;
|
516
|
+
SSL_custom_ext_free_cb free_callback;
|
517
|
+
SSL_custom_ext_parse_cb parse_callback;
|
518
|
+
void *parse_arg;
|
519
|
+
uint16_t value;
|
520
|
+
};
|
521
|
+
|
522
|
+
void SSL_CUSTOM_EXTENSION_free(SSL_CUSTOM_EXTENSION *custom_extension);
|
523
|
+
|
524
|
+
int custom_ext_add_clienthello(SSL *ssl, CBB *extensions);
|
525
|
+
int custom_ext_parse_serverhello(SSL *ssl, int *out_alert, uint16_t value,
|
526
|
+
const CBS *extension);
|
527
|
+
int custom_ext_parse_clienthello(SSL *ssl, int *out_alert, uint16_t value,
|
528
|
+
const CBS *extension);
|
529
|
+
int custom_ext_add_serverhello(SSL *ssl, CBB *extensions);
|
530
|
+
|
531
|
+
|
532
|
+
/* Handshake hash.
|
533
|
+
*
|
534
|
+
* The TLS handshake maintains a transcript of all handshake messages. At
|
535
|
+
* various points in the protocol, this is either a handshake buffer, a rolling
|
536
|
+
* hash (selected by cipher suite) or both. */
|
537
|
+
|
538
|
+
/* ssl3_init_handshake_buffer initializes the handshake buffer and resets the
|
539
|
+
* handshake hash. It returns one success and zero on failure. */
|
540
|
+
int ssl3_init_handshake_buffer(SSL *ssl);
|
541
|
+
|
542
|
+
/* ssl3_init_handshake_hash initializes the handshake hash based on the pending
|
543
|
+
* cipher and the contents of the handshake buffer. Subsequent calls to
|
544
|
+
* |ssl3_update_handshake_hash| will update the rolling hash. It returns one on
|
545
|
+
* success and zero on failure. It is an error to call this function after the
|
546
|
+
* handshake buffer is released. */
|
547
|
+
int ssl3_init_handshake_hash(SSL *ssl);
|
548
|
+
|
549
|
+
/* ssl3_free_handshake_buffer releases the handshake buffer. Subsequent calls
|
550
|
+
* to |ssl3_update_handshake_hash| will not update the handshake buffer. */
|
551
|
+
void ssl3_free_handshake_buffer(SSL *ssl);
|
552
|
+
|
553
|
+
/* ssl3_free_handshake_hash releases the handshake hash. */
|
554
|
+
void ssl3_free_handshake_hash(SSL *ssl);
|
555
|
+
|
556
|
+
/* ssl3_update_handshake_hash adds |in| to the handshake buffer and handshake
|
557
|
+
* hash, whichever is enabled. It returns one on success and zero on failure. */
|
558
|
+
int ssl3_update_handshake_hash(SSL *ssl, const uint8_t *in, size_t in_len);
|
559
|
+
|
560
|
+
|
561
|
+
/* ECDH groups. */
|
562
|
+
|
563
|
+
/* An SSL_ECDH_METHOD is an implementation of ECDH-like key exchanges for
|
564
|
+
* TLS. */
|
565
|
+
struct ssl_ecdh_method_st {
|
566
|
+
int nid;
|
567
|
+
uint16_t group_id;
|
568
|
+
const char name[8];
|
569
|
+
|
570
|
+
/* cleanup releases state in |ctx|. */
|
571
|
+
void (*cleanup)(SSL_ECDH_CTX *ctx);
|
572
|
+
|
573
|
+
/* offer generates a keypair and writes the public value to
|
574
|
+
* |out_public_key|. It returns one on success and zero on error. */
|
575
|
+
int (*offer)(SSL_ECDH_CTX *ctx, CBB *out_public_key);
|
576
|
+
|
577
|
+
/* accept performs a key exchange against the |peer_key| generated by |offer|.
|
578
|
+
* On success, it returns one, writes the public value to |out_public_key|,
|
579
|
+
* and sets |*out_secret| and |*out_secret_len| to a newly-allocated buffer
|
580
|
+
* containing the shared secret. The caller must release this buffer with
|
581
|
+
* |OPENSSL_free|. On failure, it returns zero and sets |*out_alert| to an
|
582
|
+
* alert to send to the peer. */
|
583
|
+
int (*accept)(SSL_ECDH_CTX *ctx, CBB *out_public_key, uint8_t **out_secret,
|
584
|
+
size_t *out_secret_len, uint8_t *out_alert,
|
585
|
+
const uint8_t *peer_key, size_t peer_key_len);
|
586
|
+
|
587
|
+
/* finish performs a key exchange against the |peer_key| generated by
|
588
|
+
* |accept|. On success, it returns one and sets |*out_secret| and
|
589
|
+
* |*out_secret_len| to a newly-allocated buffer containing the shared
|
590
|
+
* secret. The caller must release this buffer with |OPENSSL_free|. On
|
591
|
+
* failure, it returns zero and sets |*out_alert| to an alert to send to the
|
592
|
+
* peer. */
|
593
|
+
int (*finish)(SSL_ECDH_CTX *ctx, uint8_t **out_secret, size_t *out_secret_len,
|
594
|
+
uint8_t *out_alert, const uint8_t *peer_key,
|
595
|
+
size_t peer_key_len);
|
596
|
+
|
597
|
+
/* get_key initializes |out| with a length-prefixed key from |cbs|. It returns
|
598
|
+
* one on success and zero on error. */
|
599
|
+
int (*get_key)(CBS *cbs, CBS *out);
|
600
|
+
|
601
|
+
/* add_key initializes |out_contents| to receive a key. Typically it will then
|
602
|
+
* be passed to |offer| or |accept|. It returns one on success and zero on
|
603
|
+
* error. */
|
604
|
+
int (*add_key)(CBB *cbb, CBB *out_contents);
|
605
|
+
} /* SSL_ECDH_METHOD */;
|
606
|
+
|
607
|
+
/* ssl_nid_to_group_id looks up the group corresponding to |nid|. On success, it
|
608
|
+
* sets |*out_group_id| to the group ID and returns one. Otherwise, it returns
|
609
|
+
* zero. */
|
610
|
+
int ssl_nid_to_group_id(uint16_t *out_group_id, int nid);
|
611
|
+
|
612
|
+
/* SSL_ECDH_CTX_init sets up |ctx| for use with curve |group_id|. It returns one
|
613
|
+
* on success and zero on error. */
|
614
|
+
int SSL_ECDH_CTX_init(SSL_ECDH_CTX *ctx, uint16_t group_id);
|
615
|
+
|
616
|
+
/* SSL_ECDH_CTX_init_for_dhe sets up |ctx| for use with legacy DHE-based ciphers
|
617
|
+
* where the server specifies a group. It takes ownership of |params|. */
|
618
|
+
void SSL_ECDH_CTX_init_for_dhe(SSL_ECDH_CTX *ctx, DH *params);
|
619
|
+
|
620
|
+
/* SSL_ECDH_CTX_init_for_cecpq1 sets up |ctx| for use with CECPQ1. */
|
621
|
+
void SSL_ECDH_CTX_init_for_cecpq1(SSL_ECDH_CTX *ctx);
|
622
|
+
|
623
|
+
/* SSL_ECDH_CTX_cleanup releases memory associated with |ctx|. It is legal to
|
624
|
+
* call it in the zero state. */
|
625
|
+
void SSL_ECDH_CTX_cleanup(SSL_ECDH_CTX *ctx);
|
626
|
+
|
627
|
+
/* SSL_ECDH_CTX_get_id returns the group ID for |ctx|. */
|
628
|
+
uint16_t SSL_ECDH_CTX_get_id(const SSL_ECDH_CTX *ctx);
|
629
|
+
|
630
|
+
/* SSL_ECDH_CTX_get_key calls the |get_key| method of |SSL_ECDH_METHOD|. */
|
631
|
+
int SSL_ECDH_CTX_get_key(SSL_ECDH_CTX *ctx, CBS *cbs, CBS *out);
|
632
|
+
|
633
|
+
/* SSL_ECDH_CTX_add_key calls the |add_key| method of |SSL_ECDH_METHOD|. */
|
634
|
+
int SSL_ECDH_CTX_add_key(SSL_ECDH_CTX *ctx, CBB *cbb, CBB *out_contents);
|
635
|
+
|
636
|
+
/* SSL_ECDH_CTX_offer calls the |offer| method of |SSL_ECDH_METHOD|. */
|
637
|
+
int SSL_ECDH_CTX_offer(SSL_ECDH_CTX *ctx, CBB *out_public_key);
|
638
|
+
|
639
|
+
/* SSL_ECDH_CTX_accept calls the |accept| method of |SSL_ECDH_METHOD|. */
|
640
|
+
int SSL_ECDH_CTX_accept(SSL_ECDH_CTX *ctx, CBB *out_public_key,
|
641
|
+
uint8_t **out_secret, size_t *out_secret_len,
|
642
|
+
uint8_t *out_alert, const uint8_t *peer_key,
|
643
|
+
size_t peer_key_len);
|
644
|
+
|
645
|
+
/* SSL_ECDH_CTX_finish the |finish| method of |SSL_ECDH_METHOD|. */
|
646
|
+
int SSL_ECDH_CTX_finish(SSL_ECDH_CTX *ctx, uint8_t **out_secret,
|
647
|
+
size_t *out_secret_len, uint8_t *out_alert,
|
648
|
+
const uint8_t *peer_key, size_t peer_key_len);
|
649
|
+
|
650
|
+
/* Handshake messages. */
|
651
|
+
|
652
|
+
/* SSL_MAX_HANDSHAKE_FLIGHT is the number of messages, including
|
653
|
+
* ChangeCipherSpec, in the longest handshake flight. Currently this is the
|
654
|
+
* client's second leg in a full handshake when client certificates, NPN, and
|
655
|
+
* Channel ID, are all enabled. */
|
656
|
+
#define SSL_MAX_HANDSHAKE_FLIGHT 7
|
657
|
+
|
658
|
+
/* ssl_max_handshake_message_len returns the maximum number of bytes permitted
|
659
|
+
* in a handshake message for |ssl|. */
|
660
|
+
size_t ssl_max_handshake_message_len(const SSL *ssl);
|
661
|
+
|
662
|
+
/* dtls_clear_incoming_messages releases all buffered incoming messages. */
|
663
|
+
void dtls_clear_incoming_messages(SSL *ssl);
|
664
|
+
|
665
|
+
/* dtls_has_incoming_messages returns one if there are buffered incoming
|
666
|
+
* messages ahead of the current message and zero otherwise. */
|
667
|
+
int dtls_has_incoming_messages(const SSL *ssl);
|
668
|
+
|
669
|
+
typedef struct dtls_outgoing_message_st {
|
670
|
+
uint8_t *data;
|
671
|
+
uint32_t len;
|
672
|
+
uint16_t epoch;
|
673
|
+
char is_ccs;
|
674
|
+
} DTLS_OUTGOING_MESSAGE;
|
675
|
+
|
676
|
+
/* dtls_clear_outgoing_messages releases all buffered outgoing messages. */
|
677
|
+
void dtls_clear_outgoing_messages(SSL *ssl);
|
678
|
+
|
679
|
+
|
680
|
+
/* Callbacks. */
|
681
|
+
|
682
|
+
/* ssl_do_info_callback calls |ssl|'s info callback, if set. */
|
683
|
+
void ssl_do_info_callback(const SSL *ssl, int type, int value);
|
684
|
+
|
685
|
+
/* ssl_do_msg_callback calls |ssl|'s message callback, if set. */
|
686
|
+
void ssl_do_msg_callback(SSL *ssl, int is_write, int content_type,
|
687
|
+
const void *buf, size_t len);
|
688
|
+
|
689
|
+
|
690
|
+
/* Transport buffers. */
|
691
|
+
|
692
|
+
/* ssl_read_buffer returns a pointer to contents of the read buffer. */
|
693
|
+
uint8_t *ssl_read_buffer(SSL *ssl);
|
694
|
+
|
695
|
+
/* ssl_read_buffer_len returns the length of the read buffer. */
|
696
|
+
size_t ssl_read_buffer_len(const SSL *ssl);
|
697
|
+
|
698
|
+
/* ssl_read_buffer_extend_to extends the read buffer to the desired length. For
|
699
|
+
* TLS, it reads to the end of the buffer until the buffer is |len| bytes
|
700
|
+
* long. For DTLS, it reads a new packet and ignores |len|. It returns one on
|
701
|
+
* success, zero on EOF, and a negative number on error.
|
702
|
+
*
|
703
|
+
* It is an error to call |ssl_read_buffer_extend_to| in DTLS when the buffer is
|
704
|
+
* non-empty. */
|
705
|
+
int ssl_read_buffer_extend_to(SSL *ssl, size_t len);
|
706
|
+
|
707
|
+
/* ssl_read_buffer_consume consumes |len| bytes from the read buffer. It
|
708
|
+
* advances the data pointer and decrements the length. The memory consumed will
|
709
|
+
* remain valid until the next call to |ssl_read_buffer_extend| or it is
|
710
|
+
* discarded with |ssl_read_buffer_discard|. */
|
711
|
+
void ssl_read_buffer_consume(SSL *ssl, size_t len);
|
712
|
+
|
713
|
+
/* ssl_read_buffer_discard discards the consumed bytes from the read buffer. If
|
714
|
+
* the buffer is now empty, it releases memory used by it. */
|
715
|
+
void ssl_read_buffer_discard(SSL *ssl);
|
716
|
+
|
717
|
+
/* ssl_read_buffer_clear releases all memory associated with the read buffer and
|
718
|
+
* zero-initializes it. */
|
719
|
+
void ssl_read_buffer_clear(SSL *ssl);
|
720
|
+
|
721
|
+
/* ssl_write_buffer_is_pending returns one if the write buffer has pending data
|
722
|
+
* and zero if is empty. */
|
723
|
+
int ssl_write_buffer_is_pending(const SSL *ssl);
|
724
|
+
|
725
|
+
/* ssl_write_buffer_init initializes the write buffer. On success, it sets
|
726
|
+
* |*out_ptr| to the start of the write buffer with space for up to |max_len|
|
727
|
+
* bytes. It returns one on success and zero on failure. Call
|
728
|
+
* |ssl_write_buffer_set_len| to complete initialization. */
|
729
|
+
int ssl_write_buffer_init(SSL *ssl, uint8_t **out_ptr, size_t max_len);
|
730
|
+
|
731
|
+
/* ssl_write_buffer_set_len is called after |ssl_write_buffer_init| to complete
|
732
|
+
* initialization after |len| bytes are written to the buffer. */
|
733
|
+
void ssl_write_buffer_set_len(SSL *ssl, size_t len);
|
734
|
+
|
735
|
+
/* ssl_write_buffer_flush flushes the write buffer to the transport. It returns
|
736
|
+
* one on success and <= 0 on error. For DTLS, whether or not the write
|
737
|
+
* succeeds, the write buffer will be cleared. */
|
738
|
+
int ssl_write_buffer_flush(SSL *ssl);
|
739
|
+
|
740
|
+
/* ssl_write_buffer_clear releases all memory associated with the write buffer
|
741
|
+
* and zero-initializes it. */
|
742
|
+
void ssl_write_buffer_clear(SSL *ssl);
|
743
|
+
|
744
|
+
|
745
|
+
/* Certificate functions. */
|
746
|
+
|
747
|
+
/* ssl_has_certificate returns one if a certificate and private key are
|
748
|
+
* configured and zero otherwise. */
|
749
|
+
int ssl_has_certificate(const SSL *ssl);
|
750
|
+
|
751
|
+
/* ssl_parse_cert_chain parses a certificate list from |cbs| in the format used
|
752
|
+
* by a TLS Certificate message. On success, it returns a newly-allocated
|
753
|
+
* |X509| list and advances |cbs|. Otherwise, it returns NULL and sets
|
754
|
+
* |*out_alert| to an alert to send to the peer. If the list is non-empty and
|
755
|
+
* |out_leaf_sha256| is non-NULL, it writes the SHA-256 hash of the leaf to
|
756
|
+
* |out_leaf_sha256|. */
|
757
|
+
STACK_OF(X509) *ssl_parse_cert_chain(SSL *ssl, uint8_t *out_alert,
|
758
|
+
uint8_t *out_leaf_sha256, CBS *cbs);
|
759
|
+
|
760
|
+
/* ssl_add_cert_to_cbb adds |x509| to |cbb|. It returns one on success and zero
|
761
|
+
* on error. */
|
762
|
+
int ssl_add_cert_to_cbb(CBB *cbb, X509 *x509);
|
763
|
+
|
764
|
+
/* ssl_add_cert_chain adds |ssl|'s certificate chain to |cbb| in the format used
|
765
|
+
* by a TLS Certificate message. If there is no certificate chain, it emits an
|
766
|
+
* empty certificate list. It returns one on success and zero on error. */
|
767
|
+
int ssl_add_cert_chain(SSL *ssl, CBB *cbb);
|
768
|
+
|
769
|
+
/* ssl_parse_client_CA_list parses a CA list from |cbs| in the format used by a
|
770
|
+
* TLS CertificateRequest message. On success, it returns a newly-allocated
|
771
|
+
* |X509_NAME| list and advances |cbs|. Otherwise, it returns NULL and sets
|
772
|
+
* |*out_alert| to an alert to send to the peer. */
|
773
|
+
STACK_OF(X509_NAME) *
|
774
|
+
ssl_parse_client_CA_list(SSL *ssl, uint8_t *out_alert, CBS *cbs);
|
775
|
+
|
776
|
+
/* ssl_add_client_CA_list adds the configured CA list to |cbb| in the format
|
777
|
+
* used by a TLS CertificateRequest message. It returns one on success and zero
|
778
|
+
* on error. */
|
779
|
+
int ssl_add_client_CA_list(SSL *ssl, CBB *cbb);
|
780
|
+
|
781
|
+
/* ssl_check_leaf_certificate returns one if |leaf| is a suitable leaf server
|
782
|
+
* certificate for |ssl|. Otherwise, it returns zero and pushes an error on the
|
783
|
+
* error queue. */
|
784
|
+
int ssl_check_leaf_certificate(SSL *ssl, X509 *leaf);
|
785
|
+
|
786
|
+
/* ssl_do_client_cert_cb runs the client_cert_cb, if any, and returns one on
|
787
|
+
* success and zero on error. On error, it sets |*out_should_retry| to one if
|
788
|
+
* the callback failed and should be retried and zero otherwise. */
|
789
|
+
int ssl_do_client_cert_cb(SSL *ssl, int *out_should_retry);
|
790
|
+
|
791
|
+
|
792
|
+
/* TLS 1.3 key derivation. */
|
793
|
+
|
794
|
+
/* tls13_init_key_schedule initializes the handshake hash and key derivation
|
795
|
+
* state with the given resumption context. The cipher suite and PRF hash must
|
796
|
+
* have been selected at this point. It returns one on success and zero on
|
797
|
+
* error. */
|
798
|
+
int tls13_init_key_schedule(SSL *ssl, const uint8_t *resumption_ctx,
|
799
|
+
size_t resumption_ctx_len);
|
800
|
+
|
801
|
+
/* tls13_advance_key_schedule incorporates |in| into the key schedule with
|
802
|
+
* HKDF-Extract. It returns one on success and zero on error. */
|
803
|
+
int tls13_advance_key_schedule(SSL *ssl, const uint8_t *in, size_t len);
|
804
|
+
|
805
|
+
/* tls13_get_context_hashes writes Hash(Handshake Context) +
|
806
|
+
* Hash(resumption_context) to |out| which much have room for at least 2 *
|
807
|
+
* |EVP_MAX_MD_SIZE| bytes. On success, it returns one and sets |*out_len| to
|
808
|
+
* the number of bytes written. Otherwise, it returns zero. */
|
809
|
+
int tls13_get_context_hashes(SSL *ssl, uint8_t *out, size_t *out_len);
|
810
|
+
|
811
|
+
enum tls_record_type_t {
|
812
|
+
type_early_handshake,
|
813
|
+
type_early_data,
|
814
|
+
type_handshake,
|
815
|
+
type_data,
|
816
|
+
};
|
817
|
+
|
818
|
+
/* tls13_set_traffic_key sets the read or write traffic keys to |traffic_secret|
|
819
|
+
* for the given traffic phase |type|. It returns one on success and zero on
|
820
|
+
* error. */
|
821
|
+
int tls13_set_traffic_key(SSL *ssl, enum tls_record_type_t type,
|
822
|
+
enum evp_aead_direction_t direction,
|
823
|
+
const uint8_t *traffic_secret,
|
824
|
+
size_t traffic_secret_len);
|
825
|
+
|
826
|
+
/* tls13_set_handshake_traffic derives the handshake traffic secret and
|
827
|
+
* switches both read and write traffic to it. It returns one on success and
|
828
|
+
* zero on error. */
|
829
|
+
int tls13_set_handshake_traffic(SSL *ssl);
|
830
|
+
|
831
|
+
/* tls13_rotate_traffic_key derives the next read or write traffic secret. It
|
832
|
+
* returns one on success and zero on error. */
|
833
|
+
int tls13_rotate_traffic_key(SSL *ssl, enum evp_aead_direction_t direction);
|
834
|
+
|
835
|
+
/* tls13_derive_traffic_secret_0 derives the initial application data traffic
|
836
|
+
* secret based on the handshake transcripts and |master_secret|. It returns one
|
837
|
+
* on success and zero on error. */
|
838
|
+
int tls13_derive_traffic_secret_0(SSL *ssl);
|
839
|
+
|
840
|
+
/* tls13_finalize_keys derives the |exporter_secret| and |resumption_secret|. */
|
841
|
+
int tls13_finalize_keys(SSL *ssl);
|
842
|
+
|
843
|
+
/* tls13_export_keying_material provides and exporter interface to use the
|
844
|
+
* |exporter_secret|. */
|
845
|
+
int tls13_export_keying_material(SSL *ssl, uint8_t *out, size_t out_len,
|
846
|
+
const char *label, size_t label_len,
|
847
|
+
const uint8_t *context, size_t context_len,
|
848
|
+
int use_context);
|
849
|
+
|
850
|
+
/* tls13_finished_mac calculates the MAC of the handshake transcript to verify
|
851
|
+
* the integrity of the Finished message, and stores the result in |out| and
|
852
|
+
* length in |out_len|. |is_server| is 1 if this is for the Server Finished and
|
853
|
+
* 0 for the Client Finished. */
|
854
|
+
int tls13_finished_mac(SSL *ssl, uint8_t *out, size_t *out_len, int is_server);
|
855
|
+
|
856
|
+
/* tls13_resumption_psk calculates the PSK to use for the resumption of
|
857
|
+
* |session| and stores the result in |out|. It returns one on success, and
|
858
|
+
* zero on failure. */
|
859
|
+
int tls13_resumption_psk(SSL *ssl, uint8_t *out, size_t out_len,
|
860
|
+
const SSL_SESSION *session);
|
861
|
+
|
862
|
+
/* tls13_resumption_context derives the context to be used for the handshake
|
863
|
+
* transcript on the resumption of |session|. It returns one on success, and
|
864
|
+
* zero on failure. */
|
865
|
+
int tls13_resumption_context(SSL *ssl, uint8_t *out, size_t out_len,
|
866
|
+
const SSL_SESSION *session);
|
867
|
+
|
868
|
+
|
869
|
+
/* Handshake functions. */
|
870
|
+
|
871
|
+
enum ssl_hs_wait_t {
|
872
|
+
ssl_hs_error,
|
873
|
+
ssl_hs_ok,
|
874
|
+
ssl_hs_read_message,
|
875
|
+
ssl_hs_write_message,
|
876
|
+
ssl_hs_flush,
|
877
|
+
ssl_hs_flush_and_read_message,
|
878
|
+
ssl_hs_x509_lookup,
|
879
|
+
ssl_hs_private_key_operation,
|
880
|
+
};
|
881
|
+
|
882
|
+
struct ssl_handshake_st {
|
883
|
+
/* wait contains the operation |do_handshake| is currently blocking on or
|
884
|
+
* |ssl_hs_ok| if none. */
|
885
|
+
enum ssl_hs_wait_t wait;
|
886
|
+
|
887
|
+
/* do_handshake runs the handshake. On completion, it returns |ssl_hs_ok|.
|
888
|
+
* Otherwise, it returns a value corresponding to what operation is needed to
|
889
|
+
* progress. */
|
890
|
+
enum ssl_hs_wait_t (*do_handshake)(SSL *ssl);
|
891
|
+
|
892
|
+
int state;
|
893
|
+
|
894
|
+
size_t hash_len;
|
895
|
+
uint8_t resumption_hash[EVP_MAX_MD_SIZE];
|
896
|
+
uint8_t secret[EVP_MAX_MD_SIZE];
|
897
|
+
uint8_t traffic_secret_0[EVP_MAX_MD_SIZE];
|
898
|
+
|
899
|
+
/* ecdh_ctx is the active client ECDH offer in TLS 1.3. */
|
900
|
+
SSL_ECDH_CTX ecdh_ctx;
|
901
|
+
|
902
|
+
/* retry_group is the group ID selected by the server in HelloRetryRequest in
|
903
|
+
* TLS 1.3. */
|
904
|
+
uint16_t retry_group;
|
905
|
+
|
906
|
+
/* key_share_bytes is the value of the previously sent KeyShare extension by
|
907
|
+
* the client in TLS 1.3. */
|
908
|
+
uint8_t *key_share_bytes;
|
909
|
+
size_t key_share_bytes_len;
|
910
|
+
|
911
|
+
/* public_key, for servers, is the key share to be sent to the client in TLS
|
912
|
+
* 1.3. */
|
913
|
+
uint8_t *public_key;
|
914
|
+
size_t public_key_len;
|
915
|
+
|
916
|
+
/* peer_sigalgs are the signature algorithms that the peer supports. These are
|
917
|
+
* taken from the contents of the signature algorithms extension for a server
|
918
|
+
* or from the CertificateRequest for a client. */
|
919
|
+
uint16_t *peer_sigalgs;
|
920
|
+
/* num_peer_sigalgs is the number of entries in |peer_sigalgs|. */
|
921
|
+
size_t num_peer_sigalgs;
|
922
|
+
|
923
|
+
uint8_t session_tickets_sent;
|
924
|
+
|
925
|
+
/* peer_psk_identity_hint, on the client, is the psk_identity_hint sent by the
|
926
|
+
* server when using a TLS 1.2 PSK key exchange. */
|
927
|
+
char *peer_psk_identity_hint;
|
928
|
+
} /* SSL_HANDSHAKE */;
|
929
|
+
|
930
|
+
SSL_HANDSHAKE *ssl_handshake_new(enum ssl_hs_wait_t (*do_handshake)(SSL *ssl));
|
931
|
+
|
932
|
+
/* ssl_handshake_free releases all memory associated with |hs|. */
|
933
|
+
void ssl_handshake_free(SSL_HANDSHAKE *hs);
|
934
|
+
|
935
|
+
/* tls13_handshake runs the TLS 1.3 handshake. It returns one on success and <=
|
936
|
+
* 0 on error. */
|
937
|
+
int tls13_handshake(SSL *ssl);
|
938
|
+
|
939
|
+
/* The following are implementations of |do_handshake| for the client and
|
940
|
+
* server. */
|
941
|
+
enum ssl_hs_wait_t tls13_client_handshake(SSL *ssl);
|
942
|
+
enum ssl_hs_wait_t tls13_server_handshake(SSL *ssl);
|
943
|
+
|
944
|
+
/* tls13_post_handshake processes a post-handshake message. It returns one on
|
945
|
+
* success and zero on failure. */
|
946
|
+
int tls13_post_handshake(SSL *ssl);
|
947
|
+
|
948
|
+
/* tls13_check_message_type checks if the current message has type |type|. If so
|
949
|
+
* it returns one. Otherwise, it sends an alert and returns zero. */
|
950
|
+
int tls13_check_message_type(SSL *ssl, int type);
|
951
|
+
|
952
|
+
int tls13_process_certificate(SSL *ssl, int allow_anonymous);
|
953
|
+
int tls13_process_certificate_verify(SSL *ssl);
|
954
|
+
int tls13_process_finished(SSL *ssl);
|
955
|
+
|
956
|
+
int tls13_prepare_certificate(SSL *ssl);
|
957
|
+
enum ssl_private_key_result_t tls13_prepare_certificate_verify(
|
958
|
+
SSL *ssl, int is_first_run);
|
959
|
+
int tls13_prepare_finished(SSL *ssl);
|
960
|
+
int tls13_process_new_session_ticket(SSL *ssl);
|
961
|
+
|
962
|
+
int ssl_ext_key_share_parse_serverhello(SSL *ssl, uint8_t **out_secret,
|
963
|
+
size_t *out_secret_len,
|
964
|
+
uint8_t *out_alert, CBS *contents);
|
965
|
+
int ssl_ext_key_share_parse_clienthello(SSL *ssl, int *out_found,
|
966
|
+
uint8_t **out_secret,
|
967
|
+
size_t *out_secret_len,
|
968
|
+
uint8_t *out_alert, CBS *contents);
|
969
|
+
int ssl_ext_key_share_add_serverhello(SSL *ssl, CBB *out);
|
970
|
+
|
971
|
+
int ssl_ext_pre_shared_key_parse_serverhello(SSL *ssl, uint8_t *out_alert,
|
972
|
+
CBS *contents);
|
973
|
+
int ssl_ext_pre_shared_key_parse_clienthello(SSL *ssl,
|
974
|
+
SSL_SESSION **out_session,
|
975
|
+
uint8_t *out_alert, CBS *contents);
|
976
|
+
int ssl_ext_pre_shared_key_add_serverhello(SSL *ssl, CBB *out);
|
977
|
+
|
978
|
+
int ssl_add_client_hello_body(SSL *ssl, CBB *body);
|
979
|
+
|
980
|
+
/* ssl_clear_tls13_state releases client state only needed for TLS 1.3. It
|
981
|
+
* should be called once the version is known to be TLS 1.2 or earlier. */
|
982
|
+
void ssl_clear_tls13_state(SSL *ssl);
|
983
|
+
|
984
|
+
|
985
|
+
/* SSLKEYLOGFILE functions. */
|
986
|
+
|
987
|
+
/* ssl_log_rsa_client_key_exchange logs |premaster|, if logging is enabled for
|
988
|
+
* |ssl|. It returns one on success and zero on failure. The entry is identified
|
989
|
+
* by the first 8 bytes of |encrypted_premaster|. */
|
990
|
+
int ssl_log_rsa_client_key_exchange(const SSL *ssl,
|
991
|
+
const uint8_t *encrypted_premaster,
|
992
|
+
size_t encrypted_premaster_len,
|
993
|
+
const uint8_t *premaster,
|
994
|
+
size_t premaster_len);
|
995
|
+
|
996
|
+
/* ssl_log_secret logs |secret| with label |label|, if logging is enabled for
|
997
|
+
* |ssl|. It returns one on success and zero on failure. */
|
998
|
+
int ssl_log_secret(const SSL *ssl, const char *label, const uint8_t *secret,
|
999
|
+
size_t secret_len);
|
1000
|
+
|
1001
|
+
|
1002
|
+
/* ClientHello functions. */
|
1003
|
+
|
1004
|
+
int ssl_early_callback_init(SSL *ssl, struct ssl_early_callback_ctx *ctx,
|
1005
|
+
const uint8_t *in, size_t in_len);
|
1006
|
+
|
1007
|
+
int ssl_early_callback_get_extension(const struct ssl_early_callback_ctx *ctx,
|
1008
|
+
CBS *out, uint16_t extension_type);
|
1009
|
+
|
1010
|
+
STACK_OF(SSL_CIPHER) *
|
1011
|
+
ssl_parse_client_cipher_list(const struct ssl_early_callback_ctx *ctx);
|
1012
|
+
|
1013
|
+
int ssl_client_cipher_list_contains_cipher(
|
1014
|
+
const struct ssl_early_callback_ctx *client_hello, uint16_t id);
|
1015
|
+
|
1016
|
+
|
1017
|
+
/* GREASE. */
|
1018
|
+
|
1019
|
+
enum ssl_grease_index_t {
|
1020
|
+
ssl_grease_cipher = 0,
|
1021
|
+
ssl_grease_group,
|
1022
|
+
ssl_grease_extension1,
|
1023
|
+
ssl_grease_extension2,
|
1024
|
+
ssl_grease_version,
|
1025
|
+
};
|
1026
|
+
|
1027
|
+
/* ssl_get_grease_value returns a GREASE value for |ssl|. For a given
|
1028
|
+
* connection, the values for each index will be deterministic. This allows the
|
1029
|
+
* same ClientHello be sent twice for a HelloRetryRequest or the same group be
|
1030
|
+
* advertised in both supported_groups and key_shares. */
|
1031
|
+
uint16_t ssl_get_grease_value(const SSL *ssl, enum ssl_grease_index_t index);
|
1032
|
+
|
1033
|
+
|
1034
|
+
/* Underdocumented functions.
|
1035
|
+
*
|
1036
|
+
* Functions below here haven't been touched up and may be underdocumented. */
|
1037
|
+
|
1038
|
+
#define TLSEXT_CHANNEL_ID_SIZE 128
|
1039
|
+
|
1040
|
+
/* From RFC4492, used in encoding the curve type in ECParameters */
|
1041
|
+
#define NAMED_CURVE_TYPE 3
|
1042
|
+
|
1043
|
+
enum ssl_hash_message_t {
|
1044
|
+
ssl_dont_hash_message,
|
1045
|
+
ssl_hash_message,
|
1046
|
+
};
|
1047
|
+
|
1048
|
+
typedef struct cert_st {
|
1049
|
+
X509 *x509;
|
1050
|
+
EVP_PKEY *privatekey;
|
1051
|
+
/* Chain for this certificate */
|
1052
|
+
STACK_OF(X509) *chain;
|
1053
|
+
|
1054
|
+
/* key_method, if non-NULL, is a set of callbacks to call for private key
|
1055
|
+
* operations. */
|
1056
|
+
const SSL_PRIVATE_KEY_METHOD *key_method;
|
1057
|
+
|
1058
|
+
/* For clients the following masks are of *disabled* key and auth algorithms
|
1059
|
+
* based on the current configuration.
|
1060
|
+
*
|
1061
|
+
* TODO(davidben): Remove these. They get checked twice: when sending the
|
1062
|
+
* ClientHello and when processing the ServerHello. */
|
1063
|
+
uint32_t mask_k;
|
1064
|
+
uint32_t mask_a;
|
1065
|
+
|
1066
|
+
DH *dh_tmp;
|
1067
|
+
DH *(*dh_tmp_cb)(SSL *ssl, int is_export, int keysize);
|
1068
|
+
|
1069
|
+
/* sigalgs, if non-NULL, is the set of signature algorithms supported by
|
1070
|
+
* |privatekey| in decreasing order of preference. */
|
1071
|
+
uint16_t *sigalgs;
|
1072
|
+
size_t num_sigalgs;
|
1073
|
+
|
1074
|
+
/* Certificate setup callback: if set is called whenever a
|
1075
|
+
* certificate may be required (client or server). the callback
|
1076
|
+
* can then examine any appropriate parameters and setup any
|
1077
|
+
* certificates required. This allows advanced applications
|
1078
|
+
* to select certificates on the fly: for example based on
|
1079
|
+
* supported signature algorithms or curves. */
|
1080
|
+
int (*cert_cb)(SSL *ssl, void *arg);
|
1081
|
+
void *cert_cb_arg;
|
1082
|
+
|
1083
|
+
/* Optional X509_STORE for certificate validation. If NULL the parent SSL_CTX
|
1084
|
+
* store is used instead. */
|
1085
|
+
X509_STORE *verify_store;
|
1086
|
+
} CERT;
|
1087
|
+
|
1088
|
+
/* SSL_METHOD is a compatibility structure to support the legacy version-locked
|
1089
|
+
* methods. */
|
1090
|
+
struct ssl_method_st {
|
1091
|
+
/* version, if non-zero, is the only protocol version acceptable to an
|
1092
|
+
* SSL_CTX initialized from this method. */
|
1093
|
+
uint16_t version;
|
1094
|
+
/* method is the underlying SSL_PROTOCOL_METHOD that initializes the
|
1095
|
+
* SSL_CTX. */
|
1096
|
+
const SSL_PROTOCOL_METHOD *method;
|
1097
|
+
};
|
1098
|
+
|
1099
|
+
/* Used to hold functions for SSLv2 or SSLv3/TLSv1 functions */
|
1100
|
+
struct ssl_protocol_method_st {
|
1101
|
+
/* is_dtls is one if the protocol is DTLS and zero otherwise. */
|
1102
|
+
char is_dtls;
|
1103
|
+
/* min_version is the minimum implemented version. */
|
1104
|
+
uint16_t min_version;
|
1105
|
+
/* max_version is the maximum implemented version. */
|
1106
|
+
uint16_t max_version;
|
1107
|
+
/* version_from_wire maps |wire_version| to a protocol version. On success, it
|
1108
|
+
* sets |*out_version| to the result and returns one. If the version is
|
1109
|
+
* unknown, it returns zero. */
|
1110
|
+
int (*version_from_wire)(uint16_t *out_version, uint16_t wire_version);
|
1111
|
+
/* version_to_wire maps |version| to the wire representation. It is an error
|
1112
|
+
* to call it with an invalid version. */
|
1113
|
+
uint16_t (*version_to_wire)(uint16_t version);
|
1114
|
+
int (*ssl_new)(SSL *ssl);
|
1115
|
+
void (*ssl_free)(SSL *ssl);
|
1116
|
+
/* ssl_get_message reads the next handshake message. If |msg_type| is not -1,
|
1117
|
+
* the message must have the specified type. On success, it returns one and
|
1118
|
+
* sets |ssl->s3->tmp.message_type|, |ssl->init_msg|, and |ssl->init_num|.
|
1119
|
+
* Otherwise, it returns <= 0. */
|
1120
|
+
int (*ssl_get_message)(SSL *ssl, int msg_type,
|
1121
|
+
enum ssl_hash_message_t hash_message);
|
1122
|
+
/* hash_current_message incorporates the current handshake message into the
|
1123
|
+
* handshake hash. It returns one on success and zero on allocation
|
1124
|
+
* failure. */
|
1125
|
+
int (*hash_current_message)(SSL *ssl);
|
1126
|
+
/* release_current_message is called to release the current handshake message.
|
1127
|
+
* If |free_buffer| is one, buffers will also be released. */
|
1128
|
+
void (*release_current_message)(SSL *ssl, int free_buffer);
|
1129
|
+
/* read_app_data reads up to |len| bytes of application data into |buf|. On
|
1130
|
+
* success, it returns the number of bytes read. Otherwise, it returns <= 0
|
1131
|
+
* and sets |*out_got_handshake| to whether the failure was due to a
|
1132
|
+
* post-handshake handshake message. If so, it fills in the current message as
|
1133
|
+
* in |ssl_get_message|. */
|
1134
|
+
int (*read_app_data)(SSL *ssl, int *out_got_handshake, uint8_t *buf, int len,
|
1135
|
+
int peek);
|
1136
|
+
int (*read_change_cipher_spec)(SSL *ssl);
|
1137
|
+
void (*read_close_notify)(SSL *ssl);
|
1138
|
+
int (*write_app_data)(SSL *ssl, const void *buf_, int len);
|
1139
|
+
int (*dispatch_alert)(SSL *ssl);
|
1140
|
+
/* supports_cipher returns one if |cipher| is supported by this protocol and
|
1141
|
+
* zero otherwise. */
|
1142
|
+
int (*supports_cipher)(const SSL_CIPHER *cipher);
|
1143
|
+
/* init_message begins a new handshake message of type |type|. |cbb| is the
|
1144
|
+
* root CBB to be passed into |finish_message|. |*body| is set to a child CBB
|
1145
|
+
* the caller should write to. It returns one on success and zero on error. */
|
1146
|
+
int (*init_message)(SSL *ssl, CBB *cbb, CBB *body, uint8_t type);
|
1147
|
+
/* finish_message finishes a handshake message and prepares it to be
|
1148
|
+
* written. It returns one on success and zero on error. */
|
1149
|
+
int (*finish_message)(SSL *ssl, CBB *cbb);
|
1150
|
+
/* write_message writes the next message to the transport. It returns one on
|
1151
|
+
* success and <= 0 on error. */
|
1152
|
+
int (*write_message)(SSL *ssl);
|
1153
|
+
/* send_change_cipher_spec sends a ChangeCipherSpec message. */
|
1154
|
+
int (*send_change_cipher_spec)(SSL *ssl);
|
1155
|
+
/* expect_flight is called when the handshake expects a flight of messages from
|
1156
|
+
* the peer. */
|
1157
|
+
void (*expect_flight)(SSL *ssl);
|
1158
|
+
/* received_flight is called when the handshake has received a flight of
|
1159
|
+
* messages from the peer. */
|
1160
|
+
void (*received_flight)(SSL *ssl);
|
1161
|
+
/* set_read_state sets |ssl|'s read cipher state to |aead_ctx|. It takes
|
1162
|
+
* ownership of |aead_ctx|. It returns one on success and zero if changing the
|
1163
|
+
* read state is forbidden at this point. */
|
1164
|
+
int (*set_read_state)(SSL *ssl, SSL_AEAD_CTX *aead_ctx);
|
1165
|
+
/* set_write_state sets |ssl|'s write cipher state to |aead_ctx|. It takes
|
1166
|
+
* ownership of |aead_ctx|. It returns one on success and zero if changing the
|
1167
|
+
* write state is forbidden at this point. */
|
1168
|
+
int (*set_write_state)(SSL *ssl, SSL_AEAD_CTX *aead_ctx);
|
1169
|
+
};
|
1170
|
+
|
1171
|
+
/* This is for the SSLv3/TLSv1.0 differences in crypto/hash stuff It is a bit
|
1172
|
+
* of a mess of functions, but hell, think of it as an opaque structure. */
|
1173
|
+
struct ssl3_enc_method {
|
1174
|
+
/* prf computes the PRF function for |ssl|. It writes |out_len| bytes to
|
1175
|
+
* |out|, using |secret| as the secret and |label| as the label. |seed1| and
|
1176
|
+
* |seed2| are concatenated to form the seed parameter. It returns one on
|
1177
|
+
* success and zero on failure. */
|
1178
|
+
int (*prf)(const SSL *ssl, uint8_t *out, size_t out_len,
|
1179
|
+
const uint8_t *secret, size_t secret_len, const char *label,
|
1180
|
+
size_t label_len, const uint8_t *seed1, size_t seed1_len,
|
1181
|
+
const uint8_t *seed2, size_t seed2_len);
|
1182
|
+
int (*final_finish_mac)(SSL *ssl, int from_server, uint8_t *out);
|
1183
|
+
};
|
1184
|
+
|
1185
|
+
/* lengths of messages */
|
1186
|
+
#define DTLS1_COOKIE_LENGTH 256
|
1187
|
+
|
1188
|
+
#define DTLS1_RT_HEADER_LENGTH 13
|
1189
|
+
|
1190
|
+
#define DTLS1_HM_HEADER_LENGTH 12
|
1191
|
+
|
1192
|
+
#define DTLS1_CCS_HEADER_LENGTH 1
|
1193
|
+
|
1194
|
+
#define DTLS1_AL_HEADER_LENGTH 2
|
1195
|
+
|
1196
|
+
struct hm_header_st {
|
1197
|
+
uint8_t type;
|
1198
|
+
uint32_t msg_len;
|
1199
|
+
uint16_t seq;
|
1200
|
+
uint32_t frag_off;
|
1201
|
+
uint32_t frag_len;
|
1202
|
+
};
|
1203
|
+
|
1204
|
+
/* An hm_fragment is an incoming DTLS message, possibly not yet assembled. */
|
1205
|
+
typedef struct hm_fragment_st {
|
1206
|
+
/* type is the type of the message. */
|
1207
|
+
uint8_t type;
|
1208
|
+
/* seq is the sequence number of this message. */
|
1209
|
+
uint16_t seq;
|
1210
|
+
/* msg_len is the length of the message body. */
|
1211
|
+
uint32_t msg_len;
|
1212
|
+
/* data is a pointer to the message, including message header. It has length
|
1213
|
+
* |DTLS1_HM_HEADER_LENGTH| + |msg_len|. */
|
1214
|
+
uint8_t *data;
|
1215
|
+
/* reassembly is a bitmask of |msg_len| bits corresponding to which parts of
|
1216
|
+
* the message have been received. It is NULL if the message is complete. */
|
1217
|
+
uint8_t *reassembly;
|
1218
|
+
} hm_fragment;
|
1219
|
+
|
1220
|
+
typedef struct dtls1_state_st {
|
1221
|
+
/* send_cookie is true if we are resending the ClientHello
|
1222
|
+
* with a cookie from a HelloVerifyRequest. */
|
1223
|
+
unsigned int send_cookie;
|
1224
|
+
|
1225
|
+
uint8_t cookie[DTLS1_COOKIE_LENGTH];
|
1226
|
+
size_t cookie_len;
|
1227
|
+
|
1228
|
+
/* The current data and handshake epoch. This is initially undefined, and
|
1229
|
+
* starts at zero once the initial handshake is completed. */
|
1230
|
+
uint16_t r_epoch;
|
1231
|
+
uint16_t w_epoch;
|
1232
|
+
|
1233
|
+
/* records being received in the current epoch */
|
1234
|
+
DTLS1_BITMAP bitmap;
|
1235
|
+
|
1236
|
+
uint16_t handshake_write_seq;
|
1237
|
+
uint16_t handshake_read_seq;
|
1238
|
+
|
1239
|
+
/* save last sequence number for retransmissions */
|
1240
|
+
uint8_t last_write_sequence[8];
|
1241
|
+
|
1242
|
+
/* incoming_messages is a ring buffer of incoming handshake messages that have
|
1243
|
+
* yet to be processed. The front of the ring buffer is message number
|
1244
|
+
* |handshake_read_seq|, at position |handshake_read_seq| %
|
1245
|
+
* |SSL_MAX_HANDSHAKE_FLIGHT|. */
|
1246
|
+
hm_fragment *incoming_messages[SSL_MAX_HANDSHAKE_FLIGHT];
|
1247
|
+
|
1248
|
+
/* outgoing_messages is the queue of outgoing messages from the last handshake
|
1249
|
+
* flight. */
|
1250
|
+
DTLS_OUTGOING_MESSAGE outgoing_messages[SSL_MAX_HANDSHAKE_FLIGHT];
|
1251
|
+
uint8_t outgoing_messages_len;
|
1252
|
+
|
1253
|
+
unsigned int mtu; /* max DTLS packet size */
|
1254
|
+
|
1255
|
+
/* num_timeouts is the number of times the retransmit timer has fired since
|
1256
|
+
* the last time it was reset. */
|
1257
|
+
unsigned int num_timeouts;
|
1258
|
+
|
1259
|
+
/* Indicates when the last handshake msg or heartbeat sent will
|
1260
|
+
* timeout. */
|
1261
|
+
struct timeval next_timeout;
|
1262
|
+
|
1263
|
+
/* timeout_duration_ms is the timeout duration in milliseconds. */
|
1264
|
+
unsigned timeout_duration_ms;
|
1265
|
+
} DTLS1_STATE;
|
1266
|
+
|
1267
|
+
extern const SSL3_ENC_METHOD TLSv1_enc_data;
|
1268
|
+
extern const SSL3_ENC_METHOD SSLv3_enc_data;
|
1269
|
+
|
1270
|
+
/* From draft-ietf-tls-tls13-14, used in determining ticket validity. */
|
1271
|
+
#define SSL_TICKET_ALLOW_EARLY_DATA 1
|
1272
|
+
#define SSL_TICKET_ALLOW_DHE_RESUMPTION 2
|
1273
|
+
#define SSL_TICKET_ALLOW_PSK_RESUMPTION 4
|
1274
|
+
|
1275
|
+
CERT *ssl_cert_new(void);
|
1276
|
+
CERT *ssl_cert_dup(CERT *cert);
|
1277
|
+
void ssl_cert_clear_certs(CERT *c);
|
1278
|
+
void ssl_cert_free(CERT *c);
|
1279
|
+
int ssl_get_new_session(SSL *ssl, int is_server);
|
1280
|
+
int ssl_encrypt_ticket(SSL *ssl, CBB *out, const SSL_SESSION *session);
|
1281
|
+
|
1282
|
+
/* ssl_session_is_context_valid returns one if |session|'s session ID context
|
1283
|
+
* matches the one set on |ssl| and zero otherwise. */
|
1284
|
+
int ssl_session_is_context_valid(const SSL *ssl, const SSL_SESSION *session);
|
1285
|
+
|
1286
|
+
/* ssl_session_is_time_valid returns one if |session| is still valid and zero if
|
1287
|
+
* it has expired. */
|
1288
|
+
int ssl_session_is_time_valid(const SSL *ssl, const SSL_SESSION *session);
|
1289
|
+
|
1290
|
+
void ssl_set_session(SSL *ssl, SSL_SESSION *session);
|
1291
|
+
|
1292
|
+
enum ssl_session_result_t {
|
1293
|
+
ssl_session_success,
|
1294
|
+
ssl_session_error,
|
1295
|
+
ssl_session_retry,
|
1296
|
+
};
|
1297
|
+
|
1298
|
+
/* ssl_get_prev_session looks up the previous session based on |ctx|. On
|
1299
|
+
* success, it sets |*out_session| to the session or NULL if none was found. It
|
1300
|
+
* sets |*out_send_ticket| to whether a ticket should be sent at the end of the
|
1301
|
+
* handshake. If the session could not be looked up synchronously, it returns
|
1302
|
+
* |ssl_session_retry| and should be called again. Otherwise, it returns
|
1303
|
+
* |ssl_session_error|. */
|
1304
|
+
enum ssl_session_result_t ssl_get_prev_session(
|
1305
|
+
SSL *ssl, SSL_SESSION **out_session, int *out_send_ticket,
|
1306
|
+
const struct ssl_early_callback_ctx *ctx);
|
1307
|
+
|
1308
|
+
/* The following flags determine which parts of the session are duplicated. */
|
1309
|
+
#define SSL_SESSION_DUP_AUTH_ONLY 0x0
|
1310
|
+
#define SSL_SESSION_INCLUDE_TICKET 0x1
|
1311
|
+
#define SSL_SESSION_INCLUDE_NONAUTH 0x2
|
1312
|
+
#define SSL_SESSION_DUP_ALL \
|
1313
|
+
(SSL_SESSION_INCLUDE_TICKET | SSL_SESSION_INCLUDE_NONAUTH)
|
1314
|
+
|
1315
|
+
/* SSL_SESSION_dup returns a newly-allocated |SSL_SESSION| with a copy of the
|
1316
|
+
* fields in |session| or NULL on error. The new session is non-resumable and
|
1317
|
+
* must be explicitly marked resumable once it has been filled in. */
|
1318
|
+
OPENSSL_EXPORT SSL_SESSION *SSL_SESSION_dup(SSL_SESSION *session,
|
1319
|
+
int dup_flags);
|
1320
|
+
|
1321
|
+
void ssl_cipher_preference_list_free(
|
1322
|
+
struct ssl_cipher_preference_list_st *cipher_list);
|
1323
|
+
struct ssl_cipher_preference_list_st *ssl_get_cipher_preferences(SSL *ssl);
|
1324
|
+
|
1325
|
+
int ssl_cert_set0_chain(CERT *cert, STACK_OF(X509) *chain);
|
1326
|
+
int ssl_cert_set1_chain(CERT *cert, STACK_OF(X509) *chain);
|
1327
|
+
int ssl_cert_add0_chain_cert(CERT *cert, X509 *x509);
|
1328
|
+
int ssl_cert_add1_chain_cert(CERT *cert, X509 *x509);
|
1329
|
+
void ssl_cert_set_cert_cb(CERT *cert,
|
1330
|
+
int (*cb)(SSL *ssl, void *arg), void *arg);
|
1331
|
+
|
1332
|
+
int ssl_verify_cert_chain(SSL *ssl, long *out_verify_result,
|
1333
|
+
STACK_OF(X509) * cert_chain);
|
1334
|
+
void ssl_update_cache(SSL *ssl, int mode);
|
1335
|
+
|
1336
|
+
/* ssl_get_compatible_server_ciphers determines the key exchange and
|
1337
|
+
* authentication cipher suite masks compatible with the server configuration
|
1338
|
+
* and current ClientHello parameters of |ssl|. It sets |*out_mask_k| to the key
|
1339
|
+
* exchange mask and |*out_mask_a| to the authentication mask. */
|
1340
|
+
void ssl_get_compatible_server_ciphers(SSL *ssl, uint32_t *out_mask_k,
|
1341
|
+
uint32_t *out_mask_a);
|
1342
|
+
|
1343
|
+
STACK_OF(SSL_CIPHER) *ssl_get_ciphers_by_id(SSL *ssl);
|
1344
|
+
int ssl_verify_alarm_type(long type);
|
1345
|
+
|
1346
|
+
int ssl3_get_finished(SSL *ssl);
|
1347
|
+
int ssl3_send_change_cipher_spec(SSL *ssl);
|
1348
|
+
void ssl3_cleanup_key_block(SSL *ssl);
|
1349
|
+
int ssl3_send_alert(SSL *ssl, int level, int desc);
|
1350
|
+
int ssl3_get_message(SSL *ssl, int msg_type,
|
1351
|
+
enum ssl_hash_message_t hash_message);
|
1352
|
+
int ssl3_hash_current_message(SSL *ssl);
|
1353
|
+
void ssl3_release_current_message(SSL *ssl, int free_buffer);
|
1354
|
+
|
1355
|
+
/* ssl3_cert_verify_hash writes the SSL 3.0 CertificateVerify hash into the
|
1356
|
+
* bytes pointed to by |out| and writes the number of bytes to |*out_len|. |out|
|
1357
|
+
* must have room for |EVP_MAX_MD_SIZE| bytes. It sets |*out_md| to the hash
|
1358
|
+
* function used. It returns one on success and zero on failure. */
|
1359
|
+
int ssl3_cert_verify_hash(SSL *ssl, const EVP_MD **out_md, uint8_t *out,
|
1360
|
+
size_t *out_len, uint16_t signature_algorithm);
|
1361
|
+
|
1362
|
+
int ssl3_send_finished(SSL *ssl, int a, int b);
|
1363
|
+
int ssl3_supports_cipher(const SSL_CIPHER *cipher);
|
1364
|
+
int ssl3_dispatch_alert(SSL *ssl);
|
1365
|
+
int ssl3_read_app_data(SSL *ssl, int *out_got_handshake, uint8_t *buf, int len,
|
1366
|
+
int peek);
|
1367
|
+
int ssl3_read_change_cipher_spec(SSL *ssl);
|
1368
|
+
void ssl3_read_close_notify(SSL *ssl);
|
1369
|
+
int ssl3_read_handshake_bytes(SSL *ssl, uint8_t *buf, int len);
|
1370
|
+
int ssl3_write_app_data(SSL *ssl, const void *buf, int len);
|
1371
|
+
int ssl3_write_bytes(SSL *ssl, int type, const void *buf, int len);
|
1372
|
+
int ssl3_output_cert_chain(SSL *ssl);
|
1373
|
+
const SSL_CIPHER *ssl3_choose_cipher(
|
1374
|
+
SSL *ssl, const struct ssl_early_callback_ctx *client_hello,
|
1375
|
+
const struct ssl_cipher_preference_list_st *srvr);
|
1376
|
+
|
1377
|
+
int ssl3_new(SSL *ssl);
|
1378
|
+
void ssl3_free(SSL *ssl);
|
1379
|
+
int ssl3_accept(SSL *ssl);
|
1380
|
+
int ssl3_connect(SSL *ssl);
|
1381
|
+
|
1382
|
+
int ssl3_init_message(SSL *ssl, CBB *cbb, CBB *body, uint8_t type);
|
1383
|
+
int ssl3_finish_message(SSL *ssl, CBB *cbb);
|
1384
|
+
int ssl3_write_message(SSL *ssl);
|
1385
|
+
|
1386
|
+
void ssl3_expect_flight(SSL *ssl);
|
1387
|
+
void ssl3_received_flight(SSL *ssl);
|
1388
|
+
|
1389
|
+
int dtls1_init_message(SSL *ssl, CBB *cbb, CBB *body, uint8_t type);
|
1390
|
+
int dtls1_finish_message(SSL *ssl, CBB *cbb);
|
1391
|
+
int dtls1_write_message(SSL *ssl);
|
1392
|
+
|
1393
|
+
/* dtls1_get_record reads a new input record. On success, it places it in
|
1394
|
+
* |ssl->s3->rrec| and returns one. Otherwise it returns <= 0 on error or if
|
1395
|
+
* more data is needed. */
|
1396
|
+
int dtls1_get_record(SSL *ssl);
|
1397
|
+
|
1398
|
+
int dtls1_read_app_data(SSL *ssl, int *out_got_handshake, uint8_t *buf, int len,
|
1399
|
+
int peek);
|
1400
|
+
int dtls1_read_change_cipher_spec(SSL *ssl);
|
1401
|
+
void dtls1_read_close_notify(SSL *ssl);
|
1402
|
+
|
1403
|
+
int dtls1_write_app_data(SSL *ssl, const void *buf, int len);
|
1404
|
+
|
1405
|
+
/* dtls1_write_record sends a record. It returns one on success and <= 0 on
|
1406
|
+
* error. */
|
1407
|
+
int dtls1_write_record(SSL *ssl, int type, const uint8_t *buf, size_t len,
|
1408
|
+
enum dtls1_use_epoch_t use_epoch);
|
1409
|
+
|
1410
|
+
int dtls1_send_change_cipher_spec(SSL *ssl);
|
1411
|
+
int dtls1_send_finished(SSL *ssl, int a, int b, const char *sender, int slen);
|
1412
|
+
int dtls1_retransmit_outgoing_messages(SSL *ssl);
|
1413
|
+
void dtls1_clear_record_buffer(SSL *ssl);
|
1414
|
+
int dtls1_parse_fragment(CBS *cbs, struct hm_header_st *out_hdr,
|
1415
|
+
CBS *out_body);
|
1416
|
+
int dtls1_check_timeout_num(SSL *ssl);
|
1417
|
+
int dtls1_handshake_write(SSL *ssl);
|
1418
|
+
void dtls1_expect_flight(SSL *ssl);
|
1419
|
+
void dtls1_received_flight(SSL *ssl);
|
1420
|
+
|
1421
|
+
int dtls1_supports_cipher(const SSL_CIPHER *cipher);
|
1422
|
+
void dtls1_start_timer(SSL *ssl);
|
1423
|
+
void dtls1_stop_timer(SSL *ssl);
|
1424
|
+
int dtls1_is_timer_expired(SSL *ssl);
|
1425
|
+
void dtls1_double_timeout(SSL *ssl);
|
1426
|
+
unsigned int dtls1_min_mtu(void);
|
1427
|
+
|
1428
|
+
int dtls1_new(SSL *ssl);
|
1429
|
+
int dtls1_accept(SSL *ssl);
|
1430
|
+
int dtls1_connect(SSL *ssl);
|
1431
|
+
void dtls1_free(SSL *ssl);
|
1432
|
+
|
1433
|
+
int dtls1_get_message(SSL *ssl, int mt, enum ssl_hash_message_t hash_message);
|
1434
|
+
int dtls1_hash_current_message(SSL *ssl);
|
1435
|
+
void dtls1_release_current_message(SSL *ssl, int free_buffer);
|
1436
|
+
int dtls1_dispatch_alert(SSL *ssl);
|
1437
|
+
|
1438
|
+
/* ssl_is_wbio_buffered returns one if |ssl|'s write BIO is buffered and zero
|
1439
|
+
* otherwise. */
|
1440
|
+
int ssl_is_wbio_buffered(const SSL *ssl);
|
1441
|
+
|
1442
|
+
int ssl_init_wbio_buffer(SSL *ssl);
|
1443
|
+
void ssl_free_wbio_buffer(SSL *ssl);
|
1444
|
+
|
1445
|
+
int tls1_change_cipher_state(SSL *ssl, int which);
|
1446
|
+
int tls1_setup_key_block(SSL *ssl);
|
1447
|
+
int tls1_handshake_digest(SSL *ssl, uint8_t *out, size_t out_len);
|
1448
|
+
int tls1_generate_master_secret(SSL *ssl, uint8_t *out, const uint8_t *premaster,
|
1449
|
+
size_t premaster_len);
|
1450
|
+
|
1451
|
+
/* tls1_get_grouplist sets |*out_group_ids| and |*out_group_ids_len| to the
|
1452
|
+
* list of allowed group IDs. If |get_peer_groups| is non-zero, return the
|
1453
|
+
* peer's group list. Otherwise, return the preferred list. */
|
1454
|
+
void tls1_get_grouplist(SSL *ssl, int get_peer_groups,
|
1455
|
+
const uint16_t **out_group_ids,
|
1456
|
+
size_t *out_group_ids_len);
|
1457
|
+
|
1458
|
+
/* tls1_check_group_id returns one if |group_id| is consistent with both our
|
1459
|
+
* and the peer's group preferences. Note: if called as the client, only our
|
1460
|
+
* preferences are checked; the peer (the server) does not send preferences. */
|
1461
|
+
int tls1_check_group_id(SSL *ssl, uint16_t group_id);
|
1462
|
+
|
1463
|
+
/* tls1_get_shared_group sets |*out_group_id| to the first preferred shared
|
1464
|
+
* group between client and server preferences and returns one. If none may be
|
1465
|
+
* found, it returns zero. */
|
1466
|
+
int tls1_get_shared_group(SSL *ssl, uint16_t *out_group_id);
|
1467
|
+
|
1468
|
+
/* tls1_set_curves converts the array of |ncurves| NIDs pointed to by |curves|
|
1469
|
+
* into a newly allocated array of TLS group IDs. On success, the function
|
1470
|
+
* returns one and writes the array to |*out_group_ids| and its size to
|
1471
|
+
* |*out_group_ids_len|. Otherwise, it returns zero. */
|
1472
|
+
int tls1_set_curves(uint16_t **out_group_ids, size_t *out_group_ids_len,
|
1473
|
+
const int *curves, size_t ncurves);
|
1474
|
+
|
1475
|
+
/* tls1_check_ec_cert returns one if |x| is an ECC certificate with curve and
|
1476
|
+
* point format compatible with the client's preferences. Otherwise it returns
|
1477
|
+
* zero. */
|
1478
|
+
int tls1_check_ec_cert(SSL *ssl, X509 *x);
|
1479
|
+
|
1480
|
+
/* ssl_add_clienthello_tlsext writes ClientHello extensions to |out|. It
|
1481
|
+
* returns one on success and zero on failure. The |header_len| argument is the
|
1482
|
+
* length of the ClientHello written so far and is used to compute the padding
|
1483
|
+
* length. (It does not include the record header.) */
|
1484
|
+
int ssl_add_clienthello_tlsext(SSL *ssl, CBB *out, size_t header_len);
|
1485
|
+
|
1486
|
+
int ssl_add_serverhello_tlsext(SSL *ssl, CBB *out);
|
1487
|
+
int ssl_parse_clienthello_tlsext(
|
1488
|
+
SSL *ssl, const struct ssl_early_callback_ctx *client_hello);
|
1489
|
+
int ssl_parse_serverhello_tlsext(SSL *ssl, CBS *cbs);
|
1490
|
+
|
1491
|
+
#define tlsext_tick_md EVP_sha256
|
1492
|
+
|
1493
|
+
/* tls_process_ticket processes a session ticket from the client. On success,
|
1494
|
+
* it sets |*out_session| to the decrypted session or NULL if the ticket was
|
1495
|
+
* rejected. If the ticket was valid, it sets |*out_renew_ticket| to whether
|
1496
|
+
* the ticket should be renewed. It returns one on success and zero on fatal
|
1497
|
+
* error. */
|
1498
|
+
int tls_process_ticket(SSL *ssl, SSL_SESSION **out_session,
|
1499
|
+
int *out_renew_ticket, const uint8_t *ticket,
|
1500
|
+
size_t ticket_len, const uint8_t *session_id,
|
1501
|
+
size_t session_id_len);
|
1502
|
+
|
1503
|
+
/* tls1_channel_id_hash computes the hash to be signed by Channel ID and writes
|
1504
|
+
* it to |out|, which must contain at least |EVP_MAX_MD_SIZE| bytes. It returns
|
1505
|
+
* one on success and zero on failure. */
|
1506
|
+
int tls1_channel_id_hash(SSL *ssl, uint8_t *out, size_t *out_len);
|
1507
|
+
|
1508
|
+
int tls1_record_handshake_hashes_for_channel_id(SSL *ssl);
|
1509
|
+
|
1510
|
+
/* ssl3_can_false_start returns one if |ssl| is allowed to False Start and zero
|
1511
|
+
* otherwise. */
|
1512
|
+
int ssl3_can_false_start(const SSL *ssl);
|
1513
|
+
|
1514
|
+
/* ssl3_get_enc_method returns the SSL3_ENC_METHOD corresponding to
|
1515
|
+
* |version|. */
|
1516
|
+
const SSL3_ENC_METHOD *ssl3_get_enc_method(uint16_t version);
|
1517
|
+
|
1518
|
+
/* ssl_get_version_range sets |*out_min_version| and |*out_max_version| to the
|
1519
|
+
* minimum and maximum enabled protocol versions, respectively. */
|
1520
|
+
int ssl_get_version_range(const SSL *ssl, uint16_t *out_min_version,
|
1521
|
+
uint16_t *out_max_version);
|
1522
|
+
|
1523
|
+
/* ssl3_protocol_version returns |ssl|'s protocol version. It is an error to
|
1524
|
+
* call this function before the version is determined. */
|
1525
|
+
uint16_t ssl3_protocol_version(const SSL *ssl);
|
1526
|
+
|
1527
|
+
uint32_t ssl_get_algorithm_prf(const SSL *ssl);
|
1528
|
+
int tls1_parse_peer_sigalgs(SSL *ssl, const CBS *sigalgs);
|
1529
|
+
|
1530
|
+
/* tls1_choose_signature_algorithm sets |*out| to a signature algorithm for use
|
1531
|
+
* with |ssl|'s private key based on the peer's preferences and the digests
|
1532
|
+
* supported. It returns one on success and zero on error. */
|
1533
|
+
int tls1_choose_signature_algorithm(SSL *ssl, uint16_t *out);
|
1534
|
+
|
1535
|
+
size_t tls12_get_psigalgs(SSL *ssl, const uint16_t **psigs);
|
1536
|
+
|
1537
|
+
/* tls12_check_peer_sigalg checks that |signature_algorithm| is consistent with
|
1538
|
+
* |ssl|'s sent, supported signature algorithms and returns 1. Otherwise it
|
1539
|
+
* returns 0 and writes an alert into |*out_alert|. */
|
1540
|
+
int tls12_check_peer_sigalg(SSL *ssl, int *out_alert,
|
1541
|
+
uint16_t signature_algorithm);
|
1542
|
+
void ssl_set_client_disabled(SSL *ssl);
|
1543
|
+
|
1544
|
+
void ssl_get_current_time(const SSL *ssl, struct timeval *out_clock);
|
1545
|
+
|
1546
|
+
|
1547
|
+
#if defined(__cplusplus)
|
1548
|
+
} /* extern C */
|
1549
|
+
#endif
|
1550
|
+
|
1551
|
+
#endif /* OPENSSL_HEADER_SSL_INTERNAL_H */
|