2017-08-07 06:26:01 +00:00
|
|
|
// Copyright 2017 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2+
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#ifdef USE_UPNP
|
|
|
|
|
|
|
|
#include "Common/UPnP.h"
|
|
|
|
|
|
|
|
#include "Common/Logging/Log.h"
|
|
|
|
|
2017-08-07 06:41:48 +00:00
|
|
|
#include <array>
|
2017-08-07 06:45:39 +00:00
|
|
|
#include <cstdlib>
|
2017-08-07 06:26:01 +00:00
|
|
|
#include <cstring>
|
|
|
|
#include <miniupnpc.h>
|
|
|
|
#include <miniwget.h>
|
|
|
|
#include <string>
|
|
|
|
#include <thread>
|
|
|
|
#include <upnpcommands.h>
|
2017-08-07 06:45:39 +00:00
|
|
|
#include <vector>
|
2017-08-07 06:26:01 +00:00
|
|
|
|
2017-08-07 06:37:17 +00:00
|
|
|
static UPNPUrls s_urls;
|
|
|
|
static IGDdatas s_data;
|
2017-08-07 06:41:48 +00:00
|
|
|
static std::array<char, 20> s_our_ip;
|
2017-08-07 06:37:17 +00:00
|
|
|
static u16 s_mapped = 0;
|
|
|
|
static std::thread s_thread;
|
2017-08-07 06:26:01 +00:00
|
|
|
|
|
|
|
// called from ---UPnP--- thread
|
|
|
|
// discovers the IGD
|
2017-08-07 06:43:24 +00:00
|
|
|
static bool InitUPnP()
|
2017-08-07 06:26:01 +00:00
|
|
|
{
|
|
|
|
static bool s_inited = false;
|
|
|
|
static bool s_error = false;
|
|
|
|
|
|
|
|
// Don't init if already inited
|
|
|
|
if (s_inited)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
// Don't init if it failed before
|
|
|
|
if (s_error)
|
|
|
|
return false;
|
|
|
|
|
2017-08-14 01:45:54 +00:00
|
|
|
s_urls = {};
|
|
|
|
s_data = {};
|
2017-08-07 06:26:01 +00:00
|
|
|
|
|
|
|
// Find all UPnP devices
|
2017-08-07 18:34:53 +00:00
|
|
|
int upnperror = 0;
|
2017-08-07 06:26:01 +00:00
|
|
|
std::unique_ptr<UPNPDev, decltype(&freeUPNPDevlist)> devlist(nullptr, freeUPNPDevlist);
|
|
|
|
#if MINIUPNPC_API_VERSION >= 14
|
|
|
|
devlist.reset(upnpDiscover(2000, nullptr, nullptr, 0, 0, 2, &upnperror));
|
|
|
|
#else
|
|
|
|
devlist.reset(upnpDiscover(2000, nullptr, nullptr, 0, 0, &upnperror));
|
|
|
|
#endif
|
|
|
|
if (!devlist)
|
|
|
|
{
|
|
|
|
WARN_LOG(NETPLAY, "An error occurred trying to discover UPnP devices.");
|
|
|
|
|
|
|
|
s_error = true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Look for the IGD
|
|
|
|
for (UPNPDev* dev = devlist.get(); dev; dev = dev->pNext)
|
|
|
|
{
|
2017-08-07 18:34:08 +00:00
|
|
|
if (!std::strstr(dev->st, "InternetGatewayDevice"))
|
|
|
|
continue;
|
2017-08-07 06:26:01 +00:00
|
|
|
|
2017-08-07 06:58:00 +00:00
|
|
|
int desc_xml_size = 0;
|
|
|
|
std::unique_ptr<char, decltype(&std::free)> desc_xml(nullptr, std::free);
|
2017-08-07 06:26:01 +00:00
|
|
|
int statusCode = 200;
|
|
|
|
#if MINIUPNPC_API_VERSION >= 16
|
2017-08-07 06:58:00 +00:00
|
|
|
desc_xml.reset(
|
|
|
|
static_cast<char*>(miniwget_getaddr(dev->descURL, &desc_xml_size, s_our_ip.data(),
|
2017-08-07 06:41:48 +00:00
|
|
|
static_cast<int>(s_our_ip.size()), 0, &statusCode)));
|
|
|
|
#else
|
2017-08-07 06:58:00 +00:00
|
|
|
desc_xml.reset(static_cast<char*>(miniwget_getaddr(
|
|
|
|
dev->descURL, &desc_xml_size, s_our_ip.data(), static_cast<int>(s_our_ip.size()), 0)));
|
2017-08-07 06:26:01 +00:00
|
|
|
#endif
|
2017-08-07 06:58:00 +00:00
|
|
|
if (desc_xml && statusCode == 200)
|
2017-08-07 06:26:01 +00:00
|
|
|
{
|
2017-08-07 06:58:00 +00:00
|
|
|
parserootdesc(desc_xml.get(), desc_xml_size, &s_data);
|
2017-08-07 06:37:17 +00:00
|
|
|
GetUPNPUrls(&s_urls, &s_data, dev->descURL, 0);
|
2017-08-07 06:26:01 +00:00
|
|
|
|
|
|
|
NOTICE_LOG(NETPLAY, "Got info from IGD at %s.", dev->descURL);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
WARN_LOG(NETPLAY, "Error getting info from IGD at %s.", dev->descURL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
s_inited = true;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// called from ---UPnP--- thread
|
|
|
|
// Attempt to stop portforwarding.
|
|
|
|
// --
|
|
|
|
// NOTE: It is important that this happens! A few very crappy routers
|
|
|
|
// apparently do not delete UPnP mappings on their own, so if you leave them
|
|
|
|
// hanging, the NVRAM will fill with portmappings, and eventually all UPnP
|
|
|
|
// requests will fail silently, with the only recourse being a factory reset.
|
|
|
|
// --
|
2017-08-07 06:43:24 +00:00
|
|
|
static bool UnmapPort(const u16 port)
|
2017-08-07 06:26:01 +00:00
|
|
|
{
|
2017-08-07 06:45:39 +00:00
|
|
|
std::string port_str = std::to_string(port);
|
2017-08-07 06:37:17 +00:00
|
|
|
UPNP_DeletePortMapping(s_urls.controlURL, s_data.first.servicetype, port_str.c_str(), "UDP",
|
|
|
|
nullptr);
|
2017-08-07 06:26:01 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// called from ---UPnP--- thread
|
|
|
|
// Attempt to portforward!
|
2017-08-07 06:43:24 +00:00
|
|
|
static bool MapPort(const char* addr, const u16 port)
|
2017-08-07 06:26:01 +00:00
|
|
|
{
|
2017-08-07 06:37:17 +00:00
|
|
|
if (s_mapped > 0)
|
2017-08-07 06:43:24 +00:00
|
|
|
UnmapPort(s_mapped);
|
2017-08-07 06:26:01 +00:00
|
|
|
|
2017-08-07 06:45:39 +00:00
|
|
|
std::string port_str = std::to_string(port);
|
2017-08-07 06:26:01 +00:00
|
|
|
int result = UPNP_AddPortMapping(
|
2017-08-07 06:41:48 +00:00
|
|
|
s_urls.controlURL, s_data.first.servicetype, port_str.c_str(), port_str.c_str(), addr,
|
2017-08-07 06:37:17 +00:00
|
|
|
(std::string("dolphin-emu UDP on ") + addr).c_str(), "UDP", nullptr, nullptr);
|
2017-08-07 06:26:01 +00:00
|
|
|
|
|
|
|
if (result != 0)
|
|
|
|
return false;
|
|
|
|
|
2017-08-07 06:37:17 +00:00
|
|
|
s_mapped = port;
|
2017-08-07 06:26:01 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// UPnP thread: try to map a port
|
2017-08-07 06:43:24 +00:00
|
|
|
static void MapPortThread(const u16 port)
|
2017-08-07 06:26:01 +00:00
|
|
|
{
|
2017-08-07 06:43:24 +00:00
|
|
|
if (InitUPnP() && MapPort(s_our_ip.data(), port))
|
2017-08-07 06:26:01 +00:00
|
|
|
{
|
2017-08-07 06:41:48 +00:00
|
|
|
NOTICE_LOG(NETPLAY, "Successfully mapped port %d to %s.", port, s_our_ip.data());
|
2017-08-07 06:26:01 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-08-07 06:41:48 +00:00
|
|
|
WARN_LOG(NETPLAY, "Failed to map port %d to %s.", port, s_our_ip.data());
|
2017-08-07 06:26:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// UPnP thread: try to unmap a port
|
2017-08-07 06:43:24 +00:00
|
|
|
static void UnmapPortThread()
|
2017-08-07 06:26:01 +00:00
|
|
|
{
|
2017-08-07 06:37:17 +00:00
|
|
|
if (s_mapped > 0)
|
2017-08-07 06:43:24 +00:00
|
|
|
UnmapPort(s_mapped);
|
2017-08-07 06:26:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void UPnP::TryPortmapping(u16 port)
|
|
|
|
{
|
2017-08-07 06:37:17 +00:00
|
|
|
if (s_thread.joinable())
|
|
|
|
s_thread.join();
|
2017-08-07 06:43:24 +00:00
|
|
|
s_thread = std::thread(&MapPortThread, port);
|
2017-08-07 06:26:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void UPnP::StopPortmapping()
|
|
|
|
{
|
2017-08-07 06:37:17 +00:00
|
|
|
if (s_thread.joinable())
|
|
|
|
s_thread.join();
|
2017-08-07 06:43:24 +00:00
|
|
|
s_thread = std::thread(&UnmapPortThread);
|
2017-08-07 06:37:17 +00:00
|
|
|
s_thread.join();
|
2017-08-07 06:26:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|