Defaults.cpp 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  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. // bin2c'd signed default root topology dictionary
  34. #include "../root-topology/ZT_DEFAULT_ROOT_TOPOLOGY.c"
  35. #ifdef __WINDOWS__
  36. #include <WinSock2.h>
  37. #include <Windows.h>
  38. #include <ShlObj.h>
  39. #endif
  40. namespace ZeroTier {
  41. const Defaults ZT_DEFAULTS;
  42. static inline std::string _mkDefaultHomePath()
  43. {
  44. #ifdef __UNIX_LIKE__
  45. #ifdef __APPLE__
  46. return std::string("/Library/Application Support/ZeroTier/One");
  47. #else
  48. return std::string("/var/lib/zerotier-one");
  49. #endif
  50. #else // not __UNIX_LIKE__
  51. #ifdef __WINDOWS__
  52. char buf[16384];
  53. if (SUCCEEDED(SHGetFolderPathA(NULL,CSIDL_COMMON_APPDATA,NULL,0,buf)))
  54. return (std::string(buf) + "\\ZeroTier\\One");
  55. else return std::string("C:\\ZeroTier\\One");
  56. #else
  57. #error Unknown platform, please define a default home path!
  58. #endif
  59. #endif // __UNIX_LIKE__ or not...
  60. }
  61. static inline std::map< Address,Identity > _mkRootTopologyAuth()
  62. {
  63. std::map< Address,Identity > ua;
  64. { // 0001
  65. Identity id("77792b1c02:0:b5c361e8e9c2154e82c3e902fdfc337468b092a7c4d8dc685c37eb10ee4f3c17cc0bb1d024167e8cb0824d12263428373582da3d0a9a14b36e4546c317e811e6");
  66. ua[id.address()] = id;
  67. }
  68. { // 0002
  69. Identity id("86921e6de1:0:9ba04f9f12ed54ef567f548cb69d31e404537d7b0ee000c63f3d7c8d490a1a47a5a5b2af0cbe12d23f9194270593f298d936d7c872612ea509ef1c67ce2c7fc1");
  70. ua[id.address()] = id;
  71. }
  72. { // 0003
  73. Identity id("90302b7025:0:358154a57af1b7afa07d0d91b69b92eaad2f11ade7f02343861f0c1b757d15626e8cb7f08fc52993d2202a39cbf5128c5647ee8c63d27d92db5a1d0fbe1eba19");
  74. ua[id.address()] = id;
  75. }
  76. { // 0004
  77. Identity id("e5174078ee:0:c3f90daa834a74ee47105f5726ae2e29fc8ae0e939c9326788b52b16d847354de8de3b13a81896bbb509b91e1da21763073a30bbfb2b8e994550798d30a2d709");
  78. ua[id.address()] = id;
  79. }
  80. return ua;
  81. }
  82. static inline std::map< Address,Identity > _mkUpdateAuth()
  83. {
  84. std::map< Address,Identity > ua;
  85. { // 0001
  86. Identity id("e9bc3707b5:0:c4cef17bde99eadf9748c4fd11b9b06dc5cd8eb429227811d2c336e6b96a8d329e8abd0a4f45e47fe1bcebf878c004c822d952ff77fc2833af4c74e65985c435");
  87. ua[id.address()] = id;
  88. }
  89. { // 0002
  90. Identity id("56520eaf93:0:7d858b47988b34399a9a31136de07b46104d7edb4a98fa1d6da3e583d3a33e48be531532b886f0b12cd16794a66ab9220749ec5112cbe96296b18fe0cc79ca05");
  91. ua[id.address()] = id;
  92. }
  93. { // 0003
  94. Identity id("7c195de2e0:0:9f659071c960f9b0f0b96f9f9ecdaa27c7295feed9c79b7db6eedcc11feb705e6dd85c70fa21655204d24c897865b99eb946b753a2bbcf2be5f5e006ae618c54");
  95. ua[id.address()] = id;
  96. }
  97. { // 0004
  98. Identity id("415f4cfde7:0:54118e87777b0ea5d922c10b337c4f4bd1db7141845bd54004b3255551a6e356ba6b9e1e85357dbfafc45630b8faa2ebf992f31479e9005f0472685f2d8cbd6e");
  99. ua[id.address()] = id;
  100. }
  101. return ua;
  102. }
  103. static inline const char *_mkUpdateUrl()
  104. {
  105. #if defined(__LINUX__) && ( defined(__i386__) || defined(__x86_64) || defined(__x86_64__) || defined(__amd64) || defined(__i386) )
  106. if (sizeof(void *) == 8)
  107. return "http://download.zerotier.com/ZeroTierOneInstaller-linux-x64-LATEST.nfo";
  108. else return "http://download.zerotier.com/ZeroTierOneInstaller-linux-x86-LATEST.nfo";
  109. #define GOT_UPDATE_URL
  110. #endif
  111. #ifdef __APPLE__
  112. return "http://download.zerotier.com/ZeroTierOneInstaller-mac-combined-LATEST.nfo";
  113. #define GOT_UPDATE_URL
  114. #endif
  115. #ifdef __WINDOWS__
  116. return "http://download.zerotier.com/ZeroTierOneInstaller-windows-intel-LATEST.nfo";
  117. #define GOT_UPDATE_URL
  118. #endif
  119. #ifndef GOT_UPDATE_URL
  120. return "";
  121. #endif
  122. }
  123. Defaults::Defaults() :
  124. #ifdef ZT_TRACE_MULTICAST
  125. multicastTraceWatcher(ZT_TRACE_MULTICAST),
  126. #endif
  127. defaultHomePath(_mkDefaultHomePath()),
  128. defaultRootTopology((const char *)ZT_DEFAULT_ROOT_TOPOLOGY,ZT_DEFAULT_ROOT_TOPOLOGY_LEN),
  129. rootTopologyAuthorities(_mkRootTopologyAuth()),
  130. updateAuthorities(_mkUpdateAuth()),
  131. updateLatestNfoURL(_mkUpdateUrl()),
  132. rootTopologyUpdateURL("http://download.zerotier.com/net/topology/ROOT"),
  133. v4Broadcast(((uint32_t)0xffffffff),ZT_DEFAULT_UDP_PORT)
  134. {
  135. }
  136. } // namespace ZeroTier