selftest.cpp 10.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343
  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 <time.h>
  31. #include <iostream>
  32. #include <string>
  33. #include <vector>
  34. #include "node/InetAddress.hpp"
  35. #include "node/EllipticCurveKey.hpp"
  36. #include "node/EllipticCurveKeyPair.hpp"
  37. #include "node/Utils.hpp"
  38. #include "node/Identity.hpp"
  39. #include "node/Packet.hpp"
  40. #include "node/Salsa20.hpp"
  41. #include "node/HMAC.hpp"
  42. #include "node/MAC.hpp"
  43. #include "node/Peer.hpp"
  44. #include "node/Condition.hpp"
  45. #include "node/NodeConfig.hpp"
  46. #include "node/Dictionary.hpp"
  47. using namespace ZeroTier;
  48. static unsigned char fuzzbuf[1048576];
  49. static const char *hmacShaTV0Key = "key";
  50. static const char *hmacShaTV0Msg = "The quick brown fox jumps over the lazy dog";
  51. static const unsigned char hmacShaTV0Mac[32] = { 0xf7,0xbc,0x83,0xf4,0x30,0x53,0x84,0x24,0xb1,0x32,0x98,0xe6,0xaa,0x6f,0xb1,0x43,0xef,0x4d,0x59,0xa1,0x49,0x46,0x17,0x59,0x97,0x47,0x9d,0xbc,0x2d,0x1a,0x3c,0xd8 };
  52. static const unsigned char s20TV0Key[32] = { 0x0f,0x62,0xb5,0x08,0x5b,0xae,0x01,0x54,0xa7,0xfa,0x4d,0xa0,0xf3,0x46,0x99,0xec,0x3f,0x92,0xe5,0x38,0x8b,0xde,0x31,0x84,0xd7,0x2a,0x7d,0xd0,0x23,0x76,0xc9,0x1c };
  53. static const unsigned char s20TV0Iv[8] = { 0x28,0x8f,0xf6,0x5d,0xc4,0x2b,0x92,0xf9 };
  54. static const unsigned char s20TV0Ks[64] = { 0x5e,0x5e,0x71,0xf9,0x01,0x99,0x34,0x03,0x04,0xab,0xb2,0x2a,0x37,0xb6,0x62,0x5b,0xf8,0x83,0xfb,0x89,0xce,0x3b,0x21,0xf5,0x4a,0x10,0xb8,0x10,0x66,0xef,0x87,0xda,0x30,0xb7,0x76,0x99,0xaa,0x73,0x79,0xda,0x59,0x5c,0x77,0xdd,0x59,0x54,0x2d,0xa2,0x08,0xe5,0x95,0x4f,0x89,0xe4,0x0e,0xb7,0xaa,0x80,0xa8,0x4a,0x61,0x76,0x66,0x3f };
  55. static int testCrypto()
  56. {
  57. unsigned char buf1[16384];
  58. unsigned char buf2[sizeof(buf1)],buf3[sizeof(buf1)];
  59. std::cout << "[crypto] Testing ECDSA... "; std::cout.flush();
  60. for(unsigned int k=0;k<64;++k) {
  61. EllipticCurveKeyPair kp;
  62. kp.generate();
  63. for(int i=0;i<32;++i)
  64. buf1[i] = (unsigned char)rand();
  65. std::string sig = kp.sign(buf1);
  66. if (!EllipticCurveKeyPair::verify(buf1,kp.pub(),sig.data(),sig.length())) {
  67. std::cout << "FAIL" << std::endl;
  68. return -1;
  69. }
  70. }
  71. std::cout << "PASS" << std::endl;
  72. std::cout << "[crypto] Testing HMAC-SHA256... "; std::cout.flush();
  73. memset(buf1,0,sizeof(buf1));
  74. HMAC::sha256(hmacShaTV0Key,strlen(hmacShaTV0Key),hmacShaTV0Msg,strlen(hmacShaTV0Msg),buf1);
  75. if (memcmp(buf1,hmacShaTV0Mac,32)) {
  76. std::cout << "FAIL (test vector 0) (" << Utils::hex(buf1,32) << ")" << std::endl;
  77. return -1;
  78. }
  79. std::cout << "PASS" << std::endl;
  80. std::cout << "[crypto] Testing Salsa20... "; std::cout.flush();
  81. for(unsigned int i=0;i<4;++i) {
  82. for(unsigned int k=0;k<sizeof(buf1);++k)
  83. buf1[k] = (unsigned char)rand();
  84. memset(buf2,0,sizeof(buf2));
  85. memset(buf3,0,sizeof(buf3));
  86. Salsa20 s20;
  87. s20.init("12345678123456781234567812345678",256,"12345678");
  88. s20.encrypt(buf1,buf2,sizeof(buf1));
  89. s20.init("12345678123456781234567812345678",256,"12345678");
  90. s20.decrypt(buf2,buf3,sizeof(buf2));
  91. if (memcmp(buf1,buf3,sizeof(buf1))) {
  92. std::cout << "FAIL (encrypt/decrypt test)" << std::endl;
  93. return -1;
  94. }
  95. }
  96. Salsa20 s20(s20TV0Key,256,s20TV0Iv);
  97. memset(buf1,0,sizeof(buf1));
  98. memset(buf2,0,sizeof(buf2));
  99. s20.encrypt(buf1,buf2,64);
  100. if (memcmp(buf2,s20TV0Ks,64)) {
  101. std::cout << "FAIL (test vector 0)" << std::endl;
  102. return -1;
  103. }
  104. std::cout << "PASS" << std::endl;
  105. return 0;
  106. }
  107. static int testIdentity()
  108. {
  109. Identity id;
  110. Buffer<512> buf;
  111. std::cout << "[identity] Generate identity... "; std::cout.flush();
  112. uint64_t genstart = Utils::now();
  113. id.generate();
  114. uint64_t genend = Utils::now();
  115. std::cout << "(took " << (genend - genstart) << "ms): " << id.toString(true) << std::endl;
  116. std::cout << "[identity] Locally validate identity: ";
  117. if (id.locallyValidate(false)) {
  118. std::cout << "PASS" << std::endl;
  119. } else {
  120. std::cout << "FAIL" << std::endl;
  121. return -1;
  122. }
  123. {
  124. Identity id2;
  125. buf.clear();
  126. id.serialize(buf,true);
  127. id2.deserialize(buf);
  128. std::cout << "[identity] Serialize and deserialize (w/private): ";
  129. if ((id == id2)&&(id2.locallyValidate(false))) {
  130. std::cout << "PASS" << std::endl;
  131. } else {
  132. std::cout << "FAIL" << std::endl;
  133. return -1;
  134. }
  135. }
  136. {
  137. Identity id2;
  138. buf.clear();
  139. id.serialize(buf,false);
  140. id2.deserialize(buf);
  141. std::cout << "[identity] Serialize and deserialize (no private): ";
  142. if ((id == id2)&&(id2.locallyValidate(false))) {
  143. std::cout << "PASS" << std::endl;
  144. } else {
  145. std::cout << "FAIL" << std::endl;
  146. return -1;
  147. }
  148. }
  149. {
  150. Identity id2;
  151. id2.fromString(id.toString(true).c_str());
  152. std::cout << "[identity] Serialize and deserialize (ASCII w/private): ";
  153. if ((id == id2)&&(id2.locallyValidate(false))) {
  154. std::cout << "PASS" << std::endl;
  155. } else {
  156. std::cout << "FAIL" << std::endl;
  157. return -1;
  158. }
  159. }
  160. {
  161. Identity id2;
  162. id2.fromString(id.toString(false).c_str());
  163. std::cout << "[identity] Serialize and deserialize (ASCII no private): ";
  164. if ((id == id2)&&(id2.locallyValidate(false))) {
  165. std::cout << "PASS" << std::endl;
  166. } else {
  167. std::cout << "FAIL" << std::endl;
  168. return -1;
  169. }
  170. }
  171. return 0;
  172. }
  173. static int testPacket()
  174. {
  175. unsigned char salsaKey[32],hmacKey[32];
  176. Packet a,b;
  177. for(unsigned int i=0;i<32;++i) {
  178. salsaKey[i] = (unsigned char)rand();
  179. hmacKey[i] = (unsigned char)rand();
  180. }
  181. std::cout << "[packet] Testing Packet encoder/decoder... ";
  182. a = Packet();
  183. a.setVerb(Packet::VERB_HELLO);
  184. for(int i=0;i<32;++i)
  185. a.append("supercalifragilisticexpealidocious",strlen("supercalifragilisticexpealidocious"));
  186. b = a;
  187. a.compress();
  188. unsigned int complen = a.size();
  189. a.uncompress();
  190. std::cout << "(compressed: " << complen << ", decompressed: " << a.size() << ") ";
  191. if (a != b) {
  192. std::cout << "FAIL (compresssion)" << std::endl;
  193. return -1;
  194. }
  195. a.compress();
  196. a.encrypt(salsaKey);
  197. a.decrypt(salsaKey);
  198. a.uncompress();
  199. if (a != b) {
  200. std::cout << "FAIL (encrypt-decrypt)" << std::endl;
  201. return -1;
  202. }
  203. a.hmacSet(hmacKey);
  204. if (!a.hmacVerify(hmacKey)) {
  205. std::cout << "FAIL (hmacVerify)" << std::endl;
  206. return -1;
  207. }
  208. std::cout << "PASS" << std::endl;
  209. return 0;
  210. }
  211. static int testOther()
  212. {
  213. std::cout << "[other] Testing Base64 encode/decode... "; std::cout.flush();
  214. for(unsigned int k=0;k<1000;++k) {
  215. unsigned int flen = (rand() % 8194) + 1;
  216. for(unsigned int i=0;i<flen;++i)
  217. fuzzbuf[i] = (unsigned char)(rand() & 0xff);
  218. std::string dec = Utils::base64Decode(Utils::base64Encode(fuzzbuf,flen));
  219. if ((dec.length() != flen)||(memcmp(dec.data(),fuzzbuf,dec.length()))) {
  220. std::cout << "FAILED!" << std::endl;
  221. return -1;
  222. }
  223. }
  224. std::cout << "PASS" << std::endl;
  225. std::cout << "[other] Testing hex encode/decode... "; std::cout.flush();
  226. for(unsigned int k=0;k<1000;++k) {
  227. unsigned int flen = (rand() % 8194) + 1;
  228. for(unsigned int i=0;i<flen;++i)
  229. fuzzbuf[i] = (unsigned char)(rand() & 0xff);
  230. std::string dec = Utils::unhex(Utils::hex(fuzzbuf,flen).c_str());
  231. if ((dec.length() != flen)||(memcmp(dec.data(),fuzzbuf,dec.length()))) {
  232. std::cout << "FAILED!" << std::endl;
  233. std::cout << Utils::hex(fuzzbuf,flen) << std::endl;
  234. std::cout << Utils::hex(dec.data(),dec.length()) << std::endl;
  235. return -1;
  236. }
  237. }
  238. std::cout << "PASS" << std::endl;
  239. std::cout << "[other] Testing command bus encode/decode... "; std::cout.flush();
  240. try {
  241. static char key[32] = { 0 };
  242. for(unsigned int k=0;k<1000;++k) {
  243. std::vector<std::string> original;
  244. for(unsigned int i=0,j=rand() % 256,l=(rand() % 1024)+1;i<j;++i)
  245. original.push_back(std::string(l,'x'));
  246. std::vector< Buffer<ZT_NODECONFIG_MAX_PACKET_SIZE> > packets(NodeConfig::encodeControlMessage(key,1,original));
  247. //std::cout << packets.size() << ' '; std::cout.flush();
  248. std::vector<std::string> after;
  249. for(std::vector< Buffer<ZT_NODECONFIG_MAX_PACKET_SIZE> >::iterator i(packets.begin());i!=packets.end();++i) {
  250. unsigned long convId = 9999;
  251. if (!NodeConfig::decodeControlMessagePacket(key,i->data(),i->size(),convId,after)) {
  252. std::cout << "FAIL (decode)" << std::endl;
  253. return -1;
  254. }
  255. if (convId != 1) {
  256. std::cout << "FAIL (conversation ID)" << std::endl;
  257. return -1;
  258. }
  259. }
  260. if (after != original) {
  261. std::cout << "FAIL (compare)" << std::endl;
  262. return -1;
  263. }
  264. }
  265. } catch (std::exception &exc) {
  266. std::cout << "FAIL (" << exc.what() << ")" << std::endl;
  267. return -1;
  268. }
  269. std::cout << "PASS" << std::endl;
  270. std::cout << "[other] Testing Dictionary... "; std::cout.flush();
  271. for(int k=0;k<10000;++k) {
  272. Dictionary a,b;
  273. int nk = rand() % 32;
  274. for(int q=0;q<nk;++q) {
  275. std::string k,v;
  276. int kl = (rand() % 512);
  277. int vl = (rand() % 512);
  278. for(int i=0;i<kl;++i)
  279. k.push_back((char)rand());
  280. for(int i=0;i<vl;++i)
  281. v.push_back((char)rand());
  282. a[k] = v;
  283. }
  284. std::string aser = a.toString();
  285. b.fromString(aser);
  286. if (a != b) {
  287. std::cout << "FAIL!" << std::endl;
  288. return -1;
  289. }
  290. }
  291. std::cout << "PASS" << std::endl;
  292. return 0;
  293. }
  294. int main(int argc,char **argv)
  295. {
  296. int r = 0;
  297. srand(time(0));
  298. r |= testCrypto();
  299. r |= testPacket();
  300. r |= testOther();
  301. r |= testIdentity();
  302. if (r)
  303. std::cout << std::endl << "SOMETHING FAILED!" << std::endl;
  304. return r;
  305. }