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
use async_trait::async_trait;
use futures::channel::{mpsc, oneshot};
use futures::SinkExt;
use prost::Message;
use std::convert::TryFrom;
use std::{error::Error, io};
use libp2prs_core::transport::TransportError;
use libp2prs_core::upgrade::UpgradeInfo;
use libp2prs_core::{Multiaddr, ProtocolId, PublicKey};
use libp2prs_traits::{ReadEx, WriteEx};
use crate::connection::Connection;
use crate::control::SwarmControlCmd;
use crate::protocol_handler::{IProtocolHandler, Notifiee, ProtocolHandler};
use crate::substream::Substream;
use crate::SwarmEvent;
mod structs_proto {
include!(concat!(env!("OUT_DIR"), "/structs.rs"));
}
pub const IDENTIFY_PROTOCOL: &[u8] = b"/ipfs/id/1.0.0";
pub const IDENTIFY_PUSH_PROTOCOL: &[u8] = b"/ipfs/id/push/1.0.0";
#[derive(Clone, Debug, Default)]
pub struct IdentifyConfig {
pub(crate) push: bool,
}
impl IdentifyConfig {
pub fn new(push: bool) -> Self {
Self { push }
}
}
#[derive(Debug, Clone)]
pub struct IdentifyInfo {
pub public_key: PublicKey,
pub protocol_version: String,
pub agent_version: String,
pub listen_addrs: Vec<Multiaddr>,
pub protocols: Vec<String>,
}
fn parse_proto_msg(msg: impl AsRef<[u8]>) -> Result<(IdentifyInfo, Multiaddr), io::Error> {
match structs_proto::Identify::decode(msg.as_ref()) {
Ok(msg) => {
fn bytes_to_multiaddr(bytes: Vec<u8>) -> Result<Multiaddr, io::Error> {
Multiaddr::try_from(bytes).map_err(|err| io::Error::new(io::ErrorKind::InvalidData, err))
}
let listen_addrs = {
let mut addrs = Vec::new();
for addr in msg.listen_addrs.into_iter() {
addrs.push(bytes_to_multiaddr(addr)?);
}
addrs
};
let public_key = PublicKey::from_protobuf_encoding(&msg.public_key.unwrap_or_default())
.map_err(|e| io::Error::new(io::ErrorKind::InvalidData, e))?;
let observed_addr = bytes_to_multiaddr(msg.observed_addr.unwrap_or_default())?;
let info = IdentifyInfo {
public_key,
protocol_version: msg.protocol_version.unwrap_or_default(),
agent_version: msg.agent_version.unwrap_or_default(),
listen_addrs,
protocols: msg.protocols,
};
Ok((info, observed_addr))
}
Err(err) => Err(io::Error::new(io::ErrorKind::InvalidData, err)),
}
}
pub(crate) async fn process_message(mut stream: Substream) -> Result<(IdentifyInfo, Multiaddr), TransportError> {
let buf = stream.read_one(4096).await?;
stream.close2().await?;
parse_proto_msg(&buf).map_err(io::Error::into)
}
pub(crate) async fn produce_message(mut stream: Substream, info: IdentifyInfo) -> Result<(), TransportError> {
let listen_addrs = info.listen_addrs.into_iter().map(|addr| addr.to_vec()).collect();
let pubkey_bytes = info.public_key.into_protobuf_encoding();
let observed_addr = stream.remote_multiaddr();
let message = structs_proto::Identify {
agent_version: Some(info.agent_version),
protocol_version: Some(info.protocol_version),
public_key: Some(pubkey_bytes),
listen_addrs,
observed_addr: Some(observed_addr.to_vec()),
protocols: info.protocols,
};
let mut bytes = Vec::with_capacity(message.encoded_len());
message.encode(&mut bytes).expect("Vec<u8> provides capacity as needed");
stream.write_one(&bytes).await?;
stream.close2().await.map_err(io::Error::into)
}
#[derive(Debug)]
pub(crate) struct IdentifyHandler {
ctrl: mpsc::Sender<SwarmControlCmd>,
}
impl Clone for IdentifyHandler {
fn clone(&self) -> Self {
Self { ctrl: self.ctrl.clone() }
}
}
impl IdentifyHandler {
pub(crate) fn new(ctrl: mpsc::Sender<SwarmControlCmd>) -> Self {
Self { ctrl }
}
}
impl UpgradeInfo for IdentifyHandler {
type Info = ProtocolId;
fn protocol_info(&self) -> Vec<Self::Info> {
vec![IDENTIFY_PROTOCOL.into()]
}
}
impl Notifiee for IdentifyHandler {
fn connected(&mut self, connection: &mut Connection) {
log::debug!("starting Identify service for {:?}", connection);
connection.start_identify();
}
}
#[async_trait]
impl ProtocolHandler for IdentifyHandler {
async fn handle(&mut self, stream: Substream, _info: <Self as UpgradeInfo>::Info) -> Result<(), Box<dyn Error>> {
log::debug!("Identify Protocol handling on {:?}", stream);
let (tx, rx) = oneshot::channel();
self.ctrl.send(SwarmControlCmd::IdentifyInfo(tx)).await?;
let identify_info = rx.await?;
log::debug!("IdentifyHandler sending identify info to client...");
produce_message(stream, identify_info).await.map_err(|e| e.into())
}
fn box_clone(&self) -> IProtocolHandler {
Box::new(self.clone())
}
}
#[derive(Debug)]
pub(crate) struct IdentifyPushHandler {
config: IdentifyConfig,
tx: mpsc::UnboundedSender<SwarmEvent>,
}
impl Clone for IdentifyPushHandler {
fn clone(&self) -> Self {
Self {
config: self.config.clone(),
tx: self.tx.clone(),
}
}
}
impl IdentifyPushHandler {
pub(crate) fn new(config: IdentifyConfig, tx: mpsc::UnboundedSender<SwarmEvent>) -> Self {
Self { config, tx }
}
}
impl UpgradeInfo for IdentifyPushHandler {
type Info = ProtocolId;
fn protocol_info(&self) -> Vec<Self::Info> {
vec![IDENTIFY_PUSH_PROTOCOL.into()]
}
}
impl Notifiee for IdentifyPushHandler {
fn connected(&mut self, connection: &mut Connection) {
if self.config.push {
log::debug!("starting Identify Push service for {:?}", connection);
connection.start_identify_push();
}
}
}
#[async_trait]
impl ProtocolHandler for IdentifyPushHandler {
async fn handle(&mut self, stream: Substream, _info: <Self as UpgradeInfo>::Info) -> Result<(), Box<dyn Error>> {
let cid = stream.cid();
log::debug!("Identify Push Protocol handling on {:?}", stream);
let result = process_message(stream).await.map_err(TransportError::into);
let _ = self.tx.send(SwarmEvent::IdentifyResult { cid, result }).await;
Ok(())
}
fn box_clone(&self) -> IProtocolHandler {
Box::new(self.clone())
}
}
#[cfg(test)]
mod tests {
use super::IdentifyHandler;
use crate::control::SwarmControlCmd;
use crate::identify::{IdentifyConfig, IdentifyInfo, IdentifyPushHandler};
use crate::protocol_handler::ProtocolHandler;
use crate::substream::Substream;
use crate::{identify, SwarmEvent};
use futures::channel::mpsc;
use futures::StreamExt;
use libp2prs_core::identity::Keypair;
use libp2prs_core::transport::ListenerEvent;
use libp2prs_core::upgrade::UpgradeInfo;
use libp2prs_core::{
multiaddr::multiaddr,
transport::{memory::MemoryTransport, Transport},
};
use rand::{thread_rng, Rng};
#[test]
fn produce_and_consume() {
let mem_addr = multiaddr![Memory(thread_rng().gen::<u64>())];
let listener_addr = mem_addr.clone();
let mut listener = MemoryTransport.listen_on(mem_addr).unwrap();
let pubkey = Keypair::generate_ed25519_fixed().public();
let key_cloned = pubkey.clone();
let (tx, mut rx) = mpsc::channel::<SwarmControlCmd>(0);
async_std::task::spawn(async move {
let socket = match listener.accept().await.unwrap() {
ListenerEvent::Accepted(socket) => socket,
_ => panic!("unreachable"),
};
let socket = Substream::new_with_default(Box::new(socket));
let mut handler = IdentifyHandler::new(tx);
let _ = handler.handle(socket, handler.protocol_info().first().unwrap().clone()).await;
});
async_std::task::spawn(async move {
let r = rx.next().await.unwrap();
if let SwarmControlCmd::IdentifyInfo(reply) = r {
let info = IdentifyInfo {
public_key: key_cloned,
protocol_version: "".to_string(),
agent_version: "abc".to_string(),
listen_addrs: vec![],
protocols: vec![],
};
let _ = reply.send(info);
}
});
async_std::task::block_on(async move {
let socket = MemoryTransport.dial(listener_addr).await.unwrap();
let socket = Substream::new_with_default(Box::new(socket));
let (ri, _addr) = identify::process_message(socket).await.unwrap();
assert_eq!(ri.public_key, pubkey);
});
}
#[test]
fn produce_and_consume_push() {
let mem_addr = multiaddr![Memory(thread_rng().gen::<u64>())];
let listener_addr = mem_addr.clone();
let mut listener = MemoryTransport.listen_on(mem_addr).unwrap();
let pubkey = Keypair::generate_ed25519_fixed().public();
let key_cloned = pubkey.clone();
let (tx, mut rx) = mpsc::unbounded::<SwarmEvent>();
async_std::task::spawn(async move {
let socket = MemoryTransport.dial(listener_addr).await.unwrap();
let socket = Substream::new_with_default(Box::new(socket));
let info = IdentifyInfo {
public_key: key_cloned,
protocol_version: "".to_string(),
agent_version: "".to_string(),
listen_addrs: vec![],
protocols: vec![],
};
let _ = identify::produce_message(socket, info).await.unwrap();
});
async_std::task::block_on(async move {
let socket = match listener.accept().await.unwrap() {
ListenerEvent::Accepted(socket) => socket,
_ => panic!("unreachable"),
};
let socket = Substream::new_with_default(Box::new(socket));
let mut handler = IdentifyPushHandler::new(IdentifyConfig::default(), tx);
let _ = handler.handle(socket, handler.protocol_info().first().unwrap().clone()).await;
let r = rx.next().await.unwrap();
if let SwarmEvent::IdentifyResult { cid: _, result } = r {
assert_eq!(result.unwrap().0.public_key, pubkey);
} else {
unreachable!()
}
});
}
}