2022-01-07 22:09:52 -05:00
|
|
|
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
|
2021-08-07 08:49:38 -04:00
|
|
|
|
|
|
|
pub use rustls;
|
|
|
|
pub use rustls_native_certs;
|
2021-12-06 18:48:11 -05:00
|
|
|
pub use rustls_pemfile;
|
2021-08-07 08:49:38 -04:00
|
|
|
pub use webpki;
|
|
|
|
pub use webpki_roots;
|
|
|
|
|
2021-11-16 09:02:28 -05:00
|
|
|
use deno_core::anyhow::anyhow;
|
2021-08-25 08:25:12 -04:00
|
|
|
use deno_core::error::custom_error;
|
2021-08-07 08:49:38 -04:00
|
|
|
use deno_core::error::AnyError;
|
|
|
|
use deno_core::parking_lot::Mutex;
|
|
|
|
use deno_core::Extension;
|
|
|
|
|
2021-12-06 18:48:11 -05:00
|
|
|
use rustls::client::ServerCertVerified;
|
|
|
|
use rustls::client::ServerCertVerifier;
|
|
|
|
use rustls::client::StoresClientSessions;
|
|
|
|
use rustls::client::WebPkiVerifier;
|
2021-08-09 10:53:21 -04:00
|
|
|
use rustls::Certificate;
|
2021-08-07 08:49:38 -04:00
|
|
|
use rustls::ClientConfig;
|
2021-12-06 18:48:11 -05:00
|
|
|
use rustls::Error;
|
2021-08-25 08:25:12 -04:00
|
|
|
use rustls::PrivateKey;
|
2021-08-07 08:49:38 -04:00
|
|
|
use rustls::RootCertStore;
|
2021-12-06 18:48:11 -05:00
|
|
|
use rustls::ServerName;
|
|
|
|
use rustls_pemfile::certs;
|
|
|
|
use rustls_pemfile::pkcs8_private_keys;
|
|
|
|
use rustls_pemfile::rsa_private_keys;
|
2021-08-07 08:49:38 -04:00
|
|
|
use serde::Deserialize;
|
|
|
|
use std::collections::HashMap;
|
2021-08-25 08:25:12 -04:00
|
|
|
use std::io::BufRead;
|
2021-08-07 08:49:38 -04:00
|
|
|
use std::io::BufReader;
|
|
|
|
use std::io::Cursor;
|
|
|
|
use std::sync::Arc;
|
2021-12-06 18:48:11 -05:00
|
|
|
use std::time::SystemTime;
|
2021-08-07 08:49:38 -04:00
|
|
|
|
|
|
|
/// This extension has no runtime apis, it only exports some shared native functions.
|
|
|
|
pub fn init() -> Extension {
|
|
|
|
Extension::builder().build()
|
|
|
|
}
|
|
|
|
|
2021-08-09 10:53:21 -04:00
|
|
|
pub struct NoCertificateVerification(pub Vec<String>);
|
|
|
|
|
|
|
|
impl ServerCertVerifier for NoCertificateVerification {
|
|
|
|
fn verify_server_cert(
|
|
|
|
&self,
|
2021-12-06 18:48:11 -05:00
|
|
|
end_entity: &Certificate,
|
|
|
|
intermediates: &[Certificate],
|
|
|
|
server_name: &ServerName,
|
|
|
|
scts: &mut dyn Iterator<Item = &[u8]>,
|
|
|
|
ocsp_response: &[u8],
|
|
|
|
now: SystemTime,
|
|
|
|
) -> Result<ServerCertVerified, Error> {
|
|
|
|
if let ServerName::DnsName(dns_name) = server_name {
|
|
|
|
let dns_name = dns_name.as_ref().to_owned();
|
|
|
|
if self.0.is_empty() || self.0.contains(&dns_name) {
|
|
|
|
Ok(ServerCertVerified::assertion())
|
|
|
|
} else {
|
|
|
|
let root_store = create_default_root_cert_store();
|
|
|
|
let verifier = WebPkiVerifier::new(root_store, None);
|
|
|
|
verifier.verify_server_cert(
|
|
|
|
end_entity,
|
|
|
|
intermediates,
|
|
|
|
server_name,
|
|
|
|
scts,
|
|
|
|
ocsp_response,
|
|
|
|
now,
|
|
|
|
)
|
|
|
|
}
|
2021-08-09 10:53:21 -04:00
|
|
|
} else {
|
2021-12-06 18:48:11 -05:00
|
|
|
// NOTE(bartlomieju): `ServerName` is a non-exhaustive enum
|
|
|
|
// so we have this catch all error here.
|
|
|
|
Err(Error::General("Unknown `ServerName` variant".to_string()))
|
2021-08-09 10:53:21 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-07 08:49:38 -04:00
|
|
|
#[derive(Deserialize, Default, Debug, Clone)]
|
|
|
|
#[serde(rename_all = "camelCase")]
|
|
|
|
#[serde(default)]
|
|
|
|
pub struct Proxy {
|
|
|
|
pub url: String,
|
|
|
|
pub basic_auth: Option<BasicAuth>,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Deserialize, Default, Debug, Clone)]
|
|
|
|
#[serde(default)]
|
|
|
|
pub struct BasicAuth {
|
|
|
|
pub username: String,
|
|
|
|
pub password: String,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Default)]
|
|
|
|
struct ClientSessionMemoryCache(Mutex<HashMap<Vec<u8>, Vec<u8>>>);
|
|
|
|
|
|
|
|
impl StoresClientSessions for ClientSessionMemoryCache {
|
|
|
|
fn get(&self, key: &[u8]) -> Option<Vec<u8>> {
|
|
|
|
self.0.lock().get(key).cloned()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn put(&self, key: Vec<u8>, value: Vec<u8>) -> bool {
|
|
|
|
let mut sessions = self.0.lock();
|
|
|
|
// TODO(bnoordhuis) Evict sessions LRU-style instead of arbitrarily.
|
|
|
|
while sessions.len() >= 1024 {
|
|
|
|
let key = sessions.keys().next().unwrap().clone();
|
|
|
|
sessions.remove(&key);
|
|
|
|
}
|
|
|
|
sessions.insert(key, value);
|
|
|
|
true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn create_default_root_cert_store() -> RootCertStore {
|
|
|
|
let mut root_cert_store = RootCertStore::empty();
|
|
|
|
// TODO(@justinmchase): Consider also loading the system keychain here
|
2021-12-06 18:48:11 -05:00
|
|
|
root_cert_store.add_server_trust_anchors(
|
|
|
|
webpki_roots::TLS_SERVER_ROOTS.0.iter().map(|ta| {
|
|
|
|
rustls::OwnedTrustAnchor::from_subject_spki_name_constraints(
|
|
|
|
ta.subject,
|
|
|
|
ta.spki,
|
|
|
|
ta.name_constraints,
|
|
|
|
)
|
|
|
|
}),
|
|
|
|
);
|
2021-08-07 08:49:38 -04:00
|
|
|
root_cert_store
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn create_client_config(
|
|
|
|
root_cert_store: Option<RootCertStore>,
|
2021-09-30 03:26:15 -04:00
|
|
|
ca_certs: Vec<Vec<u8>>,
|
2021-08-10 07:19:45 -04:00
|
|
|
unsafely_ignore_certificate_errors: Option<Vec<String>>,
|
2021-12-01 11:13:11 -05:00
|
|
|
client_cert_chain_and_key: Option<(String, String)>,
|
2021-08-07 08:49:38 -04:00
|
|
|
) -> Result<ClientConfig, AnyError> {
|
2021-12-06 18:48:11 -05:00
|
|
|
let maybe_cert_chain_and_key =
|
|
|
|
if let Some((cert_chain, private_key)) = client_cert_chain_and_key {
|
|
|
|
// The `remove` is safe because load_private_keys checks that there is at least one key.
|
|
|
|
let private_key = load_private_keys(private_key.as_bytes())?.remove(0);
|
|
|
|
let cert_chain = load_certs(&mut cert_chain.as_bytes())?;
|
|
|
|
Some((cert_chain, private_key))
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
};
|
2021-08-07 08:49:38 -04:00
|
|
|
|
2021-08-10 07:19:45 -04:00
|
|
|
if let Some(ic_allowlist) = unsafely_ignore_certificate_errors {
|
2021-12-06 18:48:11 -05:00
|
|
|
let client_config = ClientConfig::builder()
|
|
|
|
.with_safe_defaults()
|
|
|
|
.with_custom_certificate_verifier(Arc::new(NoCertificateVerification(
|
|
|
|
ic_allowlist,
|
|
|
|
)));
|
|
|
|
|
|
|
|
// NOTE(bartlomieju): this if/else is duplicated at the end of the body of this function.
|
|
|
|
// However it's not really feasible to deduplicate it as the `client_config` instances
|
|
|
|
// are not type-compatible - one wants "client cert", the other wants "transparency policy
|
|
|
|
// or client cert".
|
|
|
|
let client =
|
|
|
|
if let Some((cert_chain, private_key)) = maybe_cert_chain_and_key {
|
|
|
|
client_config
|
|
|
|
.with_single_cert(cert_chain, private_key)
|
|
|
|
.expect("invalid client key or certificate")
|
|
|
|
} else {
|
|
|
|
client_config.with_no_client_auth()
|
|
|
|
};
|
|
|
|
|
|
|
|
return Ok(client);
|
2021-12-01 11:13:11 -05:00
|
|
|
}
|
|
|
|
|
2021-12-06 18:48:11 -05:00
|
|
|
let client_config = ClientConfig::builder()
|
|
|
|
.with_safe_defaults()
|
|
|
|
.with_root_certificates({
|
|
|
|
let mut root_cert_store =
|
|
|
|
root_cert_store.unwrap_or_else(create_default_root_cert_store);
|
|
|
|
// If custom certs are specified, add them to the store
|
|
|
|
for cert in ca_certs {
|
|
|
|
let reader = &mut BufReader::new(Cursor::new(cert));
|
|
|
|
// This function does not return specific errors, if it fails give a generic message.
|
|
|
|
match rustls_pemfile::certs(reader) {
|
|
|
|
Ok(certs) => {
|
|
|
|
root_cert_store.add_parsable_certificates(&certs);
|
|
|
|
}
|
|
|
|
Err(e) => {
|
|
|
|
return Err(anyhow!(
|
|
|
|
"Unable to add pem file to certificate store: {}",
|
|
|
|
e
|
|
|
|
));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
root_cert_store
|
|
|
|
});
|
|
|
|
|
|
|
|
let client = if let Some((cert_chain, private_key)) = maybe_cert_chain_and_key
|
|
|
|
{
|
|
|
|
client_config
|
|
|
|
.with_single_cert(cert_chain, private_key)
|
|
|
|
.expect("invalid client key or certificate")
|
|
|
|
} else {
|
|
|
|
client_config.with_no_client_auth()
|
|
|
|
};
|
|
|
|
|
|
|
|
Ok(client)
|
2021-08-07 08:49:38 -04:00
|
|
|
}
|
|
|
|
|
2021-08-25 08:25:12 -04:00
|
|
|
pub fn load_certs(
|
|
|
|
reader: &mut dyn BufRead,
|
|
|
|
) -> Result<Vec<Certificate>, AnyError> {
|
|
|
|
let certs = certs(reader)
|
|
|
|
.map_err(|_| custom_error("InvalidData", "Unable to decode certificate"))?;
|
|
|
|
|
|
|
|
if certs.is_empty() {
|
|
|
|
let e = custom_error("InvalidData", "No certificates found in cert file");
|
|
|
|
return Err(e);
|
|
|
|
}
|
|
|
|
|
2021-12-06 18:48:11 -05:00
|
|
|
Ok(certs.into_iter().map(Certificate).collect())
|
2021-08-25 08:25:12 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
fn key_decode_err() -> AnyError {
|
|
|
|
custom_error("InvalidData", "Unable to decode key")
|
|
|
|
}
|
|
|
|
|
|
|
|
fn key_not_found_err() -> AnyError {
|
|
|
|
custom_error("InvalidData", "No keys found in key file")
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Starts with -----BEGIN RSA PRIVATE KEY-----
|
|
|
|
fn load_rsa_keys(mut bytes: &[u8]) -> Result<Vec<PrivateKey>, AnyError> {
|
|
|
|
let keys = rsa_private_keys(&mut bytes).map_err(|_| key_decode_err())?;
|
2021-12-06 18:48:11 -05:00
|
|
|
Ok(keys.into_iter().map(PrivateKey).collect())
|
2021-08-25 08:25:12 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Starts with -----BEGIN PRIVATE KEY-----
|
|
|
|
fn load_pkcs8_keys(mut bytes: &[u8]) -> Result<Vec<PrivateKey>, AnyError> {
|
|
|
|
let keys = pkcs8_private_keys(&mut bytes).map_err(|_| key_decode_err())?;
|
2021-12-06 18:48:11 -05:00
|
|
|
Ok(keys.into_iter().map(PrivateKey).collect())
|
2021-08-25 08:25:12 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn load_private_keys(bytes: &[u8]) -> Result<Vec<PrivateKey>, AnyError> {
|
|
|
|
let mut keys = load_rsa_keys(bytes)?;
|
|
|
|
|
|
|
|
if keys.is_empty() {
|
|
|
|
keys = load_pkcs8_keys(bytes)?;
|
|
|
|
}
|
|
|
|
|
|
|
|
if keys.is_empty() {
|
|
|
|
return Err(key_not_found_err());
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(keys)
|
|
|
|
}
|