variant_ssl/ssl/
mod.rs

1//! SSL/TLS support.
2//!
3//! `SslConnector` and `SslAcceptor` should be used in most cases - they handle
4//! configuration of the OpenSSL primitives for you.
5//!
6//! # Examples
7//!
8//! To connect as a client to a remote server:
9//!
10//! ```no_run
11//! use openssl::ssl::{SslMethod, SslConnector};
12//! use std::io::{Read, Write};
13//! use std::net::TcpStream;
14//!
15//! let connector = SslConnector::builder(SslMethod::tls()).unwrap().build();
16//!
17//! let stream = TcpStream::connect("google.com:443").unwrap();
18//! let mut stream = connector.connect("google.com", stream).unwrap();
19//!
20//! stream.write_all(b"GET / HTTP/1.0\r\n\r\n").unwrap();
21//! let mut res = vec![];
22//! stream.read_to_end(&mut res).unwrap();
23//! println!("{}", String::from_utf8_lossy(&res));
24//! ```
25//!
26//! To accept connections as a server from remote clients:
27//!
28//! ```no_run
29//! use openssl::ssl::{SslMethod, SslAcceptor, SslStream, SslFiletype};
30//! use std::net::{TcpListener, TcpStream};
31//! use std::sync::Arc;
32//! use std::thread;
33//!
34//!
35//! let mut acceptor = SslAcceptor::mozilla_intermediate(SslMethod::tls()).unwrap();
36//! acceptor.set_private_key_file("key.pem", SslFiletype::PEM).unwrap();
37//! acceptor.set_certificate_chain_file("certs.pem").unwrap();
38//! acceptor.check_private_key().unwrap();
39//! let acceptor = Arc::new(acceptor.build());
40//!
41//! let listener = TcpListener::bind("0.0.0.0:8443").unwrap();
42//!
43//! fn handle_client(stream: SslStream<TcpStream>) {
44//!     // ...
45//! }
46//!
47//! for stream in listener.incoming() {
48//!     match stream {
49//!         Ok(stream) => {
50//!             let acceptor = acceptor.clone();
51//!             thread::spawn(move || {
52//!                 let stream = acceptor.accept(stream).unwrap();
53//!                 handle_client(stream);
54//!             });
55//!         }
56//!         Err(e) => { /* connection failed */ }
57//!     }
58//! }
59//! ```
60use crate::cipher_ctx::CipherCtxRef;
61#[cfg(ossl300)]
62use crate::cvt_long;
63use crate::dh::{Dh, DhRef};
64use crate::ec::EcKeyRef;
65use crate::error::ErrorStack;
66use crate::ex_data::Index;
67#[cfg(ossl111)]
68use crate::hash::MessageDigest;
69use crate::hmac::HMacCtxRef;
70#[cfg(ossl300)]
71use crate::mac_ctx::MacCtxRef;
72#[cfg(any(ossl110, libressl270))]
73use crate::nid::Nid;
74use crate::pkey::{HasPrivate, PKeyRef, Params, Private};
75#[cfg(ossl300)]
76use crate::pkey::{PKey, Public};
77#[cfg(not(osslconf = "OPENSSL_NO_SRTP"))]
78use crate::srtp::{SrtpProtectionProfile, SrtpProtectionProfileRef};
79use crate::ssl::bio::BioMethod;
80use crate::ssl::callbacks::*;
81use crate::ssl::error::InnerError;
82use crate::stack::{Stack, StackRef, Stackable};
83use crate::util;
84use crate::util::{ForeignTypeExt, ForeignTypeRefExt};
85use crate::x509::store::{X509Store, X509StoreBuilderRef, X509StoreRef};
86#[cfg(any(ossl102, boringssl, libressl261, awslc))]
87use crate::x509::verify::X509VerifyParamRef;
88use crate::x509::{X509Name, X509Ref, X509StoreContextRef, X509VerifyResult, X509};
89use crate::{cvt, cvt_n, cvt_p, init};
90use bitflags::bitflags;
91use cfg_if::cfg_if;
92use foreign_types::{ForeignType, ForeignTypeRef, Opaque};
93use libc::{c_char, c_int, c_long, c_uchar, c_uint, c_void};
94use once_cell::sync::{Lazy, OnceCell};
95use openssl_macros::corresponds;
96use std::any::TypeId;
97use std::collections::HashMap;
98use std::ffi::{CStr, CString};
99use std::fmt;
100use std::io;
101use std::io::prelude::*;
102use std::marker::PhantomData;
103use std::mem::{self, ManuallyDrop, MaybeUninit};
104use std::ops::{Deref, DerefMut};
105use std::panic::resume_unwind;
106use std::path::Path;
107use std::ptr;
108use std::str;
109use std::sync::{Arc, Mutex};
110
111pub use crate::ssl::connector::{
112    ConnectConfiguration, SslAcceptor, SslAcceptorBuilder, SslConnector, SslConnectorBuilder,
113};
114pub use crate::ssl::error::{Error, ErrorCode, HandshakeError};
115
116mod bio;
117mod callbacks;
118#[cfg(any(boringssl, awslc))]
119mod client_hello;
120mod connector;
121mod error;
122#[cfg(test)]
123mod test;
124
125#[cfg(any(boringssl, awslc))]
126pub use client_hello::ClientHello;
127
128/// Returns the OpenSSL name of a cipher corresponding to an RFC-standard cipher name.
129///
130/// If the cipher has no corresponding OpenSSL name, the string `(NONE)` is returned.
131///
132/// Requires OpenSSL 1.1.1 or newer.
133#[corresponds(OPENSSL_cipher_name)]
134#[cfg(ossl111)]
135pub fn cipher_name(std_name: &str) -> &'static str {
136    unsafe {
137        ffi::init();
138
139        let s = CString::new(std_name).unwrap();
140        let ptr = ffi::OPENSSL_cipher_name(s.as_ptr());
141        CStr::from_ptr(ptr).to_str().unwrap()
142    }
143}
144
145cfg_if! {
146    if #[cfg(ossl300)] {
147        type SslOptionsRepr = u64;
148    } else if #[cfg(any(boringssl, awslc))] {
149        type SslOptionsRepr = u32;
150    } else {
151        type SslOptionsRepr = libc::c_ulong;
152    }
153}
154
155bitflags! {
156    /// Options controlling the behavior of an `SslContext`.
157    #[derive(Copy, Clone, Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
158    #[repr(transparent)]
159    pub struct SslOptions: SslOptionsRepr {
160        /// Disables a countermeasure against an SSLv3/TLSv1.0 vulnerability affecting CBC ciphers.
161        const DONT_INSERT_EMPTY_FRAGMENTS = ffi::SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS as SslOptionsRepr;
162
163        /// A "reasonable default" set of options which enables compatibility flags.
164        #[cfg(not(any(boringssl, awslc)))]
165        const ALL = ffi::SSL_OP_ALL as SslOptionsRepr;
166
167        /// Do not query the MTU.
168        ///
169        /// Only affects DTLS connections.
170        const NO_QUERY_MTU = ffi::SSL_OP_NO_QUERY_MTU as SslOptionsRepr;
171
172        /// Enables Cookie Exchange as described in [RFC 4347 Section 4.2.1].
173        ///
174        /// Only affects DTLS connections.
175        ///
176        /// [RFC 4347 Section 4.2.1]: https://tools.ietf.org/html/rfc4347#section-4.2.1
177        #[cfg(not(any(boringssl, awslc)))]
178        const COOKIE_EXCHANGE = ffi::SSL_OP_COOKIE_EXCHANGE as SslOptionsRepr;
179
180        /// Disables the use of session tickets for session resumption.
181        const NO_TICKET = ffi::SSL_OP_NO_TICKET as SslOptionsRepr;
182
183        /// Always start a new session when performing a renegotiation on the server side.
184        #[cfg(not(any(boringssl, awslc)))]
185        const NO_SESSION_RESUMPTION_ON_RENEGOTIATION =
186            ffi::SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION as SslOptionsRepr;
187
188        /// Disables the use of TLS compression.
189        #[cfg(not(any(boringssl, awslc)))]
190        const NO_COMPRESSION = ffi::SSL_OP_NO_COMPRESSION as SslOptionsRepr;
191
192        /// Allow legacy insecure renegotiation with servers or clients that do not support secure
193        /// renegotiation.
194        const ALLOW_UNSAFE_LEGACY_RENEGOTIATION =
195            ffi::SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION as SslOptionsRepr;
196
197        /// Creates a new key for each session when using ECDHE.
198        ///
199        /// This is always enabled in OpenSSL 1.1.0.
200        const SINGLE_ECDH_USE = ffi::SSL_OP_SINGLE_ECDH_USE as SslOptionsRepr;
201
202        /// Creates a new key for each session when using DHE.
203        ///
204        /// This is always enabled in OpenSSL 1.1.0.
205        const SINGLE_DH_USE = ffi::SSL_OP_SINGLE_DH_USE as SslOptionsRepr;
206
207        /// Use the server's preferences rather than the client's when selecting a cipher.
208        ///
209        /// This has no effect on the client side.
210        const CIPHER_SERVER_PREFERENCE = ffi::SSL_OP_CIPHER_SERVER_PREFERENCE as SslOptionsRepr;
211
212        /// Disables version rollback attach detection.
213        const TLS_ROLLBACK_BUG = ffi::SSL_OP_TLS_ROLLBACK_BUG as SslOptionsRepr;
214
215        /// Disables the use of SSLv2.
216        const NO_SSLV2 = ffi::SSL_OP_NO_SSLv2 as SslOptionsRepr;
217
218        /// Disables the use of SSLv3.
219        const NO_SSLV3 = ffi::SSL_OP_NO_SSLv3 as SslOptionsRepr;
220
221        /// Disables the use of TLSv1.0.
222        const NO_TLSV1 = ffi::SSL_OP_NO_TLSv1 as SslOptionsRepr;
223
224        /// Disables the use of TLSv1.1.
225        const NO_TLSV1_1 = ffi::SSL_OP_NO_TLSv1_1 as SslOptionsRepr;
226
227        /// Disables the use of TLSv1.2.
228        const NO_TLSV1_2 = ffi::SSL_OP_NO_TLSv1_2 as SslOptionsRepr;
229
230        /// Disables the use of TLSv1.3.
231        ///
232        /// Requires OpenSSL 1.1.1 or LibreSSL 3.4.0 or newer.
233        #[cfg(any(boringssl, ossl111, libressl340, awslc))]
234        const NO_TLSV1_3 = ffi::SSL_OP_NO_TLSv1_3 as SslOptionsRepr;
235
236        /// Disables the use of DTLSv1.0
237        ///
238        /// Requires OpenSSL 1.0.2 or LibreSSL 3.3.2 or newer.
239        #[cfg(any(boringssl, ossl102, ossl110, libressl332, awslc))]
240        const NO_DTLSV1 = ffi::SSL_OP_NO_DTLSv1 as SslOptionsRepr;
241
242        /// Disables the use of DTLSv1.2.
243        ///
244        /// Requires OpenSSL 1.0.2 or LibreSSL 3.3.2 or newer.
245        #[cfg(any(boringssl, ossl102, ossl110, libressl332, awslc))]
246        const NO_DTLSV1_2 = ffi::SSL_OP_NO_DTLSv1_2 as SslOptionsRepr;
247
248        /// Disables the use of all (D)TLS protocol versions.
249        ///
250        /// This can be used as a mask when whitelisting protocol versions.
251        ///
252        /// Requires OpenSSL 1.0.2 or newer.
253        ///
254        /// # Examples
255        ///
256        /// Only support TLSv1.2:
257        ///
258        /// ```rust
259        /// use openssl::ssl::SslOptions;
260        ///
261        /// let options = SslOptions::NO_SSL_MASK & !SslOptions::NO_TLSV1_2;
262        /// ```
263        #[cfg(any(ossl102, ossl110))]
264        const NO_SSL_MASK = ffi::SSL_OP_NO_SSL_MASK as SslOptionsRepr;
265
266        /// Disallow all renegotiation in TLSv1.2 and earlier.
267        ///
268        /// Requires OpenSSL 1.1.0h or newer.
269        #[cfg(any(boringssl, ossl110h, awslc))]
270        const NO_RENEGOTIATION = ffi::SSL_OP_NO_RENEGOTIATION as SslOptionsRepr;
271
272        /// Enable TLSv1.3 Compatibility mode.
273        ///
274        /// Requires OpenSSL 1.1.1 or newer. This is on by default in 1.1.1, but a future version
275        /// may have this disabled by default.
276        #[cfg(ossl111)]
277        const ENABLE_MIDDLEBOX_COMPAT = ffi::SSL_OP_ENABLE_MIDDLEBOX_COMPAT as SslOptionsRepr;
278
279        /// Prioritize ChaCha ciphers when preferred by clients.
280        ///
281        /// Temporarily reprioritize ChaCha20-Poly1305 ciphers to the top of the server cipher list
282        /// if a ChaCha20-Poly1305 cipher is at the top of the client cipher list. This helps those
283        /// clients (e.g. mobile) use ChaCha20-Poly1305 if that cipher is anywhere in the server
284        /// cipher list; but still allows other clients to use AES and other ciphers.
285        ///
286        /// Requires enable [`SslOptions::CIPHER_SERVER_PREFERENCE`].
287        /// Requires OpenSSL 1.1.1 or newer.
288        ///
289        /// [`SslOptions::CIPHER_SERVER_PREFERENCE`]: struct.SslOptions.html#associatedconstant.CIPHER_SERVER_PREFERENCE
290        #[cfg(ossl111)]
291        const PRIORITIZE_CHACHA = ffi::SSL_OP_PRIORITIZE_CHACHA as SslOptionsRepr;
292    }
293}
294
295bitflags! {
296    /// Options controlling the behavior of an `SslContext`.
297    #[derive(Copy, Clone, Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
298    #[repr(transparent)]
299    pub struct SslMode: SslBitType {
300        /// Enables "short writes".
301        ///
302        /// Normally, a write in OpenSSL will always write out all of the requested data, even if it
303        /// requires more than one TLS record or write to the underlying stream. This option will
304        /// cause a write to return after writing a single TLS record instead.
305        const ENABLE_PARTIAL_WRITE = ffi::SSL_MODE_ENABLE_PARTIAL_WRITE;
306
307        /// Disables a check that the data buffer has not moved between calls when operating in a
308        /// non-blocking context.
309        const ACCEPT_MOVING_WRITE_BUFFER = ffi::SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER;
310
311        /// Enables automatic retries after TLS session events such as renegotiations or heartbeats.
312        ///
313        /// By default, OpenSSL will return a `WantRead` error after a renegotiation or heartbeat.
314        /// This option will cause OpenSSL to automatically continue processing the requested
315        /// operation instead.
316        ///
317        /// Note that `SslStream::read` and `SslStream::write` will automatically retry regardless
318        /// of the state of this option. It only affects `SslStream::ssl_read` and
319        /// `SslStream::ssl_write`.
320        const AUTO_RETRY = ffi::SSL_MODE_AUTO_RETRY;
321
322        /// Disables automatic chain building when verifying a peer's certificate.
323        ///
324        /// TLS peers are responsible for sending the entire certificate chain from the leaf to a
325        /// trusted root, but some will incorrectly not do so. OpenSSL will try to build the chain
326        /// out of certificates it knows of, and this option will disable that behavior.
327        const NO_AUTO_CHAIN = ffi::SSL_MODE_NO_AUTO_CHAIN;
328
329        /// Release memory buffers when the session does not need them.
330        ///
331        /// This saves ~34 KiB of memory for idle streams.
332        const RELEASE_BUFFERS = ffi::SSL_MODE_RELEASE_BUFFERS;
333
334        /// Sends the fake `TLS_FALLBACK_SCSV` cipher suite in the ClientHello message of a
335        /// handshake.
336        ///
337        /// This should only be enabled if a client has failed to connect to a server which
338        /// attempted to downgrade the protocol version of the session.
339        ///
340        /// Do not use this unless you know what you're doing!
341        #[cfg(not(libressl))]
342        const SEND_FALLBACK_SCSV = ffi::SSL_MODE_SEND_FALLBACK_SCSV;
343
344        /// Enable asynchronous processing.
345        ///
346        /// TLS I/O operations may indicate a retry with SSL_ERROR_WANT_ASYNC with this mode set
347        /// if an asynchronous capable engine is used to perform cryptographic operations.
348        ///
349        /// Do not use this unless you know what you're doing!
350        #[cfg(ossl110)]
351        const ASYNC = ffi::SSL_MODE_ASYNC;
352    }
353}
354
355/// A type specifying the kind of protocol an `SslContext` will speak.
356#[derive(Copy, Clone)]
357pub struct SslMethod(*const ffi::SSL_METHOD);
358
359impl SslMethod {
360    /// Support all versions of the TLS protocol.
361    #[corresponds(TLS_method)]
362    pub fn tls() -> SslMethod {
363        unsafe { SslMethod(TLS_method()) }
364    }
365
366    /// Support all versions of the DTLS protocol.
367    #[corresponds(DTLS_method)]
368    pub fn dtls() -> SslMethod {
369        unsafe { SslMethod(DTLS_method()) }
370    }
371
372    /// Support all versions of the TLS protocol, explicitly as a client.
373    #[corresponds(TLS_client_method)]
374    pub fn tls_client() -> SslMethod {
375        unsafe { SslMethod(TLS_client_method()) }
376    }
377
378    /// Support all versions of the TLS protocol, explicitly as a server.
379    #[corresponds(TLS_server_method)]
380    pub fn tls_server() -> SslMethod {
381        unsafe { SslMethod(TLS_server_method()) }
382    }
383
384    #[cfg(tongsuo)]
385    #[corresponds(NTLS_client_method)]
386    pub fn ntls_client() -> SslMethod {
387        unsafe { SslMethod(ffi::NTLS_client_method()) }
388    }
389
390    #[cfg(tongsuo)]
391    #[corresponds(NTLS_server_method)]
392    pub fn ntls_server() -> SslMethod {
393        unsafe { SslMethod(ffi::NTLS_server_method()) }
394    }
395
396    /// Support all versions of the DTLS protocol, explicitly as a client.
397    #[corresponds(DTLS_client_method)]
398    #[cfg(any(boringssl, ossl110, libressl291, awslc))]
399    pub fn dtls_client() -> SslMethod {
400        unsafe { SslMethod(DTLS_client_method()) }
401    }
402
403    /// Support all versions of the DTLS protocol, explicitly as a server.
404    #[corresponds(DTLS_server_method)]
405    #[cfg(any(boringssl, ossl110, libressl291, awslc))]
406    pub fn dtls_server() -> SslMethod {
407        unsafe { SslMethod(DTLS_server_method()) }
408    }
409
410    /// Constructs an `SslMethod` from a pointer to the underlying OpenSSL value.
411    ///
412    /// # Safety
413    ///
414    /// The caller must ensure the pointer is valid.
415    pub unsafe fn from_ptr(ptr: *const ffi::SSL_METHOD) -> SslMethod {
416        SslMethod(ptr)
417    }
418
419    /// Returns a pointer to the underlying OpenSSL value.
420    #[allow(clippy::trivially_copy_pass_by_ref)]
421    pub fn as_ptr(&self) -> *const ffi::SSL_METHOD {
422        self.0
423    }
424}
425
426unsafe impl Sync for SslMethod {}
427unsafe impl Send for SslMethod {}
428
429bitflags! {
430    /// Options controlling the behavior of certificate verification.
431    #[derive(Copy, Clone, Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
432    #[repr(transparent)]
433    pub struct SslVerifyMode: i32 {
434        /// Verifies that the peer's certificate is trusted.
435        ///
436        /// On the server side, this will cause OpenSSL to request a certificate from the client.
437        const PEER = ffi::SSL_VERIFY_PEER;
438
439        /// Disables verification of the peer's certificate.
440        ///
441        /// On the server side, this will cause OpenSSL to not request a certificate from the
442        /// client. On the client side, the certificate will be checked for validity, but the
443        /// negotiation will continue regardless of the result of that check.
444        const NONE = ffi::SSL_VERIFY_NONE;
445
446        /// On the server side, abort the handshake if the client did not send a certificate.
447        ///
448        /// This should be paired with `SSL_VERIFY_PEER`. It has no effect on the client side.
449        const FAIL_IF_NO_PEER_CERT = ffi::SSL_VERIFY_FAIL_IF_NO_PEER_CERT;
450    }
451}
452
453#[cfg(any(boringssl, awslc))]
454type SslBitType = c_int;
455#[cfg(not(any(boringssl, awslc)))]
456type SslBitType = c_long;
457
458#[cfg(any(boringssl, awslc))]
459type SslTimeTy = u64;
460#[cfg(not(any(boringssl, awslc)))]
461type SslTimeTy = c_long;
462
463bitflags! {
464    /// Options controlling the behavior of session caching.
465    #[derive(Copy, Clone, Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
466    #[repr(transparent)]
467    pub struct SslSessionCacheMode: SslBitType {
468        /// No session caching for the client or server takes place.
469        const OFF = ffi::SSL_SESS_CACHE_OFF;
470
471        /// Enable session caching on the client side.
472        ///
473        /// OpenSSL has no way of identifying the proper session to reuse automatically, so the
474        /// application is responsible for setting it explicitly via [`SslRef::set_session`].
475        ///
476        /// [`SslRef::set_session`]: struct.SslRef.html#method.set_session
477        const CLIENT = ffi::SSL_SESS_CACHE_CLIENT;
478
479        /// Enable session caching on the server side.
480        ///
481        /// This is the default mode.
482        const SERVER = ffi::SSL_SESS_CACHE_SERVER;
483
484        /// Enable session caching on both the client and server side.
485        const BOTH = ffi::SSL_SESS_CACHE_BOTH;
486
487        /// Disable automatic removal of expired sessions from the session cache.
488        const NO_AUTO_CLEAR = ffi::SSL_SESS_CACHE_NO_AUTO_CLEAR;
489
490        /// Disable use of the internal session cache for session lookups.
491        const NO_INTERNAL_LOOKUP = ffi::SSL_SESS_CACHE_NO_INTERNAL_LOOKUP;
492
493        /// Disable use of the internal session cache for session storage.
494        const NO_INTERNAL_STORE = ffi::SSL_SESS_CACHE_NO_INTERNAL_STORE;
495
496        /// Disable use of the internal session cache for storage and lookup.
497        const NO_INTERNAL = ffi::SSL_SESS_CACHE_NO_INTERNAL;
498    }
499}
500
501#[cfg(ossl111)]
502bitflags! {
503    /// Which messages and under which conditions an extension should be added or expected.
504    #[derive(Copy, Clone, Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
505    #[repr(transparent)]
506    pub struct ExtensionContext: c_uint {
507        /// This extension is only allowed in TLS
508        const TLS_ONLY = ffi::SSL_EXT_TLS_ONLY;
509        /// This extension is only allowed in DTLS
510        const DTLS_ONLY = ffi::SSL_EXT_DTLS_ONLY;
511        /// Some extensions may be allowed in DTLS but we don't implement them for it
512        const TLS_IMPLEMENTATION_ONLY = ffi::SSL_EXT_TLS_IMPLEMENTATION_ONLY;
513        /// Most extensions are not defined for SSLv3 but EXT_TYPE_renegotiate is
514        const SSL3_ALLOWED = ffi::SSL_EXT_SSL3_ALLOWED;
515        /// Extension is only defined for TLS1.2 and below
516        const TLS1_2_AND_BELOW_ONLY = ffi::SSL_EXT_TLS1_2_AND_BELOW_ONLY;
517        /// Extension is only defined for TLS1.3 and above
518        const TLS1_3_ONLY = ffi::SSL_EXT_TLS1_3_ONLY;
519        /// Ignore this extension during parsing if we are resuming
520        const IGNORE_ON_RESUMPTION = ffi::SSL_EXT_IGNORE_ON_RESUMPTION;
521        const CLIENT_HELLO = ffi::SSL_EXT_CLIENT_HELLO;
522        /// Really means TLS1.2 or below
523        const TLS1_2_SERVER_HELLO = ffi::SSL_EXT_TLS1_2_SERVER_HELLO;
524        const TLS1_3_SERVER_HELLO = ffi::SSL_EXT_TLS1_3_SERVER_HELLO;
525        const TLS1_3_ENCRYPTED_EXTENSIONS = ffi::SSL_EXT_TLS1_3_ENCRYPTED_EXTENSIONS;
526        const TLS1_3_HELLO_RETRY_REQUEST = ffi::SSL_EXT_TLS1_3_HELLO_RETRY_REQUEST;
527        const TLS1_3_CERTIFICATE = ffi::SSL_EXT_TLS1_3_CERTIFICATE;
528        const TLS1_3_NEW_SESSION_TICKET = ffi::SSL_EXT_TLS1_3_NEW_SESSION_TICKET;
529        const TLS1_3_CERTIFICATE_REQUEST = ffi::SSL_EXT_TLS1_3_CERTIFICATE_REQUEST;
530    }
531}
532
533/// TLS Extension Type
534#[derive(Copy, Clone)]
535pub struct TlsExtType(c_uint);
536
537impl TlsExtType {
538    /// server name.
539    ///
540    /// This corresponds to `TLSEXT_TYPE_server_name`.
541    pub const SERVER_NAME: TlsExtType = TlsExtType(ffi::TLSEXT_TYPE_server_name as _);
542
543    /// application layer protocol negotiation.
544    ///
545    /// This corresponds to `TLSEXT_TYPE_application_layer_protocol_negotiation`.
546    pub const ALPN: TlsExtType =
547        TlsExtType(ffi::TLSEXT_TYPE_application_layer_protocol_negotiation as _);
548
549    /// Constructs an `TlsExtType` from a raw value.
550    pub fn from_raw(raw: c_uint) -> TlsExtType {
551        TlsExtType(raw)
552    }
553
554    /// Returns the raw value represented by this type.
555    #[allow(clippy::trivially_copy_pass_by_ref)]
556    pub fn as_raw(&self) -> c_uint {
557        self.0
558    }
559}
560
561/// An identifier of the format of a certificate or key file.
562#[derive(Copy, Clone)]
563pub struct SslFiletype(c_int);
564
565impl SslFiletype {
566    /// The PEM format.
567    ///
568    /// This corresponds to `SSL_FILETYPE_PEM`.
569    pub const PEM: SslFiletype = SslFiletype(ffi::SSL_FILETYPE_PEM);
570
571    /// The ASN1 format.
572    ///
573    /// This corresponds to `SSL_FILETYPE_ASN1`.
574    pub const ASN1: SslFiletype = SslFiletype(ffi::SSL_FILETYPE_ASN1);
575
576    /// Constructs an `SslFiletype` from a raw OpenSSL value.
577    pub fn from_raw(raw: c_int) -> SslFiletype {
578        SslFiletype(raw)
579    }
580
581    /// Returns the raw OpenSSL value represented by this type.
582    #[allow(clippy::trivially_copy_pass_by_ref)]
583    pub fn as_raw(&self) -> c_int {
584        self.0
585    }
586}
587
588/// An identifier of a certificate status type.
589#[derive(Copy, Clone)]
590pub struct StatusType(c_int);
591
592impl StatusType {
593    /// An OSCP status.
594    pub const OCSP: StatusType = StatusType(ffi::TLSEXT_STATUSTYPE_ocsp);
595
596    /// Constructs a `StatusType` from a raw OpenSSL value.
597    pub fn from_raw(raw: c_int) -> StatusType {
598        StatusType(raw)
599    }
600
601    /// Returns the raw OpenSSL value represented by this type.
602    #[allow(clippy::trivially_copy_pass_by_ref)]
603    pub fn as_raw(&self) -> c_int {
604        self.0
605    }
606}
607
608/// An identifier of a session name type.
609#[derive(Copy, Clone)]
610pub struct NameType(c_int);
611
612impl NameType {
613    /// A host name.
614    pub const HOST_NAME: NameType = NameType(ffi::TLSEXT_NAMETYPE_host_name);
615
616    /// Constructs a `StatusType` from a raw OpenSSL value.
617    pub fn from_raw(raw: c_int) -> StatusType {
618        StatusType(raw)
619    }
620
621    /// Returns the raw OpenSSL value represented by this type.
622    #[allow(clippy::trivially_copy_pass_by_ref)]
623    pub fn as_raw(&self) -> c_int {
624        self.0
625    }
626}
627
628static INDEXES: Lazy<Mutex<HashMap<TypeId, c_int>>> = Lazy::new(|| Mutex::new(HashMap::new()));
629static SSL_INDEXES: Lazy<Mutex<HashMap<TypeId, c_int>>> = Lazy::new(|| Mutex::new(HashMap::new()));
630static SESSION_CTX_INDEX: OnceCell<Index<Ssl, SslContext>> = OnceCell::new();
631
632fn try_get_session_ctx_index() -> Result<&'static Index<Ssl, SslContext>, ErrorStack> {
633    SESSION_CTX_INDEX.get_or_try_init(Ssl::new_ex_index)
634}
635
636unsafe extern "C" fn free_data_box<T>(
637    _parent: *mut c_void,
638    ptr: *mut c_void,
639    _ad: *mut ffi::CRYPTO_EX_DATA,
640    _idx: c_int,
641    _argl: c_long,
642    _argp: *mut c_void,
643) {
644    if !ptr.is_null() {
645        let _ = Box::<T>::from_raw(ptr as *mut T);
646    }
647}
648
649/// An error returned from the SNI callback.
650#[derive(Debug, Copy, Clone, PartialEq, Eq)]
651pub struct SniError(c_int);
652
653impl SniError {
654    /// Abort the handshake with a fatal alert.
655    pub const ALERT_FATAL: SniError = SniError(ffi::SSL_TLSEXT_ERR_ALERT_FATAL);
656
657    /// Send a warning alert to the client and continue the handshake.
658    pub const ALERT_WARNING: SniError = SniError(ffi::SSL_TLSEXT_ERR_ALERT_WARNING);
659
660    pub const NOACK: SniError = SniError(ffi::SSL_TLSEXT_ERR_NOACK);
661}
662
663/// An SSL/TLS alert.
664#[derive(Debug, Copy, Clone, PartialEq, Eq)]
665pub struct SslAlert(c_int);
666
667impl SslAlert {
668    /// Alert 112 - `unrecognized_name`.
669    pub const UNRECOGNIZED_NAME: SslAlert = SslAlert(ffi::SSL_AD_UNRECOGNIZED_NAME);
670    pub const ILLEGAL_PARAMETER: SslAlert = SslAlert(ffi::SSL_AD_ILLEGAL_PARAMETER);
671    pub const DECODE_ERROR: SslAlert = SslAlert(ffi::SSL_AD_DECODE_ERROR);
672    pub const NO_APPLICATION_PROTOCOL: SslAlert = SslAlert(ffi::SSL_AD_NO_APPLICATION_PROTOCOL);
673}
674
675/// An error returned from an ALPN selection callback.
676#[derive(Debug, Copy, Clone, PartialEq, Eq)]
677pub struct AlpnError(c_int);
678
679impl AlpnError {
680    /// Terminate the handshake with a fatal alert.
681    pub const ALERT_FATAL: AlpnError = AlpnError(ffi::SSL_TLSEXT_ERR_ALERT_FATAL);
682
683    /// Do not select a protocol, but continue the handshake.
684    pub const NOACK: AlpnError = AlpnError(ffi::SSL_TLSEXT_ERR_NOACK);
685}
686
687/// An error returned from a client hello callback.
688///
689/// Requires OpenSSL 1.1.1 or newer.
690#[cfg(ossl111)]
691#[derive(Debug, Copy, Clone, PartialEq, Eq)]
692pub struct ClientHelloError(c_int);
693
694#[cfg(ossl111)]
695impl ClientHelloError {
696    /// Terminate the connection.
697    pub const ERROR: ClientHelloError = ClientHelloError(ffi::SSL_CLIENT_HELLO_ERROR);
698
699    /// Return from the handshake with an `ErrorCode::WANT_CLIENT_HELLO_CB` error.
700    pub const RETRY: ClientHelloError = ClientHelloError(ffi::SSL_CLIENT_HELLO_RETRY);
701}
702
703/// Session Ticket Key CB result type
704#[derive(Debug, Copy, Clone, PartialEq, Eq)]
705pub struct TicketKeyStatus(c_int);
706
707impl TicketKeyStatus {
708    /// Session Ticket Key is not set/retrieved for current session
709    pub const FAILED: TicketKeyStatus = TicketKeyStatus(0);
710    /// Session Ticket Key is set, and no renew is needed
711    pub const SUCCESS: TicketKeyStatus = TicketKeyStatus(1);
712    /// Session Ticket Key is set, and a new ticket will be needed
713    pub const SUCCESS_AND_RENEW: TicketKeyStatus = TicketKeyStatus(2);
714}
715
716/// An error returned from a certificate selection callback.
717#[derive(Debug, Copy, Clone, PartialEq, Eq)]
718#[cfg(any(boringssl, awslc))]
719pub struct SelectCertError(ffi::ssl_select_cert_result_t);
720
721#[cfg(any(boringssl, awslc))]
722impl SelectCertError {
723    /// A fatal error occurred and the handshake should be terminated.
724    pub const ERROR: Self = Self(ffi::ssl_select_cert_result_t_ssl_select_cert_error);
725
726    /// The operation could not be completed and should be retried later.
727    pub const RETRY: Self = Self(ffi::ssl_select_cert_result_t_ssl_select_cert_retry);
728
729    /// Although an encrypted ClientHelloInner was decrypted, it should be discarded.
730    /// The certificate selection callback will then be called again, passing in the
731    /// ClientHelloOuter instead. From there, the handshake will proceed
732    /// without retry_configs, to signal to the client to disable ECH.
733    /// This value may only be returned when |SSL_ech_accepted| returnes one.
734    #[cfg(boringssl)]
735    pub const DISABLE_ECH: Self = Self(ffi::ssl_select_cert_result_t_ssl_select_cert_disable_ech);
736}
737
738/// SSL CT validation mode.
739#[cfg(ossl111)]
740#[derive(Debug, Copy, Clone, PartialEq, Eq)]
741pub struct SslCtValidationMode(c_int);
742
743#[cfg(ossl111)]
744impl SslCtValidationMode {
745    pub const PERMISSIVE: SslCtValidationMode =
746        SslCtValidationMode(ffi::SSL_CT_VALIDATION_PERMISSIVE as c_int);
747    pub const STRICT: SslCtValidationMode =
748        SslCtValidationMode(ffi::SSL_CT_VALIDATION_STRICT as c_int);
749}
750
751/// TLS Certificate Compression Algorithm IDs, defined by IANA
752#[derive(Debug, Copy, Clone, PartialEq, Eq)]
753pub struct CertCompressionAlgorithm(c_int);
754
755impl CertCompressionAlgorithm {
756    pub const ZLIB: CertCompressionAlgorithm = CertCompressionAlgorithm(1);
757    pub const BROTLI: CertCompressionAlgorithm = CertCompressionAlgorithm(2);
758    pub const ZSTD: CertCompressionAlgorithm = CertCompressionAlgorithm(3);
759}
760
761/// An SSL/TLS protocol version.
762#[derive(Debug, Copy, Clone, PartialEq, Eq)]
763pub struct SslVersion(c_int);
764
765impl SslVersion {
766    /// SSLv3
767    pub const SSL3: SslVersion = SslVersion(ffi::SSL3_VERSION);
768
769    /// TLSv1.0
770    pub const TLS1: SslVersion = SslVersion(ffi::TLS1_VERSION);
771
772    /// TLSv1.1
773    pub const TLS1_1: SslVersion = SslVersion(ffi::TLS1_1_VERSION);
774
775    /// TLSv1.2
776    pub const TLS1_2: SslVersion = SslVersion(ffi::TLS1_2_VERSION);
777
778    /// TLSv1.3
779    ///
780    /// Requires AWS-LC or BoringSSL or OpenSSL 1.1.1 or LibreSSL 3.4.0 or newer.
781    #[cfg(any(ossl111, libressl340, boringssl, awslc))]
782    pub const TLS1_3: SslVersion = SslVersion(ffi::TLS1_3_VERSION);
783
784    #[cfg(tongsuo)]
785    pub const NTLS1_1: SslVersion = SslVersion(ffi::NTLS1_1_VERSION);
786
787    /// DTLSv1.0
788    ///
789    /// DTLS 1.0 corresponds to TLS 1.1.
790    pub const DTLS1: SslVersion = SslVersion(ffi::DTLS1_VERSION);
791
792    /// DTLSv1.2
793    ///
794    /// DTLS 1.2 corresponds to TLS 1.2 to harmonize versions. There was never a DTLS 1.1.
795    #[cfg(any(ossl102, libressl332, boringssl, awslc))]
796    pub const DTLS1_2: SslVersion = SslVersion(ffi::DTLS1_2_VERSION);
797}
798
799cfg_if! {
800    if #[cfg(any(boringssl, awslc))] {
801        type SslCacheTy = i64;
802        type SslCacheSize = libc::c_ulong;
803        type MtuTy = u32;
804        type ModeTy = u32;
805        type SizeTy = usize;
806    } else {
807        type SslCacheTy = i64;
808        type SslCacheSize = c_long;
809        type MtuTy = c_long;
810        type ModeTy = c_long;
811        type SizeTy = u32;
812    }
813}
814
815/// A standard implementation of protocol selection for Application Layer Protocol Negotiation
816/// (ALPN).
817///
818/// `server` should contain the server's list of supported protocols and `client` the client's. They
819/// must both be in the ALPN wire format. See the documentation for
820/// [`SslContextBuilder::set_alpn_protos`] for details.
821///
822/// It will select the first protocol supported by the server which is also supported by the client.
823///
824/// [`SslContextBuilder::set_alpn_protos`]: struct.SslContextBuilder.html#method.set_alpn_protos
825#[corresponds(SSL_select_next_proto)]
826pub fn select_next_proto<'a>(server: &'a [u8], client: &'a [u8]) -> Option<&'a [u8]> {
827    unsafe {
828        let mut out = ptr::null_mut();
829        let mut outlen = 0;
830        let r = ffi::SSL_select_next_proto(
831            &mut out,
832            &mut outlen,
833            server.as_ptr(),
834            server.len() as c_uint,
835            client.as_ptr(),
836            client.len() as c_uint,
837        );
838        if r == ffi::OPENSSL_NPN_NEGOTIATED {
839            Some(util::from_raw_parts(out as *const u8, outlen as usize))
840        } else {
841            None
842        }
843    }
844}
845
846/// A builder for `SslContext`s.
847pub struct SslContextBuilder(SslContext);
848
849impl SslContextBuilder {
850    /// Creates a new `SslContextBuilder`.
851    #[corresponds(SSL_CTX_new)]
852    pub fn new(method: SslMethod) -> Result<SslContextBuilder, ErrorStack> {
853        unsafe {
854            init();
855            let ctx = cvt_p(ffi::SSL_CTX_new(method.as_ptr()))?;
856
857            Ok(SslContextBuilder::from_ptr(ctx))
858        }
859    }
860
861    /// Creates an `SslContextBuilder` from a pointer to a raw OpenSSL value.
862    ///
863    /// # Safety
864    ///
865    /// The caller must ensure that the pointer is valid and uniquely owned by the builder.
866    pub unsafe fn from_ptr(ctx: *mut ffi::SSL_CTX) -> SslContextBuilder {
867        SslContextBuilder(SslContext::from_ptr(ctx))
868    }
869
870    /// Returns a pointer to the raw OpenSSL value.
871    pub fn as_ptr(&self) -> *mut ffi::SSL_CTX {
872        self.0.as_ptr()
873    }
874
875    #[cfg(tongsuo)]
876    #[corresponds(SSL_CTX_enable_ntls)]
877    pub fn enable_ntls(&mut self) {
878        unsafe { ffi::SSL_CTX_enable_ntls(self.as_ptr()) }
879    }
880
881    #[cfg(tongsuo)]
882    #[corresponds(SSL_CTX_disable_ntls)]
883    pub fn disable_ntls(&mut self) {
884        unsafe { ffi::SSL_CTX_disable_ntls(self.as_ptr()) }
885    }
886
887    #[cfg(all(tongsuo, ossl300))]
888    #[corresponds(SSL_CTX_enable_force_ntls)]
889    pub fn enable_force_ntls(&mut self) {
890        unsafe { ffi::SSL_CTX_enable_force_ntls(self.as_ptr()) }
891    }
892
893    #[cfg(all(tongsuo, ossl300))]
894    #[corresponds(SSL_CTX_disable_force_ntls)]
895    pub fn disable_force_ntls(&mut self) {
896        unsafe { ffi::SSL_CTX_disable_force_ntls(self.as_ptr()) }
897    }
898
899    #[cfg(tongsuo)]
900    #[corresponds(SSL_CTX_enable_sm_tls13_strict)]
901    pub fn enable_sm_tls13_strict(&mut self) {
902        unsafe { ffi::SSL_CTX_enable_sm_tls13_strict(self.as_ptr()) }
903    }
904
905    #[cfg(tongsuo)]
906    #[corresponds(SSL_CTX_disable_sm_tls13_strict)]
907    pub fn disable_sm_tls13_strict(&mut self) {
908        unsafe { ffi::SSL_CTX_disable_sm_tls13_strict(self.as_ptr()) }
909    }
910
911    /// Configures the certificate verification method for new connections.
912    #[corresponds(SSL_CTX_set_verify)]
913    pub fn set_verify(&mut self, mode: SslVerifyMode) {
914        unsafe {
915            ffi::SSL_CTX_set_verify(self.as_ptr(), mode.bits() as c_int, None);
916        }
917    }
918
919    /// Configures the certificate verification method for new connections and
920    /// registers a verification callback.
921    ///
922    /// The callback is passed a boolean indicating if OpenSSL's internal verification succeeded as
923    /// well as a reference to the `X509StoreContext` which can be used to examine the certificate
924    /// chain. It should return a boolean indicating if verification succeeded.
925    #[corresponds(SSL_CTX_set_verify)]
926    pub fn set_verify_callback<F>(&mut self, mode: SslVerifyMode, verify: F)
927    where
928        F: Fn(bool, &mut X509StoreContextRef) -> bool + 'static + Sync + Send,
929    {
930        unsafe {
931            self.set_ex_data(SslContext::cached_ex_index::<F>(), verify);
932            ffi::SSL_CTX_set_verify(self.as_ptr(), mode.bits() as c_int, Some(raw_verify::<F>));
933        }
934    }
935
936    /// Configures the server name indication (SNI) callback for new connections.
937    ///
938    /// SNI is used to allow a single server to handle requests for multiple domains, each of which
939    /// has its own certificate chain and configuration.
940    ///
941    /// Obtain the server name with the `servername` method and then set the corresponding context
942    /// with `set_ssl_context`
943    #[corresponds(SSL_CTX_set_tlsext_servername_callback)]
944    // FIXME tlsext prefix?
945    pub fn set_servername_callback<F>(&mut self, callback: F)
946    where
947        F: Fn(&mut SslRef, &mut SslAlert) -> Result<(), SniError> + 'static + Sync + Send,
948    {
949        unsafe {
950            // The SNI callback is somewhat unique in that the callback associated with the original
951            // context associated with an SSL can be used even if the SSL's context has been swapped
952            // out. When that happens, we wouldn't be able to look up the callback's state in the
953            // context's ex data. Instead, pass the pointer directly as the servername arg. It's
954            // still stored in ex data to manage the lifetime.
955            let arg = self.set_ex_data_inner(SslContext::cached_ex_index::<F>(), callback);
956            ffi::SSL_CTX_set_tlsext_servername_arg(self.as_ptr(), arg);
957            ffi::SSL_CTX_set_tlsext_servername_callback(self.as_ptr(), Some(raw_sni::<F>));
958        }
959    }
960
961    /// Sets the certificate verification depth.
962    ///
963    /// If the peer's certificate chain is longer than this value, verification will fail.
964    #[corresponds(SSL_CTX_set_verify_depth)]
965    pub fn set_verify_depth(&mut self, depth: u32) {
966        unsafe {
967            ffi::SSL_CTX_set_verify_depth(self.as_ptr(), depth as c_int);
968        }
969    }
970
971    /// Sets a custom certificate store for verifying peer certificates.
972    ///
973    /// Requires AWS-LC or OpenSSL 1.0.2 or newer.
974    #[corresponds(SSL_CTX_set0_verify_cert_store)]
975    #[cfg(any(ossl102, boringssl, awslc))]
976    pub fn set_verify_cert_store(&mut self, cert_store: X509Store) -> Result<(), ErrorStack> {
977        unsafe {
978            let ptr = cert_store.as_ptr();
979            cvt(ffi::SSL_CTX_set0_verify_cert_store(self.as_ptr(), ptr) as c_int)?;
980            mem::forget(cert_store);
981
982            Ok(())
983        }
984    }
985
986    /// Replaces the context's certificate store.
987    #[corresponds(SSL_CTX_set_cert_store)]
988    pub fn set_cert_store(&mut self, cert_store: X509Store) {
989        unsafe {
990            ffi::SSL_CTX_set_cert_store(self.as_ptr(), cert_store.as_ptr());
991            mem::forget(cert_store);
992        }
993    }
994
995    /// Controls read ahead behavior.
996    ///
997    /// If enabled, OpenSSL will read as much data as is available from the underlying stream,
998    /// instead of a single record at a time.
999    ///
1000    /// It has no effect when used with DTLS.
1001    #[corresponds(SSL_CTX_set_read_ahead)]
1002    pub fn set_read_ahead(&mut self, read_ahead: bool) {
1003        unsafe {
1004            ffi::SSL_CTX_set_read_ahead(self.as_ptr(), read_ahead as SslBitType);
1005        }
1006    }
1007
1008    /// Sets the mode used by the context, returning the new mode bit mask.
1009    ///
1010    /// Options already set before are not cleared.
1011    #[corresponds(SSL_CTX_set_mode)]
1012    pub fn set_mode(&mut self, mode: SslMode) -> SslMode {
1013        unsafe {
1014            let bits = ffi::SSL_CTX_set_mode(self.as_ptr(), mode.bits() as ModeTy) as SslBitType;
1015            SslMode::from_bits_retain(bits)
1016        }
1017    }
1018
1019    /// Clear the mode used by the context, returning the new mode bit mask.
1020    #[corresponds(SSL_CTX_clear_mode)]
1021    pub fn clear_mode(&mut self, mode: SslMode) -> SslMode {
1022        unsafe {
1023            let bits = ffi::SSL_CTX_clear_mode(self.as_ptr(), mode.bits() as ModeTy) as SslBitType;
1024            SslMode::from_bits_retain(bits)
1025        }
1026    }
1027
1028    /// Returns the mode set for the context.
1029    #[corresponds(SSL_CTX_get_mode)]
1030    pub fn mode(&self) -> SslMode {
1031        unsafe {
1032            let bits = ffi::SSL_CTX_get_mode(self.as_ptr()) as SslBitType;
1033            SslMode::from_bits_retain(bits)
1034        }
1035    }
1036
1037    /// Configure OpenSSL to use the default built-in DH parameters.
1038    ///
1039    /// If “auto” DH parameters are switched on then the parameters will be selected to be
1040    /// consistent with the size of the key associated with the server's certificate.
1041    /// If there is no certificate (e.g. for PSK ciphersuites), then it it will be consistent
1042    /// with the size of the negotiated symmetric cipher key.
1043    ///
1044    /// Requires OpenSSL 3.0.0.
1045    #[corresponds(SSL_CTX_set_dh_auto)]
1046    #[cfg(ossl300)]
1047    pub fn set_dh_auto(&mut self, onoff: bool) -> Result<(), ErrorStack> {
1048        unsafe { cvt(ffi::SSL_CTX_set_dh_auto(self.as_ptr(), onoff as c_int) as c_int).map(|_| ()) }
1049    }
1050
1051    /// Sets the parameters to be used during ephemeral Diffie-Hellman key exchange.
1052    #[corresponds(SSL_CTX_set_tmp_dh)]
1053    pub fn set_tmp_dh(&mut self, dh: &DhRef<Params>) -> Result<(), ErrorStack> {
1054        unsafe { cvt(ffi::SSL_CTX_set_tmp_dh(self.as_ptr(), dh.as_ptr()) as c_int).map(|_| ()) }
1055    }
1056
1057    /// Sets the callback which will generate parameters to be used during ephemeral Diffie-Hellman
1058    /// key exchange.
1059    ///
1060    /// The callback is provided with a reference to the `Ssl` for the session, as well as a boolean
1061    /// indicating if the selected cipher is export-grade, and the key length. The export and key
1062    /// length options are archaic and should be ignored in almost all cases.
1063    #[corresponds(SSL_CTX_set_tmp_dh_callback)]
1064    pub fn set_tmp_dh_callback<F>(&mut self, callback: F)
1065    where
1066        F: Fn(&mut SslRef, bool, u32) -> Result<Dh<Params>, ErrorStack> + 'static + Sync + Send,
1067    {
1068        unsafe {
1069            self.set_ex_data(SslContext::cached_ex_index::<F>(), callback);
1070
1071            ffi::SSL_CTX_set_tmp_dh_callback(self.as_ptr(), Some(raw_tmp_dh::<F>));
1072        }
1073    }
1074
1075    /// Sets the parameters to be used during ephemeral elliptic curve Diffie-Hellman key exchange.
1076    #[corresponds(SSL_CTX_set_tmp_ecdh)]
1077    pub fn set_tmp_ecdh(&mut self, key: &EcKeyRef<Params>) -> Result<(), ErrorStack> {
1078        unsafe { cvt(ffi::SSL_CTX_set_tmp_ecdh(self.as_ptr(), key.as_ptr()) as c_int).map(|_| ()) }
1079    }
1080
1081    /// Use the default locations of trusted certificates for verification.
1082    ///
1083    /// These locations are read from the `SSL_CERT_FILE` and `SSL_CERT_DIR` environment variables
1084    /// if present, or defaults specified at OpenSSL build time otherwise.
1085    #[corresponds(SSL_CTX_set_default_verify_paths)]
1086    pub fn set_default_verify_paths(&mut self) -> Result<(), ErrorStack> {
1087        unsafe { cvt(ffi::SSL_CTX_set_default_verify_paths(self.as_ptr())).map(|_| ()) }
1088    }
1089
1090    /// Loads trusted root certificates from a file.
1091    ///
1092    /// The file should contain a sequence of PEM-formatted CA certificates.
1093    #[corresponds(SSL_CTX_load_verify_locations)]
1094    pub fn set_ca_file<P: AsRef<Path>>(&mut self, file: P) -> Result<(), ErrorStack> {
1095        self.load_verify_locations(Some(file.as_ref()), None)
1096    }
1097
1098    /// Loads trusted root certificates from a file and/or a directory.
1099    #[corresponds(SSL_CTX_load_verify_locations)]
1100    pub fn load_verify_locations(
1101        &mut self,
1102        ca_file: Option<&Path>,
1103        ca_path: Option<&Path>,
1104    ) -> Result<(), ErrorStack> {
1105        let ca_file = ca_file.map(|p| CString::new(p.as_os_str().to_str().unwrap()).unwrap());
1106        let ca_path = ca_path.map(|p| CString::new(p.as_os_str().to_str().unwrap()).unwrap());
1107        unsafe {
1108            cvt(ffi::SSL_CTX_load_verify_locations(
1109                self.as_ptr(),
1110                ca_file.as_ref().map_or(ptr::null(), |s| s.as_ptr()),
1111                ca_path.as_ref().map_or(ptr::null(), |s| s.as_ptr()),
1112            ))
1113            .map(|_| ())
1114        }
1115    }
1116
1117    /// Sets the list of CA names sent to the client.
1118    ///
1119    /// The CA certificates must still be added to the trust root - they are not automatically set
1120    /// as trusted by this method.
1121    #[corresponds(SSL_CTX_set_client_CA_list)]
1122    pub fn set_client_ca_list(&mut self, list: Stack<X509Name>) {
1123        unsafe {
1124            ffi::SSL_CTX_set_client_CA_list(self.as_ptr(), list.as_ptr());
1125            mem::forget(list);
1126        }
1127    }
1128
1129    /// Add the provided CA certificate to the list sent by the server to the client when
1130    /// requesting client-side TLS authentication.
1131    #[corresponds(SSL_CTX_add_client_CA)]
1132    pub fn add_client_ca(&mut self, cacert: &X509Ref) -> Result<(), ErrorStack> {
1133        unsafe { cvt(ffi::SSL_CTX_add_client_CA(self.as_ptr(), cacert.as_ptr())).map(|_| ()) }
1134    }
1135
1136    /// Set the context identifier for sessions.
1137    ///
1138    /// This value identifies the server's session cache to clients, telling them when they're
1139    /// able to reuse sessions. It should be set to a unique value per server, unless multiple
1140    /// servers share a session cache.
1141    ///
1142    /// This value should be set when using client certificates, or each request will fail its
1143    /// handshake and need to be restarted.
1144    #[corresponds(SSL_CTX_set_session_id_context)]
1145    pub fn set_session_id_context(&mut self, sid_ctx: &[u8]) -> Result<(), ErrorStack> {
1146        unsafe {
1147            assert!(sid_ctx.len() <= c_uint::MAX as usize);
1148            cvt(ffi::SSL_CTX_set_session_id_context(
1149                self.as_ptr(),
1150                sid_ctx.as_ptr(),
1151                sid_ctx.len() as SizeTy,
1152            ))
1153            .map(|_| ())
1154        }
1155    }
1156
1157    /// Loads a leaf certificate from a file.
1158    ///
1159    /// Only a single certificate will be loaded - use `add_extra_chain_cert` to add the remainder
1160    /// of the certificate chain, or `set_certificate_chain_file` to load the entire chain from a
1161    /// single file.
1162    #[corresponds(SSL_CTX_use_certificate_file)]
1163    pub fn set_certificate_file<P: AsRef<Path>>(
1164        &mut self,
1165        file: P,
1166        file_type: SslFiletype,
1167    ) -> Result<(), ErrorStack> {
1168        let file = CString::new(file.as_ref().as_os_str().to_str().unwrap()).unwrap();
1169        unsafe {
1170            cvt(ffi::SSL_CTX_use_certificate_file(
1171                self.as_ptr(),
1172                file.as_ptr() as *const _,
1173                file_type.as_raw(),
1174            ))
1175            .map(|_| ())
1176        }
1177    }
1178
1179    /// Loads a certificate chain from a file.
1180    ///
1181    /// The file should contain a sequence of PEM-formatted certificates, the first being the leaf
1182    /// certificate, and the remainder forming the chain of certificates up to and including the
1183    /// trusted root certificate.
1184    #[corresponds(SSL_CTX_use_certificate_chain_file)]
1185    pub fn set_certificate_chain_file<P: AsRef<Path>>(
1186        &mut self,
1187        file: P,
1188    ) -> Result<(), ErrorStack> {
1189        let file = CString::new(file.as_ref().as_os_str().to_str().unwrap()).unwrap();
1190        unsafe {
1191            cvt(ffi::SSL_CTX_use_certificate_chain_file(
1192                self.as_ptr(),
1193                file.as_ptr() as *const _,
1194            ))
1195            .map(|_| ())
1196        }
1197    }
1198
1199    /// Sets the leaf certificate.
1200    ///
1201    /// Use `add_extra_chain_cert` to add the remainder of the certificate chain.
1202    #[corresponds(SSL_CTX_use_certificate)]
1203    pub fn set_certificate(&mut self, cert: &X509Ref) -> Result<(), ErrorStack> {
1204        unsafe { cvt(ffi::SSL_CTX_use_certificate(self.as_ptr(), cert.as_ptr())).map(|_| ()) }
1205    }
1206
1207    /// Appends a certificate to the certificate chain.
1208    ///
1209    /// This chain should contain all certificates necessary to go from the certificate specified by
1210    /// `set_certificate` to a trusted root.
1211    #[corresponds(SSL_CTX_add_extra_chain_cert)]
1212    pub fn add_extra_chain_cert(&mut self, cert: X509) -> Result<(), ErrorStack> {
1213        unsafe {
1214            cvt(ffi::SSL_CTX_add_extra_chain_cert(self.as_ptr(), cert.as_ptr()) as c_int)?;
1215            mem::forget(cert);
1216            Ok(())
1217        }
1218    }
1219
1220    #[cfg(tongsuo)]
1221    #[corresponds(SSL_CTX_use_enc_certificate_file)]
1222    pub fn set_enc_certificate_file<P: AsRef<Path>>(
1223        &mut self,
1224        file: P,
1225        file_type: SslFiletype,
1226    ) -> Result<(), ErrorStack> {
1227        let file = CString::new(file.as_ref().as_os_str().to_str().unwrap()).unwrap();
1228        unsafe {
1229            cvt(ffi::SSL_CTX_use_enc_certificate_file(
1230                self.as_ptr(),
1231                file.as_ptr() as *const _,
1232                file_type.as_raw(),
1233            ))
1234            .map(|_| ())
1235        }
1236    }
1237
1238    #[cfg(tongsuo)]
1239    #[corresponds(SSL_CTX_use_enc_certificate)]
1240    pub fn set_enc_certificate(&mut self, cert: &X509Ref) -> Result<(), ErrorStack> {
1241        unsafe {
1242            cvt(ffi::SSL_CTX_use_enc_certificate(
1243                self.as_ptr(),
1244                cert.as_ptr(),
1245            ))
1246            .map(|_| ())
1247        }
1248    }
1249
1250    #[cfg(tongsuo)]
1251    #[corresponds(SSL_CTX_use_sign_certificate_file)]
1252    pub fn set_sign_certificate_file<P: AsRef<Path>>(
1253        &mut self,
1254        file: P,
1255        file_type: SslFiletype,
1256    ) -> Result<(), ErrorStack> {
1257        let file = CString::new(file.as_ref().as_os_str().to_str().unwrap()).unwrap();
1258        unsafe {
1259            cvt(ffi::SSL_CTX_use_sign_certificate_file(
1260                self.as_ptr(),
1261                file.as_ptr() as *const _,
1262                file_type.as_raw(),
1263            ))
1264            .map(|_| ())
1265        }
1266    }
1267
1268    #[cfg(tongsuo)]
1269    #[corresponds(SSL_CTX_use_sign_certificate)]
1270    pub fn set_sign_certificate(&mut self, cert: &X509Ref) -> Result<(), ErrorStack> {
1271        unsafe {
1272            cvt(ffi::SSL_CTX_use_sign_certificate(
1273                self.as_ptr(),
1274                cert.as_ptr(),
1275            ))
1276            .map(|_| ())
1277        }
1278    }
1279
1280    /// Loads the private key from a file.
1281    #[corresponds(SSL_CTX_use_PrivateKey_file)]
1282    pub fn set_private_key_file<P: AsRef<Path>>(
1283        &mut self,
1284        file: P,
1285        file_type: SslFiletype,
1286    ) -> Result<(), ErrorStack> {
1287        let file = CString::new(file.as_ref().as_os_str().to_str().unwrap()).unwrap();
1288        unsafe {
1289            cvt(ffi::SSL_CTX_use_PrivateKey_file(
1290                self.as_ptr(),
1291                file.as_ptr() as *const _,
1292                file_type.as_raw(),
1293            ))
1294            .map(|_| ())
1295        }
1296    }
1297
1298    /// Sets the private key.
1299    #[corresponds(SSL_CTX_use_PrivateKey)]
1300    pub fn set_private_key<T>(&mut self, key: &PKeyRef<T>) -> Result<(), ErrorStack>
1301    where
1302        T: HasPrivate,
1303    {
1304        unsafe { cvt(ffi::SSL_CTX_use_PrivateKey(self.as_ptr(), key.as_ptr())).map(|_| ()) }
1305    }
1306
1307    #[cfg(tongsuo)]
1308    #[corresponds(SSL_CTX_use_enc_PrivateKey_file)]
1309    pub fn set_enc_private_key_file<P: AsRef<Path>>(
1310        &mut self,
1311        file: P,
1312        file_type: SslFiletype,
1313    ) -> Result<(), ErrorStack> {
1314        let file = CString::new(file.as_ref().as_os_str().to_str().unwrap()).unwrap();
1315        unsafe {
1316            cvt(ffi::SSL_CTX_use_enc_PrivateKey_file(
1317                self.as_ptr(),
1318                file.as_ptr() as *const _,
1319                file_type.as_raw(),
1320            ))
1321            .map(|_| ())
1322        }
1323    }
1324
1325    #[cfg(tongsuo)]
1326    #[corresponds(SSL_CTX_use_enc_PrivateKey)]
1327    pub fn set_enc_private_key<T>(&mut self, key: &PKeyRef<T>) -> Result<(), ErrorStack>
1328    where
1329        T: HasPrivate,
1330    {
1331        unsafe { cvt(ffi::SSL_CTX_use_enc_PrivateKey(self.as_ptr(), key.as_ptr())).map(|_| ()) }
1332    }
1333
1334    #[cfg(tongsuo)]
1335    #[corresponds(SSL_CTX_use_sign_PrivateKey_file)]
1336    pub fn set_sign_private_key_file<P: AsRef<Path>>(
1337        &mut self,
1338        file: P,
1339        file_type: SslFiletype,
1340    ) -> Result<(), ErrorStack> {
1341        let file = CString::new(file.as_ref().as_os_str().to_str().unwrap()).unwrap();
1342        unsafe {
1343            cvt(ffi::SSL_CTX_use_sign_PrivateKey_file(
1344                self.as_ptr(),
1345                file.as_ptr() as *const _,
1346                file_type.as_raw(),
1347            ))
1348            .map(|_| ())
1349        }
1350    }
1351
1352    #[cfg(tongsuo)]
1353    #[corresponds(SSL_CTX_use_sign_PrivateKey)]
1354    pub fn set_sign_private_key<T>(&mut self, key: &PKeyRef<T>) -> Result<(), ErrorStack>
1355    where
1356        T: HasPrivate,
1357    {
1358        unsafe {
1359            cvt(ffi::SSL_CTX_use_sign_PrivateKey(
1360                self.as_ptr(),
1361                key.as_ptr(),
1362            ))
1363            .map(|_| ())
1364        }
1365    }
1366
1367    /// Sets the list of supported ciphers for protocols before TLSv1.3.
1368    ///
1369    /// The `set_ciphersuites` method controls the cipher suites for TLSv1.3.
1370    ///
1371    /// See [`ciphers`] for details on the format.
1372    ///
1373    /// [`ciphers`]: https://docs.openssl.org/master/man1/ciphers/
1374    #[corresponds(SSL_CTX_set_cipher_list)]
1375    pub fn set_cipher_list(&mut self, cipher_list: &str) -> Result<(), ErrorStack> {
1376        let cipher_list = CString::new(cipher_list).unwrap();
1377        unsafe {
1378            cvt(ffi::SSL_CTX_set_cipher_list(
1379                self.as_ptr(),
1380                cipher_list.as_ptr() as *const _,
1381            ))
1382            .map(|_| ())
1383        }
1384    }
1385
1386    /// Sets the list of supported ciphers for the TLSv1.3 protocol.
1387    ///
1388    /// The `set_cipher_list` method controls the cipher suites for protocols before TLSv1.3.
1389    ///
1390    /// The format consists of TLSv1.3 cipher suite names separated by `:` characters in order of
1391    /// preference.
1392    ///
1393    /// Requires AWS-LC or OpenSSL 1.1.1 or LibreSSL 3.4.0 or newer.
1394    #[corresponds(SSL_CTX_set_ciphersuites)]
1395    #[cfg(any(ossl111, libressl340, awslc))]
1396    pub fn set_ciphersuites(&mut self, cipher_list: &str) -> Result<(), ErrorStack> {
1397        let cipher_list = CString::new(cipher_list).unwrap();
1398        unsafe {
1399            cvt(ffi::SSL_CTX_set_ciphersuites(
1400                self.as_ptr(),
1401                cipher_list.as_ptr() as *const _,
1402            ))
1403            .map(|_| ())
1404        }
1405    }
1406
1407    /// Enables ECDHE key exchange with an automatically chosen curve list.
1408    ///
1409    /// Requires OpenSSL 1.0.2.
1410    #[corresponds(SSL_CTX_set_ecdh_auto)]
1411    #[cfg(any(libressl, all(ossl102, not(ossl110))))]
1412    pub fn set_ecdh_auto(&mut self, onoff: bool) -> Result<(), ErrorStack> {
1413        unsafe {
1414            cvt(ffi::SSL_CTX_set_ecdh_auto(self.as_ptr(), onoff as c_int) as c_int).map(|_| ())
1415        }
1416    }
1417
1418    /// Sets the options used by the context, returning the old set.
1419    ///
1420    /// # Note
1421    ///
1422    /// This *enables* the specified options, but does not disable unspecified options. Use
1423    /// `clear_options` for that.
1424    #[corresponds(SSL_CTX_set_options)]
1425    pub fn set_options(&mut self, option: SslOptions) -> SslOptions {
1426        let bits =
1427            unsafe { ffi::SSL_CTX_set_options(self.as_ptr(), option.bits()) } as SslOptionsRepr;
1428        SslOptions::from_bits_retain(bits)
1429    }
1430
1431    /// Returns the options used by the context.
1432    #[corresponds(SSL_CTX_get_options)]
1433    pub fn options(&self) -> SslOptions {
1434        let bits = unsafe { ffi::SSL_CTX_get_options(self.as_ptr()) } as SslOptionsRepr;
1435        SslOptions::from_bits_retain(bits)
1436    }
1437
1438    /// Clears the options used by the context, returning the old set.
1439    #[corresponds(SSL_CTX_clear_options)]
1440    pub fn clear_options(&mut self, option: SslOptions) -> SslOptions {
1441        let bits =
1442            unsafe { ffi::SSL_CTX_clear_options(self.as_ptr(), option.bits()) } as SslOptionsRepr;
1443        SslOptions::from_bits_retain(bits)
1444    }
1445
1446    /// Sets the minimum supported protocol version.
1447    ///
1448    /// A value of `None` will enable protocol versions down to the lowest version supported by
1449    /// OpenSSL.
1450    ///
1451    /// Requires AWS-LC or BoringSSL or OpenSSL 1.1.0 or LibreSSL 2.6.1 or newer.
1452    #[corresponds(SSL_CTX_set_min_proto_version)]
1453    #[cfg(any(ossl110, libressl261, boringssl, awslc))]
1454    pub fn set_min_proto_version(&mut self, version: Option<SslVersion>) -> Result<(), ErrorStack> {
1455        unsafe {
1456            cvt(ffi::SSL_CTX_set_min_proto_version(
1457                self.as_ptr(),
1458                version.map_or(0, |v| v.0 as _),
1459            ))
1460            .map(|_| ())
1461        }
1462    }
1463
1464    /// Sets the maximum supported protocol version.
1465    ///
1466    /// A value of `None` will enable protocol versions up to the highest version supported by
1467    /// OpenSSL.
1468    ///
1469    /// Requires AWS-LC or BoringSSL or OpenSSL 1.1.0 or or LibreSSL 2.6.1 or newer.
1470    #[corresponds(SSL_CTX_set_max_proto_version)]
1471    #[cfg(any(ossl110, libressl261, boringssl, awslc))]
1472    pub fn set_max_proto_version(&mut self, version: Option<SslVersion>) -> Result<(), ErrorStack> {
1473        unsafe {
1474            cvt(ffi::SSL_CTX_set_max_proto_version(
1475                self.as_ptr(),
1476                version.map_or(0, |v| v.0 as _),
1477            ))
1478            .map(|_| ())
1479        }
1480    }
1481
1482    /// Gets the minimum supported protocol version.
1483    ///
1484    /// A value of `None` indicates that all versions down to the lowest version supported by
1485    /// OpenSSL are enabled.
1486    ///
1487    /// Requires OpenSSL 1.1.0g or LibreSSL 2.7.0 or newer.
1488    #[corresponds(SSL_CTX_get_min_proto_version)]
1489    #[cfg(any(ossl110g, libressl270))]
1490    pub fn min_proto_version(&mut self) -> Option<SslVersion> {
1491        unsafe {
1492            let r = ffi::SSL_CTX_get_min_proto_version(self.as_ptr());
1493            if r == 0 {
1494                None
1495            } else {
1496                Some(SslVersion(r))
1497            }
1498        }
1499    }
1500
1501    /// Gets the maximum supported protocol version.
1502    ///
1503    /// A value of `None` indicates that all versions up to the highest version supported by
1504    /// OpenSSL are enabled.
1505    ///
1506    /// Requires OpenSSL 1.1.0g or LibreSSL 2.7.0 or newer.
1507    #[corresponds(SSL_CTX_get_max_proto_version)]
1508    #[cfg(any(ossl110g, libressl270))]
1509    pub fn max_proto_version(&mut self) -> Option<SslVersion> {
1510        unsafe {
1511            let r = ffi::SSL_CTX_get_max_proto_version(self.as_ptr());
1512            if r == 0 {
1513                None
1514            } else {
1515                Some(SslVersion(r))
1516            }
1517        }
1518    }
1519
1520    /// Sets the protocols to sent to the server for Application Layer Protocol Negotiation (ALPN).
1521    ///
1522    /// The input must be in ALPN "wire format". It consists of a sequence of supported protocol
1523    /// names prefixed by their byte length. For example, the protocol list consisting of `spdy/1`
1524    /// and `http/1.1` is encoded as `b"\x06spdy/1\x08http/1.1"`. The protocols are ordered by
1525    /// preference.
1526    ///
1527    /// Requires AWS-LC or BoringSSL or OpenSSL 1.0.2 or LibreSSL 2.6.1 or newer.
1528    #[corresponds(SSL_CTX_set_alpn_protos)]
1529    #[cfg(any(ossl102, libressl261, boringssl, awslc))]
1530    pub fn set_alpn_protos(&mut self, protocols: &[u8]) -> Result<(), ErrorStack> {
1531        unsafe {
1532            assert!(protocols.len() <= c_uint::MAX as usize);
1533            let r = ffi::SSL_CTX_set_alpn_protos(
1534                self.as_ptr(),
1535                protocols.as_ptr(),
1536                protocols.len() as _,
1537            );
1538            // fun fact, SSL_CTX_set_alpn_protos has a reversed return code D:
1539            if r == 0 {
1540                Ok(())
1541            } else {
1542                Err(ErrorStack::get())
1543            }
1544        }
1545    }
1546
1547    /// Enables the DTLS extension "use_srtp" as defined in RFC5764.
1548    #[cfg(not(osslconf = "OPENSSL_NO_SRTP"))]
1549    #[corresponds(SSL_CTX_set_tlsext_use_srtp)]
1550    pub fn set_tlsext_use_srtp(&mut self, protocols: &str) -> Result<(), ErrorStack> {
1551        unsafe {
1552            let cstr = CString::new(protocols).unwrap();
1553
1554            let r = ffi::SSL_CTX_set_tlsext_use_srtp(self.as_ptr(), cstr.as_ptr());
1555            // fun fact, set_tlsext_use_srtp has a reversed return code D:
1556            if r == 0 {
1557                Ok(())
1558            } else {
1559                Err(ErrorStack::get())
1560            }
1561        }
1562    }
1563
1564    /// Sets the callback used by a server to select a protocol for Application Layer Protocol
1565    /// Negotiation (ALPN).
1566    ///
1567    /// The callback is provided with the client's protocol list in ALPN wire format. See the
1568    /// documentation for [`SslContextBuilder::set_alpn_protos`] for details. It should return one
1569    /// of those protocols on success. The [`select_next_proto`] function implements the standard
1570    /// protocol selection algorithm.
1571    ///
1572    /// [`SslContextBuilder::set_alpn_protos`]: struct.SslContextBuilder.html#method.set_alpn_protos
1573    /// [`select_next_proto`]: fn.select_next_proto.html
1574    #[corresponds(SSL_CTX_set_alpn_select_cb)]
1575    pub fn set_alpn_select_callback<F>(&mut self, callback: F)
1576    where
1577        F: for<'a> Fn(&mut SslRef, &'a [u8]) -> Result<&'a [u8], AlpnError> + 'static + Sync + Send,
1578    {
1579        unsafe {
1580            self.set_ex_data(SslContext::cached_ex_index::<F>(), callback);
1581            ffi::SSL_CTX_set_alpn_select_cb(
1582                self.as_ptr(),
1583                Some(callbacks::raw_alpn_select::<F>),
1584                ptr::null_mut(),
1585            );
1586        }
1587    }
1588
1589    /// Checks for consistency between the private key and certificate.
1590    #[corresponds(SSL_CTX_check_private_key)]
1591    pub fn check_private_key(&self) -> Result<(), ErrorStack> {
1592        unsafe { cvt(ffi::SSL_CTX_check_private_key(self.as_ptr())).map(|_| ()) }
1593    }
1594
1595    /// Returns a shared reference to the context's certificate store.
1596    #[corresponds(SSL_CTX_get_cert_store)]
1597    pub fn cert_store(&self) -> &X509StoreBuilderRef {
1598        unsafe { X509StoreBuilderRef::from_ptr(ffi::SSL_CTX_get_cert_store(self.as_ptr())) }
1599    }
1600
1601    /// Returns a mutable reference to the context's certificate store.
1602    #[corresponds(SSL_CTX_get_cert_store)]
1603    pub fn cert_store_mut(&mut self) -> &mut X509StoreBuilderRef {
1604        unsafe { X509StoreBuilderRef::from_ptr_mut(ffi::SSL_CTX_get_cert_store(self.as_ptr())) }
1605    }
1606
1607    /// Returns a reference to the X509 verification configuration.
1608    ///
1609    /// Requires AWS-LC or BoringSSL or OpenSSL 1.0.2 or newer.
1610    #[corresponds(SSL_CTX_get0_param)]
1611    #[cfg(any(ossl102, boringssl, libressl261, awslc))]
1612    pub fn verify_param(&self) -> &X509VerifyParamRef {
1613        unsafe { X509VerifyParamRef::from_ptr(ffi::SSL_CTX_get0_param(self.as_ptr())) }
1614    }
1615
1616    /// Returns a mutable reference to the X509 verification configuration.
1617    ///
1618    /// Requires AWS-LC or BoringSSL or OpenSSL 1.0.2 or newer.
1619    #[corresponds(SSL_CTX_get0_param)]
1620    #[cfg(any(ossl102, boringssl, libressl261, awslc))]
1621    pub fn verify_param_mut(&mut self) -> &mut X509VerifyParamRef {
1622        unsafe { X509VerifyParamRef::from_ptr_mut(ffi::SSL_CTX_get0_param(self.as_ptr())) }
1623    }
1624
1625    /// Registers a certificate decompression algorithm on ctx with ID alg_id.
1626    ///
1627    /// This corresponds to [`SSL_CTX_add_cert_compression_alg`].
1628    ///
1629    /// [`SSL_CTX_add_cert_compression_alg`]: https://commondatastorage.googleapis.com/chromium-boringssl-docs/ssl.h.html#SSL_CTX_add_cert_compression_alg
1630    ///
1631    /// Requires BoringSSL or Tongsuo.
1632    #[cfg(any(boringssl, tongsuo, awslc))]
1633    pub fn add_cert_decompression_alg<F>(
1634        &mut self,
1635        alg_id: CertCompressionAlgorithm,
1636        decompress: F,
1637    ) -> Result<(), ErrorStack>
1638    where
1639        F: Fn(&[u8], &mut [u8]) -> usize + Send + Sync + 'static,
1640    {
1641        unsafe {
1642            self.set_ex_data(SslContext::cached_ex_index::<F>(), decompress);
1643            cvt(ffi::SSL_CTX_add_cert_compression_alg(
1644                self.as_ptr(),
1645                alg_id.0 as _,
1646                None,
1647                Some(raw_cert_decompression::<F>),
1648            ))
1649            .map(|_| ())
1650        }
1651    }
1652
1653    /// Specify the preferred cert compression algorithms
1654    #[corresponds(SSL_CTX_set1_cert_comp_preference)]
1655    #[cfg(ossl320)]
1656    pub fn set_cert_comp_preference(
1657        &mut self,
1658        algs: &[CertCompressionAlgorithm],
1659    ) -> Result<(), ErrorStack> {
1660        let mut algs = algs.iter().map(|v| v.0).collect::<Vec<c_int>>();
1661        unsafe {
1662            cvt(ffi::SSL_CTX_set1_cert_comp_preference(
1663                self.as_ptr(),
1664                algs.as_mut_ptr(),
1665                algs.len(),
1666            ))
1667            .map(|_| ())
1668        }
1669    }
1670
1671    /// Enables OCSP stapling on all client SSL objects created from ctx
1672    ///
1673    /// This corresponds to [`SSL_CTX_enable_ocsp_stapling`].
1674    ///
1675    /// [`SSL_CTX_enable_ocsp_stapling`]: https://commondatastorage.googleapis.com/chromium-boringssl-docs/ssl.h.html#SSL_CTX_enable_ocsp_stapling
1676    ///
1677    /// Requires BoringSSL.
1678    #[cfg(any(boringssl, awslc))]
1679    pub fn enable_ocsp_stapling(&mut self) {
1680        unsafe { ffi::SSL_CTX_enable_ocsp_stapling(self.as_ptr()) }
1681    }
1682
1683    /// Enables SCT requests on all client SSL objects created from ctx
1684    ///
1685    /// This corresponds to [`SSL_CTX_enable_signed_cert_timestamps`].
1686    ///
1687    /// [`SSL_CTX_enable_signed_cert_timestamps`]: https://commondatastorage.googleapis.com/chromium-boringssl-docs/ssl.h.html#SSL_CTX_enable_signed_cert_timestamps
1688    ///
1689    /// Requires BoringSSL.
1690    #[cfg(any(boringssl, awslc))]
1691    pub fn enable_signed_cert_timestamps(&mut self) {
1692        unsafe { ffi::SSL_CTX_enable_signed_cert_timestamps(self.as_ptr()) }
1693    }
1694
1695    /// Set whether to enable GREASE on all client SSL objects created from ctx
1696    ///
1697    /// This corresponds to [`SSL_CTX_set_grease_enabled`].
1698    ///
1699    /// [`SSL_CTX_set_grease_enabled`]: https://commondatastorage.googleapis.com/chromium-boringssl-docs/ssl.h.html#SSL_CTX_set_grease_enabled
1700    ///
1701    /// Requires BoringSSL.
1702    #[cfg(any(boringssl, awslc))]
1703    pub fn set_grease_enabled(&mut self, enabled: bool) {
1704        unsafe { ffi::SSL_CTX_set_grease_enabled(self.as_ptr(), enabled as c_int) }
1705    }
1706
1707    /// Configures whether sockets on ctx should permute extensions.
1708    ///
1709    /// This corresponds to [`SSL_CTX_set_permute_extensions`].
1710    ///
1711    /// [`SSL_CTX_set_permute_extensions`]: https://commondatastorage.googleapis.com/chromium-boringssl-docs/ssl.h.html#SSL_CTX_set_permute_extensions
1712    ///
1713    /// Requires BoringSSL.
1714    #[cfg(any(boringssl, awslc))]
1715    pub fn set_permute_extensions(&mut self, enabled: bool) {
1716        unsafe { ffi::SSL_CTX_set_permute_extensions(self.as_ptr(), enabled as c_int) }
1717    }
1718
1719    /// Enable the processing of signed certificate timestamps (SCTs) for all connections that share the given SSL context.
1720    #[corresponds(SSL_CTX_enable_ct)]
1721    #[cfg(ossl111)]
1722    pub fn enable_ct(&mut self, validation_mode: SslCtValidationMode) -> Result<(), ErrorStack> {
1723        unsafe { cvt(ffi::SSL_CTX_enable_ct(self.as_ptr(), validation_mode.0)).map(|_| ()) }
1724    }
1725
1726    /// Check whether CT processing is enabled.
1727    #[corresponds(SSL_CTX_ct_is_enabled)]
1728    #[cfg(ossl111)]
1729    pub fn ct_is_enabled(&self) -> bool {
1730        unsafe { ffi::SSL_CTX_ct_is_enabled(self.as_ptr()) == 1 }
1731    }
1732
1733    /// Sets the status response a client wishes the server to reply with.
1734    #[corresponds(SSL_CTX_set_tlsext_status_type)]
1735    #[cfg(not(any(boringssl, awslc)))]
1736    pub fn set_status_type(&mut self, type_: StatusType) -> Result<(), ErrorStack> {
1737        unsafe {
1738            cvt(ffi::SSL_CTX_set_tlsext_status_type(self.as_ptr(), type_.as_raw()) as c_int)
1739                .map(|_| ())
1740        }
1741    }
1742
1743    /// Sets the callback dealing with OCSP stapling.
1744    ///
1745    /// On the client side, this callback is responsible for validating the OCSP status response
1746    /// returned by the server. The status may be retrieved with the `SslRef::ocsp_status` method.
1747    /// A response of `Ok(true)` indicates that the OCSP status is valid, and a response of
1748    /// `Ok(false)` indicates that the OCSP status is invalid and the handshake should be
1749    /// terminated.
1750    ///
1751    /// On the server side, this callback is responsible for setting the OCSP status response to be
1752    /// returned to clients. The status may be set with the `SslRef::set_ocsp_status` method. A
1753    /// response of `Ok(true)` indicates that the OCSP status should be returned to the client, and
1754    /// `Ok(false)` indicates that the status should not be returned to the client.
1755    #[corresponds(SSL_CTX_set_tlsext_status_cb)]
1756    pub fn set_status_callback<F>(&mut self, callback: F) -> Result<(), ErrorStack>
1757    where
1758        F: Fn(&mut SslRef) -> Result<bool, ErrorStack> + 'static + Sync + Send,
1759    {
1760        unsafe {
1761            self.set_ex_data(SslContext::cached_ex_index::<F>(), callback);
1762            cvt(
1763                ffi::SSL_CTX_set_tlsext_status_cb(self.as_ptr(), Some(raw_tlsext_status::<F>))
1764                    as c_int,
1765            )
1766            .map(|_| ())
1767        }
1768    }
1769
1770    #[corresponds(SSL_CTX_set_tlsext_ticket_key_evp_cb)]
1771    #[cfg(ossl300)]
1772    pub fn set_ticket_key_evp_callback<F>(&mut self, callback: F) -> Result<(), ErrorStack>
1773    where
1774        F: Fn(
1775                &mut SslRef,
1776                &mut [u8],
1777                &mut [u8],
1778                &mut CipherCtxRef,
1779                &mut MacCtxRef,
1780                bool,
1781            ) -> Result<TicketKeyStatus, ErrorStack>
1782            + 'static
1783            + Sync
1784            + Send,
1785    {
1786        unsafe {
1787            self.set_ex_data(SslContext::cached_ex_index::<F>(), callback);
1788            cvt(ffi::SSL_CTX_set_tlsext_ticket_key_evp_cb(
1789                self.as_ptr(),
1790                Some(raw_tlsext_ticket_key_evp::<F>),
1791            ) as c_int)
1792            .map(|_| ())
1793        }
1794    }
1795
1796    #[corresponds(SSL_CTX_set_tlsext_ticket_key_cb)]
1797    pub fn set_ticket_key_callback<F>(&mut self, callback: F) -> Result<(), ErrorStack>
1798    where
1799        F: Fn(
1800                &mut SslRef,
1801                &mut [u8],
1802                &mut [u8],
1803                &mut CipherCtxRef,
1804                &mut HMacCtxRef,
1805                bool,
1806            ) -> Result<TicketKeyStatus, ErrorStack>
1807            + 'static
1808            + Sync
1809            + Send,
1810    {
1811        unsafe {
1812            self.set_ex_data(SslContext::cached_ex_index::<F>(), callback);
1813            cvt(ffi::SSL_CTX_set_tlsext_ticket_key_cb(
1814                self.as_ptr(),
1815                Some(raw_tlsext_ticket_key::<F>),
1816            ) as c_int)
1817            .map(|_| ())
1818        }
1819    }
1820
1821    /// Sets the callback for providing an identity and pre-shared key for a TLS-PSK client.
1822    ///
1823    /// The callback will be called with the SSL context, an identity hint if one was provided
1824    /// by the server, a mutable slice for each of the identity and pre-shared key bytes. The
1825    /// identity must be written as a null-terminated C string.
1826    #[corresponds(SSL_CTX_set_psk_client_callback)]
1827    #[cfg(not(osslconf = "OPENSSL_NO_PSK"))]
1828    pub fn set_psk_client_callback<F>(&mut self, callback: F)
1829    where
1830        F: Fn(&mut SslRef, Option<&[u8]>, &mut [u8], &mut [u8]) -> Result<usize, ErrorStack>
1831            + 'static
1832            + Sync
1833            + Send,
1834    {
1835        unsafe {
1836            self.set_ex_data(SslContext::cached_ex_index::<F>(), callback);
1837            ffi::SSL_CTX_set_psk_client_callback(self.as_ptr(), Some(raw_client_psk::<F>));
1838        }
1839    }
1840
1841    /// Sets the callback for providing an identity and pre-shared key for a TLS-PSK server.
1842    ///
1843    /// The callback will be called with the SSL context, an identity provided by the client,
1844    /// and, a mutable slice for the pre-shared key bytes. The callback returns the number of
1845    /// bytes in the pre-shared key.
1846    #[corresponds(SSL_CTX_set_psk_server_callback)]
1847    #[cfg(not(osslconf = "OPENSSL_NO_PSK"))]
1848    pub fn set_psk_server_callback<F>(&mut self, callback: F)
1849    where
1850        F: Fn(&mut SslRef, Option<&[u8]>, &mut [u8]) -> Result<usize, ErrorStack>
1851            + 'static
1852            + Sync
1853            + Send,
1854    {
1855        unsafe {
1856            self.set_ex_data(SslContext::cached_ex_index::<F>(), callback);
1857            ffi::SSL_CTX_set_psk_server_callback(self.as_ptr(), Some(raw_server_psk::<F>));
1858        }
1859    }
1860
1861    /// Sets the callback which is called when new sessions are negotiated.
1862    ///
1863    /// This can be used by clients to implement session caching. While in TLSv1.2 the session is
1864    /// available to access via [`SslRef::session`] immediately after the handshake completes, this
1865    /// is not the case for TLSv1.3. There, a session is not generally available immediately, and
1866    /// the server may provide multiple session tokens to the client over a single session. The new
1867    /// session callback is a portable way to deal with both cases.
1868    ///
1869    /// Note that session caching must be enabled for the callback to be invoked, and it defaults
1870    /// off for clients. [`set_session_cache_mode`] controls that behavior.
1871    ///
1872    /// [`SslRef::session`]: struct.SslRef.html#method.session
1873    /// [`set_session_cache_mode`]: #method.set_session_cache_mode
1874    #[corresponds(SSL_CTX_sess_set_new_cb)]
1875    pub fn set_new_session_callback<F>(&mut self, callback: F)
1876    where
1877        F: Fn(&mut SslRef, SslSession) + 'static + Sync + Send,
1878    {
1879        unsafe {
1880            self.set_ex_data(SslContext::cached_ex_index::<F>(), callback);
1881            ffi::SSL_CTX_sess_set_new_cb(self.as_ptr(), Some(callbacks::raw_new_session::<F>));
1882        }
1883    }
1884
1885    /// Sets the callback which is called when sessions are removed from the context.
1886    ///
1887    /// Sessions can be removed because they have timed out or because they are considered faulty.
1888    #[corresponds(SSL_CTX_sess_set_remove_cb)]
1889    pub fn set_remove_session_callback<F>(&mut self, callback: F)
1890    where
1891        F: Fn(&SslContextRef, &SslSessionRef) + 'static + Sync + Send,
1892    {
1893        unsafe {
1894            self.set_ex_data(SslContext::cached_ex_index::<F>(), callback);
1895            ffi::SSL_CTX_sess_set_remove_cb(
1896                self.as_ptr(),
1897                Some(callbacks::raw_remove_session::<F>),
1898            );
1899        }
1900    }
1901
1902    /// Sets the callback which is called when a client proposed to resume a session but it was not
1903    /// found in the internal cache.
1904    ///
1905    /// The callback is passed a reference to the session ID provided by the client. It should
1906    /// return the session corresponding to that ID if available. This is only used for servers, not
1907    /// clients.
1908    ///
1909    /// # Safety
1910    ///
1911    /// The returned `SslSession` must not be associated with a different `SslContext`.
1912    #[corresponds(SSL_CTX_sess_set_get_cb)]
1913    pub unsafe fn set_get_session_callback<F>(&mut self, callback: F)
1914    where
1915        F: Fn(&mut SslRef, &[u8]) -> Option<SslSession> + 'static + Sync + Send,
1916    {
1917        self.set_ex_data(SslContext::cached_ex_index::<F>(), callback);
1918        ffi::SSL_CTX_sess_set_get_cb(self.as_ptr(), Some(callbacks::raw_get_session::<F>));
1919    }
1920
1921    /// Sets the TLS key logging callback.
1922    ///
1923    /// The callback is invoked whenever TLS key material is generated, and is passed a line of NSS
1924    /// SSLKEYLOGFILE-formatted text. This can be used by tools like Wireshark to decrypt message
1925    /// traffic. The line does not contain a trailing newline.
1926    ///
1927    /// Requires OpenSSL 1.1.1 or newer.
1928    #[corresponds(SSL_CTX_set_keylog_callback)]
1929    #[cfg(any(ossl111, boringssl, awslc))]
1930    pub fn set_keylog_callback<F>(&mut self, callback: F)
1931    where
1932        F: Fn(&SslRef, &str) + 'static + Sync + Send,
1933    {
1934        unsafe {
1935            self.set_ex_data(SslContext::cached_ex_index::<F>(), callback);
1936            ffi::SSL_CTX_set_keylog_callback(self.as_ptr(), Some(callbacks::raw_keylog::<F>));
1937        }
1938    }
1939
1940    /// Sets the session caching mode use for connections made with the context.
1941    ///
1942    /// Returns the previous session caching mode.
1943    #[corresponds(SSL_CTX_set_session_cache_mode)]
1944    pub fn set_session_cache_mode(&mut self, mode: SslSessionCacheMode) -> SslSessionCacheMode {
1945        unsafe {
1946            let bits = ffi::SSL_CTX_set_session_cache_mode(self.as_ptr(), mode.bits());
1947            SslSessionCacheMode::from_bits_retain(bits)
1948        }
1949    }
1950
1951    /// Sets the callback for generating an application cookie for TLS1.3
1952    /// stateless handshakes.
1953    ///
1954    /// The callback will be called with the SSL context and a slice into which the cookie
1955    /// should be written. The callback should return the number of bytes written.
1956    #[corresponds(SSL_CTX_set_stateless_cookie_generate_cb)]
1957    #[cfg(ossl111)]
1958    pub fn set_stateless_cookie_generate_cb<F>(&mut self, callback: F)
1959    where
1960        F: Fn(&mut SslRef, &mut [u8]) -> Result<usize, ErrorStack> + 'static + Sync + Send,
1961    {
1962        unsafe {
1963            self.set_ex_data(SslContext::cached_ex_index::<F>(), callback);
1964            ffi::SSL_CTX_set_stateless_cookie_generate_cb(
1965                self.as_ptr(),
1966                Some(raw_stateless_cookie_generate::<F>),
1967            );
1968        }
1969    }
1970
1971    /// Sets the callback for verifying an application cookie for TLS1.3
1972    /// stateless handshakes.
1973    ///
1974    /// The callback will be called with the SSL context and the cookie supplied by the
1975    /// client. It should return true if and only if the cookie is valid.
1976    ///
1977    /// Note that the OpenSSL implementation independently verifies the integrity of
1978    /// application cookies using an HMAC before invoking the supplied callback.
1979    #[corresponds(SSL_CTX_set_stateless_cookie_verify_cb)]
1980    #[cfg(ossl111)]
1981    pub fn set_stateless_cookie_verify_cb<F>(&mut self, callback: F)
1982    where
1983        F: Fn(&mut SslRef, &[u8]) -> bool + 'static + Sync + Send,
1984    {
1985        unsafe {
1986            self.set_ex_data(SslContext::cached_ex_index::<F>(), callback);
1987            ffi::SSL_CTX_set_stateless_cookie_verify_cb(
1988                self.as_ptr(),
1989                Some(raw_stateless_cookie_verify::<F>),
1990            )
1991        }
1992    }
1993
1994    /// Sets the callback for generating a DTLSv1 cookie
1995    ///
1996    /// The callback will be called with the SSL context and a slice into which the cookie
1997    /// should be written. The callback should return the number of bytes written.
1998    #[corresponds(SSL_CTX_set_cookie_generate_cb)]
1999    #[cfg(not(any(boringssl, awslc)))]
2000    pub fn set_cookie_generate_cb<F>(&mut self, callback: F)
2001    where
2002        F: Fn(&mut SslRef, &mut [u8]) -> Result<usize, ErrorStack> + 'static + Sync + Send,
2003    {
2004        unsafe {
2005            self.set_ex_data(SslContext::cached_ex_index::<F>(), callback);
2006            ffi::SSL_CTX_set_cookie_generate_cb(self.as_ptr(), Some(raw_cookie_generate::<F>));
2007        }
2008    }
2009
2010    /// Sets the callback for verifying a DTLSv1 cookie
2011    ///
2012    /// The callback will be called with the SSL context and the cookie supplied by the
2013    /// client. It should return true if and only if the cookie is valid.
2014    #[corresponds(SSL_CTX_set_cookie_verify_cb)]
2015    #[cfg(not(any(boringssl, awslc)))]
2016    pub fn set_cookie_verify_cb<F>(&mut self, callback: F)
2017    where
2018        F: Fn(&mut SslRef, &[u8]) -> bool + 'static + Sync + Send,
2019    {
2020        unsafe {
2021            self.set_ex_data(SslContext::cached_ex_index::<F>(), callback);
2022            ffi::SSL_CTX_set_cookie_verify_cb(self.as_ptr(), Some(raw_cookie_verify::<F>));
2023        }
2024    }
2025
2026    /// Sets the extra data at the specified index.
2027    ///
2028    /// This can be used to provide data to callbacks registered with the context. Use the
2029    /// `SslContext::new_ex_index` method to create an `Index`.
2030    // FIXME should return a result
2031    #[corresponds(SSL_CTX_set_ex_data)]
2032    pub fn set_ex_data<T>(&mut self, index: Index<SslContext, T>, data: T) {
2033        self.set_ex_data_inner(index, data);
2034    }
2035
2036    fn set_ex_data_inner<T>(&mut self, index: Index<SslContext, T>, data: T) -> *mut c_void {
2037        match self.ex_data_mut(index) {
2038            Some(v) => {
2039                *v = data;
2040                (v as *mut T).cast()
2041            }
2042            _ => unsafe {
2043                let data = Box::into_raw(Box::new(data)) as *mut c_void;
2044                ffi::SSL_CTX_set_ex_data(self.as_ptr(), index.as_raw(), data);
2045                data
2046            },
2047        }
2048    }
2049
2050    fn ex_data_mut<T>(&mut self, index: Index<SslContext, T>) -> Option<&mut T> {
2051        unsafe {
2052            let data = ffi::SSL_CTX_get_ex_data(self.as_ptr(), index.as_raw());
2053            if data.is_null() {
2054                None
2055            } else {
2056                Some(&mut *data.cast())
2057            }
2058        }
2059    }
2060
2061    /// Adds a custom extension for a TLS/DTLS client or server for all supported protocol versions.
2062    ///
2063    /// Requires OpenSSL 1.1.1 or newer.
2064    #[corresponds(SSL_CTX_add_custom_ext)]
2065    #[cfg(ossl111)]
2066    pub fn add_custom_ext<AddFn, ParseFn, T>(
2067        &mut self,
2068        ext_type: u16,
2069        context: ExtensionContext,
2070        add_cb: AddFn,
2071        parse_cb: ParseFn,
2072    ) -> Result<(), ErrorStack>
2073    where
2074        AddFn: Fn(
2075                &mut SslRef,
2076                ExtensionContext,
2077                Option<(usize, &X509Ref)>,
2078            ) -> Result<Option<T>, SslAlert>
2079            + 'static
2080            + Sync
2081            + Send,
2082        T: AsRef<[u8]> + 'static + Sync + Send,
2083        ParseFn: Fn(
2084                &mut SslRef,
2085                ExtensionContext,
2086                &[u8],
2087                Option<(usize, &X509Ref)>,
2088            ) -> Result<(), SslAlert>
2089            + 'static
2090            + Sync
2091            + Send,
2092    {
2093        let ret = unsafe {
2094            self.set_ex_data(SslContext::cached_ex_index::<AddFn>(), add_cb);
2095            self.set_ex_data(SslContext::cached_ex_index::<ParseFn>(), parse_cb);
2096
2097            ffi::SSL_CTX_add_custom_ext(
2098                self.as_ptr(),
2099                ext_type as c_uint,
2100                context.bits(),
2101                Some(raw_custom_ext_add::<AddFn, T>),
2102                Some(raw_custom_ext_free::<T>),
2103                ptr::null_mut(),
2104                Some(raw_custom_ext_parse::<ParseFn>),
2105                ptr::null_mut(),
2106            )
2107        };
2108        if ret == 1 {
2109            Ok(())
2110        } else {
2111            Err(ErrorStack::get())
2112        }
2113    }
2114
2115    /// Sets the maximum amount of early data that will be accepted on incoming connections.
2116    ///
2117    /// Defaults to 0.
2118    ///
2119    /// Requires OpenSSL 1.1.1 or LibreSSL 3.4.0 or newer.
2120    #[corresponds(SSL_CTX_set_max_early_data)]
2121    #[cfg(any(ossl111, libressl340))]
2122    pub fn set_max_early_data(&mut self, bytes: u32) -> Result<(), ErrorStack> {
2123        if unsafe { ffi::SSL_CTX_set_max_early_data(self.as_ptr(), bytes) } == 1 {
2124            Ok(())
2125        } else {
2126            Err(ErrorStack::get())
2127        }
2128    }
2129
2130    /// Sets a callback that is called before most ClientHello processing and before the decision whether
2131    /// to resume a session is made. The callback may inspect the ClientHello and configure the
2132    /// connection.
2133    ///
2134    /// This corresponds to [`SSL_CTX_set_select_certificate_cb`].
2135    ///
2136    /// [`SSL_CTX_set_select_certificate_cb`]: https://commondatastorage.googleapis.com/chromium-boringssl-docs/ssl.h.html#SSL_CTX_set_select_certificate_cb
2137    ///
2138    /// Requires BoringSSL.
2139    #[cfg(any(boringssl, awslc))]
2140    pub fn set_select_certificate_callback<F>(&mut self, callback: F)
2141    where
2142        F: Fn(ClientHello<'_>) -> Result<(), SelectCertError> + Sync + Send + 'static,
2143    {
2144        unsafe {
2145            self.set_ex_data(SslContext::cached_ex_index::<F>(), callback);
2146            ffi::SSL_CTX_set_select_certificate_cb(
2147                self.as_ptr(),
2148                Some(callbacks::raw_select_cert::<F>),
2149            );
2150        }
2151    }
2152
2153    /// Sets a callback which will be invoked just after the client's hello message is received.
2154    ///
2155    /// Requires OpenSSL 1.1.1 or newer.
2156    #[corresponds(SSL_CTX_set_client_hello_cb)]
2157    #[cfg(ossl111)]
2158    pub fn set_client_hello_callback<F>(&mut self, callback: F)
2159    where
2160        F: Fn(&mut SslRef, &mut SslAlert) -> Result<(), ClientHelloError> + 'static + Sync + Send,
2161    {
2162        unsafe {
2163            let ptr = self.set_ex_data_inner(SslContext::cached_ex_index::<F>(), callback);
2164            ffi::SSL_CTX_set_client_hello_cb(
2165                self.as_ptr(),
2166                Some(callbacks::raw_client_hello::<F>),
2167                ptr,
2168            );
2169        }
2170    }
2171
2172    /// Sets the callback function that can be used to obtain state information for SSL objects
2173    /// created from ctx during connection setup and use.
2174    #[corresponds(SSL_CTX_set_info_callback)]
2175    pub fn set_info_callback<F>(&mut self, callback: F)
2176    where
2177        F: Fn(&SslRef, i32, i32) + 'static + Sync + Send,
2178    {
2179        unsafe {
2180            self.set_ex_data_inner(SslContext::cached_ex_index::<F>(), callback);
2181            ffi::SSL_CTX_set_info_callback(self.as_ptr(), Some(callbacks::raw_info::<F>));
2182        }
2183    }
2184
2185    /// Sets the context's session cache size limit, returning the previous limit.
2186    ///
2187    /// A value of 0 means that the cache size is unbounded.
2188    #[corresponds(SSL_CTX_sess_set_cache_size)]
2189    #[allow(clippy::useless_conversion)]
2190    pub fn set_session_cache_size(&mut self, size: i32) -> i64 {
2191        unsafe {
2192            ffi::SSL_CTX_sess_set_cache_size(self.as_ptr(), size as SslCacheSize) as SslCacheTy
2193        }
2194    }
2195
2196    /// Sets the context's supported signature algorithms.
2197    ///
2198    /// Requires OpenSSL 1.0.2 or newer.
2199    #[corresponds(SSL_CTX_set1_sigalgs_list)]
2200    #[cfg(ossl102)]
2201    pub fn set_sigalgs_list(&mut self, sigalgs: &str) -> Result<(), ErrorStack> {
2202        let sigalgs = CString::new(sigalgs).unwrap();
2203        unsafe {
2204            cvt(ffi::SSL_CTX_set1_sigalgs_list(self.as_ptr(), sigalgs.as_ptr()) as c_int)
2205                .map(|_| ())
2206        }
2207    }
2208
2209    /// Sets the context's supported elliptic curve groups.
2210    ///
2211    /// Requires AWS-LC or BoringSSL or OpenSSL 1.1.1 or LibreSSL 2.5.1 or newer.
2212    #[corresponds(SSL_CTX_set1_groups_list)]
2213    #[cfg(any(ossl111, boringssl, libressl251, awslc))]
2214    pub fn set_groups_list(&mut self, groups: &str) -> Result<(), ErrorStack> {
2215        let groups = CString::new(groups).unwrap();
2216        unsafe {
2217            cvt(ffi::SSL_CTX_set1_groups_list(self.as_ptr(), groups.as_ptr()) as c_int).map(|_| ())
2218        }
2219    }
2220
2221    /// Sets the number of TLS 1.3 session tickets that will be sent to a client after a full
2222    /// handshake.
2223    ///
2224    /// Requires OpenSSL 1.1.1 or newer.
2225    #[corresponds(SSL_CTX_set_num_tickets)]
2226    #[cfg(any(ossl111, boringssl, awslc))]
2227    pub fn set_num_tickets(&mut self, num_tickets: usize) -> Result<(), ErrorStack> {
2228        unsafe { cvt(ffi::SSL_CTX_set_num_tickets(self.as_ptr(), num_tickets)).map(|_| ()) }
2229    }
2230
2231    /// Set the context's security level to a value between 0 and 5, inclusive.
2232    /// A security value of 0 allows allows all parameters and algorithms.
2233    ///
2234    /// Requires OpenSSL 1.1.0 or newer.
2235    #[corresponds(SSL_CTX_set_security_level)]
2236    #[cfg(any(ossl110, libressl360))]
2237    pub fn set_security_level(&mut self, level: u32) {
2238        unsafe { ffi::SSL_CTX_set_security_level(self.as_ptr(), level as c_int) }
2239    }
2240
2241    /// Consumes the builder, returning a new `SslContext`.
2242    pub fn build(self) -> SslContext {
2243        self.0
2244    }
2245}
2246
2247foreign_type_and_impl_send_sync! {
2248    type CType = ffi::SSL_CTX;
2249    fn drop = ffi::SSL_CTX_free;
2250
2251    /// A context object for TLS streams.
2252    ///
2253    /// Applications commonly configure a single `SslContext` that is shared by all of its
2254    /// `SslStreams`.
2255    pub struct SslContext;
2256
2257    /// Reference to [`SslContext`]
2258    ///
2259    /// [`SslContext`]: struct.SslContext.html
2260    pub struct SslContextRef;
2261}
2262
2263impl Clone for SslContext {
2264    fn clone(&self) -> Self {
2265        (**self).to_owned()
2266    }
2267}
2268
2269impl ToOwned for SslContextRef {
2270    type Owned = SslContext;
2271
2272    fn to_owned(&self) -> Self::Owned {
2273        unsafe {
2274            SSL_CTX_up_ref(self.as_ptr());
2275            SslContext::from_ptr(self.as_ptr())
2276        }
2277    }
2278}
2279
2280// TODO: add useful info here
2281impl fmt::Debug for SslContext {
2282    fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
2283        write!(fmt, "SslContext")
2284    }
2285}
2286
2287impl SslContext {
2288    /// Creates a new builder object for an `SslContext`.
2289    pub fn builder(method: SslMethod) -> Result<SslContextBuilder, ErrorStack> {
2290        SslContextBuilder::new(method)
2291    }
2292
2293    /// Returns a new extra data index.
2294    ///
2295    /// Each invocation of this function is guaranteed to return a distinct index. These can be used
2296    /// to store data in the context that can be retrieved later by callbacks, for example.
2297    #[corresponds(SSL_CTX_get_ex_new_index)]
2298    pub fn new_ex_index<T>() -> Result<Index<SslContext, T>, ErrorStack>
2299    where
2300        T: 'static + Sync + Send,
2301    {
2302        unsafe {
2303            ffi::init();
2304            let idx = cvt_n(get_new_idx(Some(free_data_box::<T>)))?;
2305            Ok(Index::from_raw(idx))
2306        }
2307    }
2308
2309    // FIXME should return a result?
2310    fn cached_ex_index<T>() -> Index<SslContext, T>
2311    where
2312        T: 'static + Sync + Send,
2313    {
2314        unsafe {
2315            let idx = *INDEXES
2316                .lock()
2317                .unwrap_or_else(|e| e.into_inner())
2318                .entry(TypeId::of::<T>())
2319                .or_insert_with(|| SslContext::new_ex_index::<T>().unwrap().as_raw());
2320            Index::from_raw(idx)
2321        }
2322    }
2323}
2324
2325impl SslContextRef {
2326    /// Returns the certificate associated with this `SslContext`, if present.
2327    ///
2328    /// Requires OpenSSL 1.0.2 or LibreSSL 2.7.0 or newer.
2329    #[corresponds(SSL_CTX_get0_certificate)]
2330    #[cfg(any(ossl102, libressl270))]
2331    pub fn certificate(&self) -> Option<&X509Ref> {
2332        unsafe {
2333            let ptr = ffi::SSL_CTX_get0_certificate(self.as_ptr());
2334            X509Ref::from_const_ptr_opt(ptr)
2335        }
2336    }
2337
2338    /// Returns the private key associated with this `SslContext`, if present.
2339    ///
2340    /// Requires OpenSSL 1.0.2 or LibreSSL 3.4.0 or newer.
2341    #[corresponds(SSL_CTX_get0_privatekey)]
2342    #[cfg(any(ossl102, libressl340))]
2343    pub fn private_key(&self) -> Option<&PKeyRef<Private>> {
2344        unsafe {
2345            let ptr = ffi::SSL_CTX_get0_privatekey(self.as_ptr());
2346            PKeyRef::from_const_ptr_opt(ptr)
2347        }
2348    }
2349
2350    /// Returns a shared reference to the certificate store used for verification.
2351    #[corresponds(SSL_CTX_get_cert_store)]
2352    pub fn cert_store(&self) -> &X509StoreRef {
2353        unsafe { X509StoreRef::from_ptr(ffi::SSL_CTX_get_cert_store(self.as_ptr())) }
2354    }
2355
2356    /// Returns a shared reference to the stack of certificates making up the chain from the leaf.
2357    #[corresponds(SSL_CTX_get_extra_chain_certs)]
2358    pub fn extra_chain_certs(&self) -> &StackRef<X509> {
2359        unsafe {
2360            let mut chain = ptr::null_mut();
2361            ffi::SSL_CTX_get_extra_chain_certs(self.as_ptr(), &mut chain);
2362            StackRef::from_const_ptr_opt(chain).expect("extra chain certs must not be null")
2363        }
2364    }
2365
2366    /// Returns a reference to the extra data at the specified index.
2367    #[corresponds(SSL_CTX_get_ex_data)]
2368    pub fn ex_data<T>(&self, index: Index<SslContext, T>) -> Option<&T> {
2369        unsafe {
2370            let data = ffi::SSL_CTX_get_ex_data(self.as_ptr(), index.as_raw());
2371            if data.is_null() {
2372                None
2373            } else {
2374                Some(&*(data as *const T))
2375            }
2376        }
2377    }
2378
2379    /// Gets the maximum amount of early data that will be accepted on incoming connections.
2380    ///
2381    /// Requires OpenSSL 1.1.1 or LibreSSL 3.4.0 or newer.
2382    #[corresponds(SSL_CTX_get_max_early_data)]
2383    #[cfg(any(ossl111, libressl340))]
2384    pub fn max_early_data(&self) -> u32 {
2385        unsafe { ffi::SSL_CTX_get_max_early_data(self.as_ptr()) }
2386    }
2387
2388    /// Adds a session to the context's cache.
2389    ///
2390    /// Returns `true` if the session was successfully added to the cache, and `false` if it was already present.
2391    ///
2392    /// # Safety
2393    ///
2394    /// The caller of this method is responsible for ensuring that the session has never been used with another
2395    /// `SslContext` than this one.
2396    #[corresponds(SSL_CTX_add_session)]
2397    pub unsafe fn add_session(&self, session: &SslSessionRef) -> bool {
2398        ffi::SSL_CTX_add_session(self.as_ptr(), session.as_ptr()) != 0
2399    }
2400
2401    /// Removes a session from the context's cache and marks it as non-resumable.
2402    ///
2403    /// Returns `true` if the session was successfully found and removed, and `false` otherwise.
2404    ///
2405    /// # Safety
2406    ///
2407    /// The caller of this method is responsible for ensuring that the session has never been used with another
2408    /// `SslContext` than this one.
2409    #[corresponds(SSL_CTX_remove_session)]
2410    pub unsafe fn remove_session(&self, session: &SslSessionRef) -> bool {
2411        ffi::SSL_CTX_remove_session(self.as_ptr(), session.as_ptr()) != 0
2412    }
2413
2414    /// Returns the context's session cache size limit.
2415    ///
2416    /// A value of 0 means that the cache size is unbounded.
2417    #[corresponds(SSL_CTX_sess_get_cache_size)]
2418    #[allow(clippy::unnecessary_cast)]
2419    pub fn session_cache_size(&self) -> i64 {
2420        unsafe { ffi::SSL_CTX_sess_get_cache_size(self.as_ptr()) as i64 }
2421    }
2422
2423    /// Returns the verify mode that was set on this context from [`SslContextBuilder::set_verify`].
2424    ///
2425    /// [`SslContextBuilder::set_verify`]: struct.SslContextBuilder.html#method.set_verify
2426    #[corresponds(SSL_CTX_get_verify_mode)]
2427    pub fn verify_mode(&self) -> SslVerifyMode {
2428        let mode = unsafe { ffi::SSL_CTX_get_verify_mode(self.as_ptr()) };
2429        SslVerifyMode::from_bits(mode).expect("SSL_CTX_get_verify_mode returned invalid mode")
2430    }
2431
2432    /// Gets the number of TLS 1.3 session tickets that will be sent to a client after a full
2433    /// handshake.
2434    ///
2435    /// Requires OpenSSL 1.1.1 or newer.
2436    #[corresponds(SSL_CTX_get_num_tickets)]
2437    #[cfg(ossl111)]
2438    pub fn num_tickets(&self) -> usize {
2439        unsafe { ffi::SSL_CTX_get_num_tickets(self.as_ptr()) }
2440    }
2441
2442    /// Get the context's security level, which controls the allowed parameters
2443    /// and algorithms.
2444    ///
2445    /// Requires OpenSSL 1.1.0 or newer.
2446    #[corresponds(SSL_CTX_get_security_level)]
2447    #[cfg(any(ossl110, libressl360))]
2448    pub fn security_level(&self) -> u32 {
2449        unsafe { ffi::SSL_CTX_get_security_level(self.as_ptr()) as u32 }
2450    }
2451}
2452
2453/// Information about the state of a cipher.
2454pub struct CipherBits {
2455    /// The number of secret bits used for the cipher.
2456    pub secret: i32,
2457
2458    /// The number of bits processed by the chosen algorithm.
2459    pub algorithm: i32,
2460}
2461
2462/// Information about a cipher.
2463pub struct SslCipher(*mut ffi::SSL_CIPHER);
2464
2465impl ForeignType for SslCipher {
2466    type CType = ffi::SSL_CIPHER;
2467    type Ref = SslCipherRef;
2468
2469    #[inline]
2470    unsafe fn from_ptr(ptr: *mut ffi::SSL_CIPHER) -> SslCipher {
2471        SslCipher(ptr)
2472    }
2473
2474    #[inline]
2475    fn as_ptr(&self) -> *mut ffi::SSL_CIPHER {
2476        self.0
2477    }
2478}
2479
2480impl Stackable for SslCipher {
2481    type StackType = ffi::stack_st_SSL_CIPHER;
2482}
2483
2484impl Deref for SslCipher {
2485    type Target = SslCipherRef;
2486
2487    fn deref(&self) -> &SslCipherRef {
2488        unsafe { SslCipherRef::from_ptr(self.0) }
2489    }
2490}
2491
2492impl DerefMut for SslCipher {
2493    fn deref_mut(&mut self) -> &mut SslCipherRef {
2494        unsafe { SslCipherRef::from_ptr_mut(self.0) }
2495    }
2496}
2497
2498/// Reference to an [`SslCipher`].
2499///
2500/// [`SslCipher`]: struct.SslCipher.html
2501pub struct SslCipherRef(Opaque);
2502
2503impl ForeignTypeRef for SslCipherRef {
2504    type CType = ffi::SSL_CIPHER;
2505}
2506
2507impl SslCipherRef {
2508    /// Returns the name of the cipher.
2509    #[corresponds(SSL_CIPHER_get_name)]
2510    pub fn name(&self) -> &'static str {
2511        unsafe {
2512            let ptr = ffi::SSL_CIPHER_get_name(self.as_ptr());
2513            CStr::from_ptr(ptr).to_str().unwrap()
2514        }
2515    }
2516
2517    /// Returns the RFC-standard name of the cipher, if one exists.
2518    ///
2519    /// Requires OpenSSL 1.1.1 or newer.
2520    #[corresponds(SSL_CIPHER_standard_name)]
2521    #[cfg(ossl111)]
2522    pub fn standard_name(&self) -> Option<&'static str> {
2523        unsafe {
2524            let ptr = ffi::SSL_CIPHER_standard_name(self.as_ptr());
2525            if ptr.is_null() {
2526                None
2527            } else {
2528                Some(CStr::from_ptr(ptr).to_str().unwrap())
2529            }
2530        }
2531    }
2532
2533    /// Returns the SSL/TLS protocol version that first defined the cipher.
2534    #[corresponds(SSL_CIPHER_get_version)]
2535    pub fn version(&self) -> &'static str {
2536        let version = unsafe {
2537            let ptr = ffi::SSL_CIPHER_get_version(self.as_ptr());
2538            CStr::from_ptr(ptr as *const _)
2539        };
2540
2541        str::from_utf8(version.to_bytes()).unwrap()
2542    }
2543
2544    /// Returns the number of bits used for the cipher.
2545    #[corresponds(SSL_CIPHER_get_bits)]
2546    #[allow(clippy::useless_conversion)]
2547    pub fn bits(&self) -> CipherBits {
2548        unsafe {
2549            let mut algo_bits = 0;
2550            let secret_bits = ffi::SSL_CIPHER_get_bits(self.as_ptr(), &mut algo_bits);
2551            CipherBits {
2552                secret: secret_bits.into(),
2553                algorithm: algo_bits.into(),
2554            }
2555        }
2556    }
2557
2558    /// Returns a textual description of the cipher.
2559    #[corresponds(SSL_CIPHER_description)]
2560    pub fn description(&self) -> String {
2561        unsafe {
2562            // SSL_CIPHER_description requires a buffer of at least 128 bytes.
2563            let mut buf = [0; 128];
2564            let ptr = ffi::SSL_CIPHER_description(self.as_ptr(), buf.as_mut_ptr(), 128);
2565            String::from_utf8(CStr::from_ptr(ptr as *const _).to_bytes().to_vec()).unwrap()
2566        }
2567    }
2568
2569    /// Returns the handshake digest of the cipher.
2570    ///
2571    /// Requires OpenSSL 1.1.1 or newer.
2572    #[corresponds(SSL_CIPHER_get_handshake_digest)]
2573    #[cfg(ossl111)]
2574    pub fn handshake_digest(&self) -> Option<MessageDigest> {
2575        unsafe {
2576            let ptr = ffi::SSL_CIPHER_get_handshake_digest(self.as_ptr());
2577            if ptr.is_null() {
2578                None
2579            } else {
2580                Some(MessageDigest::from_ptr(ptr))
2581            }
2582        }
2583    }
2584
2585    /// Returns the NID corresponding to the cipher.
2586    ///
2587    /// Requires OpenSSL 1.1.0 or LibreSSL 2.7.0 or newer.
2588    #[corresponds(SSL_CIPHER_get_cipher_nid)]
2589    #[cfg(any(ossl110, libressl270))]
2590    pub fn cipher_nid(&self) -> Option<Nid> {
2591        let n = unsafe { ffi::SSL_CIPHER_get_cipher_nid(self.as_ptr()) };
2592        if n == 0 {
2593            None
2594        } else {
2595            Some(Nid::from_raw(n))
2596        }
2597    }
2598}
2599
2600impl fmt::Debug for SslCipherRef {
2601    fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
2602        write!(fmt, "{}", self.name())
2603    }
2604}
2605
2606/// A stack of selected ciphers, and a stack of selected signalling cipher suites
2607#[derive(Debug)]
2608pub struct CipherLists {
2609    pub suites: Stack<SslCipher>,
2610    pub signalling_suites: Stack<SslCipher>,
2611}
2612
2613foreign_type_and_impl_send_sync! {
2614    type CType = ffi::SSL_SESSION;
2615    fn drop = ffi::SSL_SESSION_free;
2616
2617    /// An encoded SSL session.
2618    ///
2619    /// These can be cached to share sessions across connections.
2620    pub struct SslSession;
2621
2622    /// Reference to [`SslSession`].
2623    ///
2624    /// [`SslSession`]: struct.SslSession.html
2625    pub struct SslSessionRef;
2626}
2627
2628impl Clone for SslSession {
2629    fn clone(&self) -> SslSession {
2630        SslSessionRef::to_owned(self)
2631    }
2632}
2633
2634impl SslSession {
2635    from_der! {
2636        /// Deserializes a DER-encoded session structure.
2637        #[corresponds(d2i_SSL_SESSION)]
2638        from_der,
2639        SslSession,
2640        ffi::d2i_SSL_SESSION
2641    }
2642}
2643
2644impl ToOwned for SslSessionRef {
2645    type Owned = SslSession;
2646
2647    fn to_owned(&self) -> SslSession {
2648        unsafe {
2649            SSL_SESSION_up_ref(self.as_ptr());
2650            SslSession(self.as_ptr())
2651        }
2652    }
2653}
2654
2655impl SslSessionRef {
2656    /// Returns the SSL session ID.
2657    #[corresponds(SSL_SESSION_get_id)]
2658    pub fn id(&self) -> &[u8] {
2659        unsafe {
2660            let mut len = 0;
2661            let p = ffi::SSL_SESSION_get_id(self.as_ptr(), &mut len);
2662            #[allow(clippy::unnecessary_cast)]
2663            util::from_raw_parts(p as *const u8, len as usize)
2664        }
2665    }
2666
2667    /// Returns the length of the master key.
2668    #[corresponds(SSL_SESSION_get_master_key)]
2669    pub fn master_key_len(&self) -> usize {
2670        unsafe { SSL_SESSION_get_master_key(self.as_ptr(), ptr::null_mut(), 0) }
2671    }
2672
2673    /// Copies the master key into the provided buffer.
2674    ///
2675    /// Returns the number of bytes written, or the size of the master key if the buffer is empty.
2676    #[corresponds(SSL_SESSION_get_master_key)]
2677    pub fn master_key(&self, buf: &mut [u8]) -> usize {
2678        unsafe { SSL_SESSION_get_master_key(self.as_ptr(), buf.as_mut_ptr(), buf.len()) }
2679    }
2680
2681    /// Gets the maximum amount of early data that can be sent on this session.
2682    ///
2683    /// Requires OpenSSL 1.1.1 or LibreSSL 3.4.0 or newer.
2684    #[corresponds(SSL_SESSION_get_max_early_data)]
2685    #[cfg(any(ossl111, libressl340))]
2686    pub fn max_early_data(&self) -> u32 {
2687        unsafe { ffi::SSL_SESSION_get_max_early_data(self.as_ptr()) }
2688    }
2689
2690    /// Returns the time at which the session was established, in seconds since the Unix epoch.
2691    #[corresponds(SSL_SESSION_get_time)]
2692    #[allow(clippy::useless_conversion)]
2693    pub fn time(&self) -> SslTimeTy {
2694        unsafe { ffi::SSL_SESSION_get_time(self.as_ptr()) }
2695    }
2696
2697    /// Returns the sessions timeout, in seconds.
2698    ///
2699    /// A session older than this time should not be used for session resumption.
2700    #[corresponds(SSL_SESSION_get_timeout)]
2701    #[allow(clippy::useless_conversion)]
2702    pub fn timeout(&self) -> i64 {
2703        unsafe { ffi::SSL_SESSION_get_timeout(self.as_ptr()).into() }
2704    }
2705
2706    /// Returns the session's TLS protocol version.
2707    ///
2708    /// Requires OpenSSL 1.1.0 or LibreSSL 2.7.0 or newer.
2709    #[corresponds(SSL_SESSION_get_protocol_version)]
2710    #[cfg(any(ossl110, libressl270))]
2711    pub fn protocol_version(&self) -> SslVersion {
2712        unsafe {
2713            let version = ffi::SSL_SESSION_get_protocol_version(self.as_ptr());
2714            SslVersion(version)
2715        }
2716    }
2717
2718    /// Returns the session's TLS protocol version.
2719    #[corresponds(SSL_SESSION_get_protocol_version)]
2720    #[cfg(any(boringssl, awslc))]
2721    pub fn protocol_version(&self) -> SslVersion {
2722        unsafe {
2723            let version = ffi::SSL_SESSION_get_protocol_version(self.as_ptr());
2724            SslVersion(version as _)
2725        }
2726    }
2727
2728    to_der! {
2729        /// Serializes the session into a DER-encoded structure.
2730        #[corresponds(i2d_SSL_SESSION)]
2731        to_der,
2732        ffi::i2d_SSL_SESSION
2733    }
2734}
2735
2736foreign_type_and_impl_send_sync! {
2737    type CType = ffi::SSL;
2738    fn drop = ffi::SSL_free;
2739
2740    /// The state of an SSL/TLS session.
2741    ///
2742    /// `Ssl` objects are created from an [`SslContext`], which provides configuration defaults.
2743    /// These defaults can be overridden on a per-`Ssl` basis, however.
2744    ///
2745    /// [`SslContext`]: struct.SslContext.html
2746    pub struct Ssl;
2747
2748    /// Reference to an [`Ssl`].
2749    ///
2750    /// [`Ssl`]: struct.Ssl.html
2751    pub struct SslRef;
2752}
2753
2754impl fmt::Debug for Ssl {
2755    fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
2756        fmt::Debug::fmt(&**self, fmt)
2757    }
2758}
2759
2760impl Ssl {
2761    /// Returns a new extra data index.
2762    ///
2763    /// Each invocation of this function is guaranteed to return a distinct index. These can be used
2764    /// to store data in the context that can be retrieved later by callbacks, for example.
2765    #[corresponds(SSL_get_ex_new_index)]
2766    pub fn new_ex_index<T>() -> Result<Index<Ssl, T>, ErrorStack>
2767    where
2768        T: 'static + Sync + Send,
2769    {
2770        unsafe {
2771            ffi::init();
2772            let idx = cvt_n(get_new_ssl_idx(Some(free_data_box::<T>)))?;
2773            Ok(Index::from_raw(idx))
2774        }
2775    }
2776
2777    // FIXME should return a result?
2778    fn cached_ex_index<T>() -> Index<Ssl, T>
2779    where
2780        T: 'static + Sync + Send,
2781    {
2782        unsafe {
2783            let idx = *SSL_INDEXES
2784                .lock()
2785                .unwrap_or_else(|e| e.into_inner())
2786                .entry(TypeId::of::<T>())
2787                .or_insert_with(|| Ssl::new_ex_index::<T>().unwrap().as_raw());
2788            Index::from_raw(idx)
2789        }
2790    }
2791
2792    /// Creates a new `Ssl`.
2793    #[corresponds(SSL_new)]
2794    pub fn new(ctx: &SslContextRef) -> Result<Ssl, ErrorStack> {
2795        let session_ctx_index = try_get_session_ctx_index()?;
2796        unsafe {
2797            let ptr = cvt_p(ffi::SSL_new(ctx.as_ptr()))?;
2798            let mut ssl = Ssl::from_ptr(ptr);
2799            ssl.set_ex_data(*session_ctx_index, ctx.to_owned());
2800
2801            Ok(ssl)
2802        }
2803    }
2804
2805    /// Initiates a client-side TLS handshake.
2806    /// # Warning
2807    ///
2808    /// OpenSSL's default configuration is insecure. It is highly recommended to use
2809    /// `SslConnector` rather than `Ssl` directly, as it manages that configuration.
2810    #[corresponds(SSL_connect)]
2811    #[allow(deprecated)]
2812    pub fn connect<S>(self, stream: S) -> Result<SslStream<S>, HandshakeError<S>>
2813    where
2814        S: Read + Write,
2815    {
2816        SslStreamBuilder::new(self, stream).connect()
2817    }
2818
2819    /// Initiates a server-side TLS handshake.
2820    ///
2821    /// # Warning
2822    ///
2823    /// OpenSSL's default configuration is insecure. It is highly recommended to use
2824    /// `SslAcceptor` rather than `Ssl` directly, as it manages that configuration.
2825    #[corresponds(SSL_accept)]
2826    #[allow(deprecated)]
2827    pub fn accept<S>(self, stream: S) -> Result<SslStream<S>, HandshakeError<S>>
2828    where
2829        S: Read + Write,
2830    {
2831        SslStreamBuilder::new(self, stream).accept()
2832    }
2833}
2834
2835impl fmt::Debug for SslRef {
2836    fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
2837        fmt.debug_struct("Ssl")
2838            .field("state", &self.state_string_long())
2839            .field("verify_result", &self.verify_result())
2840            .finish()
2841    }
2842}
2843
2844impl SslRef {
2845    #[cfg(not(feature = "tongsuo"))]
2846    fn get_raw_rbio(&self) -> *mut ffi::BIO {
2847        unsafe { ffi::SSL_get_rbio(self.as_ptr()) }
2848    }
2849
2850    #[cfg(feature = "tongsuo")]
2851    fn get_raw_rbio(&self) -> *mut ffi::BIO {
2852        unsafe {
2853            let bio = ffi::SSL_get_rbio(self.as_ptr());
2854            bio::find_correct_bio(bio)
2855        }
2856    }
2857
2858    fn get_error(&self, ret: c_int) -> ErrorCode {
2859        unsafe { ErrorCode::from_raw(ffi::SSL_get_error(self.as_ptr(), ret)) }
2860    }
2861
2862    /// Sets the mode used by the SSL, returning the new mode bit mask.
2863    ///
2864    /// Options already set before are not cleared.
2865    #[corresponds(SSL_set_mode)]
2866    pub fn set_mode(&mut self, mode: SslMode) -> SslMode {
2867        unsafe {
2868            let bits = ffi::SSL_set_mode(self.as_ptr(), mode.bits() as ModeTy) as SslBitType;
2869            SslMode::from_bits_retain(bits)
2870        }
2871    }
2872
2873    /// Clear the mode used by the SSL, returning the new mode bit mask.
2874    #[corresponds(SSL_clear_mode)]
2875    pub fn clear_mode(&mut self, mode: SslMode) -> SslMode {
2876        unsafe {
2877            let bits = ffi::SSL_clear_mode(self.as_ptr(), mode.bits() as ModeTy) as SslBitType;
2878            SslMode::from_bits_retain(bits)
2879        }
2880    }
2881
2882    /// Returns the mode set for the SSL.
2883    #[corresponds(SSL_get_mode)]
2884    pub fn mode(&self) -> SslMode {
2885        unsafe {
2886            let bits = ffi::SSL_get_mode(self.as_ptr()) as SslBitType;
2887            SslMode::from_bits_retain(bits)
2888        }
2889    }
2890
2891    /// Configure as an outgoing stream from a client.
2892    #[corresponds(SSL_set_connect_state)]
2893    pub fn set_connect_state(&mut self) {
2894        unsafe { ffi::SSL_set_connect_state(self.as_ptr()) }
2895    }
2896
2897    /// Configure as an incoming stream to a server.
2898    #[corresponds(SSL_set_accept_state)]
2899    pub fn set_accept_state(&mut self) {
2900        unsafe { ffi::SSL_set_accept_state(self.as_ptr()) }
2901    }
2902
2903    #[cfg(any(boringssl, awslc))]
2904    #[corresponds(SSL_ech_accepted)]
2905    pub fn ech_accepted(&self) -> bool {
2906        unsafe { ffi::SSL_ech_accepted(self.as_ptr()) != 0 }
2907    }
2908
2909    #[cfg(tongsuo)]
2910    #[corresponds(SSL_is_ntls)]
2911    pub fn is_ntls(&mut self) -> bool {
2912        unsafe { ffi::SSL_is_ntls(self.as_ptr()) != 0 }
2913    }
2914
2915    #[cfg(tongsuo)]
2916    #[corresponds(SSL_enable_ntls)]
2917    pub fn enable_ntls(&mut self) {
2918        unsafe { ffi::SSL_enable_ntls(self.as_ptr()) }
2919    }
2920
2921    #[cfg(tongsuo)]
2922    #[corresponds(SSL_disable_ntls)]
2923    pub fn disable_ntls(&mut self) {
2924        unsafe { ffi::SSL_disable_ntls(self.as_ptr()) }
2925    }
2926
2927    #[cfg(all(tongsuo, ossl300))]
2928    #[corresponds(SSL_enable_force_ntls)]
2929    pub fn enable_force_ntls(&mut self) {
2930        unsafe { ffi::SSL_enable_force_ntls(self.as_ptr()) }
2931    }
2932
2933    #[cfg(all(tongsuo, ossl300))]
2934    #[corresponds(SSL_disable_force_ntls)]
2935    pub fn disable_force_ntls(&mut self) {
2936        unsafe { ffi::SSL_disable_force_ntls(self.as_ptr()) }
2937    }
2938
2939    #[cfg(tongsuo)]
2940    #[corresponds(SSL_enable_sm_tls13_strict)]
2941    pub fn enable_sm_tls13_strict(&mut self) {
2942        unsafe { ffi::SSL_enable_sm_tls13_strict(self.as_ptr()) }
2943    }
2944
2945    #[cfg(tongsuo)]
2946    #[corresponds(SSL_disable_sm_tls13_strict)]
2947    pub fn disable_sm_tls13_strict(&mut self) {
2948        unsafe { ffi::SSL_disable_sm_tls13_strict(self.as_ptr()) }
2949    }
2950
2951    /// Like [`SslContextBuilder::set_verify`].
2952    ///
2953    /// [`SslContextBuilder::set_verify`]: struct.SslContextBuilder.html#method.set_verify
2954    #[corresponds(SSL_set_verify)]
2955    pub fn set_verify(&mut self, mode: SslVerifyMode) {
2956        unsafe { ffi::SSL_set_verify(self.as_ptr(), mode.bits() as c_int, None) }
2957    }
2958
2959    /// Returns the verify mode that was set using `set_verify`.
2960    #[corresponds(SSL_set_verify_mode)]
2961    pub fn verify_mode(&self) -> SslVerifyMode {
2962        let mode = unsafe { ffi::SSL_get_verify_mode(self.as_ptr()) };
2963        SslVerifyMode::from_bits(mode).expect("SSL_get_verify_mode returned invalid mode")
2964    }
2965
2966    /// Like [`SslContextBuilder::set_verify_callback`].
2967    ///
2968    /// [`SslContextBuilder::set_verify_callback`]: struct.SslContextBuilder.html#method.set_verify_callback
2969    #[corresponds(SSL_set_verify)]
2970    pub fn set_verify_callback<F>(&mut self, mode: SslVerifyMode, verify: F)
2971    where
2972        F: Fn(bool, &mut X509StoreContextRef) -> bool + 'static + Sync + Send,
2973    {
2974        unsafe {
2975            // this needs to be in an Arc since the callback can register a new callback!
2976            self.set_ex_data(Ssl::cached_ex_index(), Arc::new(verify));
2977            ffi::SSL_set_verify(
2978                self.as_ptr(),
2979                mode.bits() as c_int,
2980                Some(ssl_raw_verify::<F>),
2981            );
2982        }
2983    }
2984
2985    // Sets the callback function, that can be used to obtain state information for ssl during
2986    // connection setup and use
2987    #[corresponds(SSL_set_info_callback)]
2988    pub fn set_info_callback<F>(&mut self, callback: F)
2989    where
2990        F: Fn(&SslRef, i32, i32) + 'static + Sync + Send,
2991    {
2992        unsafe {
2993            // this needs to be in an Arc since the callback can register a new callback!
2994            self.set_ex_data(Ssl::cached_ex_index(), Arc::new(callback));
2995            ffi::SSL_set_info_callback(self.as_ptr(), Some(callbacks::ssl_raw_info::<F>));
2996        }
2997    }
2998
2999    /// Like [`SslContextBuilder::set_dh_auto`].
3000    ///
3001    /// [`SslContextBuilder::set_dh_auto`]: struct.SslContextBuilder.html#method.set_dh_auto
3002    #[corresponds(SSL_set_dh_auto)]
3003    #[cfg(ossl300)]
3004    pub fn set_dh_auto(&mut self, onoff: bool) -> Result<(), ErrorStack> {
3005        unsafe { cvt(ffi::SSL_set_dh_auto(self.as_ptr(), onoff as c_int) as c_int).map(|_| ()) }
3006    }
3007
3008    /// Like [`SslContextBuilder::set_tmp_dh`].
3009    ///
3010    /// [`SslContextBuilder::set_tmp_dh`]: struct.SslContextBuilder.html#method.set_tmp_dh
3011    #[corresponds(SSL_set_tmp_dh)]
3012    pub fn set_tmp_dh(&mut self, dh: &DhRef<Params>) -> Result<(), ErrorStack> {
3013        unsafe { cvt(ffi::SSL_set_tmp_dh(self.as_ptr(), dh.as_ptr()) as c_int).map(|_| ()) }
3014    }
3015
3016    /// Like [`SslContextBuilder::set_tmp_dh_callback`].
3017    ///
3018    /// [`SslContextBuilder::set_tmp_dh_callback`]: struct.SslContextBuilder.html#method.set_tmp_dh_callback
3019    #[corresponds(SSL_set_tmp_dh_callback)]
3020    pub fn set_tmp_dh_callback<F>(&mut self, callback: F)
3021    where
3022        F: Fn(&mut SslRef, bool, u32) -> Result<Dh<Params>, ErrorStack> + 'static + Sync + Send,
3023    {
3024        unsafe {
3025            // this needs to be in an Arc since the callback can register a new callback!
3026            self.set_ex_data(Ssl::cached_ex_index(), Arc::new(callback));
3027            ffi::SSL_set_tmp_dh_callback(self.as_ptr(), Some(raw_tmp_dh_ssl::<F>));
3028        }
3029    }
3030
3031    /// Like [`SslContextBuilder::set_tmp_ecdh`].
3032    ///
3033    /// [`SslContextBuilder::set_tmp_ecdh`]: struct.SslContextBuilder.html#method.set_tmp_ecdh
3034    #[corresponds(SSL_set_tmp_ecdh)]
3035    pub fn set_tmp_ecdh(&mut self, key: &EcKeyRef<Params>) -> Result<(), ErrorStack> {
3036        unsafe { cvt(ffi::SSL_set_tmp_ecdh(self.as_ptr(), key.as_ptr()) as c_int).map(|_| ()) }
3037    }
3038
3039    /// Like [`SslContextBuilder::set_ecdh_auto`].
3040    ///
3041    /// Requires OpenSSL 1.0.2 or LibreSSL.
3042    ///
3043    /// [`SslContextBuilder::set_tmp_ecdh`]: struct.SslContextBuilder.html#method.set_tmp_ecdh
3044    #[corresponds(SSL_set_ecdh_auto)]
3045    #[cfg(any(all(ossl102, not(ossl110)), libressl))]
3046    pub fn set_ecdh_auto(&mut self, onoff: bool) -> Result<(), ErrorStack> {
3047        unsafe { cvt(ffi::SSL_set_ecdh_auto(self.as_ptr(), onoff as c_int) as c_int).map(|_| ()) }
3048    }
3049
3050    /// Like [`SslContextBuilder::set_alpn_protos`].
3051    ///
3052    /// Requires AWS-LC or BoringSSL or OpenSSL 1.0.2 or LibreSSL 2.6.1 or newer.
3053    ///
3054    /// [`SslContextBuilder::set_alpn_protos`]: struct.SslContextBuilder.html#method.set_alpn_protos
3055    #[corresponds(SSL_set_alpn_protos)]
3056    #[cfg(any(ossl102, libressl261, boringssl, awslc))]
3057    pub fn set_alpn_protos(&mut self, protocols: &[u8]) -> Result<(), ErrorStack> {
3058        unsafe {
3059            assert!(protocols.len() <= c_uint::MAX as usize);
3060            let r =
3061                ffi::SSL_set_alpn_protos(self.as_ptr(), protocols.as_ptr(), protocols.len() as _);
3062            // fun fact, SSL_set_alpn_protos has a reversed return code D:
3063            if r == 0 {
3064                Ok(())
3065            } else {
3066                Err(ErrorStack::get())
3067            }
3068        }
3069    }
3070
3071    /// Returns the current cipher if the session is active.
3072    #[corresponds(SSL_get_current_cipher)]
3073    pub fn current_cipher(&self) -> Option<&SslCipherRef> {
3074        unsafe {
3075            let ptr = ffi::SSL_get_current_cipher(self.as_ptr());
3076
3077            SslCipherRef::from_const_ptr_opt(ptr)
3078        }
3079    }
3080
3081    /// Returns a short string describing the state of the session.
3082    #[corresponds(SSL_state_string)]
3083    pub fn state_string(&self) -> &'static str {
3084        let state = unsafe {
3085            let ptr = ffi::SSL_state_string(self.as_ptr());
3086            CStr::from_ptr(ptr as *const _)
3087        };
3088
3089        str::from_utf8(state.to_bytes()).unwrap()
3090    }
3091
3092    /// Returns a longer string describing the state of the session.
3093    #[corresponds(SSL_state_string_long)]
3094    pub fn state_string_long(&self) -> &'static str {
3095        let state = unsafe {
3096            let ptr = ffi::SSL_state_string_long(self.as_ptr());
3097            CStr::from_ptr(ptr as *const _)
3098        };
3099
3100        str::from_utf8(state.to_bytes()).unwrap()
3101    }
3102
3103    /// Sets the host name to be sent to the server for Server Name Indication (SNI).
3104    ///
3105    /// It has no effect for a server-side connection.
3106    #[corresponds(SSL_set_tlsext_host_name)]
3107    pub fn set_hostname(&mut self, hostname: &str) -> Result<(), ErrorStack> {
3108        let cstr = CString::new(hostname).unwrap();
3109        unsafe {
3110            cvt(ffi::SSL_set_tlsext_host_name(self.as_ptr(), cstr.as_ptr() as *mut _) as c_int)
3111                .map(|_| ())
3112        }
3113    }
3114
3115    /// Returns the peer's certificate, if present.
3116    #[corresponds(SSL_get_peer_certificate)]
3117    pub fn peer_certificate(&self) -> Option<X509> {
3118        unsafe {
3119            let ptr = SSL_get1_peer_certificate(self.as_ptr());
3120            X509::from_ptr_opt(ptr)
3121        }
3122    }
3123
3124    /// Returns the certificate chain of the peer, if present.
3125    ///
3126    /// On the client side, the chain includes the leaf certificate, but on the server side it does
3127    /// not. Fun!
3128    #[corresponds(SSL_get_peer_cert_chain)]
3129    pub fn peer_cert_chain(&self) -> Option<&StackRef<X509>> {
3130        unsafe {
3131            let ptr = ffi::SSL_get_peer_cert_chain(self.as_ptr());
3132            StackRef::from_const_ptr_opt(ptr)
3133        }
3134    }
3135
3136    /// Returns the verified certificate chain of the peer, including the leaf certificate.
3137    ///
3138    /// If verification was not successful (i.e. [`verify_result`] does not return
3139    /// [`X509VerifyResult::OK`]), this chain may be incomplete or invalid.
3140    ///
3141    /// Requires OpenSSL 1.1.0 or newer.
3142    ///
3143    /// [`verify_result`]: #method.verify_result
3144    /// [`X509VerifyResult::OK`]: ../x509/struct.X509VerifyResult.html#associatedconstant.OK
3145    #[corresponds(SSL_get0_verified_chain)]
3146    #[cfg(ossl110)]
3147    pub fn verified_chain(&self) -> Option<&StackRef<X509>> {
3148        unsafe {
3149            let ptr = ffi::SSL_get0_verified_chain(self.as_ptr());
3150            StackRef::from_const_ptr_opt(ptr)
3151        }
3152    }
3153
3154    /// Like [`SslContext::certificate`].
3155    #[corresponds(SSL_get_certificate)]
3156    pub fn certificate(&self) -> Option<&X509Ref> {
3157        unsafe {
3158            let ptr = ffi::SSL_get_certificate(self.as_ptr());
3159            X509Ref::from_const_ptr_opt(ptr)
3160        }
3161    }
3162
3163    /// Like [`SslContext::private_key`].
3164    ///
3165    /// [`SslContext::private_key`]: struct.SslContext.html#method.private_key
3166    #[corresponds(SSL_get_privatekey)]
3167    pub fn private_key(&self) -> Option<&PKeyRef<Private>> {
3168        unsafe {
3169            let ptr = ffi::SSL_get_privatekey(self.as_ptr());
3170            PKeyRef::from_const_ptr_opt(ptr)
3171        }
3172    }
3173
3174    /// Returns the protocol version of the session.
3175    #[corresponds(SSL_version)]
3176    pub fn version2(&self) -> Option<SslVersion> {
3177        unsafe {
3178            let r = ffi::SSL_version(self.as_ptr());
3179            if r == 0 {
3180                None
3181            } else {
3182                Some(SslVersion(r))
3183            }
3184        }
3185    }
3186
3187    /// Returns a string describing the protocol version of the session.
3188    #[corresponds(SSL_get_version)]
3189    pub fn version_str(&self) -> &'static str {
3190        let version = unsafe {
3191            let ptr = ffi::SSL_get_version(self.as_ptr());
3192            CStr::from_ptr(ptr as *const _)
3193        };
3194
3195        str::from_utf8(version.to_bytes()).unwrap()
3196    }
3197
3198    /// Returns the protocol selected via Application Layer Protocol Negotiation (ALPN).
3199    ///
3200    /// The protocol's name is returned is an opaque sequence of bytes. It is up to the client
3201    /// to interpret it.
3202    ///
3203    /// Requires AWS-LC or BoringSSL or OpenSSL 1.0.2 or LibreSSL 2.6.1 or newer.
3204    #[corresponds(SSL_get0_alpn_selected)]
3205    #[cfg(any(ossl102, libressl261, boringssl, awslc))]
3206    pub fn selected_alpn_protocol(&self) -> Option<&[u8]> {
3207        unsafe {
3208            let mut data: *const c_uchar = ptr::null();
3209            let mut len: c_uint = 0;
3210            // Get the negotiated protocol from the SSL instance.
3211            // `data` will point at a `c_uchar` array; `len` will contain the length of this array.
3212            ffi::SSL_get0_alpn_selected(self.as_ptr(), &mut data, &mut len);
3213
3214            if data.is_null() {
3215                None
3216            } else {
3217                Some(util::from_raw_parts(data, len as usize))
3218            }
3219        }
3220    }
3221
3222    /// Enables the DTLS extension "use_srtp" as defined in RFC5764.
3223    #[cfg(not(osslconf = "OPENSSL_NO_SRTP"))]
3224    #[corresponds(SSL_set_tlsext_use_srtp)]
3225    pub fn set_tlsext_use_srtp(&mut self, protocols: &str) -> Result<(), ErrorStack> {
3226        unsafe {
3227            let cstr = CString::new(protocols).unwrap();
3228
3229            let r = ffi::SSL_set_tlsext_use_srtp(self.as_ptr(), cstr.as_ptr());
3230            // fun fact, set_tlsext_use_srtp has a reversed return code D:
3231            if r == 0 {
3232                Ok(())
3233            } else {
3234                Err(ErrorStack::get())
3235            }
3236        }
3237    }
3238
3239    /// Gets all SRTP profiles that are enabled for handshake via set_tlsext_use_srtp
3240    ///
3241    /// DTLS extension "use_srtp" as defined in RFC5764 has to be enabled.
3242    #[cfg(not(osslconf = "OPENSSL_NO_SRTP"))]
3243    #[corresponds(SSL_get_srtp_profiles)]
3244    pub fn srtp_profiles(&self) -> Option<&StackRef<SrtpProtectionProfile>> {
3245        unsafe {
3246            let chain = ffi::SSL_get_srtp_profiles(self.as_ptr());
3247
3248            StackRef::from_const_ptr_opt(chain)
3249        }
3250    }
3251
3252    /// Gets the SRTP profile selected by handshake.
3253    ///
3254    /// DTLS extension "use_srtp" as defined in RFC5764 has to be enabled.
3255    #[cfg(not(osslconf = "OPENSSL_NO_SRTP"))]
3256    #[corresponds(SSL_get_selected_srtp_profile)]
3257    pub fn selected_srtp_profile(&self) -> Option<&SrtpProtectionProfileRef> {
3258        unsafe {
3259            let profile = ffi::SSL_get_selected_srtp_profile(self.as_ptr());
3260
3261            SrtpProtectionProfileRef::from_const_ptr_opt(profile)
3262        }
3263    }
3264
3265    /// Returns the number of bytes remaining in the currently processed TLS record.
3266    ///
3267    /// If this is greater than 0, the next call to `read` will not call down to the underlying
3268    /// stream.
3269    #[corresponds(SSL_pending)]
3270    pub fn pending(&self) -> usize {
3271        unsafe { ffi::SSL_pending(self.as_ptr()) as usize }
3272    }
3273
3274    /// Returns the servername sent by the client via Server Name Indication (SNI).
3275    ///
3276    /// It is only useful on the server side.
3277    ///
3278    /// # Note
3279    ///
3280    /// While the SNI specification requires that servernames be valid domain names (and therefore
3281    /// ASCII), OpenSSL does not enforce this restriction. If the servername provided by the client
3282    /// is not valid UTF-8, this function will return `None`. The `servername_raw` method returns
3283    /// the raw bytes and does not have this restriction.
3284    ///
3285    /// [`SSL_get_servername`]: https://docs.openssl.org/master/man3/SSL_get_servername/
3286    #[corresponds(SSL_get_servername)]
3287    // FIXME maybe rethink in 0.11?
3288    pub fn servername(&self, type_: NameType) -> Option<&str> {
3289        self.servername_raw(type_)
3290            .and_then(|b| str::from_utf8(b).ok())
3291    }
3292
3293    /// Returns the servername sent by the client via Server Name Indication (SNI).
3294    ///
3295    /// It is only useful on the server side.
3296    ///
3297    /// # Note
3298    ///
3299    /// Unlike `servername`, this method does not require the name be valid UTF-8.
3300    #[corresponds(SSL_get_servername)]
3301    pub fn servername_raw(&self, type_: NameType) -> Option<&[u8]> {
3302        unsafe {
3303            let name = ffi::SSL_get_servername(self.as_ptr(), type_.0);
3304            if name.is_null() {
3305                None
3306            } else {
3307                Some(CStr::from_ptr(name as *const _).to_bytes())
3308            }
3309        }
3310    }
3311
3312    /// Changes the context corresponding to the current connection.
3313    ///
3314    /// It is most commonly used in the Server Name Indication (SNI) callback.
3315    #[corresponds(SSL_set_SSL_CTX)]
3316    pub fn set_ssl_context(&mut self, ctx: &SslContextRef) -> Result<(), ErrorStack> {
3317        unsafe { cvt_p(ffi::SSL_set_SSL_CTX(self.as_ptr(), ctx.as_ptr())).map(|_| ()) }
3318    }
3319
3320    /// Returns the context corresponding to the current connection.
3321    #[corresponds(SSL_get_SSL_CTX)]
3322    pub fn ssl_context(&self) -> &SslContextRef {
3323        unsafe {
3324            let ssl_ctx = ffi::SSL_get_SSL_CTX(self.as_ptr());
3325            SslContextRef::from_ptr(ssl_ctx)
3326        }
3327    }
3328
3329    /// Returns a mutable reference to the X509 verification configuration.
3330    ///
3331    /// Requires AWS-LC or BoringSSL or OpenSSL 1.0.2 or newer.
3332    #[corresponds(SSL_get0_param)]
3333    #[cfg(any(ossl102, boringssl, libressl261, awslc))]
3334    pub fn param_mut(&mut self) -> &mut X509VerifyParamRef {
3335        unsafe { X509VerifyParamRef::from_ptr_mut(ffi::SSL_get0_param(self.as_ptr())) }
3336    }
3337
3338    /// Returns the certificate verification result.
3339    #[corresponds(SSL_get_verify_result)]
3340    pub fn verify_result(&self) -> X509VerifyResult {
3341        unsafe { X509VerifyResult::from_raw(ffi::SSL_get_verify_result(self.as_ptr()) as c_int) }
3342    }
3343
3344    /// Returns a shared reference to the SSL session.
3345    #[corresponds(SSL_get_session)]
3346    pub fn session(&self) -> Option<&SslSessionRef> {
3347        unsafe {
3348            let p = ffi::SSL_get_session(self.as_ptr());
3349            SslSessionRef::from_const_ptr_opt(p)
3350        }
3351    }
3352
3353    /// Copies the `client_random` value sent by the client in the TLS handshake into a buffer.
3354    ///
3355    /// Returns the number of bytes copied, or if the buffer is empty, the size of the `client_random`
3356    /// value.
3357    ///
3358    /// Requires OpenSSL 1.1.0 or LibreSSL 2.7.0 or newer.
3359    #[corresponds(SSL_get_client_random)]
3360    #[cfg(any(ossl110, libressl270))]
3361    pub fn client_random(&self, buf: &mut [u8]) -> usize {
3362        unsafe {
3363            ffi::SSL_get_client_random(self.as_ptr(), buf.as_mut_ptr() as *mut c_uchar, buf.len())
3364        }
3365    }
3366
3367    /// Copies the `server_random` value sent by the server in the TLS handshake into a buffer.
3368    ///
3369    /// Returns the number of bytes copied, or if the buffer is empty, the size of the `server_random`
3370    /// value.
3371    ///
3372    /// Requires OpenSSL 1.1.0 or LibreSSL 2.7.0 or newer.
3373    #[corresponds(SSL_get_server_random)]
3374    #[cfg(any(ossl110, libressl270))]
3375    pub fn server_random(&self, buf: &mut [u8]) -> usize {
3376        unsafe {
3377            ffi::SSL_get_server_random(self.as_ptr(), buf.as_mut_ptr() as *mut c_uchar, buf.len())
3378        }
3379    }
3380
3381    /// Derives keying material for application use in accordance to RFC 5705.
3382    #[corresponds(SSL_export_keying_material)]
3383    pub fn export_keying_material(
3384        &self,
3385        out: &mut [u8],
3386        label: &str,
3387        context: Option<&[u8]>,
3388    ) -> Result<(), ErrorStack> {
3389        unsafe {
3390            let (context, contextlen, use_context) = match context {
3391                Some(context) => (context.as_ptr() as *const c_uchar, context.len(), 1),
3392                None => (ptr::null(), 0, 0),
3393            };
3394            cvt(ffi::SSL_export_keying_material(
3395                self.as_ptr(),
3396                out.as_mut_ptr() as *mut c_uchar,
3397                out.len(),
3398                label.as_ptr() as *const c_char,
3399                label.len(),
3400                context,
3401                contextlen,
3402                use_context,
3403            ))
3404            .map(|_| ())
3405        }
3406    }
3407
3408    /// Derives keying material for application use in accordance to RFC 5705.
3409    ///
3410    /// This function is only usable with TLSv1.3, wherein there is no distinction between an empty context and no
3411    /// context. Therefore, unlike `export_keying_material`, `context` must always be supplied.
3412    ///
3413    /// Requires OpenSSL 1.1.1 or newer.
3414    #[corresponds(SSL_export_keying_material_early)]
3415    #[cfg(ossl111)]
3416    pub fn export_keying_material_early(
3417        &self,
3418        out: &mut [u8],
3419        label: &str,
3420        context: &[u8],
3421    ) -> Result<(), ErrorStack> {
3422        unsafe {
3423            cvt(ffi::SSL_export_keying_material_early(
3424                self.as_ptr(),
3425                out.as_mut_ptr() as *mut c_uchar,
3426                out.len(),
3427                label.as_ptr() as *const c_char,
3428                label.len(),
3429                context.as_ptr() as *const c_uchar,
3430                context.len(),
3431            ))
3432            .map(|_| ())
3433        }
3434    }
3435
3436    /// Sets the session to be used.
3437    ///
3438    /// This should be called before the handshake to attempt to reuse a previously established
3439    /// session. If the server is not willing to reuse the session, a new one will be transparently
3440    /// negotiated.
3441    ///
3442    /// # Safety
3443    ///
3444    /// The caller of this method is responsible for ensuring that the session is associated
3445    /// with the same `SslContext` as this `Ssl`.
3446    #[corresponds(SSL_set_session)]
3447    pub unsafe fn set_session(&mut self, session: &SslSessionRef) -> Result<(), ErrorStack> {
3448        cvt(ffi::SSL_set_session(self.as_ptr(), session.as_ptr())).map(|_| ())
3449    }
3450
3451    /// Determines if the session provided to `set_session` was successfully reused.
3452    #[corresponds(SSL_session_reused)]
3453    pub fn session_reused(&self) -> bool {
3454        unsafe { ffi::SSL_session_reused(self.as_ptr()) != 0 }
3455    }
3456
3457    /// Causes ssl (which must be the client end of a connection) to request a stapled OCSP response from the server
3458    ///
3459    /// This corresponds to [`SSL_enable_ocsp_stapling`].
3460    ///
3461    /// [`SSL_enable_ocsp_stapling`]: https://commondatastorage.googleapis.com/chromium-boringssl-docs/ssl.h.html#SSL_enable_ocsp_stapling
3462    ///
3463    /// Requires BoringSSL.
3464    #[cfg(any(boringssl, awslc))]
3465    pub fn enable_ocsp_stapling(&mut self) {
3466        unsafe { ffi::SSL_enable_ocsp_stapling(self.as_ptr()) }
3467    }
3468
3469    /// Causes ssl (which must be the client end of a connection) to request SCTs from the server
3470    ///
3471    /// This corresponds to [`SSL_enable_signed_cert_timestamps`].
3472    ///
3473    /// [`SSL_enable_signed_cert_timestamps`]: https://commondatastorage.googleapis.com/chromium-boringssl-docs/ssl.h.html#SSL_enable_signed_cert_timestamps
3474    ///
3475    /// Requires BoringSSL.
3476    #[cfg(any(boringssl, awslc))]
3477    pub fn enable_signed_cert_timestamps(&mut self) {
3478        unsafe { ffi::SSL_enable_signed_cert_timestamps(self.as_ptr()) }
3479    }
3480
3481    /// Configures whether sockets on ssl should permute extensions.
3482    ///
3483    /// This corresponds to [`SSL_set_permute_extensions`].
3484    ///
3485    /// [`SSL_set_permute_extensions`]: https://commondatastorage.googleapis.com/chromium-boringssl-docs/ssl.h.html#SSL_set_permute_extensions
3486    ///
3487    /// Requires BoringSSL.
3488    #[cfg(any(boringssl, awslc))]
3489    pub fn set_permute_extensions(&mut self, enabled: bool) {
3490        unsafe { ffi::SSL_set_permute_extensions(self.as_ptr(), enabled as c_int) }
3491    }
3492
3493    /// Enable the processing of signed certificate timestamps (SCTs) for the given SSL connection.
3494    #[corresponds(SSL_enable_ct)]
3495    #[cfg(ossl111)]
3496    pub fn enable_ct(&mut self, validation_mode: SslCtValidationMode) -> Result<(), ErrorStack> {
3497        unsafe { cvt(ffi::SSL_enable_ct(self.as_ptr(), validation_mode.0)).map(|_| ()) }
3498    }
3499
3500    /// Check whether CT processing is enabled.
3501    #[corresponds(SSL_ct_is_enabled)]
3502    #[cfg(ossl111)]
3503    pub fn ct_is_enabled(&self) -> bool {
3504        unsafe { ffi::SSL_ct_is_enabled(self.as_ptr()) == 1 }
3505    }
3506
3507    /// Sets the status response a client wishes the server to reply with.
3508    #[corresponds(SSL_set_tlsext_status_type)]
3509    pub fn set_status_type(&mut self, type_: StatusType) -> Result<(), ErrorStack> {
3510        unsafe {
3511            cvt(ffi::SSL_set_tlsext_status_type(self.as_ptr(), type_.as_raw()) as c_int).map(|_| ())
3512        }
3513    }
3514
3515    /// Determines if current session used Extended Master Secret
3516    ///
3517    /// Returns `None` if the handshake is still in-progress.
3518    #[corresponds(SSL_get_extms_support)]
3519    #[cfg(ossl110)]
3520    pub fn extms_support(&self) -> Option<bool> {
3521        unsafe {
3522            match ffi::SSL_get_extms_support(self.as_ptr()) {
3523                -1 => None,
3524                ret => Some(ret != 0),
3525            }
3526        }
3527    }
3528
3529    /// Returns the server's OCSP response, if present.
3530    #[corresponds(SSL_get_tlsext_status_ocsp_resp)]
3531    #[cfg(not(any(boringssl, awslc)))]
3532    pub fn ocsp_status(&self) -> Option<&[u8]> {
3533        unsafe {
3534            let mut p = ptr::null_mut();
3535            let len = ffi::SSL_get_tlsext_status_ocsp_resp(self.as_ptr(), &mut p);
3536
3537            if len < 0 {
3538                None
3539            } else {
3540                Some(util::from_raw_parts(p as *const u8, len as usize))
3541            }
3542        }
3543    }
3544
3545    /// Returns the server's OCSP response, if present.
3546    #[corresponds(SSL_get0_ocsp_response)]
3547    #[cfg(any(boringssl, awslc))]
3548    pub fn ocsp_status(&self) -> Option<&[u8]> {
3549        unsafe {
3550            let mut p = ptr::null();
3551            let mut len: usize = 0;
3552            ffi::SSL_get0_ocsp_response(self.as_ptr(), &mut p, &mut len);
3553
3554            if len == 0 {
3555                None
3556            } else {
3557                Some(util::from_raw_parts(p as *const u8, len))
3558            }
3559        }
3560    }
3561
3562    /// Sets the OCSP response to be returned to the client.
3563    #[corresponds(SSL_set_tlsext_status_oscp_resp)]
3564    #[cfg(not(any(boringssl, awslc)))]
3565    pub fn set_ocsp_status(&mut self, response: &[u8]) -> Result<(), ErrorStack> {
3566        unsafe {
3567            assert!(response.len() <= c_int::MAX as usize);
3568            let p = cvt_p(ffi::OPENSSL_malloc(response.len() as _))?;
3569            ptr::copy_nonoverlapping(response.as_ptr(), p as *mut u8, response.len());
3570            cvt(ffi::SSL_set_tlsext_status_ocsp_resp(
3571                self.as_ptr(),
3572                p as *mut c_uchar,
3573                response.len() as c_long,
3574            ) as c_int)
3575            .map(|_| ())
3576            .map_err(|e| {
3577                ffi::OPENSSL_free(p);
3578                e
3579            })
3580        }
3581    }
3582
3583    /// Sets the OCSP response to be returned to the client.
3584    #[corresponds(SSL_set_ocsp_response)]
3585    #[cfg(any(boringssl, awslc))]
3586    pub fn set_ocsp_status(&mut self, response: &[u8]) -> Result<(), ErrorStack> {
3587        unsafe {
3588            cvt(ffi::SSL_set_ocsp_response(
3589                self.as_ptr(),
3590                response.as_ptr(),
3591                response.len(),
3592            ))
3593            .map(|_| ())
3594        }
3595    }
3596
3597    /// Determines if this `Ssl` is configured for server-side or client-side use.
3598    #[corresponds(SSL_is_server)]
3599    pub fn is_server(&self) -> bool {
3600        unsafe { SSL_is_server(self.as_ptr()) != 0 }
3601    }
3602
3603    /// Sets the extra data at the specified index.
3604    ///
3605    /// This can be used to provide data to callbacks registered with the context. Use the
3606    /// `Ssl::new_ex_index` method to create an `Index`.
3607    // FIXME should return a result
3608    #[corresponds(SSL_set_ex_data)]
3609    pub fn set_ex_data<T>(&mut self, index: Index<Ssl, T>, data: T) {
3610        match self.ex_data_mut(index) {
3611            Some(v) => *v = data,
3612            None => unsafe {
3613                let data = Box::new(data);
3614                ffi::SSL_set_ex_data(
3615                    self.as_ptr(),
3616                    index.as_raw(),
3617                    Box::into_raw(data) as *mut c_void,
3618                );
3619            },
3620        }
3621    }
3622
3623    /// Returns a reference to the extra data at the specified index.
3624    #[corresponds(SSL_get_ex_data)]
3625    pub fn ex_data<T>(&self, index: Index<Ssl, T>) -> Option<&T> {
3626        unsafe {
3627            let data = ffi::SSL_get_ex_data(self.as_ptr(), index.as_raw());
3628            if data.is_null() {
3629                None
3630            } else {
3631                Some(&*(data as *const T))
3632            }
3633        }
3634    }
3635
3636    /// Returns a mutable reference to the extra data at the specified index.
3637    #[corresponds(SSL_get_ex_data)]
3638    pub fn ex_data_mut<T>(&mut self, index: Index<Ssl, T>) -> Option<&mut T> {
3639        unsafe {
3640            let data = ffi::SSL_get_ex_data(self.as_ptr(), index.as_raw());
3641            if data.is_null() {
3642                None
3643            } else {
3644                Some(&mut *(data as *mut T))
3645            }
3646        }
3647    }
3648
3649    /// Sets the maximum amount of early data that will be accepted on this connection.
3650    ///
3651    /// Requires OpenSSL 1.1.1 or LibreSSL 3.4.0 or newer.
3652    #[corresponds(SSL_set_max_early_data)]
3653    #[cfg(any(ossl111, libressl340))]
3654    pub fn set_max_early_data(&mut self, bytes: u32) -> Result<(), ErrorStack> {
3655        if unsafe { ffi::SSL_set_max_early_data(self.as_ptr(), bytes) } == 1 {
3656            Ok(())
3657        } else {
3658            Err(ErrorStack::get())
3659        }
3660    }
3661
3662    /// Gets the maximum amount of early data that can be sent on this connection.
3663    ///
3664    /// Requires OpenSSL 1.1.1 or LibreSSL 3.4.0 or newer.
3665    #[corresponds(SSL_get_max_early_data)]
3666    #[cfg(any(ossl111, libressl340))]
3667    pub fn max_early_data(&self) -> u32 {
3668        unsafe { ffi::SSL_get_max_early_data(self.as_ptr()) }
3669    }
3670
3671    /// Copies the contents of the last Finished message sent to the peer into the provided buffer.
3672    ///
3673    /// The total size of the message is returned, so this can be used to determine the size of the
3674    /// buffer required.
3675    #[corresponds(SSL_get_finished)]
3676    pub fn finished(&self, buf: &mut [u8]) -> usize {
3677        unsafe { ffi::SSL_get_finished(self.as_ptr(), buf.as_mut_ptr() as *mut c_void, buf.len()) }
3678    }
3679
3680    /// Copies the contents of the last Finished message received from the peer into the provided
3681    /// buffer.
3682    ///
3683    /// The total size of the message is returned, so this can be used to determine the size of the
3684    /// buffer required.
3685    #[corresponds(SSL_get_peer_finished)]
3686    pub fn peer_finished(&self, buf: &mut [u8]) -> usize {
3687        unsafe {
3688            ffi::SSL_get_peer_finished(self.as_ptr(), buf.as_mut_ptr() as *mut c_void, buf.len())
3689        }
3690    }
3691
3692    /// Determines if the initial handshake has been completed.
3693    #[corresponds(SSL_is_init_finished)]
3694    #[cfg(ossl110)]
3695    pub fn is_init_finished(&self) -> bool {
3696        unsafe { ffi::SSL_is_init_finished(self.as_ptr()) != 0 }
3697    }
3698
3699    /// Determines if the client's hello message is in the SSLv2 format.
3700    ///
3701    /// This can only be used inside of the client hello callback. Otherwise, `false` is returned.
3702    ///
3703    /// Requires OpenSSL 1.1.1 or newer.
3704    #[corresponds(SSL_client_hello_isv2)]
3705    #[cfg(ossl111)]
3706    pub fn client_hello_isv2(&self) -> bool {
3707        unsafe { ffi::SSL_client_hello_isv2(self.as_ptr()) != 0 }
3708    }
3709
3710    /// Returns the legacy version field of the client's hello message.
3711    ///
3712    /// This can only be used inside of the client hello callback. Otherwise, `None` is returned.
3713    ///
3714    /// Requires OpenSSL 1.1.1 or newer.
3715    #[corresponds(SSL_client_hello_get0_legacy_version)]
3716    #[cfg(ossl111)]
3717    pub fn client_hello_legacy_version(&self) -> Option<SslVersion> {
3718        unsafe {
3719            let version = ffi::SSL_client_hello_get0_legacy_version(self.as_ptr());
3720            if version == 0 {
3721                None
3722            } else {
3723                Some(SslVersion(version as c_int))
3724            }
3725        }
3726    }
3727
3728    /// Returns the random field of the client's hello message.
3729    ///
3730    /// This can only be used inside of the client hello callback. Otherwise, `None` is returned.
3731    ///
3732    /// Requires OpenSSL 1.1.1 or newer.
3733    #[corresponds(SSL_client_hello_get0_random)]
3734    #[cfg(ossl111)]
3735    pub fn client_hello_random(&self) -> Option<&[u8]> {
3736        unsafe {
3737            let mut ptr = ptr::null();
3738            let len = ffi::SSL_client_hello_get0_random(self.as_ptr(), &mut ptr);
3739            if len == 0 {
3740                None
3741            } else {
3742                Some(util::from_raw_parts(ptr, len))
3743            }
3744        }
3745    }
3746
3747    /// Returns the session ID field of the client's hello message.
3748    ///
3749    /// This can only be used inside of the client hello callback. Otherwise, `None` is returned.
3750    ///
3751    /// Requires OpenSSL 1.1.1 or newer.
3752    #[corresponds(SSL_client_hello_get0_session_id)]
3753    #[cfg(ossl111)]
3754    pub fn client_hello_session_id(&self) -> Option<&[u8]> {
3755        unsafe {
3756            let mut ptr = ptr::null();
3757            let len = ffi::SSL_client_hello_get0_session_id(self.as_ptr(), &mut ptr);
3758            if len == 0 {
3759                None
3760            } else {
3761                Some(util::from_raw_parts(ptr, len))
3762            }
3763        }
3764    }
3765
3766    /// Returns the ciphers field of the client's hello message.
3767    ///
3768    /// This can only be used inside of the client hello callback. Otherwise, `None` is returned.
3769    ///
3770    /// Requires OpenSSL 1.1.1 or newer.
3771    #[corresponds(SSL_client_hello_get0_ciphers)]
3772    #[cfg(ossl111)]
3773    pub fn client_hello_ciphers(&self) -> Option<&[u8]> {
3774        unsafe {
3775            let mut ptr = ptr::null();
3776            let len = ffi::SSL_client_hello_get0_ciphers(self.as_ptr(), &mut ptr);
3777            if len == 0 {
3778                None
3779            } else {
3780                Some(util::from_raw_parts(ptr, len))
3781            }
3782        }
3783    }
3784
3785    /// Provides access to individual extensions from the ClientHello on a per-extension basis.
3786    ///
3787    /// This can only be used inside of the client hello callback. Otherwise, `None` is returned.
3788    ///
3789    /// Requires OpenSSL 1.1.1 or newer.
3790    #[cfg(ossl111)]
3791    pub fn client_hello_ext(&self, ext_type: TlsExtType) -> Option<&[u8]> {
3792        unsafe {
3793            let mut ptr = ptr::null();
3794            let mut len = 0usize;
3795            let r = ffi::SSL_client_hello_get0_ext(
3796                self.as_ptr(),
3797                ext_type.as_raw() as _,
3798                &mut ptr,
3799                &mut len,
3800            );
3801            if r == 0 {
3802                None
3803            } else {
3804                Some(util::from_raw_parts(ptr, len))
3805            }
3806        }
3807    }
3808
3809    /// Decodes a slice of wire-format cipher suite specification bytes. Unsupported cipher suites
3810    /// are ignored.
3811    ///
3812    /// Requires OpenSSL 1.1.1 or newer.
3813    #[corresponds(SSL_bytes_to_cipher_list)]
3814    #[cfg(ossl111)]
3815    pub fn bytes_to_cipher_list(
3816        &self,
3817        bytes: &[u8],
3818        isv2format: bool,
3819    ) -> Result<CipherLists, ErrorStack> {
3820        unsafe {
3821            let ptr = bytes.as_ptr();
3822            let len = bytes.len();
3823            let mut sk = ptr::null_mut();
3824            let mut scsvs = ptr::null_mut();
3825            let res = ffi::SSL_bytes_to_cipher_list(
3826                self.as_ptr(),
3827                ptr,
3828                len,
3829                isv2format as c_int,
3830                &mut sk,
3831                &mut scsvs,
3832            );
3833            if res == 1 {
3834                Ok(CipherLists {
3835                    suites: Stack::from_ptr(sk),
3836                    signalling_suites: Stack::from_ptr(scsvs),
3837                })
3838            } else {
3839                Err(ErrorStack::get())
3840            }
3841        }
3842    }
3843
3844    /// Returns the compression methods field of the client's hello message.
3845    ///
3846    /// This can only be used inside of the client hello callback. Otherwise, `None` is returned.
3847    ///
3848    /// Requires OpenSSL 1.1.1 or newer.
3849    #[corresponds(SSL_client_hello_get0_compression_methods)]
3850    #[cfg(ossl111)]
3851    pub fn client_hello_compression_methods(&self) -> Option<&[u8]> {
3852        unsafe {
3853            let mut ptr = ptr::null();
3854            let len = ffi::SSL_client_hello_get0_compression_methods(self.as_ptr(), &mut ptr);
3855            if len == 0 {
3856                None
3857            } else {
3858                Some(util::from_raw_parts(ptr, len))
3859            }
3860        }
3861    }
3862
3863    /// Sets the MTU used for DTLS connections.
3864    #[corresponds(SSL_set_mtu)]
3865    pub fn set_mtu(&mut self, mtu: u32) -> Result<(), ErrorStack> {
3866        unsafe { cvt(ffi::SSL_set_mtu(self.as_ptr(), mtu as MtuTy) as c_int).map(|_| ()) }
3867    }
3868
3869    /// Returns the PSK identity hint used during connection setup.
3870    ///
3871    /// May return `None` if no PSK identity hint was used during the connection setup.
3872    #[corresponds(SSL_get_psk_identity_hint)]
3873    #[cfg(not(osslconf = "OPENSSL_NO_PSK"))]
3874    pub fn psk_identity_hint(&self) -> Option<&[u8]> {
3875        unsafe {
3876            let ptr = ffi::SSL_get_psk_identity_hint(self.as_ptr());
3877            if ptr.is_null() {
3878                None
3879            } else {
3880                Some(CStr::from_ptr(ptr).to_bytes())
3881            }
3882        }
3883    }
3884
3885    /// Returns the PSK identity used during connection setup.
3886    #[corresponds(SSL_get_psk_identity)]
3887    #[cfg(not(osslconf = "OPENSSL_NO_PSK"))]
3888    pub fn psk_identity(&self) -> Option<&[u8]> {
3889        unsafe {
3890            let ptr = ffi::SSL_get_psk_identity(self.as_ptr());
3891            if ptr.is_null() {
3892                None
3893            } else {
3894                Some(CStr::from_ptr(ptr).to_bytes())
3895            }
3896        }
3897    }
3898
3899    #[corresponds(SSL_add0_chain_cert)]
3900    #[cfg(any(ossl102, libressl291, boringssl, awslc))]
3901    pub fn add_chain_cert(&mut self, chain: X509) -> Result<(), ErrorStack> {
3902        unsafe {
3903            cvt(ffi::SSL_add0_chain_cert(self.as_ptr(), chain.as_ptr()) as c_int).map(|_| ())?;
3904            mem::forget(chain);
3905        }
3906        Ok(())
3907    }
3908
3909    /// Sets a new default TLS/SSL method for SSL objects
3910    #[cfg(not(any(boringssl, awslc)))]
3911    pub fn set_method(&mut self, method: SslMethod) -> Result<(), ErrorStack> {
3912        unsafe {
3913            cvt(ffi::SSL_set_ssl_method(self.as_ptr(), method.as_ptr()))?;
3914        };
3915        Ok(())
3916    }
3917
3918    /// Loads the private key from a file.
3919    #[corresponds(SSL_use_Private_Key_file)]
3920    pub fn set_private_key_file<P: AsRef<Path>>(
3921        &mut self,
3922        path: P,
3923        ssl_file_type: SslFiletype,
3924    ) -> Result<(), ErrorStack> {
3925        let p = path.as_ref().as_os_str().to_str().unwrap();
3926        let key_file = CString::new(p).unwrap();
3927        unsafe {
3928            cvt(ffi::SSL_use_PrivateKey_file(
3929                self.as_ptr(),
3930                key_file.as_ptr(),
3931                ssl_file_type.as_raw(),
3932            ))?;
3933        };
3934        Ok(())
3935    }
3936
3937    /// Sets the private key.
3938    #[corresponds(SSL_use_PrivateKey)]
3939    pub fn set_private_key(&mut self, pkey: &PKeyRef<Private>) -> Result<(), ErrorStack> {
3940        unsafe {
3941            cvt(ffi::SSL_use_PrivateKey(self.as_ptr(), pkey.as_ptr()))?;
3942        };
3943        Ok(())
3944    }
3945
3946    #[cfg(tongsuo)]
3947    #[corresponds(SSL_use_enc_Private_Key_file)]
3948    pub fn set_enc_private_key_file<P: AsRef<Path>>(
3949        &mut self,
3950        path: P,
3951        ssl_file_type: SslFiletype,
3952    ) -> Result<(), ErrorStack> {
3953        let p = path.as_ref().as_os_str().to_str().unwrap();
3954        let key_file = CString::new(p).unwrap();
3955        unsafe {
3956            cvt(ffi::SSL_use_enc_PrivateKey_file(
3957                self.as_ptr(),
3958                key_file.as_ptr(),
3959                ssl_file_type.as_raw(),
3960            ))?;
3961        };
3962        Ok(())
3963    }
3964
3965    #[cfg(tongsuo)]
3966    #[corresponds(SSL_use_enc_PrivateKey)]
3967    pub fn set_enc_private_key(&mut self, pkey: &PKeyRef<Private>) -> Result<(), ErrorStack> {
3968        unsafe {
3969            cvt(ffi::SSL_use_enc_PrivateKey(self.as_ptr(), pkey.as_ptr()))?;
3970        };
3971        Ok(())
3972    }
3973
3974    #[cfg(tongsuo)]
3975    #[corresponds(SSL_use_sign_Private_Key_file)]
3976    pub fn set_sign_private_key_file<P: AsRef<Path>>(
3977        &mut self,
3978        path: P,
3979        ssl_file_type: SslFiletype,
3980    ) -> Result<(), ErrorStack> {
3981        let p = path.as_ref().as_os_str().to_str().unwrap();
3982        let key_file = CString::new(p).unwrap();
3983        unsafe {
3984            cvt(ffi::SSL_use_sign_PrivateKey_file(
3985                self.as_ptr(),
3986                key_file.as_ptr(),
3987                ssl_file_type.as_raw(),
3988            ))?;
3989        };
3990        Ok(())
3991    }
3992
3993    #[cfg(tongsuo)]
3994    #[corresponds(SSL_use_sign_PrivateKey)]
3995    pub fn set_sign_private_key(&mut self, pkey: &PKeyRef<Private>) -> Result<(), ErrorStack> {
3996        unsafe {
3997            cvt(ffi::SSL_use_sign_PrivateKey(self.as_ptr(), pkey.as_ptr()))?;
3998        };
3999        Ok(())
4000    }
4001
4002    /// Sets the certificate
4003    #[corresponds(SSL_use_certificate)]
4004    pub fn set_certificate(&mut self, cert: &X509Ref) -> Result<(), ErrorStack> {
4005        unsafe {
4006            cvt(ffi::SSL_use_certificate(self.as_ptr(), cert.as_ptr()))?;
4007        };
4008        Ok(())
4009    }
4010
4011    #[cfg(tongsuo)]
4012    #[corresponds(SSL_use_enc_certificate)]
4013    pub fn set_enc_certificate(&mut self, cert: &X509Ref) -> Result<(), ErrorStack> {
4014        unsafe {
4015            cvt(ffi::SSL_use_enc_certificate(self.as_ptr(), cert.as_ptr()))?;
4016        };
4017        Ok(())
4018    }
4019
4020    #[cfg(tongsuo)]
4021    #[corresponds(SSL_use_sign_certificate)]
4022    pub fn set_sign_certificate(&mut self, cert: &X509Ref) -> Result<(), ErrorStack> {
4023        unsafe {
4024            cvt(ffi::SSL_use_sign_certificate(self.as_ptr(), cert.as_ptr()))?;
4025        };
4026        Ok(())
4027    }
4028
4029    /// Loads a certificate chain from a file.
4030    ///
4031    /// The file should contain a sequence of PEM-formatted certificates, the first being the leaf
4032    /// certificate, and the remainder forming the chain of certificates up to and including the
4033    /// trusted root certificate.
4034    #[corresponds(SSL_use_certificate_chain_file)]
4035    #[cfg(any(ossl110, libressl332))]
4036    pub fn set_certificate_chain_file<P: AsRef<Path>>(
4037        &mut self,
4038        path: P,
4039    ) -> Result<(), ErrorStack> {
4040        let p = path.as_ref().as_os_str().to_str().unwrap();
4041        let cert_file = CString::new(p).unwrap();
4042        unsafe {
4043            cvt(ffi::SSL_use_certificate_chain_file(
4044                self.as_ptr(),
4045                cert_file.as_ptr(),
4046            ))?;
4047        };
4048        Ok(())
4049    }
4050
4051    /// Sets ca certificate that client trusted
4052    #[corresponds(SSL_add_client_CA)]
4053    pub fn add_client_ca(&mut self, cacert: &X509Ref) -> Result<(), ErrorStack> {
4054        unsafe {
4055            cvt(ffi::SSL_add_client_CA(self.as_ptr(), cacert.as_ptr()))?;
4056        };
4057        Ok(())
4058    }
4059
4060    // Sets the list of CAs sent to the client when requesting a client certificate for the chosen ssl
4061    #[corresponds(SSL_set_client_CA_list)]
4062    pub fn set_client_ca_list(&mut self, list: Stack<X509Name>) {
4063        unsafe { ffi::SSL_set_client_CA_list(self.as_ptr(), list.as_ptr()) }
4064        mem::forget(list);
4065    }
4066
4067    /// Sets the minimum supported protocol version.
4068    ///
4069    /// A value of `None` will enable protocol versions down to the lowest version supported by
4070    /// OpenSSL.
4071    ///
4072    /// Requires AWS-LC or BoringSSL or OpenSSL 1.1.0 or LibreSSL 2.6.1 or newer.
4073    #[corresponds(SSL_set_min_proto_version)]
4074    #[cfg(any(ossl110, libressl261, boringssl, awslc))]
4075    pub fn set_min_proto_version(&mut self, version: Option<SslVersion>) -> Result<(), ErrorStack> {
4076        unsafe {
4077            cvt(ffi::SSL_set_min_proto_version(
4078                self.as_ptr(),
4079                version.map_or(0, |v| v.0 as _),
4080            ))
4081            .map(|_| ())
4082        }
4083    }
4084
4085    /// Sets the maximum supported protocol version.
4086    ///
4087    /// A value of `None` will enable protocol versions up to the highest version supported by
4088    /// OpenSSL.
4089    ///
4090    /// Requires AWS-LC or BoringSSL or OpenSSL 1.1.0 or or LibreSSL 2.6.1 or newer.
4091    #[corresponds(SSL_set_max_proto_version)]
4092    #[cfg(any(ossl110, libressl261, boringssl, awslc))]
4093    pub fn set_max_proto_version(&mut self, version: Option<SslVersion>) -> Result<(), ErrorStack> {
4094        unsafe {
4095            cvt(ffi::SSL_set_max_proto_version(
4096                self.as_ptr(),
4097                version.map_or(0, |v| v.0 as _),
4098            ))
4099            .map(|_| ())
4100        }
4101    }
4102
4103    /// Sets the list of supported ciphers for the TLSv1.3 protocol.
4104    ///
4105    /// The `set_cipher_list` method controls the cipher suites for protocols before TLSv1.3.
4106    ///
4107    /// The format consists of TLSv1.3 cipher suite names separated by `:` characters in order of
4108    /// preference.
4109    ///
4110    /// Requires OpenSSL 1.1.1 or LibreSSL 3.4.0 or newer.
4111    #[corresponds(SSL_set_ciphersuites)]
4112    #[cfg(any(ossl111, libressl340))]
4113    pub fn set_ciphersuites(&mut self, cipher_list: &str) -> Result<(), ErrorStack> {
4114        let cipher_list = CString::new(cipher_list).unwrap();
4115        unsafe {
4116            cvt(ffi::SSL_set_ciphersuites(
4117                self.as_ptr(),
4118                cipher_list.as_ptr() as *const _,
4119            ))
4120            .map(|_| ())
4121        }
4122    }
4123
4124    /// Sets the list of supported ciphers for protocols before TLSv1.3.
4125    ///
4126    /// The `set_ciphersuites` method controls the cipher suites for TLSv1.3.
4127    ///
4128    /// See [`ciphers`] for details on the format.
4129    ///
4130    /// [`ciphers`]: https://docs.openssl.org/master/man1/ciphers/
4131    #[corresponds(SSL_set_cipher_list)]
4132    pub fn set_cipher_list(&mut self, cipher_list: &str) -> Result<(), ErrorStack> {
4133        let cipher_list = CString::new(cipher_list).unwrap();
4134        unsafe {
4135            cvt(ffi::SSL_set_cipher_list(
4136                self.as_ptr(),
4137                cipher_list.as_ptr() as *const _,
4138            ))
4139            .map(|_| ())
4140        }
4141    }
4142
4143    /// Set the certificate store used for certificate verification
4144    #[corresponds(SSL_set_cert_store)]
4145    #[cfg(any(ossl102, boringssl, awslc))]
4146    pub fn set_verify_cert_store(&mut self, cert_store: X509Store) -> Result<(), ErrorStack> {
4147        unsafe {
4148            cvt(ffi::SSL_set0_verify_cert_store(self.as_ptr(), cert_store.as_ptr()) as c_int)?;
4149            mem::forget(cert_store);
4150            Ok(())
4151        }
4152    }
4153
4154    /// Sets the number of TLS 1.3 session tickets that will be sent to a client after a full
4155    /// handshake.
4156    ///
4157    /// Requires OpenSSL 1.1.1 or newer.
4158    #[corresponds(SSL_set_num_tickets)]
4159    #[cfg(ossl111)]
4160    pub fn set_num_tickets(&mut self, num_tickets: usize) -> Result<(), ErrorStack> {
4161        unsafe { cvt(ffi::SSL_set_num_tickets(self.as_ptr(), num_tickets)).map(|_| ()) }
4162    }
4163
4164    /// Gets the number of TLS 1.3 session tickets that will be sent to a client after a full
4165    /// handshake.
4166    ///
4167    /// Requires OpenSSL 1.1.1 or newer.
4168    #[corresponds(SSL_get_num_tickets)]
4169    #[cfg(ossl111)]
4170    pub fn num_tickets(&self) -> usize {
4171        unsafe { ffi::SSL_get_num_tickets(self.as_ptr()) }
4172    }
4173
4174    /// Set the context's security level to a value between 0 and 5, inclusive.
4175    /// A security value of 0 allows allows all parameters and algorithms.
4176    ///
4177    /// Requires OpenSSL 1.1.0 or newer.
4178    #[corresponds(SSL_set_security_level)]
4179    #[cfg(any(ossl110, libressl360))]
4180    pub fn set_security_level(&mut self, level: u32) {
4181        unsafe { ffi::SSL_set_security_level(self.as_ptr(), level as c_int) }
4182    }
4183
4184    /// Get the connection's security level, which controls the allowed parameters
4185    /// and algorithms.
4186    ///
4187    /// Requires OpenSSL 1.1.0 or newer.
4188    #[corresponds(SSL_get_security_level)]
4189    #[cfg(any(ossl110, libressl360))]
4190    pub fn security_level(&self) -> u32 {
4191        unsafe { ffi::SSL_get_security_level(self.as_ptr()) as u32 }
4192    }
4193
4194    /// Get the temporary key provided by the peer that is used during key
4195    /// exchange.
4196    // We use an owned value because EVP_KEY free need to be called when it is
4197    // dropped
4198    #[corresponds(SSL_get_peer_tmp_key)]
4199    #[cfg(ossl300)]
4200    pub fn peer_tmp_key(&self) -> Result<PKey<Public>, ErrorStack> {
4201        unsafe {
4202            let mut key = ptr::null_mut();
4203            match cvt_long(ffi::SSL_get_peer_tmp_key(self.as_ptr(), &mut key)) {
4204                Ok(_) => Ok(PKey::<Public>::from_ptr(key)),
4205                Err(e) => Err(e),
4206            }
4207        }
4208    }
4209
4210    /// Returns the temporary key from the local end of the connection that is
4211    /// used during key exchange.
4212    // We use an owned value because EVP_KEY free need to be called when it is
4213    // dropped
4214    #[corresponds(SSL_get_tmp_key)]
4215    #[cfg(ossl300)]
4216    pub fn tmp_key(&self) -> Result<PKey<Private>, ErrorStack> {
4217        unsafe {
4218            let mut key = ptr::null_mut();
4219            match cvt_long(ffi::SSL_get_tmp_key(self.as_ptr(), &mut key)) {
4220                Ok(_) => Ok(PKey::<Private>::from_ptr(key)),
4221                Err(e) => Err(e),
4222            }
4223        }
4224    }
4225}
4226
4227/// An SSL stream midway through the handshake process.
4228#[derive(Debug)]
4229pub struct MidHandshakeSslStream<S> {
4230    stream: SslStream<S>,
4231    error: Error,
4232}
4233
4234impl<S> MidHandshakeSslStream<S> {
4235    /// Returns a shared reference to the inner stream.
4236    pub fn get_ref(&self) -> &S {
4237        self.stream.get_ref()
4238    }
4239
4240    /// Returns a mutable reference to the inner stream.
4241    pub fn get_mut(&mut self) -> &mut S {
4242        self.stream.get_mut()
4243    }
4244
4245    /// Returns a shared reference to the `Ssl` of the stream.
4246    pub fn ssl(&self) -> &SslRef {
4247        self.stream.ssl()
4248    }
4249
4250    /// Returns a mutable reference to the `Ssl` of the stream.
4251    pub fn ssl_mut(&mut self) -> &mut SslRef {
4252        self.stream.ssl_mut()
4253    }
4254
4255    /// Returns the underlying error which interrupted this handshake.
4256    pub fn error(&self) -> &Error {
4257        &self.error
4258    }
4259
4260    /// Consumes `self`, returning its error.
4261    pub fn into_error(self) -> Error {
4262        self.error
4263    }
4264}
4265
4266impl<S> MidHandshakeSslStream<S>
4267where
4268    S: Read + Write,
4269{
4270    /// Restarts the handshake process.
4271    ///
4272    #[corresponds(SSL_do_handshake)]
4273    pub fn handshake(mut self) -> Result<SslStream<S>, HandshakeError<S>> {
4274        match self.stream.do_handshake() {
4275            Ok(()) => Ok(self.stream),
4276            Err(error) => {
4277                self.error = error;
4278                match self.error.code() {
4279                    ErrorCode::WANT_READ | ErrorCode::WANT_WRITE => {
4280                        Err(HandshakeError::WouldBlock(self))
4281                    }
4282                    _ => Err(HandshakeError::Failure(self)),
4283                }
4284            }
4285        }
4286    }
4287}
4288
4289/// A TLS session over a stream.
4290pub struct SslStream<S> {
4291    ssl: ManuallyDrop<Ssl>,
4292    method: ManuallyDrop<BioMethod>,
4293    _p: PhantomData<S>,
4294}
4295
4296impl<S> Drop for SslStream<S> {
4297    fn drop(&mut self) {
4298        // ssl holds a reference to method internally so it has to drop first
4299        unsafe {
4300            ManuallyDrop::drop(&mut self.ssl);
4301            ManuallyDrop::drop(&mut self.method);
4302        }
4303    }
4304}
4305
4306impl<S> fmt::Debug for SslStream<S>
4307where
4308    S: fmt::Debug,
4309{
4310    fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
4311        fmt.debug_struct("SslStream")
4312            .field("stream", &self.get_ref())
4313            .field("ssl", &self.ssl())
4314            .finish()
4315    }
4316}
4317
4318impl<S: Read + Write> SslStream<S> {
4319    /// Creates a new `SslStream`.
4320    ///
4321    /// This function performs no IO; the stream will not have performed any part of the handshake
4322    /// with the peer. If the `Ssl` was configured with [`SslRef::set_connect_state`] or
4323    /// [`SslRef::set_accept_state`], the handshake can be performed automatically during the first
4324    /// call to read or write. Otherwise the `connect` and `accept` methods can be used to
4325    /// explicitly perform the handshake.
4326    #[corresponds(SSL_set_bio)]
4327    pub fn new(ssl: Ssl, stream: S) -> Result<Self, ErrorStack> {
4328        let (bio, method) = bio::new(stream)?;
4329        unsafe {
4330            ffi::SSL_set_bio(ssl.as_ptr(), bio, bio);
4331        }
4332
4333        Ok(SslStream {
4334            ssl: ManuallyDrop::new(ssl),
4335            method: ManuallyDrop::new(method),
4336            _p: PhantomData,
4337        })
4338    }
4339
4340    /// Read application data transmitted by a client before handshake completion.
4341    ///
4342    /// Useful for reducing latency, but vulnerable to replay attacks. Call
4343    /// [`SslRef::set_accept_state`] first.
4344    ///
4345    /// Returns `Ok(0)` if all early data has been read.
4346    ///
4347    /// Requires OpenSSL 1.1.1 or LibreSSL 3.4.0 or newer.
4348    #[corresponds(SSL_read_early_data)]
4349    #[cfg(any(ossl111, libressl340))]
4350    pub fn read_early_data(&mut self, buf: &mut [u8]) -> Result<usize, Error> {
4351        let mut read = 0;
4352        let ret = unsafe {
4353            ffi::SSL_read_early_data(
4354                self.ssl.as_ptr(),
4355                buf.as_ptr() as *mut c_void,
4356                buf.len(),
4357                &mut read,
4358            )
4359        };
4360        match ret {
4361            ffi::SSL_READ_EARLY_DATA_ERROR => Err(self.make_error(ret)),
4362            ffi::SSL_READ_EARLY_DATA_SUCCESS => Ok(read),
4363            ffi::SSL_READ_EARLY_DATA_FINISH => Ok(0),
4364            _ => unreachable!(),
4365        }
4366    }
4367
4368    /// Send data to the server without blocking on handshake completion.
4369    ///
4370    /// Useful for reducing latency, but vulnerable to replay attacks. Call
4371    /// [`SslRef::set_connect_state`] first.
4372    ///
4373    /// Requires OpenSSL 1.1.1 or LibreSSL 3.4.0 or newer.
4374    #[corresponds(SSL_write_early_data)]
4375    #[cfg(any(ossl111, libressl340))]
4376    pub fn write_early_data(&mut self, buf: &[u8]) -> Result<usize, Error> {
4377        let mut written = 0;
4378        let ret = unsafe {
4379            ffi::SSL_write_early_data(
4380                self.ssl.as_ptr(),
4381                buf.as_ptr() as *const c_void,
4382                buf.len(),
4383                &mut written,
4384            )
4385        };
4386        if ret > 0 {
4387            Ok(written)
4388        } else {
4389            Err(self.make_error(ret))
4390        }
4391    }
4392
4393    /// Initiates a client-side TLS handshake.
4394    ///
4395    /// # Warning
4396    ///
4397    /// OpenSSL's default configuration is insecure. It is highly recommended to use
4398    /// `SslConnector` rather than `Ssl` directly, as it manages that configuration.
4399    #[corresponds(SSL_connect)]
4400    pub fn connect(&mut self) -> Result<(), Error> {
4401        let ret = unsafe { ffi::SSL_connect(self.ssl.as_ptr()) };
4402        if ret > 0 {
4403            Ok(())
4404        } else {
4405            Err(self.make_error(ret))
4406        }
4407    }
4408
4409    /// Initiates a server-side TLS handshake.
4410    ///
4411    /// # Warning
4412    ///
4413    /// OpenSSL's default configuration is insecure. It is highly recommended to use
4414    /// `SslAcceptor` rather than `Ssl` directly, as it manages that configuration.
4415    #[corresponds(SSL_accept)]
4416    pub fn accept(&mut self) -> Result<(), Error> {
4417        let ret = unsafe { ffi::SSL_accept(self.ssl.as_ptr()) };
4418        if ret > 0 {
4419            Ok(())
4420        } else {
4421            Err(self.make_error(ret))
4422        }
4423    }
4424
4425    /// Initiates the handshake.
4426    ///
4427    /// This will fail if `set_accept_state` or `set_connect_state` was not called first.
4428    #[corresponds(SSL_do_handshake)]
4429    pub fn do_handshake(&mut self) -> Result<(), Error> {
4430        let ret = unsafe { ffi::SSL_do_handshake(self.ssl.as_ptr()) };
4431        if ret > 0 {
4432            Ok(())
4433        } else {
4434            Err(self.make_error(ret))
4435        }
4436    }
4437
4438    /// Perform a stateless server-side handshake.
4439    ///
4440    /// Requires that cookie generation and verification callbacks were
4441    /// set on the SSL context.
4442    ///
4443    /// Returns `Ok(true)` if a complete ClientHello containing a valid cookie
4444    /// was read, in which case the handshake should be continued via
4445    /// `accept`. If a HelloRetryRequest containing a fresh cookie was
4446    /// transmitted, `Ok(false)` is returned instead. If the handshake cannot
4447    /// proceed at all, `Err` is returned.
4448    #[corresponds(SSL_stateless)]
4449    #[cfg(ossl111)]
4450    pub fn stateless(&mut self) -> Result<bool, ErrorStack> {
4451        match unsafe { ffi::SSL_stateless(self.ssl.as_ptr()) } {
4452            1 => Ok(true),
4453            0 => Ok(false),
4454            -1 => Err(ErrorStack::get()),
4455            _ => unreachable!(),
4456        }
4457    }
4458
4459    /// Like `read`, but takes a possibly-uninitialized slice.
4460    ///
4461    /// # Safety
4462    ///
4463    /// No portion of `buf` will be de-initialized by this method. If the method returns `Ok(n)`,
4464    /// then the first `n` bytes of `buf` are guaranteed to be initialized.
4465    #[corresponds(SSL_read_ex)]
4466    pub fn read_uninit(&mut self, buf: &mut [MaybeUninit<u8>]) -> io::Result<usize> {
4467        loop {
4468            match self.ssl_read_uninit(buf) {
4469                Ok(n) => return Ok(n),
4470                Err(ref e) if e.code() == ErrorCode::ZERO_RETURN => return Ok(0),
4471                Err(ref e) if e.code() == ErrorCode::SYSCALL && e.io_error().is_none() => {
4472                    return Ok(0);
4473                }
4474                Err(ref e) if e.code() == ErrorCode::WANT_READ && e.io_error().is_none() => {}
4475                Err(e) => {
4476                    return Err(e
4477                        .into_io_error()
4478                        .unwrap_or_else(|e| io::Error::new(io::ErrorKind::Other, e)));
4479                }
4480            }
4481        }
4482    }
4483
4484    /// Like `read`, but returns an `ssl::Error` rather than an `io::Error`.
4485    ///
4486    /// It is particularly useful with a non-blocking socket, where the error value will identify if
4487    /// OpenSSL is waiting on read or write readiness.
4488    #[corresponds(SSL_read_ex)]
4489    pub fn ssl_read(&mut self, buf: &mut [u8]) -> Result<usize, Error> {
4490        // SAFETY: `ssl_read_uninit` does not de-initialize the buffer.
4491        unsafe {
4492            self.ssl_read_uninit(util::from_raw_parts_mut(
4493                buf.as_mut_ptr().cast::<MaybeUninit<u8>>(),
4494                buf.len(),
4495            ))
4496        }
4497    }
4498
4499    /// Like `ssl_read`, but takes a possibly-uninitialized slice.
4500    ///
4501    /// # Safety
4502    ///
4503    /// No portion of `buf` will be de-initialized by this method. If the method returns `Ok(n)`,
4504    /// then the first `n` bytes of `buf` are guaranteed to be initialized.
4505    #[corresponds(SSL_read_ex)]
4506    pub fn ssl_read_uninit(&mut self, buf: &mut [MaybeUninit<u8>]) -> Result<usize, Error> {
4507        cfg_if! {
4508            if #[cfg(any(ossl111, libressl350))] {
4509                let mut readbytes = 0;
4510                let ret = unsafe {
4511                    ffi::SSL_read_ex(
4512                        self.ssl().as_ptr(),
4513                        buf.as_mut_ptr().cast(),
4514                        buf.len(),
4515                        &mut readbytes,
4516                    )
4517                };
4518
4519                if ret > 0 {
4520                    Ok(readbytes)
4521                } else {
4522                    Err(self.make_error(ret))
4523                }
4524            } else {
4525                if buf.is_empty() {
4526                    return Ok(0);
4527                }
4528
4529                let len = usize::min(c_int::MAX as usize, buf.len()) as c_int;
4530                let ret = unsafe {
4531                    ffi::SSL_read(self.ssl().as_ptr(), buf.as_mut_ptr().cast(), len)
4532                };
4533                if ret > 0 {
4534                    Ok(ret as usize)
4535                } else {
4536                    Err(self.make_error(ret))
4537                }
4538            }
4539        }
4540    }
4541
4542    /// Like `write`, but returns an `ssl::Error` rather than an `io::Error`.
4543    ///
4544    /// It is particularly useful with a non-blocking socket, where the error value will identify if
4545    /// OpenSSL is waiting on read or write readiness.
4546    #[corresponds(SSL_write_ex)]
4547    pub fn ssl_write(&mut self, buf: &[u8]) -> Result<usize, Error> {
4548        cfg_if! {
4549            if #[cfg(any(ossl111, libressl350))] {
4550                let mut written = 0;
4551                let ret = unsafe {
4552                    ffi::SSL_write_ex(
4553                        self.ssl().as_ptr(),
4554                        buf.as_ptr().cast(),
4555                        buf.len(),
4556                        &mut written,
4557                    )
4558                };
4559
4560                if ret > 0 {
4561                    Ok(written)
4562                } else {
4563                    Err(self.make_error(ret))
4564                }
4565            } else {
4566                if buf.is_empty() {
4567                    return Ok(0);
4568                }
4569
4570                let len = usize::min(c_int::MAX as usize, buf.len()) as c_int;
4571                let ret = unsafe {
4572                    ffi::SSL_write(self.ssl().as_ptr(), buf.as_ptr().cast(), len)
4573                };
4574                if ret > 0 {
4575                    Ok(ret as usize)
4576                } else {
4577                    Err(self.make_error(ret))
4578                }
4579            }
4580        }
4581    }
4582
4583    /// Reads data from the stream, without removing it from the queue.
4584    #[corresponds(SSL_peek_ex)]
4585    pub fn ssl_peek(&mut self, buf: &mut [u8]) -> Result<usize, Error> {
4586        // SAFETY: `ssl_peek_uninit` does not de-initialize the buffer.
4587        unsafe {
4588            self.ssl_peek_uninit(util::from_raw_parts_mut(
4589                buf.as_mut_ptr().cast::<MaybeUninit<u8>>(),
4590                buf.len(),
4591            ))
4592        }
4593    }
4594
4595    /// Like `ssl_peek`, but takes a possibly-uninitialized slice.
4596    ///
4597    /// # Safety
4598    ///
4599    /// No portion of `buf` will be de-initialized by this method. If the method returns `Ok(n)`,
4600    /// then the first `n` bytes of `buf` are guaranteed to be initialized.
4601    #[corresponds(SSL_peek_ex)]
4602    pub fn ssl_peek_uninit(&mut self, buf: &mut [MaybeUninit<u8>]) -> Result<usize, Error> {
4603        cfg_if! {
4604            if #[cfg(any(ossl111, libressl350))] {
4605                let mut readbytes = 0;
4606                let ret = unsafe {
4607                    ffi::SSL_peek_ex(
4608                        self.ssl().as_ptr(),
4609                        buf.as_mut_ptr().cast(),
4610                        buf.len(),
4611                        &mut readbytes,
4612                    )
4613                };
4614
4615                if ret > 0 {
4616                    Ok(readbytes)
4617                } else {
4618                    Err(self.make_error(ret))
4619                }
4620            } else {
4621                if buf.is_empty() {
4622                    return Ok(0);
4623                }
4624
4625                let len = usize::min(c_int::MAX as usize, buf.len()) as c_int;
4626                let ret = unsafe {
4627                    ffi::SSL_peek(self.ssl().as_ptr(), buf.as_mut_ptr().cast(), len)
4628                };
4629                if ret > 0 {
4630                    Ok(ret as usize)
4631                } else {
4632                    Err(self.make_error(ret))
4633                }
4634            }
4635        }
4636    }
4637
4638    /// Shuts down the session.
4639    ///
4640    /// The shutdown process consists of two steps. The first step sends a close notify message to
4641    /// the peer, after which `ShutdownResult::Sent` is returned. The second step awaits the receipt
4642    /// of a close notify message from the peer, after which `ShutdownResult::Received` is returned.
4643    ///
4644    /// While the connection may be closed after the first step, it is recommended to fully shut the
4645    /// session down. In particular, it must be fully shut down if the connection is to be used for
4646    /// further communication in the future.
4647    #[corresponds(SSL_shutdown)]
4648    pub fn shutdown(&mut self) -> Result<ShutdownResult, Error> {
4649        match unsafe { ffi::SSL_shutdown(self.ssl.as_ptr()) } {
4650            0 => Ok(ShutdownResult::Sent),
4651            1 => Ok(ShutdownResult::Received),
4652            n => Err(self.make_error(n)),
4653        }
4654    }
4655
4656    /// Returns the session's shutdown state.
4657    #[corresponds(SSL_get_shutdown)]
4658    pub fn get_shutdown(&mut self) -> ShutdownState {
4659        unsafe {
4660            let bits = ffi::SSL_get_shutdown(self.ssl.as_ptr());
4661            ShutdownState::from_bits_retain(bits)
4662        }
4663    }
4664
4665    /// Sets the session's shutdown state.
4666    ///
4667    /// This can be used to tell OpenSSL that the session should be cached even if a full two-way
4668    /// shutdown was not completed.
4669    #[corresponds(SSL_set_shutdown)]
4670    pub fn set_shutdown(&mut self, state: ShutdownState) {
4671        unsafe { ffi::SSL_set_shutdown(self.ssl.as_ptr(), state.bits()) }
4672    }
4673}
4674
4675impl<S> SslStream<S> {
4676    fn make_error(&mut self, ret: c_int) -> Error {
4677        self.check_panic();
4678
4679        let code = self.ssl.get_error(ret);
4680
4681        let cause = match code {
4682            ErrorCode::SSL => Some(InnerError::Ssl(ErrorStack::get())),
4683            ErrorCode::SYSCALL => {
4684                let errs = ErrorStack::get();
4685                if errs.errors().is_empty() {
4686                    self.get_bio_error().map(InnerError::Io)
4687                } else {
4688                    Some(InnerError::Ssl(errs))
4689                }
4690            }
4691            ErrorCode::ZERO_RETURN => None,
4692            ErrorCode::WANT_READ | ErrorCode::WANT_WRITE => {
4693                self.get_bio_error().map(InnerError::Io)
4694            }
4695            _ => None,
4696        };
4697
4698        Error { code, cause }
4699    }
4700
4701    fn check_panic(&mut self) {
4702        if let Some(err) = unsafe { bio::take_panic::<S>(self.ssl.get_raw_rbio()) } {
4703            resume_unwind(err)
4704        }
4705    }
4706
4707    fn get_bio_error(&mut self) -> Option<io::Error> {
4708        unsafe { bio::take_error::<S>(self.ssl.get_raw_rbio()) }
4709    }
4710
4711    /// Returns a shared reference to the underlying stream.
4712    pub fn get_ref(&self) -> &S {
4713        unsafe {
4714            let bio = self.ssl.get_raw_rbio();
4715            bio::get_ref(bio)
4716        }
4717    }
4718
4719    /// Returns a mutable reference to the underlying stream.
4720    ///
4721    /// # Warning
4722    ///
4723    /// It is inadvisable to read from or write to the underlying stream as it
4724    /// will most likely corrupt the SSL session.
4725    pub fn get_mut(&mut self) -> &mut S {
4726        unsafe {
4727            let bio = self.ssl.get_raw_rbio();
4728            bio::get_mut(bio)
4729        }
4730    }
4731
4732    /// Returns a shared reference to the `Ssl` object associated with this stream.
4733    pub fn ssl(&self) -> &SslRef {
4734        &self.ssl
4735    }
4736
4737    /// Returns a mutable reference to the `Ssl` object associated with this stream.
4738    pub fn ssl_mut(&mut self) -> &mut SslRef {
4739        &mut self.ssl
4740    }
4741}
4742
4743impl<S: Read + Write> Read for SslStream<S> {
4744    fn read(&mut self, buf: &mut [u8]) -> io::Result<usize> {
4745        // SAFETY: `read_uninit` does not de-initialize the buffer
4746        unsafe {
4747            self.read_uninit(util::from_raw_parts_mut(
4748                buf.as_mut_ptr().cast::<MaybeUninit<u8>>(),
4749                buf.len(),
4750            ))
4751        }
4752    }
4753}
4754
4755impl<S: Read + Write> Write for SslStream<S> {
4756    fn write(&mut self, buf: &[u8]) -> io::Result<usize> {
4757        loop {
4758            match self.ssl_write(buf) {
4759                Ok(n) => return Ok(n),
4760                Err(ref e) if e.code() == ErrorCode::WANT_READ && e.io_error().is_none() => {}
4761                Err(e) => {
4762                    return Err(e
4763                        .into_io_error()
4764                        .unwrap_or_else(|e| io::Error::new(io::ErrorKind::Other, e)));
4765                }
4766            }
4767        }
4768    }
4769
4770    fn flush(&mut self) -> io::Result<()> {
4771        self.get_mut().flush()
4772    }
4773}
4774
4775/// A partially constructed `SslStream`, useful for unusual handshakes.
4776#[deprecated(
4777    since = "0.10.32",
4778    note = "use the methods directly on Ssl/SslStream instead"
4779)]
4780pub struct SslStreamBuilder<S> {
4781    inner: SslStream<S>,
4782}
4783
4784#[allow(deprecated)]
4785impl<S> SslStreamBuilder<S>
4786where
4787    S: Read + Write,
4788{
4789    /// Begin creating an `SslStream` atop `stream`
4790    pub fn new(ssl: Ssl, stream: S) -> Self {
4791        Self {
4792            inner: SslStream::new(ssl, stream).unwrap(),
4793        }
4794    }
4795
4796    /// Perform a stateless server-side handshake
4797    ///
4798    /// Requires that cookie generation and verification callbacks were
4799    /// set on the SSL context.
4800    ///
4801    /// Returns `Ok(true)` if a complete ClientHello containing a valid cookie
4802    /// was read, in which case the handshake should be continued via
4803    /// `accept`. If a HelloRetryRequest containing a fresh cookie was
4804    /// transmitted, `Ok(false)` is returned instead. If the handshake cannot
4805    /// proceed at all, `Err` is returned.
4806    #[corresponds(SSL_stateless)]
4807    #[cfg(ossl111)]
4808    pub fn stateless(&mut self) -> Result<bool, ErrorStack> {
4809        match unsafe { ffi::SSL_stateless(self.inner.ssl.as_ptr()) } {
4810            1 => Ok(true),
4811            0 => Ok(false),
4812            -1 => Err(ErrorStack::get()),
4813            _ => unreachable!(),
4814        }
4815    }
4816
4817    /// Configure as an outgoing stream from a client.
4818    #[corresponds(SSL_set_connect_state)]
4819    pub fn set_connect_state(&mut self) {
4820        unsafe { ffi::SSL_set_connect_state(self.inner.ssl.as_ptr()) }
4821    }
4822
4823    /// Configure as an incoming stream to a server.
4824    #[corresponds(SSL_set_accept_state)]
4825    pub fn set_accept_state(&mut self) {
4826        unsafe { ffi::SSL_set_accept_state(self.inner.ssl.as_ptr()) }
4827    }
4828
4829    /// See `Ssl::connect`
4830    pub fn connect(mut self) -> Result<SslStream<S>, HandshakeError<S>> {
4831        match self.inner.connect() {
4832            Ok(()) => Ok(self.inner),
4833            Err(error) => match error.code() {
4834                ErrorCode::WANT_READ | ErrorCode::WANT_WRITE => {
4835                    Err(HandshakeError::WouldBlock(MidHandshakeSslStream {
4836                        stream: self.inner,
4837                        error,
4838                    }))
4839                }
4840                _ => Err(HandshakeError::Failure(MidHandshakeSslStream {
4841                    stream: self.inner,
4842                    error,
4843                })),
4844            },
4845        }
4846    }
4847
4848    /// See `Ssl::accept`
4849    pub fn accept(mut self) -> Result<SslStream<S>, HandshakeError<S>> {
4850        match self.inner.accept() {
4851            Ok(()) => Ok(self.inner),
4852            Err(error) => match error.code() {
4853                ErrorCode::WANT_READ | ErrorCode::WANT_WRITE => {
4854                    Err(HandshakeError::WouldBlock(MidHandshakeSslStream {
4855                        stream: self.inner,
4856                        error,
4857                    }))
4858                }
4859                _ => Err(HandshakeError::Failure(MidHandshakeSslStream {
4860                    stream: self.inner,
4861                    error,
4862                })),
4863            },
4864        }
4865    }
4866
4867    /// Initiates the handshake.
4868    ///
4869    /// This will fail if `set_accept_state` or `set_connect_state` was not called first.
4870    #[corresponds(SSL_do_handshake)]
4871    pub fn handshake(mut self) -> Result<SslStream<S>, HandshakeError<S>> {
4872        match self.inner.do_handshake() {
4873            Ok(()) => Ok(self.inner),
4874            Err(error) => match error.code() {
4875                ErrorCode::WANT_READ | ErrorCode::WANT_WRITE => {
4876                    Err(HandshakeError::WouldBlock(MidHandshakeSslStream {
4877                        stream: self.inner,
4878                        error,
4879                    }))
4880                }
4881                _ => Err(HandshakeError::Failure(MidHandshakeSslStream {
4882                    stream: self.inner,
4883                    error,
4884                })),
4885            },
4886        }
4887    }
4888
4889    /// Read application data transmitted by a client before handshake
4890    /// completion.
4891    ///
4892    /// Useful for reducing latency, but vulnerable to replay attacks. Call
4893    /// `set_accept_state` first.
4894    ///
4895    /// Returns `Ok(0)` if all early data has been read.
4896    ///
4897    /// Requires OpenSSL 1.1.1 or LibreSSL 3.4.0 or newer.
4898    #[corresponds(SSL_read_early_data)]
4899    #[cfg(any(ossl111, libressl340))]
4900    pub fn read_early_data(&mut self, buf: &mut [u8]) -> Result<usize, Error> {
4901        self.inner.read_early_data(buf)
4902    }
4903
4904    /// Send data to the server without blocking on handshake completion.
4905    ///
4906    /// Useful for reducing latency, but vulnerable to replay attacks. Call
4907    /// `set_connect_state` first.
4908    ///
4909    /// Requires OpenSSL 1.1.1 or LibreSSL 3.4.0 or newer.
4910    #[corresponds(SSL_write_early_data)]
4911    #[cfg(any(ossl111, libressl340))]
4912    pub fn write_early_data(&mut self, buf: &[u8]) -> Result<usize, Error> {
4913        self.inner.write_early_data(buf)
4914    }
4915}
4916
4917#[allow(deprecated)]
4918impl<S> SslStreamBuilder<S> {
4919    /// Returns a shared reference to the underlying stream.
4920    pub fn get_ref(&self) -> &S {
4921        unsafe {
4922            let bio = self.inner.ssl.get_raw_rbio();
4923            bio::get_ref(bio)
4924        }
4925    }
4926
4927    /// Returns a mutable reference to the underlying stream.
4928    ///
4929    /// # Warning
4930    ///
4931    /// It is inadvisable to read from or write to the underlying stream as it
4932    /// will most likely corrupt the SSL session.
4933    pub fn get_mut(&mut self) -> &mut S {
4934        unsafe {
4935            let bio = self.inner.ssl.get_raw_rbio();
4936            bio::get_mut(bio)
4937        }
4938    }
4939
4940    /// Returns a shared reference to the `Ssl` object associated with this builder.
4941    pub fn ssl(&self) -> &SslRef {
4942        &self.inner.ssl
4943    }
4944
4945    /// Returns a mutable reference to the `Ssl` object associated with this builder.
4946    pub fn ssl_mut(&mut self) -> &mut SslRef {
4947        &mut self.inner.ssl
4948    }
4949}
4950
4951/// The result of a shutdown request.
4952#[derive(Copy, Clone, Debug, PartialEq, Eq)]
4953pub enum ShutdownResult {
4954    /// A close notify message has been sent to the peer.
4955    Sent,
4956
4957    /// A close notify response message has been received from the peer.
4958    Received,
4959}
4960
4961bitflags! {
4962    /// The shutdown state of a session.
4963    #[derive(Copy, Clone, Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
4964    #[repr(transparent)]
4965    pub struct ShutdownState: c_int {
4966        /// A close notify message has been sent to the peer.
4967        const SENT = ffi::SSL_SENT_SHUTDOWN;
4968        /// A close notify message has been received from the peer.
4969        const RECEIVED = ffi::SSL_RECEIVED_SHUTDOWN;
4970    }
4971}
4972
4973cfg_if! {
4974    if #[cfg(any(boringssl, ossl110, libressl273, awslc))] {
4975        use ffi::{SSL_CTX_up_ref, SSL_SESSION_get_master_key, SSL_SESSION_up_ref, SSL_is_server};
4976    } else {
4977        #[allow(bad_style)]
4978        pub unsafe fn SSL_CTX_up_ref(ssl: *mut ffi::SSL_CTX) -> c_int {
4979            ffi::CRYPTO_add_lock(
4980                &mut (*ssl).references,
4981                1,
4982                ffi::CRYPTO_LOCK_SSL_CTX,
4983                "mod.rs\0".as_ptr() as *const _,
4984                line!() as c_int,
4985            );
4986            0
4987        }
4988
4989        #[allow(bad_style)]
4990        pub unsafe fn SSL_SESSION_get_master_key(
4991            session: *const ffi::SSL_SESSION,
4992            out: *mut c_uchar,
4993            mut outlen: usize,
4994        ) -> usize {
4995            if outlen == 0 {
4996                return (*session).master_key_length as usize;
4997            }
4998            if outlen > (*session).master_key_length as usize {
4999                outlen = (*session).master_key_length as usize;
5000            }
5001            ptr::copy_nonoverlapping((*session).master_key.as_ptr(), out, outlen);
5002            outlen
5003        }
5004
5005        #[allow(bad_style)]
5006        pub unsafe fn SSL_is_server(s: *mut ffi::SSL) -> c_int {
5007            (*s).server
5008        }
5009
5010        #[allow(bad_style)]
5011        pub unsafe fn SSL_SESSION_up_ref(ses: *mut ffi::SSL_SESSION) -> c_int {
5012            ffi::CRYPTO_add_lock(
5013                &mut (*ses).references,
5014                1,
5015                ffi::CRYPTO_LOCK_SSL_CTX,
5016                "mod.rs\0".as_ptr() as *const _,
5017                line!() as c_int,
5018            );
5019            0
5020        }
5021    }
5022}
5023
5024cfg_if! {
5025    if #[cfg(ossl300)] {
5026        use ffi::SSL_get1_peer_certificate;
5027    } else {
5028        use ffi::SSL_get_peer_certificate as SSL_get1_peer_certificate;
5029    }
5030}
5031cfg_if! {
5032    if #[cfg(any(boringssl, ossl110, libressl291, awslc))] {
5033        use ffi::{TLS_method, DTLS_method, TLS_client_method, TLS_server_method, DTLS_server_method, DTLS_client_method};
5034    } else {
5035        use ffi::{
5036            SSLv23_method as TLS_method, DTLSv1_method as DTLS_method, SSLv23_client_method as TLS_client_method,
5037            SSLv23_server_method as TLS_server_method,
5038        };
5039    }
5040}
5041cfg_if! {
5042    if #[cfg(ossl110)] {
5043        unsafe fn get_new_idx(f: ffi::CRYPTO_EX_free) -> c_int {
5044            ffi::CRYPTO_get_ex_new_index(
5045                ffi::CRYPTO_EX_INDEX_SSL_CTX,
5046                0,
5047                ptr::null_mut(),
5048                None,
5049                None,
5050                f,
5051            )
5052        }
5053
5054        unsafe fn get_new_ssl_idx(f: ffi::CRYPTO_EX_free) -> c_int {
5055            ffi::CRYPTO_get_ex_new_index(
5056                ffi::CRYPTO_EX_INDEX_SSL,
5057                0,
5058                ptr::null_mut(),
5059                None,
5060                None,
5061                f,
5062            )
5063        }
5064    } else {
5065        use std::sync::Once;
5066
5067        unsafe fn get_new_idx(f: ffi::CRYPTO_EX_free) -> c_int {
5068            // hack around https://rt.openssl.org/Ticket/Display.html?id=3710&user=guest&pass=guest
5069            static ONCE: Once = Once::new();
5070            ONCE.call_once(|| {
5071                cfg_if! {
5072                    if #[cfg(not(any(boringssl, awslc)))] {
5073                        ffi::SSL_CTX_get_ex_new_index(0, ptr::null_mut(), None, None, None);
5074                    } else {
5075                        ffi::SSL_CTX_get_ex_new_index(0, ptr::null_mut(), ptr::null_mut(), None, None);
5076                    }
5077                }
5078            });
5079
5080            cfg_if! {
5081                if #[cfg(not(any(boringssl, awslc)))] {
5082                    ffi::SSL_CTX_get_ex_new_index(0, ptr::null_mut(), None, None, f)
5083                } else {
5084                    ffi::SSL_CTX_get_ex_new_index(0, ptr::null_mut(), ptr::null_mut(), None, f)
5085                }
5086            }
5087        }
5088
5089        unsafe fn get_new_ssl_idx(f: ffi::CRYPTO_EX_free) -> c_int {
5090            // hack around https://rt.openssl.org/Ticket/Display.html?id=3710&user=guest&pass=guest
5091            static ONCE: Once = Once::new();
5092            ONCE.call_once(|| {
5093                #[cfg(not(any(boringssl, awslc)))]
5094                ffi::SSL_get_ex_new_index(0, ptr::null_mut(), None, None, None);
5095                #[cfg(any(boringssl, awslc))]
5096                ffi::SSL_get_ex_new_index(0, ptr::null_mut(), ptr::null_mut(), None, None);
5097            });
5098
5099            #[cfg(not(any(boringssl, awslc)))]
5100            return ffi::SSL_get_ex_new_index(0, ptr::null_mut(), None, None, f);
5101            #[cfg(any(boringssl, awslc))]
5102            return ffi::SSL_get_ex_new_index(0, ptr::null_mut(), ptr::null_mut(), None, f);
5103        }
5104    }
5105}