2019-08-28 02:30:53 +00:00
|
|
|
## Nim-LibP2P
|
2019-09-24 17:48:23 +00:00
|
|
|
## Copyright (c) 2019 Status Research & Development GmbH
|
2019-08-28 02:30:53 +00:00
|
|
|
## 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.
|
|
|
|
|
2019-12-04 04:44:54 +00:00
|
|
|
import options
|
2019-09-09 17:33:32 +00:00
|
|
|
import chronos, chronicles
|
2019-12-10 20:50:35 +00:00
|
|
|
import ../protobuf/minprotobuf,
|
2019-09-08 07:43:33 +00:00
|
|
|
../peerinfo,
|
2020-06-19 17:29:43 +00:00
|
|
|
../stream/connection,
|
2020-07-01 06:25:09 +00:00
|
|
|
../peerid,
|
2019-12-10 20:50:35 +00:00
|
|
|
../crypto/crypto,
|
2019-09-08 07:43:33 +00:00
|
|
|
../multiaddress,
|
2020-03-23 06:03:36 +00:00
|
|
|
../protocols/protocol,
|
|
|
|
../utility
|
2019-08-28 02:30:53 +00:00
|
|
|
|
2019-09-10 02:15:52 +00:00
|
|
|
logScope:
|
2020-06-10 08:48:01 +00:00
|
|
|
topics = "identify"
|
2019-09-10 02:15:52 +00:00
|
|
|
|
2019-10-04 16:04:21 +00:00
|
|
|
const
|
|
|
|
IdentifyCodec* = "/ipfs/id/1.0.0"
|
|
|
|
IdentifyPushCodec* = "/ipfs/id/push/1.0.0"
|
|
|
|
ProtoVersion* = "ipfs/0.1.0"
|
|
|
|
AgentVersion* = "nim-libp2p/0.0.1"
|
2019-08-28 02:30:53 +00:00
|
|
|
|
2020-06-27 17:33:34 +00:00
|
|
|
#TODO: implement push identify, leaving out for now as it is not essential
|
2019-08-30 15:28:07 +00:00
|
|
|
|
2019-08-28 02:30:53 +00:00
|
|
|
type
|
2019-09-04 17:36:07 +00:00
|
|
|
IdentityNoMatchError* = object of CatchableError
|
2019-09-06 00:16:21 +00:00
|
|
|
IdentityInvalidMsgError* = object of CatchableError
|
2019-08-28 02:30:53 +00:00
|
|
|
|
2019-08-30 05:16:30 +00:00
|
|
|
IdentifyInfo* = object
|
2019-09-11 16:14:20 +00:00
|
|
|
pubKey*: Option[PublicKey]
|
2019-08-30 05:16:30 +00:00
|
|
|
addrs*: seq[MultiAddress]
|
2019-09-11 16:14:20 +00:00
|
|
|
observedAddr*: Option[MultiAddress]
|
|
|
|
protoVersion*: Option[string]
|
|
|
|
agentVersion*: Option[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-09-03 20:39:28 +00:00
|
|
|
peerInfo*: PeerInfo
|
2019-08-28 02:30:53 +00:00
|
|
|
|
2020-06-13 01:56:17 +00:00
|
|
|
proc encodeMsg*(peerInfo: PeerInfo, observedAddr: Multiaddress): ProtoBuffer =
|
2019-08-30 05:16:30 +00:00
|
|
|
result = initProtoBuffer()
|
2020-07-13 12:43:07 +00:00
|
|
|
result.write(1, peerInfo.publicKey.get().getBytes().tryGet())
|
2019-08-30 05:16:30 +00:00
|
|
|
for ma in peerInfo.addrs:
|
2020-07-13 12:43:07 +00:00
|
|
|
result.write(2, ma.data.buffer)
|
2019-08-31 19:07:00 +00:00
|
|
|
for proto in peerInfo.protocols:
|
2020-07-13 12:43:07 +00:00
|
|
|
result.write(3, proto)
|
|
|
|
result.write(4, observedAddr.data.buffer)
|
2019-08-28 19:02:55 +00:00
|
|
|
let protoVersion = ProtoVersion
|
2020-07-13 12:43:07 +00:00
|
|
|
result.write(5, protoVersion)
|
2019-08-28 19:02:55 +00:00
|
|
|
let agentVersion = AgentVersion
|
2020-07-13 12:43:07 +00:00
|
|
|
result.write(6, agentVersion)
|
2019-08-28 19:02:55 +00:00
|
|
|
result.finish()
|
|
|
|
|
2020-07-15 08:25:39 +00:00
|
|
|
proc decodeMsg*(buf: seq[byte]): Option[IdentifyInfo] =
|
|
|
|
var
|
|
|
|
iinfo: IdentifyInfo
|
|
|
|
pubKey: PublicKey
|
|
|
|
oaddr: MultiAddress
|
|
|
|
protoVersion: string
|
|
|
|
agentVersion: string
|
2020-07-13 12:43:07 +00:00
|
|
|
|
2020-07-15 08:25:39 +00:00
|
|
|
var pb = initProtoBuffer(buf)
|
2019-08-28 19:02:55 +00:00
|
|
|
|
2020-07-15 08:25:39 +00:00
|
|
|
let r1 = pb.getField(1, pubKey)
|
|
|
|
let r2 = pb.getRepeatedField(2, iinfo.addrs)
|
|
|
|
let r3 = pb.getRepeatedField(3, iinfo.protos)
|
|
|
|
let r4 = pb.getField(4, oaddr)
|
|
|
|
let r5 = pb.getField(5, protoVersion)
|
|
|
|
let r6 = pb.getField(6, agentVersion)
|
|
|
|
|
|
|
|
let res = r1.isOk() and r2.isOk() and r3.isOk() and
|
|
|
|
r4.isOk() and r5.isOk() and r6.isOk()
|
|
|
|
|
|
|
|
if res:
|
|
|
|
if r1.get():
|
|
|
|
iinfo.pubKey = some(pubKey)
|
|
|
|
if r4.get():
|
|
|
|
iinfo.observedAddr = some(oaddr)
|
|
|
|
if r5.get():
|
|
|
|
iinfo.protoVersion = some(protoVersion)
|
|
|
|
if r6.get():
|
|
|
|
iinfo.agentVersion = some(agentVersion)
|
2020-09-21 09:16:29 +00:00
|
|
|
debug "decodeMsg: decoded message", pubkey = ($pubKey).shortLog,
|
2020-07-15 08:25:39 +00:00
|
|
|
addresses = $iinfo.addrs, protocols = $iinfo.protos,
|
|
|
|
observable_address = $iinfo.observedAddr,
|
|
|
|
proto_version = $iinfo.protoVersion,
|
|
|
|
agent_version = $iinfo.agentVersion
|
|
|
|
some(iinfo)
|
|
|
|
else:
|
|
|
|
trace "decodeMsg: failed to decode received message"
|
|
|
|
none[IdentifyInfo]()
|
2019-08-28 19:02:55 +00:00
|
|
|
|
2019-09-03 20:39:28 +00:00
|
|
|
proc newIdentify*(peerInfo: PeerInfo): Identify =
|
|
|
|
new result
|
|
|
|
result.peerInfo = peerInfo
|
|
|
|
result.init()
|
|
|
|
|
2019-12-10 20:50:35 +00:00
|
|
|
method init*(p: Identify) =
|
2019-09-02 20:45:52 +00:00
|
|
|
proc handle(conn: Connection, proto: string) {.async, gcsafe, closure.} =
|
2020-06-08 23:42:27 +00:00
|
|
|
try:
|
2020-09-06 08:31:47 +00:00
|
|
|
trace "handling identify request", conn
|
2020-06-29 15:15:31 +00:00
|
|
|
var pb = encodeMsg(p.peerInfo, conn.observedAddr)
|
|
|
|
await conn.writeLp(pb.buffer)
|
|
|
|
except CancelledError as exc:
|
|
|
|
raise exc
|
2020-06-08 23:42:27 +00:00
|
|
|
except CatchableError as exc:
|
2020-09-06 08:31:47 +00:00
|
|
|
trace "exception in identify handler", exc = exc.msg, conn
|
2020-09-24 05:30:19 +00:00
|
|
|
finally:
|
|
|
|
trace "exiting identify handler", conn
|
|
|
|
await conn.closeWithEOF()
|
2019-08-30 23:45:57 +00:00
|
|
|
|
|
|
|
p.handler = handle
|
2019-09-06 00:16:21 +00:00
|
|
|
p.codec = IdentifyCodec
|
2019-08-30 23:45:57 +00:00
|
|
|
|
2019-12-10 20:50:35 +00:00
|
|
|
proc identify*(p: Identify,
|
|
|
|
conn: Connection,
|
|
|
|
remotePeerInfo: PeerInfo): Future[IdentifyInfo] {.async, gcsafe.} =
|
2020-09-06 08:31:47 +00:00
|
|
|
trace "initiating identify", conn
|
2020-05-08 20:58:23 +00:00
|
|
|
var message = await conn.readLp(64*1024)
|
2019-08-28 19:02:55 +00:00
|
|
|
if len(message) == 0:
|
2020-09-06 08:31:47 +00:00
|
|
|
trace "identify: Empty message received!", conn
|
2020-07-15 08:25:39 +00:00
|
|
|
raise newException(IdentityInvalidMsgError, "Empty message received!")
|
2019-09-06 00:16:21 +00:00
|
|
|
|
2020-07-15 08:25:39 +00:00
|
|
|
let infoOpt = decodeMsg(message)
|
|
|
|
if infoOpt.isNone():
|
|
|
|
raise newException(IdentityInvalidMsgError, "Incorrect message received!")
|
|
|
|
result = infoOpt.get()
|
2019-09-11 16:14:20 +00:00
|
|
|
|
2019-12-10 20:50:35 +00:00
|
|
|
if not isNil(remotePeerInfo) and result.pubKey.isSome:
|
2019-10-04 21:20:19 +00:00
|
|
|
let peer = PeerID.init(result.pubKey.get())
|
2020-07-01 06:25:09 +00:00
|
|
|
if peer.isErr:
|
|
|
|
raise newException(IdentityInvalidMsgError, $peer.error)
|
|
|
|
else:
|
|
|
|
# do a string comaprison of the ids,
|
|
|
|
# because that is the only thing we
|
|
|
|
# have in most cases
|
|
|
|
if peer.get() != remotePeerInfo.peerId:
|
|
|
|
trace "Peer ids don't match",
|
2020-09-06 08:31:47 +00:00
|
|
|
remote = peer,
|
|
|
|
local = remotePeerInfo.peerId
|
2020-07-01 06:25:09 +00:00
|
|
|
|
|
|
|
raise newException(IdentityNoMatchError, "Peer ids don't match")
|
2019-10-04 21:20:19 +00:00
|
|
|
|
2019-08-30 05:16:30 +00:00
|
|
|
proc push*(p: Identify, conn: Connection) {.async.} =
|
|
|
|
await conn.write(IdentifyPushCodec)
|
2020-06-13 01:56:17 +00:00
|
|
|
var pb = encodeMsg(p.peerInfo, conn.observedAddr)
|
2019-08-30 05:16:30 +00:00
|
|
|
await conn.writeLp(pb.buffer)
|