onion_ntor.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324
  1. /* Copyright (c) 2012-2016, The Tor Project, Inc. */
  2. /* See LICENSE for licensing information */
  3. /**
  4. * \file onion_ntor.c
  5. *
  6. * \brief Implementation for the ntor handshake.
  7. */
  8. #include "orconfig.h"
  9. #define ONION_NTOR_PRIVATE
  10. #include "crypto.h"
  11. #include "onion_ntor.h"
  12. #include "torlog.h"
  13. #include "util.h"
  14. /** Free storage held in an ntor handshake state. */
  15. void
  16. ntor_handshake_state_free(ntor_handshake_state_t *state)
  17. {
  18. if (!state)
  19. return;
  20. memwipe(state, 0, sizeof(*state));
  21. tor_free(state);
  22. }
  23. /** Convenience function to represent HMAC_SHA256 as our instantiation of
  24. * ntor's "tweaked hash'. Hash the <b>inp_len</b> bytes at <b>inp</b> into
  25. * a DIGEST256_LEN-byte digest at <b>out</b>, with the hash changing
  26. * depending on the value of <b>tweak</b>. */
  27. static void
  28. h_tweak(uint8_t *out,
  29. const uint8_t *inp, size_t inp_len,
  30. const char *tweak)
  31. {
  32. size_t tweak_len = strlen(tweak);
  33. crypto_hmac_sha256((char*)out, tweak, tweak_len, (const char*)inp, inp_len);
  34. }
  35. /** Wrapper around a set of tweak-values for use with the ntor handshake. */
  36. typedef struct tweakset_t {
  37. const char *t_mac;
  38. const char *t_key;
  39. const char *t_verify;
  40. const char *m_expand;
  41. } tweakset_t;
  42. /** The tweaks to be used with our handshake. */
  43. static const tweakset_t proto1_tweaks = {
  44. #define PROTOID "ntor-curve25519-sha256-1"
  45. #define PROTOID_LEN 24
  46. PROTOID ":mac",
  47. PROTOID ":key_extract",
  48. PROTOID ":verify",
  49. PROTOID ":key_expand"
  50. };
  51. /** Convenience macro: copy <b>len</b> bytes from <b>inp</b> to <b>ptr</b>,
  52. * and advance <b>ptr</b> by the number of bytes copied. */
  53. #define APPEND(ptr, inp, len) \
  54. STMT_BEGIN { \
  55. memcpy(ptr, (inp), (len)); \
  56. ptr += len; \
  57. } STMT_END
  58. /**
  59. * Compute the first client-side step of the ntor handshake for communicating
  60. * with a server whose DIGEST_LEN-byte server identity is <b>router_id</b>,
  61. * and whose onion key is <b>router_key</b>. Store the NTOR_ONIONSKIN_LEN-byte
  62. * message in <b>onion_skin_out</b>, and store the handshake state in
  63. * *<b>handshake_state_out</b>. Return 0 on success, -1 on failure.
  64. */
  65. int
  66. onion_skin_ntor_create(const uint8_t *router_id,
  67. const curve25519_public_key_t *router_key,
  68. ntor_handshake_state_t **handshake_state_out,
  69. uint8_t *onion_skin_out)
  70. {
  71. ntor_handshake_state_t *state;
  72. uint8_t *op;
  73. state = tor_malloc_zero(sizeof(ntor_handshake_state_t));
  74. memcpy(state->router_id, router_id, DIGEST_LEN);
  75. memcpy(&state->pubkey_B, router_key, sizeof(curve25519_public_key_t));
  76. if (curve25519_secret_key_generate(&state->seckey_x, 0) < 0) {
  77. /* LCOV_EXCL_START
  78. * Secret key generation should be unable to fail when the key isn't
  79. * marked as "extra-strong" */
  80. tor_assert_nonfatal_unreached();
  81. tor_free(state);
  82. return -1;
  83. /* LCOV_EXCL_STOP */
  84. }
  85. curve25519_public_key_generate(&state->pubkey_X, &state->seckey_x);
  86. op = onion_skin_out;
  87. APPEND(op, router_id, DIGEST_LEN);
  88. APPEND(op, router_key->public_key, CURVE25519_PUBKEY_LEN);
  89. APPEND(op, state->pubkey_X.public_key, CURVE25519_PUBKEY_LEN);
  90. tor_assert(op == onion_skin_out + NTOR_ONIONSKIN_LEN);
  91. *handshake_state_out = state;
  92. return 0;
  93. }
  94. #define SERVER_STR "Server"
  95. #define SERVER_STR_LEN 6
  96. #define SECRET_INPUT_LEN (CURVE25519_PUBKEY_LEN * 3 + \
  97. CURVE25519_OUTPUT_LEN * 2 + \
  98. DIGEST_LEN + PROTOID_LEN)
  99. #define AUTH_INPUT_LEN (DIGEST256_LEN + DIGEST_LEN + \
  100. CURVE25519_PUBKEY_LEN*3 + \
  101. PROTOID_LEN + SERVER_STR_LEN)
  102. /**
  103. * Perform the server side of an ntor handshake. Given an
  104. * NTOR_ONIONSKIN_LEN-byte message in <b>onion_skin</b>, our own identity
  105. * fingerprint as <b>my_node_id</b>, and an associative array mapping public
  106. * onion keys to curve25519_keypair_t in <b>private_keys</b>, attempt to
  107. * perform the handshake. Use <b>junk_keys</b> if present if the handshake
  108. * indicates an unrecognized public key. Write an NTOR_REPLY_LEN-byte
  109. * message to send back to the client into <b>handshake_reply_out</b>, and
  110. * generate <b>key_out_len</b> bytes of key material in <b>key_out</b>. Return
  111. * 0 on success, -1 on failure.
  112. */
  113. int
  114. onion_skin_ntor_server_handshake(const uint8_t *onion_skin,
  115. const di_digest256_map_t *private_keys,
  116. const curve25519_keypair_t *junk_keys,
  117. const uint8_t *my_node_id,
  118. uint8_t *handshake_reply_out,
  119. uint8_t *key_out,
  120. size_t key_out_len)
  121. {
  122. const tweakset_t *T = &proto1_tweaks;
  123. /* Sensitive stack-allocated material. Kept in an anonymous struct to make
  124. * it easy to wipe. */
  125. struct {
  126. uint8_t secret_input[SECRET_INPUT_LEN];
  127. uint8_t auth_input[AUTH_INPUT_LEN];
  128. curve25519_public_key_t pubkey_X;
  129. curve25519_secret_key_t seckey_y;
  130. curve25519_public_key_t pubkey_Y;
  131. uint8_t verify[DIGEST256_LEN];
  132. } s;
  133. uint8_t *si = s.secret_input, *ai = s.auth_input;
  134. const curve25519_keypair_t *keypair_bB;
  135. int bad;
  136. /* Decode the onion skin */
  137. /* XXXX Does this possible early-return business threaten our security? */
  138. if (tor_memneq(onion_skin, my_node_id, DIGEST_LEN))
  139. return -1;
  140. /* Note that on key-not-found, we go through with this operation anyway,
  141. * using "junk_keys". This will result in failed authentication, but won't
  142. * leak whether we recognized the key. */
  143. keypair_bB = dimap_search(private_keys, onion_skin + DIGEST_LEN,
  144. (void*)junk_keys);
  145. if (!keypair_bB)
  146. return -1;
  147. memcpy(s.pubkey_X.public_key, onion_skin+DIGEST_LEN+DIGEST256_LEN,
  148. CURVE25519_PUBKEY_LEN);
  149. /* Make y, Y */
  150. curve25519_secret_key_generate(&s.seckey_y, 0);
  151. curve25519_public_key_generate(&s.pubkey_Y, &s.seckey_y);
  152. /* NOTE: If we ever use a group other than curve25519, or a different
  153. * representation for its points, we may need to perform different or
  154. * additional checks on X here and on Y in the client handshake, or lose our
  155. * security properties. What checks we need would depend on the properties
  156. * of the group and its representation.
  157. *
  158. * In short: if you use anything other than curve25519, this aspect of the
  159. * code will need to be reconsidered carefully. */
  160. /* build secret_input */
  161. curve25519_handshake(si, &s.seckey_y, &s.pubkey_X);
  162. bad = safe_mem_is_zero(si, CURVE25519_OUTPUT_LEN);
  163. si += CURVE25519_OUTPUT_LEN;
  164. curve25519_handshake(si, &keypair_bB->seckey, &s.pubkey_X);
  165. bad |= safe_mem_is_zero(si, CURVE25519_OUTPUT_LEN);
  166. si += CURVE25519_OUTPUT_LEN;
  167. APPEND(si, my_node_id, DIGEST_LEN);
  168. APPEND(si, keypair_bB->pubkey.public_key, CURVE25519_PUBKEY_LEN);
  169. APPEND(si, s.pubkey_X.public_key, CURVE25519_PUBKEY_LEN);
  170. APPEND(si, s.pubkey_Y.public_key, CURVE25519_PUBKEY_LEN);
  171. APPEND(si, PROTOID, PROTOID_LEN);
  172. tor_assert(si == s.secret_input + sizeof(s.secret_input));
  173. /* Compute hashes of secret_input */
  174. h_tweak(s.verify, s.secret_input, sizeof(s.secret_input), T->t_verify);
  175. /* Compute auth_input */
  176. APPEND(ai, s.verify, DIGEST256_LEN);
  177. APPEND(ai, my_node_id, DIGEST_LEN);
  178. APPEND(ai, keypair_bB->pubkey.public_key, CURVE25519_PUBKEY_LEN);
  179. APPEND(ai, s.pubkey_Y.public_key, CURVE25519_PUBKEY_LEN);
  180. APPEND(ai, s.pubkey_X.public_key, CURVE25519_PUBKEY_LEN);
  181. APPEND(ai, PROTOID, PROTOID_LEN);
  182. APPEND(ai, SERVER_STR, SERVER_STR_LEN);
  183. tor_assert(ai == s.auth_input + sizeof(s.auth_input));
  184. /* Build the reply */
  185. memcpy(handshake_reply_out, s.pubkey_Y.public_key, CURVE25519_PUBKEY_LEN);
  186. h_tweak(handshake_reply_out+CURVE25519_PUBKEY_LEN,
  187. s.auth_input, sizeof(s.auth_input),
  188. T->t_mac);
  189. /* Generate the key material */
  190. crypto_expand_key_material_rfc5869_sha256(
  191. s.secret_input, sizeof(s.secret_input),
  192. (const uint8_t*)T->t_key, strlen(T->t_key),
  193. (const uint8_t*)T->m_expand, strlen(T->m_expand),
  194. key_out, key_out_len);
  195. /* Wipe all of our local state */
  196. memwipe(&s, 0, sizeof(s));
  197. return bad ? -1 : 0;
  198. }
  199. /**
  200. * Perform the final client side of the ntor handshake, using the state in
  201. * <b>handshake_state</b> and the server's NTOR_REPLY_LEN-byte reply in
  202. * <b>handshake_reply</b>. Generate <b>key_out_len</b> bytes of key material
  203. * in <b>key_out</b>. Return 0 on success, -1 on failure.
  204. */
  205. int
  206. onion_skin_ntor_client_handshake(
  207. const ntor_handshake_state_t *handshake_state,
  208. const uint8_t *handshake_reply,
  209. uint8_t *key_out,
  210. size_t key_out_len,
  211. const char **msg_out)
  212. {
  213. const tweakset_t *T = &proto1_tweaks;
  214. /* Sensitive stack-allocated material. Kept in an anonymous struct to make
  215. * it easy to wipe. */
  216. struct {
  217. curve25519_public_key_t pubkey_Y;
  218. uint8_t secret_input[SECRET_INPUT_LEN];
  219. uint8_t verify[DIGEST256_LEN];
  220. uint8_t auth_input[AUTH_INPUT_LEN];
  221. uint8_t auth[DIGEST256_LEN];
  222. } s;
  223. uint8_t *ai = s.auth_input, *si = s.secret_input;
  224. const uint8_t *auth_candidate;
  225. int bad;
  226. /* Decode input */
  227. memcpy(s.pubkey_Y.public_key, handshake_reply, CURVE25519_PUBKEY_LEN);
  228. auth_candidate = handshake_reply + CURVE25519_PUBKEY_LEN;
  229. /* See note in server_handshake above about checking points. The
  230. * circumstances under which we'd need to check Y for membership are
  231. * different than those under which we'd be checking X. */
  232. /* Compute secret_input */
  233. curve25519_handshake(si, &handshake_state->seckey_x, &s.pubkey_Y);
  234. bad = safe_mem_is_zero(si, CURVE25519_OUTPUT_LEN);
  235. si += CURVE25519_OUTPUT_LEN;
  236. curve25519_handshake(si, &handshake_state->seckey_x,
  237. &handshake_state->pubkey_B);
  238. bad |= (safe_mem_is_zero(si, CURVE25519_OUTPUT_LEN) << 1);
  239. si += CURVE25519_OUTPUT_LEN;
  240. APPEND(si, handshake_state->router_id, DIGEST_LEN);
  241. APPEND(si, handshake_state->pubkey_B.public_key, CURVE25519_PUBKEY_LEN);
  242. APPEND(si, handshake_state->pubkey_X.public_key, CURVE25519_PUBKEY_LEN);
  243. APPEND(si, s.pubkey_Y.public_key, CURVE25519_PUBKEY_LEN);
  244. APPEND(si, PROTOID, PROTOID_LEN);
  245. tor_assert(si == s.secret_input + sizeof(s.secret_input));
  246. /* Compute verify from secret_input */
  247. h_tweak(s.verify, s.secret_input, sizeof(s.secret_input), T->t_verify);
  248. /* Compute auth_input */
  249. APPEND(ai, s.verify, DIGEST256_LEN);
  250. APPEND(ai, handshake_state->router_id, DIGEST_LEN);
  251. APPEND(ai, handshake_state->pubkey_B.public_key, CURVE25519_PUBKEY_LEN);
  252. APPEND(ai, s.pubkey_Y.public_key, CURVE25519_PUBKEY_LEN);
  253. APPEND(ai, handshake_state->pubkey_X.public_key, CURVE25519_PUBKEY_LEN);
  254. APPEND(ai, PROTOID, PROTOID_LEN);
  255. APPEND(ai, SERVER_STR, SERVER_STR_LEN);
  256. tor_assert(ai == s.auth_input + sizeof(s.auth_input));
  257. /* Compute auth */
  258. h_tweak(s.auth, s.auth_input, sizeof(s.auth_input), T->t_mac);
  259. bad |= (tor_memneq(s.auth, auth_candidate, DIGEST256_LEN) << 2);
  260. crypto_expand_key_material_rfc5869_sha256(
  261. s.secret_input, sizeof(s.secret_input),
  262. (const uint8_t*)T->t_key, strlen(T->t_key),
  263. (const uint8_t*)T->m_expand, strlen(T->m_expand),
  264. key_out, key_out_len);
  265. memwipe(&s, 0, sizeof(s));
  266. if (bad) {
  267. if (bad & 4) {
  268. if (msg_out)
  269. *msg_out = NULL; /* Don't report this one; we probably just had the
  270. * wrong onion key.*/
  271. log_fn(LOG_INFO, LD_PROTOCOL,
  272. "Invalid result from curve25519 handshake: %d", bad);
  273. }
  274. if (bad & 3) {
  275. if (msg_out)
  276. *msg_out = "Zero output from curve25519 handshake";
  277. log_fn(LOG_WARN, LD_PROTOCOL,
  278. "Invalid result from curve25519 handshake: %d", bad);
  279. }
  280. }
  281. return bad ? -1 : 0;
  282. }