test_nodelist.c 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  1. /* Copyright (c) 2007-2017, The Tor Project, Inc. */
  2. /* See LICENSE for licensing information */
  3. /**
  4. * \file test_nodelist.c
  5. * \brief Unit tests for nodelist related functions.
  6. **/
  7. #include "or.h"
  8. #include "crypto_rand.h"
  9. #include "networkstatus.h"
  10. #include "nodelist.h"
  11. #include "torcert.h"
  12. #include "networkstatus_st.h"
  13. #include "node_st.h"
  14. #include "test.h"
  15. /** Test the case when node_get_by_id() returns NULL,
  16. * node_get_verbose_nickname_by_id should return the base 16 encoding
  17. * of the id.
  18. */
  19. static void
  20. test_nodelist_node_get_verbose_nickname_by_id_null_node(void *arg)
  21. {
  22. char vname[MAX_VERBOSE_NICKNAME_LEN+1];
  23. const char ID[] = "\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA"
  24. "\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA";
  25. (void) arg;
  26. /* make sure node_get_by_id returns NULL */
  27. tt_assert(!node_get_by_id(ID));
  28. node_get_verbose_nickname_by_id(ID, vname);
  29. tt_str_op(vname,OP_EQ, "$AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA");
  30. done:
  31. return;
  32. }
  33. /** For routers without named flag, get_verbose_nickname should return
  34. * "Fingerprint~Nickname"
  35. */
  36. static void
  37. test_nodelist_node_get_verbose_nickname_not_named(void *arg)
  38. {
  39. node_t mock_node;
  40. routerstatus_t mock_rs;
  41. char vname[MAX_VERBOSE_NICKNAME_LEN+1];
  42. (void) arg;
  43. memset(&mock_node, 0, sizeof(node_t));
  44. memset(&mock_rs, 0, sizeof(routerstatus_t));
  45. /* verbose nickname should use ~ instead of = for unnamed routers */
  46. strlcpy(mock_rs.nickname, "TestOR", sizeof(mock_rs.nickname));
  47. mock_node.rs = &mock_rs;
  48. memcpy(mock_node.identity,
  49. "\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA"
  50. "\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA",
  51. DIGEST_LEN);
  52. node_get_verbose_nickname(&mock_node, vname);
  53. tt_str_op(vname,OP_EQ, "$AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA~TestOR");
  54. done:
  55. return;
  56. }
  57. /** A node should be considered a directory server if it has an open dirport
  58. * of it accepts tunnelled directory requests.
  59. */
  60. static void
  61. test_nodelist_node_is_dir(void *arg)
  62. {
  63. (void)arg;
  64. routerstatus_t rs;
  65. routerinfo_t ri;
  66. node_t node;
  67. memset(&node, 0, sizeof(node_t));
  68. memset(&rs, 0, sizeof(routerstatus_t));
  69. memset(&ri, 0, sizeof(routerinfo_t));
  70. tt_assert(!node_is_dir(&node));
  71. node.rs = &rs;
  72. tt_assert(!node_is_dir(&node));
  73. rs.is_v2_dir = 1;
  74. tt_assert(node_is_dir(&node));
  75. rs.is_v2_dir = 0;
  76. rs.dir_port = 1;
  77. tt_assert(! node_is_dir(&node));
  78. node.rs = NULL;
  79. tt_assert(!node_is_dir(&node));
  80. node.ri = &ri;
  81. ri.supports_tunnelled_dir_requests = 1;
  82. tt_assert(node_is_dir(&node));
  83. ri.supports_tunnelled_dir_requests = 0;
  84. ri.dir_port = 1;
  85. tt_assert(! node_is_dir(&node));
  86. done:
  87. return;
  88. }
  89. static networkstatus_t *dummy_ns = NULL;
  90. static networkstatus_t *
  91. mock_networkstatus_get_latest_consensus(void)
  92. {
  93. return dummy_ns;
  94. }
  95. static networkstatus_t *
  96. mock_networkstatus_get_latest_consensus_by_flavor(consensus_flavor_t f)
  97. {
  98. tor_assert(f == FLAV_MICRODESC);
  99. return dummy_ns;
  100. }
  101. static void
  102. test_nodelist_ed_id(void *arg)
  103. {
  104. routerstatus_t *rs[4];
  105. microdesc_t *md[4];
  106. routerinfo_t *ri[4];
  107. networkstatus_t *ns;
  108. int i;
  109. (void)arg;
  110. ns = tor_malloc_zero(sizeof(networkstatus_t));
  111. ns->flavor = FLAV_MICRODESC;
  112. ns->routerstatus_list = smartlist_new();
  113. dummy_ns = ns;
  114. MOCK(networkstatus_get_latest_consensus,
  115. mock_networkstatus_get_latest_consensus);
  116. MOCK(networkstatus_get_latest_consensus_by_flavor,
  117. mock_networkstatus_get_latest_consensus_by_flavor);
  118. /* Make a bunch of dummy objects that we can play around with. Only set the
  119. necessary fields */
  120. for (i = 0; i < 4; ++i) {
  121. rs[i] = tor_malloc_zero(sizeof(*rs[i]));
  122. md[i] = tor_malloc_zero(sizeof(*md[i]));
  123. ri[i] = tor_malloc_zero(sizeof(*ri[i]));
  124. crypto_rand(md[i]->digest, sizeof(md[i]->digest));
  125. md[i]->ed25519_identity_pkey = tor_malloc(sizeof(ed25519_public_key_t));
  126. crypto_rand((char*)md[i]->ed25519_identity_pkey,
  127. sizeof(ed25519_public_key_t));
  128. crypto_rand(rs[i]->identity_digest, sizeof(rs[i]->identity_digest));
  129. memcpy(ri[i]->cache_info.identity_digest, rs[i]->identity_digest,
  130. DIGEST_LEN);
  131. memcpy(rs[i]->descriptor_digest, md[i]->digest, DIGEST256_LEN);
  132. ri[i]->cache_info.signing_key_cert = tor_malloc_zero(sizeof(tor_cert_t));
  133. memcpy(&ri[i]->cache_info.signing_key_cert->signing_key,
  134. md[i]->ed25519_identity_pkey, sizeof(ed25519_public_key_t));
  135. if (i != 3)
  136. smartlist_add(ns->routerstatus_list, rs[i]);
  137. }
  138. tt_int_op(0, OP_EQ, smartlist_len(nodelist_get_list()));
  139. nodelist_set_consensus(ns);
  140. tt_int_op(3, OP_EQ, smartlist_len(nodelist_get_list()));
  141. /* No Ed25519 info yet, so nothing has an ED id. */
  142. tt_ptr_op(NULL, OP_EQ, node_get_by_ed25519_id(md[0]->ed25519_identity_pkey));
  143. /* Register the first one by md, then look it up. */
  144. node_t *n = nodelist_add_microdesc(md[0]);
  145. tt_ptr_op(n, OP_EQ, node_get_by_ed25519_id(md[0]->ed25519_identity_pkey));
  146. /* Register the second by ri, then look it up. */
  147. routerinfo_t *ri_old = NULL;
  148. n = nodelist_set_routerinfo(ri[1], &ri_old);
  149. tt_ptr_op(n, OP_EQ, node_get_by_ed25519_id(md[1]->ed25519_identity_pkey));
  150. tt_ptr_op(ri_old, OP_EQ, NULL);
  151. /* Register it by md too. */
  152. node_t *n2 = nodelist_add_microdesc(md[1]);
  153. tt_ptr_op(n2, OP_EQ, n);
  154. tt_ptr_op(n, OP_EQ, node_get_by_ed25519_id(md[1]->ed25519_identity_pkey));
  155. /* Register the 4th by ri only -- we never put it into the networkstatus,
  156. * so it has to be independent */
  157. n = nodelist_set_routerinfo(ri[3], &ri_old);
  158. tt_ptr_op(n, OP_EQ, node_get_by_ed25519_id(md[3]->ed25519_identity_pkey));
  159. tt_ptr_op(ri_old, OP_EQ, NULL);
  160. tt_int_op(4, OP_EQ, smartlist_len(nodelist_get_list()));
  161. done:
  162. for (i = 0; i < 4; ++i) {
  163. tor_free(rs[i]);
  164. tor_free(md[i]->ed25519_identity_pkey);
  165. tor_free(md[i]);
  166. tor_free(ri[i]->cache_info.signing_key_cert);
  167. tor_free(ri[i]);
  168. }
  169. smartlist_clear(ns->routerstatus_list);
  170. networkstatus_vote_free(ns);
  171. UNMOCK(networkstatus_get_latest_consensus);
  172. UNMOCK(networkstatus_get_latest_consensus_by_flavor);
  173. }
  174. #define NODE(name, flags) \
  175. { #name, test_nodelist_##name, (flags), NULL, NULL }
  176. struct testcase_t nodelist_tests[] = {
  177. NODE(node_get_verbose_nickname_by_id_null_node, TT_FORK),
  178. NODE(node_get_verbose_nickname_not_named, TT_FORK),
  179. NODE(node_is_dir, TT_FORK),
  180. NODE(ed_id, TT_FORK),
  181. END_OF_TESTCASES
  182. };