PortMapper.cpp 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358
  1. /*
  2. * Copyright (c)2019 ZeroTier, Inc.
  3. *
  4. * Use of this software is governed by the Business Source License included
  5. * in the LICENSE.TXT file in the project's root directory.
  6. *
  7. * Change Date: 2025-01-01
  8. *
  9. * On the date above, in accordance with the Business Source License, use
  10. * of this software will be governed by version 2.0 of the Apache License.
  11. */
  12. /****/
  13. #ifdef ZT_USE_MINIUPNPC
  14. // Uncomment to dump debug messages
  15. //#define ZT_PORTMAPPER_TRACE 1
  16. #ifdef __ANDROID__
  17. #include <android/log.h>
  18. #define PM_TRACE(...) ((void)__android_log_print(ANDROID_LOG_DEBUG, "PortMapper", __VA_ARGS__))
  19. #else
  20. #define PM_TRACE(...) fprintf(stderr, __VA_ARGS__)
  21. #endif
  22. #include <stdio.h>
  23. #include <stdlib.h>
  24. #include <string.h>
  25. #include <string>
  26. #include "../node/Utils.hpp"
  27. #include "OSUtils.hpp"
  28. #include "PortMapper.hpp"
  29. // These must be defined to get rid of dynamic export stuff in libminiupnpc and libnatpmp
  30. #ifdef __WINDOWS__
  31. #ifndef MINIUPNP_STATICLIB
  32. #define MINIUPNP_STATICLIB
  33. #endif
  34. #ifndef STATICLIB
  35. #define STATICLIB
  36. #endif
  37. #endif
  38. #ifdef ZT_USE_SYSTEM_MINIUPNPC
  39. #include <miniupnpc/miniupnpc.h>
  40. #include <miniupnpc/upnpcommands.h>
  41. #else
  42. #include "../ext/miniupnpc/miniupnpc.h"
  43. #include "../ext/miniupnpc/upnpcommands.h"
  44. #endif
  45. #ifdef ZT_USE_SYSTEM_NATPMP
  46. #include <natpmp.h>
  47. #else
  48. #ifdef __ANDROID__
  49. #include "natpmp.h"
  50. #else
  51. #include "../ext/libnatpmp/natpmp.h"
  52. #endif
  53. #endif
  54. namespace ZeroTier {
  55. class PortMapperImpl
  56. {
  57. public:
  58. PortMapperImpl(int localUdpPortToMap,const char *un) :
  59. run(true),
  60. localPort(localUdpPortToMap),
  61. uniqueName(un)
  62. {
  63. }
  64. ~PortMapperImpl() {}
  65. void threadMain()
  66. throw()
  67. {
  68. int mode = 0; // 0 == NAT-PMP, 1 == UPnP
  69. int retrytime = 500;
  70. #ifdef ZT_PORTMAPPER_TRACE
  71. fprintf(stderr,"PortMapper: started for UDP port %d" ZT_EOL_S,localPort);
  72. #endif
  73. while (run) {
  74. {
  75. // use initnatpmp to check if we can bind a port at all
  76. natpmp_t _natpmp;
  77. int result = initnatpmp(&_natpmp,0,0);
  78. if (result == NATPMP_ERR_CANNOTGETGATEWAY || result == NATPMP_ERR_SOCKETERROR) {
  79. closenatpmp(&_natpmp);
  80. #ifdef ZT_PORTMAPPER_TRACE
  81. PM_TRACE("PortMapper: init failed %d. You might not have an internet connection yet. Trying again in %d" ZT_EOL_S, result, retrytime);
  82. #endif
  83. Thread::sleep(retrytime);
  84. retrytime = retrytime * 2;
  85. if (retrytime > ZT_PORTMAPPER_REFRESH_DELAY / 10) {
  86. retrytime = ZT_PORTMAPPER_REFRESH_DELAY / 10;
  87. }
  88. continue;
  89. } else {
  90. closenatpmp(&_natpmp);
  91. retrytime = 500;
  92. }
  93. }
  94. // ---------------------------------------------------------------------
  95. // NAT-PMP mode (preferred)
  96. // ---------------------------------------------------------------------
  97. if (mode == 0) {
  98. natpmp_t natpmp;
  99. natpmpresp_t response;
  100. int r = 0;
  101. bool natPmpSuccess = false;
  102. for(int tries=0;tries<60;++tries) {
  103. int tryPort = (int)localPort + tries;
  104. if (tryPort >= 65535)
  105. tryPort = (tryPort - 65535) + 1025;
  106. memset(&natpmp,0,sizeof(natpmp));
  107. memset(&response,0,sizeof(response));
  108. if (initnatpmp(&natpmp,0,0) != 0) {
  109. mode = 1;
  110. closenatpmp(&natpmp);
  111. #ifdef ZT_PORTMAPPER_TRACE
  112. PM_TRACE("PortMapper: NAT-PMP: init failed, switching to UPnP mode" ZT_EOL_S);
  113. #endif
  114. break;
  115. }
  116. InetAddress publicAddress;
  117. sendpublicaddressrequest(&natpmp);
  118. int64_t myTimeout = OSUtils::now() + 5000;
  119. do {
  120. fd_set fds;
  121. struct timeval timeout;
  122. FD_ZERO(&fds);
  123. FD_SET(natpmp.s, &fds);
  124. getnatpmprequesttimeout(&natpmp, &timeout);
  125. select(FD_SETSIZE, &fds, NULL, NULL, &timeout);
  126. r = readnatpmpresponseorretry(&natpmp, &response);
  127. if (OSUtils::now() >= myTimeout)
  128. break;
  129. } while (r == NATPMP_TRYAGAIN);
  130. if (r == 0) {
  131. publicAddress = InetAddress((uint32_t)response.pnu.publicaddress.addr.s_addr,0);
  132. } else {
  133. #ifdef ZT_PORTMAPPER_TRACE
  134. PM_TRACE("PortMapper: NAT-PMP: request for external address failed, aborting..." ZT_EOL_S);
  135. #endif
  136. closenatpmp(&natpmp);
  137. break;
  138. }
  139. sendnewportmappingrequest(&natpmp,NATPMP_PROTOCOL_UDP,localPort,tryPort,(ZT_PORTMAPPER_REFRESH_DELAY * 2) / 1000);
  140. myTimeout = OSUtils::now() + 10000;
  141. do {
  142. fd_set fds;
  143. struct timeval timeout;
  144. FD_ZERO(&fds);
  145. FD_SET(natpmp.s, &fds);
  146. getnatpmprequesttimeout(&natpmp, &timeout);
  147. select(FD_SETSIZE, &fds, NULL, NULL, &timeout);
  148. r = readnatpmpresponseorretry(&natpmp, &response);
  149. if (OSUtils::now() >= myTimeout)
  150. break;
  151. } while (r == NATPMP_TRYAGAIN);
  152. if (r == 0) {
  153. publicAddress.setPort(response.pnu.newportmapping.mappedpublicport);
  154. #ifdef ZT_PORTMAPPER_TRACE
  155. char paddr[128];
  156. PM_TRACE("PortMapper: NAT-PMP: mapped %u to %s" ZT_EOL_S,(unsigned int)localPort,publicAddress.toString(paddr));
  157. #endif
  158. Mutex::Lock sl(surface_l);
  159. surface.clear();
  160. surface.push_back(publicAddress);
  161. natPmpSuccess = true;
  162. closenatpmp(&natpmp);
  163. break;
  164. } else {
  165. closenatpmp(&natpmp);
  166. // continue
  167. }
  168. }
  169. if (!natPmpSuccess) {
  170. mode = 1;
  171. #ifdef ZT_PORTMAPPER_TRACE
  172. PM_TRACE("PortMapper: NAT-PMP: request failed, switching to UPnP mode" ZT_EOL_S);
  173. #endif
  174. continue;
  175. }
  176. }
  177. // ---------------------------------------------------------------------
  178. // ---------------------------------------------------------------------
  179. // UPnP mode
  180. // ---------------------------------------------------------------------
  181. if (mode == 1) {
  182. char lanaddr[4096];
  183. char externalip[4096]; // no range checking? so make these buffers larger than any UDP packet a uPnP server could send us as a precaution :P
  184. char inport[16];
  185. char outport[16];
  186. struct UPNPUrls urls;
  187. struct IGDdatas data;
  188. int upnpError = 0;
  189. UPNPDev *devlist = upnpDiscoverAll(5000,(const char *)0,(const char *)0,0,0,2,&upnpError);
  190. if (devlist) {
  191. #ifdef ZT_PORTMAPPER_TRACE
  192. {
  193. UPNPDev *dev = devlist;
  194. while (dev) {
  195. PM_TRACE("PortMapper: found UPnP device at URL '%s': %s" ZT_EOL_S,dev->descURL,dev->st);
  196. dev = dev->pNext;
  197. }
  198. }
  199. #endif
  200. memset(lanaddr,0,sizeof(lanaddr));
  201. memset(externalip,0,sizeof(externalip));
  202. memset(&urls,0,sizeof(urls));
  203. memset(&data,0,sizeof(data));
  204. OSUtils::ztsnprintf(inport,sizeof(inport),"%d",localPort);
  205. int foundValidIGD = 0;
  206. if ((foundValidIGD = UPNP_GetValidIGD(devlist,&urls,&data,lanaddr,sizeof(lanaddr)))&&(lanaddr[0])) {
  207. #ifdef ZT_PORTMAPPER_TRACE
  208. PM_TRACE("PortMapper: UPnP: my LAN IP address: %s" ZT_EOL_S,lanaddr);
  209. #endif
  210. if ((UPNP_GetExternalIPAddress(urls.controlURL,data.first.servicetype,externalip) == UPNPCOMMAND_SUCCESS)&&(externalip[0])) {
  211. #ifdef ZT_PORTMAPPER_TRACE
  212. PM_TRACE("PortMapper: UPnP: my external IP address: %s" ZT_EOL_S,externalip);
  213. #endif
  214. for(int tries=0;tries<60;++tries) {
  215. int tryPort = (int)localPort + tries;
  216. if (tryPort >= 65535)
  217. tryPort = (tryPort - 65535) + 1025;
  218. OSUtils::ztsnprintf(outport,sizeof(outport),"%u",tryPort);
  219. // First check and see if this port is already mapped to the
  220. // same unique name. If so, keep this mapping and don't try
  221. // to map again since this can break buggy routers. But don't
  222. // fail if this command fails since not all routers support it.
  223. {
  224. char haveIntClient[128]; // 128 == big enough for all these as per miniupnpc "documentation"
  225. char haveIntPort[128];
  226. char haveDesc[128];
  227. char haveEnabled[128];
  228. char haveLeaseDuration[128];
  229. memset(haveIntClient,0,sizeof(haveIntClient));
  230. memset(haveIntPort,0,sizeof(haveIntPort));
  231. memset(haveDesc,0,sizeof(haveDesc));
  232. memset(haveEnabled,0,sizeof(haveEnabled));
  233. memset(haveLeaseDuration,0,sizeof(haveLeaseDuration));
  234. if ((UPNP_GetSpecificPortMappingEntry(urls.controlURL,data.first.servicetype,outport,"UDP",(const char *)0,haveIntClient,haveIntPort,haveDesc,haveEnabled,haveLeaseDuration) == UPNPCOMMAND_SUCCESS)&&(uniqueName == haveDesc)) {
  235. #ifdef ZT_PORTMAPPER_TRACE
  236. PM_TRACE("PortMapper: UPnP: reusing previously reserved external port: %s" ZT_EOL_S,outport);
  237. #endif
  238. Mutex::Lock sl(surface_l);
  239. surface.clear();
  240. InetAddress tmp(externalip);
  241. tmp.setPort(tryPort);
  242. surface.push_back(tmp);
  243. break;
  244. }
  245. }
  246. // Try to map this port
  247. int mapResult = 0;
  248. if ((mapResult = UPNP_AddPortMapping(urls.controlURL,data.first.servicetype,outport,inport,lanaddr,uniqueName.c_str(),"UDP",(const char *)0,"0")) == UPNPCOMMAND_SUCCESS) {
  249. #ifdef ZT_PORTMAPPER_TRACE
  250. PM_TRACE("PortMapper: UPnP: reserved external port: %s" ZT_EOL_S,outport);
  251. #endif
  252. Mutex::Lock sl(surface_l);
  253. surface.clear();
  254. InetAddress tmp(externalip);
  255. tmp.setPort(tryPort);
  256. surface.push_back(tmp);
  257. break;
  258. } else {
  259. #ifdef ZT_PORTMAPPER_TRACE
  260. PM_TRACE("PortMapper: UPnP: UPNP_AddPortMapping(%s) failed: %d" ZT_EOL_S,outport,mapResult);
  261. #endif
  262. Thread::sleep(1000);
  263. }
  264. }
  265. } else {
  266. mode = 0;
  267. #ifdef ZT_PORTMAPPER_TRACE
  268. PM_TRACE("PortMapper: UPnP: UPNP_GetExternalIPAddress failed, returning to NAT-PMP mode" ZT_EOL_S);
  269. #endif
  270. }
  271. } else {
  272. mode = 0;
  273. #ifdef ZT_PORTMAPPER_TRACE
  274. PM_TRACE("PortMapper: UPnP: UPNP_GetValidIGD failed, returning to NAT-PMP mode" ZT_EOL_S);
  275. #endif
  276. }
  277. freeUPNPDevlist(devlist);
  278. if(foundValidIGD) {
  279. FreeUPNPUrls(&urls);
  280. }
  281. } else {
  282. mode = 0;
  283. #ifdef ZT_PORTMAPPER_TRACE
  284. PM_TRACE("PortMapper: upnpDiscover failed, returning to NAT-PMP mode: %d" ZT_EOL_S,upnpError);
  285. #endif
  286. }
  287. }
  288. // ---------------------------------------------------------------------
  289. #ifdef ZT_PORTMAPPER_TRACE
  290. PM_TRACE("UPNPClient: rescanning in %d ms" ZT_EOL_S,ZT_PORTMAPPER_REFRESH_DELAY);
  291. #endif
  292. Thread::sleep(ZT_PORTMAPPER_REFRESH_DELAY);
  293. }
  294. delete this;
  295. }
  296. volatile bool run;
  297. int localPort;
  298. std::string uniqueName;
  299. Mutex surface_l;
  300. std::vector<InetAddress> surface;
  301. };
  302. PortMapper::PortMapper(int localUdpPortToMap,const char *uniqueName)
  303. {
  304. _impl = new PortMapperImpl(localUdpPortToMap,uniqueName);
  305. Thread::start(_impl);
  306. }
  307. PortMapper::~PortMapper()
  308. {
  309. _impl->run = false;
  310. }
  311. std::vector<InetAddress> PortMapper::get() const
  312. {
  313. Mutex::Lock _l(_impl->surface_l);
  314. return _impl->surface;
  315. }
  316. } // namespace ZeroTier
  317. #endif // ZT_USE_MINIUPNPC