test_tortls_openssl.c 61 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277
  1. /* Copyright (c) 2010-2018, The Tor Project, Inc. */
  2. /* See LICENSE for licensing information */
  3. #define TORTLS_PRIVATE
  4. #define TORTLS_OPENSSL_PRIVATE
  5. #define TOR_X509_PRIVATE
  6. #define LOG_PRIVATE
  7. #include "orconfig.h"
  8. #ifdef _WIN32
  9. #include <winsock2.h>
  10. #endif
  11. #include <math.h>
  12. #include "lib/cc/compat_compiler.h"
  13. /* Some versions of OpenSSL declare SSL_get_selected_srtp_profile twice in
  14. * srtp.h. Suppress the GCC warning so we can build with -Wredundant-decl. */
  15. DISABLE_GCC_WARNING(redundant-decls)
  16. #include <openssl/opensslv.h>
  17. #include <openssl/ssl.h>
  18. #include <openssl/ssl3.h>
  19. #include <openssl/err.h>
  20. #include <openssl/asn1t.h>
  21. #include <openssl/x509.h>
  22. #include <openssl/rsa.h>
  23. #include <openssl/evp.h>
  24. #include <openssl/bn.h>
  25. ENABLE_GCC_WARNING(redundant-decls)
  26. #include "core/or/or.h"
  27. #include "lib/log/log.h"
  28. #include "app/config/config.h"
  29. #include "lib/crypt_ops/compat_openssl.h"
  30. #include "lib/tls/x509.h"
  31. #include "lib/tls/x509_internal.h"
  32. #include "lib/tls/tortls.h"
  33. #include "lib/tls/tortls_st.h"
  34. #include "lib/tls/tortls_internal.h"
  35. #include "app/config/or_state_st.h"
  36. #include "test/test.h"
  37. #include "test/log_test_helpers.h"
  38. #include "test/test_tortls.h"
  39. #define NS_MODULE tortls
  40. #ifndef HAVE_SSL_STATE
  41. #define OPENSSL_OPAQUE
  42. #endif
  43. #if defined(OPENSSL_OPAQUE) && !defined(LIBRESSL_VERSION_NUMBER)
  44. #define SSL_STATE_STR "before SSL initialization"
  45. #else
  46. #define SSL_STATE_STR "before/accept initialization"
  47. #endif
  48. #ifndef OPENSSL_OPAQUE
  49. static SSL_METHOD *
  50. give_me_a_test_method(void)
  51. {
  52. SSL_METHOD *method = tor_malloc_zero(sizeof(SSL_METHOD));
  53. memcpy(method, TLSv1_method(), sizeof(SSL_METHOD));
  54. return method;
  55. }
  56. static int
  57. fake_num_ciphers(void)
  58. {
  59. return 0;
  60. }
  61. #endif /* !defined(OPENSSL_OPAQUE) */
  62. static int
  63. mock_tls_cert_matches_key(const tor_tls_t *tls, const tor_x509_cert_t *cert)
  64. {
  65. (void) tls;
  66. (void) cert; // XXXX look at this.
  67. return 1;
  68. }
  69. static void
  70. test_tortls_tor_tls_new(void *data)
  71. {
  72. (void) data;
  73. MOCK(tor_tls_cert_matches_key, mock_tls_cert_matches_key);
  74. crypto_pk_t *key1 = NULL, *key2 = NULL;
  75. SSL_METHOD *method = NULL;
  76. key1 = pk_generate(2);
  77. key2 = pk_generate(3);
  78. tor_tls_t *tls = NULL;
  79. tt_int_op(tor_tls_context_init(TOR_TLS_CTX_IS_PUBLIC_SERVER,
  80. key1, key2, 86400), OP_EQ, 0);
  81. tls = tor_tls_new(-1, 0);
  82. tt_want(tls);
  83. tor_tls_free(tls); tls = NULL;
  84. SSL_CTX_free(client_tls_context->ctx);
  85. client_tls_context->ctx = NULL;
  86. tls = tor_tls_new(-1, 0);
  87. tt_ptr_op(tls, OP_EQ, NULL);
  88. #ifndef OPENSSL_OPAQUE
  89. method = give_me_a_test_method();
  90. SSL_CTX *ctx = SSL_CTX_new(method);
  91. method->num_ciphers = fake_num_ciphers;
  92. client_tls_context->ctx = ctx;
  93. tls = tor_tls_new(-1, 0);
  94. tt_ptr_op(tls, OP_EQ, NULL);
  95. #endif /* !defined(OPENSSL_OPAQUE) */
  96. done:
  97. UNMOCK(tor_tls_cert_matches_key);
  98. crypto_pk_free(key1);
  99. crypto_pk_free(key2);
  100. tor_tls_free(tls);
  101. tor_free(method);
  102. tor_tls_free_all();
  103. }
  104. #define NS_MODULE tortls
  105. static void
  106. library_init(void)
  107. {
  108. #ifdef OPENSSL_1_1_API
  109. OPENSSL_init_ssl(OPENSSL_INIT_LOAD_SSL_STRINGS, NULL);
  110. #else
  111. SSL_library_init();
  112. SSL_load_error_strings();
  113. #endif
  114. }
  115. static void
  116. test_tortls_get_state_description(void *ignored)
  117. {
  118. (void)ignored;
  119. tor_tls_t *tls;
  120. char *buf;
  121. SSL_CTX *ctx;
  122. library_init();
  123. ctx = SSL_CTX_new(SSLv23_method());
  124. buf = tor_malloc_zero(1000);
  125. tls = tor_malloc_zero(sizeof(tor_tls_t));
  126. tor_tls_get_state_description(NULL, buf, 20);
  127. tt_str_op(buf, OP_EQ, "(No SSL object)");
  128. SSL_free(tls->ssl);
  129. tls->ssl = NULL;
  130. tor_tls_get_state_description(tls, buf, 20);
  131. tt_str_op(buf, OP_EQ, "(No SSL object)");
  132. tls->ssl = SSL_new(ctx);
  133. tor_tls_get_state_description(tls, buf, 200);
  134. tt_str_op(buf, OP_EQ, SSL_STATE_STR " in HANDSHAKE");
  135. tls->state = TOR_TLS_ST_OPEN;
  136. tor_tls_get_state_description(tls, buf, 200);
  137. tt_str_op(buf, OP_EQ, SSL_STATE_STR " in OPEN");
  138. tls->state = TOR_TLS_ST_GOTCLOSE;
  139. tor_tls_get_state_description(tls, buf, 200);
  140. tt_str_op(buf, OP_EQ, SSL_STATE_STR " in GOTCLOSE");
  141. tls->state = TOR_TLS_ST_SENTCLOSE;
  142. tor_tls_get_state_description(tls, buf, 200);
  143. tt_str_op(buf, OP_EQ, SSL_STATE_STR " in SENTCLOSE");
  144. tls->state = TOR_TLS_ST_CLOSED;
  145. tor_tls_get_state_description(tls, buf, 200);
  146. tt_str_op(buf, OP_EQ, SSL_STATE_STR " in CLOSED");
  147. tls->state = TOR_TLS_ST_RENEGOTIATE;
  148. tor_tls_get_state_description(tls, buf, 200);
  149. tt_str_op(buf, OP_EQ, SSL_STATE_STR " in RENEGOTIATE");
  150. tls->state = TOR_TLS_ST_BUFFEREVENT;
  151. tor_tls_get_state_description(tls, buf, 200);
  152. tt_str_op(buf, OP_EQ, SSL_STATE_STR);
  153. tls->state = 7;
  154. tor_tls_get_state_description(tls, buf, 200);
  155. tt_str_op(buf, OP_EQ, SSL_STATE_STR " in unknown TLS state");
  156. done:
  157. SSL_CTX_free(ctx);
  158. SSL_free(tls->ssl);
  159. tor_free(buf);
  160. tor_free(tls);
  161. }
  162. static void
  163. test_tortls_get_by_ssl(void *ignored)
  164. {
  165. (void)ignored;
  166. tor_tls_t *tls;
  167. tor_tls_t *res;
  168. SSL_CTX *ctx;
  169. SSL *ssl;
  170. library_init();
  171. tor_tls_allocate_tor_tls_object_ex_data_index();
  172. ctx = SSL_CTX_new(SSLv23_method());
  173. tls = tor_malloc_zero(sizeof(tor_tls_t));
  174. tls->magic = TOR_TLS_MAGIC;
  175. ssl = SSL_new(ctx);
  176. res = tor_tls_get_by_ssl(ssl);
  177. tt_assert(!res);
  178. SSL_set_ex_data(ssl, tor_tls_object_ex_data_index, tls);
  179. res = tor_tls_get_by_ssl(ssl);
  180. tt_assert(res == tls);
  181. done:
  182. SSL_free(ssl);
  183. SSL_CTX_free(ctx);
  184. tor_free(tls);
  185. }
  186. static void
  187. test_tortls_allocate_tor_tls_object_ex_data_index(void *ignored)
  188. {
  189. (void)ignored;
  190. int first;
  191. tor_tls_allocate_tor_tls_object_ex_data_index();
  192. first = tor_tls_object_ex_data_index;
  193. tor_tls_allocate_tor_tls_object_ex_data_index();
  194. tt_int_op(first, OP_EQ, tor_tls_object_ex_data_index);
  195. done:
  196. (void)0;
  197. }
  198. static void
  199. test_tortls_log_one_error(void *ignored)
  200. {
  201. (void)ignored;
  202. tor_tls_t *tls;
  203. SSL_CTX *ctx;
  204. SSL *ssl = NULL;
  205. library_init();
  206. ctx = SSL_CTX_new(SSLv23_method());
  207. tls = tor_malloc_zero(sizeof(tor_tls_t));
  208. setup_capture_of_logs(LOG_INFO);
  209. tor_tls_log_one_error(NULL, 0, LOG_WARN, 0, "something");
  210. expect_log_msg("TLS error while something: "
  211. "(null) (in (null):(null):---)\n");
  212. mock_clean_saved_logs();
  213. tor_tls_log_one_error(tls, 0, LOG_WARN, 0, NULL);
  214. expect_log_msg("TLS error: (null) "
  215. "(in (null):(null):---)\n");
  216. mock_clean_saved_logs();
  217. tls->address = tor_strdup("127.hello");
  218. tor_tls_log_one_error(tls, 0, LOG_WARN, 0, NULL);
  219. expect_log_msg("TLS error with 127.hello: "
  220. "(null) (in (null):(null):---)\n");
  221. tor_free(tls->address);
  222. mock_clean_saved_logs();
  223. tls->address = tor_strdup("127.hello");
  224. tor_tls_log_one_error(tls, 0, LOG_WARN, 0, "blarg");
  225. expect_log_msg("TLS error while blarg with "
  226. "127.hello: (null) (in (null):(null):---)\n");
  227. mock_clean_saved_logs();
  228. tor_tls_log_one_error(tls, ERR_PACK(1, 2, 3), LOG_WARN, 0, NULL);
  229. expect_log_msg("TLS error with 127.hello: "
  230. "BN lib (in unknown library:(null):---)\n");
  231. mock_clean_saved_logs();
  232. tor_tls_log_one_error(tls, ERR_PACK(1, 2, SSL_R_HTTP_REQUEST),
  233. LOG_WARN, 0, NULL);
  234. expect_log_severity(LOG_INFO);
  235. mock_clean_saved_logs();
  236. tor_tls_log_one_error(tls, ERR_PACK(1, 2, SSL_R_HTTPS_PROXY_REQUEST),
  237. LOG_WARN, 0, NULL);
  238. expect_log_severity(LOG_INFO);
  239. mock_clean_saved_logs();
  240. tor_tls_log_one_error(tls, ERR_PACK(1, 2, SSL_R_RECORD_LENGTH_MISMATCH),
  241. LOG_WARN, 0, NULL);
  242. expect_log_severity(LOG_INFO);
  243. #ifndef OPENSSL_1_1_API
  244. mock_clean_saved_logs();
  245. tor_tls_log_one_error(tls, ERR_PACK(1, 2, SSL_R_RECORD_TOO_LARGE),
  246. LOG_WARN, 0, NULL);
  247. expect_log_severity(LOG_INFO);
  248. #endif /* !defined(OPENSSL_1_1_API) */
  249. mock_clean_saved_logs();
  250. tor_tls_log_one_error(tls, ERR_PACK(1, 2, SSL_R_UNKNOWN_PROTOCOL),
  251. LOG_WARN, 0, NULL);
  252. expect_log_severity(LOG_INFO);
  253. mock_clean_saved_logs();
  254. tor_tls_log_one_error(tls, ERR_PACK(1, 2, SSL_R_UNSUPPORTED_PROTOCOL),
  255. LOG_WARN, 0, NULL);
  256. expect_log_severity(LOG_INFO);
  257. tls->ssl = SSL_new(ctx);
  258. mock_clean_saved_logs();
  259. tor_tls_log_one_error(tls, 0, LOG_WARN, 0, NULL);
  260. expect_log_msg("TLS error with 127.hello: (null)"
  261. " (in (null):(null):" SSL_STATE_STR ")\n");
  262. done:
  263. teardown_capture_of_logs();
  264. SSL_free(ssl);
  265. SSL_CTX_free(ctx);
  266. if (tls && tls->ssl)
  267. SSL_free(tls->ssl);
  268. if (tls)
  269. tor_free(tls->address);
  270. tor_free(tls);
  271. }
  272. #ifndef OPENSSL_OPAQUE
  273. static void
  274. test_tortls_get_error(void *ignored)
  275. {
  276. (void)ignored;
  277. tor_tls_t *tls;
  278. int ret;
  279. SSL_CTX *ctx;
  280. library_init();
  281. ctx = SSL_CTX_new(SSLv23_method());
  282. setup_capture_of_logs(LOG_INFO);
  283. tls = tor_malloc_zero(sizeof(tor_tls_t));
  284. tls->ssl = SSL_new(ctx);
  285. SSL_set_bio(tls->ssl, BIO_new(BIO_s_mem()), NULL);
  286. ret = tor_tls_get_error(tls, 0, 0, "something", LOG_WARN, 0);
  287. tt_int_op(ret, OP_EQ, TOR_TLS_ERROR_IO);
  288. expect_log_msg("TLS error: unexpected close while"
  289. " something (before/accept initialization)\n");
  290. mock_clean_saved_logs();
  291. ret = tor_tls_get_error(tls, 2, 0, "something", LOG_WARN, 0);
  292. tt_int_op(ret, OP_EQ, 0);
  293. expect_no_log_entry();
  294. mock_clean_saved_logs();
  295. ret = tor_tls_get_error(tls, 0, 1, "something", LOG_WARN, 0);
  296. tt_int_op(ret, OP_EQ, -11);
  297. expect_no_log_entry();
  298. mock_clean_saved_logs();
  299. ERR_clear_error();
  300. ERR_put_error(ERR_LIB_BN, 2, -1, "somewhere.c", 99);
  301. ret = tor_tls_get_error(tls, 0, 0, "something", LOG_WARN, 0);
  302. tt_int_op(ret, OP_EQ, TOR_TLS_ERROR_MISC);
  303. expect_log_msg("TLS error while something: (null)"
  304. " (in bignum routines:(null):before/accept initialization)\n");
  305. mock_clean_saved_logs();
  306. ERR_clear_error();
  307. tls->ssl->rwstate = SSL_READING;
  308. SSL_get_rbio(tls->ssl)->flags = BIO_FLAGS_READ;
  309. ret = tor_tls_get_error(tls, -1, 0, "something", LOG_WARN, 0);
  310. tt_int_op(ret, OP_EQ, TOR_TLS_WANTREAD);
  311. expect_no_log_entry();
  312. mock_clean_saved_logs();
  313. ERR_clear_error();
  314. tls->ssl->rwstate = SSL_READING;
  315. SSL_get_rbio(tls->ssl)->flags = BIO_FLAGS_WRITE;
  316. ret = tor_tls_get_error(tls, -1, 0, "something", LOG_WARN, 0);
  317. tt_int_op(ret, OP_EQ, TOR_TLS_WANTWRITE);
  318. expect_no_log_entry();
  319. mock_clean_saved_logs();
  320. ERR_clear_error();
  321. tls->ssl->rwstate = 0;
  322. tls->ssl->shutdown = SSL_RECEIVED_SHUTDOWN;
  323. tls->ssl->s3->warn_alert =SSL_AD_CLOSE_NOTIFY;
  324. ret = tor_tls_get_error(tls, 0, 0, "something", LOG_WARN, 0);
  325. tt_int_op(ret, OP_EQ, TOR_TLS_CLOSE);
  326. expect_log_entry();
  327. mock_clean_saved_logs();
  328. ret = tor_tls_get_error(tls, 0, 2, "something", LOG_WARN, 0);
  329. tt_int_op(ret, OP_EQ, -10);
  330. expect_no_log_entry();
  331. mock_clean_saved_logs();
  332. ERR_put_error(ERR_LIB_SYS, 2, -1, "somewhere.c", 99);
  333. ret = tor_tls_get_error(tls, -1, 0, "something", LOG_WARN, 0);
  334. tt_int_op(ret, OP_EQ, -9);
  335. expect_log_msg("TLS error while something: (null) (in system library:"
  336. "connect:before/accept initialization)\n");
  337. done:
  338. teardown_capture_of_logs();
  339. SSL_free(tls->ssl);
  340. tor_free(tls);
  341. SSL_CTX_free(ctx);
  342. }
  343. #endif /* !defined(OPENSSL_OPAQUE) */
  344. static void
  345. test_tortls_always_accept_verify_cb(void *ignored)
  346. {
  347. (void)ignored;
  348. int ret;
  349. ret = always_accept_verify_cb(0, NULL);
  350. tt_int_op(ret, OP_EQ, 1);
  351. done:
  352. (void)0;
  353. }
  354. #ifndef OPENSSL_OPAQUE
  355. static void
  356. test_tortls_x509_cert_free(void *ignored)
  357. {
  358. (void)ignored;
  359. tor_x509_cert_t *cert;
  360. cert = tor_malloc_zero(sizeof(tor_x509_cert_t));
  361. tor_x509_cert_free(cert);
  362. cert = tor_malloc_zero(sizeof(tor_x509_cert_t));
  363. cert->cert = X509_new();
  364. cert->encoded = tor_malloc_zero(1);
  365. tor_x509_cert_free(cert);
  366. }
  367. #endif /* !defined(OPENSSL_OPAQUE) */
  368. #ifndef OPENSSL_OPAQUE
  369. /*
  370. * Use only for the matching fake_x509_free() call
  371. */
  372. static X509 *
  373. fake_x509_malloc(void)
  374. {
  375. return tor_malloc_zero(sizeof(X509));
  376. }
  377. static void
  378. fake_x509_free(X509 *cert)
  379. {
  380. if (cert) {
  381. if (cert->cert_info) {
  382. if (cert->cert_info->key) {
  383. if (cert->cert_info->key->pkey) {
  384. tor_free(cert->cert_info->key->pkey);
  385. }
  386. tor_free(cert->cert_info->key);
  387. }
  388. tor_free(cert->cert_info);
  389. }
  390. tor_free(cert);
  391. }
  392. }
  393. #endif
  394. static tor_x509_cert_t *fixed_x509_cert = NULL;
  395. static tor_x509_cert_t *
  396. get_peer_cert_mock_return_fixed(tor_tls_t *tls)
  397. {
  398. (void)tls;
  399. if (fixed_x509_cert)
  400. return tor_x509_cert_dup(fixed_x509_cert);
  401. else
  402. return NULL;
  403. }
  404. static void
  405. test_tortls_cert_matches_key(void *ignored)
  406. {
  407. (void)ignored;
  408. X509 *cert1 = NULL, *cert2 = NULL, *cert3 = NULL, *cert4 = NULL;
  409. tor_x509_cert_t *c1 = NULL, *c2 = NULL, *c3 = NULL, *c4 = NULL;
  410. crypto_pk_t *k1 = NULL, *k2 = NULL, *k3 = NULL;
  411. k1 = pk_generate(1);
  412. k2 = pk_generate(2);
  413. k3 = pk_generate(3);
  414. cert1 = tor_tls_create_certificate(k1, k2, "A", "B", 1000);
  415. cert2 = tor_tls_create_certificate(k1, k3, "C", "D", 1000);
  416. cert3 = tor_tls_create_certificate(k2, k3, "C", "D", 1000);
  417. cert4 = tor_tls_create_certificate(k3, k2, "E", "F", 1000);
  418. tt_assert(cert1 && cert2 && cert3 && cert4);
  419. c1 = tor_x509_cert_new(cert1); cert1 = NULL;
  420. c2 = tor_x509_cert_new(cert2); cert2 = NULL;
  421. c3 = tor_x509_cert_new(cert3); cert3 = NULL;
  422. c4 = tor_x509_cert_new(cert4); cert4 = NULL;
  423. tt_assert(c1 && c2 && c3 && c4);
  424. MOCK(tor_tls_get_peer_cert, get_peer_cert_mock_return_fixed);
  425. fixed_x509_cert = NULL;
  426. /* If the peer has no certificate, it shouldn't match anything. */
  427. tt_assert(! tor_tls_cert_matches_key(NULL, c1));
  428. tt_assert(! tor_tls_cert_matches_key(NULL, c2));
  429. tt_assert(! tor_tls_cert_matches_key(NULL, c3));
  430. tt_assert(! tor_tls_cert_matches_key(NULL, c4));
  431. fixed_x509_cert = c1;
  432. /* If the peer has a certificate, it should match every cert with the same
  433. * subject key. */
  434. tt_assert(tor_tls_cert_matches_key(NULL, c1));
  435. tt_assert(tor_tls_cert_matches_key(NULL, c2));
  436. tt_assert(! tor_tls_cert_matches_key(NULL, c3));
  437. tt_assert(! tor_tls_cert_matches_key(NULL, c4));
  438. done:
  439. tor_x509_cert_free(c1);
  440. tor_x509_cert_free(c2);
  441. tor_x509_cert_free(c3);
  442. tor_x509_cert_free(c4);
  443. if (cert1) X509_free(cert1);
  444. if (cert2) X509_free(cert2);
  445. if (cert3) X509_free(cert3);
  446. if (cert4) X509_free(cert4);
  447. crypto_pk_free(k1);
  448. crypto_pk_free(k2);
  449. crypto_pk_free(k3);
  450. UNMOCK(tor_tls_get_peer_cert);
  451. }
  452. #ifndef OPENSSL_OPAQUE
  453. static void
  454. test_tortls_cert_get_key(void *ignored)
  455. {
  456. (void)ignored;
  457. tor_x509_cert_t *cert = NULL;
  458. crypto_pk_t *res = NULL;
  459. cert = tor_malloc_zero(sizeof(tor_x509_cert_t));
  460. X509 *key = NULL;
  461. key = fake_x509_malloc();
  462. key->references = 1;
  463. res = tor_tls_cert_get_key(cert);
  464. tt_assert(!res);
  465. cert->cert = key;
  466. key->cert_info = tor_malloc_zero(sizeof(X509_CINF));
  467. key->cert_info->key = tor_malloc_zero(sizeof(X509_PUBKEY));
  468. key->cert_info->key->pkey = tor_malloc_zero(sizeof(EVP_PKEY));
  469. key->cert_info->key->pkey->references = 1;
  470. key->cert_info->key->pkey->type = 2;
  471. res = tor_tls_cert_get_key(cert);
  472. tt_assert(!res);
  473. done:
  474. fake_x509_free(key);
  475. tor_free(cert);
  476. crypto_pk_free(res);
  477. }
  478. #endif /* !defined(OPENSSL_OPAQUE) */
  479. static void
  480. test_tortls_get_my_client_auth_key(void *ignored)
  481. {
  482. (void)ignored;
  483. crypto_pk_t *ret;
  484. crypto_pk_t *expected;
  485. tor_tls_context_t *ctx;
  486. RSA *k = RSA_new();
  487. ctx = tor_malloc_zero(sizeof(tor_tls_context_t));
  488. expected = crypto_new_pk_from_openssl_rsa_(k);
  489. ctx->auth_key = expected;
  490. client_tls_context = NULL;
  491. ret = tor_tls_get_my_client_auth_key();
  492. tt_assert(!ret);
  493. client_tls_context = ctx;
  494. ret = tor_tls_get_my_client_auth_key();
  495. tt_assert(ret == expected);
  496. done:
  497. crypto_pk_free(expected);
  498. tor_free(ctx);
  499. }
  500. #ifndef HAVE_SSL_GET_CLIENT_CIPHERS
  501. static SSL_CIPHER *
  502. get_cipher_by_name(const char *name)
  503. {
  504. int i;
  505. const SSL_METHOD *method = SSLv23_method();
  506. int num = method->num_ciphers();
  507. for (i = 0; i < num; ++i) {
  508. const SSL_CIPHER *cipher = method->get_cipher(i);
  509. const char *ciphername = SSL_CIPHER_get_name(cipher);
  510. if (!strcmp(ciphername, name)) {
  511. return (SSL_CIPHER *)cipher;
  512. }
  513. }
  514. return NULL;
  515. }
  516. #endif /* !defined(HAVE_SSL_GET_CLIENT_CIPHERS) */
  517. #ifndef OPENSSL_OPAQUE
  518. static void
  519. test_tortls_get_ciphersuite_name(void *ignored)
  520. {
  521. (void)ignored;
  522. const char *ret;
  523. tor_tls_t *ctx;
  524. ctx = tor_malloc_zero(sizeof(tor_tls_t));
  525. ctx->ssl = tor_malloc_zero(sizeof(SSL));
  526. ret = tor_tls_get_ciphersuite_name(ctx);
  527. tt_str_op(ret, OP_EQ, "(NONE)");
  528. done:
  529. tor_free(ctx->ssl);
  530. tor_free(ctx);
  531. }
  532. static SSL_CIPHER *
  533. get_cipher_by_id(uint16_t id)
  534. {
  535. int i;
  536. const SSL_METHOD *method = SSLv23_method();
  537. int num = method->num_ciphers();
  538. for (i = 0; i < num; ++i) {
  539. const SSL_CIPHER *cipher = method->get_cipher(i);
  540. if (id == (SSL_CIPHER_get_id(cipher) & 0xffff)) {
  541. return (SSL_CIPHER *)cipher;
  542. }
  543. }
  544. return NULL;
  545. }
  546. static void
  547. test_tortls_classify_client_ciphers(void *ignored)
  548. {
  549. (void)ignored;
  550. int i;
  551. int ret;
  552. SSL_CTX *ctx;
  553. SSL *ssl;
  554. tor_tls_t *tls;
  555. STACK_OF(SSL_CIPHER) *ciphers;
  556. SSL_CIPHER *tmp_cipher;
  557. library_init();
  558. tor_tls_allocate_tor_tls_object_ex_data_index();
  559. tls = tor_malloc_zero(sizeof(tor_tls_t));
  560. tls->magic = TOR_TLS_MAGIC;
  561. ctx = SSL_CTX_new(TLSv1_method());
  562. ssl = SSL_new(ctx);
  563. tls->ssl = ssl;
  564. ciphers = sk_SSL_CIPHER_new_null();
  565. ret = tor_tls_classify_client_ciphers(ssl, NULL);
  566. tt_int_op(ret, OP_EQ, -1);
  567. SSL_set_ex_data(ssl, tor_tls_object_ex_data_index, tls);
  568. tls->client_cipher_list_type = 42;
  569. ret = tor_tls_classify_client_ciphers(ssl, NULL);
  570. tt_int_op(ret, OP_EQ, 42);
  571. tls->client_cipher_list_type = 0;
  572. ret = tor_tls_classify_client_ciphers(ssl, ciphers);
  573. tt_int_op(ret, OP_EQ, 1);
  574. tt_int_op(tls->client_cipher_list_type, OP_EQ, 1);
  575. tls->client_cipher_list_type = 0;
  576. ret = tor_tls_classify_client_ciphers(ssl, SSL_get_ciphers(ssl));
  577. tt_int_op(ret, OP_EQ, 3);
  578. tt_int_op(tls->client_cipher_list_type, OP_EQ, 3);
  579. SSL_CIPHER *one = get_cipher_by_name(TLS1_TXT_DHE_RSA_WITH_AES_128_SHA),
  580. *two = get_cipher_by_name(TLS1_TXT_DHE_RSA_WITH_AES_256_SHA),
  581. *three = get_cipher_by_name(SSL3_TXT_EDH_RSA_DES_192_CBC3_SHA),
  582. *four = NULL;
  583. sk_SSL_CIPHER_push(ciphers, one);
  584. sk_SSL_CIPHER_push(ciphers, two);
  585. sk_SSL_CIPHER_push(ciphers, three);
  586. sk_SSL_CIPHER_push(ciphers, four);
  587. tls->client_cipher_list_type = 0;
  588. ret = tor_tls_classify_client_ciphers(ssl, ciphers);
  589. tt_int_op(ret, OP_EQ, 1);
  590. tt_int_op(tls->client_cipher_list_type, OP_EQ, 1);
  591. sk_SSL_CIPHER_zero(ciphers);
  592. one = get_cipher_by_name("ECDHE-RSA-AES256-GCM-SHA384");
  593. tt_assert(one);
  594. one->id = 0x00ff;
  595. two = get_cipher_by_name("ECDHE-RSA-AES128-GCM-SHA256");
  596. tt_assert(two);
  597. two->id = 0x0000;
  598. sk_SSL_CIPHER_push(ciphers, one);
  599. tls->client_cipher_list_type = 0;
  600. ret = tor_tls_classify_client_ciphers(ssl, ciphers);
  601. tt_int_op(ret, OP_EQ, 3);
  602. tt_int_op(tls->client_cipher_list_type, OP_EQ, 3);
  603. sk_SSL_CIPHER_push(ciphers, two);
  604. tls->client_cipher_list_type = 0;
  605. ret = tor_tls_classify_client_ciphers(ssl, ciphers);
  606. tt_int_op(ret, OP_EQ, 3);
  607. tt_int_op(tls->client_cipher_list_type, OP_EQ, 3);
  608. one->id = 0xC00A;
  609. tls->client_cipher_list_type = 0;
  610. ret = tor_tls_classify_client_ciphers(ssl, ciphers);
  611. tt_int_op(ret, OP_EQ, 3);
  612. tt_int_op(tls->client_cipher_list_type, OP_EQ, 3);
  613. sk_SSL_CIPHER_zero(ciphers);
  614. for (i=0; v2_cipher_list[i]; i++) {
  615. tmp_cipher = get_cipher_by_id(v2_cipher_list[i]);
  616. tt_assert(tmp_cipher);
  617. sk_SSL_CIPHER_push(ciphers, tmp_cipher);
  618. }
  619. tls->client_cipher_list_type = 0;
  620. ret = tor_tls_classify_client_ciphers(ssl, ciphers);
  621. tt_int_op(ret, OP_EQ, 2);
  622. tt_int_op(tls->client_cipher_list_type, OP_EQ, 2);
  623. done:
  624. sk_SSL_CIPHER_free(ciphers);
  625. SSL_free(tls->ssl);
  626. tor_free(tls);
  627. SSL_CTX_free(ctx);
  628. }
  629. #endif /* !defined(OPENSSL_OPAQUE) */
  630. static void
  631. test_tortls_client_is_using_v2_ciphers(void *ignored)
  632. {
  633. (void)ignored;
  634. #ifdef HAVE_SSL_GET_CLIENT_CIPHERS
  635. tt_skip();
  636. done:
  637. (void)1;
  638. #else
  639. int ret;
  640. SSL_CTX *ctx;
  641. SSL *ssl;
  642. SSL_SESSION *sess;
  643. STACK_OF(SSL_CIPHER) *ciphers;
  644. library_init();
  645. ctx = SSL_CTX_new(TLSv1_method());
  646. ssl = SSL_new(ctx);
  647. sess = SSL_SESSION_new();
  648. ret = tor_tls_client_is_using_v2_ciphers(ssl);
  649. tt_int_op(ret, OP_EQ, -1);
  650. ssl->session = sess;
  651. ret = tor_tls_client_is_using_v2_ciphers(ssl);
  652. tt_int_op(ret, OP_EQ, 0);
  653. ciphers = sk_SSL_CIPHER_new_null();
  654. SSL_CIPHER *one = get_cipher_by_name("ECDHE-RSA-AES256-GCM-SHA384");
  655. tt_assert(one);
  656. one->id = 0x00ff;
  657. sk_SSL_CIPHER_push(ciphers, one);
  658. sess->ciphers = ciphers;
  659. ret = tor_tls_client_is_using_v2_ciphers(ssl);
  660. tt_int_op(ret, OP_EQ, 1);
  661. done:
  662. SSL_free(ssl);
  663. SSL_CTX_free(ctx);
  664. #endif /* defined(HAVE_SSL_GET_CLIENT_CIPHERS) */
  665. }
  666. #ifndef OPENSSL_OPAQUE
  667. static int fixed_ssl_pending_result = 0;
  668. static int
  669. fixed_ssl_pending(const SSL *ignored)
  670. {
  671. (void)ignored;
  672. return fixed_ssl_pending_result;
  673. }
  674. static void
  675. test_tortls_get_pending_bytes(void *ignored)
  676. {
  677. (void)ignored;
  678. int ret;
  679. tor_tls_t *tls;
  680. SSL_METHOD *method;
  681. tls = tor_malloc_zero(sizeof(tor_tls_t));
  682. tls->ssl = tor_malloc_zero(sizeof(SSL));
  683. method = tor_malloc_zero(sizeof(SSL_METHOD));
  684. method->ssl_pending = fixed_ssl_pending;
  685. tls->ssl->method = method;
  686. fixed_ssl_pending_result = 42;
  687. ret = tor_tls_get_pending_bytes(tls);
  688. tt_int_op(ret, OP_EQ, 42);
  689. done:
  690. tor_free(method);
  691. tor_free(tls->ssl);
  692. tor_free(tls);
  693. }
  694. #endif /* !defined(OPENSSL_OPAQUE) */
  695. #ifndef OPENSSL_OPAQUE
  696. static void
  697. test_tortls_SSL_SESSION_get_master_key(void *ignored)
  698. {
  699. (void)ignored;
  700. size_t ret;
  701. tor_tls_t *tls;
  702. uint8_t *out;
  703. out = tor_malloc_zero(1);
  704. tls = tor_malloc_zero(sizeof(tor_tls_t));
  705. tls->ssl = tor_malloc_zero(sizeof(SSL));
  706. tls->ssl->session = tor_malloc_zero(sizeof(SSL_SESSION));
  707. tls->ssl->session->master_key_length = 1;
  708. #ifndef HAVE_SSL_SESSION_GET_MASTER_KEY
  709. tls->ssl->session->master_key[0] = 43;
  710. ret = SSL_SESSION_get_master_key(tls->ssl->session, out, 0);
  711. tt_int_op(ret, OP_EQ, 1);
  712. tt_int_op(out[0], OP_EQ, 0);
  713. ret = SSL_SESSION_get_master_key(tls->ssl->session, out, 1);
  714. tt_int_op(ret, OP_EQ, 1);
  715. tt_int_op(out[0], OP_EQ, 43);
  716. done:
  717. #endif /* !defined(HAVE_SSL_SESSION_GET_MASTER_KEY) */
  718. tor_free(tls->ssl->session);
  719. tor_free(tls->ssl);
  720. tor_free(tls);
  721. tor_free(out);
  722. }
  723. #endif /* !defined(OPENSSL_OPAQUE) */
  724. #ifndef OPENSSL_OPAQUE
  725. static void
  726. test_tortls_get_tlssecrets(void *ignored)
  727. {
  728. (void)ignored;
  729. int ret;
  730. uint8_t *secret_out = tor_malloc_zero(DIGEST256_LEN);
  731. tor_tls_t *tls;
  732. tls = tor_malloc_zero(sizeof(tor_tls_t));
  733. tls->ssl = tor_malloc_zero(sizeof(SSL));
  734. tls->ssl->session = tor_malloc_zero(sizeof(SSL_SESSION));
  735. tls->ssl->session->master_key_length = 1;
  736. tls->ssl->s3 = tor_malloc_zero(sizeof(SSL3_STATE));
  737. ret = tor_tls_get_tlssecrets(tls, secret_out);
  738. tt_int_op(ret, OP_EQ, 0);
  739. done:
  740. tor_free(secret_out);
  741. tor_free(tls->ssl->s3);
  742. tor_free(tls->ssl->session);
  743. tor_free(tls->ssl);
  744. tor_free(tls);
  745. }
  746. #endif /* !defined(OPENSSL_OPAQUE) */
  747. #ifndef OPENSSL_OPAQUE
  748. static void
  749. test_tortls_get_buffer_sizes(void *ignored)
  750. {
  751. (void)ignored;
  752. int ret;
  753. tor_tls_t *tls;
  754. size_t rbuf_c=-1, rbuf_b=-1, wbuf_c=-1, wbuf_b=-1;
  755. tls = tor_malloc_zero(sizeof(tor_tls_t));
  756. tls->ssl = tor_malloc_zero(sizeof(SSL));
  757. tls->ssl->s3 = tor_malloc_zero(sizeof(SSL3_STATE));
  758. tls->ssl->s3->rbuf.buf = NULL;
  759. tls->ssl->s3->rbuf.len = 1;
  760. tls->ssl->s3->rbuf.offset = 0;
  761. tls->ssl->s3->rbuf.left = 42;
  762. tls->ssl->s3->wbuf.buf = NULL;
  763. tls->ssl->s3->wbuf.len = 2;
  764. tls->ssl->s3->wbuf.offset = 0;
  765. tls->ssl->s3->wbuf.left = 43;
  766. ret = tor_tls_get_buffer_sizes(tls, &rbuf_c, &rbuf_b, &wbuf_c, &wbuf_b);
  767. #if OPENSSL_VERSION_NUMBER >= OPENSSL_V_SERIES(1,1,0)
  768. tt_int_op(ret, OP_EQ, -1);
  769. #else
  770. tt_int_op(ret, OP_EQ, 0);
  771. tt_int_op(rbuf_c, OP_EQ, 0);
  772. tt_int_op(wbuf_c, OP_EQ, 0);
  773. tt_int_op(rbuf_b, OP_EQ, 42);
  774. tt_int_op(wbuf_b, OP_EQ, 43);
  775. tls->ssl->s3->rbuf.buf = tor_malloc_zero(1);
  776. tls->ssl->s3->wbuf.buf = tor_malloc_zero(1);
  777. ret = tor_tls_get_buffer_sizes(tls, &rbuf_c, &rbuf_b, &wbuf_c, &wbuf_b);
  778. tt_int_op(ret, OP_EQ, 0);
  779. tt_int_op(rbuf_c, OP_EQ, 1);
  780. tt_int_op(wbuf_c, OP_EQ, 2);
  781. #endif /* OPENSSL_VERSION_NUMBER >= OPENSSL_V_SERIES(1,1,0) */
  782. done:
  783. tor_free(tls->ssl->s3->rbuf.buf);
  784. tor_free(tls->ssl->s3->wbuf.buf);
  785. tor_free(tls->ssl->s3);
  786. tor_free(tls->ssl);
  787. tor_free(tls);
  788. }
  789. #endif /* !defined(OPENSSL_OPAQUE) */
  790. #ifndef OPENSSL_OPAQUE
  791. typedef struct cert_pkey_st_local
  792. {
  793. X509 *x509;
  794. EVP_PKEY *privatekey;
  795. const EVP_MD *digest;
  796. } CERT_PKEY_local;
  797. typedef struct sess_cert_st_local
  798. {
  799. STACK_OF(X509) *cert_chain;
  800. int peer_cert_type;
  801. CERT_PKEY_local *peer_key;
  802. CERT_PKEY_local peer_pkeys[8];
  803. int references;
  804. } SESS_CERT_local;
  805. static void
  806. test_tortls_try_to_extract_certs_from_tls(void *ignored)
  807. {
  808. (void)ignored;
  809. tor_tls_t *tls;
  810. X509 *cert = NULL, *id_cert = NULL, *c1 = NULL, *c2 = NULL;
  811. SESS_CERT_local *sess = NULL;
  812. c1 = read_cert_from(validCertString);
  813. c2 = read_cert_from(caCertString);
  814. tls = tor_malloc_zero(sizeof(tor_tls_t));
  815. tls->ssl = tor_malloc_zero(sizeof(SSL));
  816. tls->ssl->session = tor_malloc_zero(sizeof(SSL_SESSION));
  817. sess = tor_malloc_zero(sizeof(SESS_CERT_local));
  818. tls->ssl->session->sess_cert = (void *)sess;
  819. try_to_extract_certs_from_tls(LOG_WARN, tls, &cert, &id_cert);
  820. tt_assert(!cert);
  821. tt_assert(!id_cert);
  822. tls->ssl->session->peer = c1;
  823. try_to_extract_certs_from_tls(LOG_WARN, tls, &cert, &id_cert);
  824. tt_assert(cert == c1);
  825. tt_assert(!id_cert);
  826. X509_free(cert); /* decrease refcnt */
  827. sess->cert_chain = sk_X509_new_null();
  828. try_to_extract_certs_from_tls(LOG_WARN, tls, &cert, &id_cert);
  829. tt_assert(cert == c1);
  830. tt_assert(!id_cert);
  831. X509_free(cert); /* decrease refcnt */
  832. sk_X509_push(sess->cert_chain, c1);
  833. sk_X509_push(sess->cert_chain, c2);
  834. try_to_extract_certs_from_tls(LOG_WARN, tls, &cert, &id_cert);
  835. tt_assert(cert == c1);
  836. tt_assert(id_cert);
  837. X509_free(cert); /* decrease refcnt */
  838. done:
  839. sk_X509_free(sess->cert_chain);
  840. tor_free(sess);
  841. tor_free(tls->ssl->session);
  842. tor_free(tls->ssl);
  843. tor_free(tls);
  844. X509_free(c1);
  845. X509_free(c2);
  846. }
  847. #endif /* !defined(OPENSSL_OPAQUE) */
  848. #ifndef OPENSSL_OPAQUE
  849. static void
  850. test_tortls_get_peer_cert(void *ignored)
  851. {
  852. (void)ignored;
  853. tor_x509_cert_t *ret;
  854. tor_tls_t *tls;
  855. X509 *cert = NULL;
  856. cert = read_cert_from(validCertString);
  857. tls = tor_malloc_zero(sizeof(tor_tls_t));
  858. tls->ssl = tor_malloc_zero(sizeof(SSL));
  859. tls->ssl->session = tor_malloc_zero(sizeof(SSL_SESSION));
  860. ret = tor_tls_get_peer_cert(tls);
  861. tt_assert(!ret);
  862. tls->ssl->session->peer = cert;
  863. ret = tor_tls_get_peer_cert(tls);
  864. tt_assert(ret);
  865. tt_assert(ret->cert == cert);
  866. done:
  867. tor_x509_cert_free(ret);
  868. tor_free(tls->ssl->session);
  869. tor_free(tls->ssl);
  870. tor_free(tls);
  871. X509_free(cert);
  872. }
  873. #endif /* !defined(OPENSSL_OPAQUE) */
  874. #ifndef OPENSSL_OPAQUE
  875. static void
  876. test_tortls_peer_has_cert(void *ignored)
  877. {
  878. (void)ignored;
  879. int ret;
  880. tor_tls_t *tls;
  881. X509 *cert = NULL;
  882. cert = read_cert_from(validCertString);
  883. tls = tor_malloc_zero(sizeof(tor_tls_t));
  884. tls->ssl = tor_malloc_zero(sizeof(SSL));
  885. tls->ssl->session = tor_malloc_zero(sizeof(SSL_SESSION));
  886. ret = tor_tls_peer_has_cert(tls);
  887. tt_assert(!ret);
  888. tls->ssl->session->peer = cert;
  889. ret = tor_tls_peer_has_cert(tls);
  890. tt_assert(ret);
  891. done:
  892. tor_free(tls->ssl->session);
  893. tor_free(tls->ssl);
  894. tor_free(tls);
  895. X509_free(cert);
  896. }
  897. #endif /* !defined(OPENSSL_OPAQUE) */
  898. static void
  899. test_tortls_get_write_overhead_ratio(void *ignored)
  900. {
  901. (void)ignored;
  902. double ret;
  903. total_bytes_written_over_tls = 0;
  904. ret = tls_get_write_overhead_ratio();
  905. tt_double_op(fabs(ret - 1.0), OP_LT, 1E-12);
  906. total_bytes_written_by_tls = 10;
  907. total_bytes_written_over_tls = 1;
  908. ret = tls_get_write_overhead_ratio();
  909. tt_double_op(fabs(ret - 10.0), OP_LT, 1E-12);
  910. total_bytes_written_by_tls = 10;
  911. total_bytes_written_over_tls = 2;
  912. ret = tls_get_write_overhead_ratio();
  913. tt_double_op(fabs(ret - 5.0), OP_LT, 1E-12);
  914. done:
  915. (void)0;
  916. }
  917. static void
  918. test_tortls_is_server(void *ignored)
  919. {
  920. (void)ignored;
  921. tor_tls_t *tls;
  922. int ret;
  923. tls = tor_malloc_zero(sizeof(tor_tls_t));
  924. tls->isServer = 1;
  925. ret = tor_tls_is_server(tls);
  926. tt_int_op(ret, OP_EQ, 1);
  927. done:
  928. tor_free(tls);
  929. }
  930. #ifndef OPENSSL_OPAQUE
  931. static void
  932. test_tortls_session_secret_cb(void *ignored)
  933. {
  934. (void)ignored;
  935. tor_tls_t *tls;
  936. SSL_CTX *ctx;
  937. STACK_OF(SSL_CIPHER) *ciphers = NULL;
  938. SSL_CIPHER *one;
  939. library_init();
  940. tor_tls_allocate_tor_tls_object_ex_data_index();
  941. tls = tor_malloc_zero(sizeof(tor_tls_t));
  942. tls->magic = TOR_TLS_MAGIC;
  943. ctx = SSL_CTX_new(TLSv1_method());
  944. tls->ssl = SSL_new(ctx);
  945. SSL_set_ex_data(tls->ssl, tor_tls_object_ex_data_index, tls);
  946. SSL_set_session_secret_cb(tls->ssl, tor_tls_session_secret_cb, NULL);
  947. tor_tls_session_secret_cb(tls->ssl, NULL, NULL, NULL, NULL, NULL);
  948. tt_assert(!tls->ssl->tls_session_secret_cb);
  949. one = get_cipher_by_name("ECDHE-RSA-AES256-GCM-SHA384");
  950. one->id = 0x00ff;
  951. ciphers = sk_SSL_CIPHER_new_null();
  952. sk_SSL_CIPHER_push(ciphers, one);
  953. tls->client_cipher_list_type = 0;
  954. tor_tls_session_secret_cb(tls->ssl, NULL, NULL, ciphers, NULL, NULL);
  955. tt_assert(!tls->ssl->tls_session_secret_cb);
  956. done:
  957. sk_SSL_CIPHER_free(ciphers);
  958. SSL_free(tls->ssl);
  959. SSL_CTX_free(ctx);
  960. tor_free(tls);
  961. }
  962. #endif /* !defined(OPENSSL_OPAQUE) */
  963. #ifndef OPENSSL_OPAQUE
  964. /* TODO: It seems block_renegotiation and unblock_renegotiation and
  965. * using different blags. This might not be correct */
  966. static void
  967. test_tortls_block_renegotiation(void *ignored)
  968. {
  969. (void)ignored;
  970. tor_tls_t *tls;
  971. tls = tor_malloc_zero(sizeof(tor_tls_t));
  972. tls->ssl = tor_malloc_zero(sizeof(SSL));
  973. tls->ssl->s3 = tor_malloc_zero(sizeof(SSL3_STATE));
  974. #ifndef SUPPORT_UNSAFE_RENEGOTIATION_FLAG
  975. #define SSL3_FLAGS_ALLOW_UNSAFE_LEGACY_RENEGOTIATION 0
  976. #endif
  977. tls->ssl->s3->flags = SSL3_FLAGS_ALLOW_UNSAFE_LEGACY_RENEGOTIATION;
  978. tor_tls_block_renegotiation(tls);
  979. #ifndef OPENSSL_1_1_API
  980. tt_assert(!(tls->ssl->s3->flags &
  981. SSL3_FLAGS_ALLOW_UNSAFE_LEGACY_RENEGOTIATION));
  982. #endif
  983. done:
  984. tor_free(tls->ssl->s3);
  985. tor_free(tls->ssl);
  986. tor_free(tls);
  987. }
  988. static void
  989. test_tortls_unblock_renegotiation(void *ignored)
  990. {
  991. (void)ignored;
  992. tor_tls_t *tls;
  993. tls = tor_malloc_zero(sizeof(tor_tls_t));
  994. tls->ssl = tor_malloc_zero(sizeof(SSL));
  995. tor_tls_unblock_renegotiation(tls);
  996. tt_uint_op(SSL_get_options(tls->ssl) &
  997. SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION, OP_EQ,
  998. SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION);
  999. done:
  1000. tor_free(tls->ssl);
  1001. tor_free(tls);
  1002. }
  1003. #endif /* !defined(OPENSSL_OPAQUE) */
  1004. #ifndef OPENSSL_OPAQUE
  1005. static void
  1006. test_tortls_assert_renegotiation_unblocked(void *ignored)
  1007. {
  1008. (void)ignored;
  1009. tor_tls_t *tls;
  1010. tls = tor_malloc_zero(sizeof(tor_tls_t));
  1011. tls->ssl = tor_malloc_zero(sizeof(SSL));
  1012. tor_tls_unblock_renegotiation(tls);
  1013. tor_tls_assert_renegotiation_unblocked(tls);
  1014. /* No assertion here - this test will fail if tor_assert is turned on
  1015. * and things are bad. */
  1016. tor_free(tls->ssl);
  1017. tor_free(tls);
  1018. }
  1019. #endif /* !defined(OPENSSL_OPAQUE) */
  1020. static void
  1021. test_tortls_set_logged_address(void *ignored)
  1022. {
  1023. (void)ignored;
  1024. tor_tls_t *tls;
  1025. tls = tor_malloc_zero(sizeof(tor_tls_t));
  1026. tor_tls_set_logged_address(tls, "foo bar");
  1027. tt_str_op(tls->address, OP_EQ, "foo bar");
  1028. tor_tls_set_logged_address(tls, "foo bar 2");
  1029. tt_str_op(tls->address, OP_EQ, "foo bar 2");
  1030. done:
  1031. tor_free(tls->address);
  1032. tor_free(tls);
  1033. }
  1034. #ifndef OPENSSL_OPAQUE
  1035. static void
  1036. example_cb(tor_tls_t *t, void *arg)
  1037. {
  1038. (void)t;
  1039. (void)arg;
  1040. }
  1041. static void
  1042. test_tortls_set_renegotiate_callback(void *ignored)
  1043. {
  1044. (void)ignored;
  1045. tor_tls_t *tls;
  1046. const char *arg = "hello";
  1047. tls = tor_malloc_zero(sizeof(tor_tls_t));
  1048. tls->ssl = tor_malloc_zero(sizeof(SSL));
  1049. tor_tls_set_renegotiate_callback(tls, example_cb, (void*)arg);
  1050. tt_assert(tls->negotiated_callback == example_cb);
  1051. tt_assert(tls->callback_arg == arg);
  1052. tt_assert(!tls->got_renegotiate);
  1053. /* Assumes V2_HANDSHAKE_SERVER */
  1054. tt_assert(tls->ssl->info_callback == tor_tls_server_info_callback);
  1055. tor_tls_set_renegotiate_callback(tls, NULL, (void*)arg);
  1056. tt_assert(tls->ssl->info_callback == tor_tls_debug_state_callback);
  1057. done:
  1058. tor_free(tls->ssl);
  1059. tor_free(tls);
  1060. }
  1061. #endif /* !defined(OPENSSL_OPAQUE) */
  1062. #ifndef OPENSSL_OPAQUE
  1063. static SSL_CIPHER *fixed_cipher1 = NULL;
  1064. static SSL_CIPHER *fixed_cipher2 = NULL;
  1065. static const SSL_CIPHER *
  1066. fake_get_cipher(unsigned ncipher)
  1067. {
  1068. switch (ncipher) {
  1069. case 1:
  1070. return fixed_cipher1;
  1071. case 2:
  1072. return fixed_cipher2;
  1073. default:
  1074. return NULL;
  1075. }
  1076. }
  1077. #endif /* !defined(OPENSSL_OPAQUE) */
  1078. #ifndef OPENSSL_OPAQUE
  1079. static void
  1080. test_tortls_find_cipher_by_id(void *ignored)
  1081. {
  1082. (void)ignored;
  1083. int ret;
  1084. SSL *ssl;
  1085. SSL_CTX *ctx;
  1086. const SSL_METHOD *m = TLSv1_method();
  1087. SSL_METHOD *empty_method = tor_malloc_zero(sizeof(SSL_METHOD));
  1088. fixed_cipher1 = tor_malloc_zero(sizeof(SSL_CIPHER));
  1089. fixed_cipher2 = tor_malloc_zero(sizeof(SSL_CIPHER));
  1090. fixed_cipher2->id = 0xC00A;
  1091. library_init();
  1092. ctx = SSL_CTX_new(m);
  1093. ssl = SSL_new(ctx);
  1094. ret = find_cipher_by_id(ssl, NULL, 0xC00A);
  1095. tt_int_op(ret, OP_EQ, 1);
  1096. ret = find_cipher_by_id(ssl, m, 0xC00A);
  1097. tt_int_op(ret, OP_EQ, 1);
  1098. ret = find_cipher_by_id(ssl, m, 0xFFFF);
  1099. tt_int_op(ret, OP_EQ, 0);
  1100. ret = find_cipher_by_id(ssl, empty_method, 0xC00A);
  1101. tt_int_op(ret, OP_EQ, 1);
  1102. ret = find_cipher_by_id(ssl, empty_method, 0xFFFF);
  1103. #ifdef HAVE_SSL_CIPHER_FIND
  1104. tt_int_op(ret, OP_EQ, 0);
  1105. #else
  1106. tt_int_op(ret, OP_EQ, 1);
  1107. #endif
  1108. empty_method->get_cipher = fake_get_cipher;
  1109. ret = find_cipher_by_id(ssl, empty_method, 0xC00A);
  1110. tt_int_op(ret, OP_EQ, 1);
  1111. empty_method->get_cipher = m->get_cipher;
  1112. empty_method->num_ciphers = m->num_ciphers;
  1113. ret = find_cipher_by_id(ssl, empty_method, 0xC00A);
  1114. tt_int_op(ret, OP_EQ, 1);
  1115. empty_method->get_cipher = fake_get_cipher;
  1116. empty_method->num_ciphers = m->num_ciphers;
  1117. ret = find_cipher_by_id(ssl, empty_method, 0xC00A);
  1118. tt_int_op(ret, OP_EQ, 1);
  1119. empty_method->num_ciphers = fake_num_ciphers;
  1120. ret = find_cipher_by_id(ssl, empty_method, 0xC00A);
  1121. #ifdef HAVE_SSL_CIPHER_FIND
  1122. tt_int_op(ret, OP_EQ, 1);
  1123. #else
  1124. tt_int_op(ret, OP_EQ, 0);
  1125. #endif
  1126. done:
  1127. tor_free(empty_method);
  1128. SSL_free(ssl);
  1129. SSL_CTX_free(ctx);
  1130. tor_free(fixed_cipher1);
  1131. }
  1132. #endif /* !defined(OPENSSL_OPAQUE) */
  1133. #ifndef OPENSSL_OPAQUE
  1134. static void
  1135. test_tortls_debug_state_callback(void *ignored)
  1136. {
  1137. (void)ignored;
  1138. SSL *ssl;
  1139. char *buf = tor_malloc_zero(1000);
  1140. int n;
  1141. setup_capture_of_logs(LOG_DEBUG);
  1142. ssl = tor_malloc_zero(sizeof(SSL));
  1143. tor_tls_debug_state_callback(ssl, 32, 45);
  1144. n = tor_snprintf(buf, 1000, "SSL %p is now in state unknown"
  1145. " state [type=32,val=45].\n", ssl);
  1146. /* tor's snprintf returns -1 on error */
  1147. tt_int_op(n, OP_NE, -1);
  1148. expect_log_msg(buf);
  1149. done:
  1150. teardown_capture_of_logs();
  1151. tor_free(buf);
  1152. tor_free(ssl);
  1153. }
  1154. #endif /* !defined(OPENSSL_OPAQUE) */
  1155. #ifndef OPENSSL_OPAQUE
  1156. static void
  1157. test_tortls_server_info_callback(void *ignored)
  1158. {
  1159. (void)ignored;
  1160. tor_tls_t *tls;
  1161. SSL_CTX *ctx;
  1162. SSL *ssl;
  1163. library_init();
  1164. ctx = SSL_CTX_new(TLSv1_method());
  1165. ssl = SSL_new(ctx);
  1166. tor_tls_allocate_tor_tls_object_ex_data_index();
  1167. tls = tor_malloc_zero(sizeof(tor_tls_t));
  1168. tls->magic = TOR_TLS_MAGIC;
  1169. tls->ssl = ssl;
  1170. setup_full_capture_of_logs(LOG_WARN);
  1171. SSL_set_state(ssl, SSL3_ST_SW_SRVR_HELLO_A);
  1172. mock_clean_saved_logs();
  1173. tor_tls_server_info_callback(ssl, SSL_CB_ACCEPT_LOOP, 0);
  1174. expect_single_log_msg("Couldn't look up the tls for an SSL*. How odd!\n");
  1175. SSL_set_state(ssl, SSL3_ST_SW_SRVR_HELLO_B);
  1176. mock_clean_saved_logs();
  1177. tor_tls_server_info_callback(ssl, SSL_CB_ACCEPT_LOOP, 0);
  1178. expect_single_log_msg("Couldn't look up the tls for an SSL*. How odd!\n");
  1179. SSL_set_state(ssl, 99);
  1180. mock_clean_saved_logs();
  1181. tor_tls_server_info_callback(ssl, SSL_CB_ACCEPT_LOOP, 0);
  1182. expect_no_log_entry();
  1183. teardown_capture_of_logs();
  1184. SSL_set_ex_data(tls->ssl, tor_tls_object_ex_data_index, tls);
  1185. SSL_set_state(ssl, SSL3_ST_SW_SRVR_HELLO_B);
  1186. tls->negotiated_callback = 0;
  1187. //tls->server_handshake_count = 120;
  1188. tor_tls_server_info_callback(ssl, SSL_CB_ACCEPT_LOOP, 0);
  1189. //tt_int_op(tls->server_handshake_count, OP_EQ, 121);
  1190. //tls->server_handshake_count = 127;
  1191. tls->negotiated_callback = (void *)1;
  1192. tor_tls_server_info_callback(ssl, SSL_CB_ACCEPT_LOOP, 0);
  1193. //tt_int_op(tls->server_handshake_count, OP_EQ, 127);
  1194. tt_int_op(tls->got_renegotiate, OP_EQ, 1);
  1195. tls->ssl->session = SSL_SESSION_new();
  1196. tls->wasV2Handshake = 0;
  1197. tor_tls_server_info_callback(ssl, SSL_CB_ACCEPT_LOOP, 0);
  1198. tt_int_op(tls->wasV2Handshake, OP_EQ, 0);
  1199. done:
  1200. teardown_capture_of_logs();
  1201. SSL_free(ssl);
  1202. SSL_CTX_free(ctx);
  1203. tor_free(tls);
  1204. }
  1205. #endif /* !defined(OPENSSL_OPAQUE) */
  1206. #ifndef OPENSSL_OPAQUE
  1207. static int fixed_ssl_read_result_index;
  1208. static int fixed_ssl_read_result[5];
  1209. static int
  1210. fixed_ssl_read(SSL *s, void *buf, int len)
  1211. {
  1212. (void)s;
  1213. (void)buf;
  1214. (void)len;
  1215. return fixed_ssl_read_result[fixed_ssl_read_result_index++];
  1216. }
  1217. static int
  1218. dummy_handshake_func(SSL *s)
  1219. {
  1220. (void)s;
  1221. return 1;
  1222. }
  1223. static int negotiated_callback_called;
  1224. static void
  1225. negotiated_callback_setter(tor_tls_t *t, void *arg)
  1226. {
  1227. (void)t;
  1228. (void)arg;
  1229. negotiated_callback_called++;
  1230. }
  1231. static void
  1232. test_tortls_read(void *ignored)
  1233. {
  1234. (void)ignored;
  1235. int ret;
  1236. tor_tls_t *tls;
  1237. char buf[100];
  1238. SSL_METHOD *method = give_me_a_test_method();
  1239. setup_capture_of_logs(LOG_WARN);
  1240. tls = tor_malloc_zero(sizeof(tor_tls_t));
  1241. tls->ssl = tor_malloc_zero(sizeof(SSL));
  1242. tls->state = TOR_TLS_ST_OPEN;
  1243. ret = tor_tls_read(tls, buf, 10);
  1244. tt_int_op(ret, OP_EQ, -9);
  1245. /* These tests assume that V2_HANDSHAKE_SERVER is set */
  1246. tls->ssl->handshake_func = dummy_handshake_func;
  1247. tls->ssl->method = method;
  1248. method->ssl_read = fixed_ssl_read;
  1249. fixed_ssl_read_result_index = 0;
  1250. fixed_ssl_read_result[0] = 42;
  1251. tls->state = TOR_TLS_ST_OPEN;
  1252. ERR_clear_error();
  1253. ret = tor_tls_read(tls, buf, 10);
  1254. tt_int_op(ret, OP_EQ, 42);
  1255. tls->state = TOR_TLS_ST_OPEN;
  1256. tls->got_renegotiate = 1;
  1257. fixed_ssl_read_result_index = 0;
  1258. ERR_clear_error();
  1259. ret = tor_tls_read(tls, buf, 10);
  1260. tt_int_op(tls->got_renegotiate, OP_EQ, 0);
  1261. tls->state = TOR_TLS_ST_OPEN;
  1262. tls->got_renegotiate = 1;
  1263. negotiated_callback_called = 0;
  1264. tls->negotiated_callback = negotiated_callback_setter;
  1265. fixed_ssl_read_result_index = 0;
  1266. ERR_clear_error();
  1267. ret = tor_tls_read(tls, buf, 10);
  1268. tt_int_op(negotiated_callback_called, OP_EQ, 1);
  1269. #ifndef LIBRESSL_VERSION_NUMBER
  1270. fixed_ssl_read_result_index = 0;
  1271. fixed_ssl_read_result[0] = 0;
  1272. tls->ssl->version = SSL2_VERSION;
  1273. ERR_clear_error();
  1274. ret = tor_tls_read(tls, buf, 10);
  1275. tt_int_op(ret, OP_EQ, TOR_TLS_CLOSE);
  1276. tt_int_op(tls->state, OP_EQ, TOR_TLS_ST_CLOSED);
  1277. #endif /* !defined(LIBRESSL_VERSION_NUMBER) */
  1278. // TODO: fill up
  1279. done:
  1280. teardown_capture_of_logs();
  1281. tor_free(tls->ssl);
  1282. tor_free(tls);
  1283. tor_free(method);
  1284. }
  1285. static int fixed_ssl_write_result;
  1286. static int
  1287. fixed_ssl_write(SSL *s, const void *buf, int len)
  1288. {
  1289. (void)s;
  1290. (void)buf;
  1291. (void)len;
  1292. return fixed_ssl_write_result;
  1293. }
  1294. static void
  1295. test_tortls_write(void *ignored)
  1296. {
  1297. (void)ignored;
  1298. int ret;
  1299. tor_tls_t *tls;
  1300. SSL_METHOD *method = give_me_a_test_method();
  1301. char buf[100];
  1302. setup_capture_of_logs(LOG_WARN);
  1303. tls = tor_malloc_zero(sizeof(tor_tls_t));
  1304. tls->ssl = tor_malloc_zero(sizeof(SSL));
  1305. tls->state = TOR_TLS_ST_OPEN;
  1306. ret = tor_tls_write(tls, buf, 0);
  1307. tt_int_op(ret, OP_EQ, 0);
  1308. ret = tor_tls_write(tls, buf, 10);
  1309. tt_int_op(ret, OP_EQ, -9);
  1310. tls->ssl->method = method;
  1311. tls->wantwrite_n = 1;
  1312. ret = tor_tls_write(tls, buf, 10);
  1313. tt_int_op(tls->wantwrite_n, OP_EQ, 0);
  1314. method->ssl_write = fixed_ssl_write;
  1315. tls->ssl->handshake_func = dummy_handshake_func;
  1316. fixed_ssl_write_result = 1;
  1317. ERR_clear_error();
  1318. ret = tor_tls_write(tls, buf, 10);
  1319. tt_int_op(ret, OP_EQ, 1);
  1320. fixed_ssl_write_result = -1;
  1321. ERR_clear_error();
  1322. tls->ssl->rwstate = SSL_READING;
  1323. SSL_set_bio(tls->ssl, BIO_new(BIO_s_mem()), NULL);
  1324. SSL_get_rbio(tls->ssl)->flags = BIO_FLAGS_READ;
  1325. ret = tor_tls_write(tls, buf, 10);
  1326. tt_int_op(ret, OP_EQ, TOR_TLS_WANTREAD);
  1327. ERR_clear_error();
  1328. tls->ssl->rwstate = SSL_READING;
  1329. SSL_set_bio(tls->ssl, BIO_new(BIO_s_mem()), NULL);
  1330. SSL_get_rbio(tls->ssl)->flags = BIO_FLAGS_WRITE;
  1331. ret = tor_tls_write(tls, buf, 10);
  1332. tt_int_op(ret, OP_EQ, TOR_TLS_WANTWRITE);
  1333. done:
  1334. teardown_capture_of_logs();
  1335. BIO_free(tls->ssl->rbio);
  1336. tor_free(tls->ssl);
  1337. tor_free(tls);
  1338. tor_free(method);
  1339. }
  1340. #endif /* !defined(OPENSSL_OPAQUE) */
  1341. #ifndef OPENSSL_OPAQUE
  1342. static int fixed_ssl_accept_result;
  1343. static int fixed_ssl_connect_result;
  1344. static int
  1345. setting_error_ssl_accept(SSL *ssl)
  1346. {
  1347. (void)ssl;
  1348. ERR_put_error(ERR_LIB_BN, 2, -1, "somewhere.c", 99);
  1349. ERR_put_error(ERR_LIB_SYS, 2, -1, "somewhere.c", 99);
  1350. return fixed_ssl_accept_result;
  1351. }
  1352. static int
  1353. setting_error_ssl_connect(SSL *ssl)
  1354. {
  1355. (void)ssl;
  1356. ERR_put_error(ERR_LIB_BN, 2, -1, "somewhere.c", 99);
  1357. ERR_put_error(ERR_LIB_SYS, 2, -1, "somewhere.c", 99);
  1358. return fixed_ssl_connect_result;
  1359. }
  1360. static int
  1361. fixed_ssl_accept(SSL *ssl)
  1362. {
  1363. (void) ssl;
  1364. return fixed_ssl_accept_result;
  1365. }
  1366. static void
  1367. test_tortls_handshake(void *ignored)
  1368. {
  1369. (void)ignored;
  1370. int ret;
  1371. tor_tls_t *tls;
  1372. SSL_CTX *ctx;
  1373. SSL_METHOD *method = give_me_a_test_method();
  1374. setup_capture_of_logs(LOG_INFO);
  1375. SSL_library_init();
  1376. SSL_load_error_strings();
  1377. ctx = SSL_CTX_new(TLSv1_method());
  1378. tls = tor_malloc_zero(sizeof(tor_tls_t));
  1379. tls->ssl = SSL_new(ctx);
  1380. tls->state = TOR_TLS_ST_HANDSHAKE;
  1381. ret = tor_tls_handshake(tls);
  1382. tt_int_op(ret, OP_EQ, -9);
  1383. tls->isServer = 1;
  1384. tls->state = TOR_TLS_ST_HANDSHAKE;
  1385. ret = tor_tls_handshake(tls);
  1386. tt_int_op(ret, OP_EQ, -9);
  1387. tls->ssl->method = method;
  1388. method->ssl_accept = fixed_ssl_accept;
  1389. fixed_ssl_accept_result = 2;
  1390. ERR_clear_error();
  1391. tls->state = TOR_TLS_ST_HANDSHAKE;
  1392. ret = tor_tls_handshake(tls);
  1393. tt_int_op(tls->state, OP_EQ, TOR_TLS_ST_OPEN);
  1394. method->ssl_accept = setting_error_ssl_accept;
  1395. fixed_ssl_accept_result = 1;
  1396. ERR_clear_error();
  1397. mock_clean_saved_logs();
  1398. tls->state = TOR_TLS_ST_HANDSHAKE;
  1399. ret = tor_tls_handshake(tls);
  1400. tt_int_op(ret, OP_EQ, TOR_TLS_ERROR_MISC);
  1401. expect_log_entry();
  1402. /* This fails on jessie. Investigate why! */
  1403. #if 0
  1404. expect_log_msg("TLS error while handshaking: (null) (in bignum routines:"
  1405. "(null):SSLv3 write client hello B)\n");
  1406. expect_log_msg("TLS error while handshaking: (null) (in system library:"
  1407. "connect:SSLv3 write client hello B)\n");
  1408. #endif /* 0 */
  1409. expect_log_severity(LOG_INFO);
  1410. tls->isServer = 0;
  1411. method->ssl_connect = setting_error_ssl_connect;
  1412. fixed_ssl_connect_result = 1;
  1413. ERR_clear_error();
  1414. mock_clean_saved_logs();
  1415. tls->state = TOR_TLS_ST_HANDSHAKE;
  1416. ret = tor_tls_handshake(tls);
  1417. tt_int_op(ret, OP_EQ, TOR_TLS_ERROR_MISC);
  1418. expect_log_entry();
  1419. #if 0
  1420. /* See above */
  1421. expect_log_msg("TLS error while handshaking: "
  1422. "(null) (in bignum routines:(null):SSLv3 write client hello B)\n");
  1423. expect_log_msg("TLS error while handshaking: "
  1424. "(null) (in system library:connect:SSLv3 write client hello B)\n");
  1425. #endif /* 0 */
  1426. expect_log_severity(LOG_WARN);
  1427. done:
  1428. teardown_capture_of_logs();
  1429. SSL_free(tls->ssl);
  1430. SSL_CTX_free(ctx);
  1431. tor_free(tls);
  1432. tor_free(method);
  1433. }
  1434. #endif /* !defined(OPENSSL_OPAQUE) */
  1435. #ifndef OPENSSL_OPAQUE
  1436. static void
  1437. test_tortls_finish_handshake(void *ignored)
  1438. {
  1439. (void)ignored;
  1440. int ret;
  1441. tor_tls_t *tls;
  1442. SSL_CTX *ctx;
  1443. SSL_METHOD *method = give_me_a_test_method();
  1444. SSL_library_init();
  1445. SSL_load_error_strings();
  1446. X509 *c1 = read_cert_from(validCertString);
  1447. SESS_CERT_local *sess = NULL;
  1448. ctx = SSL_CTX_new(method);
  1449. tls = tor_malloc_zero(sizeof(tor_tls_t));
  1450. tls->ssl = SSL_new(ctx);
  1451. tls->state = TOR_TLS_ST_OPEN;
  1452. ret = tor_tls_finish_handshake(tls);
  1453. tt_int_op(ret, OP_EQ, 0);
  1454. tls->isServer = 1;
  1455. tls->wasV2Handshake = 0;
  1456. setup_full_capture_of_logs(LOG_WARN);
  1457. ret = tor_tls_finish_handshake(tls);
  1458. tt_int_op(ret, OP_EQ, 0);
  1459. tt_int_op(tls->wasV2Handshake, OP_EQ, 1);
  1460. expect_single_log_msg_containing("For some reason, wasV2Handshake didn't "
  1461. "get set.");
  1462. teardown_capture_of_logs();
  1463. tls->wasV2Handshake = 1;
  1464. ret = tor_tls_finish_handshake(tls);
  1465. tt_int_op(ret, OP_EQ, 0);
  1466. tt_int_op(tls->wasV2Handshake, OP_EQ, 1);
  1467. tls->wasV2Handshake = 1;
  1468. tls->ssl->session = SSL_SESSION_new();
  1469. ret = tor_tls_finish_handshake(tls);
  1470. tt_int_op(ret, OP_EQ, 0);
  1471. tt_int_op(tls->wasV2Handshake, OP_EQ, 0);
  1472. tls->isServer = 0;
  1473. sess = tor_malloc_zero(sizeof(SESS_CERT_local));
  1474. tls->ssl->session->sess_cert = (void *)sess;
  1475. sess->cert_chain = sk_X509_new_null();
  1476. sk_X509_push(sess->cert_chain, c1);
  1477. tls->ssl->session->peer = c1;
  1478. tls->wasV2Handshake = 0;
  1479. ret = tor_tls_finish_handshake(tls);
  1480. tt_int_op(ret, OP_EQ, 0);
  1481. tt_int_op(tls->wasV2Handshake, OP_EQ, 1);
  1482. method->num_ciphers = fake_num_ciphers;
  1483. ret = tor_tls_finish_handshake(tls);
  1484. tt_int_op(ret, OP_EQ, -9);
  1485. done:
  1486. if (sess)
  1487. sk_X509_free(sess->cert_chain);
  1488. if (tls->ssl && tls->ssl->session) {
  1489. tor_free(tls->ssl->session->sess_cert);
  1490. }
  1491. SSL_free(tls->ssl);
  1492. tor_free(tls);
  1493. SSL_CTX_free(ctx);
  1494. tor_free(method);
  1495. teardown_capture_of_logs();
  1496. }
  1497. #endif /* !defined(OPENSSL_OPAQUE) */
  1498. static int fixed_crypto_pk_new_result_index;
  1499. static crypto_pk_t *fixed_crypto_pk_new_result[5];
  1500. static crypto_pk_t *
  1501. fixed_crypto_pk_new(void)
  1502. {
  1503. return fixed_crypto_pk_new_result[fixed_crypto_pk_new_result_index++];
  1504. }
  1505. #ifndef OPENSSL_OPAQUE
  1506. static int fixed_crypto_pk_generate_key_with_bits_result_index;
  1507. static int fixed_crypto_pk_generate_key_with_bits_result[5];
  1508. static int fixed_tor_tls_create_certificate_result_index;
  1509. static X509 *fixed_tor_tls_create_certificate_result[5];
  1510. static int fixed_tor_x509_cert_new_result_index;
  1511. static tor_x509_cert_t *fixed_tor_x509_cert_new_result[5];
  1512. static int
  1513. fixed_crypto_pk_generate_key_with_bits(crypto_pk_t *env, int bits)
  1514. {
  1515. (void)env;
  1516. (void)bits;
  1517. return fixed_crypto_pk_generate_key_with_bits_result[
  1518. fixed_crypto_pk_generate_key_with_bits_result_index++];
  1519. }
  1520. static X509 *
  1521. fixed_tor_tls_create_certificate(crypto_pk_t *rsa,
  1522. crypto_pk_t *rsa_sign,
  1523. const char *cname,
  1524. const char *cname_sign,
  1525. unsigned int cert_lifetime)
  1526. {
  1527. (void)rsa;
  1528. (void)rsa_sign;
  1529. (void)cname;
  1530. (void)cname_sign;
  1531. (void)cert_lifetime;
  1532. return fixed_tor_tls_create_certificate_result[
  1533. fixed_tor_tls_create_certificate_result_index++];
  1534. }
  1535. static tor_x509_cert_t *
  1536. fixed_tor_x509_cert_new(tor_x509_cert_impl_t *x509_cert)
  1537. {
  1538. (void) x509_cert;
  1539. return fixed_tor_x509_cert_new_result[
  1540. fixed_tor_x509_cert_new_result_index++];
  1541. }
  1542. static void
  1543. test_tortls_context_new(void *ignored)
  1544. {
  1545. (void)ignored;
  1546. tor_tls_context_t *ret;
  1547. crypto_pk_t *pk1, *pk2, *pk3, *pk4, *pk5, *pk6, *pk7, *pk8, *pk9, *pk10,
  1548. *pk11, *pk12, *pk13, *pk14, *pk15, *pk16, *pk17, *pk18;
  1549. pk1 = crypto_pk_new();
  1550. pk2 = crypto_pk_new();
  1551. pk3 = crypto_pk_new();
  1552. pk4 = crypto_pk_new();
  1553. pk5 = crypto_pk_new();
  1554. pk6 = crypto_pk_new();
  1555. pk7 = crypto_pk_new();
  1556. pk8 = crypto_pk_new();
  1557. pk9 = crypto_pk_new();
  1558. pk10 = crypto_pk_new();
  1559. pk11 = crypto_pk_new();
  1560. pk12 = crypto_pk_new();
  1561. pk13 = crypto_pk_new();
  1562. pk14 = crypto_pk_new();
  1563. pk15 = crypto_pk_new();
  1564. pk16 = crypto_pk_new();
  1565. pk17 = crypto_pk_new();
  1566. pk18 = crypto_pk_new();
  1567. fixed_crypto_pk_new_result_index = 0;
  1568. fixed_crypto_pk_new_result[0] = NULL;
  1569. MOCK(crypto_pk_new, fixed_crypto_pk_new);
  1570. ret = tor_tls_context_new(NULL, 0, 0, 0);
  1571. tt_assert(!ret);
  1572. /* note: we already override this in testing_common.c, so we
  1573. * run this unit test in a subprocess. */
  1574. MOCK(crypto_pk_generate_key_with_bits,
  1575. fixed_crypto_pk_generate_key_with_bits);
  1576. fixed_crypto_pk_new_result_index = 0;
  1577. fixed_crypto_pk_new_result[0] = pk1;
  1578. fixed_crypto_pk_new_result[1] = NULL;
  1579. fixed_crypto_pk_generate_key_with_bits_result[0] = -1;
  1580. fixed_crypto_pk_generate_key_with_bits_result_index = 0;
  1581. ret = tor_tls_context_new(NULL, 0, 0, 0);
  1582. tt_assert(!ret);
  1583. fixed_crypto_pk_new_result_index = 0;
  1584. fixed_crypto_pk_new_result[0] = pk2;
  1585. fixed_crypto_pk_new_result[1] = NULL;
  1586. fixed_crypto_pk_generate_key_with_bits_result[0] = 0;
  1587. fixed_crypto_pk_generate_key_with_bits_result_index = 0;
  1588. ret = tor_tls_context_new(NULL, 0, 0, 0);
  1589. tt_assert(!ret);
  1590. fixed_crypto_pk_new_result_index = 0;
  1591. fixed_crypto_pk_new_result[0] = pk3;
  1592. fixed_crypto_pk_new_result[1] = pk4;
  1593. fixed_crypto_pk_new_result[2] = NULL;
  1594. fixed_crypto_pk_generate_key_with_bits_result[0] = 0;
  1595. fixed_crypto_pk_generate_key_with_bits_result[1] = -1;
  1596. fixed_crypto_pk_generate_key_with_bits_result_index = 0;
  1597. ret = tor_tls_context_new(NULL, 0, 0, 0);
  1598. tt_assert(!ret);
  1599. MOCK(tor_tls_create_certificate, fixed_tor_tls_create_certificate);
  1600. fixed_crypto_pk_new_result_index = 0;
  1601. fixed_crypto_pk_new_result[0] = pk5;
  1602. fixed_crypto_pk_new_result[1] = pk6;
  1603. fixed_crypto_pk_new_result[2] = NULL;
  1604. fixed_crypto_pk_generate_key_with_bits_result_index = 0;
  1605. fixed_crypto_pk_generate_key_with_bits_result[1] = 0;
  1606. fixed_tor_tls_create_certificate_result_index = 0;
  1607. fixed_tor_tls_create_certificate_result[0] = NULL;
  1608. fixed_tor_tls_create_certificate_result[1] = X509_new();
  1609. fixed_tor_tls_create_certificate_result[2] = X509_new();
  1610. ret = tor_tls_context_new(NULL, 0, 0, 0);
  1611. tt_assert(!ret);
  1612. fixed_crypto_pk_new_result_index = 0;
  1613. fixed_crypto_pk_new_result[0] = pk7;
  1614. fixed_crypto_pk_new_result[1] = pk8;
  1615. fixed_crypto_pk_new_result[2] = NULL;
  1616. fixed_crypto_pk_generate_key_with_bits_result_index = 0;
  1617. fixed_tor_tls_create_certificate_result_index = 0;
  1618. fixed_tor_tls_create_certificate_result[0] = X509_new();
  1619. fixed_tor_tls_create_certificate_result[1] = NULL;
  1620. fixed_tor_tls_create_certificate_result[2] = X509_new();
  1621. ret = tor_tls_context_new(NULL, 0, 0, 0);
  1622. tt_assert(!ret);
  1623. fixed_crypto_pk_new_result_index = 0;
  1624. fixed_crypto_pk_new_result[0] = pk9;
  1625. fixed_crypto_pk_new_result[1] = pk10;
  1626. fixed_crypto_pk_new_result[2] = NULL;
  1627. fixed_crypto_pk_generate_key_with_bits_result_index = 0;
  1628. fixed_tor_tls_create_certificate_result_index = 0;
  1629. fixed_tor_tls_create_certificate_result[0] = X509_new();
  1630. fixed_tor_tls_create_certificate_result[1] = X509_new();
  1631. fixed_tor_tls_create_certificate_result[2] = NULL;
  1632. ret = tor_tls_context_new(NULL, 0, 0, 0);
  1633. tt_assert(!ret);
  1634. MOCK(tor_x509_cert_new, fixed_tor_x509_cert_new);
  1635. fixed_crypto_pk_new_result_index = 0;
  1636. fixed_crypto_pk_new_result[0] = pk11;
  1637. fixed_crypto_pk_new_result[1] = pk12;
  1638. fixed_crypto_pk_new_result[2] = NULL;
  1639. fixed_crypto_pk_generate_key_with_bits_result_index = 0;
  1640. fixed_tor_tls_create_certificate_result_index = 0;
  1641. fixed_tor_tls_create_certificate_result[0] = X509_new();
  1642. fixed_tor_tls_create_certificate_result[1] = X509_new();
  1643. fixed_tor_tls_create_certificate_result[2] = X509_new();
  1644. fixed_tor_x509_cert_new_result_index = 0;
  1645. fixed_tor_x509_cert_new_result[0] = NULL;
  1646. fixed_tor_x509_cert_new_result[1] = NULL;
  1647. fixed_tor_x509_cert_new_result[2] = NULL;
  1648. ret = tor_tls_context_new(NULL, 0, 0, 0);
  1649. tt_assert(!ret);
  1650. fixed_crypto_pk_new_result_index = 0;
  1651. fixed_crypto_pk_new_result[0] = pk13;
  1652. fixed_crypto_pk_new_result[1] = pk14;
  1653. fixed_crypto_pk_new_result[2] = NULL;
  1654. fixed_crypto_pk_generate_key_with_bits_result_index = 0;
  1655. fixed_tor_tls_create_certificate_result_index = 0;
  1656. fixed_tor_tls_create_certificate_result[0] = X509_new();
  1657. fixed_tor_tls_create_certificate_result[1] = X509_new();
  1658. fixed_tor_tls_create_certificate_result[2] = X509_new();
  1659. fixed_tor_x509_cert_new_result_index = 0;
  1660. fixed_tor_x509_cert_new_result[0] = tor_malloc_zero(sizeof(tor_x509_cert_t));
  1661. fixed_tor_x509_cert_new_result[1] = NULL;
  1662. fixed_tor_x509_cert_new_result[2] = NULL;
  1663. ret = tor_tls_context_new(NULL, 0, 0, 0);
  1664. tt_assert(!ret);
  1665. fixed_crypto_pk_new_result_index = 0;
  1666. fixed_crypto_pk_new_result[0] = pk15;
  1667. fixed_crypto_pk_new_result[1] = pk16;
  1668. fixed_crypto_pk_new_result[2] = NULL;
  1669. fixed_crypto_pk_generate_key_with_bits_result_index = 0;
  1670. fixed_tor_tls_create_certificate_result_index = 0;
  1671. fixed_tor_tls_create_certificate_result[0] = X509_new();
  1672. fixed_tor_tls_create_certificate_result[1] = X509_new();
  1673. fixed_tor_tls_create_certificate_result[2] = X509_new();
  1674. fixed_tor_x509_cert_new_result_index = 0;
  1675. fixed_tor_x509_cert_new_result[0] = tor_malloc_zero(sizeof(tor_x509_cert_t));
  1676. fixed_tor_x509_cert_new_result[1] = tor_malloc_zero(sizeof(tor_x509_cert_t));
  1677. fixed_tor_x509_cert_new_result[2] = NULL;
  1678. ret = tor_tls_context_new(NULL, 0, 0, 0);
  1679. tt_assert(!ret);
  1680. fixed_crypto_pk_new_result_index = 0;
  1681. fixed_crypto_pk_new_result[0] = pk17;
  1682. fixed_crypto_pk_new_result[1] = pk18;
  1683. fixed_crypto_pk_new_result[2] = NULL;
  1684. fixed_crypto_pk_generate_key_with_bits_result_index = 0;
  1685. fixed_tor_tls_create_certificate_result_index = 0;
  1686. fixed_tor_tls_create_certificate_result[0] = X509_new();
  1687. fixed_tor_tls_create_certificate_result[1] = X509_new();
  1688. fixed_tor_tls_create_certificate_result[2] = X509_new();
  1689. fixed_tor_x509_cert_new_result_index = 0;
  1690. fixed_tor_x509_cert_new_result[0] = tor_malloc_zero(sizeof(tor_x509_cert_t));
  1691. fixed_tor_x509_cert_new_result[1] = tor_malloc_zero(sizeof(tor_x509_cert_t));
  1692. fixed_tor_x509_cert_new_result[2] = tor_malloc_zero(sizeof(tor_x509_cert_t));
  1693. ret = tor_tls_context_new(NULL, 0, 0, 0);
  1694. tt_assert(!ret);
  1695. done:
  1696. UNMOCK(tor_x509_cert_new);
  1697. UNMOCK(tor_tls_create_certificate);
  1698. UNMOCK(crypto_pk_generate_key_with_bits);
  1699. UNMOCK(crypto_pk_new);
  1700. }
  1701. #endif /* !defined(OPENSSL_OPAQUE) */
  1702. static int fixed_crypto_pk_get_evp_pkey_result_index = 0;
  1703. static EVP_PKEY *fixed_crypto_pk_get_evp_pkey_result[5];
  1704. static EVP_PKEY *
  1705. fixed_crypto_pk_get_evp_pkey_(crypto_pk_t *env, int private)
  1706. {
  1707. (void) env;
  1708. (void) private;
  1709. return fixed_crypto_pk_get_evp_pkey_result[
  1710. fixed_crypto_pk_get_evp_pkey_result_index++];
  1711. }
  1712. static void
  1713. test_tortls_create_certificate(void *ignored)
  1714. {
  1715. (void)ignored;
  1716. X509 *ret;
  1717. crypto_pk_t *pk1, *pk2;
  1718. pk1 = crypto_pk_new();
  1719. pk2 = crypto_pk_new();
  1720. MOCK(crypto_pk_get_openssl_evp_pkey_, fixed_crypto_pk_get_evp_pkey_);
  1721. fixed_crypto_pk_get_evp_pkey_result_index = 0;
  1722. fixed_crypto_pk_get_evp_pkey_result[0] = NULL;
  1723. ret = tor_tls_create_certificate(pk1, pk2, "hello", "hello2", 1);
  1724. tt_assert(!ret);
  1725. fixed_crypto_pk_get_evp_pkey_result_index = 0;
  1726. fixed_crypto_pk_get_evp_pkey_result[0] = EVP_PKEY_new();
  1727. fixed_crypto_pk_get_evp_pkey_result[1] = NULL;
  1728. ret = tor_tls_create_certificate(pk1, pk2, "hello", "hello2", 1);
  1729. tt_assert(!ret);
  1730. fixed_crypto_pk_get_evp_pkey_result_index = 0;
  1731. fixed_crypto_pk_get_evp_pkey_result[0] = EVP_PKEY_new();
  1732. fixed_crypto_pk_get_evp_pkey_result[1] = EVP_PKEY_new();
  1733. ret = tor_tls_create_certificate(pk1, pk2, "hello", "hello2", 1);
  1734. tt_assert(!ret);
  1735. done:
  1736. UNMOCK(crypto_pk_get_openssl_evp_pkey_);
  1737. crypto_pk_free(pk1);
  1738. crypto_pk_free(pk2);
  1739. }
  1740. static void
  1741. test_tortls_cert_new(void *ignored)
  1742. {
  1743. (void)ignored;
  1744. tor_x509_cert_t *ret;
  1745. X509 *cert = read_cert_from(validCertString);
  1746. ret = tor_x509_cert_new(NULL);
  1747. tt_assert(!ret);
  1748. ret = tor_x509_cert_new(cert);
  1749. tt_assert(ret);
  1750. tor_x509_cert_free(ret);
  1751. ret = NULL;
  1752. #if 0
  1753. cert = read_cert_from(validCertString);
  1754. /* XXX this doesn't do what you think: it alters a copy of the pubkey. */
  1755. X509_get_pubkey(cert)->type = EVP_PKEY_DSA;
  1756. ret = tor_x509_cert_new(cert);
  1757. tt_assert(ret);
  1758. #endif /* 0 */
  1759. #ifndef OPENSSL_OPAQUE
  1760. cert = read_cert_from(validCertString);
  1761. X509_CINF_free(cert->cert_info);
  1762. cert->cert_info = NULL;
  1763. ret = tor_x509_cert_new(cert);
  1764. tt_assert(ret);
  1765. #endif /* !defined(OPENSSL_OPAQUE) */
  1766. done:
  1767. tor_x509_cert_free(ret);
  1768. }
  1769. static void
  1770. test_tortls_cert_is_valid(void *ignored)
  1771. {
  1772. (void)ignored;
  1773. int ret;
  1774. tor_x509_cert_t *cert = NULL, *scert = NULL;
  1775. scert = tor_malloc_zero(sizeof(tor_x509_cert_t));
  1776. ret = tor_tls_cert_is_valid(LOG_WARN, cert, scert, time(NULL), 0);
  1777. tt_int_op(ret, OP_EQ, 0);
  1778. cert = tor_malloc_zero(sizeof(tor_x509_cert_t));
  1779. ret = tor_tls_cert_is_valid(LOG_WARN, cert, scert, time(NULL), 0);
  1780. tt_int_op(ret, OP_EQ, 0);
  1781. tor_free(scert);
  1782. tor_free(cert);
  1783. cert = tor_x509_cert_new(read_cert_from(validCertString));
  1784. scert = tor_x509_cert_new(read_cert_from(caCertString));
  1785. ret = tor_tls_cert_is_valid(LOG_WARN, cert, scert, time(NULL), 0);
  1786. tt_int_op(ret, OP_EQ, 1);
  1787. #ifndef OPENSSL_OPAQUE
  1788. tor_x509_cert_free(cert);
  1789. tor_x509_cert_free(scert);
  1790. cert = tor_x509_cert_new(read_cert_from(validCertString));
  1791. scert = tor_x509_cert_new(read_cert_from(caCertString));
  1792. ASN1_TIME_free(cert->cert->cert_info->validity->notAfter);
  1793. cert->cert->cert_info->validity->notAfter =
  1794. ASN1_TIME_set(NULL, time(NULL)-1000000);
  1795. ret = tor_tls_cert_is_valid(LOG_WARN, cert, scert, time(NULL), 0);
  1796. tt_int_op(ret, OP_EQ, 0);
  1797. tor_x509_cert_free(cert);
  1798. tor_x509_cert_free(scert);
  1799. cert = tor_x509_cert_new(read_cert_from(validCertString));
  1800. scert = tor_x509_cert_new(read_cert_from(caCertString));
  1801. X509_PUBKEY_free(cert->cert->cert_info->key);
  1802. cert->cert->cert_info->key = NULL;
  1803. ret = tor_tls_cert_is_valid(LOG_WARN, cert, scert, time(NULL), 1);
  1804. tt_int_op(ret, OP_EQ, 0);
  1805. #endif /* !defined(OPENSSL_OPAQUE) */
  1806. #if 0
  1807. tor_x509_cert_free(cert);
  1808. tor_x509_cert_free(scert);
  1809. cert = tor_x509_cert_new(read_cert_from(validCertString));
  1810. scert = tor_x509_cert_new(read_cert_from(caCertString));
  1811. /* This doesn't actually change the key in the cert. XXXXXX */
  1812. BN_one(EVP_PKEY_get1_RSA(X509_get_pubkey(cert->cert))->n);
  1813. ret = tor_tls_cert_is_valid(LOG_WARN, cert, scert, time(NULL), 1);
  1814. tt_int_op(ret, OP_EQ, 0);
  1815. tor_x509_cert_free(cert);
  1816. tor_x509_cert_free(scert);
  1817. cert = tor_x509_cert_new(read_cert_from(validCertString));
  1818. scert = tor_x509_cert_new(read_cert_from(caCertString));
  1819. /* This doesn't actually change the key in the cert. XXXXXX */
  1820. X509_get_pubkey(cert->cert)->type = EVP_PKEY_EC;
  1821. ret = tor_tls_cert_is_valid(LOG_WARN, cert, scert, time(NULL), 1);
  1822. tt_int_op(ret, OP_EQ, 0);
  1823. tor_x509_cert_free(cert);
  1824. tor_x509_cert_free(scert);
  1825. cert = tor_x509_cert_new(read_cert_from(validCertString));
  1826. scert = tor_x509_cert_new(read_cert_from(caCertString));
  1827. /* This doesn't actually change the key in the cert. XXXXXX */
  1828. X509_get_pubkey(cert->cert)->type = EVP_PKEY_EC;
  1829. ret = tor_tls_cert_is_valid(LOG_WARN, cert, scert, time(NULL), 0);
  1830. tt_int_op(ret, OP_EQ, 1);
  1831. tor_x509_cert_free(cert);
  1832. tor_x509_cert_free(scert);
  1833. cert = tor_x509_cert_new(read_cert_from(validCertString));
  1834. scert = tor_x509_cert_new(read_cert_from(caCertString));
  1835. /* This doesn't actually change the key in the cert. XXXXXX */
  1836. X509_get_pubkey(cert->cert)->type = EVP_PKEY_EC;
  1837. X509_get_pubkey(cert->cert)->ameth = NULL;
  1838. ret = tor_tls_cert_is_valid(LOG_WARN, cert, scert, time(NULL), 0);
  1839. tt_int_op(ret, OP_EQ, 0);
  1840. #endif /* 0 */
  1841. done:
  1842. tor_x509_cert_free(cert);
  1843. tor_x509_cert_free(scert);
  1844. }
  1845. static void
  1846. test_tortls_context_init_one(void *ignored)
  1847. {
  1848. (void)ignored;
  1849. int ret;
  1850. tor_tls_context_t *old = NULL;
  1851. MOCK(crypto_pk_new, fixed_crypto_pk_new);
  1852. fixed_crypto_pk_new_result_index = 0;
  1853. fixed_crypto_pk_new_result[0] = NULL;
  1854. ret = tor_tls_context_init_one(&old, NULL, 0, 0, 0);
  1855. tt_int_op(ret, OP_EQ, -1);
  1856. done:
  1857. UNMOCK(crypto_pk_new);
  1858. }
  1859. #define LOCAL_TEST_CASE(name, flags) \
  1860. { #name, test_tortls_##name, (flags|TT_FORK), NULL, NULL }
  1861. #ifdef OPENSSL_OPAQUE
  1862. #define INTRUSIVE_TEST_CASE(name, flags) \
  1863. { #name, NULL, TT_SKIP, NULL, NULL }
  1864. #else
  1865. #define INTRUSIVE_TEST_CASE(name, flags) LOCAL_TEST_CASE(name, flags)
  1866. #endif /* defined(OPENSSL_OPAQUE) */
  1867. struct testcase_t tortls_openssl_tests[] = {
  1868. LOCAL_TEST_CASE(tor_tls_new, TT_FORK),
  1869. LOCAL_TEST_CASE(get_state_description, TT_FORK),
  1870. LOCAL_TEST_CASE(get_by_ssl, TT_FORK),
  1871. LOCAL_TEST_CASE(allocate_tor_tls_object_ex_data_index, TT_FORK),
  1872. LOCAL_TEST_CASE(log_one_error, TT_FORK),
  1873. INTRUSIVE_TEST_CASE(get_error, TT_FORK),
  1874. LOCAL_TEST_CASE(always_accept_verify_cb, 0),
  1875. INTRUSIVE_TEST_CASE(x509_cert_free, 0),
  1876. LOCAL_TEST_CASE(cert_matches_key, 0),
  1877. INTRUSIVE_TEST_CASE(cert_get_key, 0),
  1878. LOCAL_TEST_CASE(get_my_client_auth_key, TT_FORK),
  1879. INTRUSIVE_TEST_CASE(get_ciphersuite_name, 0),
  1880. INTRUSIVE_TEST_CASE(classify_client_ciphers, 0),
  1881. LOCAL_TEST_CASE(client_is_using_v2_ciphers, 0),
  1882. INTRUSIVE_TEST_CASE(get_pending_bytes, 0),
  1883. INTRUSIVE_TEST_CASE(SSL_SESSION_get_master_key, 0),
  1884. INTRUSIVE_TEST_CASE(get_tlssecrets, 0),
  1885. INTRUSIVE_TEST_CASE(get_buffer_sizes, 0),
  1886. INTRUSIVE_TEST_CASE(try_to_extract_certs_from_tls, 0),
  1887. INTRUSIVE_TEST_CASE(get_peer_cert, 0),
  1888. INTRUSIVE_TEST_CASE(peer_has_cert, 0),
  1889. INTRUSIVE_TEST_CASE(finish_handshake, 0),
  1890. INTRUSIVE_TEST_CASE(handshake, 0),
  1891. INTRUSIVE_TEST_CASE(write, 0),
  1892. INTRUSIVE_TEST_CASE(read, 0),
  1893. INTRUSIVE_TEST_CASE(server_info_callback, 0),
  1894. LOCAL_TEST_CASE(get_write_overhead_ratio, TT_FORK),
  1895. LOCAL_TEST_CASE(is_server, 0),
  1896. INTRUSIVE_TEST_CASE(assert_renegotiation_unblocked, 0),
  1897. INTRUSIVE_TEST_CASE(block_renegotiation, 0),
  1898. INTRUSIVE_TEST_CASE(unblock_renegotiation, 0),
  1899. INTRUSIVE_TEST_CASE(set_renegotiate_callback, 0),
  1900. LOCAL_TEST_CASE(set_logged_address, 0),
  1901. INTRUSIVE_TEST_CASE(find_cipher_by_id, 0),
  1902. INTRUSIVE_TEST_CASE(session_secret_cb, 0),
  1903. INTRUSIVE_TEST_CASE(debug_state_callback, 0),
  1904. INTRUSIVE_TEST_CASE(context_new, TT_FORK /* redundant */),
  1905. LOCAL_TEST_CASE(create_certificate, 0),
  1906. LOCAL_TEST_CASE(cert_new, 0),
  1907. LOCAL_TEST_CASE(cert_is_valid, 0),
  1908. LOCAL_TEST_CASE(context_init_one, 0),
  1909. END_OF_TESTCASES
  1910. };