2018-02-01 17:06:49 +00:00
|
|
|
#ifndef LLARP_ROUTER_HPP
|
|
|
|
#define LLARP_ROUTER_HPP
|
2018-06-01 14:08:54 +00:00
|
|
|
#include <llarp/dht.h>
|
2018-02-01 17:06:49 +00:00
|
|
|
#include <llarp/link.h>
|
2018-05-30 20:56:47 +00:00
|
|
|
#include <llarp/nodedb.h>
|
2018-05-25 17:52:10 +00:00
|
|
|
#include <llarp/path.h>
|
2018-02-01 17:07:01 +00:00
|
|
|
#include <llarp/router.h>
|
2018-05-20 17:45:47 +00:00
|
|
|
#include <llarp/router_contact.h>
|
2018-06-01 14:08:54 +00:00
|
|
|
|
2018-02-01 17:06:49 +00:00
|
|
|
#include <functional>
|
2018-05-22 15:54:19 +00:00
|
|
|
#include <list>
|
2018-05-20 17:45:47 +00:00
|
|
|
#include <map>
|
2018-05-30 20:56:47 +00:00
|
|
|
#include <unordered_map>
|
2018-02-01 17:06:49 +00:00
|
|
|
|
2018-06-01 14:08:54 +00:00
|
|
|
#include <llarp/dht.hpp>
|
2018-05-25 17:52:10 +00:00
|
|
|
#include <llarp/link_message.hpp>
|
|
|
|
|
2018-05-26 18:31:45 +00:00
|
|
|
#include "crypto.hpp"
|
2018-05-20 17:45:47 +00:00
|
|
|
#include "fs.hpp"
|
2018-05-22 15:54:19 +00:00
|
|
|
#include "mem.hpp"
|
2018-02-01 17:06:49 +00:00
|
|
|
|
2018-05-22 15:54:19 +00:00
|
|
|
namespace llarp
|
|
|
|
{
|
|
|
|
struct try_connect_ctx
|
|
|
|
{
|
|
|
|
llarp_router *router = nullptr;
|
|
|
|
llarp_ai addr;
|
|
|
|
};
|
2018-02-01 17:06:49 +00:00
|
|
|
|
2018-02-01 17:07:01 +00:00
|
|
|
} // namespace llarp
|
2018-02-01 17:06:49 +00:00
|
|
|
|
2018-05-22 15:54:19 +00:00
|
|
|
struct llarp_router
|
|
|
|
{
|
2018-04-05 14:23:14 +00:00
|
|
|
bool ready;
|
2018-05-20 17:45:47 +00:00
|
|
|
// transient iwp encryption key
|
|
|
|
fs::path transport_keyfile = "transport.key";
|
|
|
|
|
|
|
|
// nodes to connect to on startup
|
2018-05-22 15:54:19 +00:00
|
|
|
std::map< std::string, fs::path > connect;
|
2018-05-20 17:45:47 +00:00
|
|
|
|
|
|
|
// long term identity key
|
|
|
|
fs::path ident_keyfile = "identity.key";
|
2018-05-22 15:54:19 +00:00
|
|
|
|
2018-05-20 17:45:47 +00:00
|
|
|
// path to write our self signed rc to
|
|
|
|
fs::path our_rc_file = "rc.signed";
|
|
|
|
|
2018-05-25 17:52:10 +00:00
|
|
|
// our router contact
|
2018-05-20 17:45:47 +00:00
|
|
|
llarp_rc rc;
|
|
|
|
|
2018-05-22 15:54:19 +00:00
|
|
|
llarp_ev_loop *netloop;
|
2018-05-18 20:08:57 +00:00
|
|
|
llarp_threadpool *tp;
|
2018-05-22 15:54:19 +00:00
|
|
|
llarp_logic *logic;
|
2018-02-01 17:07:01 +00:00
|
|
|
llarp_crypto crypto;
|
|
|
|
llarp_path_context *paths;
|
2018-05-20 17:45:47 +00:00
|
|
|
llarp_seckey_t identity;
|
2018-05-30 20:56:47 +00:00
|
|
|
llarp_threadpool *disk;
|
2018-06-01 14:08:54 +00:00
|
|
|
llarp_dht_context *dht;
|
2018-05-30 20:56:47 +00:00
|
|
|
|
|
|
|
llarp_nodedb *nodedb;
|
2018-02-01 17:06:49 +00:00
|
|
|
|
2018-06-01 14:08:54 +00:00
|
|
|
// buffer for serializing link messages
|
|
|
|
byte_t linkmsg_buffer[MAX_LINK_MSG_SIZE];
|
|
|
|
|
2018-06-03 13:04:51 +00:00
|
|
|
// should we be sending padded messages every interval?
|
|
|
|
bool sendPadding = false;
|
|
|
|
|
|
|
|
uint32_t ticker_job_id = 0;
|
|
|
|
|
2018-06-01 14:08:54 +00:00
|
|
|
llarp::InboundMessageParser inbound_msg_parser;
|
2018-05-25 17:52:10 +00:00
|
|
|
|
2018-05-22 15:54:19 +00:00
|
|
|
std::list< llarp_link * > links;
|
|
|
|
|
2018-06-01 14:08:54 +00:00
|
|
|
typedef std::queue< llarp::ILinkMessage * > MessageQueue;
|
2018-05-26 18:31:45 +00:00
|
|
|
|
2018-06-01 14:08:54 +00:00
|
|
|
/// outbound message queue
|
|
|
|
std::unordered_map< llarp::pubkey, MessageQueue, llarp::pubkeyhash >
|
|
|
|
outboundMesssageQueue;
|
|
|
|
|
|
|
|
/// loki verified routers
|
2018-05-30 20:56:47 +00:00
|
|
|
std::unordered_map< llarp::pubkey, llarp_rc, llarp::pubkeyhash > validRouters;
|
|
|
|
|
2018-05-28 13:49:44 +00:00
|
|
|
llarp_router();
|
2018-02-01 17:07:01 +00:00
|
|
|
~llarp_router();
|
2018-02-01 17:06:49 +00:00
|
|
|
|
2018-05-25 17:52:10 +00:00
|
|
|
bool
|
|
|
|
HandleRecvLinkMessage(struct llarp_link_session *from, llarp_buffer_t msg);
|
|
|
|
|
2018-05-22 15:54:19 +00:00
|
|
|
void
|
|
|
|
AddLink(struct llarp_link *link);
|
|
|
|
|
|
|
|
void
|
|
|
|
Close();
|
|
|
|
|
|
|
|
bool
|
|
|
|
Ready();
|
|
|
|
|
|
|
|
void
|
|
|
|
Run();
|
|
|
|
|
|
|
|
bool
|
|
|
|
EnsureIdentity();
|
|
|
|
|
|
|
|
bool
|
|
|
|
SaveRC();
|
2018-02-01 17:06:49 +00:00
|
|
|
|
2018-05-22 15:54:19 +00:00
|
|
|
uint8_t *
|
|
|
|
pubkey()
|
|
|
|
{
|
|
|
|
return llarp_seckey_topublic(identity);
|
|
|
|
}
|
2018-02-01 17:06:49 +00:00
|
|
|
|
2018-05-22 15:54:19 +00:00
|
|
|
void
|
|
|
|
try_connect(fs::path rcfile);
|
2018-04-05 14:23:14 +00:00
|
|
|
|
2018-06-01 14:08:54 +00:00
|
|
|
/// send to remote router or queue for sending
|
|
|
|
/// returns false on overflow
|
|
|
|
/// returns true on successful queue
|
|
|
|
bool
|
|
|
|
SendToOrQueue(const llarp::RouterID &remote,
|
|
|
|
std::vector< llarp::ILinkMessage * > msgs);
|
|
|
|
|
|
|
|
/// manually flush outbound message queue for just 1 router
|
2018-05-26 18:31:45 +00:00
|
|
|
void
|
2018-06-01 14:08:54 +00:00
|
|
|
FlushOutboundFor(const llarp::RouterID &remote);
|
2018-05-26 18:31:45 +00:00
|
|
|
|
2018-06-01 14:08:54 +00:00
|
|
|
/// flush outbound message queue
|
|
|
|
void
|
|
|
|
FlushOutbound();
|
2018-05-26 18:31:45 +00:00
|
|
|
|
2018-06-02 13:18:11 +00:00
|
|
|
/// called by link when a remote session is expunged
|
|
|
|
void
|
|
|
|
SessionClosed(const llarp::RouterID &remote);
|
|
|
|
|
2018-06-03 13:04:51 +00:00
|
|
|
/// call internal router ticker
|
|
|
|
void
|
|
|
|
Tick();
|
|
|
|
|
|
|
|
/// schedule ticker to call i ms from now
|
|
|
|
void
|
|
|
|
ScheduleTicker(uint64_t i = 1000);
|
|
|
|
|
2018-05-30 20:56:47 +00:00
|
|
|
void
|
|
|
|
async_verify_RC(llarp_link_session *session, bool isExpectingClient,
|
|
|
|
llarp_link_establish_job *job = nullptr);
|
|
|
|
|
2018-05-22 15:54:19 +00:00
|
|
|
static bool
|
|
|
|
iter_try_connect(llarp_router_link_iter *i, llarp_router *router,
|
|
|
|
llarp_link *l);
|
2018-05-20 17:45:47 +00:00
|
|
|
|
2018-05-22 15:54:19 +00:00
|
|
|
static void
|
|
|
|
on_try_connect_result(llarp_link_establish_job *job);
|
2018-05-29 13:40:26 +00:00
|
|
|
|
|
|
|
static void
|
|
|
|
connect_job_retry(void *user);
|
2018-05-30 20:56:47 +00:00
|
|
|
|
|
|
|
static void
|
|
|
|
on_verify_client_rc(llarp_async_verify_rc *context);
|
|
|
|
|
|
|
|
static void
|
|
|
|
on_verify_server_rc(llarp_async_verify_rc *context);
|
2018-06-03 13:04:51 +00:00
|
|
|
|
|
|
|
static void
|
|
|
|
handle_router_ticker(void *user, uint64_t orig, uint64_t left);
|
|
|
|
|
|
|
|
static bool
|
|
|
|
send_padded_message(struct llarp_link_session_iter *itr,
|
|
|
|
struct llarp_link_session *peer);
|
2018-02-01 17:07:01 +00:00
|
|
|
};
|
2018-02-01 17:06:49 +00:00
|
|
|
|
|
|
|
#endif
|