PortMapper.cpp 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333
  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. if ((UPNP_GetValidIGD(devlist,&urls,&data,lanaddr,sizeof(lanaddr)))&&(lanaddr[0])) {
  184. #ifdef ZT_PORTMAPPER_TRACE
  185. PM_TRACE("PortMapper: UPnP: my LAN IP address: %s" ZT_EOL_S,lanaddr);
  186. #endif
  187. if ((UPNP_GetExternalIPAddress(urls.controlURL,data.first.servicetype,externalip) == UPNPCOMMAND_SUCCESS)&&(externalip[0])) {
  188. #ifdef ZT_PORTMAPPER_TRACE
  189. PM_TRACE("PortMapper: UPnP: my external IP address: %s" ZT_EOL_S,externalip);
  190. #endif
  191. for(int tries=0;tries<60;++tries) {
  192. int tryPort = (int)localPort + tries;
  193. if (tryPort >= 65535)
  194. tryPort = (tryPort - 65535) + 1025;
  195. OSUtils::ztsnprintf(outport,sizeof(outport),"%u",tryPort);
  196. // First check and see if this port is already mapped to the
  197. // same unique name. If so, keep this mapping and don't try
  198. // to map again since this can break buggy routers. But don't
  199. // fail if this command fails since not all routers support it.
  200. {
  201. char haveIntClient[128]; // 128 == big enough for all these as per miniupnpc "documentation"
  202. char haveIntPort[128];
  203. char haveDesc[128];
  204. char haveEnabled[128];
  205. char haveLeaseDuration[128];
  206. memset(haveIntClient,0,sizeof(haveIntClient));
  207. memset(haveIntPort,0,sizeof(haveIntPort));
  208. memset(haveDesc,0,sizeof(haveDesc));
  209. memset(haveEnabled,0,sizeof(haveEnabled));
  210. memset(haveLeaseDuration,0,sizeof(haveLeaseDuration));
  211. if ((UPNP_GetSpecificPortMappingEntry(urls.controlURL,data.first.servicetype,outport,"UDP",(const char *)0,haveIntClient,haveIntPort,haveDesc,haveEnabled,haveLeaseDuration) == UPNPCOMMAND_SUCCESS)&&(uniqueName == haveDesc)) {
  212. #ifdef ZT_PORTMAPPER_TRACE
  213. PM_TRACE("PortMapper: UPnP: reusing previously reserved external port: %s" ZT_EOL_S,outport);
  214. #endif
  215. Mutex::Lock sl(surface_l);
  216. surface.clear();
  217. InetAddress tmp(externalip);
  218. tmp.setPort(tryPort);
  219. surface.push_back(tmp);
  220. break;
  221. }
  222. }
  223. // Try to map this port
  224. int mapResult = 0;
  225. if ((mapResult = UPNP_AddPortMapping(urls.controlURL,data.first.servicetype,outport,inport,lanaddr,uniqueName.c_str(),"UDP",(const char *)0,"0")) == UPNPCOMMAND_SUCCESS) {
  226. #ifdef ZT_PORTMAPPER_TRACE
  227. PM_TRACE("PortMapper: UPnP: reserved external port: %s" ZT_EOL_S,outport);
  228. #endif
  229. Mutex::Lock sl(surface_l);
  230. surface.clear();
  231. InetAddress tmp(externalip);
  232. tmp.setPort(tryPort);
  233. surface.push_back(tmp);
  234. break;
  235. } else {
  236. #ifdef ZT_PORTMAPPER_TRACE
  237. PM_TRACE("PortMapper: UPnP: UPNP_AddPortMapping(%s) failed: %d" ZT_EOL_S,outport,mapResult);
  238. #endif
  239. Thread::sleep(1000);
  240. }
  241. }
  242. } else {
  243. mode = 0;
  244. #ifdef ZT_PORTMAPPER_TRACE
  245. PM_TRACE("PortMapper: UPnP: UPNP_GetExternalIPAddress failed, returning to NAT-PMP mode" ZT_EOL_S);
  246. #endif
  247. }
  248. } else {
  249. mode = 0;
  250. #ifdef ZT_PORTMAPPER_TRACE
  251. PM_TRACE("PortMapper: UPnP: UPNP_GetValidIGD failed, returning to NAT-PMP mode" ZT_EOL_S);
  252. #endif
  253. }
  254. freeUPNPDevlist(devlist);
  255. } else {
  256. mode = 0;
  257. #ifdef ZT_PORTMAPPER_TRACE
  258. PM_TRACE("PortMapper: upnpDiscover failed, returning to NAT-PMP mode: %d" ZT_EOL_S,upnpError);
  259. #endif
  260. }
  261. }
  262. // ---------------------------------------------------------------------
  263. #ifdef ZT_PORTMAPPER_TRACE
  264. PM_TRACE("UPNPClient: rescanning in %d ms" ZT_EOL_S,ZT_PORTMAPPER_REFRESH_DELAY);
  265. #endif
  266. Thread::sleep(ZT_PORTMAPPER_REFRESH_DELAY);
  267. }
  268. delete this;
  269. }
  270. volatile bool run;
  271. int localPort;
  272. std::string uniqueName;
  273. Mutex surface_l;
  274. std::vector<InetAddress> surface;
  275. };
  276. PortMapper::PortMapper(int localUdpPortToMap,const char *uniqueName)
  277. {
  278. _impl = new PortMapperImpl(localUdpPortToMap,uniqueName);
  279. Thread::start(_impl);
  280. }
  281. PortMapper::~PortMapper()
  282. {
  283. _impl->run = false;
  284. }
  285. std::vector<InetAddress> PortMapper::get() const
  286. {
  287. Mutex::Lock _l(_impl->surface_l);
  288. return _impl->surface;
  289. }
  290. } // namespace ZeroTier
  291. #endif // ZT_USE_MINIUPNPC