PortMapper.cpp 10.0 KB

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