test_hs_control.c 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  1. /* Copyright (c) 2017-2019, The Tor Project, Inc. */
  2. /* See LICENSE for licensing information */
  3. /**
  4. * \file test_hs_control.c
  5. * \brief Unit tests for hidden service control port event and command.
  6. **/
  7. #define CONTROL_EVENTS_PRIVATE
  8. #include "core/or/or.h"
  9. #include "test/test.h"
  10. #include "feature/control/control.h"
  11. #include "feature/control/control_events.h"
  12. #include "app/config/config.h"
  13. #include "feature/hs/hs_common.h"
  14. #include "feature/hs/hs_control.h"
  15. #include "feature/nodelist/nodelist.h"
  16. #include "feature/nodelist/node_st.h"
  17. #include "feature/nodelist/routerstatus_st.h"
  18. #include "lib/crypt_ops/crypto_format.h"
  19. #include "test/test_helpers.h"
  20. /* mock ID digest and longname for node that's in nodelist */
  21. #define HSDIR_EXIST_ID \
  22. "\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA" \
  23. "\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA"
  24. #define STR_HSDIR_EXIST_LONGNAME \
  25. "$AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=TestDir"
  26. #define STR_HSDIR_NONE_EXIST_LONGNAME \
  27. "$BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB"
  28. /* Helper global variable for hidden service descriptor event test.
  29. * It's used as a pointer to dynamically created message buffer in
  30. * send_control_event_string_replacement function, which mocks
  31. * send_control_event_string function.
  32. *
  33. * Always free it after use! */
  34. static char *received_msg = NULL;
  35. /** Mock function for send_control_event_string
  36. */
  37. static void
  38. queue_control_event_string_replacement(uint16_t event, char *msg)
  39. {
  40. (void) event;
  41. tor_free(received_msg);
  42. received_msg = msg;
  43. }
  44. /** Mock function for node_describe_longname_by_id, it returns either
  45. * STR_HSDIR_EXIST_LONGNAME or STR_HSDIR_NONE_EXIST_LONGNAME
  46. */
  47. static const char *
  48. node_describe_longname_by_id_replacement(const char *id_digest)
  49. {
  50. if (!strcmp(id_digest, HSDIR_EXIST_ID)) {
  51. return STR_HSDIR_EXIST_LONGNAME;
  52. } else {
  53. return STR_HSDIR_NONE_EXIST_LONGNAME;
  54. }
  55. }
  56. /* HSDir fetch index is a series of 'D' */
  57. #define HSDIR_INDEX_FETCH_HEX \
  58. "4343434343434343434343434343434343434343434343434343434343434343"
  59. #define HSDIR_INDEX_STORE_HEX \
  60. "4444444444444444444444444444444444444444444444444444444444444444"
  61. static const node_t *
  62. mock_node_get_by_id(const char *digest)
  63. {
  64. static node_t node;
  65. memcpy(node.identity, digest, DIGEST_LEN);
  66. memset(node.hsdir_index.fetch, 'C', DIGEST256_LEN);
  67. memset(node.hsdir_index.store_first, 'D', DIGEST256_LEN);
  68. return &node;
  69. }
  70. static void
  71. test_hs_desc_event(void *arg)
  72. {
  73. int ret;
  74. char *expected_msg = NULL;
  75. char onion_address[HS_SERVICE_ADDR_LEN_BASE32 + 1];
  76. ed25519_keypair_t identity_kp;
  77. ed25519_public_key_t blinded_pk;
  78. char base64_blinded_pk[ED25519_BASE64_LEN + 1];
  79. routerstatus_t hsdir_rs;
  80. hs_ident_dir_conn_t ident;
  81. (void) arg;
  82. MOCK(queue_control_event_string,
  83. queue_control_event_string_replacement);
  84. MOCK(node_describe_longname_by_id,
  85. node_describe_longname_by_id_replacement);
  86. MOCK(node_get_by_id, mock_node_get_by_id);
  87. /* Setup what we need for this test. */
  88. ed25519_keypair_generate(&identity_kp, 0);
  89. hs_build_address(&identity_kp.pubkey, HS_VERSION_THREE, onion_address);
  90. ret = hs_address_is_valid(onion_address);
  91. tt_int_op(ret, OP_EQ, 1);
  92. memset(&blinded_pk, 'B', sizeof(blinded_pk));
  93. memset(&hsdir_rs, 0, sizeof(hsdir_rs));
  94. memcpy(hsdir_rs.identity_digest, HSDIR_EXIST_ID, DIGEST_LEN);
  95. ret = ed25519_public_to_base64(base64_blinded_pk, &blinded_pk);
  96. tt_int_op(ret, OP_EQ, 0);
  97. memcpy(&ident.identity_pk, &identity_kp.pubkey,
  98. sizeof(ed25519_public_key_t));
  99. memcpy(&ident.blinded_pk, &blinded_pk, sizeof(blinded_pk));
  100. /* HS_DESC REQUESTED ... */
  101. hs_control_desc_event_requested(&identity_kp.pubkey, base64_blinded_pk,
  102. &hsdir_rs);
  103. tor_asprintf(&expected_msg, "650 HS_DESC REQUESTED %s NO_AUTH "
  104. STR_HSDIR_EXIST_LONGNAME " %s HSDIR_INDEX="
  105. HSDIR_INDEX_FETCH_HEX "\r\n",
  106. onion_address, base64_blinded_pk);
  107. tt_assert(received_msg);
  108. tt_str_op(received_msg, OP_EQ, expected_msg);
  109. tor_free(received_msg);
  110. tor_free(expected_msg);
  111. /* HS_DESC CREATED... */
  112. hs_control_desc_event_created(onion_address, &blinded_pk);
  113. tor_asprintf(&expected_msg, "650 HS_DESC CREATED %s UNKNOWN "
  114. "UNKNOWN %s\r\n",
  115. onion_address, base64_blinded_pk);
  116. tt_assert(received_msg);
  117. tt_str_op(received_msg, OP_EQ, expected_msg);
  118. tor_free(received_msg);
  119. tor_free(expected_msg);
  120. /* HS_DESC UPLOAD... */
  121. uint8_t hsdir_index_store[DIGEST256_LEN];
  122. memset(hsdir_index_store, 'D', sizeof(hsdir_index_store));
  123. hs_control_desc_event_upload(onion_address, HSDIR_EXIST_ID,
  124. &blinded_pk, hsdir_index_store);
  125. tor_asprintf(&expected_msg, "650 HS_DESC UPLOAD %s UNKNOWN "
  126. STR_HSDIR_EXIST_LONGNAME " %s "
  127. "HSDIR_INDEX=" HSDIR_INDEX_STORE_HEX "\r\n",
  128. onion_address, base64_blinded_pk);
  129. tt_assert(received_msg);
  130. tt_str_op(received_msg, OP_EQ, expected_msg);
  131. tor_free(received_msg);
  132. tor_free(expected_msg);
  133. /* HS_DESC FAILED... */
  134. hs_control_desc_event_failed(&ident, HSDIR_EXIST_ID, "BAD_DESC");
  135. tor_asprintf(&expected_msg, "650 HS_DESC FAILED %s NO_AUTH "
  136. STR_HSDIR_EXIST_LONGNAME " %s "
  137. "REASON=BAD_DESC\r\n",
  138. onion_address, base64_blinded_pk);
  139. tt_assert(received_msg);
  140. tt_str_op(received_msg, OP_EQ, expected_msg);
  141. tor_free(received_msg);
  142. tor_free(expected_msg);
  143. /* HS_DESC RECEIVED... */
  144. hs_control_desc_event_received(&ident, HSDIR_EXIST_ID);
  145. tor_asprintf(&expected_msg, "650 HS_DESC RECEIVED %s NO_AUTH "
  146. STR_HSDIR_EXIST_LONGNAME " %s\r\n",
  147. onion_address, base64_blinded_pk);
  148. tt_assert(received_msg);
  149. tt_str_op(received_msg, OP_EQ, expected_msg);
  150. tor_free(received_msg);
  151. tor_free(expected_msg);
  152. /* HS_DESC UPLOADED... */
  153. hs_control_desc_event_uploaded(&ident, HSDIR_EXIST_ID);
  154. tor_asprintf(&expected_msg, "650 HS_DESC UPLOADED %s UNKNOWN "
  155. STR_HSDIR_EXIST_LONGNAME "\r\n",
  156. onion_address);
  157. tt_assert(received_msg);
  158. tt_str_op(received_msg, OP_EQ, expected_msg);
  159. tor_free(received_msg);
  160. tor_free(expected_msg);
  161. done:
  162. UNMOCK(queue_control_event_string);
  163. UNMOCK(node_describe_longname_by_id);
  164. UNMOCK(node_get_by_id);
  165. tor_free(received_msg);
  166. tor_free(expected_msg);
  167. }
  168. struct testcase_t hs_control_tests[] = {
  169. { "hs_desc_event", test_hs_desc_event, TT_FORK,
  170. NULL, NULL },
  171. END_OF_TESTCASES
  172. };