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
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
use futures::channel::mpsc as channel;
use futures::stream::{FusedStream, Stream};
use libp2p::gossipsub::error::PublishError;
use libp2p::identity::Keypair;
use std::collections::HashMap;
use std::fmt;
use std::pin::Pin;
use std::task::{Context, Poll};
use tracing::{debug, warn};
use libp2p::core::{
connection::{ConnectedPoint, ConnectionId},
transport::ListenerId,
Multiaddr, PeerId,
};
use libp2p::gossipsub::{
self, Gossipsub, GossipsubEvent, GossipsubMessage, IdentTopic as Topic, MessageAuthenticity,
MessageId, TopicHash,
};
use libp2p::swarm::{
ConnectionHandler, DialError, NetworkBehaviour, NetworkBehaviourAction, PollParameters,
};
pub struct GossipsubStream {
streams: HashMap<TopicHash, channel::UnboundedSender<GossipsubMessage>>,
gossipsub: Gossipsub,
unsubscriptions: (
channel::UnboundedSender<TopicHash>,
channel::UnboundedReceiver<TopicHash>,
),
}
impl core::ops::Deref for GossipsubStream {
type Target = Gossipsub;
fn deref(&self) -> &Self::Target {
&self.gossipsub
}
}
impl core::ops::DerefMut for GossipsubStream {
fn deref_mut(&mut self) -> &mut Gossipsub {
&mut self.gossipsub
}
}
pub struct SubscriptionStream {
on_drop: Option<channel::UnboundedSender<TopicHash>>,
topic: Option<TopicHash>,
inner: channel::UnboundedReceiver<GossipsubMessage>,
}
impl Drop for SubscriptionStream {
fn drop(&mut self) {
if let Some(sender) = self.on_drop.take() {
if let Some(topic) = self.topic.take() {
let _ = sender.unbounded_send(topic);
}
}
}
}
impl fmt::Debug for SubscriptionStream {
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
if let Some(topic) = self.topic.as_ref() {
write!(
fmt,
"SubscriptionStream {{ topic: {:?}, is_terminated: {} }}",
topic,
self.is_terminated()
)
} else {
write!(
fmt,
"SubscriptionStream {{ is_terminated: {} }}",
self.is_terminated()
)
}
}
}
impl Stream for SubscriptionStream {
type Item = GossipsubMessage;
fn poll_next(mut self: Pin<&mut Self>, ctx: &mut Context) -> Poll<Option<Self::Item>> {
use futures::stream::StreamExt;
let inner = &mut self.as_mut().inner;
match inner.poll_next_unpin(ctx) {
Poll::Ready(None) => {
self.on_drop.take();
Poll::Ready(None)
}
other => other,
}
}
}
impl FusedStream for SubscriptionStream {
fn is_terminated(&self) -> bool {
self.on_drop.is_none()
}
}
impl From<Gossipsub> for GossipsubStream {
fn from(gossipsub: Gossipsub) -> Self {
let (tx, rx) = channel::unbounded();
GossipsubStream {
streams: HashMap::new(),
gossipsub,
unsubscriptions: (tx, rx),
}
}
}
impl GossipsubStream {
pub fn new(keypair: Keypair) -> anyhow::Result<Self> {
let (tx, rx) = channel::unbounded();
let config = gossipsub::GossipsubConfigBuilder::default()
.build()
.map_err(|e| anyhow::anyhow!("{}", e))?;
Ok(GossipsubStream {
streams: HashMap::new(),
gossipsub: Gossipsub::new(MessageAuthenticity::Signed(keypair), config)
.map_err(|e| anyhow::anyhow!("{}", e))?,
unsubscriptions: (tx, rx),
})
}
pub fn subscribe(&mut self, topic: impl Into<String>) -> anyhow::Result<SubscriptionStream> {
use std::collections::hash_map::Entry;
let topic = Topic::new(topic);
match self.streams.entry(topic.hash()) {
Entry::Vacant(ve) => {
match self.gossipsub.subscribe(&topic) {
Ok(true) => {
let (tx, rx) = channel::unbounded();
let key = ve.key().clone();
ve.insert(tx);
Ok(SubscriptionStream {
on_drop: Some(self.unsubscriptions.0.clone()),
topic: Some(key),
inner: rx,
})
}
Ok(false) => anyhow::bail!("Already subscribed to topic"),
Err(e) => {
debug!("{}", e); Err(anyhow::Error::from(e))
}
}
}
Entry::Occupied(_) => anyhow::bail!("Already subscribed to topic"),
}
}
pub fn unsubscribe(&mut self, topic: impl Into<String>) -> anyhow::Result<bool> {
let topic = Topic::new(topic.into());
if self.streams.remove(&topic.hash()).is_some() {
Ok(self.gossipsub.unsubscribe(&topic)?)
} else {
anyhow::bail!("Unable to unsubscribe from topic.")
}
}
pub fn publish(
&mut self,
topic: impl Into<String>,
data: impl Into<Vec<u8>>,
) -> Result<MessageId, PublishError> {
self.gossipsub.publish(Topic::new(topic), data)
}
pub fn known_peers(&self) -> Vec<PeerId> {
self.all_peers().map(|(peer, _)| *peer).collect()
}
pub fn subscribed_peers(&self, topic: &str) -> Vec<PeerId> {
let topic = Topic::new(topic);
self.all_peers()
.filter(|(_, list)| list.contains(&&topic.hash()))
.map(|(peer_id, _)| *peer_id)
.collect()
}
pub fn subscribed_topics(&self) -> Vec<String> {
self.streams
.keys()
.into_iter()
.map(|t| t.to_string())
.collect()
}
}
type GossipsubNetworkBehaviourAction = NetworkBehaviourAction<
<Gossipsub as NetworkBehaviour>::OutEvent,
<GossipsubStream as NetworkBehaviour>::ConnectionHandler,
<<GossipsubStream as NetworkBehaviour>::ConnectionHandler as ConnectionHandler>::InEvent,
>;
#[allow(deprecated)]
impl NetworkBehaviour for GossipsubStream {
type ConnectionHandler = <Gossipsub as NetworkBehaviour>::ConnectionHandler;
type OutEvent = GossipsubEvent;
fn new_handler(&mut self) -> Self::ConnectionHandler {
self.gossipsub.new_handler()
}
fn addresses_of_peer(&mut self, peer_id: &PeerId) -> Vec<Multiaddr> {
self.gossipsub.addresses_of_peer(peer_id)
}
fn inject_connection_established(
&mut self,
peer_id: &PeerId,
connection_id: &ConnectionId,
endpoint: &ConnectedPoint,
failed_addresses: Option<&Vec<Multiaddr>>,
other_established: usize,
) {
self.gossipsub.inject_connection_established(
peer_id,
connection_id,
endpoint,
failed_addresses,
other_established,
)
}
fn inject_connection_closed(
&mut self,
peer_id: &PeerId,
connection_id: &ConnectionId,
endpoint: &ConnectedPoint,
handler: Self::ConnectionHandler,
remaining_established: usize,
) {
self.gossipsub.inject_connection_closed(
peer_id,
connection_id,
endpoint,
handler,
remaining_established,
)
}
fn inject_event(
&mut self,
peer_id: PeerId,
connection: ConnectionId,
event: <Self::ConnectionHandler as ConnectionHandler>::OutEvent,
) {
self.gossipsub.inject_event(peer_id, connection, event)
}
fn inject_dial_failure(
&mut self,
peer_id: Option<PeerId>,
handler: Self::ConnectionHandler,
error: &DialError,
) {
self.gossipsub.inject_dial_failure(peer_id, handler, error)
}
fn inject_new_listen_addr(&mut self, id: ListenerId, addr: &Multiaddr) {
self.gossipsub.inject_new_listen_addr(id, addr)
}
fn inject_expired_listen_addr(&mut self, id: ListenerId, addr: &Multiaddr) {
self.gossipsub.inject_expired_listen_addr(id, addr)
}
fn inject_new_external_addr(&mut self, addr: &Multiaddr) {
self.gossipsub.inject_new_external_addr(addr)
}
fn inject_listener_error(&mut self, id: ListenerId, err: &(dyn std::error::Error + 'static)) {
self.gossipsub.inject_listener_error(id, err)
}
fn inject_address_change(
&mut self,
peer: &PeerId,
id: &ConnectionId,
old: &ConnectedPoint,
new: &ConnectedPoint,
) {
self.gossipsub.inject_address_change(peer, id, old, new)
}
fn inject_listen_failure(
&mut self,
local_addr: &Multiaddr,
send_back_addr: &Multiaddr,
handler: Self::ConnectionHandler,
) {
self.gossipsub
.inject_listen_failure(local_addr, send_back_addr, handler)
}
fn inject_new_listener(&mut self, id: ListenerId) {
self.gossipsub.inject_new_listener(id)
}
fn inject_listener_closed(&mut self, id: ListenerId, reason: Result<(), &std::io::Error>) {
self.gossipsub.inject_listener_closed(id, reason)
}
fn inject_expired_external_addr(&mut self, addr: &Multiaddr) {
self.gossipsub.inject_expired_external_addr(addr)
}
fn poll(
&mut self,
ctx: &mut Context,
poll: &mut impl PollParameters,
) -> Poll<GossipsubNetworkBehaviourAction> {
use futures::stream::StreamExt;
use std::collections::hash_map::Entry;
loop {
match self.unsubscriptions.1.poll_next_unpin(ctx) {
Poll::Ready(Some(dropped)) => {
if self.streams.remove(&dropped).is_some() {
debug!("unsubscribing via drop from {:?}", dropped);
assert!(
self.gossipsub
.unsubscribe(&Topic::new(dropped.to_string()))
.unwrap_or_default(),
"Failed to unsubscribe a dropped subscription"
);
}
}
Poll::Ready(None) => unreachable!("we own the sender"),
Poll::Pending => break,
}
}
loop {
match futures::ready!(self.gossipsub.poll(ctx, poll)) {
NetworkBehaviourAction::GenerateEvent(GossipsubEvent::Message {
message, ..
}) => {
let topic = message.topic.clone();
if let Entry::Occupied(oe) = self.streams.entry(topic) {
if let Err(se) = oe.get().unbounded_send(message) {
let (topic, _) = oe.remove_entry();
debug!("unsubscribing via SendError from {:?}", &topic);
assert!(
self.gossipsub
.unsubscribe(&Topic::new(topic.to_string()))
.unwrap_or_default(),
"Failed to unsubscribe following SendError"
);
let _ = Some(se.into_inner());
}
}
continue;
}
NetworkBehaviourAction::GenerateEvent(GossipsubEvent::Subscribed {
peer_id,
topic,
}) => {
if self
.subscribed_peers(&topic.to_string())
.contains(&peer_id)
{
warn!("Peer is already subscribed to {}", topic);
continue;
}
self.add_explicit_peer(&peer_id);
continue;
}
NetworkBehaviourAction::GenerateEvent(GossipsubEvent::Unsubscribed {
peer_id,
topic,
}) => {
if !self
.subscribed_peers(&topic.to_string())
.contains(&peer_id)
{
warn!("Peer is not subscribed to {}", topic);
continue;
};
self.remove_explicit_peer(&peer_id);
continue;
}
NetworkBehaviourAction::GenerateEvent(GossipsubEvent::GossipsubNotSupported {
peer_id,
}) => {
warn!("Not supported for {}", peer_id);
continue;
}
action @ NetworkBehaviourAction::Dial { .. } => {
return Poll::Ready(action);
}
NetworkBehaviourAction::NotifyHandler {
peer_id,
event,
handler,
} => {
return Poll::Ready(NetworkBehaviourAction::NotifyHandler {
peer_id,
event,
handler,
});
}
NetworkBehaviourAction::ReportObservedAddr { address, score } => {
return Poll::Ready(NetworkBehaviourAction::ReportObservedAddr {
address,
score,
});
}
NetworkBehaviourAction::CloseConnection {
peer_id,
connection,
} => {
return Poll::Ready(NetworkBehaviourAction::CloseConnection {
peer_id,
connection,
});
}
}
}
}
}