Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Track multiaddr in connection status #5308

Merged
merged 1 commit into from Feb 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions beacon_node/lighthouse_network/src/peer_manager/peerdb.rs
Expand Up @@ -756,8 +756,8 @@ impl<TSpec: EthSpec> PeerDB<TSpec> {

// Update the connection state
match direction {
ConnectionDirection::Incoming => info.connect_ingoing(Some(seen_address)),
ConnectionDirection::Outgoing => info.connect_outgoing(Some(seen_address)),
ConnectionDirection::Incoming => info.connect_ingoing(seen_address),
ConnectionDirection::Outgoing => info.connect_outgoing(seen_address),
}
}

Expand Down
39 changes: 25 additions & 14 deletions beacon_node/lighthouse_network/src/peer_manager/peerdb/peer_info.rs
Expand Up @@ -307,13 +307,13 @@ impl<T: EthSpec> PeerInfo<T> {

/// Checks if the peer is outbound-only
pub fn is_outbound_only(&self) -> bool {
matches!(self.connection_status, Connected {n_in, n_out} if n_in == 0 && n_out > 0)
matches!(self.connection_status, Connected {n_in, n_out, ..} if n_in == 0 && n_out > 0)
}

/// Returns the number of connections with this peer.
pub fn connections(&self) -> (u8, u8) {
match self.connection_status {
Connected { n_in, n_out } => (n_in, n_out),
Connected { n_in, n_out, .. } => (n_in, n_out),
_ => (0, 0),
}
}
Expand Down Expand Up @@ -421,41 +421,45 @@ impl<T: EthSpec> PeerInfo<T> {

/// Modifies the status to Connected and increases the number of ingoing
/// connections by one
pub(super) fn connect_ingoing(&mut self, seen_multiaddr: Option<Multiaddr>) {
pub(super) fn connect_ingoing(&mut self, multiaddr: Multiaddr) {
self.seen_multiaddrs.insert(multiaddr.clone());

match &mut self.connection_status {
Connected { n_in, .. } => *n_in += 1,
Disconnected { .. }
| Banned { .. }
| Dialing { .. }
| Disconnecting { .. }
| Unknown => {
self.connection_status = Connected { n_in: 1, n_out: 0 };
self.connection_status = Connected {
n_in: 1,
n_out: 0,
multiaddr,
};
self.connection_direction = Some(ConnectionDirection::Incoming);
}
}

if let Some(multiaddr) = seen_multiaddr {
self.seen_multiaddrs.insert(multiaddr);
}
}

/// Modifies the status to Connected and increases the number of outgoing
/// connections by one
pub(super) fn connect_outgoing(&mut self, seen_multiaddr: Option<Multiaddr>) {
pub(super) fn connect_outgoing(&mut self, multiaddr: Multiaddr) {
self.seen_multiaddrs.insert(multiaddr.clone());
match &mut self.connection_status {
Connected { n_out, .. } => *n_out += 1,
Disconnected { .. }
| Banned { .. }
| Dialing { .. }
| Disconnecting { .. }
| Unknown => {
self.connection_status = Connected { n_in: 0, n_out: 1 };
self.connection_status = Connected {
n_in: 0,
n_out: 1,
multiaddr,
};
self.connection_direction = Some(ConnectionDirection::Outgoing);
}
}
if let Some(multiaddr) = seen_multiaddr {
self.seen_multiaddrs.insert(multiaddr);
}
}

#[cfg(test)]
Expand Down Expand Up @@ -487,6 +491,8 @@ pub enum ConnectionDirection {
pub enum PeerConnectionStatus {
/// The peer is connected.
Connected {
/// The multiaddr that we are connected via.
multiaddr: Multiaddr,
/// number of ingoing connections.
n_in: u8,
/// number of outgoing connections.
Expand Down Expand Up @@ -522,7 +528,12 @@ impl Serialize for PeerConnectionStatus {
fn serialize<S: Serializer>(&self, serializer: S) -> Result<S::Ok, S::Error> {
let mut s = serializer.serialize_struct("connection_status", 6)?;
match self {
Connected { n_in, n_out } => {
Connected {
n_in,
n_out,
multiaddr,
} => {
s.serialize_field("multiaddr", multiaddr)?;
s.serialize_field("status", "connected")?;
s.serialize_field("connections_in", n_in)?;
s.serialize_field("connections_out", n_out)?;
Expand Down