Ignore our self.signed file if we're a client

pull/1297/head
Stephen Shelton 4 years ago
parent bb14b44bcf
commit 1497b829bd
No known key found for this signature in database
GPG Key ID: EE4BADACCE8B631C

@ -100,7 +100,7 @@ run_main_context(std::string conffname, llarp_main_runtime_opts opts)
#ifndef _WIN32
signal(SIGHUP, handle_signal);
#endif
code = llarp_main_setup(ctx);
code = llarp_main_setup(ctx, opts.isRelay);
llarp::util::SetThreadName("llarp-mainloop");
if (code == 0)
code = llarp_main_run(ctx, opts);

@ -191,7 +191,7 @@ extern "C"
/// setup main context, returns 0 on success
int
llarp_main_setup(struct llarp_main* ptr);
llarp_main_setup(struct llarp_main* ptr, bool isRelay);
/// run main context, returns 0 on success, blocks until program end
int

@ -64,7 +64,7 @@ namespace llarp
LoadDatabase();
int
Setup();
Setup(bool isRelay);
int
Run(llarp_main_runtime_opts opts);

@ -26,7 +26,7 @@ namespace llarp
}
bool
KeyManager::initialize(const llarp::Config& config, bool genIfAbsent)
KeyManager::initialize(const llarp::Config& config, bool genIfAbsent, bool isRouter)
{
if (m_initialized)
return false;
@ -61,7 +61,7 @@ namespace llarp
m_lokidRPCPassword = config.lokid.lokidRPCPassword;
RouterContact rc;
bool exists = rc.Read(m_rcPath);
bool exists = rc.Read(m_rcPath.c_str());
if (not exists and not genIfAbsent)
{
LogError("Could not read RouterContact at path ", m_rcPath);
@ -70,7 +70,7 @@ namespace llarp
// we need to back up keys if our self.signed doesn't appear to have a
// valid signature
m_needBackup = (not rc.VerifySignature());
m_needBackup = (isRouter and not rc.VerifySignature());
// if our RC file can't be verified, assume it is out of date (e.g. uses
// older encryption) and needs to be regenerated. before doing so, backup
@ -216,7 +216,7 @@ namespace llarp
LogInfo("Generating new key", filepath);
keygen(key);
if (!key.SaveToFile(filepath))
if (!key.SaveToFile(filepath.c_str()))
{
LogError("Failed to save new key");
return false;
@ -224,7 +224,7 @@ namespace llarp
}
LogDebug("Loading key from file ", filepath);
return key.LoadFromFile(filepath);
return key.LoadFromFile(filepath.c_str());
}
bool

@ -43,9 +43,10 @@ namespace llarp
/// @param config should be a prepared config object
/// @param genIfAbsent determines whether or not we will create files if they
/// do not exist.
/// @param isRouter
/// @return true on success, false otherwise
bool
initialize(const llarp::Config& config, bool genIfAbsent);
initialize(const llarp::Config& config, bool genIfAbsent, bool isRouter);
/// Obtain the self-signed RouterContact
///

@ -72,7 +72,7 @@ namespace llarp
}
int
Context::Setup()
Context::Setup(bool isRelay)
{
llarp::LogInfo(llarp::VERSION_FULL, " ", llarp::RELEASE_MOTTO);
llarp::LogInfo("starting up");
@ -92,7 +92,7 @@ namespace llarp
nodedb = std::make_unique<llarp_nodedb>(router->diskworker(), nodedb_dir);
if (!router->Configure(config.get(), nodedb.get()))
if (!router->Configure(config.get(), isRelay, nodedb.get()))
{
llarp::LogError("Failed to configure router");
return 1;
@ -323,9 +323,9 @@ extern "C"
}
int
llarp_main_setup(struct llarp_main* ptr)
llarp_main_setup(struct llarp_main* ptr, bool isRelay)
{
return ptr->ctx->Setup();
return ptr->ctx->Setup(isRelay);
}
int

@ -137,7 +137,7 @@ namespace llarp
Sign(Signature& sig, const llarp_buffer_t& buf) const = 0;
virtual bool
Configure(Config* conf, llarp_nodedb* nodedb) = 0;
Configure(Config* conf, bool isRouter, llarp_nodedb* nodedb) = 0;
virtual bool
IsServiceNode() const = 0;

@ -234,7 +234,7 @@ namespace llarp
}
bool
Router::Configure(Config* conf, llarp_nodedb* nodedb)
Router::Configure(Config* conf, bool isRouter, llarp_nodedb* nodedb)
{
if (nodedb == nullptr)
{
@ -242,7 +242,7 @@ namespace llarp
}
_nodedb = nodedb;
if (not m_keyManager->initialize(*conf, true))
if (not m_keyManager->initialize(*conf, true, isRouter))
throw std::runtime_error("KeyManager failed to initialize");
if (!FromConfig(conf))
@ -331,6 +331,9 @@ namespace llarp
bool
Router::UpdateOurRC(bool rotateKeys)
{
if (IsServiceNode())
return false;
SecretKey nextOnionKey;
RouterContact nextRC = _rc;
if (rotateKeys)
@ -660,16 +663,19 @@ namespace llarp
const bool isSvcNode = IsServiceNode();
if (_rc.ExpiresSoon(now, std::chrono::milliseconds(randint() % 10000))
|| (now - _rc.last_updated) > rcRegenInterval)
if (isSvcNode)
{
LogInfo("regenerating RC");
if (!UpdateOurRC(false))
LogError("Failed to update our RC");
}
else
{
GossipRCIfNeeded(_rc);
if (_rc.ExpiresSoon(now, std::chrono::milliseconds(randint() % 10000))
|| (now - _rc.last_updated) > rcRegenInterval)
{
LogInfo("regenerating RC");
if (!UpdateOurRC(false))
LogError("Failed to update our RC");
}
else
{
GossipRCIfNeeded(_rc);
}
}
const bool gotWhitelist = _rcLookupHandler.HaveReceivedWhitelist();
// remove RCs for nodes that are no longer allowed by network policy
@ -876,60 +882,57 @@ namespace llarp
routerProfiling().Load(routerProfilesFile.c_str());
// set public signing key
_rc.pubkey = seckey_topublic(identity());
// set router version if service node
// initialize our RC if we're a service node
if (IsServiceNode())
{
// set public signing key
_rc.pubkey = seckey_topublic(identity());
_rc.routerVersion = RouterVersion(llarp::VERSION, LLARP_PROTO_VERSION);
}
_linkManager.ForEachInboundLink([&](LinkLayer_ptr link) {
AddressInfo ai;
if (link->GetOurAddressInfo(ai))
{
// override ip and port
if (not _ourAddress.isEmpty())
{
ai.fromIpAddress(_ourAddress);
}
if (RouterContact::BlockBogons && IsBogon(ai.ip))
return;
LogInfo("adding address: ", ai);
_rc.addrs.push_back(ai);
if (ExitEnabled())
_linkManager.ForEachInboundLink([&](LinkLayer_ptr link) {
AddressInfo ai;
if (link->GetOurAddressInfo(ai))
{
const IpAddress address = ai.toIpAddress();
_rc.exits.emplace_back(_rc.pubkey, address);
LogInfo("Exit relay started, advertised as exiting at: ", address);
// override ip and port
if (not _ourAddress.isEmpty())
{
ai.fromIpAddress(_ourAddress);
}
if (RouterContact::BlockBogons && IsBogon(ai.ip))
return;
LogInfo("adding address: ", ai);
_rc.addrs.push_back(ai);
if (ExitEnabled())
{
const IpAddress address = ai.toIpAddress();
_rc.exits.emplace_back(_rc.pubkey, address);
LogInfo("Exit relay started, advertised as exiting at: ", address);
}
}
}
});
});
// set public encryption key
_rc.enckey = seckey_topublic(encryption());
// set public encryption key
_rc.enckey = seckey_topublic(encryption());
LogInfo("Signing rc...");
if (!_rc.Sign(identity()))
{
LogError("failed to sign rc");
return false;
}
LogInfo("Signing rc...");
if (!_rc.Sign(identity()))
{
LogError("failed to sign rc");
return false;
}
if (!SaveRC())
{
LogError("failed to save RC");
return false;
}
_outboundSessionMaker.SetOurRouter(pubkey());
if (!_linkManager.StartLinks(_logic, cryptoworker))
{
LogWarn("One or more links failed to start.");
return false;
}
if (!SaveRC())
{
LogError("failed to save RC");
return false;
}
_outboundSessionMaker.SetOurRouter(pubkey());
if (!_linkManager.StartLinks(_logic, cryptoworker))
{
LogWarn("One or more links failed to start.");
return false;
}
if (IsServiceNode())
{
// initialize as service node
if (!InitServiceNode())
{
@ -949,13 +952,6 @@ namespace llarp
// regenerate keys and resign rc before everything else
CryptoManager::instance()->identity_keygen(_identity);
CryptoManager::instance()->encryption_keygen(_encryption);
_rc.pubkey = seckey_topublic(identity());
_rc.enckey = seckey_topublic(encryption());
if (!_rc.Sign(identity()))
{
LogError("failed to regenerate keys and sign RC");
return false;
}
}
LogInfo("starting hidden service context...");

@ -327,7 +327,7 @@ namespace llarp
Close();
bool
Configure(Config* conf, llarp_nodedb* nodedb = nullptr) override;
Configure(Config* conf, bool isRouter, llarp_nodedb* nodedb = nullptr) override;
bool
StartJsonRpc() override;

@ -116,7 +116,7 @@ TEST_F(KeyManagerTest, TestInitialize_MakesKeyfiles)
conf.LoadDefault(false, {});
KeyManager keyManager;
ASSERT_TRUE(keyManager.initialize(conf, true));
ASSERT_TRUE(keyManager.initialize(conf, true, true));
// KeyManager doesn't generate RC file, but should generate others
ASSERT_FALSE(fs::exists(our_rc_filename));
@ -132,7 +132,7 @@ TEST_F(KeyManagerTest, TestInitialize_RespectsGenFlag)
conf.LoadDefault(false, {});
KeyManager keyManager;
ASSERT_FALSE(keyManager.initialize(conf, false));
ASSERT_FALSE(keyManager.initialize(conf, false, true));
// KeyManager shouldn't have touched any files without (genIfAbsent == true)
ASSERT_FALSE(fs::exists(our_rc_filename));
@ -153,7 +153,7 @@ TEST_F(KeyManagerTest, TestInitialize_DetectsBadRcFile)
f.close();
KeyManager keyManager;
ASSERT_TRUE(keyManager.initialize(conf, true));
ASSERT_TRUE(keyManager.initialize(conf, true, true));
ASSERT_TRUE(keyManager.needBackup());
ASSERT_TRUE(fs::exists(our_enc_key_filename));

Loading…
Cancel
Save