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
/* -------------------------------------------------------------------------- *\
* Apache 2.0 License Copyright © 2022-2023 The Aurae Authors *
* *
* +--------------------------------------------+ *
* | █████╗ ██╗ ██╗██████╗ █████╗ ███████╗ | *
* | ██╔══██╗██║ ██║██╔══██╗██╔══██╗██╔════╝ | *
* | ███████║██║ ██║██████╔╝███████║█████╗ | *
* | ██╔══██║██║ ██║██╔══██╗██╔══██║██╔══╝ | *
* | ██║ ██║╚██████╔╝██║ ██║██║ ██║███████╗ | *
* | ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝ | *
* +--------------------------------------------+ *
* *
* Distributed Systems Runtime *
* *
* -------------------------------------------------------------------------- *
* *
* Licensed under the Apache License, Version 2.0 (the "License"); *
* you may not use this file except in compliance with the License. *
* You may obtain a copy of the License at *
* *
* http://www.apache.org/licenses/LICENSE-2.0 *
* *
* Unless required by applicable law or agreed to in writing, software *
* distributed under the License is distributed on an "AS IS" BASIS, *
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. *
* See the License for the specific language governing permissions and *
* limitations under the License. *
* *
\* -------------------------------------------------------------------------- */
//! An internally scoped rust client specific for Auraed & AuraeScript.
//!
//! Manages authenticating with remote Aurae instances, as well as searching
//! the local filesystem for configuration and authentication material.
use crate::config::{AuraeConfig, CertMaterial, ClientCertDetails};
use crate::AuraeSocket;
use thiserror::Error;
use tokio::net::{TcpStream, UnixStream};
use tonic::transport::{Certificate, Channel, ClientTlsConfig, Identity, Uri};
use tower::service_fn;
const KNOWN_IGNORED_SOCKET_ADDR: &str = "hxxp://null";
type Result<T> = std::result::Result<T, ClientError>;
#[derive(Error, Debug)]
pub enum ClientError {
#[error(transparent)]
ConnectionError(#[from] tonic::transport::Error),
#[error(transparent)]
Other(#[from] anyhow::Error),
}
/// Instance of a single client for an Aurae consumer.
#[derive(Debug, Clone)]
pub struct Client {
/// The channel used for gRPC connections before encryption is handled.
pub(crate) channel: Channel,
#[allow(unused)]
client_cert_details: Option<ClientCertDetails>,
}
impl Client {
pub async fn default() -> Result<Self> {
Self::new(AuraeConfig::try_default()?).await
}
/// Create a new Client.
///
/// Note: A new client is required for every independent execution of this process.
pub async fn new(
AuraeConfig { auth, system }: AuraeConfig,
) -> Result<Self> {
let cert_material = auth.to_cert_material().await?;
let client_cert_details =
Some(cert_material.get_client_cert_details()?);
let CertMaterial { server_root_ca_cert, client_cert, client_key } =
cert_material;
let tls_config = ClientTlsConfig::new()
// TODO: get this from the config or the cert information somehow
.domain_name("server.unsafe.aurae.io")
.ca_certificate(Certificate::from_pem(server_root_ca_cert))
.identity(Identity::from_pem(client_cert, client_key));
let channel =
Self::connect_chan(system.socket.clone(), Some(tls_config)).await?;
Ok(Self { channel, client_cert_details })
}
/// Create a new Client without TLS, remote server should also expect no TLS.
///
/// Note: A new client is required for every independent execution of this process.
pub async fn new_no_tls(socket: AuraeSocket) -> Result<Self> {
let channel = Self::connect_chan(socket, None).await?;
let client_cert_details = None;
Ok(Self { channel, client_cert_details })
}
async fn connect_chan(
socket: AuraeSocket,
tls_config: Option<ClientTlsConfig>,
) -> Result<Channel> {
let endpoint = Channel::from_static(KNOWN_IGNORED_SOCKET_ADDR);
let endpoint = match tls_config {
None => endpoint,
Some(tls_config) => endpoint.tls_config(tls_config)?,
};
// If the system socket looks like a SocketAddr, bind to it directly. Otherwise,
// connect as a UNIX socket (assume it's a file path).
let channel = match socket {
AuraeSocket::Path(path) => {
endpoint
.connect_with_connector(service_fn(move |_: Uri| {
UnixStream::connect(path.clone())
}))
.await
}
AuraeSocket::Addr(addr) => {
endpoint
.connect_with_connector(service_fn(move |_: Uri| {
TcpStream::connect(addr)
}))
.await
}
}?;
Ok(channel)
}
}