You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lokinet/llarp/router_contact.cpp

349 lines
8.0 KiB
C++

#include <bencode.hpp>
#include <buffer.hpp>
#include <crypto.hpp>
#include <logger.hpp>
#include <mem.hpp>
#include <net.hpp>
#include <router_contact.hpp>
#include <time.hpp>
#include <version.hpp>
6 years ago
#include <fstream>
namespace llarp
{
const byte_t *NetID::DefaultValue = (const byte_t *)LLARP_NET_ID;
bool RouterContact::IgnoreBogons = false;
#ifdef TESTNET
// 1 minute for testnet
llarp_time_t RouterContact::Lifetime = 60 * 1000;
#else
6 years ago
/// 1 day for real network
llarp_time_t RouterContact::Lifetime = 24 * 60 * 60 * 1000;
#endif
5 years ago
NetID::NetID() : AlignedBuffer< 8 >()
{
5 years ago
memcpy(data(), DefaultValue, strnlen((const char *)DefaultValue, size()));
}
bool
NetID::operator==(const NetID &other) const
{
5 years ago
return ToString() == other.ToString();
}
std::string
NetID::ToString() const
{
size_t l = strnlen((const char *)data(), size());
return std::string((const char *)data(), l);
}
bool
NetID::BDecode(llarp_buffer_t *buf)
{
Zero();
llarp_buffer_t strbuf;
if(!bencode_read_string(buf, &strbuf))
return false;
5 years ago
if(strbuf.sz > size())
return false;
memcpy(data(), strbuf.base, strbuf.sz);
return true;
}
bool
NetID::BEncode(llarp_buffer_t *buf) const
{
size_t l = strnlen((const char *)data(), size());
return bencode_write_bytestring(buf, data(), l);
}
bool
RouterContact::BEncode(llarp_buffer_t *buf) const
6 years ago
{
/* write dict begin */
if(!bencode_start_dict(buf))
return false;
/* write ai if they exist */
if(!bencode_write_bytestring(buf, "a", 1))
6 years ago
return false;
if(!BEncodeWriteList(addrs.begin(), addrs.end(), buf))
6 years ago
return false;
/* write netid */
if(!bencode_write_bytestring(buf, "i", 1))
return false;
if(!netID.BEncode(buf))
return false;
/* write signing pubkey */
if(!bencode_write_bytestring(buf, "k", 1))
return false;
if(!pubkey.BEncode(buf))
6 years ago
return false;
std::string nick = Nick();
if(nick.size())
{
/* write nickname */
if(!bencode_write_bytestring(buf, "n", 1))
return false;
if(!bencode_write_bytestring(buf, nick.c_str(), nick.size()))
return false;
}
6 years ago
/* write encryption pubkey */
if(!bencode_write_bytestring(buf, "p", 1))
6 years ago
return false;
if(!enckey.BEncode(buf))
6 years ago
return false;
/* write last updated */
if(!bencode_write_bytestring(buf, "t", 1))
return false;
if(!bencode_write_uint64(buf, last_updated))
return false;
6 years ago
/* write version */
if(!bencode_write_version_entry(buf))
return false;
/* write xi if they exist */
if(!bencode_write_bytestring(buf, "x", 1))
return false;
if(!BEncodeWriteList(exits.begin(), exits.end(), buf))
return false;
/* write signature */
if(!bencode_write_bytestring(buf, "z", 1))
return false;
if(!signature.BEncode(buf))
return false;
return bencode_end(buf);
}
6 years ago
void
RouterContact::Clear()
{
addrs.clear();
exits.clear();
signature.Zero();
nickname.Zero();
enckey.Zero();
pubkey.Zero();
last_updated = 0;
}
bool
RouterContact::DecodeKey(llarp_buffer_t key, llarp_buffer_t *buf)
{
bool read = false;
if(!BEncodeMaybeReadDictList("a", addrs, read, key, buf))
return false;
if(!BEncodeMaybeReadDictEntry("i", netID, read, key, buf))
return false;
if(!BEncodeMaybeReadDictEntry("k", pubkey, read, key, buf))
return false;
if(llarp_buffer_eq(key, "n"))
{
llarp_buffer_t strbuf;
if(!bencode_read_string(buf, &strbuf))
return false;
if(strbuf.sz > nickname.size())
return false;
nickname.Zero();
memcpy(nickname.data(), strbuf.base, strbuf.sz);
return true;
}
if(!BEncodeMaybeReadDictEntry("p", enckey, read, key, buf))
return false;
if(!BEncodeMaybeReadDictInt("v", version, read, key, buf))
return false;
if(!BEncodeMaybeReadDictInt("t", last_updated, read, key, buf))
return false;
6 years ago
if(!BEncodeMaybeReadDictList("x", exits, read, key, buf))
return false;
if(!BEncodeMaybeReadDictEntry("z", signature, read, key, buf))
return false;
return read;
6 years ago
}
6 years ago
bool
RouterContact::IsPublicRouter() const
{
return addrs.size() > 0;
}
bool
RouterContact::HasNick() const
{
return nickname[0] != 0;
}
void
RouterContact::SetNick(const std::string &nick)
{
nickname.Zero();
memcpy(nickname, nick.c_str(), std::min(nick.size(), nickname.size()));
}
bool
RouterContact::IsExpired(llarp_time_t now) const
{
6 years ago
auto expiresAt = last_updated + Lifetime;
return now >= expiresAt;
}
bool
RouterContact::ExpiresSoon(llarp_time_t now, llarp_time_t dlt) const
{
6 years ago
if(IsExpired(now))
return true;
auto expiresAt = last_updated + Lifetime;
return expiresAt - now <= dlt;
}
6 years ago
std::string
RouterContact::Nick() const
{
const char *n = (const char *)nickname.data();
return std::string(n, strnlen(n, nickname.size()));
}
bool
RouterContact::Sign(llarp::Crypto *crypto, const SecretKey &secretkey)
6 years ago
{
pubkey = llarp::seckey_topublic(secretkey);
6 years ago
byte_t tmp[MAX_RC_SIZE] = {0};
auto buf = llarp::StackBuffer< decltype(tmp) >(tmp);
signature.Zero();
last_updated = time_now_ms();
6 years ago
if(!BEncode(&buf))
return false;
buf.sz = buf.cur - buf.base;
buf.cur = buf.base;
return crypto->sign(signature, secretkey, buf);
}
bool
RouterContact::Verify(llarp::Crypto *crypto, llarp_time_t now) const
{
5 years ago
static const NetID networkNetID;
if(netID != networkNetID)
{
llarp::LogError("netid missmatch: '", netID, "' != '", networkNetID, "'");
return false;
5 years ago
}
if(IsExpired(now))
5 years ago
{
llarp::LogError("RC is expired");
return false;
5 years ago
}
for(const auto &a : addrs)
{
if(IsBogon(a.ip) && !IgnoreBogons)
{
llarp::LogError("invalid address info: ", a);
return false;
}
}
for(const auto &exit : exits)
{
if(IsBogonRange(exit.address, exit.netmask))
return false;
}
5 years ago
if(!VerifySignature(crypto))
{
llarp::LogError("invalid signature");
return false;
}
return true;
}
6 years ago
bool
RouterContact::VerifySignature(llarp::Crypto *crypto) const
6 years ago
{
RouterContact copy;
copy = *this;
6 years ago
copy.signature.Zero();
byte_t tmp[MAX_RC_SIZE] = {0};
auto buf = llarp::StackBuffer< decltype(tmp) >(tmp);
if(!copy.BEncode(&buf))
{
llarp::LogError("bencode failed");
6 years ago
return false;
}
6 years ago
buf.sz = buf.cur - buf.base;
buf.cur = buf.base;
return crypto->verify(pubkey, buf, signature);
6 years ago
}
bool
RouterContact::Write(const char *fname) const
{
byte_t tmp[MAX_RC_SIZE] = {0};
auto buf = llarp::StackBuffer< decltype(tmp) >(tmp);
if(!BEncode(&buf))
return false;
buf.sz = buf.cur - buf.base;
buf.cur = buf.base;
{
std::ofstream f;
f.open(fname, std::ios::binary);
6 years ago
if(!f.is_open())
return false;
f.write((char *)buf.base, buf.sz);
}
return true;
}
bool
RouterContact::Read(const char *fname)
{
byte_t tmp[MAX_RC_SIZE] = {0};
{
std::ifstream f;
f.open(fname, std::ios::binary);
6 years ago
if(!f.is_open())
{
llarp::LogError("Failed to open ", fname);
6 years ago
return false;
}
6 years ago
f.seekg(0, std::ios::end);
auto l = f.tellg();
f.seekg(0, std::ios::beg);
f.read((char *)tmp, l);
}
auto buf = llarp::StackBuffer< decltype(tmp) >(tmp);
return BDecode(&buf);
}
RouterContact &
RouterContact::operator=(const RouterContact &other)
{
addrs = other.addrs;
exits = other.exits;
signature = other.signature;
6 years ago
last_updated = other.last_updated;
enckey = other.enckey;
pubkey = other.pubkey;
nickname = other.nickname;
version = other.version;
5 years ago
netID = other.netID;
6 years ago
return *this;
}
} // namespace llarp