2021-06-08 16:53:45 +00:00
|
|
|
## Nim-LibP2P
|
|
|
|
## Copyright (c) 2021 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.
|
|
|
|
|
2022-01-05 15:27:33 +00:00
|
|
|
{.push raises: [Defect].}
|
|
|
|
|
2021-06-08 16:53:45 +00:00
|
|
|
import chronos, chronicles, bearssl
|
|
|
|
import ../protobuf/minprotobuf,
|
|
|
|
../peerinfo,
|
|
|
|
../stream/connection,
|
|
|
|
../peerid,
|
|
|
|
../crypto/crypto,
|
|
|
|
../multiaddress,
|
|
|
|
../protocols/protocol,
|
|
|
|
../errors
|
|
|
|
|
|
|
|
logScope:
|
|
|
|
topics = "libp2p ping"
|
|
|
|
|
|
|
|
const
|
|
|
|
PingCodec* = "/ipfs/ping/1.0.0"
|
|
|
|
PingSize = 32
|
|
|
|
|
|
|
|
type
|
|
|
|
PingError* = object of LPError
|
|
|
|
WrongPingAckError* = object of LPError
|
|
|
|
|
|
|
|
PingHandler* = proc (
|
2021-09-08 09:07:46 +00:00
|
|
|
peer: PeerId):
|
2021-06-08 16:53:45 +00:00
|
|
|
Future[void]
|
|
|
|
{.gcsafe, raises: [Defect].}
|
|
|
|
|
|
|
|
Ping* = ref object of LPProtocol
|
|
|
|
pingHandler*: PingHandler
|
|
|
|
rng: ref BrHmacDrbgContext
|
|
|
|
|
|
|
|
proc new*(T: typedesc[Ping], handler: PingHandler = nil, rng: ref BrHmacDrbgContext = newRng()): T =
|
|
|
|
let ping = Ping(pinghandler: handler, rng: rng)
|
|
|
|
ping.init()
|
|
|
|
ping
|
|
|
|
|
|
|
|
method init*(p: Ping) =
|
|
|
|
proc handle(conn: Connection, proto: string) {.async, gcsafe, closure.} =
|
|
|
|
try:
|
|
|
|
trace "handling ping", conn
|
|
|
|
var buf: array[PingSize, byte]
|
|
|
|
await conn.readExactly(addr buf[0], PingSize)
|
|
|
|
trace "echoing ping", conn
|
2021-10-25 08:26:32 +00:00
|
|
|
await conn.write(@buf)
|
2021-06-08 16:53:45 +00:00
|
|
|
if not isNil(p.pingHandler):
|
2021-09-08 09:07:46 +00:00
|
|
|
await p.pingHandler(conn.peerId)
|
2021-06-08 16:53:45 +00:00
|
|
|
except CancelledError as exc:
|
|
|
|
raise exc
|
|
|
|
except CatchableError as exc:
|
|
|
|
trace "exception in ping handler", exc = exc.msg, conn
|
|
|
|
|
|
|
|
p.handler = handle
|
|
|
|
p.codec = PingCodec
|
|
|
|
|
|
|
|
proc ping*(
|
|
|
|
p: Ping,
|
|
|
|
conn: Connection,
|
|
|
|
): Future[Duration] {.async, gcsafe.} =
|
|
|
|
## Sends ping to `conn`
|
|
|
|
## Returns the delay
|
|
|
|
##
|
|
|
|
|
|
|
|
trace "initiating ping", conn
|
|
|
|
|
|
|
|
var
|
|
|
|
randomBuf: array[PingSize, byte]
|
|
|
|
resultBuf: array[PingSize, byte]
|
|
|
|
|
|
|
|
p.rng[].brHmacDrbgGenerate(randomBuf)
|
|
|
|
|
|
|
|
let startTime = Moment.now()
|
|
|
|
|
|
|
|
trace "sending ping", conn
|
2021-10-25 08:26:32 +00:00
|
|
|
await conn.write(@randomBuf)
|
2021-06-08 16:53:45 +00:00
|
|
|
|
|
|
|
await conn.readExactly(addr resultBuf[0], PingSize)
|
|
|
|
|
|
|
|
let responseDur = Moment.now() - startTime
|
|
|
|
|
|
|
|
trace "got ping response", conn, responseDur
|
|
|
|
|
|
|
|
for i in 0..<randomBuf.len:
|
|
|
|
if randomBuf[i] != resultBuf[i]:
|
|
|
|
raise newException(WrongPingAckError, "Incorrect ping data from peer!")
|
|
|
|
|
|
|
|
trace "valid ping response", conn
|
|
|
|
return responseDur
|