Defaults.cpp 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  1. /*
  2. * ZeroTier One - Global Peer to Peer Ethernet
  3. * Copyright (C) 2011-2014 ZeroTier Networks LLC
  4. *
  5. * This program is free software: you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation, either version 3 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  17. *
  18. * --
  19. *
  20. * ZeroTier may be used and distributed under the terms of the GPLv3, which
  21. * are available at: http://www.gnu.org/licenses/gpl-3.0.html
  22. *
  23. * If you would like to embed ZeroTier into a commercial application or
  24. * redistribute it in a modified binary form, please contact ZeroTier Networks
  25. * LLC. Start here: http://www.zerotier.com/
  26. */
  27. #include <stdio.h>
  28. #include <stdlib.h>
  29. #include <string.h>
  30. #include "Constants.hpp"
  31. #include "Defaults.hpp"
  32. #include "Utils.hpp"
  33. #ifdef __WINDOWS__
  34. #include <WinSock2.h>
  35. #include <Windows.h>
  36. #include <ShlObj.h>
  37. #endif
  38. namespace ZeroTier {
  39. const Defaults ZT_DEFAULTS;
  40. static inline std::map< Identity,std::vector< std::pair<InetAddress,bool> > > _mkSupernodeMap()
  41. {
  42. std::map< Identity,std::vector< std::pair<InetAddress,bool> > > sn;
  43. Identity id;
  44. std::vector< std::pair<InetAddress,bool> > addrs;
  45. // Nothing special about a supernode... except that they are
  46. // designated as such and trusted to provide WHOIS lookup.
  47. // cthulhu.zerotier.com - New York, New York, USA
  48. addrs.clear();
  49. if (!id.fromString("8acf059fe3:0:482f6ee5dfe902319b419de5bdc765209c0ecda38c4d6e4fcf0d33658398b4527dcd22f93112fb9befd02fd78bf7261b333fc105d192a623ca9e50fc60b374a5"))
  50. throw std::runtime_error("invalid identity in Defaults");
  51. addrs.push_back(std::pair<InetAddress,bool>(InetAddress("162.243.77.111",ZT_DEFAULT_PORT),false));
  52. addrs.push_back(std::pair<InetAddress,bool>(InetAddress("162.243.77.111",443),true));
  53. sn[id] = addrs;
  54. // nyarlathotep.zerotier.com - San Francisco, California, USA
  55. addrs.clear();
  56. if (!id.fromString("7e19876aba:0:2a6e2b2318930f60eb097f70d0f4b028b2cd6d3d0c63c014b9039ff35390e41181f216fb2e6fa8d95c1ee9667156411905c3dccfea78d8c6dfafba688170b3fa"))
  57. throw std::runtime_error("invalid identity in Defaults");
  58. addrs.push_back(std::pair<InetAddress,bool>(InetAddress("198.199.97.220",ZT_DEFAULT_PORT),false));
  59. sn[id] = addrs;
  60. // shub-niggurath.zerotier.com - Amsterdam, Netherlands
  61. addrs.clear();
  62. if (!id.fromString("36f63d6574:0:67a776487a1a99b32f413329f2b67c43fbf6152e42c6b66e89043e69d93e48314c7d709b58a83016bd2612dd89400b856e18c553da94892f7d3ca16bf2c92c24"))
  63. throw std::runtime_error("invalid identity in Defaults");
  64. addrs.push_back(std::pair<InetAddress,bool>(InetAddress("198.211.127.172",ZT_DEFAULT_PORT),false));
  65. sn[id] = addrs;
  66. // mi-go.zerotier.com - Singapore
  67. addrs.clear();
  68. if (!id.fromString("abbb7f4622:0:89d2c6b2062b10f4ce314dfcb914c082566247090a6f74c8ba1c15c63b205f540758f0abae85287397152c9d8cf463cfe51e7a480946cd6a31495b24ca13253c"))
  69. throw std::runtime_error("invalid identity in Defaults");
  70. addrs.push_back(std::pair<InetAddress,bool>(InetAddress("128.199.254.204",ZT_DEFAULT_PORT),false));
  71. sn[id] = addrs;
  72. // shoggoth.zerotier.com - Tokyo, Japan
  73. addrs.clear();
  74. if (!id.fromString("48e8f875cb:0:5ca54f55e1094f65589f3e6d74158b6964d418ddac3570757128f1c6a2498322d92fcdcd47de459f4d1f9b38df2afd0c7b3fc247ba3d773c38ba35288f24988e"))
  75. throw std::runtime_error("invalid identity in Defaults");
  76. addrs.push_back(std::pair<InetAddress,bool>(InetAddress("108.61.200.101",ZT_DEFAULT_PORT),false));
  77. sn[id] = addrs;
  78. return sn;
  79. }
  80. static inline std::string _mkDefaultHomePath()
  81. {
  82. #ifdef __UNIX_LIKE__
  83. #ifdef __APPLE__
  84. return std::string("/Library/Application Support/ZeroTier/One");
  85. #else
  86. return std::string("/var/lib/zerotier-one");
  87. #endif
  88. #else // not __UNIX_LIKE__
  89. #ifdef __WINDOWS__
  90. char buf[16384];
  91. if (SUCCEEDED(SHGetFolderPathA(NULL,CSIDL_COMMON_APPDATA,NULL,0,buf)))
  92. return (std::string(buf) + "\\ZeroTier\\One");
  93. else return std::string("C:\\ZeroTier\\One");
  94. #else
  95. // unknown platform
  96. #endif
  97. #endif // __UNIX_LIKE__ or not...
  98. }
  99. static inline std::map< Address,Identity > _mkUpdateAuth()
  100. {
  101. std::map< Address,Identity > ua;
  102. { // 0001
  103. Identity id("e9bc3707b5:0:c4cef17bde99eadf9748c4fd11b9b06dc5cd8eb429227811d2c336e6b96a8d329e8abd0a4f45e47fe1bcebf878c004c822d952ff77fc2833af4c74e65985c435");
  104. ua[id.address()] = id;
  105. }
  106. { // 0002
  107. Identity id("56520eaf93:0:7d858b47988b34399a9a31136de07b46104d7edb4a98fa1d6da3e583d3a33e48be531532b886f0b12cd16794a66ab9220749ec5112cbe96296b18fe0cc79ca05");
  108. ua[id.address()] = id;
  109. }
  110. { // 0003
  111. Identity id("7c195de2e0:0:9f659071c960f9b0f0b96f9f9ecdaa27c7295feed9c79b7db6eedcc11feb705e6dd85c70fa21655204d24c897865b99eb946b753a2bbcf2be5f5e006ae618c54");
  112. ua[id.address()] = id;
  113. }
  114. { // 0004
  115. Identity id("415f4cfde7:0:54118e87777b0ea5d922c10b337c4f4bd1db7141845bd54004b3255551a6e356ba6b9e1e85357dbfafc45630b8faa2ebf992f31479e9005f0472685f2d8cbd6e");
  116. ua[id.address()] = id;
  117. }
  118. return ua;
  119. }
  120. static inline const char *_mkUpdateUrl()
  121. {
  122. #if defined(__LINUX__) && ( defined(__i386__) || defined(__x86_64) || defined(__x86_64__) || defined(__amd64) || defined(__i386) )
  123. if (sizeof(void *) == 8)
  124. return "http://download.zerotier.com/ZeroTierOneInstaller-linux-x64-LATEST.nfo";
  125. else return "http://download.zerotier.com/ZeroTierOneInstaller-linux-x86-LATEST.nfo";
  126. #define GOT_UPDATE_URL
  127. #endif
  128. #ifdef __APPLE__
  129. return "http://download.zerotier.com/ZeroTierOneInstaller-mac-combined-LATEST.nfo";
  130. #define GOT_UPDATE_URL
  131. #endif
  132. #ifdef __WINDOWS__
  133. return "http://download.zerotier.com/ZeroTierOneInstaller-windows-intel-LATEST.nfo";
  134. #define GOT_UPDATE_URL
  135. #endif
  136. #ifndef GOT_UPDATE_URL
  137. return "";
  138. #endif
  139. }
  140. Defaults::Defaults() :
  141. #ifdef ZT_TRACE_MULTICAST
  142. multicastTraceWatcher(ZT_TRACE_MULTICAST),
  143. #endif
  144. defaultHomePath(_mkDefaultHomePath()),
  145. supernodes(_mkSupernodeMap()),
  146. updateAuthorities(_mkUpdateAuth()),
  147. updateLatestNfoURL(_mkUpdateUrl())
  148. {
  149. }
  150. } // namespace ZeroTier