gateway: broke things apart a little bit

This commit is contained in:
Dave Hrycyszyn
2020-04-16 21:11:25 +01:00
parent d628e065f1
commit 7d49ac8d25
3 changed files with 91 additions and 51 deletions
+42
View File
@@ -0,0 +1,42 @@
// Copyright 2020 Nym Technologies SA
//
// 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.
use super::mixnet_client;
use futures::lock::Mutex;
use futures_util::StreamExt;
use log::*;
use multi_tcp_client::Client as MultiClient;
use std::net::SocketAddr;
use std::sync::Arc;
use tokio::net::TcpStream;
use tokio_tungstenite::accept_async;
use tungstenite::Result;
pub async fn handle_connection(
peer: SocketAddr,
stream: TcpStream,
client_ref: Arc<Mutex<MultiClient>>,
) -> Result<()> {
let mut ws_stream = accept_async(stream).await.expect("Failed to accept");
info!("New WebSocket connection: {}", peer);
while let Some(msg) = ws_stream.next().await {
let msg = msg?;
if msg.is_binary() {
mixnet_client::forward_to_mixnode(msg.into_data(), client_ref.clone()).await;
}
}
Ok(())
}
+6 -51
View File
@@ -13,21 +13,18 @@
// limitations under the License.
use futures::lock::Mutex;
use futures_util::{SinkExt, StreamExt};
use log::*;
use multi_tcp_client::Client as MultiClient;
use nymsphinx::addressing::nodes::NymNodeRoutingAddress;
use nymsphinx::addressing::nodes::NODE_ADDRESS_LENGTH;
use std::net::SocketAddr;
use std::sync::Arc;
use std::time::Duration;
use tokio::net::{TcpListener, TcpStream};
use tokio_tungstenite::{accept_async, tungstenite::Error};
use tungstenite::Message;
use tungstenite::Result;
use tokio_tungstenite::tungstenite::Error;
mod listener;
mod mixnet_client;
async fn accept_connection(peer: SocketAddr, stream: TcpStream, client: Arc<Mutex<MultiClient>>) {
if let Err(e) = handle_connection(peer, stream, client).await {
if let Err(e) = listener::handle_connection(peer, stream, client).await {
match e {
Error::ConnectionClosed | Error::Protocol(_) | Error::Utf8 => (),
err => error!("Error processing connection: {}", err),
@@ -35,38 +32,6 @@ async fn accept_connection(peer: SocketAddr, stream: TcpStream, client: Arc<Mute
}
}
async fn handle_connection(
peer: SocketAddr,
stream: TcpStream,
client_ref: Arc<Mutex<MultiClient>>,
) -> Result<()> {
let mut ws_stream = accept_async(stream).await.expect("Failed to accept");
info!("New WebSocket connection: {}", peer);
while let Some(msg) = ws_stream.next().await {
let msg = msg?;
if msg.is_binary() {
forward_to_mixnode(msg.into_data(), client_ref.clone()).await;
}
}
Ok(())
}
async fn forward_to_mixnode(mut payload: Vec<u8>, client_ref: Arc<Mutex<MultiClient>>) {
info!("Got binary blob");
let mut address_buffer = [0; NODE_ADDRESS_LENGTH];
let packet = payload.split_off(NODE_ADDRESS_LENGTH);
address_buffer.copy_from_slice(payload.as_slice());
let address = NymNodeRoutingAddress::try_from_bytes(&address_buffer)
.unwrap()
.into();
info!("Address: {}", address);
let mut client = client_ref.lock().await;
client.send(address, packet, false).await.unwrap();
}
#[tokio::main]
async fn main() {
dotenv::dotenv().ok();
@@ -75,7 +40,7 @@ async fn main() {
let mut listener = TcpListener::bind(&addr).await.expect("Can't listen");
info!("Listening on: {}", addr);
let client_ref = setup_client();
let client_ref = mixnet_client::new();
while let Ok((stream, _)) = listener.accept().await {
let peer = stream
@@ -87,16 +52,6 @@ async fn main() {
}
}
fn setup_client() -> Arc<Mutex<multi_tcp_client::Client>> {
let config = multi_tcp_client::Config::new(
Duration::from_millis(200),
Duration::from_secs(86400),
Duration::from_secs(2),
);
let client = multi_tcp_client::Client::new(config);
Arc::new(Mutex::new(client))
}
fn setup_logging() {
let mut log_builder = pretty_env_logger::formatted_timed_builder();
if let Ok(s) = ::std::env::var("RUST_LOG") {
+43
View File
@@ -0,0 +1,43 @@
// Copyright 2020 Nym Technologies SA
//
// 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.
// use log::*;
use futures::lock::Mutex;
use multi_tcp_client::Client as MultiClient;
use nymsphinx::addressing::nodes::NymNodeRoutingAddress;
use nymsphinx::addressing::nodes::NODE_ADDRESS_LENGTH;
use std::sync::Arc;
use std::time::Duration;
pub fn new() -> Arc<Mutex<multi_tcp_client::Client>> {
let config = multi_tcp_client::Config::new(
Duration::from_millis(200),
Duration::from_secs(86400),
Duration::from_secs(2),
);
let client = multi_tcp_client::Client::new(config);
Arc::new(Mutex::new(client))
}
pub async fn forward_to_mixnode(mut payload: Vec<u8>, client_ref: Arc<Mutex<MultiClient>>) {
let mut address_buffer = [0; NODE_ADDRESS_LENGTH];
let packet = payload.split_off(NODE_ADDRESS_LENGTH);
address_buffer.copy_from_slice(payload.as_slice());
let address = NymNodeRoutingAddress::try_from_bytes(&address_buffer)
.unwrap()
.into();
let mut client = client_ref.lock().await;
client.send(address, packet, false).await.unwrap();
}