onion_ntor.c 12 KB

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