test_nodelist.c 6.2 KB

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