mirror of
https://github.com/uqbar-dao/nectar.git
synced 2024-12-22 08:01:47 +03:00
nice! establishing new connections is now asynchronized
This commit is contained in:
parent
c7e37fd10d
commit
d2fc275cfd
14
Cargo.lock
generated
14
Cargo.lock
generated
@ -1052,6 +1052,19 @@ dependencies = [
|
||||
"syn 1.0.109",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "dashmap"
|
||||
version = "5.5.3"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856"
|
||||
dependencies = [
|
||||
"cfg-if",
|
||||
"hashbrown 0.14.0",
|
||||
"lock_api",
|
||||
"once_cell",
|
||||
"parking_lot_core",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "data-encoding"
|
||||
version = "2.4.0"
|
||||
@ -4995,6 +5008,7 @@ dependencies = [
|
||||
"chacha20poly1305 0.10.1",
|
||||
"chrono",
|
||||
"crossterm",
|
||||
"dashmap",
|
||||
"digest 0.10.7",
|
||||
"dotenv",
|
||||
"elliptic-curve",
|
||||
|
@ -24,6 +24,7 @@ cap-std = "2.0.0"
|
||||
chacha20poly1305 = "0.10.1"
|
||||
chrono = "0.4.31"
|
||||
crossterm = { version = "0.26.1", features = ["event-stream", "bracketed-paste"] }
|
||||
dashmap = "5.5.3"
|
||||
digest = "0.10"
|
||||
dotenv = "0.15.0"
|
||||
elliptic-curve = { version = "0.13.5", features = ["ecdh"] }
|
||||
|
496
src/net/mod.rs
496
src/net/mod.rs
@ -1,14 +1,13 @@
|
||||
use crate::net::{types::*, utils::*};
|
||||
use crate::types::*;
|
||||
use anyhow::{anyhow, Result};
|
||||
use dashmap::DashMap;
|
||||
use futures::{SinkExt, StreamExt};
|
||||
use rand::seq::SliceRandom;
|
||||
use ring::signature::Ed25519KeyPair;
|
||||
use std::{
|
||||
collections::{HashMap, HashSet},
|
||||
sync::Arc,
|
||||
};
|
||||
use std::{collections::HashMap, sync::Arc};
|
||||
use tokio::net::TcpListener;
|
||||
use tokio::sync::Mutex;
|
||||
use tokio::task::JoinSet;
|
||||
use tokio::time;
|
||||
use tokio_tungstenite::{
|
||||
@ -95,18 +94,19 @@ async fn indirect_networking(
|
||||
kernel_message_tx: MessageSender,
|
||||
network_error_tx: NetworkErrorSender,
|
||||
print_tx: PrintSender,
|
||||
self_message_tx: MessageSender,
|
||||
_self_message_tx: MessageSender,
|
||||
mut message_rx: MessageReceiver,
|
||||
reveal_ip: bool,
|
||||
) -> Result<()> {
|
||||
print_debug(&print_tx, "net: starting as indirect").await;
|
||||
let mut pki: OnchainPKI = HashMap::new();
|
||||
let mut peers: Peers = HashMap::new();
|
||||
let pki: OnchainPKI = Arc::new(DashMap::new());
|
||||
let peers: Peers = Arc::new(DashMap::new());
|
||||
// mapping from QNS namehash to username
|
||||
let mut names: PKINames = HashMap::new();
|
||||
let mut peer_connections = JoinSet::<(NodeId, Option<KernelMessage>)>::new();
|
||||
// indirect-specific structure
|
||||
let mut active_routers = HashSet::<NodeId>::new();
|
||||
let names: PKINames = Arc::new(DashMap::new());
|
||||
let peer_connections = Arc::new(Mutex::new(JoinSet::<()>::new()));
|
||||
// track peers that we're already in the midst of establishing a connection with
|
||||
let mut pending_connections = JoinSet::<(NodeId, Result<()>)>::new();
|
||||
let mut peer_message_queues = HashMap::<NodeId, Vec<KernelMessage>>::new();
|
||||
|
||||
loop {
|
||||
tokio::select! {
|
||||
@ -123,23 +123,23 @@ async fn indirect_networking(
|
||||
&our_ip,
|
||||
&keypair,
|
||||
km,
|
||||
&mut peers,
|
||||
&mut pki,
|
||||
&mut peer_connections,
|
||||
peers.clone(),
|
||||
pki.clone(),
|
||||
peer_connections.clone(),
|
||||
None,
|
||||
None,
|
||||
Some(&active_routers),
|
||||
&mut names,
|
||||
names.clone(),
|
||||
&kernel_message_tx,
|
||||
&print_tx,
|
||||
)
|
||||
.await {
|
||||
Ok(()) => {},
|
||||
Ok(()) => continue,
|
||||
Err(e) => {
|
||||
print_tx.send(Printout {
|
||||
verbosity: 0,
|
||||
content: format!("net: error handling local message: {e}")
|
||||
}).await?;
|
||||
continue
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -147,117 +147,117 @@ async fn indirect_networking(
|
||||
// try to send it to them
|
||||
else if let Some(peer) = peers.get_mut(target) {
|
||||
peer.sender.send(km)?;
|
||||
continue
|
||||
}
|
||||
else if let Some(peer_id) = pki.get(target) {
|
||||
// if the message is for a *direct* peer we don't have a connection with,
|
||||
// try to establish a connection with them
|
||||
// here, we can *choose* to use our routers so as not to reveal
|
||||
// networking information about ourselves to the target.
|
||||
if peer_id.ws_routing.is_some() && reveal_ip {
|
||||
print_debug(&print_tx, &format!("net: attempting to connect to {} directly", peer_id.name)).await;
|
||||
match init_connection(&our, &our_ip, peer_id, &keypair, None, false).await {
|
||||
Ok(direct_conn) => {
|
||||
save_new_peer(
|
||||
peer_id,
|
||||
false,
|
||||
&mut peers,
|
||||
&mut peer_connections,
|
||||
direct_conn,
|
||||
Some(km),
|
||||
&kernel_message_tx,
|
||||
&print_tx,
|
||||
).await?;
|
||||
// if we cannot send it to an existing peer-connection, need to spawn
|
||||
// a task that will attempt to establish such a connection.
|
||||
// if such a task already exists for that peer, we should queue the message
|
||||
// to be sent once that task completes. otherwise, it will duplicate connections.
|
||||
pending_connections.spawn(establish_new_peer_connection(
|
||||
our.clone(),
|
||||
our_ip.clone(),
|
||||
keypair.clone(),
|
||||
km,
|
||||
pki.clone(),
|
||||
names.clone(),
|
||||
peers.clone(),
|
||||
peer_connections.clone(),
|
||||
reveal_ip,
|
||||
kernel_message_tx.clone(),
|
||||
network_error_tx.clone(),
|
||||
print_tx.clone()
|
||||
));
|
||||
}
|
||||
// 2. recover the result of a pending connection and flush any message
|
||||
// queue that's built up since it was spawned
|
||||
Some(Ok((peer_name, result))) = pending_connections.join_next() => {
|
||||
match result {
|
||||
Ok(()) => {
|
||||
// if we have a message queue for this peer, send it out
|
||||
if let Some(queue) = peer_message_queues.remove(&peer_name) {
|
||||
for km in queue {
|
||||
peers.get_mut(&peer_name).unwrap().sender.send(km)?;
|
||||
}
|
||||
Err(_) => {
|
||||
}
|
||||
}
|
||||
Err(_e) => {
|
||||
// TODO decide if this is good behavior, but throw
|
||||
// offline error for each message in this peer's queue
|
||||
if let Some(queue) = peer_message_queues.remove(&peer_name) {
|
||||
for km in queue {
|
||||
error_offline(km, &network_error_tx).await?;
|
||||
}
|
||||
}
|
||||
}
|
||||
// if the message is for an *indirect* peer we don't have a connection with,
|
||||
// or we want to protect our node's physical networking details from non-routers,
|
||||
// do some routing: in a randomized order, go through their listed routers
|
||||
// on chain and try to get one of them to build a proxied connection to
|
||||
// this node for you
|
||||
else {
|
||||
print_debug(&print_tx, &format!("net: attempting to connect to {} via router", peer_id.name)).await;
|
||||
let sent = time::timeout(TIMEOUT,
|
||||
init_connection_via_router(
|
||||
&our,
|
||||
&our_ip,
|
||||
&keypair,
|
||||
km.clone(),
|
||||
peer_id,
|
||||
&pki,
|
||||
&names,
|
||||
&mut peers,
|
||||
&mut peer_connections,
|
||||
kernel_message_tx.clone(),
|
||||
print_tx.clone(),
|
||||
)).await;
|
||||
if !sent.unwrap_or(false) {
|
||||
// none of the routers worked!
|
||||
error_offline(km, &network_error_tx).await?;
|
||||
}
|
||||
}
|
||||
}
|
||||
// peer cannot be found in PKI, throw an offline error
|
||||
else {
|
||||
error_offline(km, &network_error_tx).await?;
|
||||
}
|
||||
}
|
||||
// 2. deal with active connections that die by removing the associated peer
|
||||
// if the peer is one of our routers, remove them from router-set
|
||||
Some(Ok((dead_peer, maybe_resend))) = peer_connections.join_next() => {
|
||||
print_debug(&print_tx, &format!("net: connection with {dead_peer} died")).await;
|
||||
peers.remove(&dead_peer);
|
||||
active_routers.remove(&dead_peer);
|
||||
match maybe_resend {
|
||||
None => {},
|
||||
Some(km) => {
|
||||
self_message_tx.send(km).await?;
|
||||
}
|
||||
}
|
||||
}
|
||||
// 3. periodically attempt to connect to any allowed routers that we
|
||||
// are not connected to
|
||||
_ = time::sleep(time::Duration::from_secs(3)) => {
|
||||
if active_routers.len() == our.allowed_routers.len() {
|
||||
continue;
|
||||
}
|
||||
for router in &our.allowed_routers {
|
||||
if active_routers.contains(router) {
|
||||
continue;
|
||||
}
|
||||
let Some(router_id) = pki.get(router) else {
|
||||
continue;
|
||||
};
|
||||
print_debug(&print_tx, "net: attempting to connect to router").await;
|
||||
match init_connection(&our, &our_ip, router_id, &keypair, None, true).await {
|
||||
Ok(direct_conn) => {
|
||||
print_tx.send(Printout {
|
||||
verbosity: 0,
|
||||
content: format!("now connected to router {}", router_id.name),
|
||||
}).await?;
|
||||
active_routers.insert(router_id.name.clone());
|
||||
save_new_peer(
|
||||
router_id,
|
||||
false,
|
||||
&mut peers,
|
||||
&mut peer_connections,
|
||||
direct_conn,
|
||||
None,
|
||||
&kernel_message_tx,
|
||||
&print_tx,
|
||||
).await?;
|
||||
}
|
||||
Err(_e) => continue,
|
||||
}
|
||||
}
|
||||
// are not connected to -- TODO do some exponential backoff if a router
|
||||
// is not responding.
|
||||
_ = time::sleep(time::Duration::from_secs(5)) => {
|
||||
tokio::spawn(connect_to_routers(
|
||||
our.clone(),
|
||||
our_ip.clone(),
|
||||
keypair.clone(),
|
||||
pki.clone(),
|
||||
peers.clone(),
|
||||
peer_connections.clone(),
|
||||
kernel_message_tx.clone(),
|
||||
print_tx.clone()
|
||||
));
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
async fn connect_to_routers(
|
||||
our: Identity,
|
||||
our_ip: String,
|
||||
keypair: Arc<Ed25519KeyPair>,
|
||||
pki: OnchainPKI,
|
||||
peers: Peers,
|
||||
peer_connections: Arc<Mutex<JoinSet<()>>>,
|
||||
kernel_message_tx: MessageSender,
|
||||
print_tx: PrintSender,
|
||||
) -> Result<()> {
|
||||
for router in &our.allowed_routers {
|
||||
if peers.contains_key(router) {
|
||||
continue;
|
||||
}
|
||||
let Some(router_id) = pki.get(router) else {
|
||||
continue;
|
||||
};
|
||||
print_debug(
|
||||
&print_tx,
|
||||
&format!("net: attempting to connect to router {router}"),
|
||||
)
|
||||
.await;
|
||||
match init_connection(&our, &our_ip, &router_id, &keypair, None, true).await {
|
||||
Ok(direct_conn) => {
|
||||
print_tx
|
||||
.send(Printout {
|
||||
verbosity: 0,
|
||||
content: format!("connected to router {}", router_id.name),
|
||||
})
|
||||
.await?;
|
||||
save_new_peer(
|
||||
&router_id,
|
||||
false,
|
||||
peers.clone(),
|
||||
peer_connections.clone(),
|
||||
direct_conn,
|
||||
None,
|
||||
&kernel_message_tx,
|
||||
&print_tx,
|
||||
)
|
||||
.await;
|
||||
}
|
||||
Err(_e) => continue,
|
||||
}
|
||||
}
|
||||
Ok(())
|
||||
}
|
||||
|
||||
async fn direct_networking(
|
||||
our: Identity,
|
||||
our_ip: String,
|
||||
@ -266,18 +266,21 @@ async fn direct_networking(
|
||||
kernel_message_tx: MessageSender,
|
||||
network_error_tx: NetworkErrorSender,
|
||||
print_tx: PrintSender,
|
||||
self_message_tx: MessageSender,
|
||||
_self_message_tx: MessageSender,
|
||||
mut message_rx: MessageReceiver,
|
||||
) -> Result<()> {
|
||||
print_debug(&print_tx, "net: starting as direct").await;
|
||||
let mut pki: OnchainPKI = HashMap::new();
|
||||
let mut peers: Peers = HashMap::new();
|
||||
let pki: OnchainPKI = Arc::new(DashMap::new());
|
||||
let peers: Peers = Arc::new(DashMap::new());
|
||||
// mapping from QNS namehash to username
|
||||
let mut names: PKINames = HashMap::new();
|
||||
let mut peer_connections = JoinSet::<(NodeId, Option<KernelMessage>)>::new();
|
||||
let names: PKINames = Arc::new(DashMap::new());
|
||||
let peer_connections = Arc::new(Mutex::new(JoinSet::<()>::new()));
|
||||
// direct-specific structures
|
||||
let mut forwarding_connections = JoinSet::<()>::new();
|
||||
let mut pending_passthroughs: PendingPassthroughs = HashMap::new();
|
||||
// track peers that we're already in the midst of establishing a connection with
|
||||
let mut pending_connections = JoinSet::<(NodeId, Result<()>)>::new();
|
||||
let mut peer_message_queues = HashMap::<NodeId, Vec<KernelMessage>>::new();
|
||||
|
||||
loop {
|
||||
tokio::select! {
|
||||
@ -285,95 +288,83 @@ async fn direct_networking(
|
||||
// making new connections as needed
|
||||
Some(km) = message_rx.recv() => {
|
||||
// got a message from kernel to send out over the network
|
||||
let target = &km.target.node;
|
||||
// if the message is for us, it's either a protocol-level "hello" message,
|
||||
// or a debugging command issued from our terminal. handle it here:
|
||||
if target == &our.name {
|
||||
if km.target.node == our.name {
|
||||
match handle_local_message(
|
||||
&our,
|
||||
&our_ip,
|
||||
&keypair,
|
||||
km,
|
||||
&mut peers,
|
||||
&mut pki,
|
||||
&mut peer_connections,
|
||||
peers.clone(),
|
||||
pki.clone(),
|
||||
peer_connections.clone(),
|
||||
Some(&mut pending_passthroughs),
|
||||
Some(&forwarding_connections),
|
||||
None,
|
||||
&mut names,
|
||||
names.clone(),
|
||||
&kernel_message_tx,
|
||||
&print_tx,
|
||||
)
|
||||
.await {
|
||||
Ok(()) => {},
|
||||
Ok(()) => continue,
|
||||
Err(e) => {
|
||||
print_tx.send(Printout {
|
||||
verbosity: 0,
|
||||
content: format!("net: error handling local message: {}", e)
|
||||
}).await?;
|
||||
continue;
|
||||
}
|
||||
}
|
||||
}
|
||||
// if the message is for a peer we currently have a connection with,
|
||||
// try to send it to them
|
||||
else if let Some(peer) = peers.get_mut(target) {
|
||||
else if let Some(peer) = peers.get_mut(&km.target.node) {
|
||||
peer.sender.send(km)?;
|
||||
continue
|
||||
}
|
||||
else if let Some(peer_id) = pki.get(target) {
|
||||
// if the message is for a *direct* peer we don't have a connection with,
|
||||
// try to establish a connection with them
|
||||
if peer_id.ws_routing.is_some() {
|
||||
print_debug(&print_tx, &format!("net: attempting to connect to {} directly", peer_id.name)).await;
|
||||
match init_connection(&our, &our_ip, peer_id, &keypair, None, false).await {
|
||||
Ok(direct_conn) => {
|
||||
save_new_peer(
|
||||
peer_id,
|
||||
false,
|
||||
&mut peers,
|
||||
&mut peer_connections,
|
||||
direct_conn,
|
||||
Some(km),
|
||||
&kernel_message_tx,
|
||||
&print_tx,
|
||||
).await?;
|
||||
// if we cannot send it to an existing peer-connection, need to spawn
|
||||
// a task that will attempt to establish such a connection.
|
||||
// if such a task already exists for that peer, we should queue the message
|
||||
// to be sent once that task completes. otherwise, it will duplicate connections.
|
||||
pending_connections.spawn(establish_new_peer_connection(
|
||||
our.clone(),
|
||||
our_ip.clone(),
|
||||
keypair.clone(),
|
||||
km,
|
||||
pki.clone(),
|
||||
names.clone(),
|
||||
peers.clone(),
|
||||
peer_connections.clone(),
|
||||
true,
|
||||
kernel_message_tx.clone(),
|
||||
network_error_tx.clone(),
|
||||
print_tx.clone()
|
||||
));
|
||||
}
|
||||
// 2. recover the result of a pending connection and flush any message
|
||||
// queue that's built up since it was spawned
|
||||
Some(Ok((peer_name, result))) = pending_connections.join_next() => {
|
||||
match result {
|
||||
Ok(()) => {
|
||||
// if we have a message queue for this peer, send it out
|
||||
if let Some(queue) = peer_message_queues.remove(&peer_name) {
|
||||
for km in queue {
|
||||
peers.get_mut(&peer_name).unwrap().sender.send(km)?;
|
||||
}
|
||||
Err(_) => {
|
||||
}
|
||||
}
|
||||
Err(_e) => {
|
||||
// TODO decide if this is good behavior, but throw
|
||||
// offline error for each message in this peer's queue
|
||||
if let Some(queue) = peer_message_queues.remove(&peer_name) {
|
||||
for km in queue {
|
||||
error_offline(km, &network_error_tx).await?;
|
||||
}
|
||||
}
|
||||
}
|
||||
// if the message is for an *indirect* peer we don't have a connection with,
|
||||
// do some routing: in a randomized order, go through their listed routers
|
||||
// on chain and try to get one of them to build a proxied connection to
|
||||
// this node for you
|
||||
else {
|
||||
print_debug(&print_tx, &format!("net: attempting to connect to {} via router", peer_id.name)).await;
|
||||
let sent = time::timeout(TIMEOUT,
|
||||
init_connection_via_router(
|
||||
&our,
|
||||
&our_ip,
|
||||
&keypair,
|
||||
km.clone(),
|
||||
peer_id,
|
||||
&pki,
|
||||
&names,
|
||||
&mut peers,
|
||||
&mut peer_connections,
|
||||
kernel_message_tx.clone(),
|
||||
print_tx.clone(),
|
||||
)).await;
|
||||
if !sent.unwrap_or(false) {
|
||||
// none of the routers worked!
|
||||
error_offline(km, &network_error_tx).await?;
|
||||
}
|
||||
}
|
||||
}
|
||||
// peer cannot be found in PKI, throw an offline error
|
||||
else {
|
||||
error_offline(km, &network_error_tx).await?;
|
||||
}
|
||||
}
|
||||
// 2. receive incoming TCP connections
|
||||
// 3. receive incoming TCP connections
|
||||
Ok((stream, _socket_addr)) = tcp.accept() => {
|
||||
// TODO we can perform some amount of validation here
|
||||
// to prevent some amount of potential DDoS attacks.
|
||||
@ -410,13 +401,13 @@ async fn direct_networking(
|
||||
save_new_peer(
|
||||
&peer_id,
|
||||
routing_for,
|
||||
&mut peers,
|
||||
&mut peer_connections,
|
||||
peers.clone(),
|
||||
peer_connections.clone(),
|
||||
peer_conn,
|
||||
None,
|
||||
&kernel_message_tx,
|
||||
&print_tx
|
||||
).await?;
|
||||
).await;
|
||||
}
|
||||
Connection::Passthrough(passthrough_conn) => {
|
||||
forwarding_connections.spawn(maintain_passthrough(
|
||||
@ -435,18 +426,98 @@ async fn direct_networking(
|
||||
Err(_) => {}
|
||||
}
|
||||
}
|
||||
// 3. deal with active connections that die by removing the associated peer
|
||||
Some(Ok((dead_peer, maybe_resend))) = peer_connections.join_next() => {
|
||||
print_debug(&print_tx, &format!("net: connection with {dead_peer} died")).await;
|
||||
peers.remove(&dead_peer);
|
||||
match maybe_resend {
|
||||
None => {},
|
||||
Some(km) => {
|
||||
self_message_tx.send(km).await?;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
async fn establish_new_peer_connection(
|
||||
our: Identity,
|
||||
our_ip: String,
|
||||
keypair: Arc<Ed25519KeyPair>,
|
||||
km: KernelMessage,
|
||||
pki: OnchainPKI,
|
||||
names: PKINames,
|
||||
peers: Peers,
|
||||
peer_connections: Arc<Mutex<JoinSet<()>>>,
|
||||
reveal_ip: bool,
|
||||
kernel_message_tx: MessageSender,
|
||||
network_error_tx: NetworkErrorSender,
|
||||
print_tx: PrintSender,
|
||||
) -> (NodeId, Result<()>) {
|
||||
if let Some(peer_id) = pki.get(&km.target.node) {
|
||||
// if the message is for a *direct* peer we don't have a connection with,
|
||||
// try to establish a connection with them
|
||||
// here, we can *choose* to use our routers so as not to reveal
|
||||
// networking information about ourselves to the target.
|
||||
if peer_id.ws_routing.is_some() && reveal_ip {
|
||||
print_debug(
|
||||
&print_tx,
|
||||
&format!("net: attempting to connect to {} directly", peer_id.name),
|
||||
)
|
||||
.await;
|
||||
match init_connection(&our, &our_ip, &peer_id, &keypair, None, false).await {
|
||||
Ok(direct_conn) => {
|
||||
save_new_peer(
|
||||
&peer_id,
|
||||
false,
|
||||
peers,
|
||||
peer_connections,
|
||||
direct_conn,
|
||||
Some(km),
|
||||
&kernel_message_tx,
|
||||
&print_tx,
|
||||
)
|
||||
.await;
|
||||
(peer_id.name.clone(), Ok(()))
|
||||
}
|
||||
Err(_) => {
|
||||
let _ = error_offline(km, &network_error_tx).await;
|
||||
(peer_id.name.clone(), Err(anyhow!("failed to connect to peer")))
|
||||
}
|
||||
}
|
||||
}
|
||||
// if the message is for an *indirect* peer we don't have a connection with,
|
||||
// or we want to protect our node's physical networking details from non-routers,
|
||||
// do some routing: in a randomized order, go through their listed routers
|
||||
// on chain and try to get one of them to build a proxied connection to
|
||||
// this node for you
|
||||
else {
|
||||
print_debug(
|
||||
&print_tx,
|
||||
&format!("net: attempting to connect to {} via router", peer_id.name),
|
||||
)
|
||||
.await;
|
||||
let sent = time::timeout(
|
||||
TIMEOUT,
|
||||
init_connection_via_router(
|
||||
&our,
|
||||
&our_ip,
|
||||
&keypair,
|
||||
km.clone(),
|
||||
&peer_id,
|
||||
&pki,
|
||||
&names,
|
||||
peers,
|
||||
peer_connections,
|
||||
kernel_message_tx.clone(),
|
||||
print_tx.clone(),
|
||||
),
|
||||
)
|
||||
.await;
|
||||
if sent.unwrap_or(false) {
|
||||
(peer_id.name.clone(), Ok(()))
|
||||
} else {
|
||||
// none of the routers worked!
|
||||
let _ = error_offline(km, &network_error_tx).await;
|
||||
(peer_id.name.clone(), Err(anyhow!("failed to connect to peer")))
|
||||
}
|
||||
}
|
||||
}
|
||||
// peer cannot be found in PKI, throw an offline error
|
||||
else {
|
||||
let peer_name = km.target.node.clone();
|
||||
let _ = error_offline(km, &network_error_tx).await;
|
||||
(peer_name, Err(anyhow!("failed to connect to peer")))
|
||||
}
|
||||
}
|
||||
|
||||
@ -458,8 +529,8 @@ async fn init_connection_via_router(
|
||||
peer_id: &Identity,
|
||||
pki: &OnchainPKI,
|
||||
names: &PKINames,
|
||||
peers: &mut Peers,
|
||||
peer_connections: &mut JoinSet<(NodeId, Option<KernelMessage>)>,
|
||||
peers: Peers,
|
||||
peer_connections: Arc<Mutex<JoinSet<()>>>,
|
||||
kernel_message_tx: MessageSender,
|
||||
print_tx: PrintSender,
|
||||
) -> bool {
|
||||
@ -472,13 +543,13 @@ async fn init_connection_via_router(
|
||||
let Some(router_name) = names.get(router_namehash) else {
|
||||
continue;
|
||||
};
|
||||
let router_id = match pki.get(router_name) {
|
||||
let router_id = match pki.get(router_name.as_str()) {
|
||||
None => continue,
|
||||
Some(id) => id,
|
||||
};
|
||||
match init_connection(&our, &our_ip, peer_id, &keypair, Some(router_id), false).await {
|
||||
match init_connection(&our, &our_ip, peer_id, &keypair, Some(&router_id), false).await {
|
||||
Ok(direct_conn) => {
|
||||
return save_new_peer(
|
||||
save_new_peer(
|
||||
peer_id,
|
||||
false,
|
||||
peers,
|
||||
@ -488,8 +559,8 @@ async fn init_connection_via_router(
|
||||
&kernel_message_tx,
|
||||
&print_tx,
|
||||
)
|
||||
.await
|
||||
.is_ok()
|
||||
.await;
|
||||
return true;
|
||||
}
|
||||
Err(_) => continue,
|
||||
}
|
||||
@ -562,7 +633,7 @@ async fn recv_connection(
|
||||
noise
|
||||
.get_remote_static()
|
||||
.ok_or(anyhow!("noise error: missing remote pubkey"))?,
|
||||
their_id,
|
||||
&their_id,
|
||||
)?;
|
||||
|
||||
Ok((
|
||||
@ -641,7 +712,7 @@ async fn recv_connection_via_router(
|
||||
noise
|
||||
.get_remote_static()
|
||||
.ok_or(anyhow!("noise error: missing remote pubkey"))?,
|
||||
their_id,
|
||||
&their_id,
|
||||
)?;
|
||||
|
||||
Ok((
|
||||
@ -746,13 +817,12 @@ async fn handle_local_message(
|
||||
our_ip: &str,
|
||||
keypair: &Ed25519KeyPair,
|
||||
km: KernelMessage,
|
||||
peers: &mut Peers,
|
||||
pki: &mut OnchainPKI,
|
||||
peer_connections: &mut JoinSet<(NodeId, Option<KernelMessage>)>,
|
||||
peers: Peers,
|
||||
pki: OnchainPKI,
|
||||
peer_connections: Arc<Mutex<JoinSet<()>>>,
|
||||
pending_passthroughs: Option<&mut PendingPassthroughs>,
|
||||
forwarding_connections: Option<&JoinSet<()>>,
|
||||
active_routers: Option<&HashSet<NodeId>>,
|
||||
names: &mut PKINames,
|
||||
names: PKINames,
|
||||
kernel_message_tx: &MessageSender,
|
||||
print_tx: &PrintSender,
|
||||
) -> Result<()> {
|
||||
@ -801,7 +871,7 @@ async fn handle_local_message(
|
||||
let (peer_id, peer_conn) = time::timeout(
|
||||
TIMEOUT,
|
||||
recv_connection_via_router(
|
||||
our, our_ip, &from, pki, keypair, &router_id,
|
||||
our, our_ip, &from, &pki, keypair, &router_id,
|
||||
),
|
||||
)
|
||||
.await??;
|
||||
@ -815,7 +885,7 @@ async fn handle_local_message(
|
||||
&kernel_message_tx,
|
||||
&print_tx,
|
||||
)
|
||||
.await?;
|
||||
.await;
|
||||
Ok(NetResponses::Accepted(from.clone()))
|
||||
} else {
|
||||
Ok(NetResponses::Rejected(from.clone()))
|
||||
@ -887,7 +957,13 @@ async fn handle_local_message(
|
||||
let mut printout = String::new();
|
||||
match std::str::from_utf8(&ipc) {
|
||||
Ok("peers") => {
|
||||
printout.push_str(&format!("{:#?}", peers.keys()));
|
||||
printout.push_str(&format!(
|
||||
"{:#?}",
|
||||
peers
|
||||
.iter()
|
||||
.map(|p| p.identity.name.clone())
|
||||
.collect::<Vec<_>>()
|
||||
));
|
||||
}
|
||||
Ok("pki") => {
|
||||
printout.push_str(&format!("{:#?}", pki));
|
||||
@ -898,7 +974,7 @@ async fn handle_local_message(
|
||||
Ok("diagnostics") => {
|
||||
printout.push_str(&format!("our Identity: {:#?}\r\n", our));
|
||||
printout.push_str(&format!("we have connections with peers:\r\n"));
|
||||
for peer in peers.values() {
|
||||
for peer in peers.iter() {
|
||||
printout.push_str(&format!(
|
||||
" {}, routing_for={}\r\n",
|
||||
peer.identity.name, peer.routing_for,
|
||||
@ -907,7 +983,7 @@ async fn handle_local_message(
|
||||
printout.push_str(&format!("we have {} entries in the PKI\r\n", pki.len()));
|
||||
printout.push_str(&format!(
|
||||
"we have {} open peer connections\r\n",
|
||||
peer_connections.len()
|
||||
peer_connections.lock().await.len()
|
||||
));
|
||||
if pending_passthroughs.is_some() {
|
||||
printout.push_str(&format!(
|
||||
@ -921,12 +997,6 @@ async fn handle_local_message(
|
||||
forwarding_connections.unwrap().len()
|
||||
));
|
||||
}
|
||||
if active_routers.is_some() {
|
||||
printout.push_str(&format!(
|
||||
"we have {} active routers\r\n",
|
||||
active_routers.unwrap().len()
|
||||
));
|
||||
}
|
||||
}
|
||||
_ => {
|
||||
match rmp_serde::from_slice::<NetActions>(&ipc)? {
|
||||
|
@ -1,7 +1,9 @@
|
||||
use crate::types::*;
|
||||
use dashmap::DashMap;
|
||||
use futures::stream::{SplitSink, SplitStream};
|
||||
use serde::{Deserialize, Serialize};
|
||||
use std::collections::HashMap;
|
||||
use std::sync::Arc;
|
||||
use tokio::net::TcpStream;
|
||||
use tokio::sync::mpsc::UnboundedSender;
|
||||
use tokio_tungstenite::{tungstenite, MaybeTlsStream, WebSocketStream};
|
||||
@ -70,10 +72,9 @@ pub struct PendingPassthroughConnection {
|
||||
pub read_stream: SplitStream<WebSocketStream<MaybeTlsStream<TcpStream>>>,
|
||||
}
|
||||
|
||||
// TODO upgrade from hashmaps
|
||||
pub type Peers = HashMap<String, Peer>;
|
||||
pub type PKINames = HashMap<String, NodeId>;
|
||||
pub type OnchainPKI = HashMap<String, Identity>;
|
||||
pub type Peers = Arc<DashMap<String, Peer>>;
|
||||
pub type PKINames = Arc<DashMap<String, NodeId>>;
|
||||
pub type OnchainPKI = Arc<DashMap<String, Identity>>;
|
||||
pub type PendingPassthroughs = HashMap<(NodeId, NodeId), PendingPassthroughConnection>;
|
||||
|
||||
#[derive(Clone)]
|
||||
|
@ -5,8 +5,10 @@ use futures::stream::{SplitSink, SplitStream};
|
||||
use futures::{SinkExt, StreamExt};
|
||||
use ring::signature::{self, Ed25519KeyPair};
|
||||
use snow::params::NoiseParams;
|
||||
use std::sync::Arc;
|
||||
use tokio::net::TcpStream;
|
||||
use tokio::sync::mpsc::{unbounded_channel, UnboundedReceiver};
|
||||
use tokio::sync::Mutex;
|
||||
use tokio::task::JoinSet;
|
||||
use tokio::time::timeout;
|
||||
use tokio_tungstenite::{connect_async, tungstenite, MaybeTlsStream, WebSocketStream};
|
||||
@ -20,13 +22,13 @@ lazy_static::lazy_static! {
|
||||
pub async fn save_new_peer(
|
||||
identity: &Identity,
|
||||
routing_for: bool,
|
||||
peers: &mut Peers,
|
||||
peer_connections: &mut JoinSet<(String, Option<KernelMessage>)>,
|
||||
peers: Peers,
|
||||
peer_connections: Arc<Mutex<JoinSet<()>>>,
|
||||
conn: PeerConnection,
|
||||
km: Option<KernelMessage>,
|
||||
kernel_message_tx: &MessageSender,
|
||||
print_tx: &PrintSender,
|
||||
) -> Result<()> {
|
||||
) {
|
||||
print_debug(
|
||||
&print_tx,
|
||||
&format!("net: saving new peer {}", identity.name),
|
||||
@ -34,7 +36,7 @@ pub async fn save_new_peer(
|
||||
.await;
|
||||
let (peer_tx, peer_rx) = unbounded_channel::<KernelMessage>();
|
||||
if km.is_some() {
|
||||
peer_tx.send(km.unwrap())?
|
||||
peer_tx.send(km.unwrap()).unwrap()
|
||||
}
|
||||
let peer = Peer {
|
||||
identity: identity.clone(),
|
||||
@ -42,24 +44,25 @@ pub async fn save_new_peer(
|
||||
sender: peer_tx,
|
||||
};
|
||||
peers.insert(identity.name.clone(), peer.clone());
|
||||
peer_connections.spawn(maintain_connection(
|
||||
peer_connections.lock().await.spawn(maintain_connection(
|
||||
peer,
|
||||
peers,
|
||||
conn,
|
||||
peer_rx,
|
||||
kernel_message_tx.clone(),
|
||||
print_tx.clone(),
|
||||
));
|
||||
Ok(())
|
||||
}
|
||||
|
||||
/// should always be spawned on its own task
|
||||
pub async fn maintain_connection(
|
||||
peer: Peer,
|
||||
peers: Peers,
|
||||
mut conn: PeerConnection,
|
||||
mut peer_rx: UnboundedReceiver<KernelMessage>,
|
||||
kernel_message_tx: MessageSender,
|
||||
print_tx: PrintSender,
|
||||
) -> (NodeId, Option<KernelMessage>) {
|
||||
) {
|
||||
let peer_name = peer.identity.name;
|
||||
let mut last_message = std::time::Instant::now();
|
||||
loop {
|
||||
@ -128,7 +131,10 @@ pub async fn maintain_connection(
|
||||
}
|
||||
let mut conn = conn.write_stream.reunite(conn.read_stream).unwrap();
|
||||
let _ = conn.close(None).await;
|
||||
return (peer_name, None);
|
||||
|
||||
print_debug(&print_tx, &format!("net: connection with {peer_name} died")).await;
|
||||
peers.remove(&peer_name);
|
||||
return;
|
||||
}
|
||||
|
||||
/// cross the streams
|
||||
@ -199,6 +205,8 @@ pub async fn create_passthrough(
|
||||
let target_peer = peers
|
||||
.get(&to_name)
|
||||
.ok_or(anyhow!("can't route to that indirect node"))?;
|
||||
// TODO: if we're not router for an indirect node, we should be able to
|
||||
// *use one of their routers* to create a doubly-indirect passthrough.
|
||||
if !target_peer.routing_for {
|
||||
return Err(anyhow!("we don't route for that indirect node"));
|
||||
}
|
||||
@ -460,7 +468,7 @@ fn strip_0x(s: &str) -> String {
|
||||
pub async fn print_debug(print_tx: &PrintSender, content: &str) {
|
||||
let _ = print_tx
|
||||
.send(Printout {
|
||||
verbosity: 0,
|
||||
verbosity: 1,
|
||||
content: content.into(),
|
||||
})
|
||||
.await;
|
||||
|
Loading…
Reference in New Issue
Block a user