PortMapper.cpp 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357
  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. // use initnatpmp to check if we can bind a port at all
  75. natpmp_t _natpmp;
  76. int result = initnatpmp(&_natpmp,0,0);
  77. if (result !=0 ) {
  78. closenatpmp(&_natpmp);
  79. #ifdef ZT_PORTMAPPER_TRACE
  80. PM_TRACE("PortMapper: init failed %d. You might not have any IP addresses yet. Trying again in %d" ZT_EOL_S, retrytime);
  81. #endif
  82. Thread::sleep(retrytime);
  83. retrytime = retrytime * 2;
  84. if (retrytime > ZT_PORTMAPPER_REFRESH_DELAY / 10) {
  85. retrytime = ZT_PORTMAPPER_REFRESH_DELAY / 10;
  86. }
  87. continue;
  88. } else {
  89. closenatpmp(&_natpmp);
  90. retrytime = 500;
  91. }
  92. // ---------------------------------------------------------------------
  93. // NAT-PMP mode (preferred)
  94. // ---------------------------------------------------------------------
  95. if (mode == 0) {
  96. natpmp_t natpmp;
  97. natpmpresp_t response;
  98. int r = 0;
  99. bool natPmpSuccess = false;
  100. for(int tries=0;tries<60;++tries) {
  101. int tryPort = (int)localPort + tries;
  102. if (tryPort >= 65535)
  103. tryPort = (tryPort - 65535) + 1025;
  104. memset(&natpmp,0,sizeof(natpmp));
  105. memset(&response,0,sizeof(response));
  106. if (initnatpmp(&natpmp,0,0) != 0) {
  107. mode = 1;
  108. closenatpmp(&natpmp);
  109. #ifdef ZT_PORTMAPPER_TRACE
  110. PM_TRACE("PortMapper: NAT-PMP: init failed, switching to UPnP mode" ZT_EOL_S);
  111. #endif
  112. break;
  113. }
  114. InetAddress publicAddress;
  115. sendpublicaddressrequest(&natpmp);
  116. int64_t myTimeout = OSUtils::now() + 5000;
  117. do {
  118. fd_set fds;
  119. struct timeval timeout;
  120. FD_ZERO(&fds);
  121. FD_SET(natpmp.s, &fds);
  122. getnatpmprequesttimeout(&natpmp, &timeout);
  123. select(FD_SETSIZE, &fds, NULL, NULL, &timeout);
  124. r = readnatpmpresponseorretry(&natpmp, &response);
  125. if (OSUtils::now() >= myTimeout)
  126. break;
  127. } while (r == NATPMP_TRYAGAIN);
  128. if (r == 0) {
  129. publicAddress = InetAddress((uint32_t)response.pnu.publicaddress.addr.s_addr,0);
  130. } else {
  131. #ifdef ZT_PORTMAPPER_TRACE
  132. PM_TRACE("PortMapper: NAT-PMP: request for external address failed, aborting..." ZT_EOL_S);
  133. #endif
  134. closenatpmp(&natpmp);
  135. break;
  136. }
  137. sendnewportmappingrequest(&natpmp,NATPMP_PROTOCOL_UDP,localPort,tryPort,(ZT_PORTMAPPER_REFRESH_DELAY * 2) / 1000);
  138. myTimeout = OSUtils::now() + 10000;
  139. do {
  140. fd_set fds;
  141. struct timeval timeout;
  142. FD_ZERO(&fds);
  143. FD_SET(natpmp.s, &fds);
  144. getnatpmprequesttimeout(&natpmp, &timeout);
  145. select(FD_SETSIZE, &fds, NULL, NULL, &timeout);
  146. r = readnatpmpresponseorretry(&natpmp, &response);
  147. if (OSUtils::now() >= myTimeout)
  148. break;
  149. } while (r == NATPMP_TRYAGAIN);
  150. if (r == 0) {
  151. publicAddress.setPort(response.pnu.newportmapping.mappedpublicport);
  152. #ifdef ZT_PORTMAPPER_TRACE
  153. char paddr[128];
  154. PM_TRACE("PortMapper: NAT-PMP: mapped %u to %s" ZT_EOL_S,(unsigned int)localPort,publicAddress.toString(paddr));
  155. #endif
  156. Mutex::Lock sl(surface_l);
  157. surface.clear();
  158. surface.push_back(publicAddress);
  159. natPmpSuccess = true;
  160. closenatpmp(&natpmp);
  161. break;
  162. } else {
  163. closenatpmp(&natpmp);
  164. // continue
  165. }
  166. }
  167. if (!natPmpSuccess) {
  168. mode = 1;
  169. #ifdef ZT_PORTMAPPER_TRACE
  170. PM_TRACE("PortMapper: NAT-PMP: request failed, switching to UPnP mode" ZT_EOL_S);
  171. #endif
  172. continue;
  173. }
  174. }
  175. // ---------------------------------------------------------------------
  176. // ---------------------------------------------------------------------
  177. // UPnP mode
  178. // ---------------------------------------------------------------------
  179. if (mode == 1) {
  180. char lanaddr[4096];
  181. 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
  182. char inport[16];
  183. char outport[16];
  184. struct UPNPUrls urls;
  185. struct IGDdatas data;
  186. int upnpError = 0;
  187. UPNPDev *devlist = upnpDiscoverAll(5000,(const char *)0,(const char *)0,0,0,2,&upnpError);
  188. if (devlist) {
  189. #ifdef ZT_PORTMAPPER_TRACE
  190. {
  191. UPNPDev *dev = devlist;
  192. while (dev) {
  193. PM_TRACE("PortMapper: found UPnP device at URL '%s': %s" ZT_EOL_S,dev->descURL,dev->st);
  194. dev = dev->pNext;
  195. }
  196. }
  197. #endif
  198. memset(lanaddr,0,sizeof(lanaddr));
  199. memset(externalip,0,sizeof(externalip));
  200. memset(&urls,0,sizeof(urls));
  201. memset(&data,0,sizeof(data));
  202. OSUtils::ztsnprintf(inport,sizeof(inport),"%d",localPort);
  203. int foundValidIGD = 0;
  204. if ((foundValidIGD = UPNP_GetValidIGD(devlist,&urls,&data,lanaddr,sizeof(lanaddr)))&&(lanaddr[0])) {
  205. #ifdef ZT_PORTMAPPER_TRACE
  206. PM_TRACE("PortMapper: UPnP: my LAN IP address: %s" ZT_EOL_S,lanaddr);
  207. #endif
  208. if ((UPNP_GetExternalIPAddress(urls.controlURL,data.first.servicetype,externalip) == UPNPCOMMAND_SUCCESS)&&(externalip[0])) {
  209. #ifdef ZT_PORTMAPPER_TRACE
  210. PM_TRACE("PortMapper: UPnP: my external IP address: %s" ZT_EOL_S,externalip);
  211. #endif
  212. for(int tries=0;tries<60;++tries) {
  213. int tryPort = (int)localPort + tries;
  214. if (tryPort >= 65535)
  215. tryPort = (tryPort - 65535) + 1025;
  216. OSUtils::ztsnprintf(outport,sizeof(outport),"%u",tryPort);
  217. // First check and see if this port is already mapped to the
  218. // same unique name. If so, keep this mapping and don't try
  219. // to map again since this can break buggy routers. But don't
  220. // fail if this command fails since not all routers support it.
  221. {
  222. char haveIntClient[128]; // 128 == big enough for all these as per miniupnpc "documentation"
  223. char haveIntPort[128];
  224. char haveDesc[128];
  225. char haveEnabled[128];
  226. char haveLeaseDuration[128];
  227. memset(haveIntClient,0,sizeof(haveIntClient));
  228. memset(haveIntPort,0,sizeof(haveIntPort));
  229. memset(haveDesc,0,sizeof(haveDesc));
  230. memset(haveEnabled,0,sizeof(haveEnabled));
  231. memset(haveLeaseDuration,0,sizeof(haveLeaseDuration));
  232. if ((UPNP_GetSpecificPortMappingEntry(urls.controlURL,data.first.servicetype,outport,"UDP",(const char *)0,haveIntClient,haveIntPort,haveDesc,haveEnabled,haveLeaseDuration) == UPNPCOMMAND_SUCCESS)&&(uniqueName == haveDesc)) {
  233. #ifdef ZT_PORTMAPPER_TRACE
  234. PM_TRACE("PortMapper: UPnP: reusing previously reserved external port: %s" ZT_EOL_S,outport);
  235. #endif
  236. Mutex::Lock sl(surface_l);
  237. surface.clear();
  238. InetAddress tmp(externalip);
  239. tmp.setPort(tryPort);
  240. surface.push_back(tmp);
  241. break;
  242. }
  243. }
  244. // Try to map this port
  245. int mapResult = 0;
  246. if ((mapResult = UPNP_AddPortMapping(urls.controlURL,data.first.servicetype,outport,inport,lanaddr,uniqueName.c_str(),"UDP",(const char *)0,"0")) == UPNPCOMMAND_SUCCESS) {
  247. #ifdef ZT_PORTMAPPER_TRACE
  248. PM_TRACE("PortMapper: UPnP: reserved external port: %s" ZT_EOL_S,outport);
  249. #endif
  250. Mutex::Lock sl(surface_l);
  251. surface.clear();
  252. InetAddress tmp(externalip);
  253. tmp.setPort(tryPort);
  254. surface.push_back(tmp);
  255. break;
  256. } else {
  257. #ifdef ZT_PORTMAPPER_TRACE
  258. PM_TRACE("PortMapper: UPnP: UPNP_AddPortMapping(%s) failed: %d" ZT_EOL_S,outport,mapResult);
  259. #endif
  260. Thread::sleep(1000);
  261. }
  262. }
  263. } else {
  264. mode = 0;
  265. #ifdef ZT_PORTMAPPER_TRACE
  266. PM_TRACE("PortMapper: UPnP: UPNP_GetExternalIPAddress failed, returning to NAT-PMP mode" ZT_EOL_S);
  267. #endif
  268. }
  269. } else {
  270. mode = 0;
  271. #ifdef ZT_PORTMAPPER_TRACE
  272. PM_TRACE("PortMapper: UPnP: UPNP_GetValidIGD failed, returning to NAT-PMP mode" ZT_EOL_S);
  273. #endif
  274. }
  275. freeUPNPDevlist(devlist);
  276. if(foundValidIGD) {
  277. FreeUPNPUrls(&urls);
  278. }
  279. } else {
  280. mode = 0;
  281. #ifdef ZT_PORTMAPPER_TRACE
  282. PM_TRACE("PortMapper: upnpDiscover failed, returning to NAT-PMP mode: %d" ZT_EOL_S,upnpError);
  283. #endif
  284. break;
  285. }
  286. }
  287. // ---------------------------------------------------------------------
  288. #ifdef ZT_PORTMAPPER_TRACE
  289. PM_TRACE("UPNPClient: rescanning in %d ms" ZT_EOL_S,ZT_PORTMAPPER_REFRESH_DELAY);
  290. #endif
  291. Thread::sleep(ZT_PORTMAPPER_REFRESH_DELAY);
  292. }
  293. delete this;
  294. }
  295. volatile bool run;
  296. int localPort;
  297. std::string uniqueName;
  298. Mutex surface_l;
  299. std::vector<InetAddress> surface;
  300. };
  301. PortMapper::PortMapper(int localUdpPortToMap,const char *uniqueName)
  302. {
  303. _impl = new PortMapperImpl(localUdpPortToMap,uniqueName);
  304. Thread::start(_impl);
  305. }
  306. PortMapper::~PortMapper()
  307. {
  308. _impl->run = false;
  309. }
  310. std::vector<InetAddress> PortMapper::get() const
  311. {
  312. Mutex::Lock _l(_impl->surface_l);
  313. return _impl->surface;
  314. }
  315. } // namespace ZeroTier
  316. #endif // ZT_USE_MINIUPNPC