bench.c 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592
  1. /* Copyright (c) 2001-2004, Roger Dingledine.
  2. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  3. * Copyright (c) 2007-2013, The Tor Project, Inc. */
  4. /* See LICENSE for licensing information */
  5. /* Ordinarily defined in tor_main.c; this bit is just here to provide one
  6. * since we're not linking to tor_main.c */
  7. const char tor_git_revision[] = "";
  8. /**
  9. * \file bench.c
  10. * \brief Benchmarks for lower level Tor modules.
  11. **/
  12. #include "orconfig.h"
  13. #include "or.h"
  14. #include "onion_tap.h"
  15. #include "relay.h"
  16. #include <openssl/opensslv.h>
  17. #include <openssl/evp.h>
  18. #ifndef OPENSSL_NO_EC
  19. #include <openssl/ec.h>
  20. #include <openssl/ecdh.h>
  21. #include <openssl/obj_mac.h>
  22. #endif
  23. #include "config.h"
  24. #ifdef CURVE25519_ENABLED
  25. #include "crypto_curve25519.h"
  26. #include "onion_ntor.h"
  27. #endif
  28. #if defined(HAVE_CLOCK_GETTIME) && defined(CLOCK_PROCESS_CPUTIME_ID)
  29. static uint64_t nanostart;
  30. static inline uint64_t
  31. timespec_to_nsec(const struct timespec *ts)
  32. {
  33. return ((uint64_t)ts->tv_sec)*1000000000 + ts->tv_nsec;
  34. }
  35. static void
  36. reset_perftime(void)
  37. {
  38. struct timespec ts;
  39. int r;
  40. r = clock_gettime(CLOCK_PROCESS_CPUTIME_ID, &ts);
  41. tor_assert(r == 0);
  42. nanostart = timespec_to_nsec(&ts);
  43. }
  44. static uint64_t
  45. perftime(void)
  46. {
  47. struct timespec ts;
  48. int r;
  49. r = clock_gettime(CLOCK_PROCESS_CPUTIME_ID, &ts);
  50. tor_assert(r == 0);
  51. return timespec_to_nsec(&ts) - nanostart;
  52. }
  53. #else
  54. static struct timeval tv_start = { 0, 0 };
  55. static void
  56. reset_perftime(void)
  57. {
  58. tor_gettimeofday(&tv_start);
  59. }
  60. static uint64_t
  61. perftime(void)
  62. {
  63. struct timeval now, out;
  64. tor_gettimeofday(&now);
  65. timersub(&now, &tv_start, &out);
  66. return ((uint64_t)out.tv_sec)*1000000000 + out.tv_usec*1000;
  67. }
  68. #endif
  69. #define NANOCOUNT(start,end,iters) \
  70. ( ((double)((end)-(start))) / (iters) )
  71. /** Run AES performance benchmarks. */
  72. static void
  73. bench_aes(void)
  74. {
  75. int len, i;
  76. char *b1, *b2;
  77. crypto_cipher_t *c;
  78. uint64_t start, end;
  79. const int bytes_per_iter = (1<<24);
  80. reset_perftime();
  81. c = crypto_cipher_new(NULL);
  82. for (len = 1; len <= 8192; len *= 2) {
  83. int iters = bytes_per_iter / len;
  84. b1 = tor_malloc_zero(len);
  85. b2 = tor_malloc_zero(len);
  86. start = perftime();
  87. for (i = 0; i < iters; ++i) {
  88. crypto_cipher_encrypt(c, b1, b2, len);
  89. }
  90. end = perftime();
  91. tor_free(b1);
  92. tor_free(b2);
  93. printf("%d bytes: %.2f nsec per byte\n", len,
  94. NANOCOUNT(start, end, iters*len));
  95. }
  96. crypto_cipher_free(c);
  97. }
  98. static void
  99. bench_onion_TAP(void)
  100. {
  101. const int iters = 1<<9;
  102. int i;
  103. crypto_pk_t *key, *key2;
  104. uint64_t start, end;
  105. char os[TAP_ONIONSKIN_CHALLENGE_LEN];
  106. char or[TAP_ONIONSKIN_REPLY_LEN];
  107. crypto_dh_t *dh_out;
  108. key = crypto_pk_new();
  109. key2 = crypto_pk_new();
  110. if (crypto_pk_generate_key_with_bits(key, 1024) < 0)
  111. goto done;
  112. if (crypto_pk_generate_key_with_bits(key2, 1024) < 0)
  113. goto done;
  114. reset_perftime();
  115. start = perftime();
  116. for (i = 0; i < iters; ++i) {
  117. onion_skin_TAP_create(key, &dh_out, os);
  118. crypto_dh_free(dh_out);
  119. }
  120. end = perftime();
  121. printf("Client-side, part 1: %f usec.\n", NANOCOUNT(start, end, iters)/1e3);
  122. onion_skin_TAP_create(key, &dh_out, os);
  123. start = perftime();
  124. for (i = 0; i < iters; ++i) {
  125. char key_out[CPATH_KEY_MATERIAL_LEN];
  126. onion_skin_TAP_server_handshake(os, key, NULL, or,
  127. key_out, sizeof(key_out));
  128. }
  129. end = perftime();
  130. printf("Server-side, key guessed right: %f usec\n",
  131. NANOCOUNT(start, end, iters)/1e3);
  132. start = perftime();
  133. for (i = 0; i < iters; ++i) {
  134. char key_out[CPATH_KEY_MATERIAL_LEN];
  135. onion_skin_TAP_server_handshake(os, key2, key, or,
  136. key_out, sizeof(key_out));
  137. }
  138. end = perftime();
  139. printf("Server-side, key guessed wrong: %f usec.\n",
  140. NANOCOUNT(start, end, iters)/1e3);
  141. start = perftime();
  142. for (i = 0; i < iters; ++i) {
  143. crypto_dh_t *dh;
  144. char key_out[CPATH_KEY_MATERIAL_LEN];
  145. int s;
  146. dh = crypto_dh_dup(dh_out);
  147. s = onion_skin_TAP_client_handshake(dh, or, key_out, sizeof(key_out));
  148. crypto_dh_free(dh);
  149. tor_assert(s == 0);
  150. }
  151. end = perftime();
  152. printf("Client-side, part 2: %f usec.\n",
  153. NANOCOUNT(start, end, iters)/1e3);
  154. done:
  155. crypto_pk_free(key);
  156. crypto_pk_free(key2);
  157. }
  158. #ifdef CURVE25519_ENABLED
  159. static void
  160. bench_onion_ntor(void)
  161. {
  162. const int iters = 1<<10;
  163. int i;
  164. curve25519_keypair_t keypair1, keypair2;
  165. uint64_t start, end;
  166. uint8_t os[NTOR_ONIONSKIN_LEN];
  167. uint8_t or[NTOR_REPLY_LEN];
  168. ntor_handshake_state_t *state = NULL;
  169. uint8_t nodeid[DIGEST_LEN];
  170. di_digest256_map_t *keymap = NULL;
  171. curve25519_secret_key_generate(&keypair1.seckey, 0);
  172. curve25519_public_key_generate(&keypair1.pubkey, &keypair1.seckey);
  173. curve25519_secret_key_generate(&keypair2.seckey, 0);
  174. curve25519_public_key_generate(&keypair2.pubkey, &keypair2.seckey);
  175. dimap_add_entry(&keymap, keypair1.pubkey.public_key, &keypair1);
  176. dimap_add_entry(&keymap, keypair2.pubkey.public_key, &keypair2);
  177. reset_perftime();
  178. start = perftime();
  179. for (i = 0; i < iters; ++i) {
  180. onion_skin_ntor_create(nodeid, &keypair1.pubkey, &state, os);
  181. ntor_handshake_state_free(state);
  182. state = NULL;
  183. }
  184. end = perftime();
  185. printf("Client-side, part 1: %f usec.\n", NANOCOUNT(start, end, iters)/1e3);
  186. state = NULL;
  187. onion_skin_ntor_create(nodeid, &keypair1.pubkey, &state, os);
  188. start = perftime();
  189. for (i = 0; i < iters; ++i) {
  190. uint8_t key_out[CPATH_KEY_MATERIAL_LEN];
  191. onion_skin_ntor_server_handshake(os, keymap, NULL, nodeid, or,
  192. key_out, sizeof(key_out));
  193. }
  194. end = perftime();
  195. printf("Server-side: %f usec\n",
  196. NANOCOUNT(start, end, iters)/1e3);
  197. start = perftime();
  198. for (i = 0; i < iters; ++i) {
  199. uint8_t key_out[CPATH_KEY_MATERIAL_LEN];
  200. int s;
  201. s = onion_skin_ntor_client_handshake(state, or, key_out, sizeof(key_out));
  202. tor_assert(s == 0);
  203. }
  204. end = perftime();
  205. printf("Client-side, part 2: %f usec.\n",
  206. NANOCOUNT(start, end, iters)/1e3);
  207. ntor_handshake_state_free(state);
  208. dimap_free(keymap, NULL);
  209. }
  210. #endif
  211. static void
  212. bench_cell_aes(void)
  213. {
  214. uint64_t start, end;
  215. const int len = 509;
  216. const int iters = (1<<16);
  217. const int max_misalign = 15;
  218. char *b = tor_malloc(len+max_misalign);
  219. crypto_cipher_t *c;
  220. int i, misalign;
  221. c = crypto_cipher_new(NULL);
  222. reset_perftime();
  223. for (misalign = 0; misalign <= max_misalign; ++misalign) {
  224. start = perftime();
  225. for (i = 0; i < iters; ++i) {
  226. crypto_cipher_crypt_inplace(c, b+misalign, len);
  227. }
  228. end = perftime();
  229. printf("%d bytes, misaligned by %d: %.2f nsec per byte\n", len, misalign,
  230. NANOCOUNT(start, end, iters*len));
  231. }
  232. crypto_cipher_free(c);
  233. tor_free(b);
  234. }
  235. /** Run digestmap_t performance benchmarks. */
  236. static void
  237. bench_dmap(void)
  238. {
  239. smartlist_t *sl = smartlist_new();
  240. smartlist_t *sl2 = smartlist_new();
  241. uint64_t start, end, pt2, pt3, pt4;
  242. int iters = 8192;
  243. const int elts = 4000;
  244. const int fpostests = 100000;
  245. char d[20];
  246. int i,n=0, fp = 0;
  247. digestmap_t *dm = digestmap_new();
  248. digestset_t *ds = digestset_new(elts);
  249. for (i = 0; i < elts; ++i) {
  250. crypto_rand(d, 20);
  251. smartlist_add(sl, tor_memdup(d, 20));
  252. }
  253. for (i = 0; i < elts; ++i) {
  254. crypto_rand(d, 20);
  255. smartlist_add(sl2, tor_memdup(d, 20));
  256. }
  257. printf("nbits=%d\n", ds->mask+1);
  258. reset_perftime();
  259. start = perftime();
  260. for (i = 0; i < iters; ++i) {
  261. SMARTLIST_FOREACH(sl, const char *, cp, digestmap_set(dm, cp, (void*)1));
  262. }
  263. pt2 = perftime();
  264. printf("digestmap_set: %.2f ns per element\n",
  265. NANOCOUNT(start, pt2, iters*elts));
  266. for (i = 0; i < iters; ++i) {
  267. SMARTLIST_FOREACH(sl, const char *, cp, digestmap_get(dm, cp));
  268. SMARTLIST_FOREACH(sl2, const char *, cp, digestmap_get(dm, cp));
  269. }
  270. pt3 = perftime();
  271. printf("digestmap_get: %.2f ns per element\n",
  272. NANOCOUNT(pt2, pt3, iters*elts*2));
  273. for (i = 0; i < iters; ++i) {
  274. SMARTLIST_FOREACH(sl, const char *, cp, digestset_add(ds, cp));
  275. }
  276. pt4 = perftime();
  277. printf("digestset_add: %.2f ns per element\n",
  278. NANOCOUNT(pt3, pt4, iters*elts));
  279. for (i = 0; i < iters; ++i) {
  280. SMARTLIST_FOREACH(sl, const char *, cp, n += digestset_contains(ds, cp));
  281. SMARTLIST_FOREACH(sl2, const char *, cp, n += digestset_contains(ds, cp));
  282. }
  283. end = perftime();
  284. printf("digestset_contains: %.2f ns per element.\n",
  285. NANOCOUNT(pt4, end, iters*elts*2));
  286. /* We need to use this, or else the whole loop gets optimized out. */
  287. printf("Hits == %d\n", n);
  288. for (i = 0; i < fpostests; ++i) {
  289. crypto_rand(d, 20);
  290. if (digestset_contains(ds, d)) ++fp;
  291. }
  292. printf("False positive rate on digestset: %.2f%%\n",
  293. (fp/(double)fpostests)*100);
  294. digestmap_free(dm, NULL);
  295. digestset_free(ds);
  296. SMARTLIST_FOREACH(sl, char *, cp, tor_free(cp));
  297. SMARTLIST_FOREACH(sl2, char *, cp, tor_free(cp));
  298. smartlist_free(sl);
  299. smartlist_free(sl2);
  300. }
  301. static void
  302. bench_siphash(void)
  303. {
  304. char buf[128];
  305. int lens[] = { 7, 8, 15, 16, 20, 32, 111, 128, -1 };
  306. int i, j;
  307. uint64_t start, end;
  308. const int N = 300000;
  309. crypto_rand(buf, sizeof(buf));
  310. for (i = 0; lens[i] > 0; ++i) {
  311. reset_perftime();
  312. start = perftime();
  313. for (j = 0; j < N; ++j) {
  314. siphash24g(buf, lens[i]);
  315. }
  316. end = perftime();
  317. printf("siphash24g(%d): %.2f ns per call\n",
  318. lens[i], NANOCOUNT(start,end,N));
  319. }
  320. }
  321. static void
  322. bench_cell_ops(void)
  323. {
  324. const int iters = 1<<16;
  325. int i;
  326. /* benchmarks for cell ops at relay. */
  327. or_circuit_t *or_circ = tor_malloc_zero(sizeof(or_circuit_t));
  328. cell_t *cell = tor_malloc(sizeof(cell_t));
  329. int outbound;
  330. uint64_t start, end;
  331. crypto_rand((char*)cell->payload, sizeof(cell->payload));
  332. /* Mock-up or_circuit_t */
  333. or_circ->base_.magic = OR_CIRCUIT_MAGIC;
  334. or_circ->base_.purpose = CIRCUIT_PURPOSE_OR;
  335. /* Initialize crypto */
  336. or_circ->p_crypto = crypto_cipher_new(NULL);
  337. or_circ->n_crypto = crypto_cipher_new(NULL);
  338. or_circ->p_digest = crypto_digest_new();
  339. or_circ->n_digest = crypto_digest_new();
  340. reset_perftime();
  341. for (outbound = 0; outbound <= 1; ++outbound) {
  342. cell_direction_t d = outbound ? CELL_DIRECTION_OUT : CELL_DIRECTION_IN;
  343. start = perftime();
  344. for (i = 0; i < iters; ++i) {
  345. char recognized = 0;
  346. crypt_path_t *layer_hint = NULL;
  347. relay_crypt(TO_CIRCUIT(or_circ), cell, d, &layer_hint, &recognized);
  348. }
  349. end = perftime();
  350. printf("%sbound cells: %.2f ns per cell. (%.2f ns per byte of payload)\n",
  351. outbound?"Out":" In",
  352. NANOCOUNT(start,end,iters),
  353. NANOCOUNT(start,end,iters*CELL_PAYLOAD_SIZE));
  354. }
  355. crypto_digest_free(or_circ->p_digest);
  356. crypto_digest_free(or_circ->n_digest);
  357. crypto_cipher_free(or_circ->p_crypto);
  358. crypto_cipher_free(or_circ->n_crypto);
  359. tor_free(or_circ);
  360. tor_free(cell);
  361. }
  362. static void
  363. bench_dh(void)
  364. {
  365. const int iters = 1<<10;
  366. int i;
  367. uint64_t start, end;
  368. reset_perftime();
  369. start = perftime();
  370. for (i = 0; i < iters; ++i) {
  371. char dh_pubkey_a[DH_BYTES], dh_pubkey_b[DH_BYTES];
  372. char secret_a[DH_BYTES], secret_b[DH_BYTES];
  373. ssize_t slen_a, slen_b;
  374. crypto_dh_t *dh_a = crypto_dh_new(DH_TYPE_TLS);
  375. crypto_dh_t *dh_b = crypto_dh_new(DH_TYPE_TLS);
  376. crypto_dh_generate_public(dh_a);
  377. crypto_dh_generate_public(dh_b);
  378. crypto_dh_get_public(dh_a, dh_pubkey_a, sizeof(dh_pubkey_a));
  379. crypto_dh_get_public(dh_b, dh_pubkey_b, sizeof(dh_pubkey_b));
  380. slen_a = crypto_dh_compute_secret(LOG_NOTICE,
  381. dh_a, dh_pubkey_b, sizeof(dh_pubkey_b),
  382. secret_a, sizeof(secret_a));
  383. slen_b = crypto_dh_compute_secret(LOG_NOTICE,
  384. dh_b, dh_pubkey_a, sizeof(dh_pubkey_a),
  385. secret_b, sizeof(secret_b));
  386. tor_assert(slen_a == slen_b);
  387. tor_assert(!memcmp(secret_a, secret_b, slen_a));
  388. crypto_dh_free(dh_a);
  389. crypto_dh_free(dh_b);
  390. }
  391. end = perftime();
  392. printf("Complete DH handshakes (1024 bit, public and private ops):\n"
  393. " %f millisec each.\n", NANOCOUNT(start, end, iters)/1e6);
  394. }
  395. #if (!defined(OPENSSL_NO_EC) \
  396. && OPENSSL_VERSION_NUMBER >= OPENSSL_V_SERIES(1,0,0))
  397. #define HAVE_EC_BENCHMARKS
  398. static void
  399. bench_ecdh_impl(int nid, const char *name)
  400. {
  401. const int iters = 1<<10;
  402. int i;
  403. uint64_t start, end;
  404. reset_perftime();
  405. start = perftime();
  406. for (i = 0; i < iters; ++i) {
  407. char secret_a[DH_BYTES], secret_b[DH_BYTES];
  408. ssize_t slen_a, slen_b;
  409. EC_KEY *dh_a = EC_KEY_new_by_curve_name(nid);
  410. EC_KEY *dh_b = EC_KEY_new_by_curve_name(nid);
  411. if (!dh_a || !dh_b) {
  412. puts("Skipping. (No implementation?)");
  413. return;
  414. }
  415. EC_KEY_generate_key(dh_a);
  416. EC_KEY_generate_key(dh_b);
  417. slen_a = ECDH_compute_key(secret_a, DH_BYTES,
  418. EC_KEY_get0_public_key(dh_b), dh_a,
  419. NULL);
  420. slen_b = ECDH_compute_key(secret_b, DH_BYTES,
  421. EC_KEY_get0_public_key(dh_a), dh_b,
  422. NULL);
  423. tor_assert(slen_a == slen_b);
  424. tor_assert(!memcmp(secret_a, secret_b, slen_a));
  425. EC_KEY_free(dh_a);
  426. EC_KEY_free(dh_b);
  427. }
  428. end = perftime();
  429. printf("Complete ECDH %s handshakes (2 public and 2 private ops):\n"
  430. " %f millisec each.\n", name, NANOCOUNT(start, end, iters)/1e6);
  431. }
  432. static void
  433. bench_ecdh_p256(void)
  434. {
  435. bench_ecdh_impl(NID_X9_62_prime256v1, "P-256");
  436. }
  437. static void
  438. bench_ecdh_p224(void)
  439. {
  440. bench_ecdh_impl(NID_secp224r1, "P-224");
  441. }
  442. #endif
  443. typedef void (*bench_fn)(void);
  444. typedef struct benchmark_t {
  445. const char *name;
  446. bench_fn fn;
  447. int enabled;
  448. } benchmark_t;
  449. #define ENT(s) { #s , bench_##s, 0 }
  450. static struct benchmark_t benchmarks[] = {
  451. ENT(dmap),
  452. ENT(siphash),
  453. ENT(aes),
  454. ENT(onion_TAP),
  455. #ifdef CURVE25519_ENABLED
  456. ENT(onion_ntor),
  457. #endif
  458. ENT(cell_aes),
  459. ENT(cell_ops),
  460. ENT(dh),
  461. #ifdef HAVE_EC_BENCHMARKS
  462. ENT(ecdh_p256),
  463. ENT(ecdh_p224),
  464. #endif
  465. {NULL,NULL,0}
  466. };
  467. static benchmark_t *
  468. find_benchmark(const char *name)
  469. {
  470. benchmark_t *b;
  471. for (b = benchmarks; b->name; ++b) {
  472. if (!strcmp(name, b->name)) {
  473. return b;
  474. }
  475. }
  476. return NULL;
  477. }
  478. /** Main entry point for benchmark code: parse the command line, and run
  479. * some benchmarks. */
  480. int
  481. main(int argc, const char **argv)
  482. {
  483. int i;
  484. int list=0, n_enabled=0;
  485. benchmark_t *b;
  486. char *errmsg;
  487. or_options_t *options;
  488. tor_threads_init();
  489. for (i = 1; i < argc; ++i) {
  490. if (!strcmp(argv[i], "--list")) {
  491. list = 1;
  492. } else {
  493. benchmark_t *b = find_benchmark(argv[i]);
  494. ++n_enabled;
  495. if (b) {
  496. b->enabled = 1;
  497. } else {
  498. printf("No such benchmark as %s\n", argv[i]);
  499. }
  500. }
  501. }
  502. reset_perftime();
  503. crypto_seed_rng(1);
  504. crypto_init_siphash_key();
  505. options = options_new();
  506. init_logging();
  507. options->command = CMD_RUN_UNITTESTS;
  508. options->DataDirectory = tor_strdup("");
  509. options_init(options);
  510. if (set_options(options, &errmsg) < 0) {
  511. printf("Failed to set initial options: %s\n", errmsg);
  512. tor_free(errmsg);
  513. return 1;
  514. }
  515. for (b = benchmarks; b->name; ++b) {
  516. if (b->enabled || n_enabled == 0) {
  517. printf("===== %s =====\n", b->name);
  518. if (!list)
  519. b->fn();
  520. }
  521. }
  522. return 0;
  523. }