mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-03 23:15:52 +00:00
d425b5d308
(with its now-obsolete distinction between socketfd and fd) sockets and file descriptors used to be distinct objects....back in the 16-bit Winsock 1.1 era, which needlessly complicated the 32-bit port back then. these days one can use [Read|Write]File(2) to operate on sockfds...which also have some of the semantics of [read|write]v(2) i.e. the scatter-gather thing it's known for is done in async handler -rick variants are nice added note to self clang-format link abyss properly oops shut up *shrugs* oops forgot to start winsock moved our async io status flags to the base class let derived classes override them as needed this is probably a synchronous op _anyway_ fix typo wtf
158 lines
3.6 KiB
C++
158 lines
3.6 KiB
C++
#include <llarp/crypto.hpp>
|
|
#include <llarp/encrypted_frame.hpp>
|
|
#include "logger.hpp"
|
|
#include "mem.hpp"
|
|
|
|
namespace llarp
|
|
{
|
|
Encrypted::Encrypted()
|
|
{
|
|
UpdateBuffer();
|
|
}
|
|
|
|
Encrypted::Encrypted(const Encrypted& other)
|
|
: Encrypted(other.data(), other.size())
|
|
{
|
|
}
|
|
|
|
Encrypted::Encrypted(const byte_t* buf, size_t sz) : _data(sz)
|
|
{
|
|
if(buf)
|
|
memcpy(data(), buf, sz);
|
|
else
|
|
llarp::Zero(data(), sz);
|
|
UpdateBuffer();
|
|
}
|
|
|
|
Encrypted::~Encrypted()
|
|
{
|
|
}
|
|
|
|
Encrypted::Encrypted(size_t sz) : Encrypted(nullptr, sz)
|
|
{
|
|
}
|
|
|
|
bool
|
|
EncryptedFrame::EncryptInPlace(const byte_t* ourSecretKey,
|
|
const byte_t* otherPubkey,
|
|
llarp_crypto* crypto)
|
|
{
|
|
// format of frame is
|
|
// <32 bytes keyed hash of following data>
|
|
// <32 bytes nonce>
|
|
// <32 bytes pubkey>
|
|
// <N bytes encrypted payload>
|
|
//
|
|
byte_t* hash = data();
|
|
byte_t* nonce = hash + SHORTHASHSIZE;
|
|
byte_t* pubkey = nonce + TUNNONCESIZE;
|
|
byte_t* body = pubkey + PUBKEYSIZE;
|
|
|
|
SharedSecret shared;
|
|
|
|
auto DH = crypto->dh_client;
|
|
auto Encrypt = crypto->xchacha20;
|
|
auto MDS = crypto->hmac;
|
|
|
|
llarp_buffer_t buf;
|
|
buf.base = body;
|
|
buf.cur = buf.base;
|
|
buf.sz = size() - EncryptedFrame::OverheadSize;
|
|
|
|
// set our pubkey
|
|
memcpy(pubkey, llarp::seckey_topublic(ourSecretKey), PUBKEYSIZE);
|
|
// randomize nonce
|
|
crypto->randbytes(nonce, TUNNONCESIZE);
|
|
|
|
// derive shared key
|
|
if(!DH(shared, otherPubkey, ourSecretKey, nonce))
|
|
{
|
|
llarp::LogError("DH failed");
|
|
return false;
|
|
}
|
|
|
|
// encrypt body
|
|
if(!Encrypt(buf, shared, nonce))
|
|
{
|
|
llarp::LogError("encrypt failed");
|
|
return false;
|
|
}
|
|
|
|
// generate message auth
|
|
buf.base = nonce;
|
|
buf.cur = buf.base;
|
|
buf.sz = size() - SHORTHASHSIZE;
|
|
|
|
if(!MDS(hash, buf, shared))
|
|
{
|
|
llarp::LogError("Failed to generate messgae auth");
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
bool
|
|
EncryptedFrame::DecryptInPlace(const byte_t* ourSecretKey,
|
|
llarp_crypto* crypto)
|
|
{
|
|
if(size() <= size_t(EncryptedFrame::OverheadSize))
|
|
{
|
|
llarp::LogWarn("encrypted frame too small, ", size(),
|
|
" <= ", size_t(EncryptedFrame::OverheadSize));
|
|
return false;
|
|
}
|
|
// format of frame is
|
|
// <32 bytes keyed hash of following data>
|
|
// <32 bytes nonce>
|
|
// <32 bytes pubkey>
|
|
// <N bytes encrypted payload>
|
|
//
|
|
byte_t* hash = data();
|
|
byte_t* nonce = hash + SHORTHASHSIZE;
|
|
byte_t* otherPubkey = nonce + TUNNONCESIZE;
|
|
byte_t* body = otherPubkey + PUBKEYSIZE;
|
|
|
|
// use dh_server becuase we are not the creator of this message
|
|
auto DH = crypto->dh_server;
|
|
auto Decrypt = crypto->xchacha20;
|
|
auto MDS = crypto->hmac;
|
|
|
|
llarp_buffer_t buf;
|
|
buf.base = nonce;
|
|
buf.cur = buf.base;
|
|
buf.sz = size() - SHORTHASHSIZE;
|
|
|
|
SharedSecret shared;
|
|
ShortHash digest;
|
|
|
|
if(!DH(shared, otherPubkey, ourSecretKey, nonce))
|
|
{
|
|
llarp::LogError("DH failed");
|
|
return false;
|
|
}
|
|
|
|
if(!MDS(digest, buf, shared))
|
|
{
|
|
llarp::LogError("Digest failed");
|
|
return false;
|
|
}
|
|
|
|
if(memcmp(digest, hash, digest.size()))
|
|
{
|
|
llarp::LogError("message authentication failed");
|
|
return false;
|
|
}
|
|
|
|
buf.base = body;
|
|
buf.cur = body;
|
|
buf.sz = size() - EncryptedFrame::OverheadSize;
|
|
|
|
if(!Decrypt(buf, shared, nonce))
|
|
{
|
|
llarp::LogError("decrypt failed");
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
} // namespace llarp
|