test.c 44 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261
  1. /* Copyright (c) 2001-2004, Roger Dingledine.
  2. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  3. * Copyright (c) 2007-2017, The Tor Project, Inc. */
  4. /* See LICENSE for licensing information */
  5. /**
  6. * \file test.c
  7. * \brief Unit tests for many pieces of the lower level Tor modules.
  8. **/
  9. #include "orconfig.h"
  10. #include <stdio.h>
  11. #ifdef HAVE_FCNTL_H
  12. #include <fcntl.h>
  13. #endif
  14. #ifdef _WIN32
  15. /* For mkdir() */
  16. #include <direct.h>
  17. #else
  18. #include <dirent.h>
  19. #endif /* defined(_WIN32) */
  20. #include <math.h>
  21. /* These macros pull in declarations for some functions and structures that
  22. * are typically file-private. */
  23. #define GEOIP_PRIVATE
  24. #define ROUTER_PRIVATE
  25. #define CIRCUITSTATS_PRIVATE
  26. #define CIRCUITLIST_PRIVATE
  27. #define MAIN_PRIVATE
  28. #define STATEFILE_PRIVATE
  29. #include "or.h"
  30. #include "backtrace.h"
  31. #include "buffers.h"
  32. #include "circuitlist.h"
  33. #include "circuitstats.h"
  34. #include "compress.h"
  35. #include "config.h"
  36. #include "connection_edge.h"
  37. #include "geoip.h"
  38. #include "rendcommon.h"
  39. #include "rendcache.h"
  40. #include "test.h"
  41. #include "main.h"
  42. #include "memarea.h"
  43. #include "onion.h"
  44. #include "onion_ntor.h"
  45. #include "onion_fast.h"
  46. #include "onion_tap.h"
  47. #include "policies.h"
  48. #include "rephist.h"
  49. #include "routerparse.h"
  50. #include "statefile.h"
  51. #include "crypto_curve25519.h"
  52. #include "onion_ntor.h"
  53. /** Run unit tests for the onion handshake code. */
  54. static void
  55. test_onion_handshake(void *arg)
  56. {
  57. /* client-side */
  58. crypto_dh_t *c_dh = NULL;
  59. char c_buf[TAP_ONIONSKIN_CHALLENGE_LEN];
  60. char c_keys[40];
  61. /* server-side */
  62. char s_buf[TAP_ONIONSKIN_REPLY_LEN];
  63. char s_keys[40];
  64. int i;
  65. /* shared */
  66. crypto_pk_t *pk = NULL, *pk2 = NULL;
  67. (void)arg;
  68. pk = pk_generate(0);
  69. pk2 = pk_generate(1);
  70. /* client handshake 1. */
  71. memset(c_buf, 0, TAP_ONIONSKIN_CHALLENGE_LEN);
  72. tt_assert(! onion_skin_TAP_create(pk, &c_dh, c_buf));
  73. for (i = 1; i <= 3; ++i) {
  74. crypto_pk_t *k1, *k2;
  75. if (i==1) {
  76. /* server handshake: only one key known. */
  77. k1 = pk; k2 = NULL;
  78. } else if (i==2) {
  79. /* server handshake: try the right key first. */
  80. k1 = pk; k2 = pk2;
  81. } else {
  82. /* server handshake: try the right key second. */
  83. k1 = pk2; k2 = pk;
  84. }
  85. memset(s_buf, 0, TAP_ONIONSKIN_REPLY_LEN);
  86. memset(s_keys, 0, 40);
  87. tt_assert(! onion_skin_TAP_server_handshake(c_buf, k1, k2,
  88. s_buf, s_keys, 40));
  89. /* client handshake 2 */
  90. memset(c_keys, 0, 40);
  91. tt_assert(! onion_skin_TAP_client_handshake(c_dh, s_buf, c_keys,
  92. 40, NULL));
  93. tt_mem_op(c_keys,OP_EQ, s_keys, 40);
  94. memset(s_buf, 0, 40);
  95. tt_mem_op(c_keys,OP_NE, s_buf, 40);
  96. }
  97. done:
  98. crypto_dh_free(c_dh);
  99. crypto_pk_free(pk);
  100. crypto_pk_free(pk2);
  101. }
  102. static void
  103. test_bad_onion_handshake(void *arg)
  104. {
  105. char junk_buf[TAP_ONIONSKIN_CHALLENGE_LEN];
  106. char junk_buf2[TAP_ONIONSKIN_CHALLENGE_LEN];
  107. /* client-side */
  108. crypto_dh_t *c_dh = NULL;
  109. char c_buf[TAP_ONIONSKIN_CHALLENGE_LEN];
  110. char c_keys[40];
  111. /* server-side */
  112. char s_buf[TAP_ONIONSKIN_REPLY_LEN];
  113. char s_keys[40];
  114. /* shared */
  115. crypto_pk_t *pk = NULL, *pk2 = NULL;
  116. (void)arg;
  117. pk = pk_generate(0);
  118. pk2 = pk_generate(1);
  119. /* Server: Case 1: the encrypted data is degenerate. */
  120. memset(junk_buf, 0, sizeof(junk_buf));
  121. crypto_pk_obsolete_public_hybrid_encrypt(pk,
  122. junk_buf2, TAP_ONIONSKIN_CHALLENGE_LEN,
  123. junk_buf, DH_KEY_LEN, PK_PKCS1_OAEP_PADDING, 1);
  124. tt_int_op(-1, OP_EQ,
  125. onion_skin_TAP_server_handshake(junk_buf2, pk, NULL,
  126. s_buf, s_keys, 40));
  127. /* Server: Case 2: the encrypted data is not long enough. */
  128. memset(junk_buf, 0, sizeof(junk_buf));
  129. memset(junk_buf2, 0, sizeof(junk_buf2));
  130. crypto_pk_public_encrypt(pk, junk_buf2, sizeof(junk_buf2),
  131. junk_buf, 48, PK_PKCS1_OAEP_PADDING);
  132. tt_int_op(-1, OP_EQ,
  133. onion_skin_TAP_server_handshake(junk_buf2, pk, NULL,
  134. s_buf, s_keys, 40));
  135. /* client handshake 1: do it straight. */
  136. memset(c_buf, 0, TAP_ONIONSKIN_CHALLENGE_LEN);
  137. tt_assert(! onion_skin_TAP_create(pk, &c_dh, c_buf));
  138. /* Server: Case 3: we just don't have the right key. */
  139. tt_int_op(-1, OP_EQ,
  140. onion_skin_TAP_server_handshake(c_buf, pk2, NULL,
  141. s_buf, s_keys, 40));
  142. /* Server: Case 4: The RSA-encrypted portion is corrupt. */
  143. c_buf[64] ^= 33;
  144. tt_int_op(-1, OP_EQ,
  145. onion_skin_TAP_server_handshake(c_buf, pk, NULL,
  146. s_buf, s_keys, 40));
  147. c_buf[64] ^= 33;
  148. /* (Let the server procede) */
  149. tt_int_op(0, OP_EQ,
  150. onion_skin_TAP_server_handshake(c_buf, pk, NULL,
  151. s_buf, s_keys, 40));
  152. /* Client: Case 1: The server sent back junk. */
  153. const char *msg = NULL;
  154. s_buf[64] ^= 33;
  155. tt_int_op(-1, OP_EQ,
  156. onion_skin_TAP_client_handshake(c_dh, s_buf, c_keys, 40, &msg));
  157. s_buf[64] ^= 33;
  158. tt_str_op(msg, OP_EQ, "Digest DOES NOT MATCH on onion handshake. "
  159. "Bug or attack.");
  160. /* Let the client finish; make sure it can. */
  161. msg = NULL;
  162. tt_int_op(0, OP_EQ,
  163. onion_skin_TAP_client_handshake(c_dh, s_buf, c_keys, 40, &msg));
  164. tt_mem_op(s_keys,OP_EQ, c_keys, 40);
  165. tt_ptr_op(msg, OP_EQ, NULL);
  166. /* Client: Case 2: The server sent back a degenerate DH. */
  167. memset(s_buf, 0, sizeof(s_buf));
  168. tt_int_op(-1, OP_EQ,
  169. onion_skin_TAP_client_handshake(c_dh, s_buf, c_keys, 40, &msg));
  170. tt_str_op(msg, OP_EQ, "DH computation failed.");
  171. done:
  172. crypto_dh_free(c_dh);
  173. crypto_pk_free(pk);
  174. crypto_pk_free(pk2);
  175. }
  176. static void
  177. test_ntor_handshake(void *arg)
  178. {
  179. /* client-side */
  180. ntor_handshake_state_t *c_state = NULL;
  181. uint8_t c_buf[NTOR_ONIONSKIN_LEN];
  182. uint8_t c_keys[400];
  183. /* server-side */
  184. di_digest256_map_t *s_keymap=NULL;
  185. curve25519_keypair_t s_keypair;
  186. uint8_t s_buf[NTOR_REPLY_LEN];
  187. uint8_t s_keys[400];
  188. /* shared */
  189. const curve25519_public_key_t *server_pubkey;
  190. uint8_t node_id[20] = "abcdefghijklmnopqrst";
  191. (void) arg;
  192. /* Make the server some keys */
  193. curve25519_secret_key_generate(&s_keypair.seckey, 0);
  194. curve25519_public_key_generate(&s_keypair.pubkey, &s_keypair.seckey);
  195. dimap_add_entry(&s_keymap, s_keypair.pubkey.public_key, &s_keypair);
  196. server_pubkey = &s_keypair.pubkey;
  197. /* client handshake 1. */
  198. memset(c_buf, 0, NTOR_ONIONSKIN_LEN);
  199. tt_int_op(0, OP_EQ, onion_skin_ntor_create(node_id, server_pubkey,
  200. &c_state, c_buf));
  201. /* server handshake */
  202. memset(s_buf, 0, NTOR_REPLY_LEN);
  203. memset(s_keys, 0, 40);
  204. tt_int_op(0, OP_EQ, onion_skin_ntor_server_handshake(c_buf, s_keymap, NULL,
  205. node_id,
  206. s_buf, s_keys, 400));
  207. /* client handshake 2 */
  208. memset(c_keys, 0, 40);
  209. tt_int_op(0, OP_EQ, onion_skin_ntor_client_handshake(c_state, s_buf,
  210. c_keys, 400, NULL));
  211. tt_mem_op(c_keys,OP_EQ, s_keys, 400);
  212. memset(s_buf, 0, 40);
  213. tt_mem_op(c_keys,OP_NE, s_buf, 40);
  214. /* Now try with a bogus server response. Zero input should trigger
  215. * All The Problems. */
  216. memset(c_keys, 0, 400);
  217. memset(s_buf, 0, NTOR_REPLY_LEN);
  218. const char *msg = NULL;
  219. tt_int_op(-1, OP_EQ, onion_skin_ntor_client_handshake(c_state, s_buf,
  220. c_keys, 400, &msg));
  221. tt_str_op(msg, OP_EQ, "Zero output from curve25519 handshake");
  222. done:
  223. ntor_handshake_state_free(c_state);
  224. dimap_free(s_keymap, NULL);
  225. }
  226. static void
  227. test_fast_handshake(void *arg)
  228. {
  229. /* tests for the obsolete "CREATE_FAST" handshake. */
  230. (void) arg;
  231. fast_handshake_state_t *state = NULL;
  232. uint8_t client_handshake[CREATE_FAST_LEN];
  233. uint8_t server_handshake[CREATED_FAST_LEN];
  234. uint8_t s_keys[100], c_keys[100];
  235. /* First, test an entire handshake. */
  236. memset(client_handshake, 0, sizeof(client_handshake));
  237. tt_int_op(0, OP_EQ, fast_onionskin_create(&state, client_handshake));
  238. tt_assert(! tor_mem_is_zero((char*)client_handshake,
  239. sizeof(client_handshake)));
  240. tt_int_op(0, OP_EQ,
  241. fast_server_handshake(client_handshake, server_handshake,
  242. s_keys, 100));
  243. const char *msg = NULL;
  244. tt_int_op(0, OP_EQ,
  245. fast_client_handshake(state, server_handshake, c_keys, 100, &msg));
  246. tt_ptr_op(msg, OP_EQ, NULL);
  247. tt_mem_op(s_keys, OP_EQ, c_keys, 100);
  248. /* Now test a failing handshake. */
  249. server_handshake[0] ^= 3;
  250. tt_int_op(-1, OP_EQ,
  251. fast_client_handshake(state, server_handshake, c_keys, 100, &msg));
  252. tt_str_op(msg, OP_EQ, "Digest DOES NOT MATCH on fast handshake. "
  253. "Bug or attack.");
  254. done:
  255. fast_handshake_state_free(state);
  256. }
  257. /** Run unit tests for the onion queues. */
  258. static void
  259. test_onion_queues(void *arg)
  260. {
  261. uint8_t buf1[TAP_ONIONSKIN_CHALLENGE_LEN] = {0};
  262. uint8_t buf2[NTOR_ONIONSKIN_LEN] = {0};
  263. or_circuit_t *circ1 = or_circuit_new(0, NULL);
  264. or_circuit_t *circ2 = or_circuit_new(0, NULL);
  265. create_cell_t *onionskin = NULL, *create2_ptr;
  266. create_cell_t *create1 = tor_malloc_zero(sizeof(create_cell_t));
  267. create_cell_t *create2 = tor_malloc_zero(sizeof(create_cell_t));
  268. (void)arg;
  269. create2_ptr = create2; /* remember, but do not free */
  270. create_cell_init(create1, CELL_CREATE, ONION_HANDSHAKE_TYPE_TAP,
  271. TAP_ONIONSKIN_CHALLENGE_LEN, buf1);
  272. create_cell_init(create2, CELL_CREATE, ONION_HANDSHAKE_TYPE_NTOR,
  273. NTOR_ONIONSKIN_LEN, buf2);
  274. tt_int_op(0,OP_EQ, onion_num_pending(ONION_HANDSHAKE_TYPE_TAP));
  275. tt_int_op(0,OP_EQ, onion_pending_add(circ1, create1));
  276. create1 = NULL;
  277. tt_int_op(1,OP_EQ, onion_num_pending(ONION_HANDSHAKE_TYPE_TAP));
  278. tt_int_op(0,OP_EQ, onion_num_pending(ONION_HANDSHAKE_TYPE_NTOR));
  279. tt_int_op(0,OP_EQ, onion_pending_add(circ2, create2));
  280. create2 = NULL;
  281. tt_int_op(1,OP_EQ, onion_num_pending(ONION_HANDSHAKE_TYPE_NTOR));
  282. tt_ptr_op(circ2,OP_EQ, onion_next_task(&onionskin));
  283. tt_int_op(1,OP_EQ, onion_num_pending(ONION_HANDSHAKE_TYPE_TAP));
  284. tt_int_op(0,OP_EQ, onion_num_pending(ONION_HANDSHAKE_TYPE_NTOR));
  285. tt_ptr_op(onionskin, OP_EQ, create2_ptr);
  286. clear_pending_onions();
  287. tt_int_op(0,OP_EQ, onion_num_pending(ONION_HANDSHAKE_TYPE_TAP));
  288. tt_int_op(0,OP_EQ, onion_num_pending(ONION_HANDSHAKE_TYPE_NTOR));
  289. done:
  290. circuit_free(TO_CIRCUIT(circ1));
  291. circuit_free(TO_CIRCUIT(circ2));
  292. tor_free(create1);
  293. tor_free(create2);
  294. tor_free(onionskin);
  295. }
  296. static void
  297. test_circuit_timeout(void *arg)
  298. {
  299. /* Plan:
  300. * 1. Generate 1000 samples
  301. * 2. Estimate parameters
  302. * 3. If difference, repeat
  303. * 4. Save state
  304. * 5. load state
  305. * 6. Estimate parameters
  306. * 7. compare differences
  307. */
  308. circuit_build_times_t initial;
  309. circuit_build_times_t estimate;
  310. circuit_build_times_t final;
  311. double timeout1, timeout2;
  312. or_state_t *state=NULL;
  313. int i, runs;
  314. double close_ms;
  315. (void)arg;
  316. initialize_periodic_events();
  317. circuit_build_times_init(&initial);
  318. circuit_build_times_init(&estimate);
  319. circuit_build_times_init(&final);
  320. state = or_state_new();
  321. circuitbuild_running_unit_tests();
  322. #define timeout0 (build_time_t)(30*1000.0)
  323. initial.Xm = 3000;
  324. circuit_build_times_initial_alpha(&initial,
  325. CBT_DEFAULT_QUANTILE_CUTOFF/100.0,
  326. timeout0);
  327. close_ms = MAX(circuit_build_times_calculate_timeout(&initial,
  328. CBT_DEFAULT_CLOSE_QUANTILE/100.0),
  329. CBT_DEFAULT_TIMEOUT_INITIAL_VALUE);
  330. do {
  331. for (i=0; i < CBT_DEFAULT_MIN_CIRCUITS_TO_OBSERVE; i++) {
  332. build_time_t sample = circuit_build_times_generate_sample(&initial,0,1);
  333. if (sample > close_ms) {
  334. circuit_build_times_add_time(&estimate, CBT_BUILD_ABANDONED);
  335. } else {
  336. circuit_build_times_add_time(&estimate, sample);
  337. }
  338. }
  339. circuit_build_times_update_alpha(&estimate);
  340. timeout1 = circuit_build_times_calculate_timeout(&estimate,
  341. CBT_DEFAULT_QUANTILE_CUTOFF/100.0);
  342. circuit_build_times_set_timeout(&estimate);
  343. log_notice(LD_CIRC, "Timeout1 is %f, Xm is %d", timeout1, estimate.Xm);
  344. /* 2% error */
  345. } while (fabs(circuit_build_times_cdf(&initial, timeout0) -
  346. circuit_build_times_cdf(&initial, timeout1)) > 0.02);
  347. tt_int_op(estimate.total_build_times, OP_LE, CBT_NCIRCUITS_TO_OBSERVE);
  348. circuit_build_times_update_state(&estimate, state);
  349. circuit_build_times_free_timeouts(&final);
  350. tt_int_op(circuit_build_times_parse_state(&final, state), OP_EQ, 0);
  351. circuit_build_times_update_alpha(&final);
  352. timeout2 = circuit_build_times_calculate_timeout(&final,
  353. CBT_DEFAULT_QUANTILE_CUTOFF/100.0);
  354. circuit_build_times_set_timeout(&final);
  355. log_notice(LD_CIRC, "Timeout2 is %f, Xm is %d", timeout2, final.Xm);
  356. /* 5% here because some accuracy is lost due to histogram conversion */
  357. tt_assert(fabs(circuit_build_times_cdf(&initial, timeout0) -
  358. circuit_build_times_cdf(&initial, timeout2)) < 0.05);
  359. for (runs = 0; runs < 50; runs++) {
  360. int build_times_idx = 0;
  361. int total_build_times = 0;
  362. final.close_ms = final.timeout_ms = CBT_DEFAULT_TIMEOUT_INITIAL_VALUE;
  363. estimate.close_ms = estimate.timeout_ms
  364. = CBT_DEFAULT_TIMEOUT_INITIAL_VALUE;
  365. for (i = 0; i < CBT_DEFAULT_RECENT_CIRCUITS*2; i++) {
  366. circuit_build_times_network_circ_success(&estimate);
  367. circuit_build_times_add_time(&estimate,
  368. circuit_build_times_generate_sample(&estimate, 0,
  369. CBT_DEFAULT_QUANTILE_CUTOFF/100.0));
  370. circuit_build_times_network_circ_success(&estimate);
  371. circuit_build_times_add_time(&final,
  372. circuit_build_times_generate_sample(&final, 0,
  373. CBT_DEFAULT_QUANTILE_CUTOFF/100.0));
  374. }
  375. tt_assert(!circuit_build_times_network_check_changed(&estimate));
  376. tt_assert(!circuit_build_times_network_check_changed(&final));
  377. /* Reset liveness to be non-live */
  378. final.liveness.network_last_live = 0;
  379. estimate.liveness.network_last_live = 0;
  380. build_times_idx = estimate.build_times_idx;
  381. total_build_times = estimate.total_build_times;
  382. tt_assert(circuit_build_times_network_check_live(&estimate));
  383. tt_assert(circuit_build_times_network_check_live(&final));
  384. circuit_build_times_count_close(&estimate, 0,
  385. (time_t)(approx_time()-estimate.close_ms/1000.0-1));
  386. circuit_build_times_count_close(&final, 0,
  387. (time_t)(approx_time()-final.close_ms/1000.0-1));
  388. tt_assert(!circuit_build_times_network_check_live(&estimate));
  389. tt_assert(!circuit_build_times_network_check_live(&final));
  390. log_info(LD_CIRC, "idx: %d %d, tot: %d %d",
  391. build_times_idx, estimate.build_times_idx,
  392. total_build_times, estimate.total_build_times);
  393. /* Check rollback index. Should match top of loop. */
  394. tt_assert(build_times_idx == estimate.build_times_idx);
  395. // This can fail if estimate.total_build_times == 1000, because
  396. // in that case, rewind actually causes us to lose timeouts
  397. if (total_build_times != CBT_NCIRCUITS_TO_OBSERVE)
  398. tt_assert(total_build_times == estimate.total_build_times);
  399. /* Now simulate that the network has become live and we need
  400. * a change */
  401. circuit_build_times_network_is_live(&estimate);
  402. circuit_build_times_network_is_live(&final);
  403. for (i = 0; i < CBT_DEFAULT_MAX_RECENT_TIMEOUT_COUNT; i++) {
  404. circuit_build_times_count_timeout(&estimate, 1);
  405. if (i < CBT_DEFAULT_MAX_RECENT_TIMEOUT_COUNT-1) {
  406. circuit_build_times_count_timeout(&final, 1);
  407. }
  408. }
  409. tt_int_op(estimate.liveness.after_firsthop_idx, OP_EQ, 0);
  410. tt_assert(final.liveness.after_firsthop_idx ==
  411. CBT_DEFAULT_MAX_RECENT_TIMEOUT_COUNT-1);
  412. tt_assert(circuit_build_times_network_check_live(&estimate));
  413. tt_assert(circuit_build_times_network_check_live(&final));
  414. circuit_build_times_count_timeout(&final, 1);
  415. /* Ensure return value for degenerate cases are clamped correctly */
  416. initial.alpha = INT32_MAX;
  417. tt_assert(circuit_build_times_calculate_timeout(&initial, .99999999) <=
  418. INT32_MAX);
  419. initial.alpha = 0;
  420. tt_assert(circuit_build_times_calculate_timeout(&initial, .5) <=
  421. INT32_MAX);
  422. }
  423. done:
  424. circuit_build_times_free_timeouts(&initial);
  425. circuit_build_times_free_timeouts(&estimate);
  426. circuit_build_times_free_timeouts(&final);
  427. or_state_free(state);
  428. teardown_periodic_events();
  429. }
  430. /** Test encoding and parsing of rendezvous service descriptors. */
  431. static void
  432. test_rend_fns(void *arg)
  433. {
  434. rend_service_descriptor_t *generated = NULL, *parsed = NULL;
  435. char service_id[DIGEST_LEN];
  436. char service_id_base32[REND_SERVICE_ID_LEN_BASE32+1];
  437. const char *next_desc;
  438. smartlist_t *descs = smartlist_new();
  439. char computed_desc_id[DIGEST_LEN];
  440. char parsed_desc_id[DIGEST_LEN];
  441. crypto_pk_t *pk1 = NULL, *pk2 = NULL;
  442. time_t now;
  443. char *intro_points_encrypted = NULL;
  444. size_t intro_points_size;
  445. size_t encoded_size;
  446. int i;
  447. (void)arg;
  448. /* Initialize the service cache. */
  449. rend_cache_init();
  450. pk1 = pk_generate(0);
  451. pk2 = pk_generate(1);
  452. generated = tor_malloc_zero(sizeof(rend_service_descriptor_t));
  453. generated->pk = crypto_pk_dup_key(pk1);
  454. crypto_pk_get_digest(generated->pk, service_id);
  455. base32_encode(service_id_base32, REND_SERVICE_ID_LEN_BASE32+1,
  456. service_id, REND_SERVICE_ID_LEN);
  457. now = time(NULL);
  458. generated->timestamp = now;
  459. generated->version = 2;
  460. generated->protocols = 42;
  461. generated->intro_nodes = smartlist_new();
  462. for (i = 0; i < 3; i++) {
  463. rend_intro_point_t *intro = tor_malloc_zero(sizeof(rend_intro_point_t));
  464. crypto_pk_t *okey = pk_generate(2 + i);
  465. intro->extend_info = tor_malloc_zero(sizeof(extend_info_t));
  466. intro->extend_info->onion_key = okey;
  467. crypto_pk_get_digest(intro->extend_info->onion_key,
  468. intro->extend_info->identity_digest);
  469. //crypto_rand(info->identity_digest, DIGEST_LEN); /* Would this work? */
  470. intro->extend_info->nickname[0] = '$';
  471. base16_encode(intro->extend_info->nickname + 1,
  472. sizeof(intro->extend_info->nickname) - 1,
  473. intro->extend_info->identity_digest, DIGEST_LEN);
  474. /* Does not cover all IP addresses. */
  475. tor_addr_from_ipv4h(&intro->extend_info->addr, crypto_rand_int(65536));
  476. intro->extend_info->port = 1 + crypto_rand_int(65535);
  477. intro->intro_key = crypto_pk_dup_key(pk2);
  478. smartlist_add(generated->intro_nodes, intro);
  479. }
  480. int rv = rend_encode_v2_descriptors(descs, generated, now, 0,
  481. REND_NO_AUTH, NULL, NULL);
  482. tt_int_op(rv, OP_GT, 0);
  483. rv = rend_compute_v2_desc_id(computed_desc_id, service_id_base32, NULL,
  484. now, 0);
  485. tt_int_op(rv, OP_EQ, 0);
  486. tt_mem_op(((rend_encoded_v2_service_descriptor_t *)
  487. smartlist_get(descs, 0))->desc_id, OP_EQ,
  488. computed_desc_id, DIGEST_LEN);
  489. rv = rend_parse_v2_service_descriptor(&parsed, parsed_desc_id,
  490. &intro_points_encrypted, &intro_points_size, &encoded_size,
  491. &next_desc,
  492. ((rend_encoded_v2_service_descriptor_t *)smartlist_get(descs, 0))
  493. ->desc_str, 1);
  494. tt_int_op(rv, OP_EQ, 0);
  495. tt_assert(parsed);
  496. tt_mem_op(((rend_encoded_v2_service_descriptor_t *)
  497. smartlist_get(descs, 0))->desc_id,OP_EQ, parsed_desc_id, DIGEST_LEN);
  498. tt_int_op(rend_parse_introduction_points(parsed, intro_points_encrypted,
  499. intro_points_size),OP_EQ, 3);
  500. tt_assert(!crypto_pk_cmp_keys(generated->pk, parsed->pk));
  501. tt_int_op(parsed->timestamp,OP_EQ, now);
  502. tt_int_op(parsed->version,OP_EQ, 2);
  503. tt_int_op(parsed->protocols,OP_EQ, 42);
  504. tt_int_op(smartlist_len(parsed->intro_nodes),OP_EQ, 3);
  505. for (i = 0; i < smartlist_len(parsed->intro_nodes); i++) {
  506. rend_intro_point_t *par_intro = smartlist_get(parsed->intro_nodes, i),
  507. *gen_intro = smartlist_get(generated->intro_nodes, i);
  508. extend_info_t *par_info = par_intro->extend_info;
  509. extend_info_t *gen_info = gen_intro->extend_info;
  510. tt_assert(!crypto_pk_cmp_keys(gen_info->onion_key, par_info->onion_key));
  511. tt_mem_op(gen_info->identity_digest,OP_EQ, par_info->identity_digest,
  512. DIGEST_LEN);
  513. tt_str_op(gen_info->nickname,OP_EQ, par_info->nickname);
  514. tt_assert(tor_addr_eq(&gen_info->addr, &par_info->addr));
  515. tt_int_op(gen_info->port,OP_EQ, par_info->port);
  516. }
  517. rend_service_descriptor_free(parsed);
  518. rend_service_descriptor_free(generated);
  519. parsed = generated = NULL;
  520. done:
  521. if (descs) {
  522. for (i = 0; i < smartlist_len(descs); i++)
  523. rend_encoded_v2_service_descriptor_free(smartlist_get(descs, i));
  524. smartlist_free(descs);
  525. }
  526. if (parsed)
  527. rend_service_descriptor_free(parsed);
  528. if (generated)
  529. rend_service_descriptor_free(generated);
  530. if (pk1)
  531. crypto_pk_free(pk1);
  532. if (pk2)
  533. crypto_pk_free(pk2);
  534. tor_free(intro_points_encrypted);
  535. }
  536. /* Record odd numbered fake-IPs using ipv6, even numbered fake-IPs
  537. * using ipv4. Since our fake geoip database is the same between
  538. * ipv4 and ipv6, we should get the same result no matter which
  539. * address family we pick for each IP. */
  540. #define SET_TEST_ADDRESS(i) do { \
  541. if ((i) & 1) { \
  542. SET_TEST_IPV6(i); \
  543. tor_addr_from_in6(&addr, &in6); \
  544. } else { \
  545. tor_addr_from_ipv4h(&addr, (uint32_t) i); \
  546. } \
  547. } while (0)
  548. /* Make sure that country ID actually works. */
  549. #define SET_TEST_IPV6(i) \
  550. do { \
  551. set_uint32(in6.s6_addr + 12, htonl((uint32_t) (i))); \
  552. } while (0)
  553. #define CHECK_COUNTRY(country, val) do { \
  554. /* test ipv4 country lookup */ \
  555. tt_str_op(country, OP_EQ, \
  556. geoip_get_country_name(geoip_get_country_by_ipv4(val))); \
  557. /* test ipv6 country lookup */ \
  558. SET_TEST_IPV6(val); \
  559. tt_str_op(country, OP_EQ, \
  560. geoip_get_country_name(geoip_get_country_by_ipv6(&in6))); \
  561. } while (0)
  562. /** Run unit tests for GeoIP code. */
  563. static void
  564. test_geoip(void *arg)
  565. {
  566. int i, j;
  567. time_t now = 1281533250; /* 2010-08-11 13:27:30 UTC */
  568. char *s = NULL, *v = NULL;
  569. const char *bridge_stats_1 =
  570. "bridge-stats-end 2010-08-12 13:27:30 (86400 s)\n"
  571. "bridge-ips zz=24,xy=8\n"
  572. "bridge-ip-versions v4=16,v6=16\n"
  573. "bridge-ip-transports <OR>=24\n",
  574. *dirreq_stats_1 =
  575. "dirreq-stats-end 2010-08-12 13:27:30 (86400 s)\n"
  576. "dirreq-v3-ips ab=8\n"
  577. "dirreq-v3-reqs ab=8\n"
  578. "dirreq-v3-resp ok=0,not-enough-sigs=0,unavailable=0,not-found=0,"
  579. "not-modified=0,busy=0\n"
  580. "dirreq-v3-direct-dl complete=0,timeout=0,running=0\n"
  581. "dirreq-v3-tunneled-dl complete=0,timeout=0,running=0\n",
  582. *dirreq_stats_2 =
  583. "dirreq-stats-end 2010-08-12 13:27:30 (86400 s)\n"
  584. "dirreq-v3-ips \n"
  585. "dirreq-v3-reqs \n"
  586. "dirreq-v3-resp ok=0,not-enough-sigs=0,unavailable=0,not-found=0,"
  587. "not-modified=0,busy=0\n"
  588. "dirreq-v3-direct-dl complete=0,timeout=0,running=0\n"
  589. "dirreq-v3-tunneled-dl complete=0,timeout=0,running=0\n",
  590. *dirreq_stats_3 =
  591. "dirreq-stats-end 2010-08-12 13:27:30 (86400 s)\n"
  592. "dirreq-v3-ips \n"
  593. "dirreq-v3-reqs \n"
  594. "dirreq-v3-resp ok=8,not-enough-sigs=0,unavailable=0,not-found=0,"
  595. "not-modified=0,busy=0\n"
  596. "dirreq-v3-direct-dl complete=0,timeout=0,running=0\n"
  597. "dirreq-v3-tunneled-dl complete=0,timeout=0,running=0\n",
  598. *dirreq_stats_4 =
  599. "dirreq-stats-end 2010-08-12 13:27:30 (86400 s)\n"
  600. "dirreq-v3-ips \n"
  601. "dirreq-v3-reqs \n"
  602. "dirreq-v3-resp ok=8,not-enough-sigs=0,unavailable=0,not-found=0,"
  603. "not-modified=0,busy=0\n"
  604. "dirreq-v3-direct-dl complete=0,timeout=0,running=0\n"
  605. "dirreq-v3-tunneled-dl complete=0,timeout=0,running=4\n",
  606. *entry_stats_1 =
  607. "entry-stats-end 2010-08-12 13:27:30 (86400 s)\n"
  608. "entry-ips ab=8\n",
  609. *entry_stats_2 =
  610. "entry-stats-end 2010-08-12 13:27:30 (86400 s)\n"
  611. "entry-ips \n";
  612. tor_addr_t addr;
  613. struct in6_addr in6;
  614. /* Populate the DB a bit. Add these in order, since we can't do the final
  615. * 'sort' step. These aren't very good IP addresses, but they're perfectly
  616. * fine uint32_t values. */
  617. (void)arg;
  618. tt_int_op(0,OP_EQ, geoip_parse_entry("10,50,AB", AF_INET));
  619. tt_int_op(0,OP_EQ, geoip_parse_entry("52,90,XY", AF_INET));
  620. tt_int_op(0,OP_EQ, geoip_parse_entry("95,100,AB", AF_INET));
  621. tt_int_op(0,OP_EQ, geoip_parse_entry("\"105\",\"140\",\"ZZ\"", AF_INET));
  622. tt_int_op(0,OP_EQ, geoip_parse_entry("\"150\",\"190\",\"XY\"", AF_INET));
  623. tt_int_op(0,OP_EQ, geoip_parse_entry("\"200\",\"250\",\"AB\"", AF_INET));
  624. /* Populate the IPv6 DB equivalently with fake IPs in the same range */
  625. tt_int_op(0,OP_EQ, geoip_parse_entry("::a,::32,AB", AF_INET6));
  626. tt_int_op(0,OP_EQ, geoip_parse_entry("::34,::5a,XY", AF_INET6));
  627. tt_int_op(0,OP_EQ, geoip_parse_entry("::5f,::64,AB", AF_INET6));
  628. tt_int_op(0,OP_EQ, geoip_parse_entry("::69,::8c,ZZ", AF_INET6));
  629. tt_int_op(0,OP_EQ, geoip_parse_entry("::96,::be,XY", AF_INET6));
  630. tt_int_op(0,OP_EQ, geoip_parse_entry("::c8,::fa,AB", AF_INET6));
  631. /* We should have 4 countries: ??, ab, xy, zz. */
  632. tt_int_op(4,OP_EQ, geoip_get_n_countries());
  633. memset(&in6, 0, sizeof(in6));
  634. CHECK_COUNTRY("??", 3);
  635. CHECK_COUNTRY("ab", 32);
  636. CHECK_COUNTRY("??", 5);
  637. CHECK_COUNTRY("??", 51);
  638. CHECK_COUNTRY("xy", 150);
  639. CHECK_COUNTRY("xy", 190);
  640. CHECK_COUNTRY("??", 2000);
  641. tt_int_op(0,OP_EQ, geoip_get_country_by_ipv4(3));
  642. SET_TEST_IPV6(3);
  643. tt_int_op(0,OP_EQ, geoip_get_country_by_ipv6(&in6));
  644. get_options_mutable()->BridgeRelay = 1;
  645. get_options_mutable()->BridgeRecordUsageByCountry = 1;
  646. /* Put 9 observations in AB... */
  647. for (i=32; i < 40; ++i) {
  648. SET_TEST_ADDRESS(i);
  649. geoip_note_client_seen(GEOIP_CLIENT_CONNECT, &addr, NULL, now-7200);
  650. }
  651. SET_TEST_ADDRESS(225);
  652. geoip_note_client_seen(GEOIP_CLIENT_CONNECT, &addr, NULL, now-7200);
  653. /* and 3 observations in XY, several times. */
  654. for (j=0; j < 10; ++j)
  655. for (i=52; i < 55; ++i) {
  656. SET_TEST_ADDRESS(i);
  657. geoip_note_client_seen(GEOIP_CLIENT_CONNECT, &addr, NULL, now-3600);
  658. }
  659. /* and 17 observations in ZZ... */
  660. for (i=110; i < 127; ++i) {
  661. SET_TEST_ADDRESS(i);
  662. geoip_note_client_seen(GEOIP_CLIENT_CONNECT, &addr, NULL, now);
  663. }
  664. geoip_get_client_history(GEOIP_CLIENT_CONNECT, &s, &v);
  665. tt_assert(s);
  666. tt_assert(v);
  667. tt_str_op("zz=24,ab=16,xy=8",OP_EQ, s);
  668. tt_str_op("v4=16,v6=16",OP_EQ, v);
  669. tor_free(s);
  670. tor_free(v);
  671. /* Now clear out all the AB observations. */
  672. geoip_remove_old_clients(now-6000);
  673. geoip_get_client_history(GEOIP_CLIENT_CONNECT, &s, &v);
  674. tt_assert(s);
  675. tt_assert(v);
  676. tt_str_op("zz=24,xy=8",OP_EQ, s);
  677. tt_str_op("v4=16,v6=16",OP_EQ, v);
  678. tor_free(s);
  679. tor_free(v);
  680. /* Start testing bridge statistics by making sure that we don't output
  681. * bridge stats without initializing them. */
  682. s = geoip_format_bridge_stats(now + 86400);
  683. tt_ptr_op(s, OP_EQ, NULL);
  684. /* Initialize stats and generate the bridge-stats history string out of
  685. * the connecting clients added above. */
  686. geoip_bridge_stats_init(now);
  687. s = geoip_format_bridge_stats(now + 86400);
  688. tt_assert(s);
  689. tt_str_op(bridge_stats_1,OP_EQ, s);
  690. tor_free(s);
  691. /* Stop collecting bridge stats and make sure we don't write a history
  692. * string anymore. */
  693. geoip_bridge_stats_term();
  694. s = geoip_format_bridge_stats(now + 86400);
  695. tt_ptr_op(s, OP_EQ, NULL);
  696. /* Stop being a bridge and start being a directory mirror that gathers
  697. * directory request statistics. */
  698. geoip_bridge_stats_term();
  699. get_options_mutable()->BridgeRelay = 0;
  700. get_options_mutable()->BridgeRecordUsageByCountry = 0;
  701. get_options_mutable()->DirReqStatistics = 1;
  702. /* Start testing dirreq statistics by making sure that we don't collect
  703. * dirreq stats without initializing them. */
  704. SET_TEST_ADDRESS(100);
  705. geoip_note_client_seen(GEOIP_CLIENT_NETWORKSTATUS, &addr, NULL, now);
  706. s = geoip_format_dirreq_stats(now + 86400);
  707. tt_ptr_op(s, OP_EQ, NULL);
  708. /* Initialize stats, note one connecting client, and generate the
  709. * dirreq-stats history string. */
  710. geoip_dirreq_stats_init(now);
  711. SET_TEST_ADDRESS(100);
  712. geoip_note_client_seen(GEOIP_CLIENT_NETWORKSTATUS, &addr, NULL, now);
  713. s = geoip_format_dirreq_stats(now + 86400);
  714. tt_str_op(dirreq_stats_1,OP_EQ, s);
  715. tor_free(s);
  716. /* Stop collecting stats, add another connecting client, and ensure we
  717. * don't generate a history string. */
  718. geoip_dirreq_stats_term();
  719. SET_TEST_ADDRESS(101);
  720. geoip_note_client_seen(GEOIP_CLIENT_NETWORKSTATUS, &addr, NULL, now);
  721. s = geoip_format_dirreq_stats(now + 86400);
  722. tt_ptr_op(s, OP_EQ, NULL);
  723. /* Re-start stats, add a connecting client, reset stats, and make sure
  724. * that we get an all empty history string. */
  725. geoip_dirreq_stats_init(now);
  726. SET_TEST_ADDRESS(100);
  727. geoip_note_client_seen(GEOIP_CLIENT_NETWORKSTATUS, &addr, NULL, now);
  728. geoip_reset_dirreq_stats(now);
  729. s = geoip_format_dirreq_stats(now + 86400);
  730. tt_str_op(dirreq_stats_2,OP_EQ, s);
  731. tor_free(s);
  732. /* Note a successful network status response and make sure that it
  733. * appears in the history string. */
  734. geoip_note_ns_response(GEOIP_SUCCESS);
  735. s = geoip_format_dirreq_stats(now + 86400);
  736. tt_str_op(dirreq_stats_3,OP_EQ, s);
  737. tor_free(s);
  738. /* Start a tunneled directory request. */
  739. geoip_start_dirreq((uint64_t) 1, 1024, DIRREQ_TUNNELED);
  740. s = geoip_format_dirreq_stats(now + 86400);
  741. tt_str_op(dirreq_stats_4,OP_EQ, s);
  742. tor_free(s);
  743. /* Stop collecting directory request statistics and start gathering
  744. * entry stats. */
  745. geoip_dirreq_stats_term();
  746. get_options_mutable()->DirReqStatistics = 0;
  747. get_options_mutable()->EntryStatistics = 1;
  748. /* Start testing entry statistics by making sure that we don't collect
  749. * anything without initializing entry stats. */
  750. SET_TEST_ADDRESS(100);
  751. geoip_note_client_seen(GEOIP_CLIENT_CONNECT, &addr, NULL, now);
  752. s = geoip_format_entry_stats(now + 86400);
  753. tt_ptr_op(s, OP_EQ, NULL);
  754. /* Initialize stats, note one connecting client, and generate the
  755. * entry-stats history string. */
  756. geoip_entry_stats_init(now);
  757. SET_TEST_ADDRESS(100);
  758. geoip_note_client_seen(GEOIP_CLIENT_CONNECT, &addr, NULL, now);
  759. s = geoip_format_entry_stats(now + 86400);
  760. tt_str_op(entry_stats_1,OP_EQ, s);
  761. tor_free(s);
  762. /* Stop collecting stats, add another connecting client, and ensure we
  763. * don't generate a history string. */
  764. geoip_entry_stats_term();
  765. SET_TEST_ADDRESS(101);
  766. geoip_note_client_seen(GEOIP_CLIENT_CONNECT, &addr, NULL, now);
  767. s = geoip_format_entry_stats(now + 86400);
  768. tt_ptr_op(s, OP_EQ, NULL);
  769. /* Re-start stats, add a connecting client, reset stats, and make sure
  770. * that we get an all empty history string. */
  771. geoip_entry_stats_init(now);
  772. SET_TEST_ADDRESS(100);
  773. geoip_note_client_seen(GEOIP_CLIENT_CONNECT, &addr, NULL, now);
  774. geoip_reset_entry_stats(now);
  775. s = geoip_format_entry_stats(now + 86400);
  776. tt_str_op(entry_stats_2,OP_EQ, s);
  777. tor_free(s);
  778. /* Test the OOM handler. Add a client, run the OOM. */
  779. geoip_entry_stats_init(now);
  780. SET_TEST_ADDRESS(100);
  781. geoip_note_client_seen(GEOIP_CLIENT_CONNECT, &addr, NULL,
  782. now - (12 * 60 * 60));
  783. /* We've seen this 12 hours ago. Run the OOM, it should clean the entry
  784. * because it is above the minimum cutoff of 4 hours. */
  785. size_t bytes_removed = geoip_client_cache_handle_oom(now, 1000);
  786. tt_size_op(bytes_removed, OP_GT, 0);
  787. /* Do it again but this time with an entry with a lower cutoff. */
  788. geoip_entry_stats_init(now);
  789. SET_TEST_ADDRESS(100);
  790. geoip_note_client_seen(GEOIP_CLIENT_CONNECT, &addr, NULL,
  791. now - (3 * 60 * 60));
  792. bytes_removed = geoip_client_cache_handle_oom(now, 1000);
  793. tt_size_op(bytes_removed, OP_EQ, 0);
  794. /* Stop collecting entry statistics. */
  795. geoip_entry_stats_term();
  796. get_options_mutable()->EntryStatistics = 0;
  797. done:
  798. tor_free(s);
  799. tor_free(v);
  800. }
  801. static void
  802. test_geoip_with_pt(void *arg)
  803. {
  804. time_t now = 1281533250; /* 2010-08-11 13:27:30 UTC */
  805. char *s = NULL;
  806. int i;
  807. tor_addr_t addr;
  808. struct in6_addr in6;
  809. (void)arg;
  810. get_options_mutable()->BridgeRelay = 1;
  811. get_options_mutable()->BridgeRecordUsageByCountry = 1;
  812. memset(&in6, 0, sizeof(in6));
  813. /* No clients seen yet. */
  814. s = geoip_get_transport_history();
  815. tor_assert(!s);
  816. /* 4 connections without a pluggable transport */
  817. for (i=0; i < 4; ++i) {
  818. SET_TEST_ADDRESS(i);
  819. geoip_note_client_seen(GEOIP_CLIENT_CONNECT, &addr, NULL, now-7200);
  820. }
  821. /* 9 connections with "alpha" */
  822. for (i=4; i < 13; ++i) {
  823. SET_TEST_ADDRESS(i);
  824. geoip_note_client_seen(GEOIP_CLIENT_CONNECT, &addr, "alpha", now-7200);
  825. }
  826. /* one connection with "beta" */
  827. SET_TEST_ADDRESS(13);
  828. geoip_note_client_seen(GEOIP_CLIENT_CONNECT, &addr, "beta", now-7200);
  829. /* 14 connections with "charlie" */
  830. for (i=14; i < 28; ++i) {
  831. SET_TEST_ADDRESS(i);
  832. geoip_note_client_seen(GEOIP_CLIENT_CONNECT, &addr, "charlie", now-7200);
  833. }
  834. /* 131 connections with "ddr" */
  835. for (i=28; i < 159; ++i) {
  836. SET_TEST_ADDRESS(i);
  837. geoip_note_client_seen(GEOIP_CLIENT_CONNECT, &addr, "ddr", now-7200);
  838. }
  839. /* 8 connections with "entropy" */
  840. for (i=159; i < 167; ++i) {
  841. SET_TEST_ADDRESS(i);
  842. geoip_note_client_seen(GEOIP_CLIENT_CONNECT, &addr, "entropy", now-7200);
  843. }
  844. /* 2 connections from the same IP with two different transports. */
  845. SET_TEST_ADDRESS(++i);
  846. geoip_note_client_seen(GEOIP_CLIENT_CONNECT, &addr, "fire", now-7200);
  847. geoip_note_client_seen(GEOIP_CLIENT_CONNECT, &addr, "google", now-7200);
  848. /* Test the transport history string. */
  849. s = geoip_get_transport_history();
  850. tor_assert(s);
  851. tt_str_op(s,OP_EQ, "<OR>=8,alpha=16,beta=8,charlie=16,ddr=136,"
  852. "entropy=8,fire=8,google=8");
  853. /* Stop collecting entry statistics. */
  854. geoip_entry_stats_term();
  855. get_options_mutable()->EntryStatistics = 0;
  856. done:
  857. tor_free(s);
  858. }
  859. #undef SET_TEST_ADDRESS
  860. #undef SET_TEST_IPV6
  861. #undef CHECK_COUNTRY
  862. /** Run unit tests for stats code. */
  863. static void
  864. test_stats(void *arg)
  865. {
  866. time_t now = 1281533250; /* 2010-08-11 13:27:30 UTC */
  867. char *s = NULL;
  868. int i;
  869. /* Start with testing exit port statistics; we shouldn't collect exit
  870. * stats without initializing them. */
  871. (void)arg;
  872. rep_hist_note_exit_stream_opened(80);
  873. rep_hist_note_exit_bytes(80, 100, 10000);
  874. s = rep_hist_format_exit_stats(now + 86400);
  875. tt_ptr_op(s, OP_EQ, NULL);
  876. /* Initialize stats, note some streams and bytes, and generate history
  877. * string. */
  878. rep_hist_exit_stats_init(now);
  879. rep_hist_note_exit_stream_opened(80);
  880. rep_hist_note_exit_bytes(80, 100, 10000);
  881. rep_hist_note_exit_stream_opened(443);
  882. rep_hist_note_exit_bytes(443, 100, 10000);
  883. rep_hist_note_exit_bytes(443, 100, 10000);
  884. s = rep_hist_format_exit_stats(now + 86400);
  885. tt_str_op("exit-stats-end 2010-08-12 13:27:30 (86400 s)\n"
  886. "exit-kibibytes-written 80=1,443=1,other=0\n"
  887. "exit-kibibytes-read 80=10,443=20,other=0\n"
  888. "exit-streams-opened 80=4,443=4,other=0\n",OP_EQ, s);
  889. tor_free(s);
  890. /* Add a few bytes on 10 more ports and ensure that only the top 10
  891. * ports are contained in the history string. */
  892. for (i = 50; i < 60; i++) {
  893. rep_hist_note_exit_bytes(i, i, i);
  894. rep_hist_note_exit_stream_opened(i);
  895. }
  896. s = rep_hist_format_exit_stats(now + 86400);
  897. tt_str_op("exit-stats-end 2010-08-12 13:27:30 (86400 s)\n"
  898. "exit-kibibytes-written 52=1,53=1,54=1,55=1,56=1,57=1,58=1,"
  899. "59=1,80=1,443=1,other=1\n"
  900. "exit-kibibytes-read 52=1,53=1,54=1,55=1,56=1,57=1,58=1,"
  901. "59=1,80=10,443=20,other=1\n"
  902. "exit-streams-opened 52=4,53=4,54=4,55=4,56=4,57=4,58=4,"
  903. "59=4,80=4,443=4,other=4\n",OP_EQ, s);
  904. tor_free(s);
  905. /* Stop collecting stats, add some bytes, and ensure we don't generate
  906. * a history string. */
  907. rep_hist_exit_stats_term();
  908. rep_hist_note_exit_bytes(80, 100, 10000);
  909. s = rep_hist_format_exit_stats(now + 86400);
  910. tt_ptr_op(s, OP_EQ, NULL);
  911. /* Re-start stats, add some bytes, reset stats, and see what history we
  912. * get when observing no streams or bytes at all. */
  913. rep_hist_exit_stats_init(now);
  914. rep_hist_note_exit_stream_opened(80);
  915. rep_hist_note_exit_bytes(80, 100, 10000);
  916. rep_hist_reset_exit_stats(now);
  917. s = rep_hist_format_exit_stats(now + 86400);
  918. tt_str_op("exit-stats-end 2010-08-12 13:27:30 (86400 s)\n"
  919. "exit-kibibytes-written other=0\n"
  920. "exit-kibibytes-read other=0\n"
  921. "exit-streams-opened other=0\n",OP_EQ, s);
  922. tor_free(s);
  923. /* Continue with testing connection statistics; we shouldn't collect
  924. * conn stats without initializing them. */
  925. rep_hist_note_or_conn_bytes(1, 20, 400, now);
  926. s = rep_hist_format_conn_stats(now + 86400);
  927. tt_ptr_op(s, OP_EQ, NULL);
  928. /* Initialize stats, note bytes, and generate history string. */
  929. rep_hist_conn_stats_init(now);
  930. rep_hist_note_or_conn_bytes(1, 30000, 400000, now);
  931. rep_hist_note_or_conn_bytes(1, 30000, 400000, now + 5);
  932. rep_hist_note_or_conn_bytes(2, 400000, 30000, now + 10);
  933. rep_hist_note_or_conn_bytes(2, 400000, 30000, now + 15);
  934. s = rep_hist_format_conn_stats(now + 86400);
  935. tt_str_op("conn-bi-direct 2010-08-12 13:27:30 (86400 s) 0,0,1,0\n",OP_EQ, s);
  936. tor_free(s);
  937. /* Stop collecting stats, add some bytes, and ensure we don't generate
  938. * a history string. */
  939. rep_hist_conn_stats_term();
  940. rep_hist_note_or_conn_bytes(2, 400000, 30000, now + 15);
  941. s = rep_hist_format_conn_stats(now + 86400);
  942. tt_ptr_op(s, OP_EQ, NULL);
  943. /* Re-start stats, add some bytes, reset stats, and see what history we
  944. * get when observing no bytes at all. */
  945. rep_hist_conn_stats_init(now);
  946. rep_hist_note_or_conn_bytes(1, 30000, 400000, now);
  947. rep_hist_note_or_conn_bytes(1, 30000, 400000, now + 5);
  948. rep_hist_note_or_conn_bytes(2, 400000, 30000, now + 10);
  949. rep_hist_note_or_conn_bytes(2, 400000, 30000, now + 15);
  950. rep_hist_reset_conn_stats(now);
  951. s = rep_hist_format_conn_stats(now + 86400);
  952. tt_str_op("conn-bi-direct 2010-08-12 13:27:30 (86400 s) 0,0,0,0\n",OP_EQ, s);
  953. tor_free(s);
  954. /* Continue with testing buffer statistics; we shouldn't collect buffer
  955. * stats without initializing them. */
  956. rep_hist_add_buffer_stats(2.0, 2.0, 20);
  957. s = rep_hist_format_buffer_stats(now + 86400);
  958. tt_ptr_op(s, OP_EQ, NULL);
  959. /* Initialize stats, add statistics for a single circuit, and generate
  960. * the history string. */
  961. rep_hist_buffer_stats_init(now);
  962. rep_hist_add_buffer_stats(2.0, 2.0, 20);
  963. s = rep_hist_format_buffer_stats(now + 86400);
  964. tt_str_op("cell-stats-end 2010-08-12 13:27:30 (86400 s)\n"
  965. "cell-processed-cells 20,0,0,0,0,0,0,0,0,0\n"
  966. "cell-queued-cells 2.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,"
  967. "0.00,0.00\n"
  968. "cell-time-in-queue 2,0,0,0,0,0,0,0,0,0\n"
  969. "cell-circuits-per-decile 1\n",OP_EQ, s);
  970. tor_free(s);
  971. /* Add nineteen more circuit statistics to the one that's already in the
  972. * history to see that the math works correctly. */
  973. for (i = 21; i < 30; i++)
  974. rep_hist_add_buffer_stats(2.0, 2.0, i);
  975. for (i = 20; i < 30; i++)
  976. rep_hist_add_buffer_stats(3.5, 3.5, i);
  977. s = rep_hist_format_buffer_stats(now + 86400);
  978. tt_str_op("cell-stats-end 2010-08-12 13:27:30 (86400 s)\n"
  979. "cell-processed-cells 29,28,27,26,25,24,23,22,21,20\n"
  980. "cell-queued-cells 2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,"
  981. "2.75,2.75\n"
  982. "cell-time-in-queue 3,3,3,3,3,3,3,3,3,3\n"
  983. "cell-circuits-per-decile 2\n",OP_EQ, s);
  984. tor_free(s);
  985. /* Stop collecting stats, add statistics for one circuit, and ensure we
  986. * don't generate a history string. */
  987. rep_hist_buffer_stats_term();
  988. rep_hist_add_buffer_stats(2.0, 2.0, 20);
  989. s = rep_hist_format_buffer_stats(now + 86400);
  990. tt_ptr_op(s, OP_EQ, NULL);
  991. /* Re-start stats, add statistics for one circuit, reset stats, and make
  992. * sure that the history has all zeros. */
  993. rep_hist_buffer_stats_init(now);
  994. rep_hist_add_buffer_stats(2.0, 2.0, 20);
  995. rep_hist_reset_buffer_stats(now);
  996. s = rep_hist_format_buffer_stats(now + 86400);
  997. tt_str_op("cell-stats-end 2010-08-12 13:27:30 (86400 s)\n"
  998. "cell-processed-cells 0,0,0,0,0,0,0,0,0,0\n"
  999. "cell-queued-cells 0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,"
  1000. "0.00,0.00\n"
  1001. "cell-time-in-queue 0,0,0,0,0,0,0,0,0,0\n"
  1002. "cell-circuits-per-decile 0\n",OP_EQ, s);
  1003. done:
  1004. tor_free(s);
  1005. }
  1006. #define ENT(name) \
  1007. { #name, test_ ## name , 0, NULL, NULL }
  1008. #define FORK(name) \
  1009. { #name, test_ ## name , TT_FORK, NULL, NULL }
  1010. static struct testcase_t test_array[] = {
  1011. ENT(onion_handshake),
  1012. { "bad_onion_handshake", test_bad_onion_handshake, 0, NULL, NULL },
  1013. ENT(onion_queues),
  1014. { "ntor_handshake", test_ntor_handshake, 0, NULL, NULL },
  1015. { "fast_handshake", test_fast_handshake, 0, NULL, NULL },
  1016. FORK(circuit_timeout),
  1017. FORK(rend_fns),
  1018. ENT(geoip),
  1019. FORK(geoip_with_pt),
  1020. FORK(stats),
  1021. END_OF_TESTCASES
  1022. };
  1023. struct testgroup_t testgroups[] = {
  1024. { "", test_array },
  1025. { "accounting/", accounting_tests },
  1026. { "addr/", addr_tests },
  1027. { "address/", address_tests },
  1028. { "address_set/", address_set_tests },
  1029. { "buffer/", buffer_tests },
  1030. { "cellfmt/", cell_format_tests },
  1031. { "cellqueue/", cell_queue_tests },
  1032. { "channel/", channel_tests },
  1033. { "channelpadding/", channelpadding_tests },
  1034. { "channeltls/", channeltls_tests },
  1035. { "checkdir/", checkdir_tests },
  1036. { "circuitbuild/", circuitbuild_tests },
  1037. { "circuitlist/", circuitlist_tests },
  1038. { "circuitmux/", circuitmux_tests },
  1039. { "circuituse/", circuituse_tests },
  1040. { "compat/libevent/", compat_libevent_tests },
  1041. { "config/", config_tests },
  1042. { "connection/", connection_tests },
  1043. { "conscache/", conscache_tests },
  1044. { "consdiff/", consdiff_tests },
  1045. { "consdiffmgr/", consdiffmgr_tests },
  1046. { "container/", container_tests },
  1047. { "control/", controller_tests },
  1048. { "control/event/", controller_event_tests },
  1049. { "crypto/", crypto_tests },
  1050. { "crypto/openssl/", crypto_openssl_tests },
  1051. { "dos/", dos_tests },
  1052. { "dir/", dir_tests },
  1053. { "dir_handle_get/", dir_handle_get_tests },
  1054. { "dir/md/", microdesc_tests },
  1055. { "entryconn/", entryconn_tests },
  1056. { "entrynodes/", entrynodes_tests },
  1057. { "guardfraction/", guardfraction_tests },
  1058. { "extorport/", extorport_tests },
  1059. { "legacy_hs/", hs_tests },
  1060. { "hs_cache/", hs_cache },
  1061. { "hs_cell/", hs_cell_tests },
  1062. { "hs_common/", hs_common_tests },
  1063. { "hs_config/", hs_config_tests },
  1064. { "hs_descriptor/", hs_descriptor },
  1065. { "hs_ntor/", hs_ntor_tests },
  1066. { "hs_service/", hs_service_tests },
  1067. { "hs_client/", hs_client_tests },
  1068. { "hs_intropoint/", hs_intropoint_tests },
  1069. { "introduce/", introduce_tests },
  1070. { "keypin/", keypin_tests },
  1071. { "link-handshake/", link_handshake_tests },
  1072. { "nodelist/", nodelist_tests },
  1073. { "oom/", oom_tests },
  1074. { "oos/", oos_tests },
  1075. { "options/", options_tests },
  1076. { "policy/" , policy_tests },
  1077. { "procmon/", procmon_tests },
  1078. { "proto/http/", proto_http_tests },
  1079. { "proto/misc/", proto_misc_tests },
  1080. { "protover/", protover_tests },
  1081. { "pt/", pt_tests },
  1082. { "relay/" , relay_tests },
  1083. { "relaycell/", relaycell_tests },
  1084. { "rend_cache/", rend_cache_tests },
  1085. { "replaycache/", replaycache_tests },
  1086. { "router/", router_tests },
  1087. { "routerkeys/", routerkeys_tests },
  1088. { "routerlist/", routerlist_tests },
  1089. { "routerset/" , routerset_tests },
  1090. { "rust/", rust_tests },
  1091. { "scheduler/", scheduler_tests },
  1092. { "socks/", socks_tests },
  1093. { "shared-random/", sr_tests },
  1094. { "status/" , status_tests },
  1095. { "storagedir/", storagedir_tests },
  1096. { "tortls/", tortls_tests },
  1097. { "util/", util_tests },
  1098. { "util/format/", util_format_tests },
  1099. { "util/logging/", logging_tests },
  1100. { "util/process/", util_process_tests },
  1101. { "util/pubsub/", pubsub_tests },
  1102. { "util/thread/", thread_tests },
  1103. { "util/handle/", handle_tests },
  1104. { "dns/", dns_tests },
  1105. END_OF_GROUPS
  1106. };