1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
mod stream;
use std::convert::TryInto;
use std::num::{NonZeroU8, NonZeroUsize};
use crate::error::Error;
use crate::IpfsOptions;
use libp2p::identify::Info as IdentifyInfo;
use libp2p::identity::{Keypair, PublicKey};
use libp2p::kad::KademliaConfig;
use libp2p::ping::Config as PingConfig;
use libp2p::swarm::ConnectionLimits;
use libp2p::Swarm;
use libp2p::{Multiaddr, PeerId};
use tracing::Span;
pub(crate) mod addr;
mod behaviour;
pub use self::behaviour::BehaviourEvent;
pub use self::behaviour::IdentifyConfiguration;
pub use self::behaviour::KadStoreConfig;
pub use self::behaviour::{RateLimit, RelayConfig};
pub use self::stream::ProviderStream;
pub use self::stream::RecordStream;
pub use self::transport::TransportConfig;
pub(crate) mod gossipsub;
mod swarm;
mod transport;
pub use addr::{MultiaddrWithPeerId, MultiaddrWithoutPeerId};
pub use {behaviour::KadResult, swarm::Connection};
pub type TSwarm = Swarm<behaviour::Behaviour>;
#[derive(Clone, Debug, Eq)]
pub struct PeerInfo {
pub peer_id: PeerId,
pub public_key: PublicKey,
pub protocol_version: String,
pub agent_version: String,
pub listen_addrs: Vec<Multiaddr>,
pub protocols: Vec<String>,
pub observed_addr: Option<Multiaddr>,
}
impl core::hash::Hash for PeerInfo {
fn hash<H: std::hash::Hasher>(&self, state: &mut H) {
self.peer_id.hash(state);
self.public_key.hash(state);
}
}
impl PartialEq for PeerInfo {
fn eq(&self, other: &Self) -> bool {
self.peer_id == other.peer_id && self.public_key == other.public_key
}
}
impl From<IdentifyInfo> for PeerInfo {
fn from(info: IdentifyInfo) -> Self {
let IdentifyInfo {
public_key,
protocol_version,
agent_version,
listen_addrs,
protocols,
observed_addr,
} = info;
let peer_id = public_key.clone().into();
let observed_addr = Some(observed_addr);
Self {
peer_id,
public_key,
protocol_version,
agent_version,
listen_addrs,
protocols,
observed_addr,
}
}
}
pub struct SwarmOptions {
pub keypair: Keypair,
pub peer_id: PeerId,
pub bootstrap: Vec<Multiaddr>,
pub mdns: bool,
pub mdns_ipv6: bool,
pub relay_server: bool,
pub relay_server_config: Option<RelayConfig>,
pub kad_config: Option<KademliaConfig>,
pub ping_config: Option<PingConfig>,
pub identify_config: Option<IdentifyConfiguration>,
pub kad_store_config: Option<KadStoreConfig>,
pub keep_alive: bool,
pub relay: bool,
pub dcutr: bool,
}
impl From<&IpfsOptions> for SwarmOptions {
fn from(options: &IpfsOptions) -> Self {
let keypair = options.keypair.clone();
let peer_id = keypair.public().to_peer_id();
let bootstrap = options.bootstrap.clone();
let mdns = options.mdns;
let mdns_ipv6 = options.mdns_ipv6;
let dcutr = options.dcutr;
let relay_server = options.relay_server;
let relay_server_config = options.relay_server_config.clone();
let relay = options.relay;
let kad_config = options.kad_configuration.clone();
let ping_config = options.ping_configuration.clone();
let kad_store_config = options.kad_store_config.clone();
let keep_alive = options.keep_alive;
let identify_config = options.identify_configuration.clone();
SwarmOptions {
keypair,
peer_id,
bootstrap,
mdns,
mdns_ipv6,
relay_server,
relay_server_config,
relay,
dcutr,
kad_config,
kad_store_config,
ping_config,
keep_alive,
identify_config,
}
}
}
#[derive(Clone)]
pub struct SwarmConfig {
pub connection: ConnectionLimits,
pub dial_concurrency_factor: NonZeroU8,
pub notify_handler_buffer_size: NonZeroUsize,
pub connection_event_buffer_size: usize,
pub max_inbound_stream: usize,
}
impl Default for SwarmConfig {
fn default() -> Self {
Self {
connection: ConnectionLimits::default(),
dial_concurrency_factor: 8.try_into().expect("8 > 0"),
notify_handler_buffer_size: 256.try_into().expect("256 > 0"),
connection_event_buffer_size: 256,
max_inbound_stream: 128,
}
}
}
pub async fn create_swarm(
options: SwarmOptions,
swarm_config: SwarmConfig,
transport_config: TransportConfig,
span: Span,
) -> Result<TSwarm, Error> {
let peer_id = options.peer_id;
let keypair = options.keypair.clone();
let (behaviour, relay_transport) = behaviour::build_behaviour(options).await?;
let transport = transport::build_transport(keypair, relay_transport, transport_config)?;
let swarm = libp2p::swarm::SwarmBuilder::with_executor(
transport,
behaviour,
peer_id,
SpannedExecutor(span),
)
.connection_limits(swarm_config.connection)
.notify_handler_buffer_size(swarm_config.notify_handler_buffer_size)
.connection_event_buffer_size(swarm_config.connection_event_buffer_size)
.dial_concurrency_factor(swarm_config.dial_concurrency_factor)
.max_negotiating_inbound_streams(swarm_config.max_inbound_stream)
.build();
Ok(swarm)
}
struct SpannedExecutor(Span);
impl libp2p::swarm::Executor for SpannedExecutor {
fn exec(
&self,
future: std::pin::Pin<Box<dyn std::future::Future<Output = ()> + 'static + Send>>,
) {
use tracing_futures::Instrument;
tokio::task::spawn(future.instrument(self.0.clone()));
}
}