nim-libp2p-experimental/libp2p/protocols/secure/secio.nim

442 lines
16 KiB
Nim
Raw Normal View History

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.
2019-09-13 17:20:37 +00:00
import chronos, chronicles
import nimcrypto/[sysrand, hmac, sha2, sha, hash, rijndael, twofish, bcmode]
import secure,
../../connection,
../../crypto/crypto,
2019-09-13 17:20:37 +00:00
../../crypto/ecnist,
../../protobuf/minprotobuf,
../../peer,
2019-09-13 18:01:14 +00:00
../../stream/bufferstream
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]
2019-09-13 18:01:14 +00:00
SecureConnection* = ref object of Connection
conn*: Connection
2019-09-13 17:20:37 +00:00
writerMac: SecureMac
readerMac: SecureMac
writerCoder: SecureCipher
readerCoder: SecureCipher
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)
proc macCheckAndDecode(sconn: SecureConnection, data: var seq[byte]): bool =
## 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
proc readMessage*(sconn: SecureConnection): Future[seq[byte]] {.async.} =
## Read message from channel secure connection ``sconn``.
try:
var buf = newSeq[byte](4)
await sconn.conn.readExactly(addr buf[0], 4)
let length = (int(buf[0]) shl 24) or (int(buf[1]) shl 16) or
(int(buf[2]) shl 8) or (int(buf[3]))
trace "Recieved message header", header = toHex(buf), length = length
if length <= SecioMaxMessageSize:
buf.setLen(length)
await sconn.conn.readExactly(addr buf[0], length)
trace "Received message body", length = length,
buffer = toHex(buf)
if sconn.macCheckAndDecode(buf):
result = buf
else:
trace "Message MAC verification failed", buf = toHex(buf)
2019-09-13 17:20:37 +00:00
else:
trace "Received message header size is more then allowed",
2019-09-13 17:20:37 +00:00
length = length, allowed_length = SecioMaxMessageSize
except AsyncStreamIncompleteError:
trace "Connection dropped while reading"
2019-09-13 17:20:37 +00:00
except AsyncStreamReadError:
trace "Error reading from connection"
2019-09-13 17:20:37 +00:00
proc writeMessage*(sconn: SecureConnection, message: seq[byte]) {.async.} =
## Write message ``message`` to secure connection ``sconn``.
let macsize = sconn.writerMac.sizeDigest()
var msg = newSeq[byte](len(message) + 4 + macsize)
sconn.writerCoder.encrypt(message, msg.toOpenArray(4, 4 + len(message) - 1))
let mo = 4 + len(message)
sconn.writerMac.update(msg.toOpenArray(4, 4 + len(message) - 1))
sconn.writerMac.finish(msg.toOpenArray(mo, mo + macsize - 1))
sconn.writerMac.reset()
let length = len(message) + macsize
msg[0] = byte((length shr 24) and 0xFF)
msg[1] = byte((length shr 16) and 0xFF)
msg[2] = byte((length shr 8) and 0xFF)
2019-09-13 17:20:37 +00:00
msg[3] = byte(length and 0xFF)
trace "Writing message", message = toHex(msg)
try:
2019-09-13 18:01:14 +00:00
await sconn.conn.write(msg)
2019-09-13 17:20:37 +00:00
except AsyncStreamWriteError:
trace "Could not write to connection"
2019-09-13 17:20:37 +00:00
proc newSecureConnection*(conn: Connection, hash: string, cipher: string,
secrets: Secret,
order: int): SecureConnection =
## Create new secure connection, using specified hash algorithm ``hash``,
## cipher algorithm ``cipher``, stretched keys ``secrets`` and order
## ``order``.
new result
let i0 = if order < 0: 1 else: 0
let i1 = if order < 0: 0 else: 1
result.conn = conn
trace "Writer credentials", mackey = toHex(secrets.macOpenArray(i0)),
enckey = toHex(secrets.keyOpenArray(i0)),
iv = toHex(secrets.ivOpenArray(i0))
trace "Reader credentials", mackey = toHex(secrets.macOpenArray(i1)),
enckey = toHex(secrets.keyOpenArray(i1)),
iv = toHex(secrets.ivOpenArray(i1))
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
proc transactMessage(conn: Connection,
msg: seq[byte]): Future[seq[byte]] {.async.} =
var buf = newSeq[byte](4)
try:
2019-09-13 17:20:37 +00:00
trace "Sending message", message = toHex(msg), length = len(msg)
2019-09-10 02:13:15 +00:00
await conn.write(msg)
await conn.readExactly(addr buf[0], 4)
let length = (int(buf[0]) shl 24) or (int(buf[1]) shl 16) or
(int(buf[2]) shl 8) or (int(buf[3]))
2019-09-13 17:20:37 +00:00
trace "Recieved message header", header = toHex(buf), length = length
2019-09-10 02:13:15 +00:00
if length <= SecioMaxMessageSize:
buf.setLen(length)
await conn.readExactly(addr buf[0], length)
2019-09-13 17:20:37 +00:00
trace "Received message body", conn = conn, length = length
2019-09-10 02:13:15 +00:00
result = buf
else:
2019-09-13 17:20:37 +00:00
trace "Received size of message exceed limits", conn = conn,
2019-09-10 02:13:15 +00:00
length = length
except AsyncStreamIncompleteError:
2019-09-13 17:20:37 +00:00
trace "Connection dropped while reading", conn = conn
2019-09-10 02:13:15 +00:00
except AsyncStreamReadError:
2019-09-13 17:20:37 +00:00
trace "Error reading from connection", conn = conn
2019-09-10 02:13:15 +00:00
except AsyncStreamWriteError:
2019-09-13 17:20:37 +00:00
trace "Could not write to connection", conn = conn
2019-09-10 02:13:15 +00:00
2019-09-13 18:01:14 +00:00
proc handshake*(s: Secio, conn: Connection): Future[SecureConnection] {.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
ekey: PrivateKey
2019-09-13 18:01:14 +00:00
localBytesPubkey = s.localPublicKey.getBytes()
2019-09-13 17:20:37 +00:00
if randomBytes(localNonce) != SecioNonceSize:
2019-09-10 02:13:15 +00:00
raise newException(CatchableError, "Could not generate random data")
2019-09-06 06:51:46 +00:00
2019-09-13 17:20:37 +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
trace "Local proposal", schemes = SecioExchanges, ciphers = SecioCiphers,
2019-09-13 17:20:37 +00:00
hashes = SecioHashes,
pubkey = toHex(localBytesPubkey),
peer = localPeerId
var answer = await transactMessage(conn, request)
2019-09-10 02:13:15 +00:00
if len(answer) == 0:
2019-09-13 17:20:37 +00:00
trace "Proposal exchange failed", conn = conn
return
if not decodeProposal(answer, remoteNonce, remoteBytesPubkey, remoteExchanges,
remoteCiphers, remoteHashes):
trace "Remote proposal decoding failed", conn = conn
return
if not remotePubkey.init(remoteBytesPubkey):
trace "Remote public key incorrect or corrupted", pubkey = remoteBytesPubkey
return
remotePeerId = PeerID.init(remotePubkey)
# TODO: PeerID check against supplied PeerID
let order = getOrder(remoteBytesPubkey, localNonce, localBytesPubkey,
remoteNonce)
trace "Remote proposal", schemes = remoteExchanges, ciphers = remoteCiphers,
2019-09-13 17:20:37 +00:00
hashes = remoteHashes,
pubkey = toHex(remoteBytesPubkey), order = order,
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:
trace "No algorithms in common", peer = remotePeerId
2019-09-13 17:20:37 +00:00
return
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:
trace "Corpus exchange failed", conn = conn
return
if not decodeExchange(remoteExchange, remoteEBytesPubkey, remoteEBytesSig):
trace "Remote exchange decoding failed", conn = conn
2019-09-10 02:13:15 +00:00
return
2019-09-06 06:51:46 +00:00
2019-09-13 17:20:37 +00:00
if not remoteESignature.init(remoteEBytesSig):
trace "Remote signature incorrect or corrupted",
signature = toHex(remoteEBytesSig)
return
var remoteCorpus = answer & request[4..^1] & remoteEBytesPubkey
if not remoteESignature.verify(remoteCorpus, remotePubkey):
trace "Signature verification failed", scheme = remotePubkey.scheme,
2019-09-13 17:20:37 +00:00
signature = remoteESignature, pubkey = remotePubkey,
corpus = remoteCorpus
return
trace "Signature verified", scheme = remotePubkey.scheme
2019-09-13 17:20:37 +00:00
if not remoteEPubkey.eckey.initRaw(remoteEBytesPubkey):
trace "Remote ephemeral public key incorrect or corrupted",
2019-09-13 17:20:37 +00:00
pubkey = toHex(remoteEBytesPubkey)
return
var secret = getSecret(remoteEPubkey, ekeypair.seckey)
if len(secret) == 0:
trace "Shared secret could not be created",
pubkeyScheme = remoteEPubkey.scheme,
seckeyScheme = ekeypair.seckey.scheme
return
trace "Shared secret calculated", secret = toHex(secret)
var keys = stretchKeys(cipher, hash, secret)
trace "Authenticated encryption parameters",
iv0 = toHex(keys.ivOpenArray(0)), key0 = toHex(keys.keyOpenArray(0)),
mac0 = toHex(keys.macOpenArray(0)),
iv1 = toHex(keys.ivOpenArray(1)), key1 = toHex(keys.keyOpenArray(1)),
mac1 = toHex(keys.macOpenArray(1))
# Perform Nonce exchange over encrypted channel.
2019-09-13 18:01:14 +00:00
result = newSecureConnection(conn, hash, cipher, keys, order)
await result.writeMessage(remoteNonce)
var res = await result.readMessage()
2019-09-13 17:20:37 +00:00
if res != @localNonce:
trace "Nonce verification failed", receivedNonce = toHex(res),
2019-09-13 17:20:37 +00:00
localNonce = toHex(localNonce)
2019-09-13 18:01:14 +00:00
raise newException(CatchableError, "Nonce verification failed")
2019-09-13 17:20:37 +00:00
else:
trace "Secure handshake succeeded"
2019-09-13 17:20:37 +00:00
2019-09-14 13:55:52 +00:00
proc readLoop(sconn: SecureConnection, stream: BufferStream) {.async.} =
while not sconn.conn.closed:
try:
let msg = await sconn.readMessage()
await stream.pushTo(msg)
2019-12-02 23:24:35 +00:00
except CatchableError as exc:
2019-11-29 19:46:52 +00:00
trace "exception in secio", exc = exc.msg
return
finally:
trace "ending secio readLoop"
2019-09-14 13:55:52 +00:00
2019-09-13 18:01:14 +00:00
proc handleConn(s: Secio, conn: Connection): Future[Connection] {.async.} =
var sconn = await s.handshake(conn)
proc writeHandler(data: seq[byte]) {.async, gcsafe.} =
trace "sending encrypted bytes", bytes = data.toHex()
2019-09-13 18:01:14 +00:00
await sconn.writeMessage(data)
2019-09-13 18:01:14 +00:00
var stream = newBufferStream(writeHandler)
2019-09-14 13:55:52 +00:00
asyncCheck readLoop(sconn, stream)
2019-09-14 15:55:58 +00:00
var secured = newConnection(stream)
secured.peerInfo = sconn.conn.peerInfo
result = secured
2019-09-13 18:01:14 +00:00
method init(s: Secio) {.gcsafe.} =
2019-09-13 17:20:37 +00:00
proc handle(conn: Connection, proto: string) {.async, gcsafe.} =
trace "handling connection"
2019-09-14 13:55:52 +00:00
discard await s.handleConn(conn)
trace "connection secured"
2019-09-06 06:51:46 +00:00
2019-09-13 18:01:14 +00:00
s.codec = SecioCodec
s.handler = handle
2019-09-06 06:51:46 +00:00
2019-09-13 18:01:14 +00:00
method secure*(s: Secio, conn: Connection): Future[Connection] {.gcsafe.} =
result = s.handleConn(conn)
2019-09-10 02:13:15 +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()