2015-01-03 20:38:48 +00:00
|
|
|
#ifdef USE_UPNP
|
2014-02-09 20:15:47 +00:00
|
|
|
#include <string>
|
2015-01-03 20:38:48 +00:00
|
|
|
#include <thread>
|
|
|
|
|
|
|
|
#include <boost/thread/thread.hpp>
|
|
|
|
#include <boost/asio.hpp>
|
2014-02-09 20:15:47 +00:00
|
|
|
#include <boost/bind.hpp>
|
2015-01-03 20:38:48 +00:00
|
|
|
|
2014-02-09 20:15:47 +00:00
|
|
|
#include "Log.h"
|
2015-06-06 18:53:22 +00:00
|
|
|
|
2015-01-03 20:38:48 +00:00
|
|
|
#include "RouterContext.h"
|
2014-02-09 20:15:47 +00:00
|
|
|
#include "UPnP.h"
|
2015-01-03 20:38:48 +00:00
|
|
|
#include "NetDb.h"
|
|
|
|
#include "util.h"
|
2016-03-09 06:42:58 +00:00
|
|
|
#include "RouterInfo.h"
|
2016-07-19 16:03:03 +00:00
|
|
|
#include "Config.h"
|
2015-01-03 20:38:48 +00:00
|
|
|
|
|
|
|
#include <miniupnpc/miniupnpc.h>
|
|
|
|
#include <miniupnpc/upnpcommands.h>
|
|
|
|
|
2014-02-09 20:15:47 +00:00
|
|
|
namespace i2p
|
|
|
|
{
|
2015-05-06 16:19:20 +00:00
|
|
|
namespace transport
|
2015-01-03 20:38:48 +00:00
|
|
|
{
|
2017-02-15 06:04:40 +00:00
|
|
|
UPnP::UPnP () : m_IsRunning(false), m_Thread (nullptr), m_Timer (m_Service)
|
|
|
|
{
|
|
|
|
}
|
2015-01-03 20:38:48 +00:00
|
|
|
|
2017-02-15 06:04:40 +00:00
|
|
|
void UPnP::Stop ()
|
|
|
|
{
|
2016-07-18 18:01:58 +00:00
|
|
|
if (m_IsRunning)
|
|
|
|
{
|
2017-02-15 06:04:40 +00:00
|
|
|
LogPrint(eLogInfo, "UPnP: stopping");
|
|
|
|
m_IsRunning = false;
|
2016-07-18 18:01:58 +00:00
|
|
|
m_Timer.cancel ();
|
|
|
|
m_Service.stop ();
|
2017-02-15 06:04:40 +00:00
|
|
|
if (m_Thread)
|
|
|
|
{
|
|
|
|
m_Thread->join ();
|
|
|
|
m_Thread.reset (nullptr);
|
|
|
|
}
|
2016-07-18 18:01:58 +00:00
|
|
|
CloseMapping ();
|
2017-02-15 06:04:40 +00:00
|
|
|
Close ();
|
2016-07-18 18:01:58 +00:00
|
|
|
}
|
2017-02-15 06:04:40 +00:00
|
|
|
}
|
2015-01-03 20:38:48 +00:00
|
|
|
|
2017-02-15 06:04:40 +00:00
|
|
|
void UPnP::Start()
|
|
|
|
{
|
2016-07-18 18:01:58 +00:00
|
|
|
m_IsRunning = true;
|
2017-02-15 06:04:40 +00:00
|
|
|
LogPrint(eLogInfo, "UPnP: starting");
|
2016-07-18 18:01:58 +00:00
|
|
|
m_Service.post (std::bind (&UPnP::Discover, this));
|
2016-07-31 14:22:41 +00:00
|
|
|
std::unique_lock<std::mutex> l(m_StartedMutex);
|
2017-02-15 06:04:40 +00:00
|
|
|
m_Thread.reset (new std::thread (std::bind (&UPnP::Run, this)));
|
2016-07-31 14:22:41 +00:00
|
|
|
m_Started.wait_for (l, std::chrono::seconds (5)); // 5 seconds maximum
|
2017-02-15 06:04:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
UPnP::~UPnP ()
|
|
|
|
{
|
2016-07-18 18:01:58 +00:00
|
|
|
Stop ();
|
2017-02-15 06:04:40 +00:00
|
|
|
}
|
2015-01-03 20:38:48 +00:00
|
|
|
|
2017-02-15 06:04:40 +00:00
|
|
|
void UPnP::Run ()
|
|
|
|
{
|
2016-07-18 18:01:58 +00:00
|
|
|
while (m_IsRunning)
|
|
|
|
{
|
|
|
|
try
|
2017-02-15 06:04:40 +00:00
|
|
|
{
|
2016-07-18 18:01:58 +00:00
|
|
|
m_Service.run ();
|
2016-11-18 15:27:49 +00:00
|
|
|
// Discover failed
|
|
|
|
break; // terminate the thread
|
2016-07-18 18:01:58 +00:00
|
|
|
}
|
|
|
|
catch (std::exception& ex)
|
|
|
|
{
|
|
|
|
LogPrint (eLogError, "UPnP: runtime exception: ", ex.what ());
|
2016-11-18 15:27:49 +00:00
|
|
|
PortMapping ();
|
2017-02-15 06:04:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void UPnP::Discover ()
|
|
|
|
{
|
|
|
|
int nerror = 0;
|
2016-03-11 08:35:49 +00:00
|
|
|
#if MINIUPNPC_API_VERSION >= 14
|
2017-02-15 06:04:40 +00:00
|
|
|
m_Devlist = upnpDiscover (2000, m_MulticastIf, m_Minissdpdpath, 0, 0, 2, &nerror);
|
2016-03-09 06:29:32 +00:00
|
|
|
#else
|
2017-02-15 06:04:40 +00:00
|
|
|
m_Devlist = upnpDiscover (2000, m_MulticastIf, m_Minissdpdpath, 0, 0, &nerror);
|
2015-01-03 20:38:48 +00:00
|
|
|
#endif
|
2016-07-31 14:22:41 +00:00
|
|
|
{
|
2017-02-15 06:04:40 +00:00
|
|
|
// notify satrting thread
|
2016-07-31 14:22:41 +00:00
|
|
|
std::unique_lock<std::mutex> l(m_StartedMutex);
|
|
|
|
m_Started.notify_all ();
|
2017-02-15 06:04:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int r;
|
|
|
|
r = UPNP_GetValidIGD (m_Devlist, &m_upnpUrls, &m_upnpData, m_NetworkAddr, sizeof (m_NetworkAddr));
|
|
|
|
if (r == 1)
|
|
|
|
{
|
|
|
|
r = UPNP_GetExternalIPAddress (m_upnpUrls.controlURL, m_upnpData.first.servicetype, m_externalIPAddress);
|
|
|
|
if(r != UPNPCOMMAND_SUCCESS)
|
|
|
|
{
|
|
|
|
LogPrint (eLogError, "UPnP: UPNP_GetExternalIPAddress() returned ", r);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (!m_externalIPAddress[0])
|
|
|
|
{
|
|
|
|
LogPrint (eLogError, "UPnP: GetExternalIPAddress() failed.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-07-18 18:01:58 +00:00
|
|
|
else
|
|
|
|
{
|
2017-02-15 06:04:40 +00:00
|
|
|
LogPrint (eLogError, "UPnP: GetValidIGD() failed.");
|
|
|
|
return;
|
2016-07-18 18:01:58 +00:00
|
|
|
}
|
|
|
|
|
2017-02-15 06:04:40 +00:00
|
|
|
// UPnP discovered
|
2016-07-18 18:01:58 +00:00
|
|
|
LogPrint (eLogDebug, "UPnP: ExternalIPAddress is ", m_externalIPAddress);
|
2017-02-15 06:04:40 +00:00
|
|
|
i2p::context.UpdateAddress (boost::asio::ip::address::from_string (m_externalIPAddress));
|
2016-07-18 18:01:58 +00:00
|
|
|
// port mapping
|
|
|
|
PortMapping ();
|
2017-02-15 06:04:40 +00:00
|
|
|
}
|
2015-01-03 20:38:48 +00:00
|
|
|
|
2016-07-18 18:01:58 +00:00
|
|
|
void UPnP::PortMapping ()
|
|
|
|
{
|
2016-08-09 22:16:24 +00:00
|
|
|
const auto& a = context.GetRouterInfo().GetAddresses();
|
|
|
|
for (const auto& address : a)
|
2017-02-15 06:04:40 +00:00
|
|
|
{
|
|
|
|
if (!address->host.is_v6 ())
|
|
|
|
TryPortMapping (address);
|
|
|
|
}
|
2016-07-18 18:01:58 +00:00
|
|
|
m_Timer.expires_from_now (boost::posix_time::minutes(20)); // every 20 minutes
|
|
|
|
m_Timer.async_wait ([this](const boost::system::error_code& ecode)
|
2017-02-15 06:04:40 +00:00
|
|
|
{
|
|
|
|
if (ecode != boost::asio::error::operation_aborted)
|
|
|
|
PortMapping ();
|
|
|
|
});
|
2016-07-18 18:01:58 +00:00
|
|
|
|
2017-02-15 06:04:40 +00:00
|
|
|
}
|
2016-07-18 18:01:58 +00:00
|
|
|
|
|
|
|
void UPnP::CloseMapping ()
|
|
|
|
{
|
2016-08-09 22:16:24 +00:00
|
|
|
const auto& a = context.GetRouterInfo().GetAddresses();
|
|
|
|
for (const auto& address : a)
|
2017-02-15 06:04:40 +00:00
|
|
|
{
|
|
|
|
if (!address->host.is_v6 ())
|
|
|
|
CloseMapping (address);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void UPnP::TryPortMapping (std::shared_ptr<i2p::data::RouterInfo::Address> address)
|
|
|
|
{
|
|
|
|
std::string strType (GetProto (address)), strPort (std::to_string (address->port));
|
|
|
|
int r;
|
|
|
|
std::string strDesc; i2p::config::GetOption("upnp.name", strDesc);
|
|
|
|
r = UPNP_AddPortMapping (m_upnpUrls.controlURL, m_upnpData.first.servicetype, strPort.c_str (), strPort.c_str (), m_NetworkAddr, strDesc.c_str (), strType.c_str (), 0, "0");
|
|
|
|
if (r!=UPNPCOMMAND_SUCCESS)
|
|
|
|
{
|
|
|
|
LogPrint (eLogError, "UPnP: AddPortMapping (", m_NetworkAddr, ":", strPort, ") failed with code ", r);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
LogPrint (eLogDebug, "UPnP: Port Mapping successful. (", m_NetworkAddr ,":", strPort, " type ", strType, " -> ", m_externalIPAddress ,":", strPort ,")");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void UPnP::CloseMapping (std::shared_ptr<i2p::data::RouterInfo::Address> address)
|
|
|
|
{
|
|
|
|
std::string strType (GetProto (address)), strPort (std::to_string (address->port));
|
|
|
|
int r = 0;
|
|
|
|
r = UPNP_DeletePortMapping (m_upnpUrls.controlURL, m_upnpData.first.servicetype, strPort.c_str (), strType.c_str (), 0);
|
|
|
|
LogPrint (eLogError, "UPnP: DeletePortMapping() returned : ", r);
|
|
|
|
}
|
|
|
|
|
|
|
|
void UPnP::Close ()
|
|
|
|
{
|
|
|
|
freeUPNPDevlist (m_Devlist);
|
|
|
|
m_Devlist = 0;
|
|
|
|
FreeUPNPUrls (&m_upnpUrls);
|
|
|
|
}
|
2016-07-18 18:01:58 +00:00
|
|
|
|
|
|
|
std::string UPnP::GetProto (std::shared_ptr<i2p::data::RouterInfo::Address> address)
|
|
|
|
{
|
|
|
|
switch (address->transportStyle)
|
2017-02-15 06:04:40 +00:00
|
|
|
{
|
|
|
|
case i2p::data::RouterInfo::eTransportNTCP:
|
|
|
|
return "TCP";
|
|
|
|
break;
|
|
|
|
case i2p::data::RouterInfo::eTransportSSU:
|
|
|
|
default:
|
|
|
|
return "UDP";
|
|
|
|
}
|
2016-07-18 18:01:58 +00:00
|
|
|
}
|
2014-02-09 20:15:47 +00:00
|
|
|
}
|
2015-01-03 20:38:48 +00:00
|
|
|
}
|
2016-07-12 00:00:00 +00:00
|
|
|
#else /* USE_UPNP */
|
|
|
|
namespace i2p {
|
|
|
|
namespace transport {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif /* USE_UPNP */
|