selftest.cpp 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474
  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 <stdexcept>
  32. #include <iostream>
  33. #include <string>
  34. #include <vector>
  35. #include "node/Constants.hpp"
  36. #include "node/RuntimeEnvironment.hpp"
  37. #include "node/InetAddress.hpp"
  38. #include "node/Utils.hpp"
  39. #include "node/Identity.hpp"
  40. #include "node/Packet.hpp"
  41. #include "node/Salsa20.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. #include "node/EthernetTap.hpp"
  48. #include "node/SHA512.hpp"
  49. #include "node/C25519.hpp"
  50. #include "node/Poly1305.hpp"
  51. #ifdef __WINDOWS__
  52. #include <tchar.h>
  53. #endif
  54. using namespace ZeroTier;
  55. #include "selftest-crypto-vectors.hpp"
  56. static unsigned char fuzzbuf[1048576];
  57. static int testCrypto()
  58. {
  59. unsigned char buf1[16384];
  60. unsigned char buf2[sizeof(buf1)],buf3[sizeof(buf1)];
  61. std::cout << "[crypto] Testing SHA-512... "; std::cout.flush();
  62. SHA512::hash(buf1,sha512TV0Input,strlen(sha512TV0Input));
  63. if (memcmp(buf1,sha512TV0Digest,64)) {
  64. std::cout << "FAIL" << std::endl;
  65. return -1;
  66. }
  67. std::cout << "PASS" << std::endl;
  68. std::cout << "[crypto] Testing Poly1305... "; std::cout.flush();
  69. Poly1305::compute(buf1,poly1305TV0Input,sizeof(poly1305TV0Input),poly1305TV0Key);
  70. if (memcmp(buf1,poly1305TV0Tag,16)) {
  71. std::cout << "FAIL (1)" << std::endl;
  72. return -1;
  73. }
  74. Poly1305::compute(buf1,poly1305TV1Input,sizeof(poly1305TV1Input),poly1305TV1Key);
  75. if (memcmp(buf1,poly1305TV1Tag,16)) {
  76. std::cout << "FAIL (2)" << std::endl;
  77. return -1;
  78. }
  79. std::cout << "PASS" << std::endl;
  80. std::cout << "[crypto] Testing C25519 and Ed25519 against test vectors... "; std::cout.flush();
  81. for(int k=0;k<ZT_NUM_C25519_TEST_VECTORS;++k) {
  82. C25519::Pair p1,p2;
  83. memcpy(p1.pub.data,C25519_TEST_VECTORS[k].pub1,p1.pub.size());
  84. memcpy(p1.priv.data,C25519_TEST_VECTORS[k].priv1,p1.priv.size());
  85. memcpy(p2.pub.data,C25519_TEST_VECTORS[k].pub2,p2.pub.size());
  86. memcpy(p2.priv.data,C25519_TEST_VECTORS[k].priv2,p2.priv.size());
  87. C25519::agree(p1,p2.pub,buf1,64);
  88. C25519::agree(p2,p1.pub,buf2,64);
  89. if (memcmp(buf1,buf2,64)) {
  90. std::cout << "FAIL (1)" << std::endl;
  91. return -1;
  92. }
  93. if (memcmp(buf1,C25519_TEST_VECTORS[k].agreement,64)) {
  94. std::cout << "FAIL (2)" << std::endl;
  95. return -1;
  96. }
  97. C25519::Signature sig1 = C25519::sign(p1,buf1,64);
  98. if (memcmp(sig1.data,C25519_TEST_VECTORS[k].agreementSignedBy1,64)) {
  99. std::cout << "FAIL (3)" << std::endl;
  100. return -1;
  101. }
  102. C25519::Signature sig2 = C25519::sign(p2,buf1,64);
  103. if (memcmp(sig2.data,C25519_TEST_VECTORS[k].agreementSignedBy2,64)) {
  104. std::cout << "FAIL (4)" << std::endl;
  105. return -1;
  106. }
  107. }
  108. std::cout << "PASS" << std::endl;
  109. std::cout << "[crypto] Testing C25519 ECC key agreement... "; std::cout.flush();
  110. for(unsigned int i=0;i<50;++i) {
  111. C25519::Pair p1 = C25519::generate();
  112. C25519::Pair p2 = C25519::generate();
  113. C25519::Pair p3 = C25519::generate();
  114. C25519::agree(p1,p2.pub,buf1,64);
  115. C25519::agree(p2,p1.pub,buf2,64);
  116. C25519::agree(p3,p1.pub,buf3,64);
  117. if (memcmp(buf1,buf2,64)) {
  118. std::cout << "FAIL (1)" << std::endl;
  119. return -1;
  120. }
  121. if (!memcmp(buf2,buf3,64)) {
  122. std::cout << "FAIL (2)" << std::endl;
  123. return -1;
  124. }
  125. }
  126. std::cout << "PASS" << std::endl;
  127. std::cout << "[crypto] Testing Ed25519 ECC signatures... "; std::cout.flush();
  128. C25519::Pair didntSign = C25519::generate();
  129. for(unsigned int i=0;i<10;++i) {
  130. C25519::Pair p1 = C25519::generate();
  131. for(unsigned int k=0;k<sizeof(buf1);++k)
  132. buf1[k] = (unsigned char)rand();
  133. C25519::Signature sig = C25519::sign(p1,buf1,sizeof(buf1));
  134. if (!C25519::verify(p1.pub,buf1,sizeof(buf1),sig)) {
  135. std::cout << "FAIL (1)" << std::endl;
  136. return -1;
  137. }
  138. ++buf1[17];
  139. if (C25519::verify(p1.pub,buf1,sizeof(buf1),sig)) {
  140. std::cout << "FAIL (2)" << std::endl;
  141. return -1;
  142. }
  143. --buf1[17];
  144. if (!C25519::verify(p1.pub,buf1,sizeof(buf1),sig)) {
  145. std::cout << "FAIL (3)" << std::endl;
  146. return -1;
  147. }
  148. if (C25519::verify(didntSign.pub,buf1,sizeof(buf1),sig)) {
  149. std::cout << "FAIL (2)" << std::endl;
  150. return -1;
  151. }
  152. for(unsigned int k=0;k<64;++k) {
  153. C25519::Signature sig2(sig);
  154. sig2.data[rand() % sig2.size()] ^= (unsigned char)(1 << (rand() & 7));
  155. if (C25519::verify(p1.pub,buf1,sizeof(buf1),sig2)) {
  156. std::cout << "FAIL (5)" << std::endl;
  157. return -1;
  158. }
  159. }
  160. }
  161. std::cout << "PASS" << std::endl;
  162. std::cout << "[crypto] Testing Salsa20... "; std::cout.flush();
  163. for(unsigned int i=0;i<4;++i) {
  164. for(unsigned int k=0;k<sizeof(buf1);++k)
  165. buf1[k] = (unsigned char)rand();
  166. memset(buf2,0,sizeof(buf2));
  167. memset(buf3,0,sizeof(buf3));
  168. Salsa20 s20;
  169. s20.init("12345678123456781234567812345678",256,"12345678");
  170. s20.encrypt(buf1,buf2,sizeof(buf1));
  171. s20.init("12345678123456781234567812345678",256,"12345678");
  172. s20.decrypt(buf2,buf3,sizeof(buf2));
  173. if (memcmp(buf1,buf3,sizeof(buf1))) {
  174. std::cout << "FAIL (encrypt/decrypt test)" << std::endl;
  175. return -1;
  176. }
  177. }
  178. Salsa20 s20(s20TV0Key,256,s20TV0Iv);
  179. memset(buf1,0,sizeof(buf1));
  180. memset(buf2,0,sizeof(buf2));
  181. s20.encrypt(buf1,buf2,64);
  182. if (memcmp(buf2,s20TV0Ks,64)) {
  183. std::cout << "FAIL (test vector 0)" << std::endl;
  184. return -1;
  185. }
  186. std::cout << "PASS" << std::endl;
  187. return 0;
  188. }
  189. static int testIdentity()
  190. {
  191. Identity id;
  192. Buffer<512> buf;
  193. std::cout << "[identity] Fully validate known-good identity... "; std::cout.flush();
  194. if (!id.fromString("b487ffe552:2:9b121d26968a86eceea96d689dfb364a13f645aea9530c6d0c00c457569751340e8ff9ddf46be38190dcdd6178ff555cc48012a47280fbdece35799d8c445104:902474096fc914f0d6320a9d19b9e52d23bcf652e98b3930432d07a8271be0e19a813d1e77ee24db3454ce0c6c4a35e18a3adc0d06ee3bf086b38bd26ff95b085b4f1fd1d4ce423b15bc362cd5f13079b58252fd38b98b67b45203bb81423780:24f7ce86df8e242e4d7d04b657cf37eddc1aa7b34b6f38821c35fe393a4a381e0eef6e7b8b4ceab35a51e6ab0b6cbeb7c7282bc21c0c60cb6a512e454ecd45c5")) {
  195. std::cout << "FAIL (1)" << std::endl;
  196. return -1;
  197. }
  198. if (!id.locallyValidate(true)) {
  199. std::cout << "FAIL (2)" << std::endl;
  200. return -1;
  201. }
  202. std::cout << "PASS" << std::endl;
  203. std::cout << "[identity] Generate identity... "; std::cout.flush();
  204. uint64_t genstart = Utils::now();
  205. id.generate();
  206. uint64_t genend = Utils::now();
  207. std::cout << "(took " << (genend - genstart) << "ms): " << id.toString(true) << std::endl;
  208. std::cout << "[identity] Locally validate identity: ";
  209. if (id.locallyValidate(false)) {
  210. std::cout << "PASS" << std::endl;
  211. } else {
  212. std::cout << "FAIL" << std::endl;
  213. return -1;
  214. }
  215. {
  216. Identity id2;
  217. buf.clear();
  218. id.serialize(buf,true);
  219. id2.deserialize(buf);
  220. std::cout << "[identity] Serialize and deserialize (w/private): ";
  221. if ((id == id2)&&(id2.locallyValidate(false))) {
  222. std::cout << "PASS" << std::endl;
  223. } else {
  224. std::cout << "FAIL" << std::endl;
  225. return -1;
  226. }
  227. }
  228. {
  229. Identity id2;
  230. buf.clear();
  231. id.serialize(buf,false);
  232. id2.deserialize(buf);
  233. std::cout << "[identity] Serialize and deserialize (no private): ";
  234. if ((id == id2)&&(id2.locallyValidate(false))) {
  235. std::cout << "PASS" << std::endl;
  236. } else {
  237. std::cout << "FAIL" << std::endl;
  238. return -1;
  239. }
  240. }
  241. {
  242. Identity id2;
  243. id2.fromString(id.toString(true).c_str());
  244. std::cout << "[identity] Serialize and deserialize (ASCII w/private): ";
  245. if ((id == id2)&&(id2.locallyValidate(false))) {
  246. std::cout << "PASS" << std::endl;
  247. } else {
  248. std::cout << "FAIL" << std::endl;
  249. return -1;
  250. }
  251. }
  252. {
  253. Identity id2;
  254. id2.fromString(id.toString(false).c_str());
  255. std::cout << "[identity] Serialize and deserialize (ASCII no private): ";
  256. if ((id == id2)&&(id2.locallyValidate(false))) {
  257. std::cout << "PASS" << std::endl;
  258. } else {
  259. std::cout << "FAIL" << std::endl;
  260. return -1;
  261. }
  262. }
  263. return 0;
  264. }
  265. static int testPacket()
  266. {
  267. unsigned char salsaKey[32],hmacKey[32];
  268. Packet a,b;
  269. a.zeroAll();
  270. b.zeroAll();
  271. for(unsigned int i=0;i<32;++i) {
  272. salsaKey[i] = (unsigned char)rand();
  273. hmacKey[i] = (unsigned char)rand();
  274. }
  275. std::cout << "[packet] Testing Packet encoder/decoder... ";
  276. a.reset(Address(),Address(),Packet::VERB_HELLO);
  277. for(int i=0;i<32;++i)
  278. a.append("supercalifragilisticexpealidocious",strlen("supercalifragilisticexpealidocious"));
  279. b = a;
  280. if (a != b) {
  281. std::cout << "FAIL (assign)" << std::endl;
  282. return -1;
  283. }
  284. a.compress();
  285. unsigned int complen = a.size();
  286. a.uncompress();
  287. std::cout << "(compressed: " << complen << ", decompressed: " << a.size() << ") ";
  288. if (a != b) {
  289. std::cout << "FAIL (compresssion)" << std::endl;
  290. return -1;
  291. }
  292. a.compress();
  293. a.encrypt(salsaKey);
  294. a.decrypt(salsaKey);
  295. a.uncompress();
  296. if (a != b) {
  297. std::cout << "FAIL (encrypt-decrypt)" << std::endl;
  298. return -1;
  299. }
  300. a.macSet(hmacKey);
  301. if (!a.macVerify(hmacKey)) {
  302. std::cout << "FAIL (macVerify)" << std::endl;
  303. return -1;
  304. }
  305. std::cout << "PASS" << std::endl;
  306. return 0;
  307. }
  308. static int testOther()
  309. {
  310. std::cout << "[other] Testing hex encode/decode... "; std::cout.flush();
  311. for(unsigned int k=0;k<1000;++k) {
  312. unsigned int flen = (rand() % 8194) + 1;
  313. for(unsigned int i=0;i<flen;++i)
  314. fuzzbuf[i] = (unsigned char)(rand() & 0xff);
  315. std::string dec = Utils::unhex(Utils::hex(fuzzbuf,flen).c_str());
  316. if ((dec.length() != flen)||(memcmp(dec.data(),fuzzbuf,dec.length()))) {
  317. std::cout << "FAILED!" << std::endl;
  318. std::cout << Utils::hex(fuzzbuf,flen) << std::endl;
  319. std::cout << Utils::hex(dec.data(),dec.length()) << std::endl;
  320. return -1;
  321. }
  322. }
  323. std::cout << "PASS" << std::endl;
  324. std::cout << "[other] Testing command bus encode/decode... "; std::cout.flush();
  325. try {
  326. static char key[32] = { 0 };
  327. for(unsigned int k=0;k<100;++k) {
  328. std::vector<std::string> original;
  329. for(unsigned int i=0,j=rand() % 256,l=(rand() % 1024)+1;i<j;++i)
  330. original.push_back(std::string(l,'x'));
  331. std::vector< Buffer<ZT_NODECONFIG_MAX_PACKET_SIZE> > packets(NodeConfig::encodeControlMessage(key,1,original));
  332. //std::cout << packets.size() << ' '; std::cout.flush();
  333. std::vector<std::string> after;
  334. for(std::vector< Buffer<ZT_NODECONFIG_MAX_PACKET_SIZE> >::iterator i(packets.begin());i!=packets.end();++i) {
  335. unsigned long convId = 9999;
  336. if (!NodeConfig::decodeControlMessagePacket(key,i->data(),i->size(),convId,after)) {
  337. std::cout << "FAIL (decode)" << std::endl;
  338. return -1;
  339. }
  340. if (convId != 1) {
  341. std::cout << "FAIL (conversation ID)" << std::endl;
  342. return -1;
  343. }
  344. }
  345. if (after != original) {
  346. std::cout << "FAIL (compare)" << std::endl;
  347. return -1;
  348. }
  349. }
  350. } catch (std::exception &exc) {
  351. std::cout << "FAIL (" << exc.what() << ")" << std::endl;
  352. return -1;
  353. }
  354. std::cout << "PASS" << std::endl;
  355. std::cout << "[other] Testing Dictionary... "; std::cout.flush();
  356. for(int k=0;k<1000;++k) {
  357. Dictionary a,b;
  358. int nk = rand() % 32;
  359. for(int q=0;q<nk;++q) {
  360. std::string k,v;
  361. int kl = (rand() % 512);
  362. int vl = (rand() % 512);
  363. for(int i=0;i<kl;++i)
  364. k.push_back((char)rand());
  365. for(int i=0;i<vl;++i)
  366. v.push_back((char)rand());
  367. a[k] = v;
  368. }
  369. std::string aser = a.toString();
  370. b.fromString(aser);
  371. if (a != b) {
  372. std::cout << "FAIL!" << std::endl;
  373. return -1;
  374. }
  375. }
  376. std::cout << "PASS" << std::endl;
  377. return 0;
  378. }
  379. #ifdef __WINDOWS__
  380. int _tmain(int argc, _TCHAR* argv[])
  381. #else
  382. int main(int argc,char **argv)
  383. #endif
  384. {
  385. int r = 0;
  386. // Code to generate the C25519 test vectors -- did this once and then
  387. // put these up top so that we can ensure that every platform produces
  388. // the same result.
  389. /*
  390. for(int k=0;k<32;++k) {
  391. C25519::Pair p1 = C25519::generate();
  392. C25519::Pair p2 = C25519::generate();
  393. unsigned char agg[64];
  394. C25519::agree(p1,p2.pub,agg,64);
  395. C25519::Signature sig1 = C25519::sign(p1,agg,64);
  396. C25519::Signature sig2 = C25519::sign(p2,agg,64);
  397. printf("{{");
  398. for(int i=0;i<64;++i)
  399. printf("%s0x%.2x",((i > 0) ? "," : ""),(unsigned int)p1.pub.data[i]);
  400. printf("},{");
  401. for(int i=0;i<64;++i)
  402. printf("%s0x%.2x",((i > 0) ? "," : ""),(unsigned int)p1.priv.data[i]);
  403. printf("},{");
  404. for(int i=0;i<64;++i)
  405. printf("%s0x%.2x",((i > 0) ? "," : ""),(unsigned int)p2.pub.data[i]);
  406. printf("},{");
  407. for(int i=0;i<64;++i)
  408. printf("%s0x%.2x",((i > 0) ? "," : ""),(unsigned int)p2.priv.data[i]);
  409. printf("},{");
  410. for(int i=0;i<64;++i)
  411. printf("%s0x%.2x",((i > 0) ? "," : ""),(unsigned int)agg[i]);
  412. printf("},{");
  413. for(int i=0;i<96;++i)
  414. printf("%s0x%.2x",((i > 0) ? "," : ""),(unsigned int)sig1.data[i]);
  415. printf("},{");
  416. for(int i=0;i<96;++i)
  417. printf("%s0x%.2x",((i > 0) ? "," : ""),(unsigned int)sig2.data[i]);
  418. printf("}}\n");
  419. }
  420. exit(0);
  421. */
  422. srand((unsigned int)time(0));
  423. r |= testCrypto();
  424. r |= testPacket();
  425. r |= testOther();
  426. r |= testIdentity();
  427. if (r)
  428. std::cout << std::endl << "SOMETHING FAILED!" << std::endl;
  429. return r;
  430. }