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
use crate::report::AttestationReport;
use std::vec::Vec;
use log::{debug, error};
use teaclave_types::EnclaveAttr;
pub type AttestationReportVerificationFn = fn(&AttestationReport) -> bool;
#[derive(Clone)]
pub struct AttestationReportVerifier {
pub accepted_enclave_attrs: Vec<EnclaveAttr>,
pub root_ca: Vec<u8>,
pub verifier: AttestationReportVerificationFn,
}
pub fn universal_quote_verifier(report: &AttestationReport) -> bool {
debug!("report.sgx_quote_status: {:?}", report.sgx_quote_status);
report.sgx_quote_status != crate::report::SgxQuoteStatus::UnknownBadStatus
}
impl AttestationReportVerifier {
pub fn new(
accepted_enclave_attrs: Vec<EnclaveAttr>,
root_ca: &[u8],
verifier: AttestationReportVerificationFn,
) -> Self {
Self {
accepted_enclave_attrs,
root_ca: root_ca.to_vec(),
verifier,
}
}
fn verify_measures(&self, attestation_report: &AttestationReport) -> bool {
debug!("verify measures");
let this_mr_signer = attestation_report
.sgx_quote_body
.isv_enclave_report
.mr_signer;
let this_mr_enclave = attestation_report
.sgx_quote_body
.isv_enclave_report
.mr_enclave;
self.accepted_enclave_attrs.iter().any(|a| {
a.measurement.mr_signer == this_mr_signer && a.measurement.mr_enclave == this_mr_enclave
})
}
fn verify_cert(&self, certs: &[rustls::Certificate]) -> bool {
debug!("verify cert");
if cfg!(sgx_sim) {
return true;
}
let report = match AttestationReport::from_cert(certs, &self.root_ca) {
Ok(report) => report,
Err(e) => {
error!("cert verification error {:?}", e);
return false;
}
};
if cfg!(test_mode) {
return (self.verifier)(&report);
}
self.verify_measures(&report) && (self.verifier)(&report)
}
}
impl rustls::ServerCertVerifier for AttestationReportVerifier {
fn verify_server_cert(
&self,
_roots: &rustls::RootCertStore,
certs: &[rustls::Certificate],
_hostname: webpki::DNSNameRef,
_ocsp: &[u8],
) -> std::result::Result<rustls::ServerCertVerified, rustls::TLSError> {
debug!("verify server cert");
if certs.len() != 1 {
return Err(rustls::TLSError::NoCertificatesPresented);
}
if self.verify_cert(certs) {
Ok(rustls::ServerCertVerified::assertion())
} else {
Err(rustls::TLSError::WebPKIError(
webpki::Error::ExtensionValueInvalid,
))
}
}
}
impl rustls::ClientCertVerifier for AttestationReportVerifier {
fn offer_client_auth(&self) -> bool {
!cfg!(test_mode)
}
fn client_auth_root_subjects(
&self,
_sni: Option<&webpki::DNSName>,
) -> Option<rustls::DistinguishedNames> {
Some(rustls::DistinguishedNames::new())
}
fn verify_client_cert(
&self,
certs: &[rustls::Certificate],
_sni: Option<&webpki::DNSName>,
) -> std::result::Result<rustls::ClientCertVerified, rustls::TLSError> {
debug!("verify client cert");
if certs.len() != 1 {
return Err(rustls::TLSError::NoCertificatesPresented);
}
if self.verify_cert(certs) {
Ok(rustls::ClientCertVerified::assertion())
} else {
Err(rustls::TLSError::WebPKIError(
webpki::Error::ExtensionValueInvalid,
))
}
}
}