2019-09-06 06:51:46 +00:00
|
|
|
## Nim-LibP2P
|
2019-09-24 17:48:23 +00:00
|
|
|
## Copyright (c) 2019 Status Research & Development GmbH
|
2019-09-06 06:51:46 +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.
|
|
|
|
|
2020-02-25 05:06:57 +00:00
|
|
|
import options
|
2020-04-14 13:27:07 +00:00
|
|
|
import chronos, chronicles
|
2020-03-09 17:27:57 +00:00
|
|
|
import ../protocol,
|
2020-05-07 20:37:46 +00:00
|
|
|
../../stream/streamseq,
|
2020-06-19 17:29:43 +00:00
|
|
|
../../stream/connection,
|
2020-06-24 15:08:44 +00:00
|
|
|
../../multiaddress,
|
2020-05-07 20:37:46 +00:00
|
|
|
../../peerinfo
|
2019-09-06 06:51:46 +00:00
|
|
|
|
2020-06-20 10:56:55 +00:00
|
|
|
logScope:
|
|
|
|
topics = "secure"
|
|
|
|
|
2019-09-06 06:51:46 +00:00
|
|
|
type
|
|
|
|
Secure* = ref object of LPProtocol # base type for secure managers
|
2020-04-03 20:36:51 +00:00
|
|
|
|
2020-03-09 17:27:57 +00:00
|
|
|
SecureConn* = ref object of Connection
|
2020-06-19 17:29:43 +00:00
|
|
|
stream*: Connection
|
2020-05-07 20:37:46 +00:00
|
|
|
buf: StreamSeq
|
2020-03-09 17:27:57 +00:00
|
|
|
|
2020-06-24 15:08:44 +00:00
|
|
|
proc init*[T: SecureConn](C: type T,
|
|
|
|
conn: Connection,
|
|
|
|
peerInfo: PeerInfo,
|
|
|
|
observedAddr: Multiaddress): T =
|
|
|
|
result = C(stream: conn,
|
|
|
|
peerInfo: peerInfo,
|
|
|
|
observedAddr: observedAddr,
|
|
|
|
closeEvent: conn.closeEvent)
|
|
|
|
result.initStream()
|
|
|
|
|
2020-06-19 17:29:43 +00:00
|
|
|
method initStream*(s: SecureConn) =
|
|
|
|
if s.objName.len == 0:
|
|
|
|
s.objName = "SecureConn"
|
|
|
|
|
|
|
|
procCall Connection(s).initStream()
|
|
|
|
|
|
|
|
method close*(s: SecureConn) {.async.} =
|
2020-06-24 15:08:44 +00:00
|
|
|
await procCall Connection(s).close()
|
|
|
|
|
2020-06-19 17:29:43 +00:00
|
|
|
if not(isNil(s.stream)):
|
|
|
|
await s.stream.close()
|
|
|
|
|
2020-03-09 17:27:57 +00:00
|
|
|
method readMessage*(c: SecureConn): Future[seq[byte]] {.async, base.} =
|
|
|
|
doAssert(false, "Not implemented!")
|
|
|
|
|
2020-03-04 19:45:14 +00:00
|
|
|
method handshake(s: Secure,
|
|
|
|
conn: Connection,
|
2020-04-23 01:27:29 +00:00
|
|
|
initiator: bool): Future[SecureConn] {.async, base.} =
|
2020-02-25 05:06:57 +00:00
|
|
|
doAssert(false, "Not implemented!")
|
|
|
|
|
2020-04-23 01:27:29 +00:00
|
|
|
proc handleConn*(s: Secure, conn: Connection, initiator: bool): Future[Connection] {.async, gcsafe.} =
|
2020-03-08 03:14:56 +00:00
|
|
|
var sconn = await s.handshake(conn, initiator)
|
2020-02-25 05:06:57 +00:00
|
|
|
|
2020-06-24 15:08:44 +00:00
|
|
|
conn.closeEvent.wait()
|
|
|
|
.addCallback do(udata: pointer = nil):
|
|
|
|
if not(isNil(sconn)):
|
|
|
|
asyncCheck sconn.close()
|
2020-02-25 05:06:57 +00:00
|
|
|
|
2020-06-24 15:08:44 +00:00
|
|
|
return sconn
|
2020-02-25 05:06:57 +00:00
|
|
|
|
|
|
|
method init*(s: Secure) {.gcsafe.} =
|
|
|
|
proc handle(conn: Connection, proto: string) {.async, gcsafe.} =
|
2020-04-23 01:27:29 +00:00
|
|
|
trace "handling connection upgrade", proto
|
2020-02-25 05:06:57 +00:00
|
|
|
try:
|
2020-03-24 06:34:02 +00:00
|
|
|
# We don't need the result but we definitely need to await the handshake
|
|
|
|
discard await s.handleConn(conn, false)
|
2020-02-25 05:06:57 +00:00
|
|
|
trace "connection secured"
|
2020-06-29 15:15:31 +00:00
|
|
|
except CancelledError as exc:
|
|
|
|
warn "securing connection canceled"
|
|
|
|
await conn.close()
|
|
|
|
raise
|
2020-02-25 05:06:57 +00:00
|
|
|
except CatchableError as exc:
|
2020-05-23 16:51:54 +00:00
|
|
|
warn "securing connection failed", msg = exc.msg
|
|
|
|
await conn.close()
|
2020-02-25 05:06:57 +00:00
|
|
|
|
|
|
|
s.handler = handle
|
|
|
|
|
2020-04-23 01:27:29 +00:00
|
|
|
method secure*(s: Secure, conn: Connection, initiator: bool): Future[Connection] {.async, base, gcsafe.} =
|
2020-06-29 15:15:31 +00:00
|
|
|
result = await s.handleConn(conn, initiator)
|
2020-05-07 20:37:46 +00:00
|
|
|
|
|
|
|
method readOnce*(s: SecureConn,
|
|
|
|
pbytes: pointer,
|
|
|
|
nbytes: int):
|
|
|
|
Future[int] {.async, gcsafe.} =
|
2020-06-29 15:15:31 +00:00
|
|
|
if nbytes == 0:
|
|
|
|
return 0
|
|
|
|
|
|
|
|
if s.buf.data().len() == 0:
|
|
|
|
let buf = await s.readMessage()
|
|
|
|
if buf.len == 0:
|
|
|
|
raise newLPStreamIncompleteError()
|
|
|
|
s.buf.add(buf)
|
|
|
|
|
|
|
|
var p = cast[ptr UncheckedArray[byte]](pbytes)
|
|
|
|
return s.buf.consumeTo(toOpenArray(p, 0, nbytes - 1))
|