tortls.c 82 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664
  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.c
  7. * \brief Wrapper functions to present a consistent interface to
  8. * TLS, SSL, and X.509 functions from OpenSSL.
  9. **/
  10. /* (Unlike other tor functions, these
  11. * are prefixed with tor_ in order to avoid conflicting with OpenSSL
  12. * functions and variables.)
  13. */
  14. #include "orconfig.h"
  15. #define TORTLS_PRIVATE
  16. #define TORTLS_OPENSSL_PRIVATE
  17. #include <assert.h>
  18. #ifdef _WIN32 /*wrkard for dtls1.h >= 0.9.8m of "#include <winsock.h>"*/
  19. #include <winsock2.h>
  20. #include <ws2tcpip.h>
  21. #endif
  22. #include "crypto.h"
  23. #include "crypto_rand.h"
  24. #include "crypto_dh.h"
  25. #include "crypto_util.h"
  26. #include "compat.h"
  27. /* Some versions of OpenSSL declare SSL_get_selected_srtp_profile twice in
  28. * srtp.h. Suppress the GCC warning so we can build with -Wredundant-decl. */
  29. DISABLE_GCC_WARNING(redundant-decls)
  30. #include <openssl/opensslv.h>
  31. #ifdef OPENSSL_NO_EC
  32. #error "We require OpenSSL with ECC support"
  33. #endif
  34. #include <openssl/ssl.h>
  35. #include <openssl/ssl3.h>
  36. #include <openssl/err.h>
  37. #include <openssl/tls1.h>
  38. #include <openssl/asn1.h>
  39. #include <openssl/bio.h>
  40. #include <openssl/bn.h>
  41. #include <openssl/rsa.h>
  42. ENABLE_GCC_WARNING(redundant-decls)
  43. #define TORTLS_PRIVATE
  44. #include "tortls.h"
  45. #include "util.h"
  46. #include "torlog.h"
  47. #include "container.h"
  48. #include <string.h>
  49. #ifdef OPENSSL_1_1_API
  50. #define X509_get_notBefore_const(cert) \
  51. X509_get0_notBefore(cert)
  52. #define X509_get_notAfter_const(cert) \
  53. X509_get0_notAfter(cert)
  54. #ifndef X509_get_notBefore
  55. #define X509_get_notBefore(cert) \
  56. X509_getm_notBefore(cert)
  57. #endif
  58. #ifndef X509_get_notAfter
  59. #define X509_get_notAfter(cert) \
  60. X509_getm_notAfter(cert)
  61. #endif
  62. #else /* ! OPENSSL_VERSION_NUMBER >= OPENSSL_V_SERIES(1,1,0) */
  63. #define X509_get_notBefore_const(cert) \
  64. ((const ASN1_TIME*) X509_get_notBefore((X509 *)cert))
  65. #define X509_get_notAfter_const(cert) \
  66. ((const ASN1_TIME*) X509_get_notAfter((X509 *)cert))
  67. #endif
  68. /* Copied from or.h */
  69. #define LEGAL_NICKNAME_CHARACTERS \
  70. "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
  71. /** How long do identity certificates live? (sec) */
  72. #define IDENTITY_CERT_LIFETIME (365*24*60*60)
  73. #define ADDR(tls) (((tls) && (tls)->address) ? tls->address : "peer")
  74. #if OPENSSL_VERSION_NUMBER < OPENSSL_V(1,0,0,'f')
  75. /* This is a version of OpenSSL before 1.0.0f. It does not have
  76. * the CVE-2011-4576 fix, and as such it can't use RELEASE_BUFFERS and
  77. * SSL3 safely at the same time.
  78. */
  79. #define DISABLE_SSL3_HANDSHAKE
  80. #endif /* OPENSSL_VERSION_NUMBER < OPENSSL_V(1,0,0,'f') */
  81. /* We redefine these so that we can run correctly even if the vendor gives us
  82. * a version of OpenSSL that does not match its header files. (Apple: I am
  83. * looking at you.)
  84. */
  85. #ifndef SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION
  86. #define SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION 0x00040000L
  87. #endif
  88. #ifndef SSL3_FLAGS_ALLOW_UNSAFE_LEGACY_RENEGOTIATION
  89. #define SSL3_FLAGS_ALLOW_UNSAFE_LEGACY_RENEGOTIATION 0x0010
  90. #endif
  91. /** Return values for tor_tls_classify_client_ciphers.
  92. *
  93. * @{
  94. */
  95. /** An error occurred when examining the client ciphers */
  96. #define CIPHERS_ERR -1
  97. /** The client cipher list indicates that a v1 handshake was in use. */
  98. #define CIPHERS_V1 1
  99. /** The client cipher list indicates that the client is using the v2 or the
  100. * v3 handshake, but that it is (probably!) lying about what ciphers it
  101. * supports */
  102. #define CIPHERS_V2 2
  103. /** The client cipher list indicates that the client is using the v2 or the
  104. * v3 handshake, and that it is telling the truth about what ciphers it
  105. * supports */
  106. #define CIPHERS_UNRESTRICTED 3
  107. /** @} */
  108. /** The ex_data index in which we store a pointer to an SSL object's
  109. * corresponding tor_tls_t object. */
  110. STATIC int tor_tls_object_ex_data_index = -1;
  111. /** Helper: Allocate tor_tls_object_ex_data_index. */
  112. STATIC void
  113. tor_tls_allocate_tor_tls_object_ex_data_index(void)
  114. {
  115. if (tor_tls_object_ex_data_index == -1) {
  116. tor_tls_object_ex_data_index =
  117. SSL_get_ex_new_index(0, NULL, NULL, NULL, NULL);
  118. tor_assert(tor_tls_object_ex_data_index != -1);
  119. }
  120. }
  121. /** Helper: given a SSL* pointer, return the tor_tls_t object using that
  122. * pointer. */
  123. STATIC tor_tls_t *
  124. tor_tls_get_by_ssl(const SSL *ssl)
  125. {
  126. tor_tls_t *result = SSL_get_ex_data(ssl, tor_tls_object_ex_data_index);
  127. if (result)
  128. tor_assert(result->magic == TOR_TLS_MAGIC);
  129. return result;
  130. }
  131. static void tor_tls_context_decref(tor_tls_context_t *ctx);
  132. static void tor_tls_context_incref(tor_tls_context_t *ctx);
  133. static int check_cert_lifetime_internal(int severity, const X509 *cert,
  134. time_t now,
  135. int past_tolerance, int future_tolerance);
  136. /** Global TLS contexts. We keep them here because nobody else needs
  137. * to touch them.
  138. *
  139. * @{ */
  140. STATIC tor_tls_context_t *server_tls_context = NULL;
  141. STATIC tor_tls_context_t *client_tls_context = NULL;
  142. /**@}*/
  143. /** True iff tor_tls_init() has been called. */
  144. static int tls_library_is_initialized = 0;
  145. /* Module-internal error codes. */
  146. #define TOR_TLS_SYSCALL_ (MIN_TOR_TLS_ERROR_VAL_ - 2)
  147. #define TOR_TLS_ZERORETURN_ (MIN_TOR_TLS_ERROR_VAL_ - 1)
  148. /** Write a description of the current state of <b>tls</b> into the
  149. * <b>sz</b>-byte buffer at <b>buf</b>. */
  150. void
  151. tor_tls_get_state_description(tor_tls_t *tls, char *buf, size_t sz)
  152. {
  153. const char *ssl_state;
  154. const char *tortls_state;
  155. if (PREDICT_UNLIKELY(!tls || !tls->ssl)) {
  156. strlcpy(buf, "(No SSL object)", sz);
  157. return;
  158. }
  159. ssl_state = SSL_state_string_long(tls->ssl);
  160. switch (tls->state) {
  161. #define CASE(st) case TOR_TLS_ST_##st: tortls_state = " in "#st ; break
  162. CASE(HANDSHAKE);
  163. CASE(OPEN);
  164. CASE(GOTCLOSE);
  165. CASE(SENTCLOSE);
  166. CASE(CLOSED);
  167. CASE(RENEGOTIATE);
  168. #undef CASE
  169. case TOR_TLS_ST_BUFFEREVENT:
  170. tortls_state = "";
  171. break;
  172. default:
  173. tortls_state = " in unknown TLS state";
  174. break;
  175. }
  176. tor_snprintf(buf, sz, "%s%s", ssl_state, tortls_state);
  177. }
  178. /** Log a single error <b>err</b> as returned by ERR_get_error(), which was
  179. * received while performing an operation <b>doing</b> on <b>tls</b>. Log
  180. * the message at <b>severity</b>, in log domain <b>domain</b>. */
  181. void
  182. tor_tls_log_one_error(tor_tls_t *tls, unsigned long err,
  183. int severity, int domain, const char *doing)
  184. {
  185. const char *state = NULL, *addr;
  186. const char *msg, *lib, *func;
  187. state = (tls && tls->ssl)?SSL_state_string_long(tls->ssl):"---";
  188. addr = tls ? tls->address : NULL;
  189. /* Some errors are known-benign, meaning they are the fault of the other
  190. * side of the connection. The caller doesn't know this, so override the
  191. * priority for those cases. */
  192. switch (ERR_GET_REASON(err)) {
  193. case SSL_R_HTTP_REQUEST:
  194. case SSL_R_HTTPS_PROXY_REQUEST:
  195. case SSL_R_RECORD_LENGTH_MISMATCH:
  196. #ifndef OPENSSL_1_1_API
  197. case SSL_R_RECORD_TOO_LARGE:
  198. #endif
  199. case SSL_R_UNKNOWN_PROTOCOL:
  200. case SSL_R_UNSUPPORTED_PROTOCOL:
  201. severity = LOG_INFO;
  202. break;
  203. default:
  204. break;
  205. }
  206. msg = (const char*)ERR_reason_error_string(err);
  207. lib = (const char*)ERR_lib_error_string(err);
  208. func = (const char*)ERR_func_error_string(err);
  209. if (!msg) msg = "(null)";
  210. if (!lib) lib = "(null)";
  211. if (!func) func = "(null)";
  212. if (doing) {
  213. tor_log(severity, domain, "TLS error while %s%s%s: %s (in %s:%s:%s)",
  214. doing, addr?" with ":"", addr?addr:"",
  215. msg, lib, func, state);
  216. } else {
  217. tor_log(severity, domain, "TLS error%s%s: %s (in %s:%s:%s)",
  218. addr?" with ":"", addr?addr:"",
  219. msg, lib, func, state);
  220. }
  221. }
  222. /** Log all pending tls errors at level <b>severity</b> in log domain
  223. * <b>domain</b>. Use <b>doing</b> to describe our current activities.
  224. */
  225. STATIC void
  226. tls_log_errors(tor_tls_t *tls, int severity, int domain, const char *doing)
  227. {
  228. unsigned long err;
  229. while ((err = ERR_get_error()) != 0) {
  230. tor_tls_log_one_error(tls, err, severity, domain, doing);
  231. }
  232. }
  233. /** Convert an errno (or a WSAerrno on windows) into a TOR_TLS_* error
  234. * code. */
  235. STATIC int
  236. tor_errno_to_tls_error(int e)
  237. {
  238. switch (e) {
  239. case SOCK_ERRNO(ECONNRESET): // most common
  240. return TOR_TLS_ERROR_CONNRESET;
  241. case SOCK_ERRNO(ETIMEDOUT):
  242. return TOR_TLS_ERROR_TIMEOUT;
  243. case SOCK_ERRNO(EHOSTUNREACH):
  244. case SOCK_ERRNO(ENETUNREACH):
  245. return TOR_TLS_ERROR_NO_ROUTE;
  246. case SOCK_ERRNO(ECONNREFUSED):
  247. return TOR_TLS_ERROR_CONNREFUSED; // least common
  248. default:
  249. return TOR_TLS_ERROR_MISC;
  250. }
  251. }
  252. /** Given a TOR_TLS_* error code, return a string equivalent. */
  253. const char *
  254. tor_tls_err_to_string(int err)
  255. {
  256. if (err >= 0)
  257. return "[Not an error.]";
  258. switch (err) {
  259. case TOR_TLS_ERROR_MISC: return "misc error";
  260. case TOR_TLS_ERROR_IO: return "unexpected close";
  261. case TOR_TLS_ERROR_CONNREFUSED: return "connection refused";
  262. case TOR_TLS_ERROR_CONNRESET: return "connection reset";
  263. case TOR_TLS_ERROR_NO_ROUTE: return "host unreachable";
  264. case TOR_TLS_ERROR_TIMEOUT: return "connection timed out";
  265. case TOR_TLS_CLOSE: return "closed";
  266. case TOR_TLS_WANTREAD: return "want to read";
  267. case TOR_TLS_WANTWRITE: return "want to write";
  268. default: return "(unknown error code)";
  269. }
  270. }
  271. #define CATCH_SYSCALL 1
  272. #define CATCH_ZERO 2
  273. /** Given a TLS object and the result of an SSL_* call, use
  274. * SSL_get_error to determine whether an error has occurred, and if so
  275. * which one. Return one of TOR_TLS_{DONE|WANTREAD|WANTWRITE|ERROR}.
  276. * If extra&CATCH_SYSCALL is true, return TOR_TLS_SYSCALL_ instead of
  277. * reporting syscall errors. If extra&CATCH_ZERO is true, return
  278. * TOR_TLS_ZERORETURN_ instead of reporting zero-return errors.
  279. *
  280. * If an error has occurred, log it at level <b>severity</b> and describe the
  281. * current action as <b>doing</b>.
  282. */
  283. STATIC int
  284. tor_tls_get_error(tor_tls_t *tls, int r, int extra,
  285. const char *doing, int severity, int domain)
  286. {
  287. int err = SSL_get_error(tls->ssl, r);
  288. int tor_error = TOR_TLS_ERROR_MISC;
  289. switch (err) {
  290. case SSL_ERROR_NONE:
  291. return TOR_TLS_DONE;
  292. case SSL_ERROR_WANT_READ:
  293. return TOR_TLS_WANTREAD;
  294. case SSL_ERROR_WANT_WRITE:
  295. return TOR_TLS_WANTWRITE;
  296. case SSL_ERROR_SYSCALL:
  297. if (extra&CATCH_SYSCALL)
  298. return TOR_TLS_SYSCALL_;
  299. if (r == 0) {
  300. tor_log(severity, LD_NET, "TLS error: unexpected close while %s (%s)",
  301. doing, SSL_state_string_long(tls->ssl));
  302. tor_error = TOR_TLS_ERROR_IO;
  303. } else {
  304. int e = tor_socket_errno(tls->socket);
  305. tor_log(severity, LD_NET,
  306. "TLS error: <syscall error while %s> (errno=%d: %s; state=%s)",
  307. doing, e, tor_socket_strerror(e),
  308. SSL_state_string_long(tls->ssl));
  309. tor_error = tor_errno_to_tls_error(e);
  310. }
  311. tls_log_errors(tls, severity, domain, doing);
  312. return tor_error;
  313. case SSL_ERROR_ZERO_RETURN:
  314. if (extra&CATCH_ZERO)
  315. return TOR_TLS_ZERORETURN_;
  316. tor_log(severity, LD_NET, "TLS connection closed while %s in state %s",
  317. doing, SSL_state_string_long(tls->ssl));
  318. tls_log_errors(tls, severity, domain, doing);
  319. return TOR_TLS_CLOSE;
  320. default:
  321. tls_log_errors(tls, severity, domain, doing);
  322. return TOR_TLS_ERROR_MISC;
  323. }
  324. }
  325. /** Initialize OpenSSL, unless it has already been initialized.
  326. */
  327. static void
  328. tor_tls_init(void)
  329. {
  330. check_no_tls_errors();
  331. if (!tls_library_is_initialized) {
  332. #ifdef OPENSSL_1_1_API
  333. OPENSSL_init_ssl(OPENSSL_INIT_LOAD_SSL_STRINGS, NULL);
  334. #else
  335. SSL_library_init();
  336. SSL_load_error_strings();
  337. #endif
  338. #if (SIZEOF_VOID_P >= 8 && \
  339. OPENSSL_VERSION_NUMBER >= OPENSSL_V_SERIES(1,0,1))
  340. long version = OpenSSL_version_num();
  341. /* LCOV_EXCL_START : we can't test these lines on the same machine */
  342. if (version >= OPENSSL_V_SERIES(1,0,1)) {
  343. /* Warn if we could *almost* be running with much faster ECDH.
  344. If we're built for a 64-bit target, using OpenSSL 1.0.1, but we
  345. don't have one of the built-in __uint128-based speedups, we are
  346. just one build operation away from an accelerated handshake.
  347. (We could be looking at OPENSSL_NO_EC_NISTP_64_GCC_128 instead of
  348. doing this test, but that gives compile-time options, not runtime
  349. behavior.)
  350. */
  351. EC_KEY *key = EC_KEY_new_by_curve_name(NID_X9_62_prime256v1);
  352. const EC_GROUP *g = key ? EC_KEY_get0_group(key) : NULL;
  353. const EC_METHOD *m = g ? EC_GROUP_method_of(g) : NULL;
  354. const int warn = (m == EC_GFp_simple_method() ||
  355. m == EC_GFp_mont_method() ||
  356. m == EC_GFp_nist_method());
  357. EC_KEY_free(key);
  358. if (warn)
  359. log_notice(LD_GENERAL, "We were built to run on a 64-bit CPU, with "
  360. "OpenSSL 1.0.1 or later, but with a version of OpenSSL "
  361. "that apparently lacks accelerated support for the NIST "
  362. "P-224 and P-256 groups. Building openssl with such "
  363. "support (using the enable-ec_nistp_64_gcc_128 option "
  364. "when configuring it) would make ECDH much faster.");
  365. }
  366. /* LCOV_EXCL_STOP */
  367. #endif /* (SIZEOF_VOID_P >= 8 && ... */
  368. tor_tls_allocate_tor_tls_object_ex_data_index();
  369. tls_library_is_initialized = 1;
  370. }
  371. }
  372. /** Free all global TLS structures. */
  373. void
  374. tor_tls_free_all(void)
  375. {
  376. check_no_tls_errors();
  377. if (server_tls_context) {
  378. tor_tls_context_t *ctx = server_tls_context;
  379. server_tls_context = NULL;
  380. tor_tls_context_decref(ctx);
  381. }
  382. if (client_tls_context) {
  383. tor_tls_context_t *ctx = client_tls_context;
  384. client_tls_context = NULL;
  385. tor_tls_context_decref(ctx);
  386. }
  387. }
  388. /** We need to give OpenSSL a callback to verify certificates. This is
  389. * it: We always accept peer certs and complete the handshake. We
  390. * don't validate them until later.
  391. */
  392. STATIC int
  393. always_accept_verify_cb(int preverify_ok,
  394. X509_STORE_CTX *x509_ctx)
  395. {
  396. (void) preverify_ok;
  397. (void) x509_ctx;
  398. return 1;
  399. }
  400. /** Return a newly allocated X509 name with commonName <b>cname</b>. */
  401. static X509_NAME *
  402. tor_x509_name_new(const char *cname)
  403. {
  404. int nid;
  405. X509_NAME *name;
  406. /* LCOV_EXCL_BR_START : these branches will only fail on OOM errors */
  407. if (!(name = X509_NAME_new()))
  408. return NULL;
  409. if ((nid = OBJ_txt2nid("commonName")) == NID_undef) goto error;
  410. if (!(X509_NAME_add_entry_by_NID(name, nid, MBSTRING_ASC,
  411. (unsigned char*)cname, -1, -1, 0)))
  412. goto error;
  413. /* LCOV_EXCL_BR_STOP */
  414. return name;
  415. /* LCOV_EXCL_START : these lines will only execute on out of memory errors*/
  416. error:
  417. X509_NAME_free(name);
  418. return NULL;
  419. /* LCOV_EXCL_STOP */
  420. }
  421. /** Generate and sign an X509 certificate with the public key <b>rsa</b>,
  422. * signed by the private key <b>rsa_sign</b>. The commonName of the
  423. * certificate will be <b>cname</b>; the commonName of the issuer will be
  424. * <b>cname_sign</b>. The cert will be valid for <b>cert_lifetime</b>
  425. * seconds, starting from some time in the past.
  426. *
  427. * Return a certificate on success, NULL on failure.
  428. */
  429. MOCK_IMPL(STATIC X509 *,
  430. tor_tls_create_certificate,(crypto_pk_t *rsa,
  431. crypto_pk_t *rsa_sign,
  432. const char *cname,
  433. const char *cname_sign,
  434. unsigned int cert_lifetime))
  435. {
  436. /* OpenSSL generates self-signed certificates with random 64-bit serial
  437. * numbers, so let's do that too. */
  438. #define SERIAL_NUMBER_SIZE 8
  439. time_t start_time, end_time;
  440. BIGNUM *serial_number = NULL;
  441. unsigned char serial_tmp[SERIAL_NUMBER_SIZE];
  442. EVP_PKEY *sign_pkey = NULL, *pkey=NULL;
  443. X509 *x509 = NULL;
  444. X509_NAME *name = NULL, *name_issuer=NULL;
  445. tor_tls_init();
  446. /* Make sure we're part-way through the certificate lifetime, rather
  447. * than having it start right now. Don't choose quite uniformly, since
  448. * then we might pick a time where we're about to expire. Lastly, be
  449. * sure to start on a day boundary. */
  450. time_t now = time(NULL);
  451. /* Our certificate lifetime will be cert_lifetime no matter what, but if we
  452. * start cert_lifetime in the past, we'll have 0 real lifetime. instead we
  453. * start up to (cert_lifetime - min_real_lifetime - start_granularity) in
  454. * the past. */
  455. const time_t min_real_lifetime = 24*3600;
  456. const time_t start_granularity = 24*3600;
  457. time_t earliest_start_time;
  458. /* Don't actually start in the future! */
  459. if (cert_lifetime <= min_real_lifetime + start_granularity) {
  460. earliest_start_time = now - 1;
  461. } else {
  462. earliest_start_time = now + min_real_lifetime + start_granularity
  463. - cert_lifetime;
  464. }
  465. start_time = crypto_rand_time_range(earliest_start_time, now);
  466. /* Round the start time back to the start of a day. */
  467. start_time -= start_time % start_granularity;
  468. end_time = start_time + cert_lifetime;
  469. tor_assert(rsa);
  470. tor_assert(cname);
  471. tor_assert(rsa_sign);
  472. tor_assert(cname_sign);
  473. if (!(sign_pkey = crypto_pk_get_evp_pkey_(rsa_sign,1)))
  474. goto error;
  475. if (!(pkey = crypto_pk_get_evp_pkey_(rsa,0)))
  476. goto error;
  477. if (!(x509 = X509_new()))
  478. goto error;
  479. if (!(X509_set_version(x509, 2)))
  480. goto error;
  481. { /* our serial number is 8 random bytes. */
  482. crypto_rand((char *)serial_tmp, sizeof(serial_tmp));
  483. if (!(serial_number = BN_bin2bn(serial_tmp, sizeof(serial_tmp), NULL)))
  484. goto error;
  485. if (!(BN_to_ASN1_INTEGER(serial_number, X509_get_serialNumber(x509))))
  486. goto error;
  487. }
  488. if (!(name = tor_x509_name_new(cname)))
  489. goto error;
  490. if (!(X509_set_subject_name(x509, name)))
  491. goto error;
  492. if (!(name_issuer = tor_x509_name_new(cname_sign)))
  493. goto error;
  494. if (!(X509_set_issuer_name(x509, name_issuer)))
  495. goto error;
  496. if (!X509_time_adj(X509_get_notBefore(x509),0,&start_time))
  497. goto error;
  498. if (!X509_time_adj(X509_get_notAfter(x509),0,&end_time))
  499. goto error;
  500. if (!X509_set_pubkey(x509, pkey))
  501. goto error;
  502. if (!X509_sign(x509, sign_pkey, EVP_sha256()))
  503. goto error;
  504. goto done;
  505. error:
  506. if (x509) {
  507. X509_free(x509);
  508. x509 = NULL;
  509. }
  510. done:
  511. tls_log_errors(NULL, LOG_WARN, LD_NET, "generating certificate");
  512. if (sign_pkey)
  513. EVP_PKEY_free(sign_pkey);
  514. if (pkey)
  515. EVP_PKEY_free(pkey);
  516. if (serial_number)
  517. BN_clear_free(serial_number);
  518. if (name)
  519. X509_NAME_free(name);
  520. if (name_issuer)
  521. X509_NAME_free(name_issuer);
  522. return x509;
  523. #undef SERIAL_NUMBER_SIZE
  524. }
  525. /** List of ciphers that servers should select from when the client might be
  526. * claiming extra unsupported ciphers in order to avoid fingerprinting. */
  527. static const char SERVER_CIPHER_LIST[] =
  528. #ifdef TLS1_3_TXT_AES_128_GCM_SHA256
  529. /* This one can never actually get selected, since if the client lists it,
  530. * we will assume that the client is honest, and not use this list.
  531. * Nonetheless we list it if it's available, so that the server doesn't
  532. * conclude that it has no valid ciphers if it's running with TLS1.3.
  533. */
  534. TLS1_3_TXT_AES_128_GCM_SHA256 ":"
  535. #endif
  536. TLS1_TXT_DHE_RSA_WITH_AES_256_SHA ":"
  537. TLS1_TXT_DHE_RSA_WITH_AES_128_SHA;
  538. /** List of ciphers that servers should select from when we actually have
  539. * our choice of what cipher to use. */
  540. static const char UNRESTRICTED_SERVER_CIPHER_LIST[] =
  541. /* Here are the TLS 1.3 ciphers we like, in the order we prefer. */
  542. #ifdef TLS1_3_TXT_AES_256_GCM_SHA384
  543. TLS1_3_TXT_AES_256_GCM_SHA384 ":"
  544. #endif
  545. #ifdef TLS1_3_TXT_CHACHA20_POLY1305_SHA256
  546. TLS1_3_TXT_CHACHA20_POLY1305_SHA256 ":"
  547. #endif
  548. #ifdef TLS1_3_TXT_AES_128_GCM_SHA256
  549. TLS1_3_TXT_AES_128_GCM_SHA256 ":"
  550. #endif
  551. #ifdef TLS1_3_TXT_AES_128_CCM_SHA256
  552. TLS1_3_TXT_AES_128_CCM_SHA256 ":"
  553. #endif
  554. /* This list is autogenerated with the gen_server_ciphers.py script;
  555. * don't hand-edit it. */
  556. #ifdef TLS1_TXT_ECDHE_RSA_WITH_AES_256_GCM_SHA384
  557. TLS1_TXT_ECDHE_RSA_WITH_AES_256_GCM_SHA384 ":"
  558. #endif
  559. #ifdef TLS1_TXT_ECDHE_RSA_WITH_AES_128_GCM_SHA256
  560. TLS1_TXT_ECDHE_RSA_WITH_AES_128_GCM_SHA256 ":"
  561. #endif
  562. #ifdef TLS1_TXT_ECDHE_RSA_WITH_AES_256_SHA384
  563. TLS1_TXT_ECDHE_RSA_WITH_AES_256_SHA384 ":"
  564. #endif
  565. #ifdef TLS1_TXT_ECDHE_RSA_WITH_AES_128_SHA256
  566. TLS1_TXT_ECDHE_RSA_WITH_AES_128_SHA256 ":"
  567. #endif
  568. #ifdef TLS1_TXT_ECDHE_RSA_WITH_AES_256_CBC_SHA
  569. TLS1_TXT_ECDHE_RSA_WITH_AES_256_CBC_SHA ":"
  570. #endif
  571. #ifdef TLS1_TXT_ECDHE_RSA_WITH_AES_128_CBC_SHA
  572. TLS1_TXT_ECDHE_RSA_WITH_AES_128_CBC_SHA ":"
  573. #endif
  574. #ifdef TLS1_TXT_DHE_RSA_WITH_AES_256_GCM_SHA384
  575. TLS1_TXT_DHE_RSA_WITH_AES_256_GCM_SHA384 ":"
  576. #endif
  577. #ifdef TLS1_TXT_DHE_RSA_WITH_AES_128_GCM_SHA256
  578. TLS1_TXT_DHE_RSA_WITH_AES_128_GCM_SHA256 ":"
  579. #endif
  580. #ifdef TLS1_TXT_DHE_RSA_WITH_AES_256_CCM
  581. TLS1_TXT_DHE_RSA_WITH_AES_256_CCM ":"
  582. #endif
  583. #ifdef TLS1_TXT_DHE_RSA_WITH_AES_128_CCM
  584. TLS1_TXT_DHE_RSA_WITH_AES_128_CCM ":"
  585. #endif
  586. #ifdef TLS1_TXT_DHE_RSA_WITH_AES_256_SHA256
  587. TLS1_TXT_DHE_RSA_WITH_AES_256_SHA256 ":"
  588. #endif
  589. #ifdef TLS1_TXT_DHE_RSA_WITH_AES_128_SHA256
  590. TLS1_TXT_DHE_RSA_WITH_AES_128_SHA256 ":"
  591. #endif
  592. /* Required */
  593. TLS1_TXT_DHE_RSA_WITH_AES_256_SHA ":"
  594. /* Required */
  595. TLS1_TXT_DHE_RSA_WITH_AES_128_SHA ":"
  596. #ifdef TLS1_TXT_ECDHE_RSA_WITH_CHACHA20_POLY1305
  597. TLS1_TXT_ECDHE_RSA_WITH_CHACHA20_POLY1305 ":"
  598. #endif
  599. #ifdef TLS1_TXT_DHE_RSA_WITH_CHACHA20_POLY1305
  600. TLS1_TXT_DHE_RSA_WITH_CHACHA20_POLY1305
  601. #endif
  602. ;
  603. /* Note: to set up your own private testing network with link crypto
  604. * disabled, set your Tors' cipher list to
  605. * (SSL3_TXT_RSA_NULL_SHA). If you do this, you won't be able to communicate
  606. * with any of the "real" Tors, though. */
  607. #define CIPHER(id, name) name ":"
  608. #define XCIPHER(id, name)
  609. /** List of ciphers that clients should advertise, omitting items that
  610. * our OpenSSL doesn't know about. */
  611. static const char CLIENT_CIPHER_LIST[] =
  612. #include "ciphers.inc"
  613. /* Tell it not to use SSLv2 ciphers, so that it can select an SSLv3 version
  614. * of any cipher we say. */
  615. "!SSLv2"
  616. ;
  617. #undef CIPHER
  618. #undef XCIPHER
  619. /** Free all storage held in <b>cert</b> */
  620. void
  621. tor_x509_cert_free_(tor_x509_cert_t *cert)
  622. {
  623. if (! cert)
  624. return;
  625. if (cert->cert)
  626. X509_free(cert->cert);
  627. tor_free(cert->encoded);
  628. memwipe(cert, 0x03, sizeof(*cert));
  629. /* LCOV_EXCL_BR_START since cert will never be NULL here */
  630. tor_free(cert);
  631. /* LCOV_EXCL_BR_STOP */
  632. }
  633. /**
  634. * Allocate a new tor_x509_cert_t to hold the certificate "x509_cert".
  635. *
  636. * Steals a reference to x509_cert.
  637. */
  638. MOCK_IMPL(STATIC tor_x509_cert_t *,
  639. tor_x509_cert_new,(X509 *x509_cert))
  640. {
  641. tor_x509_cert_t *cert;
  642. EVP_PKEY *pkey;
  643. RSA *rsa;
  644. int length;
  645. unsigned char *buf = NULL;
  646. if (!x509_cert)
  647. return NULL;
  648. length = i2d_X509(x509_cert, &buf);
  649. cert = tor_malloc_zero(sizeof(tor_x509_cert_t));
  650. if (length <= 0 || buf == NULL) {
  651. goto err;
  652. }
  653. cert->encoded_len = (size_t) length;
  654. cert->encoded = tor_malloc(length);
  655. memcpy(cert->encoded, buf, length);
  656. OPENSSL_free(buf);
  657. cert->cert = x509_cert;
  658. crypto_common_digests(&cert->cert_digests,
  659. (char*)cert->encoded, cert->encoded_len);
  660. if ((pkey = X509_get_pubkey(x509_cert)) &&
  661. (rsa = EVP_PKEY_get1_RSA(pkey))) {
  662. crypto_pk_t *pk = crypto_new_pk_from_rsa_(rsa);
  663. if (crypto_pk_get_common_digests(pk, &cert->pkey_digests) < 0) {
  664. crypto_pk_free(pk);
  665. EVP_PKEY_free(pkey);
  666. goto err;
  667. }
  668. cert->pkey_digests_set = 1;
  669. crypto_pk_free(pk);
  670. EVP_PKEY_free(pkey);
  671. }
  672. return cert;
  673. err:
  674. /* LCOV_EXCL_START for the same reason as the exclusion above */
  675. tor_free(cert);
  676. log_err(LD_CRYPTO, "Couldn't wrap encoded X509 certificate.");
  677. X509_free(x509_cert);
  678. return NULL;
  679. /* LCOV_EXCL_STOP */
  680. }
  681. /** Return a new copy of <b>cert</b>. */
  682. tor_x509_cert_t *
  683. tor_x509_cert_dup(const tor_x509_cert_t *cert)
  684. {
  685. tor_assert(cert);
  686. X509 *x509 = cert->cert;
  687. return tor_x509_cert_new(X509_dup(x509));
  688. }
  689. /** Read a DER-encoded X509 cert, of length exactly <b>certificate_len</b>,
  690. * from a <b>certificate</b>. Return a newly allocated tor_x509_cert_t on
  691. * success and NULL on failure. */
  692. tor_x509_cert_t *
  693. tor_x509_cert_decode(const uint8_t *certificate, size_t certificate_len)
  694. {
  695. X509 *x509;
  696. const unsigned char *cp = (const unsigned char *)certificate;
  697. tor_x509_cert_t *newcert;
  698. tor_assert(certificate);
  699. check_no_tls_errors();
  700. if (certificate_len > INT_MAX)
  701. goto err;
  702. x509 = d2i_X509(NULL, &cp, (int)certificate_len);
  703. if (!x509)
  704. goto err; /* Couldn't decode */
  705. if (cp - certificate != (int)certificate_len) {
  706. X509_free(x509);
  707. goto err; /* Didn't use all the bytes */
  708. }
  709. newcert = tor_x509_cert_new(x509);
  710. if (!newcert) {
  711. goto err;
  712. }
  713. if (newcert->encoded_len != certificate_len ||
  714. fast_memneq(newcert->encoded, certificate, certificate_len)) {
  715. /* Cert wasn't in DER */
  716. tor_x509_cert_free(newcert);
  717. goto err;
  718. }
  719. return newcert;
  720. err:
  721. tls_log_errors(NULL, LOG_INFO, LD_CRYPTO, "decoding a certificate");
  722. return NULL;
  723. }
  724. /** Set *<b>encoded_out</b> and *<b>size_out</b> to <b>cert</b>'s encoded DER
  725. * representation and length, respectively. */
  726. void
  727. tor_x509_cert_get_der(const tor_x509_cert_t *cert,
  728. const uint8_t **encoded_out, size_t *size_out)
  729. {
  730. tor_assert(cert);
  731. tor_assert(encoded_out);
  732. tor_assert(size_out);
  733. *encoded_out = cert->encoded;
  734. *size_out = cert->encoded_len;
  735. }
  736. /** Return a set of digests for the public key in <b>cert</b>, or NULL if this
  737. * cert's public key is not one we know how to take the digest of. */
  738. const common_digests_t *
  739. tor_x509_cert_get_id_digests(const tor_x509_cert_t *cert)
  740. {
  741. if (cert->pkey_digests_set)
  742. return &cert->pkey_digests;
  743. else
  744. return NULL;
  745. }
  746. /** Return a set of digests for the public key in <b>cert</b>. */
  747. const common_digests_t *
  748. tor_x509_cert_get_cert_digests(const tor_x509_cert_t *cert)
  749. {
  750. return &cert->cert_digests;
  751. }
  752. /** Remove a reference to <b>ctx</b>, and free it if it has no more
  753. * references. */
  754. static void
  755. tor_tls_context_decref(tor_tls_context_t *ctx)
  756. {
  757. tor_assert(ctx);
  758. if (--ctx->refcnt == 0) {
  759. SSL_CTX_free(ctx->ctx);
  760. tor_x509_cert_free(ctx->my_link_cert);
  761. tor_x509_cert_free(ctx->my_id_cert);
  762. tor_x509_cert_free(ctx->my_auth_cert);
  763. crypto_pk_free(ctx->link_key);
  764. crypto_pk_free(ctx->auth_key);
  765. /* LCOV_EXCL_BR_START since ctx will never be NULL here */
  766. tor_free(ctx);
  767. /* LCOV_EXCL_BR_STOP */
  768. }
  769. }
  770. /** Set *<b>link_cert_out</b> and *<b>id_cert_out</b> to the link certificate
  771. * and ID certificate that we're currently using for our V3 in-protocol
  772. * handshake's certificate chain. If <b>server</b> is true, provide the certs
  773. * that we use in server mode (auth, ID); otherwise, provide the certs that we
  774. * use in client mode. (link, ID) */
  775. int
  776. tor_tls_get_my_certs(int server,
  777. const tor_x509_cert_t **link_cert_out,
  778. const tor_x509_cert_t **id_cert_out)
  779. {
  780. tor_tls_context_t *ctx = server ? server_tls_context : client_tls_context;
  781. if (! ctx)
  782. return -1;
  783. if (link_cert_out)
  784. *link_cert_out = server ? ctx->my_link_cert : ctx->my_auth_cert;
  785. if (id_cert_out)
  786. *id_cert_out = ctx->my_id_cert;
  787. return 0;
  788. }
  789. /**
  790. * Return the authentication key that we use to authenticate ourselves as a
  791. * client in the V3 in-protocol handshake.
  792. */
  793. crypto_pk_t *
  794. tor_tls_get_my_client_auth_key(void)
  795. {
  796. if (! client_tls_context)
  797. return NULL;
  798. return client_tls_context->auth_key;
  799. }
  800. /**
  801. * Return a newly allocated copy of the public key that a certificate
  802. * certifies. Watch out! This returns NULL if the cert's key is not RSA.
  803. */
  804. crypto_pk_t *
  805. tor_tls_cert_get_key(tor_x509_cert_t *cert)
  806. {
  807. crypto_pk_t *result = NULL;
  808. EVP_PKEY *pkey = X509_get_pubkey(cert->cert);
  809. RSA *rsa;
  810. if (!pkey)
  811. return NULL;
  812. rsa = EVP_PKEY_get1_RSA(pkey);
  813. if (!rsa) {
  814. EVP_PKEY_free(pkey);
  815. return NULL;
  816. }
  817. result = crypto_new_pk_from_rsa_(rsa);
  818. EVP_PKEY_free(pkey);
  819. return result;
  820. }
  821. /** Return true iff the other side of <b>tls</b> has authenticated to us, and
  822. * the key certified in <b>cert</b> is the same as the key they used to do it.
  823. */
  824. MOCK_IMPL(int,
  825. tor_tls_cert_matches_key,(const tor_tls_t *tls, const tor_x509_cert_t *cert))
  826. {
  827. X509 *peercert = SSL_get_peer_certificate(tls->ssl);
  828. EVP_PKEY *link_key = NULL, *cert_key = NULL;
  829. int result;
  830. if (!peercert)
  831. return 0;
  832. link_key = X509_get_pubkey(peercert);
  833. cert_key = X509_get_pubkey(cert->cert);
  834. result = link_key && cert_key && EVP_PKEY_cmp(cert_key, link_key) == 1;
  835. X509_free(peercert);
  836. if (link_key)
  837. EVP_PKEY_free(link_key);
  838. if (cert_key)
  839. EVP_PKEY_free(cert_key);
  840. return result;
  841. }
  842. /** Check whether <b>cert</b> is well-formed, currently live, and correctly
  843. * signed by the public key in <b>signing_cert</b>. If <b>check_rsa_1024</b>,
  844. * make sure that it has an RSA key with 1024 bits; otherwise, just check that
  845. * the key is long enough. Return 1 if the cert is good, and 0 if it's bad or
  846. * we couldn't check it. */
  847. int
  848. tor_tls_cert_is_valid(int severity,
  849. const tor_x509_cert_t *cert,
  850. const tor_x509_cert_t *signing_cert,
  851. time_t now,
  852. int check_rsa_1024)
  853. {
  854. check_no_tls_errors();
  855. EVP_PKEY *cert_key;
  856. int r, key_ok = 0;
  857. if (!signing_cert || !cert)
  858. goto bad;
  859. EVP_PKEY *signing_key = X509_get_pubkey(signing_cert->cert);
  860. if (!signing_key)
  861. goto bad;
  862. r = X509_verify(cert->cert, signing_key);
  863. EVP_PKEY_free(signing_key);
  864. if (r <= 0)
  865. goto bad;
  866. /* okay, the signature checked out right. Now let's check the check the
  867. * lifetime. */
  868. if (check_cert_lifetime_internal(severity, cert->cert, now,
  869. 48*60*60, 30*24*60*60) < 0)
  870. goto bad;
  871. cert_key = X509_get_pubkey(cert->cert);
  872. if (check_rsa_1024 && cert_key) {
  873. RSA *rsa = EVP_PKEY_get1_RSA(cert_key);
  874. #ifdef OPENSSL_1_1_API
  875. if (rsa && RSA_bits(rsa) == 1024)
  876. #else
  877. if (rsa && BN_num_bits(rsa->n) == 1024)
  878. #endif
  879. key_ok = 1;
  880. if (rsa)
  881. RSA_free(rsa);
  882. } else if (cert_key) {
  883. int min_bits = 1024;
  884. #ifdef EVP_PKEY_EC
  885. if (EVP_PKEY_base_id(cert_key) == EVP_PKEY_EC)
  886. min_bits = 128;
  887. #endif
  888. if (EVP_PKEY_bits(cert_key) >= min_bits)
  889. key_ok = 1;
  890. }
  891. EVP_PKEY_free(cert_key);
  892. if (!key_ok)
  893. goto bad;
  894. /* XXXX compare DNs or anything? */
  895. return 1;
  896. bad:
  897. tls_log_errors(NULL, LOG_INFO, LD_CRYPTO, "checking a certificate");
  898. return 0;
  899. }
  900. /** Increase the reference count of <b>ctx</b>. */
  901. static void
  902. tor_tls_context_incref(tor_tls_context_t *ctx)
  903. {
  904. ++ctx->refcnt;
  905. }
  906. /** Create new global client and server TLS contexts.
  907. *
  908. * If <b>server_identity</b> is NULL, this will not generate a server
  909. * TLS context. If TOR_TLS_CTX_IS_PUBLIC_SERVER is set in <b>flags</b>, use
  910. * the same TLS context for incoming and outgoing connections, and
  911. * ignore <b>client_identity</b>. If one of TOR_TLS_CTX_USE_ECDHE_P{224,256}
  912. * is set in <b>flags</b>, use that ECDHE group if possible; otherwise use
  913. * the default ECDHE group. */
  914. int
  915. tor_tls_context_init(unsigned flags,
  916. crypto_pk_t *client_identity,
  917. crypto_pk_t *server_identity,
  918. unsigned int key_lifetime)
  919. {
  920. int rv1 = 0;
  921. int rv2 = 0;
  922. const int is_public_server = flags & TOR_TLS_CTX_IS_PUBLIC_SERVER;
  923. check_no_tls_errors();
  924. if (is_public_server) {
  925. tor_tls_context_t *new_ctx;
  926. tor_tls_context_t *old_ctx;
  927. tor_assert(server_identity != NULL);
  928. rv1 = tor_tls_context_init_one(&server_tls_context,
  929. server_identity,
  930. key_lifetime, flags, 0);
  931. if (rv1 >= 0) {
  932. new_ctx = server_tls_context;
  933. tor_tls_context_incref(new_ctx);
  934. old_ctx = client_tls_context;
  935. client_tls_context = new_ctx;
  936. if (old_ctx != NULL) {
  937. tor_tls_context_decref(old_ctx);
  938. }
  939. }
  940. } else {
  941. if (server_identity != NULL) {
  942. rv1 = tor_tls_context_init_one(&server_tls_context,
  943. server_identity,
  944. key_lifetime,
  945. flags,
  946. 0);
  947. } else {
  948. tor_tls_context_t *old_ctx = server_tls_context;
  949. server_tls_context = NULL;
  950. if (old_ctx != NULL) {
  951. tor_tls_context_decref(old_ctx);
  952. }
  953. }
  954. rv2 = tor_tls_context_init_one(&client_tls_context,
  955. client_identity,
  956. key_lifetime,
  957. flags,
  958. 1);
  959. }
  960. tls_log_errors(NULL, LOG_WARN, LD_CRYPTO, "constructing a TLS context");
  961. return MIN(rv1, rv2);
  962. }
  963. /** Create a new global TLS context.
  964. *
  965. * You can call this function multiple times. Each time you call it,
  966. * it generates new certificates; all new connections will use
  967. * the new SSL context.
  968. */
  969. STATIC int
  970. tor_tls_context_init_one(tor_tls_context_t **ppcontext,
  971. crypto_pk_t *identity,
  972. unsigned int key_lifetime,
  973. unsigned int flags,
  974. int is_client)
  975. {
  976. tor_tls_context_t *new_ctx = tor_tls_context_new(identity,
  977. key_lifetime,
  978. flags,
  979. is_client);
  980. tor_tls_context_t *old_ctx = *ppcontext;
  981. if (new_ctx != NULL) {
  982. *ppcontext = new_ctx;
  983. /* Free the old context if one existed. */
  984. if (old_ctx != NULL) {
  985. /* This is safe even if there are open connections: we reference-
  986. * count tor_tls_context_t objects. */
  987. tor_tls_context_decref(old_ctx);
  988. }
  989. }
  990. return ((new_ctx != NULL) ? 0 : -1);
  991. }
  992. /** The group we should use for ecdhe when none was selected. */
  993. #define NID_tor_default_ecdhe_group NID_X9_62_prime256v1
  994. #define RSA_LINK_KEY_BITS 2048
  995. /** Create a new TLS context for use with Tor TLS handshakes.
  996. * <b>identity</b> should be set to the identity key used to sign the
  997. * certificate.
  998. */
  999. STATIC tor_tls_context_t *
  1000. tor_tls_context_new(crypto_pk_t *identity, unsigned int key_lifetime,
  1001. unsigned flags, int is_client)
  1002. {
  1003. crypto_pk_t *rsa = NULL, *rsa_auth = NULL;
  1004. EVP_PKEY *pkey = NULL;
  1005. tor_tls_context_t *result = NULL;
  1006. X509 *cert = NULL, *idcert = NULL, *authcert = NULL;
  1007. char *nickname = NULL, *nn2 = NULL;
  1008. tor_tls_init();
  1009. nickname = crypto_random_hostname(8, 20, "www.", ".net");
  1010. #ifdef DISABLE_V3_LINKPROTO_SERVERSIDE
  1011. nn2 = crypto_random_hostname(8, 20, "www.", ".net");
  1012. #else
  1013. nn2 = crypto_random_hostname(8, 20, "www.", ".com");
  1014. #endif
  1015. /* Generate short-term RSA key for use with TLS. */
  1016. if (!(rsa = crypto_pk_new()))
  1017. goto error;
  1018. if (crypto_pk_generate_key_with_bits(rsa, RSA_LINK_KEY_BITS)<0)
  1019. goto error;
  1020. if (!is_client) {
  1021. /* Generate short-term RSA key for use in the in-protocol ("v3")
  1022. * authentication handshake. */
  1023. if (!(rsa_auth = crypto_pk_new()))
  1024. goto error;
  1025. if (crypto_pk_generate_key(rsa_auth)<0)
  1026. goto error;
  1027. /* Create a link certificate signed by identity key. */
  1028. cert = tor_tls_create_certificate(rsa, identity, nickname, nn2,
  1029. key_lifetime);
  1030. /* Create self-signed certificate for identity key. */
  1031. idcert = tor_tls_create_certificate(identity, identity, nn2, nn2,
  1032. IDENTITY_CERT_LIFETIME);
  1033. /* Create an authentication certificate signed by identity key. */
  1034. authcert = tor_tls_create_certificate(rsa_auth, identity, nickname, nn2,
  1035. key_lifetime);
  1036. if (!cert || !idcert || !authcert) {
  1037. log_warn(LD_CRYPTO, "Error creating certificate");
  1038. goto error;
  1039. }
  1040. }
  1041. result = tor_malloc_zero(sizeof(tor_tls_context_t));
  1042. result->refcnt = 1;
  1043. if (!is_client) {
  1044. result->my_link_cert = tor_x509_cert_new(X509_dup(cert));
  1045. result->my_id_cert = tor_x509_cert_new(X509_dup(idcert));
  1046. result->my_auth_cert = tor_x509_cert_new(X509_dup(authcert));
  1047. if (!result->my_link_cert || !result->my_id_cert || !result->my_auth_cert)
  1048. goto error;
  1049. result->link_key = crypto_pk_dup_key(rsa);
  1050. result->auth_key = crypto_pk_dup_key(rsa_auth);
  1051. }
  1052. #if 0
  1053. /* Tell OpenSSL to only use TLS1. This may have subtly different results
  1054. * from SSLv23_method() with SSLv2 and SSLv3 disabled, so we need to do some
  1055. * investigation before we consider adjusting it. It should be compatible
  1056. * with existing Tors. */
  1057. if (!(result->ctx = SSL_CTX_new(TLSv1_method())))
  1058. goto error;
  1059. #endif /* 0 */
  1060. /* Tell OpenSSL to use TLS 1.0 or later but not SSL2 or SSL3. */
  1061. #ifdef HAVE_TLS_METHOD
  1062. if (!(result->ctx = SSL_CTX_new(TLS_method())))
  1063. goto error;
  1064. #else
  1065. if (!(result->ctx = SSL_CTX_new(SSLv23_method())))
  1066. goto error;
  1067. #endif /* defined(HAVE_TLS_METHOD) */
  1068. SSL_CTX_set_options(result->ctx, SSL_OP_NO_SSLv2);
  1069. SSL_CTX_set_options(result->ctx, SSL_OP_NO_SSLv3);
  1070. /* Prefer the server's ordering of ciphers: the client's ordering has
  1071. * historically been chosen for fingerprinting resistance. */
  1072. SSL_CTX_set_options(result->ctx, SSL_OP_CIPHER_SERVER_PREFERENCE);
  1073. /* Disable TLS tickets if they're supported. We never want to use them;
  1074. * using them can make our perfect forward secrecy a little worse, *and*
  1075. * create an opportunity to fingerprint us (since it's unusual to use them
  1076. * with TLS sessions turned off).
  1077. *
  1078. * In 0.2.4, clients advertise support for them though, to avoid a TLS
  1079. * distinguishability vector. This can give us worse PFS, though, if we
  1080. * get a server that doesn't set SSL_OP_NO_TICKET. With luck, there will
  1081. * be few such servers by the time 0.2.4 is more stable.
  1082. */
  1083. #ifdef SSL_OP_NO_TICKET
  1084. if (! is_client) {
  1085. SSL_CTX_set_options(result->ctx, SSL_OP_NO_TICKET);
  1086. }
  1087. #endif
  1088. SSL_CTX_set_options(result->ctx, SSL_OP_SINGLE_DH_USE);
  1089. SSL_CTX_set_options(result->ctx, SSL_OP_SINGLE_ECDH_USE);
  1090. #ifdef SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION
  1091. SSL_CTX_set_options(result->ctx,
  1092. SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION);
  1093. #endif
  1094. /* Yes, we know what we are doing here. No, we do not treat a renegotiation
  1095. * as authenticating any earlier-received data.
  1096. */
  1097. {
  1098. SSL_CTX_set_options(result->ctx,
  1099. SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION);
  1100. }
  1101. /* Don't actually allow compression; it uses RAM and time, it makes TLS
  1102. * vulnerable to CRIME-style attacks, and most of the data we transmit over
  1103. * TLS is encrypted (and therefore uncompressible) anyway. */
  1104. #ifdef SSL_OP_NO_COMPRESSION
  1105. SSL_CTX_set_options(result->ctx, SSL_OP_NO_COMPRESSION);
  1106. #endif
  1107. #if OPENSSL_VERSION_NUMBER < OPENSSL_V_SERIES(1,1,0)
  1108. #ifndef OPENSSL_NO_COMP
  1109. if (result->ctx->comp_methods)
  1110. result->ctx->comp_methods = NULL;
  1111. #endif
  1112. #endif /* OPENSSL_VERSION_NUMBER < OPENSSL_V_SERIES(1,1,0) */
  1113. #ifdef SSL_MODE_RELEASE_BUFFERS
  1114. SSL_CTX_set_mode(result->ctx, SSL_MODE_RELEASE_BUFFERS);
  1115. #endif
  1116. if (! is_client) {
  1117. if (cert && !SSL_CTX_use_certificate(result->ctx,cert))
  1118. goto error;
  1119. X509_free(cert); /* We just added a reference to cert. */
  1120. cert=NULL;
  1121. if (idcert) {
  1122. X509_STORE *s = SSL_CTX_get_cert_store(result->ctx);
  1123. tor_assert(s);
  1124. X509_STORE_add_cert(s, idcert);
  1125. X509_free(idcert); /* The context now owns the reference to idcert */
  1126. idcert = NULL;
  1127. }
  1128. }
  1129. SSL_CTX_set_session_cache_mode(result->ctx, SSL_SESS_CACHE_OFF);
  1130. if (!is_client) {
  1131. tor_assert(rsa);
  1132. if (!(pkey = crypto_pk_get_evp_pkey_(rsa,1)))
  1133. goto error;
  1134. if (!SSL_CTX_use_PrivateKey(result->ctx, pkey))
  1135. goto error;
  1136. EVP_PKEY_free(pkey);
  1137. pkey = NULL;
  1138. if (!SSL_CTX_check_private_key(result->ctx))
  1139. goto error;
  1140. }
  1141. {
  1142. crypto_dh_t *dh = crypto_dh_new(DH_TYPE_TLS);
  1143. tor_assert(dh);
  1144. SSL_CTX_set_tmp_dh(result->ctx, crypto_dh_get_dh_(dh));
  1145. crypto_dh_free(dh);
  1146. }
  1147. if (! is_client) {
  1148. int nid;
  1149. EC_KEY *ec_key;
  1150. if (flags & TOR_TLS_CTX_USE_ECDHE_P224)
  1151. nid = NID_secp224r1;
  1152. else if (flags & TOR_TLS_CTX_USE_ECDHE_P256)
  1153. nid = NID_X9_62_prime256v1;
  1154. else
  1155. nid = NID_tor_default_ecdhe_group;
  1156. /* Use P-256 for ECDHE. */
  1157. ec_key = EC_KEY_new_by_curve_name(nid);
  1158. if (ec_key != NULL) /*XXXX Handle errors? */
  1159. SSL_CTX_set_tmp_ecdh(result->ctx, ec_key);
  1160. EC_KEY_free(ec_key);
  1161. }
  1162. SSL_CTX_set_verify(result->ctx, SSL_VERIFY_PEER,
  1163. always_accept_verify_cb);
  1164. /* let us realloc bufs that we're writing from */
  1165. SSL_CTX_set_mode(result->ctx, SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER);
  1166. if (rsa)
  1167. crypto_pk_free(rsa);
  1168. if (rsa_auth)
  1169. crypto_pk_free(rsa_auth);
  1170. X509_free(authcert);
  1171. tor_free(nickname);
  1172. tor_free(nn2);
  1173. return result;
  1174. error:
  1175. tls_log_errors(NULL, LOG_WARN, LD_NET, "creating TLS context");
  1176. tor_free(nickname);
  1177. tor_free(nn2);
  1178. if (pkey)
  1179. EVP_PKEY_free(pkey);
  1180. if (rsa)
  1181. crypto_pk_free(rsa);
  1182. if (rsa_auth)
  1183. crypto_pk_free(rsa_auth);
  1184. if (result)
  1185. tor_tls_context_decref(result);
  1186. if (cert)
  1187. X509_free(cert);
  1188. if (idcert)
  1189. X509_free(idcert);
  1190. if (authcert)
  1191. X509_free(authcert);
  1192. return NULL;
  1193. }
  1194. /** Invoked when a TLS state changes: log the change at severity 'debug' */
  1195. STATIC void
  1196. tor_tls_debug_state_callback(const SSL *ssl, int type, int val)
  1197. {
  1198. /* LCOV_EXCL_START since this depends on whether debug is captured or not */
  1199. log_debug(LD_HANDSHAKE, "SSL %p is now in state %s [type=%d,val=%d].",
  1200. ssl, SSL_state_string_long(ssl), type, val);
  1201. /* LCOV_EXCL_STOP */
  1202. }
  1203. /* Return the name of the negotiated ciphersuite in use on <b>tls</b> */
  1204. const char *
  1205. tor_tls_get_ciphersuite_name(tor_tls_t *tls)
  1206. {
  1207. return SSL_get_cipher(tls->ssl);
  1208. }
  1209. /* Here's the old V2 cipher list we sent from 0.2.1.1-alpha up to
  1210. * 0.2.3.17-beta. If a client is using this list, we can't believe the ciphers
  1211. * that it claims to support. We'll prune this list to remove the ciphers
  1212. * *we* don't recognize. */
  1213. STATIC uint16_t v2_cipher_list[] = {
  1214. 0xc00a, /* TLS1_TXT_ECDHE_ECDSA_WITH_AES_256_CBC_SHA */
  1215. 0xc014, /* TLS1_TXT_ECDHE_RSA_WITH_AES_256_CBC_SHA */
  1216. 0x0039, /* TLS1_TXT_DHE_RSA_WITH_AES_256_SHA */
  1217. 0x0038, /* TLS1_TXT_DHE_DSS_WITH_AES_256_SHA */
  1218. 0xc00f, /* TLS1_TXT_ECDH_RSA_WITH_AES_256_CBC_SHA */
  1219. 0xc005, /* TLS1_TXT_ECDH_ECDSA_WITH_AES_256_CBC_SHA */
  1220. 0x0035, /* TLS1_TXT_RSA_WITH_AES_256_SHA */
  1221. 0xc007, /* TLS1_TXT_ECDHE_ECDSA_WITH_RC4_128_SHA */
  1222. 0xc009, /* TLS1_TXT_ECDHE_ECDSA_WITH_AES_128_CBC_SHA */
  1223. 0xc011, /* TLS1_TXT_ECDHE_RSA_WITH_RC4_128_SHA */
  1224. 0xc013, /* TLS1_TXT_ECDHE_RSA_WITH_AES_128_CBC_SHA */
  1225. 0x0033, /* TLS1_TXT_DHE_RSA_WITH_AES_128_SHA */
  1226. 0x0032, /* TLS1_TXT_DHE_DSS_WITH_AES_128_SHA */
  1227. 0xc00c, /* TLS1_TXT_ECDH_RSA_WITH_RC4_128_SHA */
  1228. 0xc00e, /* TLS1_TXT_ECDH_RSA_WITH_AES_128_CBC_SHA */
  1229. 0xc002, /* TLS1_TXT_ECDH_ECDSA_WITH_RC4_128_SHA */
  1230. 0xc004, /* TLS1_TXT_ECDH_ECDSA_WITH_AES_128_CBC_SHA */
  1231. 0x0004, /* SSL3_TXT_RSA_RC4_128_MD5 */
  1232. 0x0005, /* SSL3_TXT_RSA_RC4_128_SHA */
  1233. 0x002f, /* TLS1_TXT_RSA_WITH_AES_128_SHA */
  1234. 0xc008, /* TLS1_TXT_ECDHE_ECDSA_WITH_DES_192_CBC3_SHA */
  1235. 0xc012, /* TLS1_TXT_ECDHE_RSA_WITH_DES_192_CBC3_SHA */
  1236. 0x0016, /* SSL3_TXT_EDH_RSA_DES_192_CBC3_SHA */
  1237. 0x0013, /* SSL3_TXT_EDH_DSS_DES_192_CBC3_SHA */
  1238. 0xc00d, /* TLS1_TXT_ECDH_RSA_WITH_DES_192_CBC3_SHA */
  1239. 0xc003, /* TLS1_TXT_ECDH_ECDSA_WITH_DES_192_CBC3_SHA */
  1240. 0xfeff, /* SSL3_TXT_RSA_FIPS_WITH_3DES_EDE_CBC_SHA */
  1241. 0x000a, /* SSL3_TXT_RSA_DES_192_CBC3_SHA */
  1242. 0
  1243. };
  1244. /** Have we removed the unrecognized ciphers from v2_cipher_list yet? */
  1245. static int v2_cipher_list_pruned = 0;
  1246. /** Return 0 if <b>m</b> does not support the cipher with ID <b>cipher</b>;
  1247. * return 1 if it does support it, or if we have no way to tell. */
  1248. STATIC int
  1249. find_cipher_by_id(const SSL *ssl, const SSL_METHOD *m, uint16_t cipher)
  1250. {
  1251. const SSL_CIPHER *c;
  1252. #ifdef HAVE_SSL_CIPHER_FIND
  1253. (void) m;
  1254. {
  1255. unsigned char cipherid[3];
  1256. tor_assert(ssl);
  1257. set_uint16(cipherid, htons(cipher));
  1258. cipherid[2] = 0; /* If ssl23_get_cipher_by_char finds no cipher starting
  1259. * with a two-byte 'cipherid', it may look for a v2
  1260. * cipher with the appropriate 3 bytes. */
  1261. c = SSL_CIPHER_find((SSL*)ssl, cipherid);
  1262. if (c)
  1263. tor_assert((SSL_CIPHER_get_id(c) & 0xffff) == cipher);
  1264. return c != NULL;
  1265. }
  1266. #else /* !(defined(HAVE_SSL_CIPHER_FIND)) */
  1267. # if defined(HAVE_STRUCT_SSL_METHOD_ST_GET_CIPHER_BY_CHAR)
  1268. if (m && m->get_cipher_by_char) {
  1269. unsigned char cipherid[3];
  1270. set_uint16(cipherid, htons(cipher));
  1271. cipherid[2] = 0; /* If ssl23_get_cipher_by_char finds no cipher starting
  1272. * with a two-byte 'cipherid', it may look for a v2
  1273. * cipher with the appropriate 3 bytes. */
  1274. c = m->get_cipher_by_char(cipherid);
  1275. if (c)
  1276. tor_assert((c->id & 0xffff) == cipher);
  1277. return c != NULL;
  1278. }
  1279. #endif /* defined(HAVE_STRUCT_SSL_METHOD_ST_GET_CIPHER_BY_CHAR) */
  1280. # ifndef OPENSSL_1_1_API
  1281. if (m && m->get_cipher && m->num_ciphers) {
  1282. /* It would seem that some of the "let's-clean-up-openssl" forks have
  1283. * removed the get_cipher_by_char function. Okay, so now you get a
  1284. * quadratic search.
  1285. */
  1286. int i;
  1287. for (i = 0; i < m->num_ciphers(); ++i) {
  1288. c = m->get_cipher(i);
  1289. if (c && (c->id & 0xffff) == cipher) {
  1290. return 1;
  1291. }
  1292. }
  1293. return 0;
  1294. }
  1295. #endif /* !defined(OPENSSL_1_1_API) */
  1296. (void) ssl;
  1297. (void) m;
  1298. (void) cipher;
  1299. return 1; /* No way to search */
  1300. #endif /* defined(HAVE_SSL_CIPHER_FIND) */
  1301. }
  1302. /** Remove from v2_cipher_list every cipher that we don't support, so that
  1303. * comparing v2_cipher_list to a client's cipher list will give a sensible
  1304. * result. */
  1305. static void
  1306. prune_v2_cipher_list(const SSL *ssl)
  1307. {
  1308. uint16_t *inp, *outp;
  1309. #ifdef HAVE_TLS_METHOD
  1310. const SSL_METHOD *m = TLS_method();
  1311. #else
  1312. const SSL_METHOD *m = SSLv23_method();
  1313. #endif
  1314. inp = outp = v2_cipher_list;
  1315. while (*inp) {
  1316. if (find_cipher_by_id(ssl, m, *inp)) {
  1317. *outp++ = *inp++;
  1318. } else {
  1319. inp++;
  1320. }
  1321. }
  1322. *outp = 0;
  1323. v2_cipher_list_pruned = 1;
  1324. }
  1325. /** Examine the client cipher list in <b>ssl</b>, and determine what kind of
  1326. * client it is. Return one of CIPHERS_ERR, CIPHERS_V1, CIPHERS_V2,
  1327. * CIPHERS_UNRESTRICTED.
  1328. **/
  1329. STATIC int
  1330. tor_tls_classify_client_ciphers(const SSL *ssl,
  1331. STACK_OF(SSL_CIPHER) *peer_ciphers)
  1332. {
  1333. int i, res;
  1334. tor_tls_t *tor_tls;
  1335. if (PREDICT_UNLIKELY(!v2_cipher_list_pruned))
  1336. prune_v2_cipher_list(ssl);
  1337. tor_tls = tor_tls_get_by_ssl(ssl);
  1338. if (tor_tls && tor_tls->client_cipher_list_type)
  1339. return tor_tls->client_cipher_list_type;
  1340. /* If we reached this point, we just got a client hello. See if there is
  1341. * a cipher list. */
  1342. if (!peer_ciphers) {
  1343. log_info(LD_NET, "No ciphers on session");
  1344. res = CIPHERS_ERR;
  1345. goto done;
  1346. }
  1347. /* Now we need to see if there are any ciphers whose presence means we're
  1348. * dealing with an updated Tor. */
  1349. for (i = 0; i < sk_SSL_CIPHER_num(peer_ciphers); ++i) {
  1350. const SSL_CIPHER *cipher = sk_SSL_CIPHER_value(peer_ciphers, i);
  1351. const char *ciphername = SSL_CIPHER_get_name(cipher);
  1352. if (strcmp(ciphername, TLS1_TXT_DHE_RSA_WITH_AES_128_SHA) &&
  1353. strcmp(ciphername, TLS1_TXT_DHE_RSA_WITH_AES_256_SHA) &&
  1354. strcmp(ciphername, SSL3_TXT_EDH_RSA_DES_192_CBC3_SHA) &&
  1355. strcmp(ciphername, "(NONE)")) {
  1356. log_debug(LD_NET, "Got a non-version-1 cipher called '%s'", ciphername);
  1357. // return 1;
  1358. goto v2_or_higher;
  1359. }
  1360. }
  1361. res = CIPHERS_V1;
  1362. goto done;
  1363. v2_or_higher:
  1364. {
  1365. const uint16_t *v2_cipher = v2_cipher_list;
  1366. for (i = 0; i < sk_SSL_CIPHER_num(peer_ciphers); ++i) {
  1367. const SSL_CIPHER *cipher = sk_SSL_CIPHER_value(peer_ciphers, i);
  1368. uint16_t id = SSL_CIPHER_get_id(cipher) & 0xffff;
  1369. if (id == 0x00ff) /* extended renegotiation indicator. */
  1370. continue;
  1371. if (!id || id != *v2_cipher) {
  1372. res = CIPHERS_UNRESTRICTED;
  1373. goto dump_ciphers;
  1374. }
  1375. ++v2_cipher;
  1376. }
  1377. if (*v2_cipher != 0) {
  1378. res = CIPHERS_UNRESTRICTED;
  1379. goto dump_ciphers;
  1380. }
  1381. res = CIPHERS_V2;
  1382. }
  1383. dump_ciphers:
  1384. {
  1385. smartlist_t *elts = smartlist_new();
  1386. char *s;
  1387. for (i = 0; i < sk_SSL_CIPHER_num(peer_ciphers); ++i) {
  1388. const SSL_CIPHER *cipher = sk_SSL_CIPHER_value(peer_ciphers, i);
  1389. const char *ciphername = SSL_CIPHER_get_name(cipher);
  1390. smartlist_add(elts, (char*)ciphername);
  1391. }
  1392. s = smartlist_join_strings(elts, ":", 0, NULL);
  1393. log_debug(LD_NET, "Got a %s V2/V3 cipher list from %s. It is: '%s'",
  1394. (res == CIPHERS_V2) ? "fictitious" : "real", ADDR(tor_tls), s);
  1395. tor_free(s);
  1396. smartlist_free(elts);
  1397. }
  1398. done:
  1399. if (tor_tls)
  1400. return tor_tls->client_cipher_list_type = res;
  1401. return res;
  1402. }
  1403. /** Return true iff the cipher list suggested by the client for <b>ssl</b> is
  1404. * a list that indicates that the client knows how to do the v2 TLS connection
  1405. * handshake. */
  1406. STATIC int
  1407. tor_tls_client_is_using_v2_ciphers(const SSL *ssl)
  1408. {
  1409. STACK_OF(SSL_CIPHER) *ciphers;
  1410. #ifdef HAVE_SSL_GET_CLIENT_CIPHERS
  1411. ciphers = SSL_get_client_ciphers(ssl);
  1412. #else
  1413. SSL_SESSION *session;
  1414. if (!(session = SSL_get_session((SSL *)ssl))) {
  1415. log_info(LD_NET, "No session on TLS?");
  1416. return CIPHERS_ERR;
  1417. }
  1418. ciphers = session->ciphers;
  1419. #endif /* defined(HAVE_SSL_GET_CLIENT_CIPHERS) */
  1420. return tor_tls_classify_client_ciphers(ssl, ciphers) >= CIPHERS_V2;
  1421. }
  1422. /** Invoked when we're accepting a connection on <b>ssl</b>, and the connection
  1423. * changes state. We use this:
  1424. * <ul><li>To alter the state of the handshake partway through, so we
  1425. * do not send or request extra certificates in v2 handshakes.</li>
  1426. * <li>To detect renegotiation</li></ul>
  1427. */
  1428. STATIC void
  1429. tor_tls_server_info_callback(const SSL *ssl, int type, int val)
  1430. {
  1431. tor_tls_t *tls;
  1432. (void) val;
  1433. IF_BUG_ONCE(ssl == NULL) {
  1434. return; // LCOV_EXCL_LINE
  1435. }
  1436. tor_tls_debug_state_callback(ssl, type, val);
  1437. if (type != SSL_CB_ACCEPT_LOOP)
  1438. return;
  1439. OSSL_HANDSHAKE_STATE ssl_state = SSL_get_state(ssl);
  1440. if (! STATE_IS_SW_SERVER_HELLO(ssl_state))
  1441. return;
  1442. tls = tor_tls_get_by_ssl(ssl);
  1443. if (tls) {
  1444. /* Check whether we're watching for renegotiates. If so, this is one! */
  1445. if (tls->negotiated_callback)
  1446. tls->got_renegotiate = 1;
  1447. if (tls->server_handshake_count < 127) /*avoid any overflow possibility*/
  1448. ++tls->server_handshake_count;
  1449. } else {
  1450. log_warn(LD_BUG, "Couldn't look up the tls for an SSL*. How odd!");
  1451. return;
  1452. }
  1453. /* Now check the cipher list. */
  1454. if (tor_tls_client_is_using_v2_ciphers(ssl)) {
  1455. if (tls->wasV2Handshake)
  1456. return; /* We already turned this stuff off for the first handshake;
  1457. * This is a renegotiation. */
  1458. /* Yes, we're casting away the const from ssl. This is very naughty of us.
  1459. * Let's hope openssl doesn't notice! */
  1460. /* Set SSL_MODE_NO_AUTO_CHAIN to keep from sending back any extra certs. */
  1461. SSL_set_mode((SSL*) ssl, SSL_MODE_NO_AUTO_CHAIN);
  1462. /* Don't send a hello request. */
  1463. SSL_set_verify((SSL*) ssl, SSL_VERIFY_NONE, NULL);
  1464. if (tls) {
  1465. tls->wasV2Handshake = 1;
  1466. } else {
  1467. /* LCOV_EXCL_START this line is not reachable */
  1468. log_warn(LD_BUG, "Couldn't look up the tls for an SSL*. How odd!");
  1469. /* LCOV_EXCL_STOP */
  1470. }
  1471. }
  1472. }
  1473. /** Callback to get invoked on a server after we've read the list of ciphers
  1474. * the client supports, but before we pick our own ciphersuite.
  1475. *
  1476. * We can't abuse an info_cb for this, since by the time one of the
  1477. * client_hello info_cbs is called, we've already picked which ciphersuite to
  1478. * use.
  1479. *
  1480. * Technically, this function is an abuse of this callback, since the point of
  1481. * a session_secret_cb is to try to set up and/or verify a shared-secret for
  1482. * authentication on the fly. But as long as we return 0, we won't actually be
  1483. * setting up a shared secret, and all will be fine.
  1484. */
  1485. STATIC int
  1486. tor_tls_session_secret_cb(SSL *ssl, void *secret, int *secret_len,
  1487. STACK_OF(SSL_CIPHER) *peer_ciphers,
  1488. CONST_IF_OPENSSL_1_1_API SSL_CIPHER **cipher,
  1489. void *arg)
  1490. {
  1491. (void) secret;
  1492. (void) secret_len;
  1493. (void) peer_ciphers;
  1494. (void) cipher;
  1495. (void) arg;
  1496. if (tor_tls_classify_client_ciphers(ssl, peer_ciphers) ==
  1497. CIPHERS_UNRESTRICTED) {
  1498. SSL_set_cipher_list(ssl, UNRESTRICTED_SERVER_CIPHER_LIST);
  1499. }
  1500. SSL_set_session_secret_cb(ssl, NULL, NULL);
  1501. return 0;
  1502. }
  1503. static void
  1504. tor_tls_setup_session_secret_cb(tor_tls_t *tls)
  1505. {
  1506. SSL_set_session_secret_cb(tls->ssl, tor_tls_session_secret_cb, NULL);
  1507. }
  1508. /** Create a new TLS object from a file descriptor, and a flag to
  1509. * determine whether it is functioning as a server.
  1510. */
  1511. tor_tls_t *
  1512. tor_tls_new(int sock, int isServer)
  1513. {
  1514. BIO *bio = NULL;
  1515. tor_tls_t *result = tor_malloc_zero(sizeof(tor_tls_t));
  1516. tor_tls_context_t *context = isServer ? server_tls_context :
  1517. client_tls_context;
  1518. result->magic = TOR_TLS_MAGIC;
  1519. check_no_tls_errors();
  1520. tor_assert(context); /* make sure somebody made it first */
  1521. if (!(result->ssl = SSL_new(context->ctx))) {
  1522. tls_log_errors(NULL, LOG_WARN, LD_NET, "creating SSL object");
  1523. tor_free(result);
  1524. goto err;
  1525. }
  1526. #ifdef SSL_set_tlsext_host_name
  1527. /* Browsers use the TLS hostname extension, so we should too. */
  1528. if (!isServer) {
  1529. char *fake_hostname = crypto_random_hostname(4,25, "www.",".com");
  1530. SSL_set_tlsext_host_name(result->ssl, fake_hostname);
  1531. tor_free(fake_hostname);
  1532. }
  1533. #endif /* defined(SSL_set_tlsext_host_name) */
  1534. if (!SSL_set_cipher_list(result->ssl,
  1535. isServer ? SERVER_CIPHER_LIST : CLIENT_CIPHER_LIST)) {
  1536. tls_log_errors(NULL, LOG_WARN, LD_NET, "setting ciphers");
  1537. #ifdef SSL_set_tlsext_host_name
  1538. SSL_set_tlsext_host_name(result->ssl, NULL);
  1539. #endif
  1540. SSL_free(result->ssl);
  1541. tor_free(result);
  1542. goto err;
  1543. }
  1544. result->socket = sock;
  1545. bio = BIO_new_socket(sock, BIO_NOCLOSE);
  1546. if (! bio) {
  1547. tls_log_errors(NULL, LOG_WARN, LD_NET, "opening BIO");
  1548. #ifdef SSL_set_tlsext_host_name
  1549. SSL_set_tlsext_host_name(result->ssl, NULL);
  1550. #endif
  1551. SSL_free(result->ssl);
  1552. tor_free(result);
  1553. goto err;
  1554. }
  1555. {
  1556. int set_worked =
  1557. SSL_set_ex_data(result->ssl, tor_tls_object_ex_data_index, result);
  1558. if (!set_worked) {
  1559. log_warn(LD_BUG,
  1560. "Couldn't set the tls for an SSL*; connection will fail");
  1561. }
  1562. }
  1563. SSL_set_bio(result->ssl, bio, bio);
  1564. tor_tls_context_incref(context);
  1565. result->context = context;
  1566. result->state = TOR_TLS_ST_HANDSHAKE;
  1567. result->isServer = isServer;
  1568. result->wantwrite_n = 0;
  1569. result->last_write_count = (unsigned long) BIO_number_written(bio);
  1570. result->last_read_count = (unsigned long) BIO_number_read(bio);
  1571. if (result->last_write_count || result->last_read_count) {
  1572. log_warn(LD_NET, "Newly created BIO has read count %lu, write count %lu",
  1573. result->last_read_count, result->last_write_count);
  1574. }
  1575. if (isServer) {
  1576. SSL_set_info_callback(result->ssl, tor_tls_server_info_callback);
  1577. } else {
  1578. SSL_set_info_callback(result->ssl, tor_tls_debug_state_callback);
  1579. }
  1580. if (isServer)
  1581. tor_tls_setup_session_secret_cb(result);
  1582. goto done;
  1583. err:
  1584. result = NULL;
  1585. done:
  1586. /* Not expected to get called. */
  1587. tls_log_errors(NULL, LOG_WARN, LD_NET, "creating tor_tls_t object");
  1588. return result;
  1589. }
  1590. /** Make future log messages about <b>tls</b> display the address
  1591. * <b>address</b>.
  1592. */
  1593. void
  1594. tor_tls_set_logged_address(tor_tls_t *tls, const char *address)
  1595. {
  1596. tor_assert(tls);
  1597. tor_free(tls->address);
  1598. tls->address = tor_strdup(address);
  1599. }
  1600. /** Set <b>cb</b> to be called with argument <b>arg</b> whenever <b>tls</b>
  1601. * next gets a client-side renegotiate in the middle of a read. Do not
  1602. * invoke this function until <em>after</em> initial handshaking is done!
  1603. */
  1604. void
  1605. tor_tls_set_renegotiate_callback(tor_tls_t *tls,
  1606. void (*cb)(tor_tls_t *, void *arg),
  1607. void *arg)
  1608. {
  1609. tls->negotiated_callback = cb;
  1610. tls->callback_arg = arg;
  1611. tls->got_renegotiate = 0;
  1612. if (cb) {
  1613. SSL_set_info_callback(tls->ssl, tor_tls_server_info_callback);
  1614. } else {
  1615. SSL_set_info_callback(tls->ssl, tor_tls_debug_state_callback);
  1616. }
  1617. }
  1618. /** If this version of openssl requires it, turn on renegotiation on
  1619. * <b>tls</b>.
  1620. */
  1621. void
  1622. tor_tls_unblock_renegotiation(tor_tls_t *tls)
  1623. {
  1624. /* Yes, we know what we are doing here. No, we do not treat a renegotiation
  1625. * as authenticating any earlier-received data. */
  1626. SSL_set_options(tls->ssl,
  1627. SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION);
  1628. }
  1629. /** If this version of openssl supports it, turn off renegotiation on
  1630. * <b>tls</b>. (Our protocol never requires this for security, but it's nice
  1631. * to use belt-and-suspenders here.)
  1632. */
  1633. void
  1634. tor_tls_block_renegotiation(tor_tls_t *tls)
  1635. {
  1636. #ifdef SUPPORT_UNSAFE_RENEGOTIATION_FLAG
  1637. tls->ssl->s3->flags &= ~SSL3_FLAGS_ALLOW_UNSAFE_LEGACY_RENEGOTIATION;
  1638. #else
  1639. (void) tls;
  1640. #endif
  1641. }
  1642. /** Assert that the flags that allow legacy renegotiation are still set */
  1643. void
  1644. tor_tls_assert_renegotiation_unblocked(tor_tls_t *tls)
  1645. {
  1646. #if defined(SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION) && \
  1647. SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION != 0
  1648. long options = SSL_get_options(tls->ssl);
  1649. tor_assert(0 != (options & SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION));
  1650. #else
  1651. (void) tls;
  1652. #endif /* defined(SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION) && ... */
  1653. }
  1654. /** Return whether this tls initiated the connect (client) or
  1655. * received it (server). */
  1656. int
  1657. tor_tls_is_server(tor_tls_t *tls)
  1658. {
  1659. tor_assert(tls);
  1660. return tls->isServer;
  1661. }
  1662. /** Release resources associated with a TLS object. Does not close the
  1663. * underlying file descriptor.
  1664. */
  1665. void
  1666. tor_tls_free_(tor_tls_t *tls)
  1667. {
  1668. if (!tls)
  1669. return;
  1670. tor_assert(tls->ssl);
  1671. {
  1672. size_t r,w;
  1673. tor_tls_get_n_raw_bytes(tls,&r,&w); /* ensure written_by_tls is updated */
  1674. }
  1675. #ifdef SSL_set_tlsext_host_name
  1676. SSL_set_tlsext_host_name(tls->ssl, NULL);
  1677. #endif
  1678. SSL_free(tls->ssl);
  1679. tls->ssl = NULL;
  1680. tls->negotiated_callback = NULL;
  1681. if (tls->context)
  1682. tor_tls_context_decref(tls->context);
  1683. tor_free(tls->address);
  1684. tls->magic = 0x99999999;
  1685. tor_free(tls);
  1686. }
  1687. /** Underlying function for TLS reading. Reads up to <b>len</b>
  1688. * characters from <b>tls</b> into <b>cp</b>. On success, returns the
  1689. * number of characters read. On failure, returns TOR_TLS_ERROR,
  1690. * TOR_TLS_CLOSE, TOR_TLS_WANTREAD, or TOR_TLS_WANTWRITE.
  1691. */
  1692. MOCK_IMPL(int,
  1693. tor_tls_read,(tor_tls_t *tls, char *cp, size_t len))
  1694. {
  1695. int r, err;
  1696. tor_assert(tls);
  1697. tor_assert(tls->ssl);
  1698. tor_assert(tls->state == TOR_TLS_ST_OPEN);
  1699. tor_assert(len<INT_MAX);
  1700. r = SSL_read(tls->ssl, cp, (int)len);
  1701. if (r > 0) {
  1702. if (tls->got_renegotiate) {
  1703. /* Renegotiation happened! */
  1704. log_info(LD_NET, "Got a TLS renegotiation from %s", ADDR(tls));
  1705. if (tls->negotiated_callback)
  1706. tls->negotiated_callback(tls, tls->callback_arg);
  1707. tls->got_renegotiate = 0;
  1708. }
  1709. return r;
  1710. }
  1711. err = tor_tls_get_error(tls, r, CATCH_ZERO, "reading", LOG_DEBUG, LD_NET);
  1712. if (err == TOR_TLS_ZERORETURN_ || err == TOR_TLS_CLOSE) {
  1713. log_debug(LD_NET,"read returned r=%d; TLS is closed",r);
  1714. tls->state = TOR_TLS_ST_CLOSED;
  1715. return TOR_TLS_CLOSE;
  1716. } else {
  1717. tor_assert(err != TOR_TLS_DONE);
  1718. log_debug(LD_NET,"read returned r=%d, err=%d",r,err);
  1719. return err;
  1720. }
  1721. }
  1722. /** Total number of bytes that we've used TLS to send. Used to track TLS
  1723. * overhead. */
  1724. STATIC uint64_t total_bytes_written_over_tls = 0;
  1725. /** Total number of bytes that TLS has put on the network for us. Used to
  1726. * track TLS overhead. */
  1727. STATIC uint64_t total_bytes_written_by_tls = 0;
  1728. /** Underlying function for TLS writing. Write up to <b>n</b>
  1729. * characters from <b>cp</b> onto <b>tls</b>. On success, returns the
  1730. * number of characters written. On failure, returns TOR_TLS_ERROR,
  1731. * TOR_TLS_WANTREAD, or TOR_TLS_WANTWRITE.
  1732. */
  1733. int
  1734. tor_tls_write(tor_tls_t *tls, const char *cp, size_t n)
  1735. {
  1736. int r, err;
  1737. tor_assert(tls);
  1738. tor_assert(tls->ssl);
  1739. tor_assert(tls->state == TOR_TLS_ST_OPEN);
  1740. tor_assert(n < INT_MAX);
  1741. if (n == 0)
  1742. return 0;
  1743. if (tls->wantwrite_n) {
  1744. /* if WANTWRITE last time, we must use the _same_ n as before */
  1745. tor_assert(n >= tls->wantwrite_n);
  1746. log_debug(LD_NET,"resuming pending-write, (%d to flush, reusing %d)",
  1747. (int)n, (int)tls->wantwrite_n);
  1748. n = tls->wantwrite_n;
  1749. tls->wantwrite_n = 0;
  1750. }
  1751. r = SSL_write(tls->ssl, cp, (int)n);
  1752. err = tor_tls_get_error(tls, r, 0, "writing", LOG_INFO, LD_NET);
  1753. if (err == TOR_TLS_DONE) {
  1754. total_bytes_written_over_tls += r;
  1755. return r;
  1756. }
  1757. if (err == TOR_TLS_WANTWRITE || err == TOR_TLS_WANTREAD) {
  1758. tls->wantwrite_n = n;
  1759. }
  1760. return err;
  1761. }
  1762. /** Perform initial handshake on <b>tls</b>. When finished, returns
  1763. * TOR_TLS_DONE. On failure, returns TOR_TLS_ERROR, TOR_TLS_WANTREAD,
  1764. * or TOR_TLS_WANTWRITE.
  1765. */
  1766. int
  1767. tor_tls_handshake(tor_tls_t *tls)
  1768. {
  1769. int r;
  1770. tor_assert(tls);
  1771. tor_assert(tls->ssl);
  1772. tor_assert(tls->state == TOR_TLS_ST_HANDSHAKE);
  1773. check_no_tls_errors();
  1774. OSSL_HANDSHAKE_STATE oldstate = SSL_get_state(tls->ssl);
  1775. if (tls->isServer) {
  1776. log_debug(LD_HANDSHAKE, "About to call SSL_accept on %p (%s)", tls,
  1777. SSL_state_string_long(tls->ssl));
  1778. r = SSL_accept(tls->ssl);
  1779. } else {
  1780. log_debug(LD_HANDSHAKE, "About to call SSL_connect on %p (%s)", tls,
  1781. SSL_state_string_long(tls->ssl));
  1782. r = SSL_connect(tls->ssl);
  1783. }
  1784. OSSL_HANDSHAKE_STATE newstate = SSL_get_state(tls->ssl);
  1785. if (oldstate != newstate)
  1786. log_debug(LD_HANDSHAKE, "After call, %p was in state %s",
  1787. tls, SSL_state_string_long(tls->ssl));
  1788. /* We need to call this here and not earlier, since OpenSSL has a penchant
  1789. * for clearing its flags when you say accept or connect. */
  1790. tor_tls_unblock_renegotiation(tls);
  1791. r = tor_tls_get_error(tls,r,0, "handshaking", LOG_INFO, LD_HANDSHAKE);
  1792. if (ERR_peek_error() != 0) {
  1793. tls_log_errors(tls, tls->isServer ? LOG_INFO : LOG_WARN, LD_HANDSHAKE,
  1794. "handshaking");
  1795. return TOR_TLS_ERROR_MISC;
  1796. }
  1797. if (r == TOR_TLS_DONE) {
  1798. tls->state = TOR_TLS_ST_OPEN;
  1799. return tor_tls_finish_handshake(tls);
  1800. }
  1801. return r;
  1802. }
  1803. /** Perform the final part of the initial TLS handshake on <b>tls</b>. This
  1804. * should be called for the first handshake only: it determines whether the v1
  1805. * or the v2 handshake was used, and adjusts things for the renegotiation
  1806. * handshake as appropriate.
  1807. *
  1808. * tor_tls_handshake() calls this on its own; you only need to call this if
  1809. * bufferevent is doing the handshake for you.
  1810. */
  1811. int
  1812. tor_tls_finish_handshake(tor_tls_t *tls)
  1813. {
  1814. int r = TOR_TLS_DONE;
  1815. check_no_tls_errors();
  1816. if (tls->isServer) {
  1817. SSL_set_info_callback(tls->ssl, NULL);
  1818. SSL_set_verify(tls->ssl, SSL_VERIFY_PEER, always_accept_verify_cb);
  1819. SSL_clear_mode(tls->ssl, SSL_MODE_NO_AUTO_CHAIN);
  1820. if (tor_tls_client_is_using_v2_ciphers(tls->ssl)) {
  1821. /* This check is redundant, but back when we did it in the callback,
  1822. * we might have not been able to look up the tor_tls_t if the code
  1823. * was buggy. Fixing that. */
  1824. if (!tls->wasV2Handshake) {
  1825. log_warn(LD_BUG, "For some reason, wasV2Handshake didn't"
  1826. " get set. Fixing that.");
  1827. }
  1828. tls->wasV2Handshake = 1;
  1829. log_debug(LD_HANDSHAKE, "Completed V2 TLS handshake with client; waiting"
  1830. " for renegotiation.");
  1831. } else {
  1832. tls->wasV2Handshake = 0;
  1833. }
  1834. } else {
  1835. /* Client-side */
  1836. tls->wasV2Handshake = 1;
  1837. /* XXXX this can move, probably? -NM */
  1838. if (SSL_set_cipher_list(tls->ssl, SERVER_CIPHER_LIST) == 0) {
  1839. tls_log_errors(NULL, LOG_WARN, LD_HANDSHAKE, "re-setting ciphers");
  1840. r = TOR_TLS_ERROR_MISC;
  1841. }
  1842. }
  1843. tls_log_errors(NULL, LOG_WARN, LD_NET, "finishing the handshake");
  1844. return r;
  1845. }
  1846. /** Shut down an open tls connection <b>tls</b>. When finished, returns
  1847. * TOR_TLS_DONE. On failure, returns TOR_TLS_ERROR, TOR_TLS_WANTREAD,
  1848. * or TOR_TLS_WANTWRITE.
  1849. */
  1850. int
  1851. tor_tls_shutdown(tor_tls_t *tls)
  1852. {
  1853. int r, err;
  1854. char buf[128];
  1855. tor_assert(tls);
  1856. tor_assert(tls->ssl);
  1857. check_no_tls_errors();
  1858. while (1) {
  1859. if (tls->state == TOR_TLS_ST_SENTCLOSE) {
  1860. /* If we've already called shutdown once to send a close message,
  1861. * we read until the other side has closed too.
  1862. */
  1863. do {
  1864. r = SSL_read(tls->ssl, buf, 128);
  1865. } while (r>0);
  1866. err = tor_tls_get_error(tls, r, CATCH_ZERO, "reading to shut down",
  1867. LOG_INFO, LD_NET);
  1868. if (err == TOR_TLS_ZERORETURN_) {
  1869. tls->state = TOR_TLS_ST_GOTCLOSE;
  1870. /* fall through... */
  1871. } else {
  1872. return err;
  1873. }
  1874. }
  1875. r = SSL_shutdown(tls->ssl);
  1876. if (r == 1) {
  1877. /* If shutdown returns 1, the connection is entirely closed. */
  1878. tls->state = TOR_TLS_ST_CLOSED;
  1879. return TOR_TLS_DONE;
  1880. }
  1881. err = tor_tls_get_error(tls, r, CATCH_SYSCALL|CATCH_ZERO, "shutting down",
  1882. LOG_INFO, LD_NET);
  1883. if (err == TOR_TLS_SYSCALL_) {
  1884. /* The underlying TCP connection closed while we were shutting down. */
  1885. tls->state = TOR_TLS_ST_CLOSED;
  1886. return TOR_TLS_DONE;
  1887. } else if (err == TOR_TLS_ZERORETURN_) {
  1888. /* The TLS connection says that it sent a shutdown record, but
  1889. * isn't done shutting down yet. Make sure that this hasn't
  1890. * happened before, then go back to the start of the function
  1891. * and try to read.
  1892. */
  1893. if (tls->state == TOR_TLS_ST_GOTCLOSE ||
  1894. tls->state == TOR_TLS_ST_SENTCLOSE) {
  1895. log_warn(LD_NET,
  1896. "TLS returned \"half-closed\" value while already half-closed");
  1897. return TOR_TLS_ERROR_MISC;
  1898. }
  1899. tls->state = TOR_TLS_ST_SENTCLOSE;
  1900. /* fall through ... */
  1901. } else {
  1902. return err;
  1903. }
  1904. } /* end loop */
  1905. }
  1906. /** Return true iff this TLS connection is authenticated.
  1907. */
  1908. int
  1909. tor_tls_peer_has_cert(tor_tls_t *tls)
  1910. {
  1911. X509 *cert;
  1912. cert = SSL_get_peer_certificate(tls->ssl);
  1913. tls_log_errors(tls, LOG_WARN, LD_HANDSHAKE, "getting peer certificate");
  1914. if (!cert)
  1915. return 0;
  1916. X509_free(cert);
  1917. return 1;
  1918. }
  1919. /** Return a newly allocated copy of the peer certificate, or NULL if there
  1920. * isn't one. */
  1921. MOCK_IMPL(tor_x509_cert_t *,
  1922. tor_tls_get_peer_cert,(tor_tls_t *tls))
  1923. {
  1924. X509 *cert;
  1925. cert = SSL_get_peer_certificate(tls->ssl);
  1926. tls_log_errors(tls, LOG_WARN, LD_HANDSHAKE, "getting peer certificate");
  1927. if (!cert)
  1928. return NULL;
  1929. return tor_x509_cert_new(cert);
  1930. }
  1931. /** Return a newly allocated copy of the cerficate we used on the connection,
  1932. * or NULL if somehow we didn't use one. */
  1933. MOCK_IMPL(tor_x509_cert_t *,
  1934. tor_tls_get_own_cert,(tor_tls_t *tls))
  1935. {
  1936. X509 *cert = SSL_get_certificate(tls->ssl);
  1937. tls_log_errors(tls, LOG_WARN, LD_HANDSHAKE,
  1938. "getting own-connection certificate");
  1939. if (!cert)
  1940. return NULL;
  1941. /* Fun inconsistency: SSL_get_peer_certificate increments the reference
  1942. * count, but SSL_get_certificate does not. */
  1943. X509 *duplicate = X509_dup(cert);
  1944. if (BUG(duplicate == NULL))
  1945. return NULL;
  1946. return tor_x509_cert_new(duplicate);
  1947. }
  1948. /** Warn that a certificate lifetime extends through a certain range. */
  1949. static void
  1950. log_cert_lifetime(int severity, const X509 *cert, const char *problem,
  1951. time_t now)
  1952. {
  1953. BIO *bio = NULL;
  1954. BUF_MEM *buf;
  1955. char *s1=NULL, *s2=NULL;
  1956. char mytime[33];
  1957. struct tm tm;
  1958. size_t n;
  1959. if (problem)
  1960. tor_log(severity, LD_GENERAL,
  1961. "Certificate %s. Either their clock is set wrong, or your clock "
  1962. "is wrong.",
  1963. problem);
  1964. if (!(bio = BIO_new(BIO_s_mem()))) {
  1965. log_warn(LD_GENERAL, "Couldn't allocate BIO!"); goto end;
  1966. }
  1967. if (!(ASN1_TIME_print(bio, X509_get_notBefore_const(cert)))) {
  1968. tls_log_errors(NULL, LOG_WARN, LD_NET, "printing certificate lifetime");
  1969. goto end;
  1970. }
  1971. BIO_get_mem_ptr(bio, &buf);
  1972. s1 = tor_strndup(buf->data, buf->length);
  1973. (void)BIO_reset(bio);
  1974. if (!(ASN1_TIME_print(bio, X509_get_notAfter_const(cert)))) {
  1975. tls_log_errors(NULL, LOG_WARN, LD_NET, "printing certificate lifetime");
  1976. goto end;
  1977. }
  1978. BIO_get_mem_ptr(bio, &buf);
  1979. s2 = tor_strndup(buf->data, buf->length);
  1980. n = strftime(mytime, 32, "%b %d %H:%M:%S %Y UTC", tor_gmtime_r(&now, &tm));
  1981. if (n > 0) {
  1982. tor_log(severity, LD_GENERAL,
  1983. "(certificate lifetime runs from %s through %s. Your time is %s.)",
  1984. s1,s2,mytime);
  1985. } else {
  1986. tor_log(severity, LD_GENERAL,
  1987. "(certificate lifetime runs from %s through %s. "
  1988. "Couldn't get your time.)",
  1989. s1, s2);
  1990. }
  1991. end:
  1992. /* Not expected to get invoked */
  1993. tls_log_errors(NULL, LOG_WARN, LD_NET, "getting certificate lifetime");
  1994. if (bio)
  1995. BIO_free(bio);
  1996. tor_free(s1);
  1997. tor_free(s2);
  1998. }
  1999. /** Helper function: try to extract a link certificate and an identity
  2000. * certificate from <b>tls</b>, and store them in *<b>cert_out</b> and
  2001. * *<b>id_cert_out</b> respectively. Log all messages at level
  2002. * <b>severity</b>.
  2003. *
  2004. * Note that a reference is added to cert_out, so it needs to be
  2005. * freed. id_cert_out doesn't. */
  2006. MOCK_IMPL(STATIC void,
  2007. try_to_extract_certs_from_tls,(int severity, tor_tls_t *tls,
  2008. X509 **cert_out, X509 **id_cert_out))
  2009. {
  2010. X509 *cert = NULL, *id_cert = NULL;
  2011. STACK_OF(X509) *chain = NULL;
  2012. int num_in_chain, i;
  2013. *cert_out = *id_cert_out = NULL;
  2014. if (!(cert = SSL_get_peer_certificate(tls->ssl)))
  2015. return;
  2016. *cert_out = cert;
  2017. if (!(chain = SSL_get_peer_cert_chain(tls->ssl)))
  2018. return;
  2019. num_in_chain = sk_X509_num(chain);
  2020. /* 1 means we're receiving (server-side), and it's just the id_cert.
  2021. * 2 means we're connecting (client-side), and it's both the link
  2022. * cert and the id_cert.
  2023. */
  2024. if (num_in_chain < 1) {
  2025. log_fn(severity,LD_PROTOCOL,
  2026. "Unexpected number of certificates in chain (%d)",
  2027. num_in_chain);
  2028. return;
  2029. }
  2030. for (i=0; i<num_in_chain; ++i) {
  2031. id_cert = sk_X509_value(chain, i);
  2032. if (X509_cmp(id_cert, cert) != 0)
  2033. break;
  2034. }
  2035. *id_cert_out = id_cert;
  2036. }
  2037. /** If the provided tls connection is authenticated and has a
  2038. * certificate chain that is currently valid and signed, then set
  2039. * *<b>identity_key</b> to the identity certificate's key and return
  2040. * 0. Else, return -1 and log complaints with log-level <b>severity</b>.
  2041. */
  2042. int
  2043. tor_tls_verify(int severity, tor_tls_t *tls, crypto_pk_t **identity_key)
  2044. {
  2045. X509 *cert = NULL, *id_cert = NULL;
  2046. EVP_PKEY *id_pkey = NULL;
  2047. RSA *rsa;
  2048. int r = -1;
  2049. check_no_tls_errors();
  2050. *identity_key = NULL;
  2051. try_to_extract_certs_from_tls(severity, tls, &cert, &id_cert);
  2052. if (!cert)
  2053. goto done;
  2054. if (!id_cert) {
  2055. log_fn(severity,LD_PROTOCOL,"No distinct identity certificate found");
  2056. goto done;
  2057. }
  2058. tls_log_errors(tls, severity, LD_HANDSHAKE, "before verifying certificate");
  2059. if (!(id_pkey = X509_get_pubkey(id_cert)) ||
  2060. X509_verify(cert, id_pkey) <= 0) {
  2061. log_fn(severity,LD_PROTOCOL,"X509_verify on cert and pkey returned <= 0");
  2062. tls_log_errors(tls, severity, LD_HANDSHAKE, "verifying certificate");
  2063. goto done;
  2064. }
  2065. rsa = EVP_PKEY_get1_RSA(id_pkey);
  2066. if (!rsa)
  2067. goto done;
  2068. *identity_key = crypto_new_pk_from_rsa_(rsa);
  2069. r = 0;
  2070. done:
  2071. if (cert)
  2072. X509_free(cert);
  2073. if (id_pkey)
  2074. EVP_PKEY_free(id_pkey);
  2075. /* This should never get invoked, but let's make sure in case OpenSSL
  2076. * acts unexpectedly. */
  2077. tls_log_errors(tls, LOG_WARN, LD_HANDSHAKE, "finishing tor_tls_verify");
  2078. return r;
  2079. }
  2080. /** Check whether the certificate set on the connection <b>tls</b> is expired
  2081. * give or take <b>past_tolerance</b> seconds, or not-yet-valid give or take
  2082. * <b>future_tolerance</b> seconds. Return 0 for valid, -1 for failure.
  2083. *
  2084. * NOTE: you should call tor_tls_verify before tor_tls_check_lifetime.
  2085. */
  2086. int
  2087. tor_tls_check_lifetime(int severity, tor_tls_t *tls,
  2088. time_t now,
  2089. int past_tolerance, int future_tolerance)
  2090. {
  2091. X509 *cert;
  2092. int r = -1;
  2093. if (!(cert = SSL_get_peer_certificate(tls->ssl)))
  2094. goto done;
  2095. if (check_cert_lifetime_internal(severity, cert, now,
  2096. past_tolerance, future_tolerance) < 0)
  2097. goto done;
  2098. r = 0;
  2099. done:
  2100. if (cert)
  2101. X509_free(cert);
  2102. /* Not expected to get invoked */
  2103. tls_log_errors(tls, LOG_WARN, LD_NET, "checking certificate lifetime");
  2104. return r;
  2105. }
  2106. /** Helper: check whether <b>cert</b> is expired give or take
  2107. * <b>past_tolerance</b> seconds, or not-yet-valid give or take
  2108. * <b>future_tolerance</b> seconds. (Relative to the current time
  2109. * <b>now</b>.) If it is live, return 0. If it is not live, log a message
  2110. * and return -1. */
  2111. static int
  2112. check_cert_lifetime_internal(int severity, const X509 *cert,
  2113. time_t now,
  2114. int past_tolerance, int future_tolerance)
  2115. {
  2116. time_t t;
  2117. t = now + future_tolerance;
  2118. if (X509_cmp_time(X509_get_notBefore_const(cert), &t) > 0) {
  2119. log_cert_lifetime(severity, cert, "not yet valid", now);
  2120. return -1;
  2121. }
  2122. t = now - past_tolerance;
  2123. if (X509_cmp_time(X509_get_notAfter_const(cert), &t) < 0) {
  2124. log_cert_lifetime(severity, cert, "already expired", now);
  2125. return -1;
  2126. }
  2127. return 0;
  2128. }
  2129. #ifdef TOR_UNIT_TESTS
  2130. /* Testing only: return a new x509 cert with the same contents as <b>inp</b>,
  2131. but with the expiration time <b>new_expiration_time</b>, signed with
  2132. <b>signing_key</b>. */
  2133. STATIC tor_x509_cert_t *
  2134. tor_x509_cert_replace_expiration(const tor_x509_cert_t *inp,
  2135. time_t new_expiration_time,
  2136. crypto_pk_t *signing_key)
  2137. {
  2138. X509 *newc = X509_dup(inp->cert);
  2139. X509_time_adj(X509_get_notAfter(newc), 0, &new_expiration_time);
  2140. EVP_PKEY *pk = crypto_pk_get_evp_pkey_(signing_key, 1);
  2141. tor_assert(X509_sign(newc, pk, EVP_sha256()));
  2142. EVP_PKEY_free(pk);
  2143. return tor_x509_cert_new(newc);
  2144. }
  2145. #endif /* defined(TOR_UNIT_TESTS) */
  2146. /** Return the number of bytes available for reading from <b>tls</b>.
  2147. */
  2148. int
  2149. tor_tls_get_pending_bytes(tor_tls_t *tls)
  2150. {
  2151. tor_assert(tls);
  2152. return SSL_pending(tls->ssl);
  2153. }
  2154. /** If <b>tls</b> requires that the next write be of a particular size,
  2155. * return that size. Otherwise, return 0. */
  2156. size_t
  2157. tor_tls_get_forced_write_size(tor_tls_t *tls)
  2158. {
  2159. return tls->wantwrite_n;
  2160. }
  2161. /** Sets n_read and n_written to the number of bytes read and written,
  2162. * respectively, on the raw socket used by <b>tls</b> since the last time this
  2163. * function was called on <b>tls</b>. */
  2164. void
  2165. tor_tls_get_n_raw_bytes(tor_tls_t *tls, size_t *n_read, size_t *n_written)
  2166. {
  2167. BIO *wbio, *tmpbio;
  2168. unsigned long r, w;
  2169. r = (unsigned long) BIO_number_read(SSL_get_rbio(tls->ssl));
  2170. /* We want the number of bytes actually for real written. Unfortunately,
  2171. * sometimes OpenSSL replaces the wbio on tls->ssl with a buffering bio,
  2172. * which makes the answer turn out wrong. Let's cope with that. Note
  2173. * that this approach will fail if we ever replace tls->ssl's BIOs with
  2174. * buffering bios for reasons of our own. As an alternative, we could
  2175. * save the original BIO for tls->ssl in the tor_tls_t structure, but
  2176. * that would be tempting fate. */
  2177. wbio = SSL_get_wbio(tls->ssl);
  2178. #if OPENSSL_VERSION_NUMBER >= OPENSSL_VER(1,1,0,0,5)
  2179. /* BIO structure is opaque as of OpenSSL 1.1.0-pre5-dev. Again, not
  2180. * supposed to use this form of the version macro, but the OpenSSL developers
  2181. * introduced major API changes in the pre-release stage.
  2182. */
  2183. if (BIO_method_type(wbio) == BIO_TYPE_BUFFER &&
  2184. (tmpbio = BIO_next(wbio)) != NULL)
  2185. wbio = tmpbio;
  2186. #else /* !(OPENSSL_VERSION_NUMBER >= OPENSSL_VER(1,1,0,0,5)) */
  2187. if (wbio->method == BIO_f_buffer() && (tmpbio = BIO_next(wbio)) != NULL)
  2188. wbio = tmpbio;
  2189. #endif /* OPENSSL_VERSION_NUMBER >= OPENSSL_VER(1,1,0,0,5) */
  2190. w = (unsigned long) BIO_number_written(wbio);
  2191. /* We are ok with letting these unsigned ints go "negative" here:
  2192. * If we wrapped around, this should still give us the right answer, unless
  2193. * we wrapped around by more than ULONG_MAX since the last time we called
  2194. * this function.
  2195. */
  2196. *n_read = (size_t)(r - tls->last_read_count);
  2197. *n_written = (size_t)(w - tls->last_write_count);
  2198. if (*n_read > INT_MAX || *n_written > INT_MAX) {
  2199. log_warn(LD_BUG, "Preposterously large value in tor_tls_get_n_raw_bytes. "
  2200. "r=%lu, last_read=%lu, w=%lu, last_written=%lu",
  2201. r, tls->last_read_count, w, tls->last_write_count);
  2202. }
  2203. total_bytes_written_by_tls += *n_written;
  2204. tls->last_read_count = r;
  2205. tls->last_write_count = w;
  2206. }
  2207. /** Return a ratio of the bytes that TLS has sent to the bytes that we've told
  2208. * it to send. Used to track whether our TLS records are getting too tiny. */
  2209. MOCK_IMPL(double,
  2210. tls_get_write_overhead_ratio,(void))
  2211. {
  2212. if (total_bytes_written_over_tls == 0)
  2213. return 1.0;
  2214. return U64_TO_DBL(total_bytes_written_by_tls) /
  2215. U64_TO_DBL(total_bytes_written_over_tls);
  2216. }
  2217. /** Implement check_no_tls_errors: If there are any pending OpenSSL
  2218. * errors, log an error message. */
  2219. void
  2220. check_no_tls_errors_(const char *fname, int line)
  2221. {
  2222. if (ERR_peek_error() == 0)
  2223. return;
  2224. log_warn(LD_CRYPTO, "Unhandled OpenSSL errors found at %s:%d: ",
  2225. tor_fix_source_file(fname), line);
  2226. tls_log_errors(NULL, LOG_WARN, LD_NET, NULL);
  2227. }
  2228. /** Return true iff the initial TLS connection at <b>tls</b> did not use a v2
  2229. * TLS handshake. Output is undefined if the handshake isn't finished. */
  2230. int
  2231. tor_tls_used_v1_handshake(tor_tls_t *tls)
  2232. {
  2233. return ! tls->wasV2Handshake;
  2234. }
  2235. /** Return the number of server handshakes that we've noticed doing on
  2236. * <b>tls</b>. */
  2237. int
  2238. tor_tls_get_num_server_handshakes(tor_tls_t *tls)
  2239. {
  2240. return tls->server_handshake_count;
  2241. }
  2242. /** Return true iff the server TLS connection <b>tls</b> got the renegotiation
  2243. * request it was waiting for. */
  2244. int
  2245. tor_tls_server_got_renegotiate(tor_tls_t *tls)
  2246. {
  2247. return tls->got_renegotiate;
  2248. }
  2249. #ifndef HAVE_SSL_GET_CLIENT_RANDOM
  2250. static size_t
  2251. SSL_get_client_random(SSL *s, uint8_t *out, size_t len)
  2252. {
  2253. if (len == 0)
  2254. return SSL3_RANDOM_SIZE;
  2255. tor_assert(len == SSL3_RANDOM_SIZE);
  2256. tor_assert(s->s3);
  2257. memcpy(out, s->s3->client_random, len);
  2258. return len;
  2259. }
  2260. #endif /* !defined(HAVE_SSL_GET_CLIENT_RANDOM) */
  2261. #ifndef HAVE_SSL_GET_SERVER_RANDOM
  2262. static size_t
  2263. SSL_get_server_random(SSL *s, uint8_t *out, size_t len)
  2264. {
  2265. if (len == 0)
  2266. return SSL3_RANDOM_SIZE;
  2267. tor_assert(len == SSL3_RANDOM_SIZE);
  2268. tor_assert(s->s3);
  2269. memcpy(out, s->s3->server_random, len);
  2270. return len;
  2271. }
  2272. #endif /* !defined(HAVE_SSL_GET_SERVER_RANDOM) */
  2273. #ifndef HAVE_SSL_SESSION_GET_MASTER_KEY
  2274. STATIC size_t
  2275. SSL_SESSION_get_master_key(SSL_SESSION *s, uint8_t *out, size_t len)
  2276. {
  2277. tor_assert(s);
  2278. if (len == 0)
  2279. return s->master_key_length;
  2280. tor_assert(len == (size_t)s->master_key_length);
  2281. tor_assert(out);
  2282. memcpy(out, s->master_key, len);
  2283. return len;
  2284. }
  2285. #endif /* !defined(HAVE_SSL_SESSION_GET_MASTER_KEY) */
  2286. /** Set the DIGEST256_LEN buffer at <b>secrets_out</b> to the value used in
  2287. * the v3 handshake to prove that the client knows the TLS secrets for the
  2288. * connection <b>tls</b>. Return 0 on success, -1 on failure.
  2289. */
  2290. MOCK_IMPL(int,
  2291. tor_tls_get_tlssecrets,(tor_tls_t *tls, uint8_t *secrets_out))
  2292. {
  2293. #define TLSSECRET_MAGIC "Tor V3 handshake TLS cross-certification"
  2294. uint8_t buf[128];
  2295. size_t len;
  2296. tor_assert(tls);
  2297. SSL *const ssl = tls->ssl;
  2298. SSL_SESSION *const session = SSL_get_session(ssl);
  2299. tor_assert(ssl);
  2300. tor_assert(session);
  2301. const size_t server_random_len = SSL_get_server_random(ssl, NULL, 0);
  2302. const size_t client_random_len = SSL_get_client_random(ssl, NULL, 0);
  2303. const size_t master_key_len = SSL_SESSION_get_master_key(session, NULL, 0);
  2304. tor_assert(server_random_len);
  2305. tor_assert(client_random_len);
  2306. tor_assert(master_key_len);
  2307. len = client_random_len + server_random_len + strlen(TLSSECRET_MAGIC) + 1;
  2308. tor_assert(len <= sizeof(buf));
  2309. {
  2310. size_t r = SSL_get_client_random(ssl, buf, client_random_len);
  2311. tor_assert(r == client_random_len);
  2312. }
  2313. {
  2314. size_t r = SSL_get_server_random(ssl,
  2315. buf+client_random_len,
  2316. server_random_len);
  2317. tor_assert(r == server_random_len);
  2318. }
  2319. uint8_t *master_key = tor_malloc_zero(master_key_len);
  2320. {
  2321. size_t r = SSL_SESSION_get_master_key(session, master_key, master_key_len);
  2322. tor_assert(r == master_key_len);
  2323. }
  2324. uint8_t *nextbuf = buf + client_random_len + server_random_len;
  2325. memcpy(nextbuf, TLSSECRET_MAGIC, strlen(TLSSECRET_MAGIC) + 1);
  2326. /*
  2327. The value is an HMAC, using the TLS master key as the HMAC key, of
  2328. client_random | server_random | TLSSECRET_MAGIC
  2329. */
  2330. crypto_hmac_sha256((char*)secrets_out,
  2331. (char*)master_key,
  2332. master_key_len,
  2333. (char*)buf, len);
  2334. memwipe(buf, 0, sizeof(buf));
  2335. memwipe(master_key, 0, master_key_len);
  2336. tor_free(master_key);
  2337. return 0;
  2338. }
  2339. /** Using the RFC5705 key material exporting construction, and the
  2340. * provided <b>context</b> (<b>context_len</b> bytes long) and
  2341. * <b>label</b> (a NUL-terminated string), compute a 32-byte secret in
  2342. * <b>secrets_out</b> that only the parties to this TLS session can
  2343. * compute. Return 0 on success and -1 on failure.
  2344. */
  2345. MOCK_IMPL(int,
  2346. tor_tls_export_key_material,(tor_tls_t *tls, uint8_t *secrets_out,
  2347. const uint8_t *context,
  2348. size_t context_len,
  2349. const char *label))
  2350. {
  2351. tor_assert(tls);
  2352. tor_assert(tls->ssl);
  2353. int r = SSL_export_keying_material(tls->ssl,
  2354. secrets_out, DIGEST256_LEN,
  2355. label, strlen(label),
  2356. context, context_len, 1);
  2357. return (r == 1) ? 0 : -1;
  2358. }
  2359. /** Examine the amount of memory used and available for buffers in <b>tls</b>.
  2360. * Set *<b>rbuf_capacity</b> to the amount of storage allocated for the read
  2361. * buffer and *<b>rbuf_bytes</b> to the amount actually used.
  2362. * Set *<b>wbuf_capacity</b> to the amount of storage allocated for the write
  2363. * buffer and *<b>wbuf_bytes</b> to the amount actually used.
  2364. *
  2365. * Return 0 on success, -1 on failure.*/
  2366. int
  2367. tor_tls_get_buffer_sizes(tor_tls_t *tls,
  2368. size_t *rbuf_capacity, size_t *rbuf_bytes,
  2369. size_t *wbuf_capacity, size_t *wbuf_bytes)
  2370. {
  2371. #if OPENSSL_VERSION_NUMBER >= OPENSSL_V_SERIES(1,1,0)
  2372. (void)tls;
  2373. (void)rbuf_capacity;
  2374. (void)rbuf_bytes;
  2375. (void)wbuf_capacity;
  2376. (void)wbuf_bytes;
  2377. return -1;
  2378. #else /* !(OPENSSL_VERSION_NUMBER >= OPENSSL_V_SERIES(1,1,0)) */
  2379. if (tls->ssl->s3->rbuf.buf)
  2380. *rbuf_capacity = tls->ssl->s3->rbuf.len;
  2381. else
  2382. *rbuf_capacity = 0;
  2383. if (tls->ssl->s3->wbuf.buf)
  2384. *wbuf_capacity = tls->ssl->s3->wbuf.len;
  2385. else
  2386. *wbuf_capacity = 0;
  2387. *rbuf_bytes = tls->ssl->s3->rbuf.left;
  2388. *wbuf_bytes = tls->ssl->s3->wbuf.left;
  2389. return 0;
  2390. #endif /* OPENSSL_VERSION_NUMBER >= OPENSSL_V_SERIES(1,1,0) */
  2391. }
  2392. /** Check whether the ECC group requested is supported by the current OpenSSL
  2393. * library instance. Return 1 if the group is supported, and 0 if not.
  2394. */
  2395. int
  2396. evaluate_ecgroup_for_tls(const char *ecgroup)
  2397. {
  2398. EC_KEY *ec_key;
  2399. int nid;
  2400. int ret;
  2401. if (!ecgroup)
  2402. nid = NID_tor_default_ecdhe_group;
  2403. else if (!strcasecmp(ecgroup, "P256"))
  2404. nid = NID_X9_62_prime256v1;
  2405. else if (!strcasecmp(ecgroup, "P224"))
  2406. nid = NID_secp224r1;
  2407. else
  2408. return 0;
  2409. ec_key = EC_KEY_new_by_curve_name(nid);
  2410. ret = (ec_key != NULL);
  2411. EC_KEY_free(ec_key);
  2412. return ret;
  2413. }