tortls_nss.c 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726
  1. /* Copyright (c) 2003, Roger Dingledine.
  2. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  3. * Copyright (c) 2007-2018, The Tor Project, Inc. */
  4. /* See LICENSE for licensing information */
  5. /**
  6. * \file tortls_nss.c
  7. * \brief Wrapper functions to present a consistent interface to
  8. * TLS and SSL X.509 functions from NSS.
  9. **/
  10. #include "orconfig.h"
  11. #define TORTLS_PRIVATE
  12. #define TOR_X509_PRIVATE
  13. #ifdef _WIN32 /*wrkard for dtls1.h >= 0.9.8m of "#include <winsock.h>"*/
  14. #include <winsock2.h>
  15. #include <ws2tcpip.h>
  16. #endif
  17. #include "lib/crypt_ops/crypto_cipher.h"
  18. #include "lib/crypt_ops/crypto_rand.h"
  19. #include "lib/crypt_ops/crypto_dh.h"
  20. #include "lib/crypt_ops/crypto_util.h"
  21. #include "lib/crypt_ops/crypto_nss_mgt.h"
  22. #include "lib/string/printf.h"
  23. #include "lib/tls/x509.h"
  24. #include "lib/tls/x509_internal.h"
  25. #include "lib/tls/tortls.h"
  26. #include "lib/tls/tortls_st.h"
  27. #include "lib/tls/tortls_internal.h"
  28. #include "lib/log/util_bug.h"
  29. #include <prio.h>
  30. // For access to raw sockets.
  31. #include <private/pprio.h>
  32. #include <ssl.h>
  33. #include <sslt.h>
  34. #include <sslproto.h>
  35. #include <certt.h>
  36. static SECStatus always_accept_cert_cb(void *, PRFileDesc *, PRBool, PRBool);
  37. MOCK_IMPL(void,
  38. try_to_extract_certs_from_tls,(int severity, tor_tls_t *tls,
  39. tor_x509_cert_impl_t **cert_out,
  40. tor_x509_cert_impl_t **id_cert_out))
  41. {
  42. tor_assert(tls);
  43. tor_assert(cert_out);
  44. tor_assert(id_cert_out);
  45. (void) severity;
  46. *cert_out = *id_cert_out = NULL;
  47. CERTCertificate *peer = SSL_PeerCertificate(tls->ssl);
  48. if (!peer)
  49. return;
  50. *cert_out = peer; /* Now owns pointer. */
  51. CERTCertList *chain = SSL_PeerCertificateChain(tls->ssl);
  52. CERTCertListNode *c = CERT_LIST_HEAD(chain);
  53. for (; !CERT_LIST_END(c, chain); c = CERT_LIST_NEXT(c)) {
  54. if (CERT_CompareCerts(c->cert, peer) == PR_FALSE) {
  55. *id_cert_out = CERT_DupCertificate(c->cert);
  56. break;
  57. }
  58. }
  59. CERT_DestroyCertList(chain);
  60. }
  61. static bool
  62. we_like_ssl_cipher(SSLCipherAlgorithm ca)
  63. {
  64. switch (ca) {
  65. case ssl_calg_null: return false;
  66. case ssl_calg_rc4: return false;
  67. case ssl_calg_rc2: return false;
  68. case ssl_calg_des: return false;
  69. case ssl_calg_3des: return false; /* ???? */
  70. case ssl_calg_idea: return false;
  71. case ssl_calg_fortezza: return false;
  72. case ssl_calg_camellia: return false;
  73. case ssl_calg_seed: return false;
  74. case ssl_calg_aes: return true;
  75. case ssl_calg_aes_gcm: return true;
  76. case ssl_calg_chacha20: return true;
  77. default: return true;
  78. }
  79. }
  80. static bool
  81. we_like_ssl_kea(SSLKEAType kt)
  82. {
  83. switch (kt) {
  84. case ssl_kea_null: return false;
  85. case ssl_kea_rsa: return false; /* ??? */
  86. case ssl_kea_fortezza: return false;
  87. case ssl_kea_ecdh_psk: return false;
  88. case ssl_kea_dh_psk: return false;
  89. case ssl_kea_dh: return true;
  90. case ssl_kea_ecdh: return true;
  91. case ssl_kea_tls13_any: return true;
  92. case ssl_kea_size: return true; /* prevent a warning. */
  93. default: return true;
  94. }
  95. }
  96. static bool
  97. we_like_mac_algorithm(SSLMACAlgorithm ma)
  98. {
  99. switch (ma) {
  100. case ssl_mac_null: return false;
  101. case ssl_mac_md5: return false;
  102. case ssl_hmac_md5: return false;
  103. case ssl_mac_sha: return true;
  104. case ssl_hmac_sha: return true;
  105. case ssl_hmac_sha256: return true;
  106. case ssl_mac_aead: return true;
  107. case ssl_hmac_sha384: return true;
  108. default: return true;
  109. }
  110. }
  111. static bool
  112. we_like_auth_type(SSLAuthType at)
  113. {
  114. switch (at) {
  115. case ssl_auth_null: return false;
  116. case ssl_auth_rsa_decrypt: return false;
  117. case ssl_auth_dsa: return false;
  118. case ssl_auth_kea: return false;
  119. case ssl_auth_ecdsa: return true;
  120. case ssl_auth_ecdh_rsa: return true;
  121. case ssl_auth_ecdh_ecdsa: return true;
  122. case ssl_auth_rsa_sign: return true;
  123. case ssl_auth_rsa_pss: return true;
  124. case ssl_auth_psk: return true;
  125. case ssl_auth_tls13_any: return true;
  126. case ssl_auth_size: return true; /* prevent a warning. */
  127. default: return true;
  128. }
  129. }
  130. tor_tls_context_t *
  131. tor_tls_context_new(crypto_pk_t *identity,
  132. unsigned int key_lifetime, unsigned flags, int is_client)
  133. {
  134. SECStatus s;
  135. tor_assert(identity);
  136. tor_tls_context_t *ctx = tor_malloc_zero(sizeof(tor_tls_context_t));
  137. ctx->refcnt = 1;
  138. if (! is_client) {
  139. if (tor_tls_context_init_certificates(ctx, identity,
  140. key_lifetime, flags) < 0) {
  141. goto err;
  142. }
  143. }
  144. {
  145. /* Create the "model" PRFileDesc that we will use to base others on. */
  146. PRFileDesc *tcp = PR_NewTCPSocket();
  147. if (!tcp)
  148. goto err;
  149. ctx->ctx = SSL_ImportFD(NULL, tcp);
  150. if (!ctx->ctx) {
  151. PR_Close(tcp);
  152. goto err;
  153. }
  154. }
  155. // Configure the certificate.
  156. if (!is_client) {
  157. s = SSL_ConfigServerCert(ctx->ctx,
  158. ctx->my_link_cert->cert,
  159. (SECKEYPrivateKey *)
  160. crypto_pk_get_nss_privkey(ctx->link_key),
  161. NULL, /* ExtraServerCertData */
  162. 0 /* DataLen */);
  163. if (s != SECSuccess)
  164. goto err;
  165. }
  166. // We need a certificate from the other side.
  167. if (is_client) {
  168. // XXXX does this do anything?
  169. s = SSL_OptionSet(ctx->ctx, SSL_REQUIRE_CERTIFICATE, PR_TRUE);
  170. if (s != SECSuccess)
  171. goto err;
  172. }
  173. // Always accept other side's cert; we'll check it ourselves in goofy
  174. // tor ways.
  175. s = SSL_AuthCertificateHook(ctx->ctx, always_accept_cert_cb, NULL);
  176. // We allow simultaneous read and write.
  177. s = SSL_OptionSet(ctx->ctx, SSL_ENABLE_FDX, PR_TRUE);
  178. if (s != SECSuccess)
  179. goto err;
  180. // XXXX SSL_ROLLBACK_DETECTION??
  181. // XXXX SSL_ENABLE_ALPN??
  182. // Force client-mode or server_mode.
  183. s = SSL_OptionSet(ctx->ctx,
  184. is_client ? SSL_HANDSHAKE_AS_CLIENT : SSL_HANDSHAKE_AS_SERVER,
  185. PR_TRUE);
  186. if (s != SECSuccess)
  187. goto err;
  188. // Disable everything before TLS 1.0; support everything else.
  189. {
  190. SSLVersionRange vrange;
  191. memset(&vrange, 0, sizeof(vrange));
  192. s = SSL_VersionRangeGetSupported(ssl_variant_stream, &vrange);
  193. if (s != SECSuccess)
  194. goto err;
  195. if (vrange.min < SSL_LIBRARY_VERSION_TLS_1_0)
  196. vrange.min = SSL_LIBRARY_VERSION_TLS_1_0;
  197. s = SSL_VersionRangeSet(ctx->ctx, &vrange);
  198. if (s != SECSuccess)
  199. goto err;
  200. }
  201. // Only support strong ciphers.
  202. {
  203. const PRUint16 *ciphers = SSL_GetImplementedCiphers();
  204. const PRUint16 n_ciphers = SSL_GetNumImplementedCiphers();
  205. PRUint16 i;
  206. for (i = 0; i < n_ciphers; ++i) {
  207. SSLCipherSuiteInfo info;
  208. memset(&info, 0, sizeof(info));
  209. s = SSL_GetCipherSuiteInfo(ciphers[i], &info, sizeof(info));
  210. if (s != SECSuccess)
  211. goto err;
  212. if (BUG(info.cipherSuite != ciphers[i]))
  213. goto err;
  214. int disable = info.effectiveKeyBits < 128 ||
  215. info.macBits < 128 ||
  216. !we_like_ssl_cipher(info.symCipher) ||
  217. !we_like_ssl_kea(info.keaType) ||
  218. !we_like_mac_algorithm(info.macAlgorithm) ||
  219. !we_like_auth_type(info.authType)/* Requires NSS 3.24 */;
  220. s = SSL_CipherPrefSet(ctx->ctx, ciphers[i],
  221. disable ? PR_FALSE : PR_TRUE);
  222. if (s != SECSuccess)
  223. goto err;
  224. }
  225. }
  226. // Only use DH and ECDH keys once.
  227. s = SSL_OptionSet(ctx->ctx, SSL_REUSE_SERVER_ECDHE_KEY, PR_FALSE);
  228. if (s != SECSuccess)
  229. goto err;
  230. // don't cache sessions.
  231. s = SSL_OptionSet(ctx->ctx, SSL_NO_CACHE, PR_TRUE);
  232. if (s != SECSuccess)
  233. goto err;
  234. // Enable DH.
  235. s = SSL_OptionSet(ctx->ctx, SSL_ENABLE_SERVER_DHE, PR_TRUE);
  236. if (s != SECSuccess)
  237. goto err;
  238. // Set DH and ECDH groups.
  239. SSLNamedGroup groups[] = {
  240. ssl_grp_ec_curve25519,
  241. ssl_grp_ec_secp256r1,
  242. ssl_grp_ec_secp224r1,
  243. ssl_grp_ffdhe_2048,
  244. };
  245. s = SSL_NamedGroupConfig(ctx->ctx, groups, ARRAY_LENGTH(groups));
  246. if (s != SECSuccess)
  247. goto err;
  248. // These features are off by default, so we don't need to disable them:
  249. // Session tickets
  250. // Renegotiation
  251. // Compression
  252. goto done;
  253. err:
  254. tor_tls_context_decref(ctx);
  255. ctx = NULL;
  256. done:
  257. return ctx;
  258. }
  259. void
  260. tor_tls_context_impl_free(tor_tls_context_impl_t *ctx)
  261. {
  262. PR_Close(ctx);
  263. }
  264. void
  265. tor_tls_get_state_description(tor_tls_t *tls, char *buf, size_t sz)
  266. {
  267. (void)tls;
  268. (void)buf;
  269. (void)sz;
  270. // AFAICT, NSS doesn't expose its internal state.
  271. buf[0]=0;
  272. }
  273. void
  274. tor_tls_init(void)
  275. {
  276. /* We don't have any global setup to do yet, but that will change */
  277. }
  278. void
  279. tls_log_errors(tor_tls_t *tls, int severity, int domain,
  280. const char *doing)
  281. {
  282. /* This implementation is a little different for NSS than it is for OpenSSL
  283. -- it logs the last error whether anything actually failed or not. So we
  284. have to only call it when something has gone wrong and we have a real
  285. error to report. */
  286. (void)tls;
  287. PRErrorCode code = PORT_GetError();
  288. const char *string = PORT_ErrorToString(code);
  289. const char *name = PORT_ErrorToName(code);
  290. char buf[16];
  291. if (!string)
  292. string = "<unrecognized>";
  293. if (!name) {
  294. tor_snprintf(buf, sizeof(buf), "%d", code);
  295. name = buf;
  296. }
  297. if (doing) {
  298. log_fn(severity, domain, "TLS error %s while %s: %s", name, doing, string);
  299. } else {
  300. log_fn(severity, domain, "TLS error %s: %s", name, string);
  301. }
  302. }
  303. tor_tls_t *
  304. tor_tls_new(tor_socket_t sock, int is_server)
  305. {
  306. (void)sock;
  307. tor_tls_context_t *ctx = tor_tls_context_get(is_server);
  308. PRFileDesc *tcp = PR_ImportTCPSocket(sock);
  309. if (!tcp)
  310. return NULL;
  311. PRFileDesc *ssl = SSL_ImportFD(ctx->ctx, tcp);
  312. if (!ssl) {
  313. PR_Close(tcp);
  314. return NULL;
  315. }
  316. tor_tls_t *tls = tor_malloc_zero(sizeof(tor_tls_t));
  317. tls->magic = TOR_TLS_MAGIC;
  318. tls->context = ctx;
  319. tor_tls_context_incref(ctx);
  320. tls->ssl = ssl;
  321. tls->socket = sock;
  322. tls->state = TOR_TLS_ST_HANDSHAKE;
  323. tls->isServer = !!is_server;
  324. if (!is_server) {
  325. /* Set a random SNI */
  326. char *fake_hostname = crypto_random_hostname(4,25, "www.",".com");
  327. SSL_SetURL(tls->ssl, fake_hostname);
  328. tor_free(fake_hostname);
  329. }
  330. SECStatus s = SSL_ResetHandshake(ssl, is_server ? PR_TRUE : PR_FALSE);
  331. if (s != SECSuccess) {
  332. crypto_nss_log_errors(LOG_WARN, "resetting handshake state");
  333. }
  334. return tls;
  335. }
  336. void
  337. tor_tls_set_renegotiate_callback(tor_tls_t *tls,
  338. void (*cb)(tor_tls_t *, void *arg),
  339. void *arg)
  340. {
  341. tor_assert(tls);
  342. (void)cb;
  343. (void)arg;
  344. /* We don't support renegotiation-based TLS with NSS. */
  345. }
  346. void
  347. tor_tls_impl_free_(tor_tls_impl_t *tls)
  348. {
  349. // XXXX This will close the underlying fd, which our OpenSSL version does
  350. // not do!
  351. PR_Close(tls);
  352. }
  353. int
  354. tor_tls_peer_has_cert(tor_tls_t *tls)
  355. {
  356. CERTCertificate *cert = SSL_PeerCertificate(tls->ssl);
  357. int result = (cert != NULL);
  358. CERT_DestroyCertificate(cert);
  359. return result;
  360. }
  361. MOCK_IMPL(tor_x509_cert_t *,
  362. tor_tls_get_peer_cert,(tor_tls_t *tls))
  363. {
  364. CERTCertificate *cert = SSL_PeerCertificate(tls->ssl);
  365. if (cert)
  366. return tor_x509_cert_new(cert);
  367. else
  368. return NULL;
  369. }
  370. MOCK_IMPL(tor_x509_cert_t *,
  371. tor_tls_get_own_cert,(tor_tls_t *tls))
  372. {
  373. tor_assert(tls);
  374. CERTCertificate *cert = SSL_LocalCertificate(tls->ssl);
  375. if (cert)
  376. return tor_x509_cert_new(cert);
  377. else
  378. return NULL;
  379. }
  380. MOCK_IMPL(int,
  381. tor_tls_read, (tor_tls_t *tls, char *cp, size_t len))
  382. {
  383. tor_assert(tls);
  384. tor_assert(cp);
  385. tor_assert(len < INT_MAX);
  386. PRInt32 rv = PR_Read(tls->ssl, cp, (int)len);
  387. // log_debug(LD_NET, "PR_Read(%zu) returned %d", n, (int)rv);
  388. if (rv > 0) {
  389. tls->n_read_since_last_check += rv;
  390. return rv;
  391. }
  392. if (rv == 0)
  393. return TOR_TLS_CLOSE;
  394. PRErrorCode err = PORT_GetError();
  395. if (err == PR_WOULD_BLOCK_ERROR) {
  396. return TOR_TLS_WANTREAD; // XXXX ????
  397. } else {
  398. crypto_nss_log_errors(LOG_NOTICE, "reading"); // XXXX
  399. return TOR_TLS_ERROR_MISC; // ????
  400. }
  401. }
  402. int
  403. tor_tls_write(tor_tls_t *tls, const char *cp, size_t n)
  404. {
  405. tor_assert(tls);
  406. tor_assert(cp || n == 0);
  407. tor_assert(n < INT_MAX);
  408. PRInt32 rv = PR_Write(tls->ssl, cp, (int)n);
  409. // log_debug(LD_NET, "PR_Write(%zu) returned %d", n, (int)rv);
  410. if (rv > 0) {
  411. tls->n_written_since_last_check += rv;
  412. return rv;
  413. }
  414. if (rv == 0)
  415. return TOR_TLS_ERROR_MISC;
  416. PRErrorCode err = PORT_GetError();
  417. if (err == PR_WOULD_BLOCK_ERROR) {
  418. return TOR_TLS_WANTWRITE; // XXXX ????
  419. } else {
  420. crypto_nss_log_errors(LOG_NOTICE, "writing"); // XXXX
  421. return TOR_TLS_ERROR_MISC; // ????
  422. }
  423. }
  424. int
  425. tor_tls_handshake(tor_tls_t *tls)
  426. {
  427. tor_assert(tls);
  428. tor_assert(tls->state == TOR_TLS_ST_HANDSHAKE);
  429. SECStatus s = SSL_ForceHandshake(tls->ssl);
  430. if (s == SECSuccess) {
  431. tls->state = TOR_TLS_ST_OPEN;
  432. log_debug(LD_NET, "SSL handshake is supposedly complete.");
  433. return tor_tls_finish_handshake(tls);
  434. }
  435. if (PORT_GetError() == PR_WOULD_BLOCK_ERROR)
  436. return TOR_TLS_WANTREAD; /* XXXX What about wantwrite? */
  437. return TOR_TLS_ERROR_MISC; // XXXX
  438. }
  439. int
  440. tor_tls_finish_handshake(tor_tls_t *tls)
  441. {
  442. tor_assert(tls);
  443. // We don't need to do any of the weird handshake nonsense stuff on NSS,
  444. // since we only support recent handshakes.
  445. return TOR_TLS_DONE;
  446. }
  447. void
  448. tor_tls_unblock_renegotiation(tor_tls_t *tls)
  449. {
  450. tor_assert(tls);
  451. /* We don't support renegotiation with NSS. */
  452. }
  453. void
  454. tor_tls_block_renegotiation(tor_tls_t *tls)
  455. {
  456. tor_assert(tls);
  457. /* We don't support renegotiation with NSS. */
  458. }
  459. void
  460. tor_tls_assert_renegotiation_unblocked(tor_tls_t *tls)
  461. {
  462. tor_assert(tls);
  463. /* We don't support renegotiation with NSS. */
  464. }
  465. int
  466. tor_tls_get_pending_bytes(tor_tls_t *tls)
  467. {
  468. tor_assert(tls);
  469. int n = SSL_DataPending(tls->ssl);
  470. if (n < 0) {
  471. crypto_nss_log_errors(LOG_WARN, "Looking up pending bytes");
  472. return 0;
  473. }
  474. return (int)n;
  475. }
  476. size_t
  477. tor_tls_get_forced_write_size(tor_tls_t *tls)
  478. {
  479. tor_assert(tls);
  480. /* NSS doesn't have the same "forced write" restriction as openssl. */
  481. return 0;
  482. }
  483. void
  484. tor_tls_get_n_raw_bytes(tor_tls_t *tls,
  485. size_t *n_read, size_t *n_written)
  486. {
  487. tor_assert(tls);
  488. tor_assert(n_read);
  489. tor_assert(n_written);
  490. /* XXXX We don't curently have a way to measure this information correctly
  491. * in NSS; we could do that with a PRIO layer, but it'll take a little
  492. * coding. For now, we just track the number of bytes sent _in_ the TLS
  493. * stream. Doing this will make our rate-limiting slightly inaccurate. */
  494. *n_read = tls->n_read_since_last_check;
  495. *n_written = tls->n_written_since_last_check;
  496. tls->n_read_since_last_check = tls->n_written_since_last_check = 0;
  497. }
  498. int
  499. tor_tls_get_buffer_sizes(tor_tls_t *tls,
  500. size_t *rbuf_capacity, size_t *rbuf_bytes,
  501. size_t *wbuf_capacity, size_t *wbuf_bytes)
  502. {
  503. tor_assert(tls);
  504. tor_assert(rbuf_capacity);
  505. tor_assert(rbuf_bytes);
  506. tor_assert(wbuf_capacity);
  507. tor_assert(wbuf_bytes);
  508. /* This is an acceptable way to say "we can't measure this." */
  509. return -1;
  510. }
  511. MOCK_IMPL(double,
  512. tls_get_write_overhead_ratio, (void))
  513. {
  514. /* XXX We don't currently have a way to measure this in NSS; we could do that
  515. * XXX with a PRIO layer, but it'll take a little coding. */
  516. return 0.95;
  517. }
  518. int
  519. tor_tls_used_v1_handshake(tor_tls_t *tls)
  520. {
  521. tor_assert(tls);
  522. /* We don't support or allow the V1 handshake with NSS.
  523. */
  524. return 0;
  525. }
  526. int
  527. tor_tls_server_got_renegotiate(tor_tls_t *tls)
  528. {
  529. tor_assert(tls);
  530. return 0; /* We don't support renegotiation with NSS */
  531. }
  532. MOCK_IMPL(int,
  533. tor_tls_cert_matches_key,(const tor_tls_t *tls,
  534. const struct tor_x509_cert_t *cert))
  535. {
  536. tor_assert(tls);
  537. tor_assert(cert);
  538. int rv = 0;
  539. CERTCertificate *peercert = SSL_PeerCertificate(tls->ssl);
  540. if (!peercert)
  541. goto done;
  542. CERTSubjectPublicKeyInfo *peer_info = &peercert->subjectPublicKeyInfo;
  543. CERTSubjectPublicKeyInfo *cert_info = &cert->cert->subjectPublicKeyInfo;
  544. rv = SECOID_CompareAlgorithmID(&peer_info->algorithm,
  545. &cert_info->algorithm) == 0 &&
  546. SECITEM_ItemsAreEqual(&peer_info->subjectPublicKey,
  547. &cert_info->subjectPublicKey);
  548. done:
  549. if (peercert)
  550. CERT_DestroyCertificate(peercert);
  551. return rv;
  552. }
  553. MOCK_IMPL(int,
  554. tor_tls_get_tlssecrets,(tor_tls_t *tls, uint8_t *secrets_out))
  555. {
  556. tor_assert(tls);
  557. tor_assert(secrets_out);
  558. /* There's no way to get this information out of NSS. */
  559. return -1;
  560. }
  561. MOCK_IMPL(int,
  562. tor_tls_export_key_material,(tor_tls_t *tls, uint8_t *secrets_out,
  563. const uint8_t *context,
  564. size_t context_len,
  565. const char *label))
  566. {
  567. tor_assert(tls);
  568. tor_assert(secrets_out);
  569. tor_assert(context);
  570. tor_assert(label);
  571. tor_assert(strlen(label) <= UINT_MAX);
  572. tor_assert(context_len <= UINT_MAX);
  573. SECStatus s;
  574. s = SSL_ExportKeyingMaterial(tls->ssl,
  575. label, (unsigned)strlen(label),
  576. PR_TRUE, context, (unsigned)context_len,
  577. secrets_out, DIGEST256_LEN);
  578. return (s == SECSuccess) ? 0 : -1;
  579. }
  580. const char *
  581. tor_tls_get_ciphersuite_name(tor_tls_t *tls)
  582. {
  583. tor_assert(tls);
  584. SSLChannelInfo channel_info;
  585. SSLCipherSuiteInfo cipher_info;
  586. memset(&channel_info, 0, sizeof(channel_info));
  587. memset(&cipher_info, 0, sizeof(cipher_info));
  588. SECStatus s = SSL_GetChannelInfo(tls->ssl,
  589. &channel_info, sizeof(channel_info));
  590. if (s != SECSuccess)
  591. return NULL;
  592. s = SSL_GetCipherSuiteInfo(channel_info.cipherSuite,
  593. &cipher_info, sizeof(cipher_info));
  594. if (s != SECSuccess)
  595. return NULL;
  596. return cipher_info.cipherSuiteName;
  597. }
  598. /** The group we should use for ecdhe when none was selected. */
  599. #define SEC_OID_TOR_DEFAULT_ECDHE_GROUP SEC_OID_ANSIX962_EC_PRIME256V1
  600. int
  601. evaluate_ecgroup_for_tls(const char *ecgroup)
  602. {
  603. SECOidTag tag;
  604. if (!ecgroup)
  605. tag = SEC_OID_TOR_DEFAULT_ECDHE_GROUP;
  606. else if (!strcasecmp(ecgroup, "P256"))
  607. tag = SEC_OID_ANSIX962_EC_PRIME256V1;
  608. else if (!strcasecmp(ecgroup, "P224"))
  609. tag = SEC_OID_SECG_EC_SECP224R1;
  610. else
  611. return 0;
  612. /* I don't think we need any additional tests here for NSS */
  613. (void) tag;
  614. return 1;
  615. }
  616. static SECStatus
  617. always_accept_cert_cb(void *arg, PRFileDesc *ssl, PRBool checkSig,
  618. PRBool isServer)
  619. {
  620. (void)arg;
  621. (void)ssl;
  622. (void)checkSig;
  623. (void)isServer;
  624. return SECSuccess;
  625. }