2021-08-07 08:49:38 -04:00
|
|
|
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
|
|
|
|
|
|
|
pub use reqwest;
|
|
|
|
pub use rustls;
|
|
|
|
pub use rustls_native_certs;
|
|
|
|
pub use webpki;
|
|
|
|
pub use webpki_roots;
|
|
|
|
|
|
|
|
use deno_core::error::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::generic_error;
|
|
|
|
use deno_core::error::AnyError;
|
|
|
|
use deno_core::parking_lot::Mutex;
|
|
|
|
use deno_core::Extension;
|
|
|
|
|
|
|
|
use reqwest::header::HeaderMap;
|
|
|
|
use reqwest::header::USER_AGENT;
|
|
|
|
use reqwest::redirect::Policy;
|
|
|
|
use reqwest::Client;
|
2021-08-09 10:53:21 -04:00
|
|
|
use rustls::internal::msgs::handshake::DigitallySignedStruct;
|
2021-08-25 08:25:12 -04:00
|
|
|
use rustls::internal::pemfile::certs;
|
|
|
|
use rustls::internal::pemfile::pkcs8_private_keys;
|
|
|
|
use rustls::internal::pemfile::rsa_private_keys;
|
2021-08-09 10:53:21 -04:00
|
|
|
use rustls::Certificate;
|
2021-08-07 08:49:38 -04:00
|
|
|
use rustls::ClientConfig;
|
2021-08-09 10:53:21 -04:00
|
|
|
use rustls::HandshakeSignatureValid;
|
2021-08-25 08:25:12 -04:00
|
|
|
use rustls::PrivateKey;
|
2021-08-07 08:49:38 -04:00
|
|
|
use rustls::RootCertStore;
|
2021-08-09 10:53:21 -04:00
|
|
|
use rustls::ServerCertVerified;
|
|
|
|
use rustls::ServerCertVerifier;
|
2021-08-07 08:49:38 -04:00
|
|
|
use rustls::StoresClientSessions;
|
2021-08-09 10:53:21 -04:00
|
|
|
use rustls::TLSError;
|
2021-08-10 10:22:21 -04:00
|
|
|
use rustls::WebPKIVerifier;
|
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-08-09 10:53:21 -04:00
|
|
|
use webpki::DNSNameRef;
|
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-08-10 10:22:21 -04:00
|
|
|
roots: &RootCertStore,
|
|
|
|
presented_certs: &[Certificate],
|
|
|
|
dns_name_ref: DNSNameRef<'_>,
|
|
|
|
ocsp: &[u8],
|
2021-08-09 10:53:21 -04:00
|
|
|
) -> Result<ServerCertVerified, TLSError> {
|
2021-08-10 10:22:21 -04:00
|
|
|
let dns_name: &str = dns_name_ref.into();
|
2021-08-09 10:53:21 -04:00
|
|
|
let dns_name: String = dns_name.to_owned();
|
|
|
|
if self.0.is_empty() || self.0.contains(&dns_name) {
|
|
|
|
Ok(ServerCertVerified::assertion())
|
|
|
|
} else {
|
2021-08-10 10:22:21 -04:00
|
|
|
WebPKIVerifier::new().verify_server_cert(
|
|
|
|
roots,
|
|
|
|
presented_certs,
|
|
|
|
dns_name_ref,
|
|
|
|
ocsp,
|
|
|
|
)
|
2021-08-09 10:53:21 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn verify_tls12_signature(
|
|
|
|
&self,
|
|
|
|
_message: &[u8],
|
|
|
|
_cert: &Certificate,
|
|
|
|
_dss: &DigitallySignedStruct,
|
|
|
|
) -> Result<HandshakeSignatureValid, TLSError> {
|
|
|
|
Ok(HandshakeSignatureValid::assertion())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn verify_tls13_signature(
|
|
|
|
&self,
|
|
|
|
_message: &[u8],
|
|
|
|
_cert: &Certificate,
|
|
|
|
_dss: &DigitallySignedStruct,
|
|
|
|
) -> Result<HandshakeSignatureValid, TLSError> {
|
|
|
|
Ok(HandshakeSignatureValid::assertion())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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,
|
|
|
|
}
|
|
|
|
|
|
|
|
lazy_static::lazy_static! {
|
|
|
|
static ref CLIENT_SESSION_MEMORY_CACHE: Arc<ClientSessionMemoryCache> =
|
|
|
|
Arc::new(ClientSessionMemoryCache::default());
|
|
|
|
}
|
|
|
|
|
|
|
|
#[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
|
|
|
|
root_cert_store.add_server_trust_anchors(&webpki_roots::TLS_SERVER_ROOTS);
|
|
|
|
root_cert_store
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn create_client_config(
|
|
|
|
root_cert_store: Option<RootCertStore>,
|
|
|
|
ca_data: Option<Vec<u8>>,
|
2021-08-10 07:19:45 -04:00
|
|
|
unsafely_ignore_certificate_errors: Option<Vec<String>>,
|
2021-08-07 08:49:38 -04:00
|
|
|
) -> Result<ClientConfig, AnyError> {
|
|
|
|
let mut tls_config = ClientConfig::new();
|
|
|
|
tls_config.set_persistence(CLIENT_SESSION_MEMORY_CACHE.clone());
|
|
|
|
tls_config.root_store =
|
|
|
|
root_cert_store.unwrap_or_else(create_default_root_cert_store);
|
|
|
|
|
|
|
|
// If a custom cert is specified, add it to the store
|
|
|
|
if let Some(cert) = ca_data {
|
|
|
|
let reader = &mut BufReader::new(Cursor::new(cert));
|
|
|
|
// This function does not return specific errors, if it fails give a generic message.
|
|
|
|
if let Err(_err) = tls_config.root_store.add_pem_file(reader) {
|
|
|
|
return Err(anyhow!("Unable to add pem file to certificate store"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-10 07:19:45 -04:00
|
|
|
if let Some(ic_allowlist) = unsafely_ignore_certificate_errors {
|
2021-08-09 10:53:21 -04:00
|
|
|
tls_config.dangerous().set_certificate_verifier(Arc::new(
|
|
|
|
NoCertificateVerification(ic_allowlist),
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
2021-08-07 08:49:38 -04:00
|
|
|
Ok(tls_config)
|
|
|
|
}
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(certs)
|
|
|
|
}
|
|
|
|
|
|
|
|
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())?;
|
|
|
|
Ok(keys)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// 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())?;
|
|
|
|
Ok(keys)
|
|
|
|
}
|
|
|
|
|
|
|
|
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)
|
|
|
|
}
|
|
|
|
|
2021-08-07 08:49:38 -04:00
|
|
|
/// Create new instance of async reqwest::Client. This client supports
|
|
|
|
/// proxies and doesn't follow redirects.
|
|
|
|
pub fn create_http_client(
|
|
|
|
user_agent: String,
|
|
|
|
root_cert_store: Option<RootCertStore>,
|
|
|
|
ca_data: Option<Vec<u8>>,
|
|
|
|
proxy: Option<Proxy>,
|
2021-08-10 07:19:45 -04:00
|
|
|
unsafely_ignore_certificate_errors: Option<Vec<String>>,
|
2021-08-25 08:25:12 -04:00
|
|
|
client_cert_chain_and_key: Option<(String, String)>,
|
2021-08-07 08:49:38 -04:00
|
|
|
) -> Result<Client, AnyError> {
|
2021-08-25 08:25:12 -04:00
|
|
|
let mut tls_config = create_client_config(
|
2021-08-09 10:53:21 -04:00
|
|
|
root_cert_store,
|
|
|
|
ca_data,
|
2021-08-10 07:19:45 -04:00
|
|
|
unsafely_ignore_certificate_errors,
|
2021-08-09 10:53:21 -04:00
|
|
|
)?;
|
2021-08-25 08:25:12 -04:00
|
|
|
|
|
|
|
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);
|
|
|
|
|
|
|
|
tls_config
|
|
|
|
.set_single_client_cert(
|
|
|
|
load_certs(&mut cert_chain.as_bytes())?,
|
|
|
|
private_key,
|
|
|
|
)
|
|
|
|
.expect("invalid client key or certificate");
|
|
|
|
}
|
|
|
|
|
2021-08-07 08:49:38 -04:00
|
|
|
let mut headers = HeaderMap::new();
|
|
|
|
headers.insert(USER_AGENT, user_agent.parse().unwrap());
|
|
|
|
let mut builder = Client::builder()
|
|
|
|
.redirect(Policy::none())
|
|
|
|
.default_headers(headers)
|
|
|
|
.use_preconfigured_tls(tls_config);
|
|
|
|
|
|
|
|
if let Some(proxy) = proxy {
|
|
|
|
let mut reqwest_proxy = reqwest::Proxy::all(&proxy.url)?;
|
|
|
|
if let Some(basic_auth) = &proxy.basic_auth {
|
|
|
|
reqwest_proxy =
|
|
|
|
reqwest_proxy.basic_auth(&basic_auth.username, &basic_auth.password);
|
|
|
|
}
|
|
|
|
builder = builder.proxy(reqwest_proxy);
|
|
|
|
}
|
|
|
|
|
|
|
|
builder
|
|
|
|
.build()
|
|
|
|
.map_err(|e| generic_error(format!("Unable to build http client: {}", e)))
|
|
|
|
}
|