1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
use std::cmp::min;
use std::convert::TryFrom;
use std::fmt::Display;

use crate::ffi_panic_boundary;
use libc::{c_char, c_uint, size_t};
use num_enum::TryFromPrimitive;
use rustls::Error;

/// A return value for a function that may return either success (0) or a
/// non-zero value representing an error. The values should match socket
/// error numbers for your operating system - for example, the integers for
/// ETIMEDOUT, EAGAIN, or similar.
#[repr(transparent)]
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub struct rustls_io_result(pub libc::c_int);

impl rustls_result {
    /// After a rustls function returns an error, you may call
    /// this to get a pointer to a buffer containing a detailed error
    /// message. The contents of the error buffer will be out_n bytes long,
    /// UTF-8 encoded, and not NUL-terminated.
    #[no_mangle]
    pub extern "C" fn rustls_error(
        result: c_uint,
        buf: *mut c_char,
        len: size_t,
        out_n: *mut size_t,
    ) {
        ffi_panic_boundary! {
            if buf.is_null() {
                return
            }
            if out_n.is_null() {
                return
            }
            let result: rustls_result = rustls_result::try_from(result).unwrap_or(rustls_result::InvalidParameter);
            let error_str = result.to_string();
            let out_len: usize = min(len - 1, error_str.len());
            unsafe {
                std::ptr::copy_nonoverlapping(error_str.as_ptr() as *mut c_char, buf, out_len);
                *out_n = out_len;
            }
        }
    }

    #[no_mangle]
    pub extern "C" fn rustls_result_is_cert_error(result: c_uint) -> bool {
        let result: rustls_result =
            rustls_result::try_from(result).unwrap_or(rustls_result::InvalidParameter);
        use rustls_result::*;
        matches!(
            result,
            CertInvalidEncoding
                | CertInvalidSignatureType
                | CertInvalidSignature
                | CertInvalidData
                | CertSCTMalformed
                | CertSCTInvalidSignature
                | CertSCTTimestampInFuture
                | CertSCTUnsupportedVersion
                | CertSCTUnknownLog
        )
    }
}

/// For cert-related rustls_results, turn them into a rustls::Error. For other
/// inputs, including Ok, return rustls::Error::General.
pub(crate) fn cert_result_to_error(result: rustls_result) -> rustls::Error {
    use rustls::Error::*;
    use rustls_result::*;
    match result {
        CertInvalidEncoding => InvalidCertificateEncoding,
        CertInvalidSignatureType => InvalidCertificateSignatureType,
        CertInvalidSignature => InvalidCertificateSignature,
        CertInvalidData => InvalidCertificateData("".into()),
        CertSCTMalformed => InvalidSct(sct::Error::MalformedSct),
        CertSCTInvalidSignature => InvalidSct(sct::Error::InvalidSignature),
        CertSCTTimestampInFuture => InvalidSct(sct::Error::TimestampInFuture),
        CertSCTUnsupportedVersion => InvalidSct(sct::Error::UnsupportedSctVersion),
        CertSCTUnknownLog => InvalidSct(sct::Error::UnknownLog),
        _ => rustls::Error::General("".into()),
    }
}

#[test]
fn test_rustls_error() {
    let mut buf = [0 as c_char; 512];
    let mut n = 0;
    rustls_result::rustls_error(0, &mut buf as *mut _, buf.len(), &mut n);
    let output: String = String::from_utf8(buf[0..n].iter().map(|b| *b as u8).collect()).unwrap();
    assert_eq!(&output, "a parameter had an invalid value");

    rustls_result::rustls_error(7000, &mut buf as *mut _, buf.len(), &mut n);
    let output: String = String::from_utf8(buf[0..n].iter().map(|b| *b as u8).collect()).unwrap();
    assert_eq!(&output, "OK");

    rustls_result::rustls_error(7101, &mut buf as *mut _, buf.len(), &mut n);
    let output: String = String::from_utf8(buf[0..n].iter().map(|b| *b as u8).collect()).unwrap();
    assert_eq!(&output, "peer sent no certificates");
}

#[test]
fn test_rustls_result_is_cert_error() {
    assert!(!rustls_result::rustls_result_is_cert_error(0));
    assert!(!rustls_result::rustls_result_is_cert_error(7000));
    assert!(rustls_result::rustls_result_is_cert_error(7117));
    assert!(rustls_result::rustls_result_is_cert_error(7118));
    assert!(rustls_result::rustls_result_is_cert_error(7119));
    assert!(rustls_result::rustls_result_is_cert_error(7120));
    assert!(rustls_result::rustls_result_is_cert_error(7319));
    assert!(rustls_result::rustls_result_is_cert_error(7320));
    assert!(rustls_result::rustls_result_is_cert_error(7321));
    assert!(rustls_result::rustls_result_is_cert_error(7322));
    assert!(rustls_result::rustls_result_is_cert_error(7323));
}

#[allow(dead_code)]
#[repr(u32)]
#[derive(Debug, TryFromPrimitive, Clone, Copy, PartialEq, Eq)]
pub enum rustls_result {
    Ok = 7000,
    Io = 7001,
    NullParameter = 7002,
    InvalidDnsNameError = 7003,
    Panic = 7004,
    CertificateParseError = 7005,
    PrivateKeyParseError = 7006,
    InsufficientSize = 7007,
    NotFound = 7008,
    InvalidParameter = 7009,
    UnexpectedEof = 7010,
    PlaintextEmpty = 7011,
    AcceptorNotReady = 7012,
    AlreadyUsed = 7013,

    // From https://docs.rs/rustls/0.20.0/rustls/enum.Error.html
    CorruptMessage = 7100,
    NoCertificatesPresented = 7101,
    DecryptError = 7102,
    FailedToGetCurrentTime = 7103,
    FailedToGetRandomBytes = 7113,
    HandshakeNotComplete = 7104,
    PeerSentOversizedRecord = 7105,
    NoApplicationProtocol = 7106,
    BadMaxFragmentSize = 7114,
    UnsupportedNameType = 7115,
    EncryptError = 7116,
    CertInvalidEncoding = 7117,
    CertInvalidSignatureType = 7118,
    CertInvalidSignature = 7119,
    CertInvalidData = 7120, // Last added

    // From Error, with fields that get dropped.
    PeerIncompatibleError = 7107,
    PeerMisbehavedError = 7108,
    InappropriateMessage = 7109,
    InappropriateHandshakeMessage = 7110,
    CorruptMessagePayload = 7111,
    General = 7112,

    // From Error, with fields that get flattened.
    // https://docs.rs/rustls/0.20.0/rustls/internal/msgs/enums/enum.AlertDescription.html
    AlertCloseNotify = 7200,
    AlertUnexpectedMessage = 7201,
    AlertBadRecordMac = 7202,
    AlertDecryptionFailed = 7203,
    AlertRecordOverflow = 7204,
    AlertDecompressionFailure = 7205,
    AlertHandshakeFailure = 7206,
    AlertNoCertificate = 7207,
    AlertBadCertificate = 7208,
    AlertUnsupportedCertificate = 7209,
    AlertCertificateRevoked = 7210,
    AlertCertificateExpired = 7211,
    AlertCertificateUnknown = 7212,
    AlertIllegalParameter = 7213,
    AlertUnknownCA = 7214,
    AlertAccessDenied = 7215,
    AlertDecodeError = 7216,
    AlertDecryptError = 7217,
    AlertExportRestriction = 7218,
    AlertProtocolVersion = 7219,
    AlertInsufficientSecurity = 7220,
    AlertInternalError = 7221,
    AlertInappropriateFallback = 7222,
    AlertUserCanceled = 7223,
    AlertNoRenegotiation = 7224,
    AlertMissingExtension = 7225,
    AlertUnsupportedExtension = 7226,
    AlertCertificateUnobtainable = 7227,
    AlertUnrecognisedName = 7228,
    AlertBadCertificateStatusResponse = 7229,
    AlertBadCertificateHashValue = 7230,
    AlertUnknownPSKIdentity = 7231,
    AlertCertificateRequired = 7232,
    AlertNoApplicationProtocol = 7233,
    AlertUnknown = 7234,

    // https://docs.rs/sct/0.5.0/sct/enum.Error.html
    CertSCTMalformed = 7319,
    CertSCTInvalidSignature = 7320,
    CertSCTTimestampInFuture = 7321,
    CertSCTUnsupportedVersion = 7322,
    CertSCTUnknownLog = 7323,
}

pub(crate) fn map_error(input: rustls::Error) -> rustls_result {
    use rustls::internal::msgs::enums::AlertDescription as alert;
    use rustls_result::*;
    use sct::Error as sct;

    match input {
        Error::InappropriateMessage { .. } => InappropriateMessage,
        Error::InappropriateHandshakeMessage { .. } => InappropriateHandshakeMessage,
        Error::CorruptMessage => CorruptMessage,
        Error::CorruptMessagePayload(_) => CorruptMessagePayload,
        Error::NoCertificatesPresented => NoCertificatesPresented,
        Error::DecryptError => DecryptError,
        Error::PeerIncompatibleError(_) => PeerIncompatibleError,
        Error::PeerMisbehavedError(_) => PeerMisbehavedError,
        Error::UnsupportedNameType => UnsupportedNameType,
        Error::EncryptError => EncryptError,

        Error::FailedToGetCurrentTime => FailedToGetCurrentTime,
        Error::FailedToGetRandomBytes => FailedToGetRandomBytes,
        Error::HandshakeNotComplete => HandshakeNotComplete,
        Error::PeerSentOversizedRecord => PeerSentOversizedRecord,
        Error::NoApplicationProtocol => NoApplicationProtocol,
        Error::BadMaxFragmentSize => BadMaxFragmentSize,

        Error::InvalidCertificateEncoding => CertInvalidEncoding,
        Error::InvalidCertificateSignatureType => CertInvalidSignatureType,
        Error::InvalidCertificateSignature => CertInvalidSignature,
        Error::InvalidCertificateData(_) => CertInvalidData,

        Error::General(_) => General,

        Error::AlertReceived(e) => match e {
            alert::CloseNotify => AlertCloseNotify,
            alert::UnexpectedMessage => AlertUnexpectedMessage,
            alert::BadRecordMac => AlertBadRecordMac,
            alert::DecryptionFailed => AlertDecryptionFailed,
            alert::RecordOverflow => AlertRecordOverflow,
            alert::DecompressionFailure => AlertDecompressionFailure,
            alert::HandshakeFailure => AlertHandshakeFailure,
            alert::NoCertificate => AlertNoCertificate,
            alert::BadCertificate => AlertBadCertificate,
            alert::UnsupportedCertificate => AlertUnsupportedCertificate,
            alert::CertificateRevoked => AlertCertificateRevoked,
            alert::CertificateExpired => AlertCertificateExpired,
            alert::CertificateUnknown => AlertCertificateUnknown,
            alert::IllegalParameter => AlertIllegalParameter,
            alert::UnknownCA => AlertUnknownCA,
            alert::AccessDenied => AlertAccessDenied,
            alert::DecodeError => AlertDecodeError,
            alert::DecryptError => AlertDecryptError,
            alert::ExportRestriction => AlertExportRestriction,
            alert::ProtocolVersion => AlertProtocolVersion,
            alert::InsufficientSecurity => AlertInsufficientSecurity,
            alert::InternalError => AlertInternalError,
            alert::InappropriateFallback => AlertInappropriateFallback,
            alert::UserCanceled => AlertUserCanceled,
            alert::NoRenegotiation => AlertNoRenegotiation,
            alert::MissingExtension => AlertMissingExtension,
            alert::UnsupportedExtension => AlertUnsupportedExtension,
            alert::CertificateUnobtainable => AlertCertificateUnobtainable,
            alert::UnrecognisedName => AlertUnrecognisedName,
            alert::BadCertificateStatusResponse => AlertBadCertificateStatusResponse,
            alert::BadCertificateHashValue => AlertBadCertificateHashValue,
            alert::UnknownPSKIdentity => AlertUnknownPSKIdentity,
            alert::CertificateRequired => AlertCertificateRequired,
            alert::NoApplicationProtocol => AlertNoApplicationProtocol,
            alert::Unknown(_) => AlertUnknown,
        },
        Error::InvalidSct(e) => match e {
            sct::MalformedSct => CertSCTMalformed,
            sct::InvalidSignature => CertSCTInvalidSignature,
            sct::TimestampInFuture => CertSCTTimestampInFuture,
            sct::UnsupportedSctVersion => CertSCTUnsupportedVersion,
            sct::UnknownLog => CertSCTUnknownLog,
        },
    }
}

impl Display for rustls_result {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        use rustls::internal::msgs::enums::AlertDescription as alert;
        use rustls_result::*;
        use sct::Error as sct;

        match self {
        // These variants are local to this glue layer.
        rustls_result::Ok =>  write!(f, "OK"),
        Io =>  write!(f, "I/O error"),
        NullParameter => write!(f, "a parameter was NULL"),
        InvalidDnsNameError => write!(f, "hostname was either malformed or an IP address (rustls does not support certificates for IP addresses)"),
        Panic => write!(f, "a Rust component panicked"),
        CertificateParseError => write!(f, "error parsing certificate"),
        PrivateKeyParseError => write!(f, "error parsing private key"),
        InsufficientSize => write!(f, "provided buffer is of insufficient size"),
        NotFound => write!(f, "the item was not found"),
        InvalidParameter => write!(f, "a parameter had an invalid value"),
        CertInvalidData => write!(f, "invalid certificate data found"),
        UnexpectedEof => write!(f,  "unexpected EOF"),
        PlaintextEmpty => write!(f,  "no plaintext available; call rustls_connection_read_tls again"),
        AcceptorNotReady => write!(f, "rustls_acceptor not ready yet; read more TLS bytes into it"),
        AlreadyUsed => write!(f, "tried to use a rustls struct after it had been converted to another struct"),

        // These variants correspond to a rustls::Error variant with a field,
        // where generating an arbitrary field would produce a confusing error
        // message. So we reproduce a simplified error string.
        InappropriateMessage => write!(f, "received unexpected message"),
        InappropriateHandshakeMessage => write!(f, "received unexpected handshake message"),
        CorruptMessagePayload => write!(f, "received corrupt message"),

        PeerIncompatibleError => write!(f, "peer is incompatible"),
        PeerMisbehavedError => write!(f, "peer misbehaved"),

        General => write!(f, "general error"),

        CorruptMessage => Error::CorruptMessage.fmt(f),
        NoCertificatesPresented => Error::NoCertificatesPresented.fmt(f),
        DecryptError => Error::DecryptError.fmt(f),
        FailedToGetCurrentTime => Error::FailedToGetCurrentTime.fmt(f),
        FailedToGetRandomBytes => Error::FailedToGetRandomBytes.fmt(f),
        HandshakeNotComplete => Error::HandshakeNotComplete.fmt(f),
        PeerSentOversizedRecord => Error::PeerSentOversizedRecord.fmt(f),
        NoApplicationProtocol => Error::NoApplicationProtocol.fmt(f),
        BadMaxFragmentSize => Error::BadMaxFragmentSize.fmt(f),
        UnsupportedNameType => Error::UnsupportedNameType.fmt(f),
        EncryptError => Error::EncryptError.fmt(f),
        CertInvalidEncoding => Error::InvalidCertificateEncoding.fmt(f),
        CertInvalidSignatureType => Error::InvalidCertificateSignatureType.fmt(f),
        CertInvalidSignature => Error::InvalidCertificateSignature.fmt(f),

        AlertCloseNotify => Error::AlertReceived(alert::CloseNotify).fmt(f),
        AlertUnexpectedMessage => Error::AlertReceived(alert::UnexpectedMessage).fmt(f),
        AlertBadRecordMac => Error::AlertReceived(alert::BadRecordMac).fmt(f),
        AlertDecryptionFailed => Error::AlertReceived(alert::DecryptionFailed).fmt(f),
        AlertRecordOverflow => Error::AlertReceived(alert::RecordOverflow).fmt(f),
        AlertDecompressionFailure => Error::AlertReceived(alert::DecompressionFailure).fmt(f),
        AlertHandshakeFailure => Error::AlertReceived(alert::HandshakeFailure).fmt(f),
        AlertNoCertificate => Error::AlertReceived(alert::NoCertificate).fmt(f),
        AlertBadCertificate => Error::AlertReceived(alert::BadCertificate).fmt(f),
        AlertUnsupportedCertificate => Error::AlertReceived(alert::UnsupportedCertificate).fmt(f),
        AlertCertificateRevoked => Error::AlertReceived(alert::CertificateRevoked).fmt(f),
        AlertCertificateExpired => Error::AlertReceived(alert::CertificateExpired).fmt(f),
        AlertCertificateUnknown => Error::AlertReceived(alert::CertificateUnknown).fmt(f),
        AlertIllegalParameter => Error::AlertReceived(alert::IllegalParameter).fmt(f),
        AlertUnknownCA => Error::AlertReceived(alert::UnknownCA).fmt(f),
        AlertAccessDenied => Error::AlertReceived(alert::AccessDenied).fmt(f),
        AlertDecodeError => Error::AlertReceived(alert::DecodeError).fmt(f),
        AlertDecryptError => Error::AlertReceived(alert::DecryptError).fmt(f),
        AlertExportRestriction => Error::AlertReceived(alert::ExportRestriction).fmt(f),
        AlertProtocolVersion => Error::AlertReceived(alert::ProtocolVersion).fmt(f),
        AlertInsufficientSecurity => Error::AlertReceived(alert::InsufficientSecurity).fmt(f),
        AlertInternalError => Error::AlertReceived(alert::InternalError).fmt(f),
        AlertInappropriateFallback => Error::AlertReceived(alert::InappropriateFallback).fmt(f),
        AlertUserCanceled => Error::AlertReceived(alert::UserCanceled).fmt(f),
        AlertNoRenegotiation => Error::AlertReceived(alert::NoRenegotiation).fmt(f),
        AlertMissingExtension => Error::AlertReceived(alert::MissingExtension).fmt(f),
        AlertUnsupportedExtension => Error::AlertReceived(alert::UnsupportedExtension).fmt(f),
        AlertCertificateUnobtainable => Error::AlertReceived(alert::CertificateUnobtainable).fmt(f),
        AlertUnrecognisedName => Error::AlertReceived(alert::UnrecognisedName).fmt(f),
        AlertBadCertificateStatusResponse => {
            Error::AlertReceived(alert::BadCertificateStatusResponse).fmt(f)
        }
        AlertBadCertificateHashValue => Error::AlertReceived(alert::BadCertificateHashValue).fmt(f),
        AlertUnknownPSKIdentity => Error::AlertReceived(alert::UnknownPSKIdentity).fmt(f),
        AlertCertificateRequired => Error::AlertReceived(alert::CertificateRequired).fmt(f),
        AlertNoApplicationProtocol => Error::AlertReceived(alert::NoApplicationProtocol).fmt(f),
        AlertUnknown => Error::AlertReceived(alert::Unknown(0)).fmt(f),

        CertSCTMalformed => Error::InvalidSct(sct::MalformedSct).fmt(f),
        CertSCTInvalidSignature => Error::InvalidSct(sct::InvalidSignature).fmt(f),
        CertSCTTimestampInFuture => Error::InvalidSct(sct::TimestampInFuture).fmt(f),
        CertSCTUnsupportedVersion => Error::InvalidSct(sct::UnsupportedSctVersion).fmt(f),
        CertSCTUnknownLog => Error::InvalidSct(sct::UnknownLog).fmt(f),
        }
    }
}