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
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
mod stream;
use std::convert::TryInto;
use std::num::{NonZeroU8, NonZeroUsize};
use crate::error::Error;
use crate::IpfsOptions;
use either::Either;
use libp2p::gossipsub::ValidationMode;
use libp2p::identify::Info as IdentifyInfo;
use libp2p::identity::{Keypair, PublicKey};
use libp2p::kad::KademliaConfig;
use libp2p::ping::Config as PingConfig;
use libp2p::Swarm;
use libp2p::{Multiaddr, PeerId};
use tracing::Span;
pub(crate) mod addr;
pub(crate) mod peerbook;
mod behaviour;
pub use self::behaviour::BehaviourEvent;
pub use self::behaviour::IdentifyConfiguration;
pub use self::behaviour::{KadConfig, KadInserts, KadStoreConfig};
pub use self::behaviour::{RateLimit, RelayConfig};
pub use self::peerbook::ConnectionLimits;
pub use self::stream::ProviderStream;
pub use self::stream::RecordStream;
pub use self::transport::TransportConfig;
pub(crate) mod gossipsub;
mod transport;
pub use addr::{MultiaddrWithPeerId, MultiaddrWithoutPeerId};
pub use behaviour::KadResult;
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 bootstrap: Vec<Multiaddr>,
pub mdns: bool,
pub mdns_ipv6: bool,
pub disable_kad: bool,
pub relay_server: bool,
pub relay_server_config: Option<RelayConfig>,
pub kad_config: Option<Either<KadConfig, KademliaConfig>>,
pub ping_config: Option<PingConfig>,
pub identify_config: Option<IdentifyConfiguration>,
pub kad_store_config: Option<KadStoreConfig>,
pub pubsub_config: Option<PubsubConfig>,
pub portmapping: bool,
pub keep_alive: bool,
pub relay: bool,
pub dcutr: bool,
}
impl From<&IpfsOptions> for SwarmOptions {
fn from(options: &IpfsOptions) -> Self {
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 disable_kad = options.disable_kad;
let keep_alive = options.keep_alive;
let identify_config = options.identify_configuration.clone();
let portmapping = options.port_mapping;
let pubsub_config = options.pubsub_config.clone();
SwarmOptions {
bootstrap,
mdns,
disable_kad,
mdns_ipv6,
relay_server,
relay_server_config,
relay,
dcutr,
kad_config,
kad_store_config,
ping_config,
keep_alive,
identify_config,
portmapping,
pubsub_config,
}
}
}
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct PubsubConfig {
pub custom_protocol_id: Option<String>,
pub max_transmit_size: usize,
pub floodsub_compat: bool,
pub validate: PubsubValidation,
}
#[derive(Debug, Copy, Clone, PartialEq, Eq, PartialOrd, Ord)]
pub enum PubsubValidation {
Strict,
Permissive,
Anonymous,
Relaxed,
}
impl From<PubsubValidation> for ValidationMode {
fn from(validation: PubsubValidation) -> Self {
match validation {
PubsubValidation::Strict => ValidationMode::Strict,
PubsubValidation::Permissive => ValidationMode::Permissive,
PubsubValidation::Anonymous => ValidationMode::Anonymous,
PubsubValidation::Relaxed => ValidationMode::None,
}
}
}
impl Default for PubsubConfig {
fn default() -> Self {
Self {
custom_protocol_id: None,
max_transmit_size: 2 * 1024 * 1024,
validate: PubsubValidation::Strict,
floodsub_compat: false,
}
}
}
#[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(
keypair: &Keypair,
options: SwarmOptions,
swarm_config: SwarmConfig,
transport_config: TransportConfig,
span: Span,
) -> Result<TSwarm, Error> {
let keypair = keypair.clone();
let peer_id = keypair.public().to_peer_id();
let (behaviour, relay_transport) =
behaviour::build_behaviour(&keypair, options, swarm_config.connection).await?;
let transport = transport::build_transport(keypair, relay_transport, transport_config)?;
let swarm = libp2p::swarm::SwarmBuilder::with_executor(
transport,
behaviour,
peer_id,
SpannedExecutor(span),
)
.notify_handler_buffer_size(swarm_config.notify_handler_buffer_size)
.per_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()));
}
}