b874fc9314
* Initial copy of code from network-requester * Fix unused * Fix reading nym-api * Log env setup steps * rustfmt * fix * Fix unused * Log number of retransmissions instead of rate
312 lines
10 KiB
Rust
312 lines
10 KiB
Rust
// Copyright 2022-2023 - Nym Technologies SA <contact@nymtech.net>
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
use crate::config::GatewayEndpointConfig;
|
|
use crate::error::ClientCoreError;
|
|
use crate::init::types::RegistrationResult;
|
|
use futures::{SinkExt, StreamExt};
|
|
use log::{debug, info, trace, warn};
|
|
use nym_crypto::asymmetric::identity;
|
|
use nym_gateway_client::GatewayClient;
|
|
use nym_topology::{filter::VersionFilterable, gateway, mix};
|
|
use rand::{seq::SliceRandom, Rng};
|
|
use std::{sync::Arc, time::Duration};
|
|
use tungstenite::Message;
|
|
use url::Url;
|
|
|
|
#[cfg(not(target_arch = "wasm32"))]
|
|
use tokio::net::TcpStream;
|
|
#[cfg(not(target_arch = "wasm32"))]
|
|
use tokio::time::Instant;
|
|
#[cfg(not(target_arch = "wasm32"))]
|
|
use tokio_tungstenite::connect_async;
|
|
#[cfg(not(target_arch = "wasm32"))]
|
|
use tokio_tungstenite::{MaybeTlsStream, WebSocketStream};
|
|
#[cfg(not(target_arch = "wasm32"))]
|
|
type WsConn = WebSocketStream<MaybeTlsStream<TcpStream>>;
|
|
use nym_validator_client::client::IdentityKeyRef;
|
|
#[cfg(not(target_arch = "wasm32"))]
|
|
use tokio::time::sleep;
|
|
|
|
#[cfg(target_arch = "wasm32")]
|
|
use wasm_utils::websocket::JSWebsocket;
|
|
#[cfg(target_arch = "wasm32")]
|
|
use wasmtimer::std::Instant;
|
|
#[cfg(target_arch = "wasm32")]
|
|
use wasmtimer::tokio::sleep;
|
|
|
|
#[cfg(target_arch = "wasm32")]
|
|
type WsConn = JSWebsocket;
|
|
|
|
const CONCURRENT_GATEWAYS_MEASURED: usize = 20;
|
|
const MEASUREMENTS: usize = 3;
|
|
|
|
#[cfg(not(target_arch = "wasm32"))]
|
|
const CONN_TIMEOUT: Duration = Duration::from_millis(1500);
|
|
const PING_TIMEOUT: Duration = Duration::from_millis(1000);
|
|
|
|
struct GatewayWithLatency<'a> {
|
|
gateway: &'a gateway::Node,
|
|
latency: Duration,
|
|
}
|
|
|
|
impl<'a> GatewayWithLatency<'a> {
|
|
fn new(gateway: &'a gateway::Node, latency: Duration) -> Self {
|
|
GatewayWithLatency { gateway, latency }
|
|
}
|
|
}
|
|
|
|
pub async fn current_gateways<R: Rng>(
|
|
rng: &mut R,
|
|
nym_apis: &[Url],
|
|
) -> Result<Vec<gateway::Node>, ClientCoreError> {
|
|
let nym_api = nym_apis
|
|
.choose(rng)
|
|
.ok_or(ClientCoreError::ListOfNymApisIsEmpty)?;
|
|
let client = nym_validator_client::client::NymApiClient::new(nym_api.clone());
|
|
|
|
log::debug!("Fetching list of gateways from: {nym_api}");
|
|
|
|
let gateways = client.get_cached_described_gateways().await?;
|
|
log::debug!("Found {} gateways", gateways.len());
|
|
log::trace!("Gateways: {:#?}", gateways);
|
|
|
|
let valid_gateways = gateways
|
|
.into_iter()
|
|
.filter_map(|gateway| gateway.try_into().ok())
|
|
.collect::<Vec<gateway::Node>>();
|
|
log::debug!("Ater checking validity: {}", valid_gateways.len());
|
|
log::trace!("Valid gateways: {:#?}", valid_gateways);
|
|
|
|
// we were always filtering by version so I'm not removing that 'feature'
|
|
let filtered_gateways = valid_gateways.filter_by_version(env!("CARGO_PKG_VERSION"));
|
|
log::debug!("After filtering for version: {}", filtered_gateways.len());
|
|
log::trace!("Filtered gateways: {:#?}", filtered_gateways);
|
|
|
|
log::info!("nym-api reports {} valid gateways", filtered_gateways.len());
|
|
|
|
Ok(filtered_gateways)
|
|
}
|
|
|
|
pub async fn current_mixnodes<R: Rng>(
|
|
rng: &mut R,
|
|
nym_apis: &[Url],
|
|
) -> Result<Vec<mix::Node>, ClientCoreError> {
|
|
let nym_api = nym_apis
|
|
.choose(rng)
|
|
.ok_or(ClientCoreError::ListOfNymApisIsEmpty)?;
|
|
let client = nym_validator_client::client::NymApiClient::new(nym_api.clone());
|
|
|
|
log::trace!("Fetching list of mixnodes from: {nym_api}");
|
|
|
|
let mixnodes = client.get_cached_mixnodes().await?;
|
|
let valid_mixnodes = mixnodes
|
|
.into_iter()
|
|
.filter_map(|mixnode| (&mixnode.bond_information).try_into().ok())
|
|
.collect::<Vec<mix::Node>>();
|
|
|
|
// we were always filtering by version so I'm not removing that 'feature'
|
|
let filtered_mixnodes = valid_mixnodes.filter_by_version(env!("CARGO_PKG_VERSION"));
|
|
Ok(filtered_mixnodes)
|
|
}
|
|
|
|
#[cfg(not(target_arch = "wasm32"))]
|
|
async fn connect(endpoint: &str) -> Result<WsConn, ClientCoreError> {
|
|
match tokio::time::timeout(CONN_TIMEOUT, connect_async(endpoint)).await {
|
|
Err(_elapsed) => Err(ClientCoreError::GatewayConnectionTimeout),
|
|
Ok(Err(conn_failure)) => Err(conn_failure.into()),
|
|
Ok(Ok((stream, _))) => Ok(stream),
|
|
}
|
|
}
|
|
|
|
#[cfg(target_arch = "wasm32")]
|
|
async fn connect(endpoint: &str) -> Result<WsConn, ClientCoreError> {
|
|
JSWebsocket::new(endpoint).map_err(|_| ClientCoreError::GatewayJsConnectionFailure)
|
|
}
|
|
|
|
async fn measure_latency(gateway: &gateway::Node) -> Result<GatewayWithLatency, ClientCoreError> {
|
|
let addr = gateway.clients_address();
|
|
trace!(
|
|
"establishing connection to {} ({addr})...",
|
|
gateway.identity_key,
|
|
);
|
|
let mut stream = connect(&addr).await?;
|
|
|
|
let mut results = Vec::new();
|
|
for _ in 0..MEASUREMENTS {
|
|
let measurement_future = async {
|
|
let ping_content = vec![1, 2, 3];
|
|
let start = Instant::now();
|
|
stream.send(Message::Ping(ping_content.clone())).await?;
|
|
|
|
match stream.next().await {
|
|
Some(Ok(Message::Pong(content))) => {
|
|
if content == ping_content {
|
|
let elapsed = Instant::now().duration_since(start);
|
|
trace!("current ping time: {elapsed:?}");
|
|
results.push(elapsed);
|
|
} else {
|
|
warn!("received a pong message with different content? wtf.")
|
|
}
|
|
}
|
|
Some(Ok(_)) => warn!("received a message that's not a pong!"),
|
|
Some(Err(err)) => return Err(err.into()),
|
|
None => return Err(ClientCoreError::GatewayConnectionAbruptlyClosed),
|
|
}
|
|
|
|
Ok::<(), ClientCoreError>(())
|
|
};
|
|
|
|
let timeout = sleep(PING_TIMEOUT);
|
|
tokio::pin!(timeout);
|
|
|
|
tokio::select! {
|
|
_ = &mut timeout => {
|
|
warn!("timed out while trying to perform measurement...")
|
|
}
|
|
res = measurement_future => res?,
|
|
}
|
|
}
|
|
|
|
let count = results.len() as u64;
|
|
if count == 0 {
|
|
return Err(ClientCoreError::NoGatewayMeasurements {
|
|
identity: gateway.identity_key.to_base58_string(),
|
|
});
|
|
}
|
|
|
|
let sum: Duration = results.into_iter().sum();
|
|
let avg = Duration::from_nanos(sum.as_nanos() as u64 / count);
|
|
|
|
Ok(GatewayWithLatency::new(gateway, avg))
|
|
}
|
|
|
|
pub async fn choose_gateway_by_latency<R: Rng>(
|
|
rng: &mut R,
|
|
gateways: &[gateway::Node],
|
|
must_use_tls: bool,
|
|
) -> Result<gateway::Node, ClientCoreError> {
|
|
let gateways = filter_by_tls(gateways, must_use_tls)?;
|
|
|
|
info!(
|
|
"choosing gateway by latency, pinging {} gateways ...",
|
|
gateways.len()
|
|
);
|
|
|
|
let gateways_with_latency = Arc::new(tokio::sync::Mutex::new(Vec::new()));
|
|
futures::stream::iter(gateways)
|
|
.for_each_concurrent(CONCURRENT_GATEWAYS_MEASURED, |gateway| async {
|
|
let id = *gateway.identity();
|
|
trace!("measuring latency to {id}...");
|
|
match measure_latency(gateway).await {
|
|
Ok(with_latency) => {
|
|
debug!("{id}: {:?}", with_latency.latency);
|
|
gateways_with_latency.lock().await.push(with_latency);
|
|
}
|
|
Err(err) => {
|
|
warn!("failed to measure {id}: {err}");
|
|
}
|
|
};
|
|
})
|
|
.await;
|
|
|
|
let gateways_with_latency = gateways_with_latency.lock().await;
|
|
let chosen = gateways_with_latency
|
|
.choose_weighted(rng, |item| 1. / item.latency.as_secs_f32())
|
|
.expect("invalid selection weight!");
|
|
|
|
info!(
|
|
"chose gateway {} with average latency of {:?}",
|
|
chosen.gateway.identity_key, chosen.latency
|
|
);
|
|
|
|
Ok(chosen.gateway.clone())
|
|
}
|
|
|
|
fn filter_by_tls(
|
|
gateways: &[gateway::Node],
|
|
must_use_tls: bool,
|
|
) -> Result<Vec<&gateway::Node>, ClientCoreError> {
|
|
if must_use_tls {
|
|
let filtered = gateways
|
|
.iter()
|
|
.filter(|g| g.clients_wss_port.is_some())
|
|
.collect::<Vec<_>>();
|
|
|
|
if filtered.is_empty() {
|
|
return Err(ClientCoreError::NoWssGateways);
|
|
}
|
|
|
|
Ok(filtered)
|
|
} else {
|
|
Ok(gateways.iter().collect())
|
|
}
|
|
}
|
|
|
|
pub(super) fn uniformly_random_gateway<R: Rng>(
|
|
rng: &mut R,
|
|
gateways: &[gateway::Node],
|
|
must_use_tls: bool,
|
|
) -> Result<gateway::Node, ClientCoreError> {
|
|
filter_by_tls(gateways, must_use_tls)?
|
|
.choose(rng)
|
|
.ok_or(ClientCoreError::NoGatewaysOnNetwork)
|
|
.map(|&r| r.clone())
|
|
}
|
|
|
|
pub(super) fn get_specified_gateway(
|
|
gateway_identity: IdentityKeyRef,
|
|
gateways: &[gateway::Node],
|
|
must_use_tls: bool,
|
|
) -> Result<gateway::Node, ClientCoreError> {
|
|
log::debug!("Requesting specified gateway: {}", gateway_identity);
|
|
let user_gateway = identity::PublicKey::from_base58_string(gateway_identity)
|
|
.map_err(ClientCoreError::UnableToCreatePublicKeyFromGatewayId)?;
|
|
|
|
let gateway = gateways
|
|
.iter()
|
|
.find(|gateway| gateway.identity_key == user_gateway)
|
|
.ok_or_else(|| ClientCoreError::NoGatewayWithId(gateway_identity.to_string()))?;
|
|
|
|
if must_use_tls && gateway.clients_wss_port.is_none() {
|
|
return Err(ClientCoreError::UnsupportedWssProtocol {
|
|
gateway: gateway_identity.to_string(),
|
|
});
|
|
}
|
|
|
|
Ok(gateway.clone())
|
|
}
|
|
|
|
pub(super) async fn register_with_gateway(
|
|
gateway: &GatewayEndpointConfig,
|
|
our_identity: Arc<identity::KeyPair>,
|
|
) -> Result<RegistrationResult, ClientCoreError> {
|
|
let mut gateway_client =
|
|
GatewayClient::new_init(gateway.to_owned().try_into()?, our_identity.clone());
|
|
|
|
gateway_client.establish_connection().await.map_err(|err| {
|
|
log::warn!("Failed to establish connection with gateway!");
|
|
ClientCoreError::GatewayClientError {
|
|
gateway_id: gateway.gateway_id.clone(),
|
|
source: err,
|
|
}
|
|
})?;
|
|
let shared_keys = gateway_client
|
|
.perform_initial_authentication()
|
|
.await
|
|
.map_err(|err| {
|
|
log::warn!(
|
|
"Failed to register with the gateway {}!",
|
|
gateway.gateway_id
|
|
);
|
|
ClientCoreError::GatewayClientError {
|
|
gateway_id: gateway.gateway_id.clone(),
|
|
source: err,
|
|
}
|
|
})?;
|
|
Ok(RegistrationResult {
|
|
shared_keys,
|
|
authenticated_ephemeral_client: gateway_client,
|
|
})
|
|
}
|