1use alloc::vec::Vec;
2use core::hash::{Hash, Hasher};
3
4use pki_types::CertificateRevocationListDer;
5use webpki::{CertRevocationList, ExpirationPolicy, RevocationCheckDepth, UnknownStatusPolicy};
6
7use crate::crypto::{CryptoProvider, Identity, SignatureScheme, WebPkiSupportedAlgorithms};
8use crate::error::ApiMisuse;
9use crate::sync::Arc;
10use crate::verify::{
11 HandshakeSignatureValid, PeerVerified, ServerIdentity, ServerVerifier,
12 SignatureVerificationInput,
13};
14use crate::webpki::verify::{
15 ParsedCertificate, verify_identity_signed_by_trust_anchor_impl, verify_tls12_signature,
16 verify_tls13_signature,
17};
18use crate::webpki::{VerifierBuilderError, parse_crls, verify_server_name};
19#[cfg(doc)]
20use crate::{ConfigBuilder, ServerConfig, crypto};
21use crate::{DynHasher, Error, RootCertStore};
22
23#[derive(Debug, Clone)]
27pub struct ServerVerifierBuilder {
28 roots: Arc<RootCertStore>,
29 crls: Vec<CertificateRevocationListDer<'static>>,
30 revocation_check_depth: RevocationCheckDepth,
31 unknown_revocation_policy: UnknownStatusPolicy,
32 revocation_expiration_policy: ExpirationPolicy,
33 supported_algs: WebPkiSupportedAlgorithms,
34}
35
36impl ServerVerifierBuilder {
37 pub(crate) fn new(
38 roots: Arc<RootCertStore>,
39 supported_algs: WebPkiSupportedAlgorithms,
40 ) -> Self {
41 Self {
42 roots,
43 crls: Vec::new(),
44 revocation_check_depth: RevocationCheckDepth::Chain,
45 unknown_revocation_policy: UnknownStatusPolicy::Deny,
46 revocation_expiration_policy: ExpirationPolicy::Ignore,
47 supported_algs,
48 }
49 }
50
51 pub fn with_crls(
55 mut self,
56 crls: impl IntoIterator<Item = CertificateRevocationListDer<'static>>,
57 ) -> Self {
58 self.crls.extend(crls);
59 self
60 }
61
62 pub fn only_check_end_entity_revocation(mut self) -> Self {
72 self.revocation_check_depth = RevocationCheckDepth::EndEntity;
73 self
74 }
75
76 pub fn allow_unknown_revocation_status(mut self) -> Self {
85 self.unknown_revocation_policy = UnknownStatusPolicy::Allow;
86 self
87 }
88
89 pub fn enforce_revocation_expiration(mut self) -> Self {
98 self.revocation_expiration_policy = ExpirationPolicy::Enforce;
99 self
100 }
101
102 pub fn build(self) -> Result<WebPkiServerVerifier, VerifierBuilderError> {
117 if self.roots.is_empty() {
118 return Err(VerifierBuilderError::NoRootAnchors);
119 }
120
121 Ok(WebPkiServerVerifier::new(
122 self.roots,
123 parse_crls(self.crls)?,
124 self.revocation_check_depth,
125 self.unknown_revocation_policy,
126 self.revocation_expiration_policy,
127 self.supported_algs,
128 ))
129 }
130}
131
132#[derive(Debug, Hash)]
134pub struct WebPkiServerVerifier {
135 roots: Arc<RootCertStore>,
136 crls: Vec<CertRevocationList<'static>>,
137 revocation_check_depth: RevocationCheckDepth,
138 unknown_revocation_policy: UnknownStatusPolicy,
139 revocation_expiration_policy: ExpirationPolicy,
140 supported: WebPkiSupportedAlgorithms,
141}
142
143impl WebPkiServerVerifier {
144 pub fn builder(roots: Arc<RootCertStore>, provider: &CryptoProvider) -> ServerVerifierBuilder {
153 ServerVerifierBuilder::new(roots, provider.signature_verification_algorithms)
154 }
155
156 pub(crate) fn new_without_revocation(
159 roots: impl Into<Arc<RootCertStore>>,
160 supported_algs: WebPkiSupportedAlgorithms,
161 ) -> Self {
162 Self::new(
163 roots,
164 Vec::default(),
165 RevocationCheckDepth::Chain,
166 UnknownStatusPolicy::Allow,
167 ExpirationPolicy::Ignore,
168 supported_algs,
169 )
170 }
171
172 pub(crate) fn new(
184 roots: impl Into<Arc<RootCertStore>>,
185 crls: Vec<CertRevocationList<'static>>,
186 revocation_check_depth: RevocationCheckDepth,
187 unknown_revocation_policy: UnknownStatusPolicy,
188 revocation_expiration_policy: ExpirationPolicy,
189 supported: WebPkiSupportedAlgorithms,
190 ) -> Self {
191 Self {
192 roots: roots.into(),
193 crls,
194 revocation_check_depth,
195 unknown_revocation_policy,
196 revocation_expiration_policy,
197 supported,
198 }
199 }
200}
201
202impl ServerVerifier for WebPkiServerVerifier {
203 fn verify_identity(&self, identity: &ServerIdentity<'_>) -> Result<PeerVerified, Error> {
214 let certificates = match identity.identity {
215 Identity::X509(certificates) => certificates,
216 Identity::RawPublicKey(_) => {
217 return Err(ApiMisuse::UnverifiableCertificateType.into());
218 }
219 };
220
221 let cert = ParsedCertificate::try_from(&certificates.end_entity)?;
222 let crl_refs = self.crls.iter().collect::<Vec<_>>();
223 let revocation = if self.crls.is_empty() {
224 None
225 } else {
226 Some(
229 webpki::RevocationOptionsBuilder::new(crl_refs.as_slice())
230 .unwrap()
233 .with_depth(self.revocation_check_depth)
234 .with_status_policy(self.unknown_revocation_policy)
235 .with_expiration_policy(self.revocation_expiration_policy)
236 .build(),
237 )
238 };
239
240 verify_identity_signed_by_trust_anchor_impl(
243 &cert,
244 &self.roots,
245 &certificates.intermediates,
246 revocation,
247 identity.now,
248 self.supported.all,
249 )?;
250
251 verify_server_name(&cert, identity.server_name)?;
252 Ok(PeerVerified::assertion())
253 }
254
255 fn verify_tls12_signature(
256 &self,
257 input: &SignatureVerificationInput<'_>,
258 ) -> Result<HandshakeSignatureValid, Error> {
259 verify_tls12_signature(input, &self.supported)
260 }
261
262 fn verify_tls13_signature(
263 &self,
264 input: &SignatureVerificationInput<'_>,
265 ) -> Result<HandshakeSignatureValid, Error> {
266 verify_tls13_signature(input, &self.supported)
267 }
268
269 fn supported_verify_schemes(&self) -> Vec<SignatureScheme> {
270 self.supported.supported_schemes()
271 }
272
273 fn request_ocsp_response(&self) -> bool {
274 false
275 }
276
277 fn hash_config(&self, h: &mut dyn Hasher) {
278 self.hash(&mut DynHasher(h));
279 }
280}
281
282#[cfg(test)]
283mod tests {
284 use alloc::vec::Vec;
285 use std::{println, vec};
286
287 use pki_types::pem::PemObject;
288 use pki_types::{CertificateDer, CertificateRevocationListDer};
289
290 use super::{VerifierBuilderError, WebPkiServerVerifier};
291 use crate::RootCertStore;
292 use crate::crypto::TEST_PROVIDER;
293 use crate::sync::Arc;
294
295 fn load_crls(crls_der: &[&[u8]]) -> Vec<CertificateRevocationListDer<'static>> {
296 crls_der
297 .iter()
298 .map(|pem_bytes| CertificateRevocationListDer::from_pem_slice(pem_bytes).unwrap())
299 .collect()
300 }
301
302 fn test_crls() -> Vec<CertificateRevocationListDer<'static>> {
303 load_crls(&[
304 include_bytes!("../../../test-ca/ecdsa-p256/client.revoked.crl.pem").as_slice(),
305 include_bytes!("../../../test-ca/rsa-2048/client.revoked.crl.pem").as_slice(),
306 ])
307 }
308
309 fn load_roots(roots_der: &[&[u8]]) -> Arc<RootCertStore> {
310 let mut roots = RootCertStore::empty();
311 roots_der.iter().for_each(|der| {
312 roots
313 .add(CertificateDer::from(der.to_vec()))
314 .unwrap()
315 });
316 roots.into()
317 }
318
319 fn test_roots() -> Arc<RootCertStore> {
320 load_roots(&[
321 include_bytes!("../../../test-ca/ecdsa-p256/ca.der").as_slice(),
322 include_bytes!("../../../test-ca/rsa-2048/ca.der").as_slice(),
323 ])
324 }
325
326 #[test]
327 fn test_with_invalid_crls() {
328 let result = WebPkiServerVerifier::builder(test_roots(), &TEST_PROVIDER)
330 .with_crls(vec![CertificateRevocationListDer::from(vec![0xFF])])
331 .build();
332 assert!(matches!(result, Err(VerifierBuilderError::InvalidCrl(_))));
333 }
334
335 #[test]
336 fn test_with_crls_multiple_calls() {
337 let initial_crls = test_crls();
339 let extra_crls =
340 load_crls(&[
341 include_bytes!("../../../test-ca/eddsa/client.revoked.crl.pem").as_slice(),
342 ]);
343
344 let builder = WebPkiServerVerifier::builder(test_roots(), &TEST_PROVIDER)
345 .with_crls(initial_crls.clone())
346 .with_crls(extra_crls.clone());
347
348 assert_eq!(builder.crls.len(), initial_crls.len() + extra_crls.len());
350 println!("{builder:?}");
352 builder.build().unwrap();
353 }
354
355 #[test]
356 fn test_builder_no_roots() {
357 let result =
359 WebPkiServerVerifier::builder(RootCertStore::empty().into(), &TEST_PROVIDER).build();
360 assert!(matches!(result, Err(VerifierBuilderError::NoRootAnchors)));
361 }
362
363 #[test]
364 fn test_server_verifier_ee_only() {
365 let builder = WebPkiServerVerifier::builder(test_roots(), &TEST_PROVIDER)
367 .only_check_end_entity_revocation();
368 println!("{builder:?}");
370 builder.build().unwrap();
371 }
372
373 #[test]
374 fn test_server_verifier_allow_unknown() {
375 let builder = WebPkiServerVerifier::builder(test_roots(), &TEST_PROVIDER)
378 .allow_unknown_revocation_status();
379 println!("{builder:?}");
381 builder.build().unwrap();
382 }
383
384 #[test]
385 fn test_server_verifier_allow_unknown_ee_only() {
386 let builder = WebPkiServerVerifier::builder(test_roots(), &TEST_PROVIDER)
389 .allow_unknown_revocation_status()
390 .only_check_end_entity_revocation();
391 println!("{builder:?}");
393 builder.build().unwrap();
394 }
395
396 #[test]
397 fn test_server_verifier_enforce_expiration() {
398 let builder = WebPkiServerVerifier::builder(test_roots(), &TEST_PROVIDER)
401 .enforce_revocation_expiration();
402 println!("{builder:?}");
404 builder.build().unwrap();
405 }
406}