mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-02-02 02:54:01 +01:00
add webui for udp tunnels
This commit is contained in:
parent
9acbb2203c
commit
fa1021df59
|
@ -276,6 +276,22 @@ namespace client
|
||||||
return success;
|
return success;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
std::vector<DatagramSessionInfo> ClientContext::GetForwardInfosFor(const i2p::data::IdentHash & destination)
|
||||||
|
{
|
||||||
|
std::lock_guard<std::mutex> lock(m_ForwardsMutex);
|
||||||
|
for(auto & c : m_ClientForwards)
|
||||||
|
{
|
||||||
|
if (c.second->IsLocalDestination(destination))
|
||||||
|
return c.second->GetSessions();
|
||||||
|
}
|
||||||
|
for(auto & s : m_ServerForwards)
|
||||||
|
{
|
||||||
|
if(std::get<0>(s.first) == destination)
|
||||||
|
return s.second->GetSessions();
|
||||||
|
}
|
||||||
|
return {};
|
||||||
|
}
|
||||||
|
|
||||||
std::shared_ptr<ClientDestination> ClientContext::CreateNewLocalDestination (bool isPublic, i2p::data::SigningKeyType sigType,
|
std::shared_ptr<ClientDestination> ClientContext::CreateNewLocalDestination (bool isPublic, i2p::data::SigningKeyType sigType,
|
||||||
const std::map<std::string, std::string> * params)
|
const std::map<std::string, std::string> * params)
|
||||||
{
|
{
|
||||||
|
|
|
@ -66,7 +66,9 @@ namespace client
|
||||||
|
|
||||||
AddressBook& GetAddressBook () { return m_AddressBook; };
|
AddressBook& GetAddressBook () { return m_AddressBook; };
|
||||||
const SAMBridge * GetSAMBridge () const { return m_SamBridge; };
|
const SAMBridge * GetSAMBridge () const { return m_SamBridge; };
|
||||||
|
|
||||||
|
std::vector<DatagramSessionInfo> GetForwardInfosFor(const i2p::data::IdentHash & destination);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
void ReadTunnels ();
|
void ReadTunnels ();
|
||||||
|
|
33
Datagram.cpp
33
Datagram.cpp
|
@ -165,6 +165,16 @@ namespace datagram
|
||||||
return session;
|
return session;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
std::shared_ptr<DatagramSession::Info> DatagramDestination::GetInfoForRemote(const i2p::data::IdentHash & remote)
|
||||||
|
{
|
||||||
|
std::lock_guard<std::mutex> lock(m_SessionsMutex);
|
||||||
|
for ( auto & item : m_Sessions)
|
||||||
|
{
|
||||||
|
if(item.first == remote) return std::make_shared<DatagramSession::Info>(item.second->GetSessionInfo());
|
||||||
|
}
|
||||||
|
return nullptr;
|
||||||
|
}
|
||||||
|
|
||||||
DatagramSession::DatagramSession(i2p::client::ClientDestination * localDestination,
|
DatagramSession::DatagramSession(i2p::client::ClientDestination * localDestination,
|
||||||
const i2p::data::IdentHash & remoteIdent) :
|
const i2p::data::IdentHash & remoteIdent) :
|
||||||
m_LocalDestination(localDestination),
|
m_LocalDestination(localDestination),
|
||||||
|
@ -183,6 +193,29 @@ namespace datagram
|
||||||
m_LocalDestination->GetService().post(std::bind(&DatagramSession::HandleSend, this, msg));
|
m_LocalDestination->GetService().post(std::bind(&DatagramSession::HandleSend, this, msg));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
DatagramSession::Info DatagramSession::GetSessionInfo() const
|
||||||
|
{
|
||||||
|
if(!m_RoutingSession)
|
||||||
|
return DatagramSession::Info{nullptr, nullptr, m_LastUse, m_LastSuccess};
|
||||||
|
|
||||||
|
auto routingPath = m_RoutingSession->GetSharedRoutingPath();
|
||||||
|
if (!routingPath)
|
||||||
|
return DatagramSession::Info{nullptr, nullptr, m_LastUse, m_LastSuccess};
|
||||||
|
auto lease = routingPath->remoteLease;
|
||||||
|
auto tunnel = routingPath->outboundTunnel;
|
||||||
|
if(lease)
|
||||||
|
{
|
||||||
|
if(tunnel)
|
||||||
|
return DatagramSession::Info{new i2p::data::IdentHash(lease->tunnelGateway), new i2p::data::IdentHash(tunnel->GetEndpointIdentHash()), m_LastUse, m_LastSuccess};
|
||||||
|
else
|
||||||
|
return DatagramSession::Info{new i2p::data::IdentHash(lease->tunnelGateway), nullptr, m_LastUse, m_LastSuccess};
|
||||||
|
}
|
||||||
|
else if(tunnel)
|
||||||
|
return DatagramSession::Info{nullptr, new i2p::data::IdentHash(tunnel->GetEndpointIdentHash()), m_LastUse, m_LastSuccess};
|
||||||
|
else
|
||||||
|
return DatagramSession::Info{nullptr, nullptr, m_LastUse, m_LastSuccess};
|
||||||
|
}
|
||||||
|
|
||||||
void DatagramSession::HandleSend(std::shared_ptr<I2NPMessage> msg)
|
void DatagramSession::HandleSend(std::shared_ptr<I2NPMessage> msg)
|
||||||
{
|
{
|
||||||
// do we have a routing session?
|
// do we have a routing session?
|
||||||
|
|
21
Datagram.h
21
Datagram.h
|
@ -44,6 +44,24 @@ namespace datagram
|
||||||
void SendMsg(std::shared_ptr<I2NPMessage> msg);
|
void SendMsg(std::shared_ptr<I2NPMessage> msg);
|
||||||
/** get the last time in milliseconds for when we used this datagram session */
|
/** get the last time in milliseconds for when we used this datagram session */
|
||||||
uint64_t LastActivity() const { return m_LastUse; }
|
uint64_t LastActivity() const { return m_LastUse; }
|
||||||
|
/** get the last time in milliseconds when we successfully sent data */
|
||||||
|
uint64_t LastSuccess() const { return m_LastSuccess; }
|
||||||
|
struct Info
|
||||||
|
{
|
||||||
|
const i2p::data::IdentHash * IBGW;
|
||||||
|
const i2p::data::IdentHash * OBEP;
|
||||||
|
const uint64_t activity;
|
||||||
|
const uint64_t success;
|
||||||
|
~Info()
|
||||||
|
{
|
||||||
|
if(IBGW) delete IBGW;
|
||||||
|
if(OBEP) delete OBEP;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
Info GetSessionInfo() const;
|
||||||
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
/** update our routing path we are using, mark that we have changed paths */
|
/** update our routing path we are using, mark that we have changed paths */
|
||||||
|
@ -90,6 +108,7 @@ namespace datagram
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
|
|
||||||
DatagramDestination (std::shared_ptr<i2p::client::ClientDestination> owner);
|
DatagramDestination (std::shared_ptr<i2p::client::ClientDestination> owner);
|
||||||
~DatagramDestination ();
|
~DatagramDestination ();
|
||||||
|
|
||||||
|
@ -101,6 +120,8 @@ namespace datagram
|
||||||
|
|
||||||
void SetReceiver (const Receiver& receiver, uint16_t port) { std::lock_guard<std::mutex> lock(m_ReceiversMutex); m_ReceiversByPorts[port] = receiver; };
|
void SetReceiver (const Receiver& receiver, uint16_t port) { std::lock_guard<std::mutex> lock(m_ReceiversMutex); m_ReceiversByPorts[port] = receiver; };
|
||||||
void ResetReceiver (uint16_t port) { std::lock_guard<std::mutex> lock(m_ReceiversMutex); m_ReceiversByPorts.erase (port); };
|
void ResetReceiver (uint16_t port) { std::lock_guard<std::mutex> lock(m_ReceiversMutex); m_ReceiversByPorts.erase (port); };
|
||||||
|
|
||||||
|
std::shared_ptr<DatagramSession::Info> GetInfoForRemote(const i2p::data::IdentHash & remote);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
// clean up after next tick
|
// clean up after next tick
|
||||||
|
|
|
@ -337,7 +337,38 @@ namespace http {
|
||||||
s << "<td>" << it->GetWindowSize () << "</td>";
|
s << "<td>" << it->GetWindowSize () << "</td>";
|
||||||
s << "<td>" << (int)it->GetStatus () << "</td>";
|
s << "<td>" << (int)it->GetStatus () << "</td>";
|
||||||
s << "</tr><br>\r\n" << std::endl;
|
s << "</tr><br>\r\n" << std::endl;
|
||||||
|
}
|
||||||
|
s << "</table><br>\r\n<table><caption>Forwards</caption><tr>";
|
||||||
|
s << "<th>Remote Destination</th>";
|
||||||
|
s << "<th>IBGW</th>";
|
||||||
|
s << "<th>OBEP</th>";
|
||||||
|
s << "<th>UDP Converstation</th>";
|
||||||
|
s << "<th>Idle Time</th>";
|
||||||
|
s << "</th>";
|
||||||
|
auto forward = i2p::client::context.GetForwardInfosFor(dest->GetIdentHash());
|
||||||
|
for (auto & info : forward)
|
||||||
|
{
|
||||||
|
s << "<tr>";
|
||||||
|
s << "<td>" << info.RemoteIdent.ToBase32() << "</td>";
|
||||||
|
s << "<td>";
|
||||||
|
if(info.CurrentIBGW)
|
||||||
|
s << info.CurrentIBGW->ToBase64();
|
||||||
|
else
|
||||||
|
s << "(none)";
|
||||||
|
s << "</td>";
|
||||||
|
|
||||||
|
s << "<td>";
|
||||||
|
if(info.CurrentOBEP)
|
||||||
|
s << info.CurrentOBEP->ToBase64();
|
||||||
|
else
|
||||||
|
s << "(none)";
|
||||||
|
s << "</td>";
|
||||||
|
s << "<td>" << info.LocalEndpoint << " ⇄ " << info.RemoteEndpoint << "</td>";
|
||||||
|
auto sec = std::chrono::duration<float, std::ratio<1000, 1 > >( std::chrono::milliseconds(info.idle) );
|
||||||
|
s << "<td>" << sec.count() << " seconds </td>";
|
||||||
|
s << "</tr><br>\r\n";
|
||||||
}
|
}
|
||||||
|
s << "</table>\r\n";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -631,6 +631,30 @@ namespace client
|
||||||
void I2PUDPServerTunnel::Start() {
|
void I2PUDPServerTunnel::Start() {
|
||||||
m_LocalDest->Start();
|
m_LocalDest->Start();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
std::vector<DatagramSessionInfo> I2PUDPServerTunnel::GetSessions()
|
||||||
|
{
|
||||||
|
std::vector<DatagramSessionInfo> sessions;
|
||||||
|
auto localident = m_LocalDest->GetIdentHash();
|
||||||
|
std::lock_guard<std::mutex> lock(m_SessionsMutex);
|
||||||
|
for ( UDPSession * s : m_Sessions )
|
||||||
|
{
|
||||||
|
if (!s->m_Destination) continue;
|
||||||
|
auto info = s->m_Destination->GetInfoForRemote(s->Identity);
|
||||||
|
if(!info) continue;
|
||||||
|
sessions.push_back(DatagramSessionInfo{
|
||||||
|
m_Name,
|
||||||
|
localident,
|
||||||
|
s->Identity,
|
||||||
|
info->IBGW,
|
||||||
|
info->OBEP,
|
||||||
|
s->IPSocket.local_endpoint(),
|
||||||
|
s->SendEndpoint,
|
||||||
|
info->success
|
||||||
|
});
|
||||||
|
}
|
||||||
|
return sessions;
|
||||||
|
}
|
||||||
|
|
||||||
I2PUDPClientTunnel::I2PUDPClientTunnel(const std::string & name, const std::string &remoteDest,
|
I2PUDPClientTunnel::I2PUDPClientTunnel(const std::string & name, const std::string &remoteDest,
|
||||||
boost::asio::ip::udp::endpoint localEndpoint,
|
boost::asio::ip::udp::endpoint localEndpoint,
|
||||||
|
@ -662,6 +686,34 @@ namespace client
|
||||||
m_ResolveThread = new std::thread(std::bind(&I2PUDPClientTunnel::TryResolving, this));
|
m_ResolveThread = new std::thread(std::bind(&I2PUDPClientTunnel::TryResolving, this));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
std::vector<DatagramSessionInfo> I2PUDPClientTunnel::GetSessions()
|
||||||
|
{
|
||||||
|
std::vector<DatagramSessionInfo> infos;
|
||||||
|
if(m_Session && m_LocalDest)
|
||||||
|
{
|
||||||
|
auto localident = m_LocalDest->GetIdentHash();
|
||||||
|
auto s = m_Session;
|
||||||
|
if (s->m_Destination)
|
||||||
|
{
|
||||||
|
auto info = m_Session->m_Destination->GetInfoForRemote(s->Identity);
|
||||||
|
if(!info)
|
||||||
|
{
|
||||||
|
infos.push_back(DatagramSessionInfo{
|
||||||
|
m_Name,
|
||||||
|
localident,
|
||||||
|
s->Identity,
|
||||||
|
info->IBGW,
|
||||||
|
info->OBEP,
|
||||||
|
s->IPSocket.local_endpoint(),
|
||||||
|
s->SendEndpoint,
|
||||||
|
info->success
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return infos;
|
||||||
|
}
|
||||||
|
|
||||||
void I2PUDPClientTunnel::TryResolving() {
|
void I2PUDPClientTunnel::TryResolving() {
|
||||||
LogPrint(eLogInfo, "UDP Tunnel: Trying to resolve ", m_RemoteDest);
|
LogPrint(eLogInfo, "UDP Tunnel: Trying to resolve ", m_RemoteDest);
|
||||||
m_RemoteIdent = new i2p::data::IdentHash;
|
m_RemoteIdent = new i2p::data::IdentHash;
|
||||||
|
|
27
I2PTunnel.h
27
I2PTunnel.h
|
@ -137,7 +137,28 @@ namespace client
|
||||||
|
|
||||||
/** max size for i2p udp */
|
/** max size for i2p udp */
|
||||||
const size_t I2P_UDP_MAX_MTU = i2p::datagram::MAX_DATAGRAM_SIZE;
|
const size_t I2P_UDP_MAX_MTU = i2p::datagram::MAX_DATAGRAM_SIZE;
|
||||||
|
|
||||||
|
/** read only info about a datagram session */
|
||||||
|
struct DatagramSessionInfo
|
||||||
|
{
|
||||||
|
/** the name of this forward */
|
||||||
|
const std::string Name;
|
||||||
|
/** ident hash of local destination */
|
||||||
|
const i2p::data::IdentHash LocalIdent;
|
||||||
|
/** ident hash of remote destination */
|
||||||
|
const i2p::data::IdentHash RemoteIdent;
|
||||||
|
/** ident hash of IBGW in use currently in this session or nullptr if none is set */
|
||||||
|
const i2p::data::IdentHash * CurrentIBGW;
|
||||||
|
/** ident hash of OBEP in use for this session or nullptr if none is set */
|
||||||
|
const i2p::data::IdentHash * CurrentOBEP;
|
||||||
|
/** i2p router's udp endpoint */
|
||||||
|
const boost::asio::ip::udp::endpoint LocalEndpoint;
|
||||||
|
/** client's udp endpoint */
|
||||||
|
const boost::asio::ip::udp::endpoint RemoteEndpoint;
|
||||||
|
/** how long has this converstation been idle in ms */
|
||||||
|
const uint64_t idle;
|
||||||
|
};
|
||||||
|
|
||||||
struct UDPSession
|
struct UDPSession
|
||||||
{
|
{
|
||||||
i2p::datagram::DatagramDestination * m_Destination;
|
i2p::datagram::DatagramDestination * m_Destination;
|
||||||
|
@ -174,6 +195,7 @@ namespace client
|
||||||
void ExpireStale(const uint64_t delta=I2P_UDP_SESSION_TIMEOUT);
|
void ExpireStale(const uint64_t delta=I2P_UDP_SESSION_TIMEOUT);
|
||||||
void Start();
|
void Start();
|
||||||
const char * GetName() const { return m_Name.c_str(); }
|
const char * GetName() const { return m_Name.c_str(); }
|
||||||
|
std::vector<DatagramSessionInfo> GetSessions();
|
||||||
private:
|
private:
|
||||||
void HandleRecvFromI2P(const i2p::data::IdentityEx& from, uint16_t fromPort, uint16_t toPort, const uint8_t * buf, size_t len);
|
void HandleRecvFromI2P(const i2p::data::IdentityEx& from, uint16_t fromPort, uint16_t toPort, const uint8_t * buf, size_t len);
|
||||||
UDPSession * ObtainUDPSession(const i2p::data::IdentityEx& from, uint16_t localPort, uint16_t remotePort);
|
UDPSession * ObtainUDPSession(const i2p::data::IdentityEx& from, uint16_t localPort, uint16_t remotePort);
|
||||||
|
@ -196,7 +218,8 @@ namespace client
|
||||||
~I2PUDPClientTunnel();
|
~I2PUDPClientTunnel();
|
||||||
void Start();
|
void Start();
|
||||||
const char * GetName() const { return m_Name.c_str(); }
|
const char * GetName() const { return m_Name.c_str(); }
|
||||||
|
std::vector<DatagramSessionInfo> GetSessions();
|
||||||
|
bool IsLocalDestination(const i2p::data::IdentHash & destination) const { return destination == m_LocalDest->GetIdentHash(); }
|
||||||
private:
|
private:
|
||||||
void HandleRecvFromI2P(const i2p::data::IdentityEx& from, uint16_t fromPort, uint16_t toPort, const uint8_t * buf, size_t len);
|
void HandleRecvFromI2P(const i2p::data::IdentityEx& from, uint16_t fromPort, uint16_t toPort, const uint8_t * buf, size_t len);
|
||||||
void TryResolving();
|
void TryResolving();
|
||||||
|
|
Loading…
Reference in a new issue