struct Server<K> {Show 14 fields
conf: NetConf<K>,
role: Role,
ibound: Sender<(K, Bytes, Option<OwnedSemaphorePermit>)>,
obound: Receiver<Command<K>>,
peers: HashMap<K, Peer>,
index: BiHashMap<K, PublicKey>,
task2key: HashMap<Id, K>,
connecting: HashMap<K, ConnectTask>,
active: HashMap<K, IoTask>,
handshake_tasks: JoinSet<Result<(TcpStream, TransportState), NetworkError>>,
connect_tasks: JoinSet<(TcpStream, TransportState)>,
io_tasks: JoinSet<Result<(), NetworkError>>,
ping_interval: Interval,
metrics: Arc<NetworkMetrics<K>>,
}Expand description
The Server is accepting connections and also establishing and
maintaining connections with all parties.
Fields§
§conf: NetConf<K>§role: RoleThis server’s role.
ibound: Sender<(K, Bytes, Option<OwnedSemaphorePermit>)>MPSC sender for messages received over a connection to a party.
(see Network for the accompanying receiver).
obound: Receiver<Command<K>>MPSC receiver for server task instructions.
(see Network for the accompanying sender).
peers: HashMap<K, Peer>All parties of the network and their addresses.
index: BiHashMap<K, PublicKey>Bi-directional mapping of signing key and X25519 keys to identify remote parties.
task2key: HashMap<Id, K>Find the public key given a tokio task ID.
connecting: HashMap<K, ConnectTask>Currently active connect attempts.
active: HashMap<K, IoTask>Currently active connections (post handshake).
handshake_tasks: JoinSet<Result<(TcpStream, TransportState), NetworkError>>Tasks performing a handshake with a remote party.
connect_tasks: JoinSet<(TcpStream, TransportState)>Tasks connecting to a remote party and performing a handshake.
io_tasks: JoinSet<Result<(), NetworkError>>Active I/O tasks, exchanging data with remote parties.
ping_interval: IntervalInterval at which to ping peers.
metrics: Arc<NetworkMetrics<K>>For gathering network metrics.
Implementations§
Source§impl<K> Server<K>
impl<K> Server<K>
Sourceasync fn run(self, listener: TcpListener) -> Result<Empty, NetworkError>
async fn run(self, listener: TcpListener) -> Result<Empty, NetworkError>
Runs the main loop of this network node.
This function:
- Tries to connect to each remote peer in the committee.
- Handles tasks that have been completed or terminated.
- Processes new messages we received on the network.
Sourcefn on_connect_task_end(&mut self, id: Id)
fn on_connect_task_end(&mut self, id: Id)
Handles a completed connect task.
Sourcefn on_io_task_end(&mut self, id: Id)
fn on_io_task_end(&mut self, id: Id)
Handles a completed I/O task.
This function will get the public key of the task that was terminated and then cleanly removes the associated I/O task data and re-connects to the peer node it was interacting with.
Sourcefn spawn_connect(&mut self, k: K)
fn spawn_connect(&mut self, k: K)
Spawns a new connection task to a peer identified by public key.
This function will look up the x25519 public key of the ed25519 key and the remote address and then spawn a connection task.
Sourcefn spawn_handshake(&mut self, s: TcpStream)
fn spawn_handshake(&mut self, s: TcpStream)
Spawns a new Noise responder handshake task using the IK pattern.
This function will create the responder handshake machine using its own private key and then spawn a task that awaits an initiator handshake to which it will respond.
Sourcefn spawn_io(&mut self, k: K, s: TcpStream, t: TransportState, b: Arc<Semaphore>)
fn spawn_io(&mut self, k: K, s: TcpStream, t: TransportState, b: Arc<Semaphore>)
Spawns a new I/O task for handling communication with a remote peer over a TCP connection using the noise framework to create an authenticated secure link.
Sourcefn lookup_peer(&self, t: &TransportState) -> Option<(K, &Peer)>
fn lookup_peer(&self, t: &TransportState) -> Option<(K, &Peer)>
Get the public key of a party by their static X25519 public key.
Sourcefn is_valid_ip(&self, k: &K, s: &TcpStream) -> bool
fn is_valid_ip(&self, k: &K, s: &TcpStream) -> bool
Check if the socket’s peer IP address corresponds to the configured one.
Trait Implementations§
Auto Trait Implementations§
impl<K> Freeze for Server<K>where
K: Freeze,
impl<K> !RefUnwindSafe for Server<K>
impl<K> Send for Server<K>
impl<K> Sync for Server<K>
impl<K> Unpin for Server<K>where
K: Unpin,
impl<K> !UnwindSafe for Server<K>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
§impl<T> Conv for T
impl<T> Conv for T
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.§impl<T> DowncastSync for T
impl<T> DowncastSync for T
§impl<T> FmtForward for T
impl<T> FmtForward for T
§fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
self to use its Binary implementation when Debug-formatted.§fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
self to use its Display implementation when
Debug-formatted.§fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
self to use its LowerExp implementation when
Debug-formatted.§fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
self to use its LowerHex implementation when
Debug-formatted.§fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
self to use its Octal implementation when Debug-formatted.§fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
self to use its Pointer implementation when
Debug-formatted.§fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
self to use its UpperExp implementation when
Debug-formatted.§fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
self to use its UpperHex implementation when
Debug-formatted.§fn fmt_list(self) -> FmtList<Self>where
&'a Self: for<'a> IntoIterator,
fn fmt_list(self) -> FmtList<Self>where
&'a Self: for<'a> IntoIterator,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more§impl<T> Pipe for Twhere
T: ?Sized,
impl<T> Pipe for Twhere
T: ?Sized,
§fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
§fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
self and passes that borrow into the pipe function. Read more§fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
self and passes that borrow into the pipe function. Read more§fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
§fn pipe_borrow_mut<'a, B, R>(
&'a mut self,
func: impl FnOnce(&'a mut B) -> R,
) -> R
fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R, ) -> R
§fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
self, then passes self.as_ref() into the pipe function.§fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
self, then passes self.as_mut() into the pipe
function.§fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
self, then passes self.deref() into the pipe function.§impl<T> Pointable for T
impl<T> Pointable for T
§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
§impl<T> Tap for T
impl<T> Tap for T
§fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
Borrow<B> of a value. Read more§fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
BorrowMut<B> of a value. Read more§fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
AsRef<R> view of a value. Read more§fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
AsMut<R> view of a value. Read more§fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
Deref::Target of a value. Read more§fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
Deref::Target of a value. Read more§fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
.tap() only in debug builds, and is erased in release builds.§fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
.tap_mut() only in debug builds, and is erased in release
builds.§fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
.tap_borrow() only in debug builds, and is erased in release
builds.§fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
.tap_borrow_mut() only in debug builds, and is erased in release
builds.§fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
.tap_ref() only in debug builds, and is erased in release
builds.§fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
.tap_ref_mut() only in debug builds, and is erased in release
builds.§fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
.tap_deref() only in debug builds, and is erased in release
builds.