2019-04-22 18:35:19 +00:00
|
|
|
#include <service/identity.hpp>
|
2019-01-11 00:12:43 +00:00
|
|
|
|
2019-05-28 19:45:08 +00:00
|
|
|
#include <crypto/crypto.hpp>
|
2019-01-11 00:12:43 +00:00
|
|
|
#include <util/fs.hpp>
|
2020-01-27 21:30:41 +00:00
|
|
|
#include <sodium/crypto_sign_ed25519.h>
|
2019-01-11 00:12:43 +00:00
|
|
|
|
|
|
|
namespace llarp
|
|
|
|
{
|
|
|
|
namespace service
|
|
|
|
{
|
|
|
|
bool
|
|
|
|
Identity::BEncode(llarp_buffer_t* buf) const
|
|
|
|
{
|
|
|
|
if(!bencode_start_dict(buf))
|
|
|
|
return false;
|
|
|
|
if(!BEncodeWriteDictEntry("e", enckey, buf))
|
|
|
|
return false;
|
|
|
|
if(!BEncodeWriteDictEntry("q", pq, buf))
|
|
|
|
return false;
|
|
|
|
if(!BEncodeWriteDictEntry("s", signkey, buf))
|
|
|
|
return false;
|
|
|
|
if(!BEncodeWriteDictInt("v", version, buf))
|
|
|
|
return false;
|
|
|
|
if(!BEncodeWriteDictEntry("x", vanity, buf))
|
|
|
|
return false;
|
|
|
|
return bencode_end(buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2019-02-01 01:58:06 +00:00
|
|
|
Identity::DecodeKey(const llarp_buffer_t& key, llarp_buffer_t* buf)
|
2019-01-11 00:12:43 +00:00
|
|
|
{
|
|
|
|
bool read = false;
|
|
|
|
if(!BEncodeMaybeReadDictEntry("e", enckey, read, key, buf))
|
|
|
|
return false;
|
2019-02-17 12:13:34 +00:00
|
|
|
if(key == "q")
|
2019-01-11 00:12:43 +00:00
|
|
|
{
|
|
|
|
llarp_buffer_t str;
|
|
|
|
if(!bencode_read_string(buf, &str))
|
|
|
|
return false;
|
|
|
|
if(str.sz == 3200 || str.sz == 2818)
|
|
|
|
{
|
|
|
|
pq = str.base;
|
|
|
|
return true;
|
|
|
|
}
|
2019-07-06 17:03:40 +00:00
|
|
|
|
|
|
|
return false;
|
2019-01-11 00:12:43 +00:00
|
|
|
}
|
|
|
|
if(!BEncodeMaybeReadDictEntry("s", signkey, read, key, buf))
|
|
|
|
return false;
|
|
|
|
if(!BEncodeMaybeReadDictInt("v", version, read, key, buf))
|
|
|
|
return false;
|
|
|
|
if(!BEncodeMaybeReadDictEntry("x", vanity, read, key, buf))
|
|
|
|
return false;
|
|
|
|
return read;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2019-05-28 19:45:08 +00:00
|
|
|
Identity::RegenerateKeys()
|
2019-01-11 00:12:43 +00:00
|
|
|
{
|
2019-05-28 19:45:08 +00:00
|
|
|
auto crypto = CryptoManager::instance();
|
2019-01-11 00:12:43 +00:00
|
|
|
crypto->identity_keygen(signkey);
|
2020-02-03 22:20:56 +00:00
|
|
|
crypto->encryption_keygen(enckey);
|
|
|
|
pub.Update(seckey_topublic(signkey), seckey_topublic(enckey));
|
2019-01-11 00:12:43 +00:00
|
|
|
crypto->pqe_keygen(pq);
|
2020-01-30 16:34:05 +00:00
|
|
|
if(not crypto->derive_subkey_private(derivedSignKey, signkey, 1))
|
2020-01-28 21:55:36 +00:00
|
|
|
{
|
|
|
|
LogError("failed to generate derived key");
|
|
|
|
}
|
2019-01-11 00:12:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
Identity::KeyExchange(path_dh_func dh, SharedSecret& result,
|
|
|
|
const ServiceInfo& other,
|
|
|
|
const KeyExchangeNonce& N) const
|
|
|
|
{
|
|
|
|
return dh(result, other.EncryptionPublicKey(), enckey, N);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2019-05-28 19:45:08 +00:00
|
|
|
Identity::Sign(Signature& sig, const llarp_buffer_t& buf) const
|
2019-01-11 00:12:43 +00:00
|
|
|
{
|
2019-05-28 19:45:08 +00:00
|
|
|
return CryptoManager::instance()->sign(sig, signkey, buf);
|
2019-01-11 00:12:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2019-12-06 18:21:14 +00:00
|
|
|
Identity::EnsureKeys(const std::string& fname, bool needBackup)
|
2019-01-11 00:12:43 +00:00
|
|
|
{
|
2019-02-02 23:12:42 +00:00
|
|
|
std::array< byte_t, 4096 > tmp;
|
|
|
|
llarp_buffer_t buf(tmp);
|
2019-01-11 00:12:43 +00:00
|
|
|
std::error_code ec;
|
2019-12-06 18:21:14 +00:00
|
|
|
|
|
|
|
bool exists = fs::exists(fname, ec);
|
|
|
|
if(ec)
|
|
|
|
{
|
2019-12-12 15:46:30 +00:00
|
|
|
LogError("Could not query file status for ", fname, ": ", ec.message());
|
2019-12-06 18:21:14 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(exists and needBackup)
|
|
|
|
{
|
|
|
|
KeyManager::backupFileByMoving(fname);
|
|
|
|
exists = false;
|
|
|
|
}
|
|
|
|
|
2019-01-11 00:12:43 +00:00
|
|
|
// check for file
|
2019-12-06 18:21:14 +00:00
|
|
|
if(!exists)
|
2019-01-11 00:12:43 +00:00
|
|
|
{
|
|
|
|
// regen and encode
|
2019-05-28 19:45:08 +00:00
|
|
|
RegenerateKeys();
|
2019-01-11 00:12:43 +00:00
|
|
|
if(!BEncode(&buf))
|
|
|
|
return false;
|
|
|
|
// rewind
|
|
|
|
buf.sz = buf.cur - buf.base;
|
|
|
|
buf.cur = buf.base;
|
|
|
|
// write
|
2019-06-24 16:39:03 +00:00
|
|
|
auto optional_f =
|
|
|
|
util::OpenFileStream< std::ofstream >(fname, std::ios::binary);
|
|
|
|
if(!optional_f)
|
|
|
|
return false;
|
|
|
|
auto& f = optional_f.value();
|
2019-01-11 00:12:43 +00:00
|
|
|
if(!f.is_open())
|
|
|
|
return false;
|
|
|
|
f.write((char*)buf.cur, buf.sz);
|
|
|
|
}
|
2019-05-18 17:34:07 +00:00
|
|
|
|
|
|
|
if(!fs::is_regular_file(fname))
|
|
|
|
{
|
|
|
|
LogError("keyfile ", fname, " is not a regular file");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-01-11 00:12:43 +00:00
|
|
|
// read file
|
|
|
|
std::ifstream inf(fname, std::ios::binary);
|
|
|
|
inf.seekg(0, std::ios::end);
|
|
|
|
size_t sz = inf.tellg();
|
|
|
|
inf.seekg(0, std::ios::beg);
|
|
|
|
|
|
|
|
if(sz > sizeof(tmp))
|
|
|
|
return false;
|
|
|
|
// decode
|
|
|
|
inf.read((char*)buf.base, sz);
|
2019-05-24 02:01:36 +00:00
|
|
|
if(!bencode_decode_dict(*this, &buf))
|
2019-01-11 00:12:43 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
ServiceInfo::OptNonce van;
|
|
|
|
if(!vanity.IsZero())
|
|
|
|
van = vanity;
|
|
|
|
// update pubkeys
|
2020-02-03 22:20:56 +00:00
|
|
|
pub.Update(seckey_topublic(signkey), seckey_topublic(enckey), van);
|
2020-01-27 21:30:41 +00:00
|
|
|
auto crypto = CryptoManager::instance();
|
2020-01-30 16:34:05 +00:00
|
|
|
return crypto->derive_subkey_private(derivedSignKey, signkey, 1);
|
2019-01-11 00:12:43 +00:00
|
|
|
}
|
|
|
|
|
2020-01-27 21:30:41 +00:00
|
|
|
absl::optional< EncryptedIntroSet >
|
|
|
|
Identity::EncryptAndSignIntroSet(const IntroSet& other_i,
|
|
|
|
llarp_time_t now) const
|
2019-01-11 00:12:43 +00:00
|
|
|
{
|
2020-01-27 21:30:41 +00:00
|
|
|
EncryptedIntroSet encrypted;
|
|
|
|
|
|
|
|
if(other_i.I.size() == 0)
|
|
|
|
return {};
|
|
|
|
IntroSet i(other_i);
|
|
|
|
encrypted.nounce.Randomize();
|
2019-01-11 00:12:43 +00:00
|
|
|
// set timestamp
|
|
|
|
// TODO: round to nearest 1000 ms
|
2020-01-27 21:30:41 +00:00
|
|
|
i.T = now;
|
|
|
|
encrypted.signedAt = now;
|
2019-01-11 00:12:43 +00:00
|
|
|
// set service info
|
|
|
|
i.A = pub;
|
|
|
|
// set public encryption key
|
|
|
|
i.K = pq_keypair_to_public(pq);
|
2019-02-02 23:12:42 +00:00
|
|
|
std::array< byte_t, MAX_INTROSET_SIZE > tmp;
|
|
|
|
llarp_buffer_t buf(tmp);
|
2020-01-27 21:30:41 +00:00
|
|
|
if(not i.BEncode(&buf))
|
|
|
|
return {};
|
2019-01-11 00:12:43 +00:00
|
|
|
// rewind and resize buffer
|
|
|
|
buf.sz = buf.cur - buf.base;
|
|
|
|
buf.cur = buf.base;
|
2020-01-27 21:30:41 +00:00
|
|
|
const SharedSecret k(i.A.Addr());
|
|
|
|
CryptoManager::instance()->xchacha20(buf, k, encrypted.nounce);
|
2020-01-28 21:55:36 +00:00
|
|
|
encrypted.introsetPayload.resize(buf.sz);
|
2020-01-27 21:30:41 +00:00
|
|
|
std::copy_n(buf.base, buf.sz, encrypted.introsetPayload.data());
|
|
|
|
if(not encrypted.Sign(derivedSignKey))
|
|
|
|
return {};
|
|
|
|
return encrypted;
|
2019-01-11 00:12:43 +00:00
|
|
|
}
|
|
|
|
} // namespace service
|
|
|
|
} // namespace llarp
|