97b01db23e
* cleaned up MixProcessingError
* Added Error impl to (hopefully) all error enums in the codebase
* Replaced all occurences of error("{0}") with error(transparent)
* Changelog entry
669 lines
26 KiB
Rust
669 lines
26 KiB
Rust
// Copyright 2021 - Nym Technologies SA <contact@nymtech.net>
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
use crate::node::client_handling::active_clients::ActiveClientsStore;
|
|
#[cfg(feature = "coconut")]
|
|
use crate::node::client_handling::websocket::connection_handler::coconut::CoconutVerifier;
|
|
use crate::node::client_handling::websocket::connection_handler::{
|
|
AuthenticatedHandler, ClientDetails, InitialAuthResult, SocketStream,
|
|
};
|
|
use crate::node::storage::error::StorageError;
|
|
use crate::node::storage::Storage;
|
|
use crypto::asymmetric::identity;
|
|
use futures::{channel::mpsc, SinkExt, StreamExt};
|
|
use gateway_requests::authentication::encrypted_address::{
|
|
EncryptedAddressBytes, EncryptedAddressConversionError,
|
|
};
|
|
use gateway_requests::iv::{IVConversionError, IV};
|
|
use gateway_requests::registration::handshake::error::HandshakeError;
|
|
use gateway_requests::registration::handshake::{gateway_handshake, SharedKeys};
|
|
use gateway_requests::types::{ClientControlRequest, ServerResponse};
|
|
use gateway_requests::{BinaryResponse, PROTOCOL_VERSION};
|
|
use log::*;
|
|
use mixnet_client::forwarder::MixForwardingSender;
|
|
use nymsphinx::DestinationAddressBytes;
|
|
use rand::{CryptoRng, Rng};
|
|
use std::convert::TryFrom;
|
|
use std::sync::Arc;
|
|
use thiserror::Error;
|
|
use tokio::io::{AsyncRead, AsyncWrite};
|
|
use tokio_tungstenite::tungstenite::{protocol::Message, Error as WsError};
|
|
|
|
#[derive(Debug, Error)]
|
|
enum InitialAuthenticationError {
|
|
#[error("Internal gateway storage error")]
|
|
StorageError(#[from] StorageError),
|
|
|
|
#[error("Failed to perform registration handshake - {0}")]
|
|
HandshakeError(#[from] HandshakeError),
|
|
|
|
#[error("Provided client address is malformed - {0}")]
|
|
// sphinx error is not used here directly as it's messaging might be confusing to people
|
|
MalformedClientAddress(String),
|
|
|
|
#[error("Provided encrypted client address is malformed - {0}")]
|
|
MalformedEncryptedAddress(#[from] EncryptedAddressConversionError),
|
|
|
|
#[error("There is already an open connection to this client")]
|
|
DuplicateConnection,
|
|
|
|
#[error("Provided authentication IV is malformed - {0}")]
|
|
MalformedIV(#[from] IVConversionError),
|
|
|
|
#[error("Only 'Register' or 'Authenticate' requests are allowed")]
|
|
InvalidRequest,
|
|
|
|
#[error("Experienced connection error - {0}")]
|
|
ConnectionError(#[from] WsError),
|
|
|
|
#[error("Attempted to negotiate connection with client using incompatible protocol version. Ours is {current} and the client reports {client:?}")]
|
|
IncompatibleProtocol { client: Option<u8>, current: u8 },
|
|
}
|
|
|
|
impl InitialAuthenticationError {
|
|
/// Converts this Error into an appropriate websocket Message.
|
|
fn into_error_message(self) -> Message {
|
|
ServerResponse::new_error(self.to_string()).into()
|
|
}
|
|
}
|
|
|
|
pub(crate) struct FreshHandler<R, S, St> {
|
|
rng: R,
|
|
local_identity: Arc<identity::KeyPair>,
|
|
pub(crate) only_coconut_credentials: bool,
|
|
pub(crate) active_clients_store: ActiveClientsStore,
|
|
pub(crate) outbound_mix_sender: MixForwardingSender,
|
|
pub(crate) socket_connection: SocketStream<S>,
|
|
pub(crate) storage: St,
|
|
|
|
#[cfg(feature = "coconut")]
|
|
pub(crate) coconut_verifier: Arc<CoconutVerifier>,
|
|
}
|
|
|
|
impl<R, S, St> FreshHandler<R, S, St>
|
|
where
|
|
R: Rng + CryptoRng,
|
|
St: Storage,
|
|
{
|
|
// for time being we assume handle is always constructed from raw socket.
|
|
// if we decide we want to change it, that's not too difficult
|
|
// also at this point I'm not entirely sure how to deal with this warning without
|
|
// some considerable refactoring
|
|
#[allow(clippy::too_many_arguments)]
|
|
pub(crate) fn new(
|
|
rng: R,
|
|
conn: S,
|
|
only_coconut_credentials: bool,
|
|
outbound_mix_sender: MixForwardingSender,
|
|
local_identity: Arc<identity::KeyPair>,
|
|
storage: St,
|
|
active_clients_store: ActiveClientsStore,
|
|
#[cfg(feature = "coconut")] coconut_verifier: Arc<CoconutVerifier>,
|
|
) -> Self {
|
|
FreshHandler {
|
|
rng,
|
|
active_clients_store,
|
|
only_coconut_credentials,
|
|
outbound_mix_sender,
|
|
socket_connection: SocketStream::RawTcp(conn),
|
|
local_identity,
|
|
storage,
|
|
#[cfg(feature = "coconut")]
|
|
coconut_verifier,
|
|
}
|
|
}
|
|
|
|
#[cfg(not(feature = "coconut"))]
|
|
/// Check that the local identity matches a given identity.
|
|
pub(crate) fn check_local_identity(
|
|
&self,
|
|
identity: &crypto::asymmetric::identity::PublicKey,
|
|
) -> bool {
|
|
self.local_identity.public_key().eq(identity)
|
|
}
|
|
|
|
/// Attempts to perform websocket handshake with the remote and upgrades the raw TCP socket
|
|
/// to the framed WebSocket.
|
|
pub(crate) async fn perform_websocket_handshake(&mut self) -> Result<(), WsError>
|
|
where
|
|
S: AsyncRead + AsyncWrite + Unpin,
|
|
{
|
|
self.socket_connection =
|
|
match std::mem::replace(&mut self.socket_connection, SocketStream::Invalid) {
|
|
SocketStream::RawTcp(conn) => {
|
|
// TODO: perhaps in the future, rather than panic here (and uncleanly shut tcp stream)
|
|
// return a result with an error?
|
|
let ws_stream = tokio_tungstenite::accept_async(conn).await?;
|
|
SocketStream::UpgradedWebSocket(ws_stream)
|
|
}
|
|
other => other,
|
|
};
|
|
Ok(())
|
|
}
|
|
|
|
/// Using received `init_msg` tries to continue the registration handshake with the connected
|
|
/// client to establish shared keys.
|
|
///
|
|
/// # Arguments
|
|
///
|
|
/// * `init_msg`: a client handshake init message which should contain its identity public key as well as an ephemeral key.
|
|
async fn perform_registration_handshake(
|
|
&mut self,
|
|
init_msg: Vec<u8>,
|
|
) -> Result<SharedKeys, HandshakeError>
|
|
where
|
|
S: AsyncRead + AsyncWrite + Unpin + Send,
|
|
{
|
|
debug_assert!(self.socket_connection.is_websocket());
|
|
match &mut self.socket_connection {
|
|
SocketStream::UpgradedWebSocket(ws_stream) => {
|
|
gateway_handshake(
|
|
&mut self.rng,
|
|
ws_stream,
|
|
self.local_identity.as_ref(),
|
|
init_msg,
|
|
)
|
|
.await
|
|
}
|
|
_ => unreachable!(),
|
|
}
|
|
}
|
|
|
|
/// Attempts to read websocket message from the associated socket.
|
|
pub(crate) async fn read_websocket_message(&mut self) -> Option<Result<Message, WsError>>
|
|
where
|
|
S: AsyncRead + AsyncWrite + Unpin,
|
|
{
|
|
match self.socket_connection {
|
|
SocketStream::UpgradedWebSocket(ref mut ws_stream) => ws_stream.next().await,
|
|
_ => panic!("impossible state - websocket handshake was somehow reverted"),
|
|
}
|
|
}
|
|
|
|
/// Attempts to write a single websocket message on the available socket.
|
|
///
|
|
/// # Arguments
|
|
///
|
|
/// * `msg`: WebSocket message to write back to the client.
|
|
pub(crate) async fn send_websocket_message(&mut self, msg: Message) -> Result<(), WsError>
|
|
where
|
|
S: AsyncRead + AsyncWrite + Unpin,
|
|
{
|
|
match self.socket_connection {
|
|
// TODO: more closely investigate difference between `Sink::send` and `Sink::send_all`
|
|
// it got something to do with batching and flushing - it might be important if it
|
|
// turns out somehow we've got a bottleneck here
|
|
SocketStream::UpgradedWebSocket(ref mut ws_stream) => ws_stream.send(msg).await,
|
|
_ => panic!("impossible state - websocket handshake was somehow reverted"),
|
|
}
|
|
}
|
|
|
|
/// Sends unwrapped sphinx packets (payloads) back to the client. Note that each message is encrypted and tagged with
|
|
/// the previously derived shared keys.
|
|
///
|
|
/// # Arguments
|
|
///
|
|
/// * `shared_keys`: keys derived between the client and gateway.
|
|
/// * `packets`: unwrapped packets that are to be pushed back to the client.
|
|
pub(crate) async fn push_packets_to_client(
|
|
&mut self,
|
|
shared_keys: SharedKeys,
|
|
packets: Vec<Vec<u8>>,
|
|
) -> Result<(), WsError>
|
|
where
|
|
S: AsyncRead + AsyncWrite + Unpin,
|
|
{
|
|
// note: into_ws_message encrypts the requests and adds a MAC on it. Perhaps it should
|
|
// be more explicit in the naming?
|
|
let messages: Vec<Result<Message, WsError>> = packets
|
|
.into_iter()
|
|
.map(|received_message| {
|
|
Ok(BinaryResponse::new_pushed_mix_message(received_message)
|
|
.into_ws_message(&shared_keys))
|
|
})
|
|
.collect();
|
|
let mut send_stream = futures::stream::iter(messages);
|
|
match self.socket_connection {
|
|
SocketStream::UpgradedWebSocket(ref mut ws_stream) => {
|
|
ws_stream.send_all(&mut send_stream).await
|
|
}
|
|
_ => panic!("impossible state - websocket handshake was somehow reverted"),
|
|
}
|
|
}
|
|
|
|
/// Attempts to extract clients identity key from the received registration handshake init message.
|
|
///
|
|
/// # Arguments
|
|
///
|
|
/// * `init_data`: received init message that should contain, among other things, client's public key.
|
|
// Note: this is out of the scope of this PR, but in the future, this should be removed in favour
|
|
// of doing full parse of the init_data elsewhere
|
|
fn extract_remote_identity_from_register_init(
|
|
init_data: &[u8],
|
|
) -> Result<identity::PublicKey, InitialAuthenticationError> {
|
|
if init_data.len() < identity::PUBLIC_KEY_LENGTH {
|
|
Err(InitialAuthenticationError::HandshakeError(
|
|
HandshakeError::MalformedRequest,
|
|
))
|
|
} else {
|
|
identity::PublicKey::from_bytes(&init_data[..identity::PUBLIC_KEY_LENGTH]).map_err(
|
|
|_| InitialAuthenticationError::HandshakeError(HandshakeError::MalformedRequest),
|
|
)
|
|
}
|
|
}
|
|
|
|
/// Attempts to retrieve all messages currently stored in the persistent database to the client,
|
|
/// which was offline at the time of their receipt.
|
|
///
|
|
/// # Arguments
|
|
///
|
|
/// * `client_address`: address of the client that is going to receive the messages.
|
|
/// * `shared_keys`: shared keys derived between the client and the gateway used to encrypt and tag the messages.
|
|
async fn push_stored_messages_to_client(
|
|
&mut self,
|
|
client_address: DestinationAddressBytes,
|
|
shared_keys: SharedKeys,
|
|
) -> Result<(), InitialAuthenticationError>
|
|
where
|
|
S: AsyncRead + AsyncWrite + Unpin,
|
|
{
|
|
let mut start_next_after = None;
|
|
loop {
|
|
// retrieve some messages
|
|
let (messages, new_start_next_after) = self
|
|
.storage
|
|
.retrieve_messages(client_address, start_next_after)
|
|
.await?;
|
|
|
|
let (messages, ids) = messages
|
|
.into_iter()
|
|
.map(|msg| (msg.content, msg.id))
|
|
.unzip();
|
|
|
|
// push them to the client
|
|
if let Err(err) = self.push_packets_to_client(shared_keys, messages).await {
|
|
warn!("We failed to send stored messages to fresh client - {err}",);
|
|
return Err(InitialAuthenticationError::ConnectionError(err));
|
|
} else {
|
|
// if it was successful - remove them from the store
|
|
self.storage.remove_messages(ids).await?;
|
|
}
|
|
|
|
// no more messages to grab
|
|
if new_start_next_after.is_none() {
|
|
break;
|
|
} else {
|
|
start_next_after = new_start_next_after
|
|
}
|
|
}
|
|
|
|
Ok(())
|
|
}
|
|
|
|
/// Checks whether the stored shared keys match the received data, i.e. whether the upon decryption
|
|
/// the provided encrypted address matches the expected unencrypted address.
|
|
///
|
|
/// Returns the the retrieved shared keys if the check was successful.
|
|
///
|
|
/// # Arguments
|
|
///
|
|
/// * `client_address`: address of the client.
|
|
/// * `encrypted_address`: encrypted address of the client, presumably encrypted using the shared keys.
|
|
/// * `iv`: iv created for this particular encryption.
|
|
async fn verify_stored_shared_key(
|
|
&self,
|
|
client_address: DestinationAddressBytes,
|
|
encrypted_address: EncryptedAddressBytes,
|
|
iv: IV,
|
|
) -> Result<Option<SharedKeys>, InitialAuthenticationError> {
|
|
let shared_keys = self.storage.get_shared_keys(client_address).await?;
|
|
|
|
if let Some(shared_keys) = shared_keys {
|
|
// the unwrap here is fine as we only ever construct persisted shared keys ourselves when inserting
|
|
// data to the storage. The only way it could fail is if we somehow changed implementation without
|
|
// performing proper migration
|
|
let keys = SharedKeys::try_from_base58_string(
|
|
shared_keys.derived_aes128_ctr_blake3_hmac_keys_bs58,
|
|
)
|
|
.unwrap();
|
|
// TODO: SECURITY:
|
|
// this is actually what we have been doing in the past, however,
|
|
// after looking deeper into implementation it seems that only checks the encryption
|
|
// key part of the shared keys. the MAC key might still be wrong
|
|
// (though I don't see how could this happen unless client messed with himself
|
|
// and I don't think it could lead to any attacks, but somebody smarter should take a look)
|
|
if encrypted_address.verify(&client_address, &keys, &iv) {
|
|
Ok(Some(keys))
|
|
} else {
|
|
Ok(None)
|
|
}
|
|
} else {
|
|
Ok(None)
|
|
}
|
|
}
|
|
|
|
fn check_client_protocol(
|
|
&self,
|
|
client_protocol: Option<u8>,
|
|
) -> Result<(), InitialAuthenticationError> {
|
|
// right now there are no failure cases here, but this might change in the future
|
|
match client_protocol {
|
|
None => {
|
|
warn!("the client we're connected to has not specified its protocol version. It's probably running version < 1.1.X, but that's still fine for now. It will become a hard error in 1.2.0");
|
|
// note: in +1.2.0 we will have to return a hard error here
|
|
Ok(())
|
|
}
|
|
Some(v) if v != PROTOCOL_VERSION => {
|
|
let err = InitialAuthenticationError::IncompatibleProtocol {
|
|
client: Some(v),
|
|
current: PROTOCOL_VERSION,
|
|
};
|
|
error!("{err}");
|
|
Err(err)
|
|
}
|
|
|
|
Some(_) => {
|
|
info!("the client is using exactly the same protocol version as we are. We're good to continue!");
|
|
Ok(())
|
|
}
|
|
}
|
|
}
|
|
|
|
/// Using the received challenge data, i.e. client's address as well the ciphertext of it plus
|
|
/// a fresh IV, attempts to authenticate the client by checking whether the ciphertext matches
|
|
/// the expected value if encrypted with the shared key.
|
|
///
|
|
/// Finally, upon completion, all previously stored messages are pushed back to the client.
|
|
///
|
|
/// # Arguments
|
|
///
|
|
/// * `client_address`: address of the client wishing to authenticate.
|
|
/// * `encrypted_address`: ciphertext of the address of the client wishing to authenticate.
|
|
/// * `iv`: fresh IV received with the request.
|
|
async fn authenticate_client(
|
|
&mut self,
|
|
client_address: DestinationAddressBytes,
|
|
encrypted_address: EncryptedAddressBytes,
|
|
iv: IV,
|
|
) -> Result<Option<SharedKeys>, InitialAuthenticationError>
|
|
where
|
|
S: AsyncRead + AsyncWrite + Unpin,
|
|
{
|
|
debug!(
|
|
"Processing authenticate client request for: {}",
|
|
client_address.as_base58_string()
|
|
);
|
|
|
|
let shared_keys = self
|
|
.verify_stored_shared_key(client_address, encrypted_address, iv)
|
|
.await?;
|
|
|
|
if let Some(shared_keys) = shared_keys {
|
|
self.push_stored_messages_to_client(client_address, shared_keys)
|
|
.await?;
|
|
Ok(Some(shared_keys))
|
|
} else {
|
|
Ok(None)
|
|
}
|
|
}
|
|
|
|
/// Tries to handle the received authentication request by checking correctness of the received data.
|
|
///
|
|
/// # Arguments
|
|
///
|
|
/// * `client_address`: address of the client wishing to authenticate.
|
|
/// * `encrypted_address`: ciphertext of the address of the client wishing to authenticate.
|
|
/// * `iv`: fresh IV received with the request.
|
|
async fn handle_authenticate(
|
|
&mut self,
|
|
client_protocol_version: Option<u8>,
|
|
address: String,
|
|
enc_address: String,
|
|
iv: String,
|
|
) -> Result<InitialAuthResult, InitialAuthenticationError>
|
|
where
|
|
S: AsyncRead + AsyncWrite + Unpin,
|
|
{
|
|
self.check_client_protocol(client_protocol_version)?;
|
|
|
|
let address = DestinationAddressBytes::try_from_base58_string(address)
|
|
.map_err(|err| InitialAuthenticationError::MalformedClientAddress(err.to_string()))?;
|
|
let encrypted_address = EncryptedAddressBytes::try_from_base58_string(enc_address)?;
|
|
let iv = IV::try_from_base58_string(iv)?;
|
|
|
|
if self.active_clients_store.get(address).is_some() {
|
|
return Err(InitialAuthenticationError::DuplicateConnection);
|
|
}
|
|
|
|
let shared_keys = self
|
|
.authenticate_client(address, encrypted_address, iv)
|
|
.await?;
|
|
let status = shared_keys.is_some();
|
|
let bandwidth_remaining = self
|
|
.storage
|
|
.get_available_bandwidth(address)
|
|
.await?
|
|
.unwrap_or(0);
|
|
let client_details =
|
|
shared_keys.map(|shared_keys| ClientDetails::new(address, shared_keys));
|
|
|
|
Ok(InitialAuthResult::new(
|
|
client_details,
|
|
ServerResponse::Authenticate {
|
|
protocol_version: Some(PROTOCOL_VERSION),
|
|
status,
|
|
bandwidth_remaining,
|
|
},
|
|
))
|
|
}
|
|
|
|
/// Attempts to finalize registration of the client by storing the derived shared keys in the
|
|
/// persistent store as well as creating entry for its bandwidth allocation.
|
|
///
|
|
/// Finally, upon completion, all previously stored messages are pushed back to the client.
|
|
///
|
|
/// # Arguments
|
|
///
|
|
/// * `client`: details (i.e. address and shared keys) of the registered client
|
|
async fn register_client(
|
|
&mut self,
|
|
client: ClientDetails,
|
|
) -> Result<bool, InitialAuthenticationError>
|
|
where
|
|
S: AsyncRead + AsyncWrite + Unpin,
|
|
{
|
|
debug!(
|
|
"Processing register client request for: {}",
|
|
client.address.as_base58_string()
|
|
);
|
|
|
|
self.storage
|
|
.insert_shared_keys(client.address, client.shared_keys)
|
|
.await?;
|
|
|
|
// see if we have bandwidth entry for the client already, if not, create one with zero value
|
|
if self
|
|
.storage
|
|
.get_available_bandwidth(client.address)
|
|
.await?
|
|
.is_none()
|
|
{
|
|
self.storage.create_bandwidth_entry(client.address).await?;
|
|
}
|
|
|
|
self.push_stored_messages_to_client(client.address, client.shared_keys)
|
|
.await?;
|
|
|
|
Ok(true)
|
|
}
|
|
|
|
/// Tries to handle the received register request by checking attempting to complete registration
|
|
/// handshake using the received data.
|
|
///
|
|
/// # Arguments
|
|
///
|
|
/// * `init_data`: init payload of the registration handshake.
|
|
async fn handle_register(
|
|
&mut self,
|
|
client_protocol_version: Option<u8>,
|
|
init_data: Vec<u8>,
|
|
) -> Result<InitialAuthResult, InitialAuthenticationError>
|
|
where
|
|
S: AsyncRead + AsyncWrite + Unpin + Send,
|
|
{
|
|
self.check_client_protocol(client_protocol_version)?;
|
|
|
|
let remote_identity = Self::extract_remote_identity_from_register_init(&init_data)?;
|
|
let remote_address = remote_identity.derive_destination_address();
|
|
|
|
if self.active_clients_store.get(remote_address).is_some() {
|
|
return Err(InitialAuthenticationError::DuplicateConnection);
|
|
}
|
|
|
|
let shared_keys = self.perform_registration_handshake(init_data).await?;
|
|
let client_details = ClientDetails::new(remote_address, shared_keys);
|
|
|
|
let status = self.register_client(client_details).await?;
|
|
|
|
Ok(InitialAuthResult::new(
|
|
Some(client_details),
|
|
ServerResponse::Register {
|
|
protocol_version: Some(PROTOCOL_VERSION),
|
|
status,
|
|
},
|
|
))
|
|
}
|
|
|
|
/// Handles data that resembles request to either start registration handshake or perform
|
|
/// authentication.
|
|
///
|
|
/// # Arguments
|
|
///
|
|
/// * `raw_request`: raw text request received from the websocket.
|
|
async fn handle_initial_authentication_request(
|
|
&mut self,
|
|
raw_request: String,
|
|
) -> Result<InitialAuthResult, InitialAuthenticationError>
|
|
where
|
|
S: AsyncRead + AsyncWrite + Unpin + Send,
|
|
{
|
|
if let Ok(request) = ClientControlRequest::try_from(raw_request) {
|
|
match request {
|
|
ClientControlRequest::Authenticate {
|
|
protocol_version,
|
|
address,
|
|
enc_address,
|
|
iv,
|
|
} => {
|
|
self.handle_authenticate(protocol_version, address, enc_address, iv)
|
|
.await
|
|
}
|
|
ClientControlRequest::RegisterHandshakeInitRequest {
|
|
protocol_version,
|
|
data,
|
|
} => self.handle_register(protocol_version, data).await,
|
|
// won't accept anything else (like bandwidth) without prior authentication
|
|
_ => Err(InitialAuthenticationError::InvalidRequest),
|
|
}
|
|
} else {
|
|
Err(InitialAuthenticationError::InvalidRequest)
|
|
}
|
|
}
|
|
|
|
/// Listens for only a subset of possible client requests, i.e. for those that can either
|
|
/// result in client getting registered or authenticated. All other requests, such as forwarding
|
|
/// sphinx packets considered an error and terminate the connection.
|
|
// TODO: somehow cleanup this method
|
|
pub(crate) async fn perform_initial_authentication(
|
|
mut self,
|
|
) -> Option<AuthenticatedHandler<R, S, St>>
|
|
where
|
|
S: AsyncRead + AsyncWrite + Unpin + Send,
|
|
{
|
|
trace!("Started waiting for authenticate/register request...");
|
|
|
|
while let Some(msg) = self.read_websocket_message().await {
|
|
let msg = match msg {
|
|
Ok(msg) => msg,
|
|
Err(err) => {
|
|
error!("failed to obtain message from websocket stream! stopping connection handler: {err}");
|
|
break;
|
|
}
|
|
};
|
|
|
|
if msg.is_close() {
|
|
break;
|
|
}
|
|
|
|
// ONLY handle 'Authenticate' or 'Register' requests, ignore everything else
|
|
match msg {
|
|
Message::Close(_) => break,
|
|
Message::Text(text_msg) => {
|
|
let (mix_sender, mix_receiver) = mpsc::unbounded();
|
|
match self.handle_initial_authentication_request(text_msg).await {
|
|
Err(err) => {
|
|
if let Err(err) =
|
|
self.send_websocket_message(err.into_error_message()).await
|
|
{
|
|
debug!("Failed to send authentication error response - {err}");
|
|
return None;
|
|
}
|
|
}
|
|
Ok(auth_result) => {
|
|
if let Err(err) = self
|
|
.send_websocket_message(auth_result.server_response.into())
|
|
.await
|
|
{
|
|
debug!("Failed to send authentication response - {err}");
|
|
return None;
|
|
}
|
|
|
|
return if let Some(client_details) = auth_result.client_details {
|
|
self.active_clients_store
|
|
.insert(client_details.address, mix_sender);
|
|
Some(AuthenticatedHandler::upgrade(
|
|
self,
|
|
client_details,
|
|
mix_receiver,
|
|
))
|
|
} else {
|
|
None
|
|
};
|
|
}
|
|
}
|
|
}
|
|
Message::Binary(_) => {
|
|
// perhaps logging level should be reduced here, let's leave it for now and see what happens
|
|
// if client is working correctly, this should have never happened
|
|
warn!("possibly received a sphinx packet without prior authentication. Request is going to be ignored");
|
|
if let Err(err) = self
|
|
.send_websocket_message(
|
|
ServerResponse::new_error(
|
|
"binary request without prior authentication",
|
|
)
|
|
.into(),
|
|
)
|
|
.await
|
|
{
|
|
debug!(
|
|
"Failed to send error response during authentication - {}",
|
|
err
|
|
)
|
|
}
|
|
return None;
|
|
}
|
|
|
|
_ => continue,
|
|
};
|
|
}
|
|
None
|
|
}
|
|
|
|
pub(crate) async fn start_handling(self)
|
|
where
|
|
S: AsyncRead + AsyncWrite + Unpin + Send,
|
|
{
|
|
super::handle_connection(self).await
|
|
}
|
|
}
|