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-05-07 20:37:46 +00:00
|
|
|
import chronos, chronicles, oids, stew/endians2
|
2019-09-13 17:20:37 +00:00
|
|
|
import nimcrypto/[sysrand, hmac, sha2, sha, hash, rijndael, twofish, bcmode]
|
2019-10-29 18:51:48 +00:00
|
|
|
import secure,
|
|
|
|
../../connection,
|
2019-12-07 16:36:39 +00:00
|
|
|
../../peerinfo,
|
2019-12-04 04:44:54 +00:00
|
|
|
../../stream/lpstream,
|
2019-10-29 18:51:48 +00:00
|
|
|
../../crypto/crypto,
|
2019-09-13 17:20:37 +00:00
|
|
|
../../crypto/ecnist,
|
2020-03-23 06:03:36 +00:00
|
|
|
../../peer,
|
|
|
|
../../utility
|
2019-09-13 17:20:37 +00:00
|
|
|
export hmac, sha2, sha, hash, rijndael, bcmode
|
2019-09-06 06:51:46 +00:00
|
|
|
|
2019-09-10 02:13:15 +00:00
|
|
|
logScope:
|
|
|
|
topic = "secio"
|
|
|
|
|
|
|
|
const
|
|
|
|
SecioCodec* = "/secio/1.0.0"
|
|
|
|
SecioMaxMessageSize = 8 * 1024 * 1024 ## 8mb
|
2019-09-13 17:20:37 +00:00
|
|
|
SecioMaxMacSize = sha512.sizeDigest
|
2019-09-10 02:13:15 +00:00
|
|
|
SecioNonceSize = 16
|
|
|
|
SecioExchanges = "P-256,P-384,P-521"
|
2019-09-13 17:20:37 +00:00
|
|
|
SecioCiphers = "TwofishCTR,AES-256,AES-128"
|
|
|
|
SecioHashes = "SHA256,SHA512"
|
2019-09-06 06:51:46 +00:00
|
|
|
|
|
|
|
type
|
2019-09-09 17:33:51 +00:00
|
|
|
Secio = ref object of Secure
|
2019-09-13 17:20:37 +00:00
|
|
|
localPrivateKey: PrivateKey
|
2019-09-10 02:13:15 +00:00
|
|
|
localPublicKey: PublicKey
|
2019-09-13 17:20:37 +00:00
|
|
|
remotePublicKey: PublicKey
|
|
|
|
|
|
|
|
SecureCipherType {.pure.} = enum
|
|
|
|
Aes128, Aes256, Twofish
|
|
|
|
|
|
|
|
SecureMacType {.pure.} = enum
|
|
|
|
Sha1, Sha256, Sha512
|
|
|
|
|
|
|
|
SecureCipher = object
|
|
|
|
case kind: SecureCipherType
|
|
|
|
of SecureCipherType.Aes128:
|
|
|
|
ctxaes128: CTR[aes128]
|
|
|
|
of SecureCipherType.Aes256:
|
|
|
|
ctxaes256: CTR[aes256]
|
|
|
|
of SecureCipherType.Twofish:
|
|
|
|
ctxtwofish256: CTR[twofish256]
|
|
|
|
|
|
|
|
SecureMac = object
|
|
|
|
case kind: SecureMacType
|
|
|
|
of SecureMacType.Sha256:
|
|
|
|
ctxsha256: HMAC[sha256]
|
|
|
|
of SecureMacType.Sha512:
|
|
|
|
ctxsha512: HMAC[sha512]
|
|
|
|
of SecureMacType.Sha1:
|
|
|
|
ctxsha1: HMAC[sha1]
|
|
|
|
|
2020-02-25 05:06:57 +00:00
|
|
|
SecioConn = ref object of SecureConn
|
2019-09-13 17:20:37 +00:00
|
|
|
writerMac: SecureMac
|
|
|
|
readerMac: SecureMac
|
|
|
|
writerCoder: SecureCipher
|
|
|
|
readerCoder: SecureCipher
|
|
|
|
|
2019-12-13 15:25:07 +00:00
|
|
|
SecioError* = object of CatchableError
|
|
|
|
|
2019-09-13 17:20:37 +00:00
|
|
|
proc init(mac: var SecureMac, hash: string, key: openarray[byte]) =
|
|
|
|
if hash == "SHA256":
|
|
|
|
mac = SecureMac(kind: SecureMacType.Sha256)
|
|
|
|
mac.ctxsha256.init(key)
|
|
|
|
elif hash == "SHA512":
|
|
|
|
mac = SecureMac(kind: SecureMacType.Sha512)
|
|
|
|
mac.ctxsha512.init(key)
|
|
|
|
elif hash == "SHA1":
|
|
|
|
mac = SecureMac(kind: SecureMacType.Sha1)
|
|
|
|
mac.ctxsha1.init(key)
|
|
|
|
|
|
|
|
proc update(mac: var SecureMac, data: openarray[byte]) =
|
|
|
|
case mac.kind
|
|
|
|
of SecureMacType.Sha256:
|
|
|
|
update(mac.ctxsha256, data)
|
|
|
|
of SecureMacType.Sha512:
|
|
|
|
update(mac.ctxsha512, data)
|
|
|
|
of SecureMacType.Sha1:
|
|
|
|
update(mac.ctxsha1, data)
|
|
|
|
|
|
|
|
proc sizeDigest(mac: SecureMac): int {.inline.} =
|
|
|
|
case mac.kind
|
|
|
|
of SecureMacType.Sha256:
|
|
|
|
result = int(mac.ctxsha256.sizeDigest())
|
|
|
|
of SecureMacType.Sha512:
|
|
|
|
result = int(mac.ctxsha512.sizeDigest())
|
|
|
|
of SecureMacType.Sha1:
|
|
|
|
result = int(mac.ctxsha1.sizeDigest())
|
|
|
|
|
|
|
|
proc finish(mac: var SecureMac, data: var openarray[byte]) =
|
|
|
|
case mac.kind
|
|
|
|
of SecureMacType.Sha256:
|
|
|
|
discard finish(mac.ctxsha256, data)
|
|
|
|
of SecureMacType.Sha512:
|
|
|
|
discard finish(mac.ctxsha512, data)
|
|
|
|
of SecureMacType.Sha1:
|
|
|
|
discard finish(mac.ctxsha1, data)
|
|
|
|
|
|
|
|
proc reset(mac: var SecureMac) =
|
|
|
|
case mac.kind
|
|
|
|
of SecureMacType.Sha256:
|
|
|
|
reset(mac.ctxsha256)
|
|
|
|
of SecureMacType.Sha512:
|
|
|
|
reset(mac.ctxsha512)
|
|
|
|
of SecureMacType.Sha1:
|
|
|
|
reset(mac.ctxsha1)
|
|
|
|
|
|
|
|
proc init(sc: var SecureCipher, cipher: string, key: openarray[byte],
|
|
|
|
iv: openarray[byte]) {.inline.} =
|
|
|
|
if cipher == "AES-128":
|
|
|
|
sc = SecureCipher(kind: SecureCipherType.Aes128)
|
|
|
|
sc.ctxaes128.init(key, iv)
|
|
|
|
elif cipher == "AES-256":
|
|
|
|
sc = SecureCipher(kind: SecureCipherType.Aes256)
|
|
|
|
sc.ctxaes256.init(key, iv)
|
|
|
|
elif cipher == "TwofishCTR":
|
|
|
|
sc = SecureCipher(kind: SecureCipherType.Twofish)
|
|
|
|
sc.ctxtwofish256.init(key, iv)
|
|
|
|
|
|
|
|
proc encrypt(cipher: var SecureCipher, input: openarray[byte],
|
|
|
|
output: var openarray[byte]) {.inline.} =
|
|
|
|
case cipher.kind
|
|
|
|
of SecureCipherType.Aes128:
|
|
|
|
cipher.ctxaes128.encrypt(input, output)
|
|
|
|
of SecureCipherType.Aes256:
|
|
|
|
cipher.ctxaes256.encrypt(input, output)
|
|
|
|
of SecureCipherType.Twofish:
|
|
|
|
cipher.ctxtwofish256.encrypt(input, output)
|
|
|
|
|
|
|
|
proc decrypt(cipher: var SecureCipher, input: openarray[byte],
|
|
|
|
output: var openarray[byte]) {.inline.} =
|
|
|
|
case cipher.kind
|
|
|
|
of SecureCipherType.Aes128:
|
|
|
|
cipher.ctxaes128.decrypt(input, output)
|
|
|
|
of SecureCipherType.Aes256:
|
|
|
|
cipher.ctxaes256.decrypt(input, output)
|
|
|
|
of SecureCipherType.Twofish:
|
|
|
|
cipher.ctxtwofish256.decrypt(input, output)
|
|
|
|
|
2020-02-25 05:06:57 +00:00
|
|
|
proc macCheckAndDecode(sconn: SecioConn, data: var seq[byte]): bool =
|
2019-09-13 17:20:37 +00:00
|
|
|
## This procedure checks MAC of recieved message ``data`` and if message is
|
|
|
|
## authenticated, then decrypt message.
|
|
|
|
##
|
|
|
|
## Procedure returns ``false`` if message is too short or MAC verification
|
|
|
|
## failed.
|
|
|
|
var macData: array[SecioMaxMacSize, byte]
|
|
|
|
let macsize = sconn.readerMac.sizeDigest()
|
|
|
|
if len(data) < macsize:
|
|
|
|
trace "Message is shorter then MAC size", message_length = len(data),
|
|
|
|
mac_size = macsize
|
|
|
|
return false
|
|
|
|
let mark = len(data) - macsize
|
|
|
|
sconn.readerMac.update(data.toOpenArray(0, mark - 1))
|
|
|
|
sconn.readerMac.finish(macData)
|
|
|
|
sconn.readerMac.reset()
|
|
|
|
if not equalMem(addr data[mark], addr macData[0], macsize):
|
|
|
|
trace "Invalid MAC",
|
|
|
|
calculated = toHex(macData.toOpenArray(0, macsize - 1)),
|
|
|
|
stored = toHex(data.toOpenArray(mark, len(data) - 1))
|
|
|
|
return false
|
|
|
|
|
|
|
|
sconn.readerCoder.decrypt(data.toOpenArray(0, mark - 1),
|
|
|
|
data.toOpenArray(0, mark - 1))
|
|
|
|
data.setLen(mark)
|
|
|
|
result = true
|
|
|
|
|
2020-05-07 20:37:46 +00:00
|
|
|
proc readRawMessage(conn: Connection): Future[seq[byte]] {.async.} =
|
|
|
|
while true: # Discard 0-length payloads
|
|
|
|
var lengthBuf: array[4, byte]
|
|
|
|
await conn.stream.readExactly(addr lengthBuf[0], lengthBuf.len)
|
|
|
|
let length = uint32.fromBytesBE(lengthBuf)
|
|
|
|
|
|
|
|
trace "Recieved message header", header = lengthBuf.shortLog, length = length
|
|
|
|
|
|
|
|
if length > SecioMaxMessageSize: # Verify length before casting!
|
|
|
|
trace "Received size of message exceed limits", conn = $conn, length = length
|
|
|
|
raise (ref SecioError)(msg: "Message exceeds maximum length")
|
|
|
|
|
|
|
|
if length > 0:
|
|
|
|
var buf = newSeq[byte](int(length))
|
|
|
|
await conn.stream.readExactly(addr buf[0], buf.len)
|
|
|
|
trace "Received message body",
|
|
|
|
conn = $conn, length = buf.len, buff = buf.shortLog
|
|
|
|
return buf
|
|
|
|
|
|
|
|
trace "Discarding 0-length payload", conn = $conn
|
|
|
|
|
|
|
|
method readMessage*(sconn: SecioConn): Future[seq[byte]] {.async.} =
|
2019-09-13 17:20:37 +00:00
|
|
|
## Read message from channel secure connection ``sconn``.
|
2020-04-14 13:21:16 +00:00
|
|
|
when chronicles.enabledLogLevel == LogLevel.TRACE:
|
|
|
|
logScope:
|
|
|
|
stream_oid = $sconn.stream.oid
|
2020-05-07 20:37:46 +00:00
|
|
|
var buf = await sconn.readRawMessage()
|
|
|
|
if sconn.macCheckAndDecode(buf):
|
|
|
|
result = buf
|
|
|
|
else:
|
|
|
|
trace "Message MAC verification failed", buf = buf.shortLog
|
|
|
|
raise (ref SecioError)(msg: "message failed MAC verification")
|
|
|
|
|
|
|
|
method write*(sconn: SecioConn, message: seq[byte]) {.async.} =
|
2019-09-13 17:20:37 +00:00
|
|
|
## Write message ``message`` to secure connection ``sconn``.
|
2020-05-07 20:37:46 +00:00
|
|
|
if message.len == 0:
|
|
|
|
return
|
|
|
|
|
2019-09-13 17:20:37 +00:00
|
|
|
try:
|
2020-03-25 07:53:35 +00:00
|
|
|
var
|
|
|
|
left = message.len
|
|
|
|
offset = 0
|
|
|
|
while left > 0:
|
|
|
|
let
|
2020-03-26 06:06:47 +00:00
|
|
|
chunkSize = if left > SecioMaxMessageSize - 64: SecioMaxMessageSize - 64 else: left
|
2020-05-07 20:37:46 +00:00
|
|
|
macsize = sconn.writerMac.sizeDigest()
|
|
|
|
length = chunkSize + macsize
|
|
|
|
|
2020-03-25 07:53:35 +00:00
|
|
|
var msg = newSeq[byte](chunkSize + 4 + macsize)
|
2020-05-07 20:37:46 +00:00
|
|
|
msg[0..<4] = uint32(length).toBytesBE()
|
|
|
|
|
2020-03-25 07:53:35 +00:00
|
|
|
sconn.writerCoder.encrypt(message.toOpenArray(offset, offset + chunkSize - 1),
|
|
|
|
msg.toOpenArray(4, 4 + chunkSize - 1))
|
|
|
|
left = left - chunkSize
|
|
|
|
offset = offset + chunkSize
|
|
|
|
let mo = 4 + chunkSize
|
|
|
|
sconn.writerMac.update(msg.toOpenArray(4, 4 + chunkSize - 1))
|
|
|
|
sconn.writerMac.finish(msg.toOpenArray(mo, mo + macsize - 1))
|
|
|
|
sconn.writerMac.reset()
|
2020-05-07 20:37:46 +00:00
|
|
|
|
2020-03-25 07:53:35 +00:00
|
|
|
trace "Writing message", message = msg.shortLog, left, offset
|
2020-05-07 20:37:46 +00:00
|
|
|
await sconn.stream.write(msg)
|
2019-09-13 17:20:37 +00:00
|
|
|
except AsyncStreamWriteError:
|
2019-11-06 18:25:33 +00:00
|
|
|
trace "Could not write to connection"
|
2019-09-13 17:20:37 +00:00
|
|
|
|
2020-02-25 05:06:57 +00:00
|
|
|
proc newSecioConn(conn: Connection,
|
|
|
|
hash: string,
|
|
|
|
cipher: string,
|
|
|
|
secrets: Secret,
|
|
|
|
order: int,
|
|
|
|
remotePubKey: PublicKey): SecioConn =
|
2019-09-13 17:20:37 +00:00
|
|
|
## Create new secure connection, using specified hash algorithm ``hash``,
|
|
|
|
## cipher algorithm ``cipher``, stretched keys ``secrets`` and order
|
|
|
|
## ``order``.
|
|
|
|
new result
|
2019-12-04 04:44:54 +00:00
|
|
|
|
|
|
|
result.stream = conn
|
|
|
|
result.closeEvent = newAsyncEvent()
|
|
|
|
|
2019-09-13 17:20:37 +00:00
|
|
|
let i0 = if order < 0: 1 else: 0
|
|
|
|
let i1 = if order < 0: 0 else: 1
|
|
|
|
|
2020-03-23 06:03:36 +00:00
|
|
|
trace "Writer credentials", mackey = secrets.macOpenArray(i0).shortLog,
|
|
|
|
enckey = secrets.keyOpenArray(i0).shortLog,
|
|
|
|
iv = secrets.ivOpenArray(i0).shortLog
|
|
|
|
trace "Reader credentials", mackey = secrets.macOpenArray(i1).shortLog,
|
|
|
|
enckey = secrets.keyOpenArray(i1).shortLog,
|
|
|
|
iv = secrets.ivOpenArray(i1).shortLog
|
2019-09-13 17:20:37 +00:00
|
|
|
result.writerMac.init(hash, secrets.macOpenArray(i0))
|
|
|
|
result.readerMac.init(hash, secrets.macOpenArray(i1))
|
|
|
|
result.writerCoder.init(cipher, secrets.keyOpenArray(i0),
|
|
|
|
secrets.ivOpenArray(i0))
|
|
|
|
result.readerCoder.init(cipher, secrets.keyOpenArray(i1),
|
|
|
|
secrets.ivOpenArray(i1))
|
2019-09-10 02:13:15 +00:00
|
|
|
|
2019-12-10 20:50:35 +00:00
|
|
|
result.peerInfo = PeerInfo.init(remotePubKey)
|
2020-04-14 13:21:16 +00:00
|
|
|
when chronicles.enabledLogLevel == LogLevel.TRACE:
|
|
|
|
result.oid = genOid()
|
2019-12-04 04:44:54 +00:00
|
|
|
|
2020-04-21 01:24:42 +00:00
|
|
|
inc getConnectionTracker().opened
|
|
|
|
|
2019-09-10 02:13:15 +00:00
|
|
|
proc transactMessage(conn: Connection,
|
|
|
|
msg: seq[byte]): Future[seq[byte]] {.async.} =
|
2020-05-07 20:37:46 +00:00
|
|
|
trace "Sending message", message = msg.shortLog, length = len(msg)
|
|
|
|
await conn.write(msg)
|
|
|
|
return await conn.readRawMessage()
|
2019-09-10 02:13:15 +00:00
|
|
|
|
2020-02-25 05:25:56 +00:00
|
|
|
method handshake*(s: Secio, conn: Connection, initiator: bool = false): Future[SecureConn] {.async.} =
|
2019-09-13 17:20:37 +00:00
|
|
|
var
|
|
|
|
localNonce: array[SecioNonceSize, byte]
|
|
|
|
remoteNonce: seq[byte]
|
|
|
|
remoteBytesPubkey: seq[byte]
|
|
|
|
remoteEBytesPubkey: seq[byte]
|
|
|
|
remoteEBytesSig: seq[byte]
|
|
|
|
remotePubkey: PublicKey
|
|
|
|
remoteEPubkey: PublicKey = PublicKey(scheme: ECDSA)
|
|
|
|
remoteESignature: Signature
|
|
|
|
remoteExchanges: string
|
|
|
|
remoteCiphers: string
|
|
|
|
remoteHashes: string
|
|
|
|
remotePeerId: PeerID
|
|
|
|
localPeerId: PeerID
|
2019-09-13 18:01:14 +00:00
|
|
|
localBytesPubkey = s.localPublicKey.getBytes()
|
2019-09-13 17:20:37 +00:00
|
|
|
|
|
|
|
if randomBytes(localNonce) != SecioNonceSize:
|
2020-05-07 20:37:46 +00:00
|
|
|
raise (ref SecioError)(msg: "Could not generate random data")
|
2019-09-06 06:51:46 +00:00
|
|
|
|
2019-12-10 20:50:35 +00:00
|
|
|
var request = createProposal(localNonce,
|
|
|
|
localBytesPubkey,
|
|
|
|
SecioExchanges,
|
|
|
|
SecioCiphers,
|
|
|
|
SecioHashes)
|
2019-09-10 02:13:15 +00:00
|
|
|
|
2019-09-13 18:01:14 +00:00
|
|
|
localPeerId = PeerID.init(s.localPublicKey)
|
2019-09-13 17:20:37 +00:00
|
|
|
|
2020-02-04 14:17:24 +00:00
|
|
|
trace "Local proposal", schemes = SecioExchanges,
|
|
|
|
ciphers = SecioCiphers,
|
2019-09-13 17:20:37 +00:00
|
|
|
hashes = SecioHashes,
|
2020-03-23 06:03:36 +00:00
|
|
|
pubkey = localBytesPubkey.shortLog,
|
2019-09-13 17:20:37 +00:00
|
|
|
peer = localPeerId
|
|
|
|
|
|
|
|
var answer = await transactMessage(conn, request)
|
2019-09-10 02:13:15 +00:00
|
|
|
|
|
|
|
if len(answer) == 0:
|
2020-02-04 14:17:24 +00:00
|
|
|
trace "Proposal exchange failed", conn = $conn
|
2020-05-07 20:37:46 +00:00
|
|
|
raise (ref SecioError)(msg: "Proposal exchange failed")
|
2019-09-13 17:20:37 +00:00
|
|
|
|
|
|
|
if not decodeProposal(answer, remoteNonce, remoteBytesPubkey, remoteExchanges,
|
|
|
|
remoteCiphers, remoteHashes):
|
2020-02-04 14:17:24 +00:00
|
|
|
trace "Remote proposal decoding failed", conn = $conn
|
2020-05-07 20:37:46 +00:00
|
|
|
raise (ref SecioError)(msg: "Remote proposal decoding failed")
|
2019-09-13 17:20:37 +00:00
|
|
|
|
|
|
|
if not remotePubkey.init(remoteBytesPubkey):
|
2020-03-23 06:03:36 +00:00
|
|
|
trace "Remote public key incorrect or corrupted", pubkey = remoteBytesPubkey.shortLog
|
2020-05-07 20:37:46 +00:00
|
|
|
raise (ref SecioError)(msg: "Remote public key incorrect or corrupted")
|
2019-09-13 17:20:37 +00:00
|
|
|
|
|
|
|
remotePeerId = PeerID.init(remotePubkey)
|
|
|
|
|
|
|
|
# TODO: PeerID check against supplied PeerID
|
|
|
|
let order = getOrder(remoteBytesPubkey, localNonce, localBytesPubkey,
|
|
|
|
remoteNonce)
|
2019-11-06 18:25:33 +00:00
|
|
|
trace "Remote proposal", schemes = remoteExchanges, ciphers = remoteCiphers,
|
2019-09-13 17:20:37 +00:00
|
|
|
hashes = remoteHashes,
|
2020-03-23 06:03:36 +00:00
|
|
|
pubkey = remoteBytesPubkey.shortLog, order = order,
|
2019-09-13 17:20:37 +00:00
|
|
|
peer = remotePeerId
|
|
|
|
|
|
|
|
let scheme = selectBest(order, SecioExchanges, remoteExchanges)
|
|
|
|
let cipher = selectBest(order, SecioCiphers, remoteCiphers)
|
|
|
|
let hash = selectBest(order, SecioHashes, remoteHashes)
|
|
|
|
if len(scheme) == 0 or len(cipher) == 0 or len(hash) == 0:
|
2019-11-06 18:25:33 +00:00
|
|
|
trace "No algorithms in common", peer = remotePeerId
|
2020-05-07 20:37:46 +00:00
|
|
|
raise (ref SecioError)(msg: "No algorithms in common")
|
2019-09-13 17:20:37 +00:00
|
|
|
|
2019-11-06 18:25:33 +00:00
|
|
|
trace "Encryption scheme selected", scheme = scheme, cipher = cipher,
|
2019-09-13 17:20:37 +00:00
|
|
|
hash = hash
|
|
|
|
|
|
|
|
var ekeypair = ephemeral(scheme)
|
|
|
|
# We need EC public key in raw binary form
|
|
|
|
var epubkey = ekeypair.pubkey.eckey.getRawBytes()
|
|
|
|
var localCorpus = request[4..^1] & answer & epubkey
|
2019-09-13 18:01:14 +00:00
|
|
|
var signature = s.localPrivateKey.sign(localCorpus)
|
2019-09-13 17:20:37 +00:00
|
|
|
|
|
|
|
var localExchange = createExchange(epubkey, signature.getBytes())
|
|
|
|
var remoteExchange = await transactMessage(conn, localExchange)
|
|
|
|
if len(remoteExchange) == 0:
|
2020-02-04 14:17:24 +00:00
|
|
|
trace "Corpus exchange failed", conn = $conn
|
2020-05-07 20:37:46 +00:00
|
|
|
raise (ref SecioError)(msg: "Corpus exchange failed")
|
2019-09-13 17:20:37 +00:00
|
|
|
|
|
|
|
if not decodeExchange(remoteExchange, remoteEBytesPubkey, remoteEBytesSig):
|
2020-02-04 14:17:24 +00:00
|
|
|
trace "Remote exchange decoding failed", conn = $conn
|
2020-05-07 20:37:46 +00:00
|
|
|
raise (ref SecioError)(msg: "Remote exchange decoding failed")
|
2019-09-06 06:51:46 +00:00
|
|
|
|
2019-09-13 17:20:37 +00:00
|
|
|
if not remoteESignature.init(remoteEBytesSig):
|
2020-03-23 06:03:36 +00:00
|
|
|
trace "Remote signature incorrect or corrupted", signature = remoteEBytesSig.shortLog
|
2020-05-07 20:37:46 +00:00
|
|
|
raise (ref SecioError)(msg: "Remote signature incorrect or corrupted")
|
2019-09-13 17:20:37 +00:00
|
|
|
|
|
|
|
var remoteCorpus = answer & request[4..^1] & remoteEBytesPubkey
|
|
|
|
if not remoteESignature.verify(remoteCorpus, remotePubkey):
|
2020-02-04 14:17:24 +00:00
|
|
|
trace "Signature verification failed", scheme = $remotePubkey.scheme,
|
|
|
|
signature = $remoteESignature,
|
|
|
|
pubkey = $remotePubkey,
|
|
|
|
corpus = $remoteCorpus
|
2020-05-07 20:37:46 +00:00
|
|
|
raise (ref SecioError)(msg: "Signature verification failed")
|
2019-09-13 17:20:37 +00:00
|
|
|
|
2019-11-06 18:25:33 +00:00
|
|
|
trace "Signature verified", scheme = remotePubkey.scheme
|
2019-09-13 17:20:37 +00:00
|
|
|
|
|
|
|
if not remoteEPubkey.eckey.initRaw(remoteEBytesPubkey):
|
2019-11-06 18:25:33 +00:00
|
|
|
trace "Remote ephemeral public key incorrect or corrupted",
|
2019-09-13 17:20:37 +00:00
|
|
|
pubkey = toHex(remoteEBytesPubkey)
|
2020-05-07 20:37:46 +00:00
|
|
|
raise (ref SecioError)(msg: "Remote ephemeral public key incorrect or corrupted")
|
2019-09-13 17:20:37 +00:00
|
|
|
|
|
|
|
var secret = getSecret(remoteEPubkey, ekeypair.seckey)
|
|
|
|
if len(secret) == 0:
|
|
|
|
trace "Shared secret could not be created",
|
|
|
|
pubkeyScheme = remoteEPubkey.scheme,
|
|
|
|
seckeyScheme = ekeypair.seckey.scheme
|
2020-05-07 20:37:46 +00:00
|
|
|
raise (ref SecioError)(msg: "Shared secret could not be created")
|
2019-09-13 17:20:37 +00:00
|
|
|
|
2020-03-23 06:03:36 +00:00
|
|
|
trace "Shared secret calculated", secret = secret.shortLog
|
2019-09-13 17:20:37 +00:00
|
|
|
|
|
|
|
var keys = stretchKeys(cipher, hash, secret)
|
|
|
|
|
|
|
|
trace "Authenticated encryption parameters",
|
2020-03-23 06:03:36 +00:00
|
|
|
iv0 = toHex(keys.ivOpenArray(0)), key0 = keys.keyOpenArray(0).shortLog,
|
|
|
|
mac0 = keys.macOpenArray(0).shortLog,
|
|
|
|
iv1 = keys.ivOpenArray(1).shortLog, key1 = keys.keyOpenArray(1).shortLog,
|
|
|
|
mac1 = keys.macOpenArray(1).shortLog
|
2019-09-13 17:20:37 +00:00
|
|
|
|
|
|
|
# Perform Nonce exchange over encrypted channel.
|
|
|
|
|
2020-02-25 05:06:57 +00:00
|
|
|
var secioConn = newSecioConn(conn, hash, cipher, keys, order, remotePubkey)
|
|
|
|
result = secioConn
|
2020-05-07 20:37:46 +00:00
|
|
|
await secioConn.write(remoteNonce)
|
2020-02-25 05:06:57 +00:00
|
|
|
var res = await secioConn.readMessage()
|
2019-09-13 17:20:37 +00:00
|
|
|
|
|
|
|
if res != @localNonce:
|
2020-03-23 06:03:36 +00:00
|
|
|
trace "Nonce verification failed", receivedNonce = res.shortLog,
|
|
|
|
localNonce = localNonce.shortLog
|
2020-05-07 20:37:46 +00:00
|
|
|
raise (ref SecioError)(msg: "Nonce verification failed")
|
2019-09-13 17:20:37 +00:00
|
|
|
else:
|
2019-11-06 18:25:33 +00:00
|
|
|
trace "Secure handshake succeeded"
|
2019-09-13 17:20:37 +00:00
|
|
|
|
2019-09-13 18:01:14 +00:00
|
|
|
method init(s: Secio) {.gcsafe.} =
|
2020-02-25 05:06:57 +00:00
|
|
|
procCall Secure(s).init()
|
2019-09-13 18:01:14 +00:00
|
|
|
s.codec = SecioCodec
|
2019-09-06 06:51:46 +00:00
|
|
|
|
2019-09-13 17:20:37 +00:00
|
|
|
proc newSecio*(localPrivateKey: PrivateKey): Secio =
|
2019-09-06 06:51:46 +00:00
|
|
|
new result
|
2019-09-13 17:20:37 +00:00
|
|
|
result.localPrivateKey = localPrivateKey
|
|
|
|
result.localPublicKey = localPrivateKey.getKey()
|
2019-09-06 06:51:46 +00:00
|
|
|
result.init()
|