selftest.cpp 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489
  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",20);
  170. s20.encrypt(buf1,buf2,sizeof(buf1));
  171. s20.init("12345678123456781234567812345678",256,"12345678",20);
  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,20);
  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. s20.init(s2012TV0Key,256,s2012TV0Iv,12);
  187. memset(buf1,0,sizeof(buf1));
  188. memset(buf2,0,sizeof(buf2));
  189. s20.encrypt(buf1,buf2,64);
  190. if (memcmp(buf2,s2012TV0Ks,64)) {
  191. std::cout << "FAIL (test vector 1)" << std::endl;
  192. return -1;
  193. }
  194. std::cout << "PASS" << std::endl;
  195. return 0;
  196. }
  197. static int testIdentity()
  198. {
  199. Identity id;
  200. Buffer<512> buf;
  201. std::cout << "[identity] Validate known-good identity... "; std::cout.flush();
  202. if (!id.fromString(KNOWN_GOOD_IDENTITY)) {
  203. std::cout << "FAIL (1)" << std::endl;
  204. return -1;
  205. }
  206. if (!id.locallyValidate()) {
  207. std::cout << "FAIL (2)" << std::endl;
  208. return -1;
  209. }
  210. std::cout << "PASS" << std::endl;
  211. std::cout << "[identity] Validate known-bad identity... "; std::cout.flush();
  212. if (!id.fromString(KNOWN_BAD_IDENTITY)) {
  213. std::cout << "FAIL (1)" << std::endl;
  214. return -1;
  215. }
  216. if (id.locallyValidate()) {
  217. std::cout << "FAIL (2)" << std::endl;
  218. return -1;
  219. }
  220. std::cout << "PASS (i.e. it failed)" << std::endl;
  221. for(unsigned int k=0;k<4;++k) {
  222. std::cout << "[identity] Generate identity... "; std::cout.flush();
  223. uint64_t genstart = Utils::now();
  224. id.generate();
  225. uint64_t genend = Utils::now();
  226. std::cout << "(took " << (genend - genstart) << "ms): " << id.toString(true) << std::endl;
  227. std::cout << "[identity] Locally validate identity: ";
  228. if (id.locallyValidate()) {
  229. std::cout << "PASS" << std::endl;
  230. } else {
  231. std::cout << "FAIL" << std::endl;
  232. return -1;
  233. }
  234. }
  235. {
  236. Identity id2;
  237. buf.clear();
  238. id.serialize(buf,true);
  239. id2.deserialize(buf);
  240. std::cout << "[identity] Serialize and deserialize (w/private): ";
  241. if ((id == id2)&&(id2.locallyValidate())) {
  242. std::cout << "PASS" << std::endl;
  243. } else {
  244. std::cout << "FAIL" << std::endl;
  245. return -1;
  246. }
  247. }
  248. {
  249. Identity id2;
  250. buf.clear();
  251. id.serialize(buf,false);
  252. id2.deserialize(buf);
  253. std::cout << "[identity] Serialize and deserialize (no private): ";
  254. if ((id == id2)&&(id2.locallyValidate())) {
  255. std::cout << "PASS" << std::endl;
  256. } else {
  257. std::cout << "FAIL" << std::endl;
  258. return -1;
  259. }
  260. }
  261. {
  262. Identity id2;
  263. id2.fromString(id.toString(true).c_str());
  264. std::cout << "[identity] Serialize and deserialize (ASCII w/private): ";
  265. if ((id == id2)&&(id2.locallyValidate())) {
  266. std::cout << "PASS" << std::endl;
  267. } else {
  268. std::cout << "FAIL" << std::endl;
  269. return -1;
  270. }
  271. }
  272. {
  273. Identity id2;
  274. id2.fromString(id.toString(false).c_str());
  275. std::cout << "[identity] Serialize and deserialize (ASCII no private): ";
  276. if ((id == id2)&&(id2.locallyValidate())) {
  277. std::cout << "PASS" << std::endl;
  278. } else {
  279. std::cout << "FAIL" << std::endl;
  280. return -1;
  281. }
  282. }
  283. return 0;
  284. }
  285. static int testPacket()
  286. {
  287. unsigned char salsaKey[32],hmacKey[32];
  288. Packet a,b;
  289. a.zeroAll();
  290. b.zeroAll();
  291. for(unsigned int i=0;i<32;++i) {
  292. salsaKey[i] = (unsigned char)rand();
  293. hmacKey[i] = (unsigned char)rand();
  294. }
  295. std::cout << "[packet] Testing Packet encoder/decoder... ";
  296. a.reset(Address(),Address(),Packet::VERB_HELLO);
  297. for(int i=0;i<32;++i)
  298. a.append("supercalifragilisticexpealidocious",strlen("supercalifragilisticexpealidocious"));
  299. b = a;
  300. if (a != b) {
  301. std::cout << "FAIL (assign)" << std::endl;
  302. return -1;
  303. }
  304. a.compress();
  305. unsigned int complen = a.size();
  306. a.uncompress();
  307. std::cout << "(compressed: " << complen << ", decompressed: " << a.size() << ") ";
  308. if (a != b) {
  309. std::cout << "FAIL (compresssion)" << std::endl;
  310. return -1;
  311. }
  312. a.armor(salsaKey,true);
  313. if (!a.dearmor(salsaKey)) {
  314. std::cout << "FAIL (encrypt-decrypt/verify)" << std::endl;
  315. return -1;
  316. }
  317. std::cout << "PASS" << std::endl;
  318. return 0;
  319. }
  320. static int testOther()
  321. {
  322. std::cout << "[other] Testing hex encode/decode... "; std::cout.flush();
  323. for(unsigned int k=0;k<1000;++k) {
  324. unsigned int flen = (rand() % 8194) + 1;
  325. for(unsigned int i=0;i<flen;++i)
  326. fuzzbuf[i] = (unsigned char)(rand() & 0xff);
  327. std::string dec = Utils::unhex(Utils::hex(fuzzbuf,flen).c_str());
  328. if ((dec.length() != flen)||(memcmp(dec.data(),fuzzbuf,dec.length()))) {
  329. std::cout << "FAILED!" << std::endl;
  330. std::cout << Utils::hex(fuzzbuf,flen) << std::endl;
  331. std::cout << Utils::hex(dec.data(),dec.length()) << std::endl;
  332. return -1;
  333. }
  334. }
  335. std::cout << "PASS" << std::endl;
  336. std::cout << "[other] Testing command bus encode/decode... "; std::cout.flush();
  337. try {
  338. static char key[32] = { 0 };
  339. for(unsigned int k=0;k<100;++k) {
  340. std::vector<std::string> original;
  341. for(unsigned int i=0,j=rand() % 256,l=(rand() % 1024)+1;i<j;++i)
  342. original.push_back(std::string(l,'x'));
  343. std::vector< Buffer<ZT_NODECONFIG_MAX_PACKET_SIZE> > packets(NodeConfig::encodeControlMessage(key,1,original));
  344. //std::cout << packets.size() << ' '; std::cout.flush();
  345. std::vector<std::string> after;
  346. for(std::vector< Buffer<ZT_NODECONFIG_MAX_PACKET_SIZE> >::iterator i(packets.begin());i!=packets.end();++i) {
  347. unsigned long convId = 9999;
  348. if (!NodeConfig::decodeControlMessagePacket(key,i->data(),i->size(),convId,after)) {
  349. std::cout << "FAIL (decode)" << std::endl;
  350. return -1;
  351. }
  352. if (convId != 1) {
  353. std::cout << "FAIL (conversation ID)" << std::endl;
  354. return -1;
  355. }
  356. }
  357. if (after != original) {
  358. std::cout << "FAIL (compare)" << std::endl;
  359. return -1;
  360. }
  361. }
  362. } catch (std::exception &exc) {
  363. std::cout << "FAIL (" << exc.what() << ")" << std::endl;
  364. return -1;
  365. }
  366. std::cout << "PASS" << std::endl;
  367. std::cout << "[other] Testing Dictionary... "; std::cout.flush();
  368. for(int k=0;k<1000;++k) {
  369. Dictionary a,b;
  370. int nk = rand() % 32;
  371. for(int q=0;q<nk;++q) {
  372. std::string k,v;
  373. int kl = (rand() % 512);
  374. int vl = (rand() % 512);
  375. for(int i=0;i<kl;++i)
  376. k.push_back((char)rand());
  377. for(int i=0;i<vl;++i)
  378. v.push_back((char)rand());
  379. a[k] = v;
  380. }
  381. std::string aser = a.toString();
  382. b.fromString(aser);
  383. if (a != b) {
  384. std::cout << "FAIL!" << std::endl;
  385. return -1;
  386. }
  387. }
  388. std::cout << "PASS" << std::endl;
  389. return 0;
  390. }
  391. #ifdef __WINDOWS__
  392. int _tmain(int argc, _TCHAR* argv[])
  393. #else
  394. int main(int argc,char **argv)
  395. #endif
  396. {
  397. int r = 0;
  398. // Code to generate the C25519 test vectors -- did this once and then
  399. // put these up top so that we can ensure that every platform produces
  400. // the same result.
  401. /*
  402. for(int k=0;k<32;++k) {
  403. C25519::Pair p1 = C25519::generate();
  404. C25519::Pair p2 = C25519::generate();
  405. unsigned char agg[64];
  406. C25519::agree(p1,p2.pub,agg,64);
  407. C25519::Signature sig1 = C25519::sign(p1,agg,64);
  408. C25519::Signature sig2 = C25519::sign(p2,agg,64);
  409. printf("{{");
  410. for(int i=0;i<64;++i)
  411. printf("%s0x%.2x",((i > 0) ? "," : ""),(unsigned int)p1.pub.data[i]);
  412. printf("},{");
  413. for(int i=0;i<64;++i)
  414. printf("%s0x%.2x",((i > 0) ? "," : ""),(unsigned int)p1.priv.data[i]);
  415. printf("},{");
  416. for(int i=0;i<64;++i)
  417. printf("%s0x%.2x",((i > 0) ? "," : ""),(unsigned int)p2.pub.data[i]);
  418. printf("},{");
  419. for(int i=0;i<64;++i)
  420. printf("%s0x%.2x",((i > 0) ? "," : ""),(unsigned int)p2.priv.data[i]);
  421. printf("},{");
  422. for(int i=0;i<64;++i)
  423. printf("%s0x%.2x",((i > 0) ? "," : ""),(unsigned int)agg[i]);
  424. printf("},{");
  425. for(int i=0;i<96;++i)
  426. printf("%s0x%.2x",((i > 0) ? "," : ""),(unsigned int)sig1.data[i]);
  427. printf("},{");
  428. for(int i=0;i<96;++i)
  429. printf("%s0x%.2x",((i > 0) ? "," : ""),(unsigned int)sig2.data[i]);
  430. printf("}}\n");
  431. }
  432. exit(0);
  433. */
  434. std::cout << "[info] sizeof(void *) == " << sizeof(void *) << std::endl;
  435. srand((unsigned int)time(0));
  436. r |= testCrypto();
  437. r |= testPacket();
  438. r |= testOther();
  439. r |= testIdentity();
  440. if (r)
  441. std::cout << std::endl << "SOMETHING FAILED!" << std::endl;
  442. return r;
  443. }