Defaults.cpp 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. /*
  2. * ZeroTier One - Global Peer to Peer Ethernet
  3. * Copyright (C) 2012-2013 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. #endif
  37. namespace ZeroTier {
  38. const Defaults ZT_DEFAULTS;
  39. static inline std::map< Identity,std::vector<InetAddress> > _mkSupernodeMap()
  40. throw(std::runtime_error)
  41. {
  42. std::map< Identity,std::vector<InetAddress> > sn;
  43. Identity id;
  44. std::vector<InetAddress> addrs;
  45. // Nothing special about a supernode... except that they are
  46. // designated as such.
  47. #if 0
  48. // cthulhu.zerotier.com - New York, New York, USA
  49. addrs.clear();
  50. if (!id.fromString("271ee006a0:1:AgGXs3I+9CWrEmGMxc50x3E+trwtaa2ZMXDU6ezz92fFJXzlhRKGUY/uAToHDdH9XiLxtcA+kUQAZdC4Dy2xtqXxjw==:QgH5Nlx4oWEGVrwhNocqem+3VNd4qzt7RLrmuvqZvKPRS9R70LJYJQLlKZj0ri55Pzg+Mlwy4a4nAgfnRAWA+TW6R0EjSmq72MG585XGNfWBVk3LxMvxlNWErnVNFr2BQS9yzVp4pRjPLdCW4RB3dwEHBUgJ78rwMxQ6IghVCl8CjkDapg=="))
  51. throw std::runtime_error("invalid identity in Defaults");
  52. addrs.push_back(InetAddress("198.199.73.93",ZT_DEFAULT_UDP_PORT));
  53. sn[id] = addrs;
  54. // nyarlathotep.zerotier.com - San Francisco, California, USA
  55. addrs.clear();
  56. if (!id.fromString("fa9be4008b:1:AwCHXEi/PJuhtOPUZxnBSMiuGvj6XeRMWu9R9aLR3JD1qluADLQzUPSP2+81Dqvgi2wkQ2cqEpOlDPeUCvtlZwdXEA==:QgH4usG/wzsoUCtO2LL3qkwugtoXEz1PUJbmUzY8vbwzc5bckmVPjMqb4q2CF71+QVPV1K6shIV2EKkBMRSS/D/44EGEwC6tjFGZqmmogaC0P1uQeukTAF4qta46YgC4YQx54/Vd/Yfl8n1Bwmgm0gBB4W1ZQir3p+wp37MGlEN0rlXxqA=="))
  57. throw std::runtime_error("invalid identity in Defaults");
  58. addrs.push_back(InetAddress("198.199.97.220",ZT_DEFAULT_UDP_PORT));
  59. sn[id] = addrs;
  60. // shub-niggurath.zerotier.com - Amsterdam, Netherlands
  61. addrs.clear();
  62. if (!id.fromString("48099ecd05:1:AwHO7o1FdDj1nEArfchTDa6EG7Eh2GLdiH86BhcoNv0BHJN4tmrf0Y7/2SZiQFpTTwJf93iph84Dci5+k52u/qkHTQ==:QgGbir8CNxBFFPPj8Eo3Bnp2UmbnZxu/pOq3Ke0WaLBBhHzVuwM+88g7CaDxbZ0AY2VkFc9hmE3VG+xi7g0H86yfVUIBHZnb7N+DCtf8/mphZIHNgmasakRi4hU11kGyLi1nTVTnrmCfAb7w+8SCp64Q5RNvBC/Pvz7pxSwSdjIHkVqRaeo="))
  63. throw std::runtime_error("invalid identity in Defaults");
  64. addrs.push_back(InetAddress("198.211.127.172",ZT_DEFAULT_UDP_PORT));
  65. sn[id] = addrs;
  66. #endif
  67. return sn;
  68. }
  69. static inline std::string _mkDefaultHomePath()
  70. {
  71. #ifdef __UNIX_LIKE__
  72. #ifdef __APPLE__
  73. return std::string("/Library/Application Support/ZeroTier/One");
  74. #else
  75. return std::string("/var/lib/zerotier-one");
  76. #endif
  77. #else
  78. #ifdef __WINDOWS__
  79. OSVERSIONINFO vi;
  80. memset (&vi,0,sizeof(vi));
  81. vi.dwOSVersionInfoSize = sizeof(vi);
  82. GetVersionEx(&vi);
  83. if (vi.dwMajorVersion < 6)
  84. return std::string("C:\\Documents and Settings\\All Users\\Application Data\\ZeroTier\\One");
  85. return std::string("C:\\ProgramData\\ZeroTier\\One");
  86. #else
  87. // unknown platform
  88. #endif
  89. #endif
  90. }
  91. Defaults::Defaults()
  92. throw(std::runtime_error) :
  93. defaultHomePath(_mkDefaultHomePath()),
  94. supernodes(_mkSupernodeMap())
  95. {
  96. }
  97. } // namespace ZeroTier