2019-08-28 02:30:53 +00:00
|
|
|
## Nim-LibP2P
|
|
|
|
## Copyright (c) 2018 Status Research & Development GmbH
|
|
|
|
## Licensed under either of
|
|
|
|
## * Apache License, version 2.0, ([LICENSE-APACHE](LICENSE-APACHE))
|
|
|
|
## * MIT license ([LICENSE-MIT](LICENSE-MIT))
|
|
|
|
## at your option.
|
|
|
|
## This file may not be copied, modified, or distributed except according to
|
|
|
|
## those terms.
|
|
|
|
|
|
|
|
import chronos
|
|
|
|
import protobuf/minprotobuf, peerinfo,
|
2019-08-30 05:16:30 +00:00
|
|
|
protocol as proto, connection,
|
2019-08-28 19:02:55 +00:00
|
|
|
peer, crypto/crypto, multiaddress
|
2019-08-28 02:30:53 +00:00
|
|
|
|
2019-08-30 05:16:30 +00:00
|
|
|
const IdentifyCodec* = "/ipfs/id/1.0.0"
|
|
|
|
const IdentifyPushCodec* = "/ipfs/id/push/1.0.0"
|
|
|
|
const ProtoVersion* = "ipfs/0.1.0"
|
|
|
|
const AgentVersion* = "nim-libp2p/0.0.1"
|
2019-08-28 02:30:53 +00:00
|
|
|
|
2019-08-30 15:28:07 +00:00
|
|
|
#TODO: implment push identify, leaving out for now as it is not essential
|
|
|
|
|
2019-08-28 02:30:53 +00:00
|
|
|
type
|
2019-08-28 19:02:55 +00:00
|
|
|
# TODO: we're doing protobuf manualy, this is only temporary
|
2019-08-28 02:30:53 +00:00
|
|
|
ProtoField[T] = object
|
|
|
|
index: int
|
|
|
|
field: T
|
|
|
|
|
2019-08-30 05:16:30 +00:00
|
|
|
IdentifyInfo* = object
|
|
|
|
pubKey*: PublicKey
|
|
|
|
addrs*: seq[MultiAddress]
|
|
|
|
observedAddr*: MultiAddress
|
|
|
|
protoVersion*: string
|
|
|
|
agentVersion*: string
|
2019-08-31 19:07:00 +00:00
|
|
|
protos*: seq[string]
|
2019-08-28 02:30:53 +00:00
|
|
|
|
2019-08-30 05:16:30 +00:00
|
|
|
Identify* = ref object of LPProtocol
|
2019-08-28 02:30:53 +00:00
|
|
|
|
2019-08-30 05:16:30 +00:00
|
|
|
proc encodeMsg*(peerInfo: PeerInfo, observedAddrs: Multiaddress): ProtoBuffer =
|
|
|
|
result = initProtoBuffer()
|
2019-08-28 19:02:55 +00:00
|
|
|
|
2019-08-30 05:16:30 +00:00
|
|
|
result.write(initProtoField(1, peerInfo.peerId.publicKey.getBytes()))
|
|
|
|
for ma in peerInfo.addrs:
|
2019-08-28 19:02:55 +00:00
|
|
|
result.write(initProtoField(2, ma.data.buffer))
|
|
|
|
|
2019-08-31 19:07:00 +00:00
|
|
|
for proto in peerInfo.protocols:
|
|
|
|
result.write(initProtoField(3, proto))
|
2019-08-28 19:02:55 +00:00
|
|
|
|
|
|
|
result.write(initProtoField(4, observedAddrs.data.buffer))
|
|
|
|
|
|
|
|
let protoVersion = ProtoVersion
|
|
|
|
result.write(initProtoField(5, protoVersion))
|
|
|
|
|
|
|
|
let agentVersion = AgentVersion
|
|
|
|
result.write(initProtoField(6, agentVersion))
|
|
|
|
result.finish()
|
|
|
|
|
2019-08-30 05:16:30 +00:00
|
|
|
proc decodeMsg*(buf: seq[byte]): IdentifyInfo =
|
|
|
|
var pb = initProtoBuffer(buf)
|
|
|
|
|
2019-08-31 19:07:00 +00:00
|
|
|
discard pb.getValue(1, result.pubKey)
|
2019-08-30 05:16:30 +00:00
|
|
|
|
2019-08-28 19:02:55 +00:00
|
|
|
result.addrs = newSeq[MultiAddress]()
|
|
|
|
var address = newSeq[byte]()
|
|
|
|
while pb.getBytes(2, address) != -1:
|
|
|
|
if len(address) != 0:
|
|
|
|
var copyaddr = address
|
|
|
|
result.addrs.add(MultiAddress.init(copyaddr))
|
|
|
|
address.setLen(0)
|
|
|
|
|
|
|
|
var proto = ""
|
|
|
|
while pb.getString(3, proto) > 0:
|
2019-08-31 19:07:00 +00:00
|
|
|
result.protos.add(proto)
|
2019-08-28 19:02:55 +00:00
|
|
|
proto = "" # TODO: do i need to clear it up?
|
2019-08-30 05:16:30 +00:00
|
|
|
|
2019-08-28 19:02:55 +00:00
|
|
|
var observableAddr = newSeq[byte]()
|
|
|
|
if pb.getBytes(4, observableAddr) > 0: # attempt to read the observed addr
|
|
|
|
result.observedAddr = MultiAddress.init(observableAddr)
|
|
|
|
|
2019-08-31 19:12:49 +00:00
|
|
|
discard pb.getString(5, result.protoVersion)
|
|
|
|
discard pb.getString(6, result.agentVersion)
|
2019-08-28 19:02:55 +00:00
|
|
|
|
2019-08-30 23:45:57 +00:00
|
|
|
method init*(p: Identify) =
|
|
|
|
proc handle(conn: Connection, proto: string) {.async, gcsafe.} =
|
|
|
|
var pb = encodeMsg(p.peerInfo, await conn.getObservedAddrs())
|
|
|
|
await conn.writeLp(pb.buffer)
|
|
|
|
|
|
|
|
p.handler = handle
|
|
|
|
|
2019-08-30 05:16:30 +00:00
|
|
|
proc identify*(p: Identify, conn: Connection): Future[IdentifyInfo] {.async.} =
|
2019-08-28 19:02:55 +00:00
|
|
|
var message = await conn.readLp()
|
|
|
|
if len(message) == 0:
|
|
|
|
raise newException(CatchableError, "Incorrect or empty message received!")
|
2019-08-30 05:16:30 +00:00
|
|
|
result = decodeMsg(message)
|
2019-08-28 19:02:55 +00:00
|
|
|
|
2019-08-30 05:16:30 +00:00
|
|
|
proc push*(p: Identify, conn: Connection) {.async.} =
|
|
|
|
await conn.write(IdentifyPushCodec)
|
|
|
|
var pb = encodeMsg(p.peerInfo, await conn.getObservedAddrs())
|
|
|
|
let length = pb.getLen()
|
|
|
|
await conn.writeLp(pb.buffer)
|