ssl_srv.c 160 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620
  1. /*
  2. * SSLv3/TLSv1 server-side functions
  3. *
  4. * Copyright The Mbed TLS Contributors
  5. * SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
  6. */
  7. #include "common.h"
  8. #if defined(MBEDTLS_SSL_SRV_C)
  9. #include "mbedtls/platform.h"
  10. #include "mbedtls/ssl.h"
  11. #include "mbedtls/ssl_internal.h"
  12. #include "mbedtls/debug.h"
  13. #include "mbedtls/error.h"
  14. #include "mbedtls/platform_util.h"
  15. #include "constant_time_internal.h"
  16. #include "mbedtls/constant_time.h"
  17. #include <string.h>
  18. #if defined(MBEDTLS_ECP_C)
  19. #include "mbedtls/ecp.h"
  20. #endif
  21. #if defined(MBEDTLS_HAVE_TIME)
  22. #include "mbedtls/platform_time.h"
  23. #endif
  24. #if defined(MBEDTLS_SSL_DTLS_HELLO_VERIFY)
  25. int mbedtls_ssl_set_client_transport_id(mbedtls_ssl_context *ssl,
  26. const unsigned char *info,
  27. size_t ilen)
  28. {
  29. if (ssl->conf->endpoint != MBEDTLS_SSL_IS_SERVER) {
  30. return MBEDTLS_ERR_SSL_BAD_INPUT_DATA;
  31. }
  32. mbedtls_free(ssl->cli_id);
  33. if ((ssl->cli_id = mbedtls_calloc(1, ilen)) == NULL) {
  34. return MBEDTLS_ERR_SSL_ALLOC_FAILED;
  35. }
  36. memcpy(ssl->cli_id, info, ilen);
  37. ssl->cli_id_len = ilen;
  38. return 0;
  39. }
  40. void mbedtls_ssl_conf_dtls_cookies(mbedtls_ssl_config *conf,
  41. mbedtls_ssl_cookie_write_t *f_cookie_write,
  42. mbedtls_ssl_cookie_check_t *f_cookie_check,
  43. void *p_cookie)
  44. {
  45. conf->f_cookie_write = f_cookie_write;
  46. conf->f_cookie_check = f_cookie_check;
  47. conf->p_cookie = p_cookie;
  48. }
  49. #endif /* MBEDTLS_SSL_DTLS_HELLO_VERIFY */
  50. #if defined(MBEDTLS_SSL_SERVER_NAME_INDICATION)
  51. MBEDTLS_CHECK_RETURN_CRITICAL
  52. static int ssl_parse_servername_ext(mbedtls_ssl_context *ssl,
  53. const unsigned char *buf,
  54. size_t len)
  55. {
  56. int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
  57. size_t servername_list_size, hostname_len;
  58. const unsigned char *p;
  59. MBEDTLS_SSL_DEBUG_MSG(3, ("parse ServerName extension"));
  60. if (len < 2) {
  61. MBEDTLS_SSL_DEBUG_MSG(1, ("bad client hello message"));
  62. mbedtls_ssl_send_alert_message(ssl, MBEDTLS_SSL_ALERT_LEVEL_FATAL,
  63. MBEDTLS_SSL_ALERT_MSG_DECODE_ERROR);
  64. return MBEDTLS_ERR_SSL_BAD_HS_CLIENT_HELLO;
  65. }
  66. servername_list_size = ((buf[0] << 8) | (buf[1]));
  67. if (servername_list_size + 2 != len) {
  68. MBEDTLS_SSL_DEBUG_MSG(1, ("bad client hello message"));
  69. mbedtls_ssl_send_alert_message(ssl, MBEDTLS_SSL_ALERT_LEVEL_FATAL,
  70. MBEDTLS_SSL_ALERT_MSG_DECODE_ERROR);
  71. return MBEDTLS_ERR_SSL_BAD_HS_CLIENT_HELLO;
  72. }
  73. p = buf + 2;
  74. while (servername_list_size > 2) {
  75. hostname_len = ((p[1] << 8) | p[2]);
  76. if (hostname_len + 3 > servername_list_size) {
  77. MBEDTLS_SSL_DEBUG_MSG(1, ("bad client hello message"));
  78. mbedtls_ssl_send_alert_message(ssl, MBEDTLS_SSL_ALERT_LEVEL_FATAL,
  79. MBEDTLS_SSL_ALERT_MSG_DECODE_ERROR);
  80. return MBEDTLS_ERR_SSL_BAD_HS_CLIENT_HELLO;
  81. }
  82. if (p[0] == MBEDTLS_TLS_EXT_SERVERNAME_HOSTNAME) {
  83. ret = ssl->conf->f_sni(ssl->conf->p_sni,
  84. ssl, p + 3, hostname_len);
  85. if (ret != 0) {
  86. MBEDTLS_SSL_DEBUG_RET(1, "ssl_sni_wrapper", ret);
  87. mbedtls_ssl_send_alert_message(ssl, MBEDTLS_SSL_ALERT_LEVEL_FATAL,
  88. MBEDTLS_SSL_ALERT_MSG_UNRECOGNIZED_NAME);
  89. return MBEDTLS_ERR_SSL_BAD_HS_CLIENT_HELLO;
  90. }
  91. return 0;
  92. }
  93. servername_list_size -= hostname_len + 3;
  94. p += hostname_len + 3;
  95. }
  96. if (servername_list_size != 0) {
  97. MBEDTLS_SSL_DEBUG_MSG(1, ("bad client hello message"));
  98. mbedtls_ssl_send_alert_message(ssl, MBEDTLS_SSL_ALERT_LEVEL_FATAL,
  99. MBEDTLS_SSL_ALERT_MSG_ILLEGAL_PARAMETER);
  100. return MBEDTLS_ERR_SSL_BAD_HS_CLIENT_HELLO;
  101. }
  102. return 0;
  103. }
  104. #endif /* MBEDTLS_SSL_SERVER_NAME_INDICATION */
  105. #if defined(MBEDTLS_KEY_EXCHANGE_SOME_PSK_ENABLED)
  106. MBEDTLS_CHECK_RETURN_CRITICAL
  107. static int ssl_conf_has_psk_or_cb(mbedtls_ssl_config const *conf)
  108. {
  109. if (conf->f_psk != NULL) {
  110. return 1;
  111. }
  112. if (conf->psk_identity_len == 0 || conf->psk_identity == NULL) {
  113. return 0;
  114. }
  115. if (conf->psk != NULL && conf->psk_len != 0) {
  116. return 1;
  117. }
  118. #if defined(MBEDTLS_USE_PSA_CRYPTO)
  119. if (!mbedtls_svc_key_id_is_null(conf->psk_opaque)) {
  120. return 1;
  121. }
  122. #endif /* MBEDTLS_USE_PSA_CRYPTO */
  123. return 0;
  124. }
  125. #if defined(MBEDTLS_USE_PSA_CRYPTO)
  126. MBEDTLS_CHECK_RETURN_CRITICAL
  127. static int ssl_use_opaque_psk(mbedtls_ssl_context const *ssl)
  128. {
  129. if (ssl->conf->f_psk != NULL) {
  130. /* If we've used a callback to select the PSK,
  131. * the static configuration is irrelevant. */
  132. if (!mbedtls_svc_key_id_is_null(ssl->handshake->psk_opaque)) {
  133. return 1;
  134. }
  135. return 0;
  136. }
  137. if (!mbedtls_svc_key_id_is_null(ssl->conf->psk_opaque)) {
  138. return 1;
  139. }
  140. return 0;
  141. }
  142. #endif /* MBEDTLS_USE_PSA_CRYPTO */
  143. #endif /* MBEDTLS_KEY_EXCHANGE_SOME_PSK_ENABLED */
  144. MBEDTLS_CHECK_RETURN_CRITICAL
  145. static int ssl_parse_renegotiation_info(mbedtls_ssl_context *ssl,
  146. const unsigned char *buf,
  147. size_t len)
  148. {
  149. #if defined(MBEDTLS_SSL_RENEGOTIATION)
  150. if (ssl->renego_status != MBEDTLS_SSL_INITIAL_HANDSHAKE) {
  151. /* Check verify-data in constant-time. The length OTOH is no secret */
  152. if (len != 1 + ssl->verify_data_len ||
  153. buf[0] != ssl->verify_data_len ||
  154. mbedtls_ct_memcmp(buf + 1, ssl->peer_verify_data,
  155. ssl->verify_data_len) != 0) {
  156. MBEDTLS_SSL_DEBUG_MSG(1, ("non-matching renegotiation info"));
  157. mbedtls_ssl_send_alert_message(ssl, MBEDTLS_SSL_ALERT_LEVEL_FATAL,
  158. MBEDTLS_SSL_ALERT_MSG_HANDSHAKE_FAILURE);
  159. return MBEDTLS_ERR_SSL_BAD_HS_CLIENT_HELLO;
  160. }
  161. } else
  162. #endif /* MBEDTLS_SSL_RENEGOTIATION */
  163. {
  164. if (len != 1 || buf[0] != 0x0) {
  165. MBEDTLS_SSL_DEBUG_MSG(1, ("non-zero length renegotiation info"));
  166. mbedtls_ssl_send_alert_message(ssl, MBEDTLS_SSL_ALERT_LEVEL_FATAL,
  167. MBEDTLS_SSL_ALERT_MSG_HANDSHAKE_FAILURE);
  168. return MBEDTLS_ERR_SSL_BAD_HS_CLIENT_HELLO;
  169. }
  170. ssl->secure_renegotiation = MBEDTLS_SSL_SECURE_RENEGOTIATION;
  171. }
  172. return 0;
  173. }
  174. #if defined(MBEDTLS_SSL_PROTO_TLS1_2) && \
  175. defined(MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED)
  176. /*
  177. * Status of the implementation of signature-algorithms extension:
  178. *
  179. * Currently, we are only considering the signature-algorithm extension
  180. * to pick a ciphersuite which allows us to send the ServerKeyExchange
  181. * message with a signature-hash combination that the user allows.
  182. *
  183. * We do *not* check whether all certificates in our certificate
  184. * chain are signed with an allowed signature-hash pair.
  185. * This needs to be done at a later stage.
  186. *
  187. */
  188. MBEDTLS_CHECK_RETURN_CRITICAL
  189. static int ssl_parse_signature_algorithms_ext(mbedtls_ssl_context *ssl,
  190. const unsigned char *buf,
  191. size_t len)
  192. {
  193. size_t sig_alg_list_size;
  194. const unsigned char *p;
  195. const unsigned char *end = buf + len;
  196. mbedtls_md_type_t md_cur;
  197. mbedtls_pk_type_t sig_cur;
  198. if (len < 2) {
  199. MBEDTLS_SSL_DEBUG_MSG(1, ("bad client hello message"));
  200. mbedtls_ssl_send_alert_message(ssl, MBEDTLS_SSL_ALERT_LEVEL_FATAL,
  201. MBEDTLS_SSL_ALERT_MSG_DECODE_ERROR);
  202. return MBEDTLS_ERR_SSL_BAD_HS_CLIENT_HELLO;
  203. }
  204. sig_alg_list_size = ((buf[0] << 8) | (buf[1]));
  205. if (sig_alg_list_size + 2 != len ||
  206. sig_alg_list_size % 2 != 0) {
  207. MBEDTLS_SSL_DEBUG_MSG(1, ("bad client hello message"));
  208. mbedtls_ssl_send_alert_message(ssl, MBEDTLS_SSL_ALERT_LEVEL_FATAL,
  209. MBEDTLS_SSL_ALERT_MSG_DECODE_ERROR);
  210. return MBEDTLS_ERR_SSL_BAD_HS_CLIENT_HELLO;
  211. }
  212. /* Currently we only guarantee signing the ServerKeyExchange message according
  213. * to the constraints specified in this extension (see above), so it suffices
  214. * to remember only one suitable hash for each possible signature algorithm.
  215. *
  216. * This will change when we also consider certificate signatures,
  217. * in which case we will need to remember the whole signature-hash
  218. * pair list from the extension.
  219. */
  220. for (p = buf + 2; p < end; p += 2) {
  221. /* Silently ignore unknown signature or hash algorithms. */
  222. if ((sig_cur = mbedtls_ssl_pk_alg_from_sig(p[1])) == MBEDTLS_PK_NONE) {
  223. MBEDTLS_SSL_DEBUG_MSG(3, ("client hello v3, signature_algorithm ext"
  224. " unknown sig alg encoding %d", p[1]));
  225. continue;
  226. }
  227. /* Check if we support the hash the user proposes */
  228. md_cur = mbedtls_ssl_md_alg_from_hash(p[0]);
  229. if (md_cur == MBEDTLS_MD_NONE) {
  230. MBEDTLS_SSL_DEBUG_MSG(3, ("client hello v3, signature_algorithm ext:"
  231. " unknown hash alg encoding %d", p[0]));
  232. continue;
  233. }
  234. if (mbedtls_ssl_check_sig_hash(ssl, md_cur) == 0) {
  235. mbedtls_ssl_sig_hash_set_add(&ssl->handshake->hash_algs, sig_cur, md_cur);
  236. MBEDTLS_SSL_DEBUG_MSG(3, ("client hello v3, signature_algorithm ext:"
  237. " match sig %u and hash %u",
  238. (unsigned) sig_cur, (unsigned) md_cur));
  239. } else {
  240. MBEDTLS_SSL_DEBUG_MSG(3, ("client hello v3, signature_algorithm ext: "
  241. "hash alg %u not supported", (unsigned) md_cur));
  242. }
  243. }
  244. return 0;
  245. }
  246. #endif /* MBEDTLS_SSL_PROTO_TLS1_2 &&
  247. MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED */
  248. #if defined(MBEDTLS_ECDH_C) || defined(MBEDTLS_ECDSA_C) || \
  249. defined(MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED)
  250. MBEDTLS_CHECK_RETURN_CRITICAL
  251. static int ssl_parse_supported_elliptic_curves(mbedtls_ssl_context *ssl,
  252. const unsigned char *buf,
  253. size_t len)
  254. {
  255. size_t list_size, our_size;
  256. const unsigned char *p;
  257. const mbedtls_ecp_curve_info *curve_info, **curves;
  258. if (len < 2) {
  259. MBEDTLS_SSL_DEBUG_MSG(1, ("bad client hello message"));
  260. mbedtls_ssl_send_alert_message(ssl, MBEDTLS_SSL_ALERT_LEVEL_FATAL,
  261. MBEDTLS_SSL_ALERT_MSG_DECODE_ERROR);
  262. return MBEDTLS_ERR_SSL_BAD_HS_CLIENT_HELLO;
  263. }
  264. list_size = ((buf[0] << 8) | (buf[1]));
  265. if (list_size + 2 != len ||
  266. list_size % 2 != 0) {
  267. MBEDTLS_SSL_DEBUG_MSG(1, ("bad client hello message"));
  268. mbedtls_ssl_send_alert_message(ssl, MBEDTLS_SSL_ALERT_LEVEL_FATAL,
  269. MBEDTLS_SSL_ALERT_MSG_DECODE_ERROR);
  270. return MBEDTLS_ERR_SSL_BAD_HS_CLIENT_HELLO;
  271. }
  272. /* Should never happen unless client duplicates the extension */
  273. if (ssl->handshake->curves != NULL) {
  274. MBEDTLS_SSL_DEBUG_MSG(1, ("bad client hello message"));
  275. mbedtls_ssl_send_alert_message(ssl, MBEDTLS_SSL_ALERT_LEVEL_FATAL,
  276. MBEDTLS_SSL_ALERT_MSG_DECODE_ERROR);
  277. return MBEDTLS_ERR_SSL_BAD_HS_CLIENT_HELLO;
  278. }
  279. /* Don't allow our peer to make us allocate too much memory,
  280. * and leave room for a final 0 */
  281. our_size = list_size / 2 + 1;
  282. if (our_size > MBEDTLS_ECP_DP_MAX) {
  283. our_size = MBEDTLS_ECP_DP_MAX;
  284. }
  285. if ((curves = mbedtls_calloc(our_size, sizeof(*curves))) == NULL) {
  286. mbedtls_ssl_send_alert_message(ssl, MBEDTLS_SSL_ALERT_LEVEL_FATAL,
  287. MBEDTLS_SSL_ALERT_MSG_INTERNAL_ERROR);
  288. return MBEDTLS_ERR_SSL_ALLOC_FAILED;
  289. }
  290. ssl->handshake->curves = curves;
  291. p = buf + 2;
  292. while (list_size > 0 && our_size > 1) {
  293. curve_info = mbedtls_ecp_curve_info_from_tls_id((p[0] << 8) | p[1]);
  294. if (curve_info != NULL) {
  295. *curves++ = curve_info;
  296. our_size--;
  297. }
  298. list_size -= 2;
  299. p += 2;
  300. }
  301. return 0;
  302. }
  303. MBEDTLS_CHECK_RETURN_CRITICAL
  304. static int ssl_parse_supported_point_formats(mbedtls_ssl_context *ssl,
  305. const unsigned char *buf,
  306. size_t len)
  307. {
  308. size_t list_size;
  309. const unsigned char *p;
  310. if (len == 0 || (size_t) (buf[0] + 1) != len) {
  311. MBEDTLS_SSL_DEBUG_MSG(1, ("bad client hello message"));
  312. mbedtls_ssl_send_alert_message(ssl, MBEDTLS_SSL_ALERT_LEVEL_FATAL,
  313. MBEDTLS_SSL_ALERT_MSG_DECODE_ERROR);
  314. return MBEDTLS_ERR_SSL_BAD_HS_CLIENT_HELLO;
  315. }
  316. list_size = buf[0];
  317. p = buf + 1;
  318. while (list_size > 0) {
  319. if (p[0] == MBEDTLS_ECP_PF_UNCOMPRESSED ||
  320. p[0] == MBEDTLS_ECP_PF_COMPRESSED) {
  321. #if defined(MBEDTLS_ECDH_C) || defined(MBEDTLS_ECDSA_C)
  322. ssl->handshake->ecdh_ctx.point_format = p[0];
  323. #endif
  324. #if defined(MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED)
  325. ssl->handshake->ecjpake_ctx.point_format = p[0];
  326. #endif
  327. MBEDTLS_SSL_DEBUG_MSG(4, ("point format selected: %d", p[0]));
  328. return 0;
  329. }
  330. list_size--;
  331. p++;
  332. }
  333. return 0;
  334. }
  335. #endif /* MBEDTLS_ECDH_C || MBEDTLS_ECDSA_C ||
  336. MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED */
  337. #if defined(MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED)
  338. MBEDTLS_CHECK_RETURN_CRITICAL
  339. static int ssl_parse_ecjpake_kkpp(mbedtls_ssl_context *ssl,
  340. const unsigned char *buf,
  341. size_t len)
  342. {
  343. int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
  344. if (mbedtls_ecjpake_check(&ssl->handshake->ecjpake_ctx) != 0) {
  345. MBEDTLS_SSL_DEBUG_MSG(3, ("skip ecjpake kkpp extension"));
  346. return 0;
  347. }
  348. if ((ret = mbedtls_ecjpake_read_round_one(&ssl->handshake->ecjpake_ctx,
  349. buf, len)) != 0) {
  350. MBEDTLS_SSL_DEBUG_RET(1, "mbedtls_ecjpake_read_round_one", ret);
  351. mbedtls_ssl_send_alert_message(ssl, MBEDTLS_SSL_ALERT_LEVEL_FATAL,
  352. MBEDTLS_SSL_ALERT_MSG_ILLEGAL_PARAMETER);
  353. return ret;
  354. }
  355. /* Only mark the extension as OK when we're sure it is */
  356. ssl->handshake->cli_exts |= MBEDTLS_TLS_EXT_ECJPAKE_KKPP_OK;
  357. return 0;
  358. }
  359. #endif /* MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED */
  360. #if defined(MBEDTLS_SSL_MAX_FRAGMENT_LENGTH)
  361. MBEDTLS_CHECK_RETURN_CRITICAL
  362. static int ssl_parse_max_fragment_length_ext(mbedtls_ssl_context *ssl,
  363. const unsigned char *buf,
  364. size_t len)
  365. {
  366. if (len != 1 || buf[0] >= MBEDTLS_SSL_MAX_FRAG_LEN_INVALID) {
  367. MBEDTLS_SSL_DEBUG_MSG(1, ("bad client hello message"));
  368. mbedtls_ssl_send_alert_message(ssl, MBEDTLS_SSL_ALERT_LEVEL_FATAL,
  369. MBEDTLS_SSL_ALERT_MSG_ILLEGAL_PARAMETER);
  370. return MBEDTLS_ERR_SSL_BAD_HS_CLIENT_HELLO;
  371. }
  372. ssl->session_negotiate->mfl_code = buf[0];
  373. return 0;
  374. }
  375. #endif /* MBEDTLS_SSL_MAX_FRAGMENT_LENGTH */
  376. #if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID)
  377. MBEDTLS_CHECK_RETURN_CRITICAL
  378. static int ssl_parse_cid_ext(mbedtls_ssl_context *ssl,
  379. const unsigned char *buf,
  380. size_t len)
  381. {
  382. size_t peer_cid_len;
  383. /* CID extension only makes sense in DTLS */
  384. if (ssl->conf->transport != MBEDTLS_SSL_TRANSPORT_DATAGRAM) {
  385. MBEDTLS_SSL_DEBUG_MSG(1, ("bad client hello message"));
  386. mbedtls_ssl_send_alert_message(ssl, MBEDTLS_SSL_ALERT_LEVEL_FATAL,
  387. MBEDTLS_SSL_ALERT_MSG_ILLEGAL_PARAMETER);
  388. return MBEDTLS_ERR_SSL_BAD_HS_CLIENT_HELLO;
  389. }
  390. /*
  391. * Quoting draft-ietf-tls-dtls-connection-id-05
  392. * https://tools.ietf.org/html/draft-ietf-tls-dtls-connection-id-05
  393. *
  394. * struct {
  395. * opaque cid<0..2^8-1>;
  396. * } ConnectionId;
  397. */
  398. if (len < 1) {
  399. MBEDTLS_SSL_DEBUG_MSG(1, ("bad client hello message"));
  400. mbedtls_ssl_send_alert_message(ssl, MBEDTLS_SSL_ALERT_LEVEL_FATAL,
  401. MBEDTLS_SSL_ALERT_MSG_ILLEGAL_PARAMETER);
  402. return MBEDTLS_ERR_SSL_BAD_HS_CLIENT_HELLO;
  403. }
  404. peer_cid_len = *buf++;
  405. len--;
  406. if (len != peer_cid_len) {
  407. MBEDTLS_SSL_DEBUG_MSG(1, ("bad client hello message"));
  408. mbedtls_ssl_send_alert_message(ssl, MBEDTLS_SSL_ALERT_LEVEL_FATAL,
  409. MBEDTLS_SSL_ALERT_MSG_ILLEGAL_PARAMETER);
  410. return MBEDTLS_ERR_SSL_BAD_HS_CLIENT_HELLO;
  411. }
  412. /* Ignore CID if the user has disabled its use. */
  413. if (ssl->negotiate_cid == MBEDTLS_SSL_CID_DISABLED) {
  414. /* Leave ssl->handshake->cid_in_use in its default
  415. * value of MBEDTLS_SSL_CID_DISABLED. */
  416. MBEDTLS_SSL_DEBUG_MSG(3, ("Client sent CID extension, but CID disabled"));
  417. return 0;
  418. }
  419. if (peer_cid_len > MBEDTLS_SSL_CID_OUT_LEN_MAX) {
  420. MBEDTLS_SSL_DEBUG_MSG(1, ("bad client hello message"));
  421. mbedtls_ssl_send_alert_message(ssl, MBEDTLS_SSL_ALERT_LEVEL_FATAL,
  422. MBEDTLS_SSL_ALERT_MSG_ILLEGAL_PARAMETER);
  423. return MBEDTLS_ERR_SSL_BAD_HS_CLIENT_HELLO;
  424. }
  425. ssl->handshake->cid_in_use = MBEDTLS_SSL_CID_ENABLED;
  426. ssl->handshake->peer_cid_len = (uint8_t) peer_cid_len;
  427. memcpy(ssl->handshake->peer_cid, buf, peer_cid_len);
  428. MBEDTLS_SSL_DEBUG_MSG(3, ("Use of CID extension negotiated"));
  429. MBEDTLS_SSL_DEBUG_BUF(3, "Client CID", buf, peer_cid_len);
  430. return 0;
  431. }
  432. #endif /* MBEDTLS_SSL_DTLS_CONNECTION_ID */
  433. #if defined(MBEDTLS_SSL_TRUNCATED_HMAC)
  434. MBEDTLS_CHECK_RETURN_CRITICAL
  435. static int ssl_parse_truncated_hmac_ext(mbedtls_ssl_context *ssl,
  436. const unsigned char *buf,
  437. size_t len)
  438. {
  439. if (len != 0) {
  440. MBEDTLS_SSL_DEBUG_MSG(1, ("bad client hello message"));
  441. mbedtls_ssl_send_alert_message(ssl, MBEDTLS_SSL_ALERT_LEVEL_FATAL,
  442. MBEDTLS_SSL_ALERT_MSG_DECODE_ERROR);
  443. return MBEDTLS_ERR_SSL_BAD_HS_CLIENT_HELLO;
  444. }
  445. ((void) buf);
  446. if (ssl->conf->trunc_hmac == MBEDTLS_SSL_TRUNC_HMAC_ENABLED) {
  447. ssl->session_negotiate->trunc_hmac = MBEDTLS_SSL_TRUNC_HMAC_ENABLED;
  448. }
  449. return 0;
  450. }
  451. #endif /* MBEDTLS_SSL_TRUNCATED_HMAC */
  452. #if defined(MBEDTLS_SSL_ENCRYPT_THEN_MAC)
  453. MBEDTLS_CHECK_RETURN_CRITICAL
  454. static int ssl_parse_encrypt_then_mac_ext(mbedtls_ssl_context *ssl,
  455. const unsigned char *buf,
  456. size_t len)
  457. {
  458. if (len != 0) {
  459. MBEDTLS_SSL_DEBUG_MSG(1, ("bad client hello message"));
  460. mbedtls_ssl_send_alert_message(ssl, MBEDTLS_SSL_ALERT_LEVEL_FATAL,
  461. MBEDTLS_SSL_ALERT_MSG_DECODE_ERROR);
  462. return MBEDTLS_ERR_SSL_BAD_HS_CLIENT_HELLO;
  463. }
  464. ((void) buf);
  465. if (ssl->conf->encrypt_then_mac == MBEDTLS_SSL_ETM_ENABLED &&
  466. ssl->minor_ver != MBEDTLS_SSL_MINOR_VERSION_0) {
  467. ssl->session_negotiate->encrypt_then_mac = MBEDTLS_SSL_ETM_ENABLED;
  468. }
  469. return 0;
  470. }
  471. #endif /* MBEDTLS_SSL_ENCRYPT_THEN_MAC */
  472. #if defined(MBEDTLS_SSL_EXTENDED_MASTER_SECRET)
  473. MBEDTLS_CHECK_RETURN_CRITICAL
  474. static int ssl_parse_extended_ms_ext(mbedtls_ssl_context *ssl,
  475. const unsigned char *buf,
  476. size_t len)
  477. {
  478. if (len != 0) {
  479. MBEDTLS_SSL_DEBUG_MSG(1, ("bad client hello message"));
  480. mbedtls_ssl_send_alert_message(ssl, MBEDTLS_SSL_ALERT_LEVEL_FATAL,
  481. MBEDTLS_SSL_ALERT_MSG_DECODE_ERROR);
  482. return MBEDTLS_ERR_SSL_BAD_HS_CLIENT_HELLO;
  483. }
  484. ((void) buf);
  485. if (ssl->conf->extended_ms == MBEDTLS_SSL_EXTENDED_MS_ENABLED &&
  486. ssl->minor_ver != MBEDTLS_SSL_MINOR_VERSION_0) {
  487. ssl->handshake->extended_ms = MBEDTLS_SSL_EXTENDED_MS_ENABLED;
  488. }
  489. return 0;
  490. }
  491. #endif /* MBEDTLS_SSL_EXTENDED_MASTER_SECRET */
  492. #if defined(MBEDTLS_SSL_SESSION_TICKETS)
  493. MBEDTLS_CHECK_RETURN_CRITICAL
  494. static int ssl_parse_session_ticket_ext(mbedtls_ssl_context *ssl,
  495. unsigned char *buf,
  496. size_t len)
  497. {
  498. int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
  499. mbedtls_ssl_session session;
  500. mbedtls_ssl_session_init(&session);
  501. if (ssl->conf->f_ticket_parse == NULL ||
  502. ssl->conf->f_ticket_write == NULL) {
  503. return 0;
  504. }
  505. /* Remember the client asked us to send a new ticket */
  506. ssl->handshake->new_session_ticket = 1;
  507. MBEDTLS_SSL_DEBUG_MSG(3, ("ticket length: %" MBEDTLS_PRINTF_SIZET, len));
  508. if (len == 0) {
  509. return 0;
  510. }
  511. #if defined(MBEDTLS_SSL_RENEGOTIATION)
  512. if (ssl->renego_status != MBEDTLS_SSL_INITIAL_HANDSHAKE) {
  513. MBEDTLS_SSL_DEBUG_MSG(3, ("ticket rejected: renegotiating"));
  514. return 0;
  515. }
  516. #endif /* MBEDTLS_SSL_RENEGOTIATION */
  517. /*
  518. * Failures are ok: just ignore the ticket and proceed.
  519. */
  520. if ((ret = ssl->conf->f_ticket_parse(ssl->conf->p_ticket, &session,
  521. buf, len)) != 0) {
  522. mbedtls_ssl_session_free(&session);
  523. if (ret == MBEDTLS_ERR_SSL_INVALID_MAC) {
  524. MBEDTLS_SSL_DEBUG_MSG(3, ("ticket is not authentic"));
  525. } else if (ret == MBEDTLS_ERR_SSL_SESSION_TICKET_EXPIRED) {
  526. MBEDTLS_SSL_DEBUG_MSG(3, ("ticket is expired"));
  527. } else {
  528. MBEDTLS_SSL_DEBUG_RET(1, "mbedtls_ssl_ticket_parse", ret);
  529. }
  530. return 0;
  531. }
  532. /*
  533. * Keep the session ID sent by the client, since we MUST send it back to
  534. * inform them we're accepting the ticket (RFC 5077 section 3.4)
  535. */
  536. session.id_len = ssl->session_negotiate->id_len;
  537. memcpy(&session.id, ssl->session_negotiate->id, session.id_len);
  538. mbedtls_ssl_session_free(ssl->session_negotiate);
  539. memcpy(ssl->session_negotiate, &session, sizeof(mbedtls_ssl_session));
  540. /* Zeroize instead of free as we copied the content */
  541. mbedtls_platform_zeroize(&session, sizeof(mbedtls_ssl_session));
  542. MBEDTLS_SSL_DEBUG_MSG(3, ("session successfully restored from ticket"));
  543. ssl->handshake->resume = 1;
  544. /* Don't send a new ticket after all, this one is OK */
  545. ssl->handshake->new_session_ticket = 0;
  546. return 0;
  547. }
  548. #endif /* MBEDTLS_SSL_SESSION_TICKETS */
  549. #if defined(MBEDTLS_SSL_ALPN)
  550. MBEDTLS_CHECK_RETURN_CRITICAL
  551. static int ssl_parse_alpn_ext(mbedtls_ssl_context *ssl,
  552. const unsigned char *buf, size_t len)
  553. {
  554. size_t list_len, cur_len, ours_len;
  555. const unsigned char *theirs, *start, *end;
  556. const char **ours;
  557. /* If ALPN not configured, just ignore the extension */
  558. if (ssl->conf->alpn_list == NULL) {
  559. return 0;
  560. }
  561. /*
  562. * opaque ProtocolName<1..2^8-1>;
  563. *
  564. * struct {
  565. * ProtocolName protocol_name_list<2..2^16-1>
  566. * } ProtocolNameList;
  567. */
  568. /* Min length is 2 (list_len) + 1 (name_len) + 1 (name) */
  569. if (len < 4) {
  570. mbedtls_ssl_send_alert_message(ssl, MBEDTLS_SSL_ALERT_LEVEL_FATAL,
  571. MBEDTLS_SSL_ALERT_MSG_DECODE_ERROR);
  572. return MBEDTLS_ERR_SSL_BAD_HS_CLIENT_HELLO;
  573. }
  574. list_len = (buf[0] << 8) | buf[1];
  575. if (list_len != len - 2) {
  576. mbedtls_ssl_send_alert_message(ssl, MBEDTLS_SSL_ALERT_LEVEL_FATAL,
  577. MBEDTLS_SSL_ALERT_MSG_DECODE_ERROR);
  578. return MBEDTLS_ERR_SSL_BAD_HS_CLIENT_HELLO;
  579. }
  580. /*
  581. * Validate peer's list (lengths)
  582. */
  583. start = buf + 2;
  584. end = buf + len;
  585. for (theirs = start; theirs != end; theirs += cur_len) {
  586. cur_len = *theirs++;
  587. /* Current identifier must fit in list */
  588. if (cur_len > (size_t) (end - theirs)) {
  589. mbedtls_ssl_send_alert_message(ssl, MBEDTLS_SSL_ALERT_LEVEL_FATAL,
  590. MBEDTLS_SSL_ALERT_MSG_DECODE_ERROR);
  591. return MBEDTLS_ERR_SSL_BAD_HS_CLIENT_HELLO;
  592. }
  593. /* Empty strings MUST NOT be included */
  594. if (cur_len == 0) {
  595. mbedtls_ssl_send_alert_message(ssl, MBEDTLS_SSL_ALERT_LEVEL_FATAL,
  596. MBEDTLS_SSL_ALERT_MSG_ILLEGAL_PARAMETER);
  597. return MBEDTLS_ERR_SSL_BAD_HS_CLIENT_HELLO;
  598. }
  599. }
  600. /*
  601. * Use our order of preference
  602. */
  603. for (ours = ssl->conf->alpn_list; *ours != NULL; ours++) {
  604. ours_len = strlen(*ours);
  605. for (theirs = start; theirs != end; theirs += cur_len) {
  606. cur_len = *theirs++;
  607. if (cur_len == ours_len &&
  608. memcmp(theirs, *ours, cur_len) == 0) {
  609. ssl->alpn_chosen = *ours;
  610. return 0;
  611. }
  612. }
  613. }
  614. /* If we get there, no match was found */
  615. mbedtls_ssl_send_alert_message(ssl, MBEDTLS_SSL_ALERT_LEVEL_FATAL,
  616. MBEDTLS_SSL_ALERT_MSG_NO_APPLICATION_PROTOCOL);
  617. return MBEDTLS_ERR_SSL_BAD_HS_CLIENT_HELLO;
  618. }
  619. #endif /* MBEDTLS_SSL_ALPN */
  620. #if defined(MBEDTLS_SSL_DTLS_SRTP)
  621. MBEDTLS_CHECK_RETURN_CRITICAL
  622. static int ssl_parse_use_srtp_ext(mbedtls_ssl_context *ssl,
  623. const unsigned char *buf,
  624. size_t len)
  625. {
  626. mbedtls_ssl_srtp_profile client_protection = MBEDTLS_TLS_SRTP_UNSET;
  627. size_t i, j;
  628. size_t profile_length;
  629. uint16_t mki_length;
  630. /*! 2 bytes for profile length and 1 byte for mki len */
  631. const size_t size_of_lengths = 3;
  632. /* If use_srtp is not configured, just ignore the extension */
  633. if ((ssl->conf->transport != MBEDTLS_SSL_TRANSPORT_DATAGRAM) ||
  634. (ssl->conf->dtls_srtp_profile_list == NULL) ||
  635. (ssl->conf->dtls_srtp_profile_list_len == 0)) {
  636. return 0;
  637. }
  638. /* RFC5764 section 4.1.1
  639. * uint8 SRTPProtectionProfile[2];
  640. *
  641. * struct {
  642. * SRTPProtectionProfiles SRTPProtectionProfiles;
  643. * opaque srtp_mki<0..255>;
  644. * } UseSRTPData;
  645. * SRTPProtectionProfile SRTPProtectionProfiles<2..2^16-1>;
  646. */
  647. /*
  648. * Min length is 5: at least one protection profile(2 bytes)
  649. * and length(2 bytes) + srtp_mki length(1 byte)
  650. * Check here that we have at least 2 bytes of protection profiles length
  651. * and one of srtp_mki length
  652. */
  653. if (len < size_of_lengths) {
  654. mbedtls_ssl_send_alert_message(ssl, MBEDTLS_SSL_ALERT_LEVEL_FATAL,
  655. MBEDTLS_SSL_ALERT_MSG_HANDSHAKE_FAILURE);
  656. return MBEDTLS_ERR_SSL_BAD_HS_CLIENT_HELLO;
  657. }
  658. ssl->dtls_srtp_info.chosen_dtls_srtp_profile = MBEDTLS_TLS_SRTP_UNSET;
  659. /* first 2 bytes are protection profile length(in bytes) */
  660. profile_length = (buf[0] << 8) | buf[1];
  661. buf += 2;
  662. /* The profile length cannot be bigger than input buffer size - lengths fields */
  663. if (profile_length > len - size_of_lengths ||
  664. profile_length % 2 != 0) { /* profiles are 2 bytes long, so the length must be even */
  665. mbedtls_ssl_send_alert_message(ssl, MBEDTLS_SSL_ALERT_LEVEL_FATAL,
  666. MBEDTLS_SSL_ALERT_MSG_HANDSHAKE_FAILURE);
  667. return MBEDTLS_ERR_SSL_BAD_HS_CLIENT_HELLO;
  668. }
  669. /*
  670. * parse the extension list values are defined in
  671. * http://www.iana.org/assignments/srtp-protection/srtp-protection.xhtml
  672. */
  673. for (j = 0; j < profile_length; j += 2) {
  674. uint16_t protection_profile_value = buf[j] << 8 | buf[j + 1];
  675. client_protection = mbedtls_ssl_check_srtp_profile_value(protection_profile_value);
  676. if (client_protection != MBEDTLS_TLS_SRTP_UNSET) {
  677. MBEDTLS_SSL_DEBUG_MSG(3, ("found srtp profile: %s",
  678. mbedtls_ssl_get_srtp_profile_as_string(
  679. client_protection)));
  680. } else {
  681. continue;
  682. }
  683. /* check if suggested profile is in our list */
  684. for (i = 0; i < ssl->conf->dtls_srtp_profile_list_len; i++) {
  685. if (client_protection == ssl->conf->dtls_srtp_profile_list[i]) {
  686. ssl->dtls_srtp_info.chosen_dtls_srtp_profile = ssl->conf->dtls_srtp_profile_list[i];
  687. MBEDTLS_SSL_DEBUG_MSG(3, ("selected srtp profile: %s",
  688. mbedtls_ssl_get_srtp_profile_as_string(
  689. client_protection)));
  690. break;
  691. }
  692. }
  693. if (ssl->dtls_srtp_info.chosen_dtls_srtp_profile != MBEDTLS_TLS_SRTP_UNSET) {
  694. break;
  695. }
  696. }
  697. buf += profile_length; /* buf points to the mki length */
  698. mki_length = *buf;
  699. buf++;
  700. if (mki_length > MBEDTLS_TLS_SRTP_MAX_MKI_LENGTH ||
  701. mki_length + profile_length + size_of_lengths != len) {
  702. mbedtls_ssl_send_alert_message(ssl, MBEDTLS_SSL_ALERT_LEVEL_FATAL,
  703. MBEDTLS_SSL_ALERT_MSG_HANDSHAKE_FAILURE);
  704. return MBEDTLS_ERR_SSL_BAD_HS_CLIENT_HELLO;
  705. }
  706. /* Parse the mki only if present and mki is supported locally */
  707. if (ssl->conf->dtls_srtp_mki_support == MBEDTLS_SSL_DTLS_SRTP_MKI_SUPPORTED &&
  708. mki_length > 0) {
  709. ssl->dtls_srtp_info.mki_len = mki_length;
  710. memcpy(ssl->dtls_srtp_info.mki_value, buf, mki_length);
  711. MBEDTLS_SSL_DEBUG_BUF(3, "using mki", ssl->dtls_srtp_info.mki_value,
  712. ssl->dtls_srtp_info.mki_len);
  713. }
  714. return 0;
  715. }
  716. #endif /* MBEDTLS_SSL_DTLS_SRTP */
  717. /*
  718. * Auxiliary functions for ServerHello parsing and related actions
  719. */
  720. #if defined(MBEDTLS_X509_CRT_PARSE_C)
  721. /*
  722. * Return 0 if the given key uses one of the acceptable curves, -1 otherwise
  723. */
  724. #if defined(MBEDTLS_ECDSA_C)
  725. MBEDTLS_CHECK_RETURN_CRITICAL
  726. static int ssl_check_key_curve(mbedtls_pk_context *pk,
  727. const mbedtls_ecp_curve_info **curves)
  728. {
  729. const mbedtls_ecp_curve_info **crv = curves;
  730. mbedtls_ecp_group_id grp_id = mbedtls_pk_ec(*pk)->grp.id;
  731. while (*crv != NULL) {
  732. if ((*crv)->grp_id == grp_id) {
  733. return 0;
  734. }
  735. crv++;
  736. }
  737. return -1;
  738. }
  739. #endif /* MBEDTLS_ECDSA_C */
  740. /*
  741. * Try picking a certificate for this ciphersuite,
  742. * return 0 on success and -1 on failure.
  743. */
  744. MBEDTLS_CHECK_RETURN_CRITICAL
  745. static int ssl_pick_cert(mbedtls_ssl_context *ssl,
  746. const mbedtls_ssl_ciphersuite_t *ciphersuite_info)
  747. {
  748. mbedtls_ssl_key_cert *cur, *list, *fallback = NULL;
  749. mbedtls_pk_type_t pk_alg =
  750. mbedtls_ssl_get_ciphersuite_sig_pk_alg(ciphersuite_info);
  751. uint32_t flags;
  752. #if defined(MBEDTLS_SSL_SERVER_NAME_INDICATION)
  753. if (ssl->handshake->sni_key_cert != NULL) {
  754. list = ssl->handshake->sni_key_cert;
  755. } else
  756. #endif
  757. list = ssl->conf->key_cert;
  758. if (pk_alg == MBEDTLS_PK_NONE) {
  759. return 0;
  760. }
  761. MBEDTLS_SSL_DEBUG_MSG(3, ("ciphersuite requires certificate"));
  762. if (list == NULL) {
  763. MBEDTLS_SSL_DEBUG_MSG(3, ("server has no certificate"));
  764. return -1;
  765. }
  766. for (cur = list; cur != NULL; cur = cur->next) {
  767. flags = 0;
  768. MBEDTLS_SSL_DEBUG_CRT(3, "candidate certificate chain, certificate",
  769. cur->cert);
  770. if (!mbedtls_pk_can_do(&cur->cert->pk, pk_alg)) {
  771. MBEDTLS_SSL_DEBUG_MSG(3, ("certificate mismatch: key type"));
  772. continue;
  773. }
  774. /*
  775. * This avoids sending the client a cert it'll reject based on
  776. * keyUsage or other extensions.
  777. *
  778. * It also allows the user to provision different certificates for
  779. * different uses based on keyUsage, eg if they want to avoid signing
  780. * and decrypting with the same RSA key.
  781. */
  782. if (mbedtls_ssl_check_cert_usage(cur->cert, ciphersuite_info,
  783. MBEDTLS_SSL_IS_SERVER, &flags) != 0) {
  784. MBEDTLS_SSL_DEBUG_MSG(3, ("certificate mismatch: "
  785. "(extended) key usage extension"));
  786. continue;
  787. }
  788. #if defined(MBEDTLS_ECDSA_C)
  789. if (pk_alg == MBEDTLS_PK_ECDSA &&
  790. ssl_check_key_curve(&cur->cert->pk, ssl->handshake->curves) != 0) {
  791. MBEDTLS_SSL_DEBUG_MSG(3, ("certificate mismatch: elliptic curve"));
  792. continue;
  793. }
  794. #endif
  795. /*
  796. * Try to select a SHA-1 certificate for pre-1.2 clients, but still
  797. * present them a SHA-higher cert rather than failing if it's the only
  798. * one we got that satisfies the other conditions.
  799. */
  800. if (ssl->minor_ver < MBEDTLS_SSL_MINOR_VERSION_3 &&
  801. cur->cert->sig_md != MBEDTLS_MD_SHA1) {
  802. if (fallback == NULL) {
  803. fallback = cur;
  804. }
  805. {
  806. MBEDTLS_SSL_DEBUG_MSG(3, ("certificate not preferred: "
  807. "sha-2 with pre-TLS 1.2 client"));
  808. continue;
  809. }
  810. }
  811. /* If we get there, we got a winner */
  812. break;
  813. }
  814. if (cur == NULL) {
  815. cur = fallback;
  816. }
  817. /* Do not update ssl->handshake->key_cert unless there is a match */
  818. if (cur != NULL) {
  819. ssl->handshake->key_cert = cur;
  820. MBEDTLS_SSL_DEBUG_CRT(3, "selected certificate chain, certificate",
  821. ssl->handshake->key_cert->cert);
  822. return 0;
  823. }
  824. return -1;
  825. }
  826. #endif /* MBEDTLS_X509_CRT_PARSE_C */
  827. /*
  828. * Check if a given ciphersuite is suitable for use with our config/keys/etc
  829. * Sets ciphersuite_info only if the suite matches.
  830. */
  831. MBEDTLS_CHECK_RETURN_CRITICAL
  832. static int ssl_ciphersuite_match(mbedtls_ssl_context *ssl, int suite_id,
  833. const mbedtls_ssl_ciphersuite_t **ciphersuite_info)
  834. {
  835. const mbedtls_ssl_ciphersuite_t *suite_info;
  836. #if defined(MBEDTLS_SSL_PROTO_TLS1_2) && \
  837. defined(MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED)
  838. mbedtls_pk_type_t sig_type;
  839. #endif
  840. suite_info = mbedtls_ssl_ciphersuite_from_id(suite_id);
  841. if (suite_info == NULL) {
  842. MBEDTLS_SSL_DEBUG_MSG(1, ("should never happen"));
  843. return MBEDTLS_ERR_SSL_INTERNAL_ERROR;
  844. }
  845. MBEDTLS_SSL_DEBUG_MSG(3, ("trying ciphersuite: %#04x (%s)",
  846. (unsigned int) suite_id, suite_info->name));
  847. if (suite_info->min_minor_ver > ssl->minor_ver ||
  848. suite_info->max_minor_ver < ssl->minor_ver) {
  849. MBEDTLS_SSL_DEBUG_MSG(3, ("ciphersuite mismatch: version"));
  850. return 0;
  851. }
  852. #if defined(MBEDTLS_SSL_PROTO_DTLS)
  853. if (ssl->conf->transport == MBEDTLS_SSL_TRANSPORT_DATAGRAM &&
  854. (suite_info->flags & MBEDTLS_CIPHERSUITE_NODTLS)) {
  855. return 0;
  856. }
  857. #endif
  858. #if defined(MBEDTLS_ARC4_C)
  859. if (ssl->conf->arc4_disabled == MBEDTLS_SSL_ARC4_DISABLED &&
  860. suite_info->cipher == MBEDTLS_CIPHER_ARC4_128) {
  861. MBEDTLS_SSL_DEBUG_MSG(3, ("ciphersuite mismatch: rc4"));
  862. return 0;
  863. }
  864. #endif
  865. #if defined(MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED)
  866. if (suite_info->key_exchange == MBEDTLS_KEY_EXCHANGE_ECJPAKE &&
  867. (ssl->handshake->cli_exts & MBEDTLS_TLS_EXT_ECJPAKE_KKPP_OK) == 0) {
  868. MBEDTLS_SSL_DEBUG_MSG(3, ("ciphersuite mismatch: ecjpake "
  869. "not configured or ext missing"));
  870. return 0;
  871. }
  872. #endif
  873. #if defined(MBEDTLS_ECDH_C) || defined(MBEDTLS_ECDSA_C)
  874. if (mbedtls_ssl_ciphersuite_uses_ec(suite_info) &&
  875. (ssl->handshake->curves == NULL ||
  876. ssl->handshake->curves[0] == NULL)) {
  877. MBEDTLS_SSL_DEBUG_MSG(3, ("ciphersuite mismatch: "
  878. "no common elliptic curve"));
  879. return 0;
  880. }
  881. #endif
  882. #if defined(MBEDTLS_KEY_EXCHANGE_SOME_PSK_ENABLED)
  883. /* If the ciphersuite requires a pre-shared key and we don't
  884. * have one, skip it now rather than failing later */
  885. if (mbedtls_ssl_ciphersuite_uses_psk(suite_info) &&
  886. ssl_conf_has_psk_or_cb(ssl->conf) == 0) {
  887. MBEDTLS_SSL_DEBUG_MSG(3, ("ciphersuite mismatch: no pre-shared key"));
  888. return 0;
  889. }
  890. #endif
  891. #if defined(MBEDTLS_SSL_PROTO_TLS1_2) && \
  892. defined(MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED)
  893. /* If the ciphersuite requires signing, check whether
  894. * a suitable hash algorithm is present. */
  895. if (ssl->minor_ver == MBEDTLS_SSL_MINOR_VERSION_3) {
  896. sig_type = mbedtls_ssl_get_ciphersuite_sig_alg(suite_info);
  897. if (sig_type != MBEDTLS_PK_NONE &&
  898. mbedtls_ssl_sig_hash_set_find(&ssl->handshake->hash_algs,
  899. sig_type) == MBEDTLS_MD_NONE) {
  900. MBEDTLS_SSL_DEBUG_MSG(3, ("ciphersuite mismatch: no suitable hash algorithm "
  901. "for signature algorithm %u", (unsigned) sig_type));
  902. return 0;
  903. }
  904. }
  905. #endif /* MBEDTLS_SSL_PROTO_TLS1_2 &&
  906. MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED */
  907. #if defined(MBEDTLS_X509_CRT_PARSE_C)
  908. /*
  909. * Final check: if ciphersuite requires us to have a
  910. * certificate/key of a particular type:
  911. * - select the appropriate certificate if we have one, or
  912. * - try the next ciphersuite if we don't
  913. * This must be done last since we modify the key_cert list.
  914. */
  915. if (ssl_pick_cert(ssl, suite_info) != 0) {
  916. MBEDTLS_SSL_DEBUG_MSG(3, ("ciphersuite mismatch: "
  917. "no suitable certificate"));
  918. return 0;
  919. }
  920. #endif
  921. *ciphersuite_info = suite_info;
  922. return 0;
  923. }
  924. #if defined(MBEDTLS_SSL_SRV_SUPPORT_SSLV2_CLIENT_HELLO)
  925. MBEDTLS_CHECK_RETURN_CRITICAL
  926. static int ssl_parse_client_hello_v2(mbedtls_ssl_context *ssl)
  927. {
  928. int ret, got_common_suite;
  929. unsigned int i, j;
  930. size_t n;
  931. unsigned int ciph_len, sess_len, chal_len;
  932. unsigned char *buf, *p;
  933. const int *ciphersuites;
  934. const mbedtls_ssl_ciphersuite_t *ciphersuite_info;
  935. MBEDTLS_SSL_DEBUG_MSG(2, ("=> parse client hello v2"));
  936. #if defined(MBEDTLS_SSL_RENEGOTIATION)
  937. if (ssl->renego_status != MBEDTLS_SSL_INITIAL_HANDSHAKE) {
  938. MBEDTLS_SSL_DEBUG_MSG(1, ("client hello v2 illegal for renegotiation"));
  939. mbedtls_ssl_send_alert_message(ssl, MBEDTLS_SSL_ALERT_LEVEL_FATAL,
  940. MBEDTLS_SSL_ALERT_MSG_HANDSHAKE_FAILURE);
  941. return MBEDTLS_ERR_SSL_BAD_HS_CLIENT_HELLO;
  942. }
  943. #endif /* MBEDTLS_SSL_RENEGOTIATION */
  944. buf = ssl->in_hdr;
  945. MBEDTLS_SSL_DEBUG_BUF(4, "record header", buf, 5);
  946. MBEDTLS_SSL_DEBUG_MSG(3, ("client hello v2, message type: %d",
  947. buf[2]));
  948. MBEDTLS_SSL_DEBUG_MSG(3, ("client hello v2, message len.: %d",
  949. ((buf[0] & 0x7F) << 8) | buf[1]));
  950. MBEDTLS_SSL_DEBUG_MSG(3, ("client hello v2, max. version: [%d:%d]",
  951. buf[3], buf[4]));
  952. /*
  953. * SSLv2 Client Hello
  954. *
  955. * Record layer:
  956. * 0 . 1 message length
  957. *
  958. * SSL layer:
  959. * 2 . 2 message type
  960. * 3 . 4 protocol version
  961. */
  962. if (buf[2] != MBEDTLS_SSL_HS_CLIENT_HELLO ||
  963. buf[3] != MBEDTLS_SSL_MAJOR_VERSION_3) {
  964. MBEDTLS_SSL_DEBUG_MSG(1, ("bad client hello message"));
  965. return MBEDTLS_ERR_SSL_BAD_HS_CLIENT_HELLO;
  966. }
  967. n = ((buf[0] << 8) | buf[1]) & 0x7FFF;
  968. if (n < 17 || n > 512) {
  969. MBEDTLS_SSL_DEBUG_MSG(1, ("bad client hello message"));
  970. return MBEDTLS_ERR_SSL_BAD_HS_CLIENT_HELLO;
  971. }
  972. ssl->major_ver = MBEDTLS_SSL_MAJOR_VERSION_3;
  973. ssl->minor_ver = (buf[4] <= ssl->conf->max_minor_ver)
  974. ? buf[4] : ssl->conf->max_minor_ver;
  975. if (ssl->minor_ver < ssl->conf->min_minor_ver) {
  976. MBEDTLS_SSL_DEBUG_MSG(1, ("client only supports ssl smaller than minimum"
  977. " [%d:%d] < [%d:%d]",
  978. ssl->major_ver, ssl->minor_ver,
  979. ssl->conf->min_major_ver, ssl->conf->min_minor_ver));
  980. mbedtls_ssl_send_alert_message(ssl, MBEDTLS_SSL_ALERT_LEVEL_FATAL,
  981. MBEDTLS_SSL_ALERT_MSG_PROTOCOL_VERSION);
  982. return MBEDTLS_ERR_SSL_BAD_HS_PROTOCOL_VERSION;
  983. }
  984. ssl->handshake->max_major_ver = buf[3];
  985. ssl->handshake->max_minor_ver = buf[4];
  986. if ((ret = mbedtls_ssl_fetch_input(ssl, 2 + n)) != 0) {
  987. MBEDTLS_SSL_DEBUG_RET(1, "mbedtls_ssl_fetch_input", ret);
  988. return ret;
  989. }
  990. ssl->handshake->update_checksum(ssl, buf + 2, n);
  991. buf = ssl->in_msg;
  992. n = ssl->in_left - 5;
  993. /*
  994. * 0 . 1 ciphersuitelist length
  995. * 2 . 3 session id length
  996. * 4 . 5 challenge length
  997. * 6 . .. ciphersuitelist
  998. * .. . .. session id
  999. * .. . .. challenge
  1000. */
  1001. MBEDTLS_SSL_DEBUG_BUF(4, "record contents", buf, n);
  1002. ciph_len = (buf[0] << 8) | buf[1];
  1003. sess_len = (buf[2] << 8) | buf[3];
  1004. chal_len = (buf[4] << 8) | buf[5];
  1005. MBEDTLS_SSL_DEBUG_MSG(3, ("ciph_len: %u, sess_len: %u, chal_len: %u",
  1006. ciph_len, sess_len, chal_len));
  1007. /*
  1008. * Make sure each parameter length is valid
  1009. */
  1010. if (ciph_len < 3 || (ciph_len % 3) != 0) {
  1011. MBEDTLS_SSL_DEBUG_MSG(1, ("bad client hello message"));
  1012. return MBEDTLS_ERR_SSL_BAD_HS_CLIENT_HELLO;
  1013. }
  1014. if (sess_len > 32) {
  1015. MBEDTLS_SSL_DEBUG_MSG(1, ("bad client hello message"));
  1016. return MBEDTLS_ERR_SSL_BAD_HS_CLIENT_HELLO;
  1017. }
  1018. if (chal_len < 8 || chal_len > 32) {
  1019. MBEDTLS_SSL_DEBUG_MSG(1, ("bad client hello message"));
  1020. return MBEDTLS_ERR_SSL_BAD_HS_CLIENT_HELLO;
  1021. }
  1022. if (n != 6 + ciph_len + sess_len + chal_len) {
  1023. MBEDTLS_SSL_DEBUG_MSG(1, ("bad client hello message"));
  1024. return MBEDTLS_ERR_SSL_BAD_HS_CLIENT_HELLO;
  1025. }
  1026. MBEDTLS_SSL_DEBUG_BUF(3, "client hello, ciphersuitelist",
  1027. buf + 6, ciph_len);
  1028. MBEDTLS_SSL_DEBUG_BUF(3, "client hello, session id",
  1029. buf + 6 + ciph_len, sess_len);
  1030. MBEDTLS_SSL_DEBUG_BUF(3, "client hello, challenge",
  1031. buf + 6 + ciph_len + sess_len, chal_len);
  1032. p = buf + 6 + ciph_len;
  1033. ssl->session_negotiate->id_len = sess_len;
  1034. memset(ssl->session_negotiate->id, 0,
  1035. sizeof(ssl->session_negotiate->id));
  1036. memcpy(ssl->session_negotiate->id, p, ssl->session_negotiate->id_len);
  1037. p += sess_len;
  1038. memset(ssl->handshake->randbytes, 0, 64);
  1039. memcpy(ssl->handshake->randbytes + 32 - chal_len, p, chal_len);
  1040. /*
  1041. * Check for TLS_EMPTY_RENEGOTIATION_INFO_SCSV
  1042. */
  1043. for (i = 0, p = buf + 6; i < ciph_len; i += 3, p += 3) {
  1044. if (p[0] == 0 && p[1] == 0 && p[2] == MBEDTLS_SSL_EMPTY_RENEGOTIATION_INFO) {
  1045. MBEDTLS_SSL_DEBUG_MSG(3, ("received TLS_EMPTY_RENEGOTIATION_INFO "));
  1046. #if defined(MBEDTLS_SSL_RENEGOTIATION)
  1047. if (ssl->renego_status == MBEDTLS_SSL_RENEGOTIATION_IN_PROGRESS) {
  1048. MBEDTLS_SSL_DEBUG_MSG(1, ("received RENEGOTIATION SCSV "
  1049. "during renegotiation"));
  1050. mbedtls_ssl_send_alert_message(ssl, MBEDTLS_SSL_ALERT_LEVEL_FATAL,
  1051. MBEDTLS_SSL_ALERT_MSG_HANDSHAKE_FAILURE);
  1052. return MBEDTLS_ERR_SSL_BAD_HS_CLIENT_HELLO;
  1053. }
  1054. #endif /* MBEDTLS_SSL_RENEGOTIATION */
  1055. ssl->secure_renegotiation = MBEDTLS_SSL_SECURE_RENEGOTIATION;
  1056. break;
  1057. }
  1058. }
  1059. #if defined(MBEDTLS_SSL_FALLBACK_SCSV)
  1060. for (i = 0, p = buf + 6; i < ciph_len; i += 3, p += 3) {
  1061. if (p[0] == 0 &&
  1062. MBEDTLS_GET_UINT16_BE(p, 1) != MBEDTLS_SSL_FALLBACK_SCSV_VALUE) {
  1063. MBEDTLS_SSL_DEBUG_MSG(3, ("received FALLBACK_SCSV"));
  1064. if (ssl->minor_ver < ssl->conf->max_minor_ver) {
  1065. MBEDTLS_SSL_DEBUG_MSG(1, ("inapropriate fallback"));
  1066. mbedtls_ssl_send_alert_message(ssl, MBEDTLS_SSL_ALERT_LEVEL_FATAL,
  1067. MBEDTLS_SSL_ALERT_MSG_INAPROPRIATE_FALLBACK);
  1068. return MBEDTLS_ERR_SSL_BAD_HS_CLIENT_HELLO;
  1069. }
  1070. break;
  1071. }
  1072. }
  1073. #endif /* MBEDTLS_SSL_FALLBACK_SCSV */
  1074. got_common_suite = 0;
  1075. ciphersuites = ssl->conf->ciphersuite_list[ssl->minor_ver];
  1076. ciphersuite_info = NULL;
  1077. #if defined(MBEDTLS_SSL_SRV_RESPECT_CLIENT_PREFERENCE)
  1078. for (j = 0, p = buf + 6; j < ciph_len; j += 3, p += 3) {
  1079. for (i = 0; ciphersuites[i] != 0; i++) {
  1080. if (p[0] != 0 ||
  1081. MBEDTLS_GET_UINT16_BE(p, 1) != ciphersuites[i]) {
  1082. continue;
  1083. }
  1084. got_common_suite = 1;
  1085. if ((ret = ssl_ciphersuite_match(ssl, ciphersuites[i],
  1086. &ciphersuite_info)) != 0) {
  1087. return ret;
  1088. }
  1089. if (ciphersuite_info != NULL) {
  1090. goto have_ciphersuite_v2;
  1091. }
  1092. }
  1093. }
  1094. #else
  1095. for (i = 0; ciphersuites[i] != 0; i++) {
  1096. for (j = 0, p = buf + 6; j < ciph_len; j += 3, p += 3) {
  1097. if (p[0] != 0 ||
  1098. MBEDTLS_GET_UINT16_BE(p, 1) != ciphersuites[i]) {
  1099. continue;
  1100. }
  1101. got_common_suite = 1;
  1102. if ((ret = ssl_ciphersuite_match(ssl, ciphersuites[i],
  1103. &ciphersuite_info)) != 0) {
  1104. return ret;
  1105. }
  1106. if (ciphersuite_info != NULL) {
  1107. goto have_ciphersuite_v2;
  1108. }
  1109. }
  1110. }
  1111. #endif
  1112. if (got_common_suite) {
  1113. MBEDTLS_SSL_DEBUG_MSG(1, ("got ciphersuites in common, "
  1114. "but none of them usable"));
  1115. return MBEDTLS_ERR_SSL_NO_USABLE_CIPHERSUITE;
  1116. } else {
  1117. MBEDTLS_SSL_DEBUG_MSG(1, ("got no ciphersuites in common"));
  1118. return MBEDTLS_ERR_SSL_NO_CIPHER_CHOSEN;
  1119. }
  1120. have_ciphersuite_v2:
  1121. MBEDTLS_SSL_DEBUG_MSG(2, ("selected ciphersuite: %s", ciphersuite_info->name));
  1122. ssl->session_negotiate->ciphersuite = ciphersuites[i];
  1123. ssl->handshake->ciphersuite_info = ciphersuite_info;
  1124. /*
  1125. * SSLv2 Client Hello relevant renegotiation security checks
  1126. */
  1127. if (ssl->secure_renegotiation == MBEDTLS_SSL_LEGACY_RENEGOTIATION &&
  1128. ssl->conf->allow_legacy_renegotiation == MBEDTLS_SSL_LEGACY_BREAK_HANDSHAKE) {
  1129. MBEDTLS_SSL_DEBUG_MSG(1, ("legacy renegotiation, breaking off handshake"));
  1130. mbedtls_ssl_send_alert_message(ssl, MBEDTLS_SSL_ALERT_LEVEL_FATAL,
  1131. MBEDTLS_SSL_ALERT_MSG_HANDSHAKE_FAILURE);
  1132. return MBEDTLS_ERR_SSL_BAD_HS_CLIENT_HELLO;
  1133. }
  1134. ssl->in_left = 0;
  1135. ssl->state++;
  1136. MBEDTLS_SSL_DEBUG_MSG(2, ("<= parse client hello v2"));
  1137. return 0;
  1138. }
  1139. #endif /* MBEDTLS_SSL_SRV_SUPPORT_SSLV2_CLIENT_HELLO */
  1140. /* This function doesn't alert on errors that happen early during
  1141. ClientHello parsing because they might indicate that the client is
  1142. not talking SSL/TLS at all and would not understand our alert. */
  1143. MBEDTLS_CHECK_RETURN_CRITICAL
  1144. static int ssl_parse_client_hello(mbedtls_ssl_context *ssl)
  1145. {
  1146. int ret, got_common_suite;
  1147. size_t i, j;
  1148. size_t ciph_offset, comp_offset, ext_offset;
  1149. size_t msg_len, ciph_len, sess_len, comp_len, ext_len;
  1150. #if defined(MBEDTLS_SSL_PROTO_DTLS)
  1151. size_t cookie_offset, cookie_len;
  1152. #endif
  1153. unsigned char *buf, *p, *ext;
  1154. #if defined(MBEDTLS_SSL_RENEGOTIATION)
  1155. int renegotiation_info_seen = 0;
  1156. #endif
  1157. int handshake_failure = 0;
  1158. const int *ciphersuites;
  1159. const mbedtls_ssl_ciphersuite_t *ciphersuite_info;
  1160. int major, minor;
  1161. /* If there is no signature-algorithm extension present,
  1162. * we need to fall back to the default values for allowed
  1163. * signature-hash pairs. */
  1164. #if defined(MBEDTLS_SSL_PROTO_TLS1_2) && \
  1165. defined(MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED)
  1166. int sig_hash_alg_ext_present = 0;
  1167. #endif /* MBEDTLS_SSL_PROTO_TLS1_2 &&
  1168. MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED */
  1169. MBEDTLS_SSL_DEBUG_MSG(2, ("=> parse client hello"));
  1170. int renegotiating = 0;
  1171. #if defined(MBEDTLS_SSL_DTLS_ANTI_REPLAY)
  1172. read_record_header:
  1173. #endif
  1174. /*
  1175. * If renegotiating, then the input was read with mbedtls_ssl_read_record(),
  1176. * otherwise read it ourselves manually in order to support SSLv2
  1177. * ClientHello, which doesn't use the same record layer format.
  1178. */
  1179. #if defined(MBEDTLS_SSL_RENEGOTIATION)
  1180. if (ssl->renego_status != MBEDTLS_SSL_INITIAL_HANDSHAKE) {
  1181. renegotiating = 1;
  1182. }
  1183. #endif
  1184. if (!renegotiating) {
  1185. if ((ret = mbedtls_ssl_fetch_input(ssl, 5)) != 0) {
  1186. /* No alert on a read error. */
  1187. MBEDTLS_SSL_DEBUG_RET(1, "mbedtls_ssl_fetch_input", ret);
  1188. return ret;
  1189. }
  1190. }
  1191. buf = ssl->in_hdr;
  1192. #if defined(MBEDTLS_SSL_SRV_SUPPORT_SSLV2_CLIENT_HELLO)
  1193. int is_dtls = 0;
  1194. #if defined(MBEDTLS_SSL_PROTO_DTLS)
  1195. if (ssl->conf->transport == MBEDTLS_SSL_TRANSPORT_DATAGRAM) {
  1196. is_dtls = 1;
  1197. }
  1198. #endif
  1199. if (!is_dtls) {
  1200. if ((buf[0] & 0x80) != 0) {
  1201. return ssl_parse_client_hello_v2(ssl);
  1202. }
  1203. }
  1204. #endif
  1205. MBEDTLS_SSL_DEBUG_BUF(4, "record header", buf, mbedtls_ssl_in_hdr_len(ssl));
  1206. /*
  1207. * SSLv3/TLS Client Hello
  1208. *
  1209. * Record layer:
  1210. * 0 . 0 message type
  1211. * 1 . 2 protocol version
  1212. * 3 . 11 DTLS: epoch + record sequence number
  1213. * 3 . 4 message length
  1214. */
  1215. MBEDTLS_SSL_DEBUG_MSG(3, ("client hello v3, message type: %d",
  1216. buf[0]));
  1217. if (buf[0] != MBEDTLS_SSL_MSG_HANDSHAKE) {
  1218. MBEDTLS_SSL_DEBUG_MSG(1, ("bad client hello message"));
  1219. return MBEDTLS_ERR_SSL_BAD_HS_CLIENT_HELLO;
  1220. }
  1221. MBEDTLS_SSL_DEBUG_MSG(3, ("client hello v3, message len.: %d",
  1222. (ssl->in_len[0] << 8) | ssl->in_len[1]));
  1223. MBEDTLS_SSL_DEBUG_MSG(3, ("client hello v3, protocol version: [%d:%d]",
  1224. buf[1], buf[2]));
  1225. mbedtls_ssl_read_version(&major, &minor, ssl->conf->transport, buf + 1);
  1226. /* According to RFC 5246 Appendix E.1, the version here is typically
  1227. * "{03,00}, the lowest version number supported by the client, [or] the
  1228. * value of ClientHello.client_version", so the only meaningful check here
  1229. * is the major version shouldn't be less than 3 */
  1230. if (major < MBEDTLS_SSL_MAJOR_VERSION_3) {
  1231. MBEDTLS_SSL_DEBUG_MSG(1, ("bad client hello message"));
  1232. return MBEDTLS_ERR_SSL_BAD_HS_CLIENT_HELLO;
  1233. }
  1234. /* For DTLS if this is the initial handshake, remember the client sequence
  1235. * number to use it in our next message (RFC 6347 4.2.1) */
  1236. #if defined(MBEDTLS_SSL_PROTO_DTLS)
  1237. if (ssl->conf->transport == MBEDTLS_SSL_TRANSPORT_DATAGRAM
  1238. #if defined(MBEDTLS_SSL_RENEGOTIATION)
  1239. && ssl->renego_status == MBEDTLS_SSL_INITIAL_HANDSHAKE
  1240. #endif
  1241. ) {
  1242. /* Epoch should be 0 for initial handshakes */
  1243. if (ssl->in_ctr[0] != 0 || ssl->in_ctr[1] != 0) {
  1244. MBEDTLS_SSL_DEBUG_MSG(1, ("bad client hello message"));
  1245. return MBEDTLS_ERR_SSL_BAD_HS_CLIENT_HELLO;
  1246. }
  1247. memcpy(ssl->cur_out_ctr + 2, ssl->in_ctr + 2, 6);
  1248. #if defined(MBEDTLS_SSL_DTLS_ANTI_REPLAY)
  1249. if (mbedtls_ssl_dtls_replay_check(ssl) != 0) {
  1250. MBEDTLS_SSL_DEBUG_MSG(1, ("replayed record, discarding"));
  1251. ssl->next_record_offset = 0;
  1252. ssl->in_left = 0;
  1253. goto read_record_header;
  1254. }
  1255. /* No MAC to check yet, so we can update right now */
  1256. mbedtls_ssl_dtls_replay_update(ssl);
  1257. #endif
  1258. }
  1259. #endif /* MBEDTLS_SSL_PROTO_DTLS */
  1260. msg_len = (ssl->in_len[0] << 8) | ssl->in_len[1];
  1261. #if defined(MBEDTLS_SSL_RENEGOTIATION)
  1262. if (ssl->renego_status != MBEDTLS_SSL_INITIAL_HANDSHAKE) {
  1263. /* Set by mbedtls_ssl_read_record() */
  1264. msg_len = ssl->in_hslen;
  1265. } else
  1266. #endif
  1267. {
  1268. if (msg_len > MBEDTLS_SSL_IN_CONTENT_LEN) {
  1269. MBEDTLS_SSL_DEBUG_MSG(1, ("bad client hello message"));
  1270. return MBEDTLS_ERR_SSL_BAD_HS_CLIENT_HELLO;
  1271. }
  1272. if ((ret = mbedtls_ssl_fetch_input(ssl,
  1273. mbedtls_ssl_in_hdr_len(ssl) + msg_len)) != 0) {
  1274. MBEDTLS_SSL_DEBUG_RET(1, "mbedtls_ssl_fetch_input", ret);
  1275. return ret;
  1276. }
  1277. /* Done reading this record, get ready for the next one */
  1278. #if defined(MBEDTLS_SSL_PROTO_DTLS)
  1279. if (ssl->conf->transport == MBEDTLS_SSL_TRANSPORT_DATAGRAM) {
  1280. ssl->next_record_offset = msg_len + mbedtls_ssl_in_hdr_len(ssl);
  1281. } else
  1282. #endif
  1283. ssl->in_left = 0;
  1284. }
  1285. buf = ssl->in_msg;
  1286. MBEDTLS_SSL_DEBUG_BUF(4, "record contents", buf, msg_len);
  1287. ssl->handshake->update_checksum(ssl, buf, msg_len);
  1288. /*
  1289. * Handshake layer:
  1290. * 0 . 0 handshake type
  1291. * 1 . 3 handshake length
  1292. * 4 . 5 DTLS only: message sequence number
  1293. * 6 . 8 DTLS only: fragment offset
  1294. * 9 . 11 DTLS only: fragment length
  1295. */
  1296. if (msg_len < mbedtls_ssl_hs_hdr_len(ssl)) {
  1297. MBEDTLS_SSL_DEBUG_MSG(1, ("bad client hello message"));
  1298. return MBEDTLS_ERR_SSL_BAD_HS_CLIENT_HELLO;
  1299. }
  1300. MBEDTLS_SSL_DEBUG_MSG(3, ("client hello v3, handshake type: %d", buf[0]));
  1301. if (buf[0] != MBEDTLS_SSL_HS_CLIENT_HELLO) {
  1302. MBEDTLS_SSL_DEBUG_MSG(1, ("bad client hello message"));
  1303. return MBEDTLS_ERR_SSL_BAD_HS_CLIENT_HELLO;
  1304. }
  1305. MBEDTLS_SSL_DEBUG_MSG(3, ("client hello v3, handshake len.: %d",
  1306. (buf[1] << 16) | (buf[2] << 8) | buf[3]));
  1307. if (buf[1] != 0) {
  1308. MBEDTLS_SSL_DEBUG_MSG(1, ("bad client hello message: %u != 0",
  1309. (unsigned) buf[1]));
  1310. return MBEDTLS_ERR_SSL_BAD_HS_CLIENT_HELLO;
  1311. }
  1312. /* We don't support fragmentation of ClientHello (yet?) */
  1313. if (msg_len != mbedtls_ssl_hs_hdr_len(ssl) + ((buf[2] << 8) | buf[3])) {
  1314. MBEDTLS_SSL_DEBUG_MSG(1, ("bad client hello message: %u != %u + %u",
  1315. (unsigned) msg_len,
  1316. (unsigned) mbedtls_ssl_hs_hdr_len(ssl),
  1317. (unsigned) (buf[2] << 8) | buf[3]));
  1318. return MBEDTLS_ERR_SSL_BAD_HS_CLIENT_HELLO;
  1319. }
  1320. #if defined(MBEDTLS_SSL_PROTO_DTLS)
  1321. if (ssl->conf->transport == MBEDTLS_SSL_TRANSPORT_DATAGRAM) {
  1322. /*
  1323. * Copy the client's handshake message_seq on initial handshakes,
  1324. * check sequence number on renego.
  1325. */
  1326. #if defined(MBEDTLS_SSL_RENEGOTIATION)
  1327. if (ssl->renego_status == MBEDTLS_SSL_RENEGOTIATION_IN_PROGRESS) {
  1328. /* This couldn't be done in ssl_prepare_handshake_record() */
  1329. unsigned int cli_msg_seq = (ssl->in_msg[4] << 8) |
  1330. ssl->in_msg[5];
  1331. if (cli_msg_seq != ssl->handshake->in_msg_seq) {
  1332. MBEDTLS_SSL_DEBUG_MSG(1, ("bad client hello message_seq: "
  1333. "%u (expected %u)", cli_msg_seq,
  1334. ssl->handshake->in_msg_seq));
  1335. return MBEDTLS_ERR_SSL_BAD_HS_CLIENT_HELLO;
  1336. }
  1337. ssl->handshake->in_msg_seq++;
  1338. } else
  1339. #endif
  1340. {
  1341. unsigned int cli_msg_seq = (ssl->in_msg[4] << 8) |
  1342. ssl->in_msg[5];
  1343. ssl->handshake->out_msg_seq = cli_msg_seq;
  1344. ssl->handshake->in_msg_seq = cli_msg_seq + 1;
  1345. }
  1346. /*
  1347. * For now we don't support fragmentation, so make sure
  1348. * fragment_offset == 0 and fragment_length == length
  1349. */
  1350. MBEDTLS_SSL_DEBUG_MSG(
  1351. 4, ("fragment_offset=%u fragment_length=%u length=%u",
  1352. (unsigned) (ssl->in_msg[6] << 16 | ssl->in_msg[7] << 8 | ssl->in_msg[8]),
  1353. (unsigned) (ssl->in_msg[9] << 16 | ssl->in_msg[10] << 8 | ssl->in_msg[11]),
  1354. (unsigned) (ssl->in_msg[1] << 16 | ssl->in_msg[2] << 8 | ssl->in_msg[3])));
  1355. if (ssl->in_msg[6] != 0 || ssl->in_msg[7] != 0 || ssl->in_msg[8] != 0 ||
  1356. memcmp(ssl->in_msg + 1, ssl->in_msg + 9, 3) != 0) {
  1357. MBEDTLS_SSL_DEBUG_MSG(1, ("ClientHello fragmentation not supported"));
  1358. return MBEDTLS_ERR_SSL_FEATURE_UNAVAILABLE;
  1359. }
  1360. }
  1361. #endif /* MBEDTLS_SSL_PROTO_DTLS */
  1362. buf += mbedtls_ssl_hs_hdr_len(ssl);
  1363. msg_len -= mbedtls_ssl_hs_hdr_len(ssl);
  1364. /*
  1365. * ClientHello layer:
  1366. * 0 . 1 protocol version
  1367. * 2 . 33 random bytes (starting with 4 bytes of Unix time)
  1368. * 34 . 35 session id length (1 byte)
  1369. * 35 . 34+x session id
  1370. * 35+x . 35+x DTLS only: cookie length (1 byte)
  1371. * 36+x . .. DTLS only: cookie
  1372. * .. . .. ciphersuite list length (2 bytes)
  1373. * .. . .. ciphersuite list
  1374. * .. . .. compression alg. list length (1 byte)
  1375. * .. . .. compression alg. list
  1376. * .. . .. extensions length (2 bytes, optional)
  1377. * .. . .. extensions (optional)
  1378. */
  1379. /*
  1380. * Minimal length (with everything empty and extensions omitted) is
  1381. * 2 + 32 + 1 + 2 + 1 = 38 bytes. Check that first, so that we can
  1382. * read at least up to session id length without worrying.
  1383. */
  1384. if (msg_len < 38) {
  1385. MBEDTLS_SSL_DEBUG_MSG(1, ("bad client hello message"));
  1386. return MBEDTLS_ERR_SSL_BAD_HS_CLIENT_HELLO;
  1387. }
  1388. /*
  1389. * Check and save the protocol version
  1390. */
  1391. MBEDTLS_SSL_DEBUG_BUF(3, "client hello, version", buf, 2);
  1392. mbedtls_ssl_read_version(&ssl->major_ver, &ssl->minor_ver,
  1393. ssl->conf->transport, buf);
  1394. ssl->handshake->max_major_ver = ssl->major_ver;
  1395. ssl->handshake->max_minor_ver = ssl->minor_ver;
  1396. if (ssl->major_ver < ssl->conf->min_major_ver ||
  1397. ssl->minor_ver < ssl->conf->min_minor_ver) {
  1398. MBEDTLS_SSL_DEBUG_MSG(1, ("client only supports ssl smaller than minimum"
  1399. " [%d:%d] < [%d:%d]",
  1400. ssl->major_ver, ssl->minor_ver,
  1401. ssl->conf->min_major_ver, ssl->conf->min_minor_ver));
  1402. mbedtls_ssl_send_alert_message(ssl, MBEDTLS_SSL_ALERT_LEVEL_FATAL,
  1403. MBEDTLS_SSL_ALERT_MSG_PROTOCOL_VERSION);
  1404. return MBEDTLS_ERR_SSL_BAD_HS_PROTOCOL_VERSION;
  1405. }
  1406. if (ssl->major_ver > ssl->conf->max_major_ver) {
  1407. ssl->major_ver = ssl->conf->max_major_ver;
  1408. ssl->minor_ver = ssl->conf->max_minor_ver;
  1409. } else if (ssl->minor_ver > ssl->conf->max_minor_ver) {
  1410. ssl->minor_ver = ssl->conf->max_minor_ver;
  1411. }
  1412. /*
  1413. * Save client random (inc. Unix time)
  1414. */
  1415. MBEDTLS_SSL_DEBUG_BUF(3, "client hello, random bytes", buf + 2, 32);
  1416. memcpy(ssl->handshake->randbytes, buf + 2, 32);
  1417. /*
  1418. * Check the session ID length and save session ID
  1419. */
  1420. sess_len = buf[34];
  1421. if (sess_len > sizeof(ssl->session_negotiate->id) ||
  1422. sess_len + 34 + 2 > msg_len) { /* 2 for cipherlist length field */
  1423. MBEDTLS_SSL_DEBUG_MSG(1, ("bad client hello message"));
  1424. mbedtls_ssl_send_alert_message(ssl, MBEDTLS_SSL_ALERT_LEVEL_FATAL,
  1425. MBEDTLS_SSL_ALERT_MSG_DECODE_ERROR);
  1426. return MBEDTLS_ERR_SSL_BAD_HS_CLIENT_HELLO;
  1427. }
  1428. MBEDTLS_SSL_DEBUG_BUF(3, "client hello, session id", buf + 35, sess_len);
  1429. ssl->session_negotiate->id_len = sess_len;
  1430. memset(ssl->session_negotiate->id, 0,
  1431. sizeof(ssl->session_negotiate->id));
  1432. memcpy(ssl->session_negotiate->id, buf + 35,
  1433. ssl->session_negotiate->id_len);
  1434. /*
  1435. * Check the cookie length and content
  1436. */
  1437. #if defined(MBEDTLS_SSL_PROTO_DTLS)
  1438. if (ssl->conf->transport == MBEDTLS_SSL_TRANSPORT_DATAGRAM) {
  1439. cookie_offset = 35 + sess_len;
  1440. cookie_len = buf[cookie_offset];
  1441. if (cookie_offset + 1 + cookie_len + 2 > msg_len) {
  1442. MBEDTLS_SSL_DEBUG_MSG(1, ("bad client hello message"));
  1443. mbedtls_ssl_send_alert_message(ssl, MBEDTLS_SSL_ALERT_LEVEL_FATAL,
  1444. MBEDTLS_SSL_ALERT_MSG_PROTOCOL_VERSION);
  1445. return MBEDTLS_ERR_SSL_BAD_HS_CLIENT_HELLO;
  1446. }
  1447. MBEDTLS_SSL_DEBUG_BUF(3, "client hello, cookie",
  1448. buf + cookie_offset + 1, cookie_len);
  1449. #if defined(MBEDTLS_SSL_DTLS_HELLO_VERIFY)
  1450. if (ssl->conf->f_cookie_check != NULL
  1451. #if defined(MBEDTLS_SSL_RENEGOTIATION)
  1452. && ssl->renego_status == MBEDTLS_SSL_INITIAL_HANDSHAKE
  1453. #endif
  1454. ) {
  1455. if (ssl->conf->f_cookie_check(ssl->conf->p_cookie,
  1456. buf + cookie_offset + 1, cookie_len,
  1457. ssl->cli_id, ssl->cli_id_len) != 0) {
  1458. MBEDTLS_SSL_DEBUG_MSG(2, ("cookie verification failed"));
  1459. ssl->handshake->verify_cookie_len = 1;
  1460. } else {
  1461. MBEDTLS_SSL_DEBUG_MSG(2, ("cookie verification passed"));
  1462. ssl->handshake->verify_cookie_len = 0;
  1463. }
  1464. } else
  1465. #endif /* MBEDTLS_SSL_DTLS_HELLO_VERIFY */
  1466. {
  1467. /* We know we didn't send a cookie, so it should be empty */
  1468. if (cookie_len != 0) {
  1469. /* This may be an attacker's probe, so don't send an alert */
  1470. MBEDTLS_SSL_DEBUG_MSG(1, ("bad client hello message"));
  1471. return MBEDTLS_ERR_SSL_BAD_HS_CLIENT_HELLO;
  1472. }
  1473. MBEDTLS_SSL_DEBUG_MSG(2, ("cookie verification skipped"));
  1474. }
  1475. /*
  1476. * Check the ciphersuitelist length (will be parsed later)
  1477. */
  1478. ciph_offset = cookie_offset + 1 + cookie_len;
  1479. } else
  1480. #endif /* MBEDTLS_SSL_PROTO_DTLS */
  1481. ciph_offset = 35 + sess_len;
  1482. ciph_len = (buf[ciph_offset + 0] << 8)
  1483. | (buf[ciph_offset + 1]);
  1484. if (ciph_len < 2 ||
  1485. ciph_len + 2 + ciph_offset + 1 > msg_len || /* 1 for comp. alg. len */
  1486. (ciph_len % 2) != 0) {
  1487. MBEDTLS_SSL_DEBUG_MSG(1, ("bad client hello message"));
  1488. mbedtls_ssl_send_alert_message(ssl, MBEDTLS_SSL_ALERT_LEVEL_FATAL,
  1489. MBEDTLS_SSL_ALERT_MSG_DECODE_ERROR);
  1490. return MBEDTLS_ERR_SSL_BAD_HS_CLIENT_HELLO;
  1491. }
  1492. MBEDTLS_SSL_DEBUG_BUF(3, "client hello, ciphersuitelist",
  1493. buf + ciph_offset + 2, ciph_len);
  1494. /*
  1495. * Check the compression algorithms length and pick one
  1496. */
  1497. comp_offset = ciph_offset + 2 + ciph_len;
  1498. comp_len = buf[comp_offset];
  1499. if (comp_len < 1 ||
  1500. comp_len > 16 ||
  1501. comp_len + comp_offset + 1 > msg_len) {
  1502. MBEDTLS_SSL_DEBUG_MSG(1, ("bad client hello message"));
  1503. mbedtls_ssl_send_alert_message(ssl, MBEDTLS_SSL_ALERT_LEVEL_FATAL,
  1504. MBEDTLS_SSL_ALERT_MSG_DECODE_ERROR);
  1505. return MBEDTLS_ERR_SSL_BAD_HS_CLIENT_HELLO;
  1506. }
  1507. MBEDTLS_SSL_DEBUG_BUF(3, "client hello, compression",
  1508. buf + comp_offset + 1, comp_len);
  1509. ssl->session_negotiate->compression = MBEDTLS_SSL_COMPRESS_NULL;
  1510. #if defined(MBEDTLS_ZLIB_SUPPORT)
  1511. for (i = 0; i < comp_len; ++i) {
  1512. if (buf[comp_offset + 1 + i] == MBEDTLS_SSL_COMPRESS_DEFLATE) {
  1513. ssl->session_negotiate->compression = MBEDTLS_SSL_COMPRESS_DEFLATE;
  1514. break;
  1515. }
  1516. }
  1517. #endif
  1518. /* See comments in ssl_write_client_hello() */
  1519. #if defined(MBEDTLS_SSL_PROTO_DTLS)
  1520. if (ssl->conf->transport == MBEDTLS_SSL_TRANSPORT_DATAGRAM) {
  1521. ssl->session_negotiate->compression = MBEDTLS_SSL_COMPRESS_NULL;
  1522. }
  1523. #endif
  1524. /* Do not parse the extensions if the protocol is SSLv3 */
  1525. #if defined(MBEDTLS_SSL_PROTO_SSL3)
  1526. if ((ssl->major_ver != 3) || (ssl->minor_ver != 0)) {
  1527. #endif
  1528. /*
  1529. * Check the extension length
  1530. */
  1531. ext_offset = comp_offset + 1 + comp_len;
  1532. if (msg_len > ext_offset) {
  1533. if (msg_len < ext_offset + 2) {
  1534. MBEDTLS_SSL_DEBUG_MSG(1, ("bad client hello message"));
  1535. mbedtls_ssl_send_alert_message(ssl, MBEDTLS_SSL_ALERT_LEVEL_FATAL,
  1536. MBEDTLS_SSL_ALERT_MSG_DECODE_ERROR);
  1537. return MBEDTLS_ERR_SSL_BAD_HS_CLIENT_HELLO;
  1538. }
  1539. ext_len = (buf[ext_offset + 0] << 8)
  1540. | (buf[ext_offset + 1]);
  1541. if (msg_len != ext_offset + 2 + ext_len) {
  1542. MBEDTLS_SSL_DEBUG_MSG(1, ("bad client hello message"));
  1543. mbedtls_ssl_send_alert_message(ssl, MBEDTLS_SSL_ALERT_LEVEL_FATAL,
  1544. MBEDTLS_SSL_ALERT_MSG_DECODE_ERROR);
  1545. return MBEDTLS_ERR_SSL_BAD_HS_CLIENT_HELLO;
  1546. }
  1547. } else {
  1548. ext_len = 0;
  1549. }
  1550. ext = buf + ext_offset + 2;
  1551. MBEDTLS_SSL_DEBUG_BUF(3, "client hello extensions", ext, ext_len);
  1552. while (ext_len != 0) {
  1553. unsigned int ext_id;
  1554. unsigned int ext_size;
  1555. if (ext_len < 4) {
  1556. MBEDTLS_SSL_DEBUG_MSG(1, ("bad client hello message"));
  1557. mbedtls_ssl_send_alert_message(ssl, MBEDTLS_SSL_ALERT_LEVEL_FATAL,
  1558. MBEDTLS_SSL_ALERT_MSG_DECODE_ERROR);
  1559. return MBEDTLS_ERR_SSL_BAD_HS_CLIENT_HELLO;
  1560. }
  1561. ext_id = ((ext[0] << 8) | (ext[1]));
  1562. ext_size = ((ext[2] << 8) | (ext[3]));
  1563. if (ext_size + 4 > ext_len) {
  1564. MBEDTLS_SSL_DEBUG_MSG(1, ("bad client hello message"));
  1565. mbedtls_ssl_send_alert_message(ssl, MBEDTLS_SSL_ALERT_LEVEL_FATAL,
  1566. MBEDTLS_SSL_ALERT_MSG_DECODE_ERROR);
  1567. return MBEDTLS_ERR_SSL_BAD_HS_CLIENT_HELLO;
  1568. }
  1569. switch (ext_id) {
  1570. #if defined(MBEDTLS_SSL_SERVER_NAME_INDICATION)
  1571. case MBEDTLS_TLS_EXT_SERVERNAME:
  1572. MBEDTLS_SSL_DEBUG_MSG(3, ("found ServerName extension"));
  1573. if (ssl->conf->f_sni == NULL) {
  1574. break;
  1575. }
  1576. ret = ssl_parse_servername_ext(ssl, ext + 4, ext_size);
  1577. if (ret != 0) {
  1578. return ret;
  1579. }
  1580. break;
  1581. #endif /* MBEDTLS_SSL_SERVER_NAME_INDICATION */
  1582. case MBEDTLS_TLS_EXT_RENEGOTIATION_INFO:
  1583. MBEDTLS_SSL_DEBUG_MSG(3, ("found renegotiation extension"));
  1584. #if defined(MBEDTLS_SSL_RENEGOTIATION)
  1585. renegotiation_info_seen = 1;
  1586. #endif
  1587. ret = ssl_parse_renegotiation_info(ssl, ext + 4, ext_size);
  1588. if (ret != 0) {
  1589. return ret;
  1590. }
  1591. break;
  1592. #if defined(MBEDTLS_SSL_PROTO_TLS1_2) && \
  1593. defined(MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED)
  1594. case MBEDTLS_TLS_EXT_SIG_ALG:
  1595. MBEDTLS_SSL_DEBUG_MSG(3, ("found signature_algorithms extension"));
  1596. ret = ssl_parse_signature_algorithms_ext(ssl, ext + 4, ext_size);
  1597. if (ret != 0) {
  1598. return ret;
  1599. }
  1600. sig_hash_alg_ext_present = 1;
  1601. break;
  1602. #endif /* MBEDTLS_SSL_PROTO_TLS1_2 &&
  1603. MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED */
  1604. #if defined(MBEDTLS_ECDH_C) || defined(MBEDTLS_ECDSA_C) || \
  1605. defined(MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED)
  1606. case MBEDTLS_TLS_EXT_SUPPORTED_ELLIPTIC_CURVES:
  1607. MBEDTLS_SSL_DEBUG_MSG(3, ("found supported elliptic curves extension"));
  1608. ret = ssl_parse_supported_elliptic_curves(ssl, ext + 4, ext_size);
  1609. if (ret != 0) {
  1610. return ret;
  1611. }
  1612. break;
  1613. case MBEDTLS_TLS_EXT_SUPPORTED_POINT_FORMATS:
  1614. MBEDTLS_SSL_DEBUG_MSG(3, ("found supported point formats extension"));
  1615. ssl->handshake->cli_exts |= MBEDTLS_TLS_EXT_SUPPORTED_POINT_FORMATS_PRESENT;
  1616. ret = ssl_parse_supported_point_formats(ssl, ext + 4, ext_size);
  1617. if (ret != 0) {
  1618. return ret;
  1619. }
  1620. break;
  1621. #endif /* MBEDTLS_ECDH_C || MBEDTLS_ECDSA_C ||
  1622. MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED */
  1623. #if defined(MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED)
  1624. case MBEDTLS_TLS_EXT_ECJPAKE_KKPP:
  1625. MBEDTLS_SSL_DEBUG_MSG(3, ("found ecjpake kkpp extension"));
  1626. ret = ssl_parse_ecjpake_kkpp(ssl, ext + 4, ext_size);
  1627. if (ret != 0) {
  1628. return ret;
  1629. }
  1630. break;
  1631. #endif /* MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED */
  1632. #if defined(MBEDTLS_SSL_MAX_FRAGMENT_LENGTH)
  1633. case MBEDTLS_TLS_EXT_MAX_FRAGMENT_LENGTH:
  1634. MBEDTLS_SSL_DEBUG_MSG(3, ("found max fragment length extension"));
  1635. ret = ssl_parse_max_fragment_length_ext(ssl, ext + 4, ext_size);
  1636. if (ret != 0) {
  1637. return ret;
  1638. }
  1639. break;
  1640. #endif /* MBEDTLS_SSL_MAX_FRAGMENT_LENGTH */
  1641. #if defined(MBEDTLS_SSL_TRUNCATED_HMAC)
  1642. case MBEDTLS_TLS_EXT_TRUNCATED_HMAC:
  1643. MBEDTLS_SSL_DEBUG_MSG(3, ("found truncated hmac extension"));
  1644. ret = ssl_parse_truncated_hmac_ext(ssl, ext + 4, ext_size);
  1645. if (ret != 0) {
  1646. return ret;
  1647. }
  1648. break;
  1649. #endif /* MBEDTLS_SSL_TRUNCATED_HMAC */
  1650. #if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID)
  1651. case MBEDTLS_TLS_EXT_CID:
  1652. MBEDTLS_SSL_DEBUG_MSG(3, ("found CID extension"));
  1653. ret = ssl_parse_cid_ext(ssl, ext + 4, ext_size);
  1654. if (ret != 0) {
  1655. return ret;
  1656. }
  1657. break;
  1658. #endif /* MBEDTLS_SSL_TRUNCATED_HMAC */
  1659. #if defined(MBEDTLS_SSL_ENCRYPT_THEN_MAC)
  1660. case MBEDTLS_TLS_EXT_ENCRYPT_THEN_MAC:
  1661. MBEDTLS_SSL_DEBUG_MSG(3, ("found encrypt then mac extension"));
  1662. ret = ssl_parse_encrypt_then_mac_ext(ssl, ext + 4, ext_size);
  1663. if (ret != 0) {
  1664. return ret;
  1665. }
  1666. break;
  1667. #endif /* MBEDTLS_SSL_ENCRYPT_THEN_MAC */
  1668. #if defined(MBEDTLS_SSL_EXTENDED_MASTER_SECRET)
  1669. case MBEDTLS_TLS_EXT_EXTENDED_MASTER_SECRET:
  1670. MBEDTLS_SSL_DEBUG_MSG(3, ("found extended master secret extension"));
  1671. ret = ssl_parse_extended_ms_ext(ssl, ext + 4, ext_size);
  1672. if (ret != 0) {
  1673. return ret;
  1674. }
  1675. break;
  1676. #endif /* MBEDTLS_SSL_EXTENDED_MASTER_SECRET */
  1677. #if defined(MBEDTLS_SSL_SESSION_TICKETS)
  1678. case MBEDTLS_TLS_EXT_SESSION_TICKET:
  1679. MBEDTLS_SSL_DEBUG_MSG(3, ("found session ticket extension"));
  1680. ret = ssl_parse_session_ticket_ext(ssl, ext + 4, ext_size);
  1681. if (ret != 0) {
  1682. return ret;
  1683. }
  1684. break;
  1685. #endif /* MBEDTLS_SSL_SESSION_TICKETS */
  1686. #if defined(MBEDTLS_SSL_ALPN)
  1687. case MBEDTLS_TLS_EXT_ALPN:
  1688. MBEDTLS_SSL_DEBUG_MSG(3, ("found alpn extension"));
  1689. ret = ssl_parse_alpn_ext(ssl, ext + 4, ext_size);
  1690. if (ret != 0) {
  1691. return ret;
  1692. }
  1693. break;
  1694. #endif /* MBEDTLS_SSL_SESSION_TICKETS */
  1695. #if defined(MBEDTLS_SSL_DTLS_SRTP)
  1696. case MBEDTLS_TLS_EXT_USE_SRTP:
  1697. MBEDTLS_SSL_DEBUG_MSG(3, ("found use_srtp extension"));
  1698. ret = ssl_parse_use_srtp_ext(ssl, ext + 4, ext_size);
  1699. if (ret != 0) {
  1700. return ret;
  1701. }
  1702. break;
  1703. #endif /* MBEDTLS_SSL_DTLS_SRTP */
  1704. default:
  1705. MBEDTLS_SSL_DEBUG_MSG(3, ("unknown extension found: %u (ignoring)",
  1706. ext_id));
  1707. }
  1708. ext_len -= 4 + ext_size;
  1709. ext += 4 + ext_size;
  1710. }
  1711. #if defined(MBEDTLS_SSL_PROTO_SSL3)
  1712. }
  1713. #endif
  1714. #if defined(MBEDTLS_SSL_FALLBACK_SCSV)
  1715. for (i = 0, p = buf + ciph_offset + 2; i < ciph_len; i += 2, p += 2) {
  1716. if (MBEDTLS_GET_UINT16_BE(p, 0) == MBEDTLS_SSL_FALLBACK_SCSV_VALUE) {
  1717. MBEDTLS_SSL_DEBUG_MSG(2, ("received FALLBACK_SCSV"));
  1718. if (ssl->minor_ver < ssl->conf->max_minor_ver) {
  1719. MBEDTLS_SSL_DEBUG_MSG(1, ("inapropriate fallback"));
  1720. mbedtls_ssl_send_alert_message(ssl, MBEDTLS_SSL_ALERT_LEVEL_FATAL,
  1721. MBEDTLS_SSL_ALERT_MSG_INAPROPRIATE_FALLBACK);
  1722. return MBEDTLS_ERR_SSL_BAD_HS_CLIENT_HELLO;
  1723. }
  1724. break;
  1725. }
  1726. }
  1727. #endif /* MBEDTLS_SSL_FALLBACK_SCSV */
  1728. #if defined(MBEDTLS_SSL_PROTO_TLS1_2) && \
  1729. defined(MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED)
  1730. /*
  1731. * Try to fall back to default hash SHA1 if the client
  1732. * hasn't provided any preferred signature-hash combinations.
  1733. */
  1734. if (sig_hash_alg_ext_present == 0) {
  1735. mbedtls_md_type_t md_default = MBEDTLS_MD_SHA1;
  1736. if (mbedtls_ssl_check_sig_hash(ssl, md_default) != 0) {
  1737. md_default = MBEDTLS_MD_NONE;
  1738. }
  1739. mbedtls_ssl_sig_hash_set_const_hash(&ssl->handshake->hash_algs, md_default);
  1740. }
  1741. #endif /* MBEDTLS_SSL_PROTO_TLS1_2 &&
  1742. MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED */
  1743. /*
  1744. * Check for TLS_EMPTY_RENEGOTIATION_INFO_SCSV
  1745. */
  1746. for (i = 0, p = buf + ciph_offset + 2; i < ciph_len; i += 2, p += 2) {
  1747. if (p[0] == 0 && p[1] == MBEDTLS_SSL_EMPTY_RENEGOTIATION_INFO) {
  1748. MBEDTLS_SSL_DEBUG_MSG(3, ("received TLS_EMPTY_RENEGOTIATION_INFO "));
  1749. #if defined(MBEDTLS_SSL_RENEGOTIATION)
  1750. if (ssl->renego_status == MBEDTLS_SSL_RENEGOTIATION_IN_PROGRESS) {
  1751. MBEDTLS_SSL_DEBUG_MSG(1, ("received RENEGOTIATION SCSV "
  1752. "during renegotiation"));
  1753. mbedtls_ssl_send_alert_message(ssl, MBEDTLS_SSL_ALERT_LEVEL_FATAL,
  1754. MBEDTLS_SSL_ALERT_MSG_HANDSHAKE_FAILURE);
  1755. return MBEDTLS_ERR_SSL_BAD_HS_CLIENT_HELLO;
  1756. }
  1757. #endif
  1758. ssl->secure_renegotiation = MBEDTLS_SSL_SECURE_RENEGOTIATION;
  1759. break;
  1760. }
  1761. }
  1762. /*
  1763. * Renegotiation security checks
  1764. */
  1765. if (ssl->secure_renegotiation != MBEDTLS_SSL_SECURE_RENEGOTIATION &&
  1766. ssl->conf->allow_legacy_renegotiation == MBEDTLS_SSL_LEGACY_BREAK_HANDSHAKE) {
  1767. MBEDTLS_SSL_DEBUG_MSG(1, ("legacy renegotiation, breaking off handshake"));
  1768. handshake_failure = 1;
  1769. }
  1770. #if defined(MBEDTLS_SSL_RENEGOTIATION)
  1771. else if (ssl->renego_status == MBEDTLS_SSL_RENEGOTIATION_IN_PROGRESS &&
  1772. ssl->secure_renegotiation == MBEDTLS_SSL_SECURE_RENEGOTIATION &&
  1773. renegotiation_info_seen == 0) {
  1774. MBEDTLS_SSL_DEBUG_MSG(1, ("renegotiation_info extension missing (secure)"));
  1775. handshake_failure = 1;
  1776. } else if (ssl->renego_status == MBEDTLS_SSL_RENEGOTIATION_IN_PROGRESS &&
  1777. ssl->secure_renegotiation == MBEDTLS_SSL_LEGACY_RENEGOTIATION &&
  1778. ssl->conf->allow_legacy_renegotiation == MBEDTLS_SSL_LEGACY_NO_RENEGOTIATION) {
  1779. MBEDTLS_SSL_DEBUG_MSG(1, ("legacy renegotiation not allowed"));
  1780. handshake_failure = 1;
  1781. } else if (ssl->renego_status == MBEDTLS_SSL_RENEGOTIATION_IN_PROGRESS &&
  1782. ssl->secure_renegotiation == MBEDTLS_SSL_LEGACY_RENEGOTIATION &&
  1783. renegotiation_info_seen == 1) {
  1784. MBEDTLS_SSL_DEBUG_MSG(1, ("renegotiation_info extension present (legacy)"));
  1785. handshake_failure = 1;
  1786. }
  1787. #endif /* MBEDTLS_SSL_RENEGOTIATION */
  1788. if (handshake_failure == 1) {
  1789. mbedtls_ssl_send_alert_message(ssl, MBEDTLS_SSL_ALERT_LEVEL_FATAL,
  1790. MBEDTLS_SSL_ALERT_MSG_HANDSHAKE_FAILURE);
  1791. return MBEDTLS_ERR_SSL_BAD_HS_CLIENT_HELLO;
  1792. }
  1793. /*
  1794. * Search for a matching ciphersuite
  1795. * (At the end because we need information from the EC-based extensions
  1796. * and certificate from the SNI callback triggered by the SNI extension.)
  1797. */
  1798. got_common_suite = 0;
  1799. ciphersuites = ssl->conf->ciphersuite_list[ssl->minor_ver];
  1800. ciphersuite_info = NULL;
  1801. #if defined(MBEDTLS_SSL_SRV_RESPECT_CLIENT_PREFERENCE)
  1802. for (j = 0, p = buf + ciph_offset + 2; j < ciph_len; j += 2, p += 2) {
  1803. for (i = 0; ciphersuites[i] != 0; i++) {
  1804. if (MBEDTLS_GET_UINT16_BE(p, 0) != ciphersuites[i]) {
  1805. continue;
  1806. }
  1807. got_common_suite = 1;
  1808. if ((ret = ssl_ciphersuite_match(ssl, ciphersuites[i],
  1809. &ciphersuite_info)) != 0) {
  1810. return ret;
  1811. }
  1812. if (ciphersuite_info != NULL) {
  1813. goto have_ciphersuite;
  1814. }
  1815. }
  1816. }
  1817. #else
  1818. for (i = 0; ciphersuites[i] != 0; i++) {
  1819. for (j = 0, p = buf + ciph_offset + 2; j < ciph_len; j += 2, p += 2) {
  1820. if (MBEDTLS_GET_UINT16_BE(p, 0) != ciphersuites[i]) {
  1821. continue;
  1822. }
  1823. got_common_suite = 1;
  1824. if ((ret = ssl_ciphersuite_match(ssl, ciphersuites[i],
  1825. &ciphersuite_info)) != 0) {
  1826. return ret;
  1827. }
  1828. if (ciphersuite_info != NULL) {
  1829. goto have_ciphersuite;
  1830. }
  1831. }
  1832. }
  1833. #endif
  1834. if (got_common_suite) {
  1835. MBEDTLS_SSL_DEBUG_MSG(1, ("got ciphersuites in common, "
  1836. "but none of them usable"));
  1837. mbedtls_ssl_send_alert_message(ssl, MBEDTLS_SSL_ALERT_LEVEL_FATAL,
  1838. MBEDTLS_SSL_ALERT_MSG_HANDSHAKE_FAILURE);
  1839. return MBEDTLS_ERR_SSL_NO_USABLE_CIPHERSUITE;
  1840. } else {
  1841. MBEDTLS_SSL_DEBUG_MSG(1, ("got no ciphersuites in common"));
  1842. mbedtls_ssl_send_alert_message(ssl, MBEDTLS_SSL_ALERT_LEVEL_FATAL,
  1843. MBEDTLS_SSL_ALERT_MSG_HANDSHAKE_FAILURE);
  1844. return MBEDTLS_ERR_SSL_NO_CIPHER_CHOSEN;
  1845. }
  1846. have_ciphersuite:
  1847. MBEDTLS_SSL_DEBUG_MSG(2, ("selected ciphersuite: %s", ciphersuite_info->name));
  1848. ssl->session_negotiate->ciphersuite = ciphersuites[i];
  1849. ssl->handshake->ciphersuite_info = ciphersuite_info;
  1850. ssl->state++;
  1851. #if defined(MBEDTLS_SSL_PROTO_DTLS)
  1852. if (ssl->conf->transport == MBEDTLS_SSL_TRANSPORT_DATAGRAM) {
  1853. mbedtls_ssl_recv_flight_completed(ssl);
  1854. }
  1855. #endif
  1856. /* Debugging-only output for testsuite */
  1857. #if defined(MBEDTLS_DEBUG_C) && \
  1858. defined(MBEDTLS_SSL_PROTO_TLS1_2) && \
  1859. defined(MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED)
  1860. if (ssl->minor_ver == MBEDTLS_SSL_MINOR_VERSION_3) {
  1861. mbedtls_pk_type_t sig_alg = mbedtls_ssl_get_ciphersuite_sig_alg(ciphersuite_info);
  1862. if (sig_alg != MBEDTLS_PK_NONE) {
  1863. mbedtls_md_type_t md_alg = mbedtls_ssl_sig_hash_set_find(&ssl->handshake->hash_algs,
  1864. sig_alg);
  1865. MBEDTLS_SSL_DEBUG_MSG(3, ("client hello v3, signature_algorithm ext: %d",
  1866. mbedtls_ssl_hash_from_md_alg(md_alg)));
  1867. } else {
  1868. MBEDTLS_SSL_DEBUG_MSG(3, ("no hash algorithm for signature algorithm "
  1869. "%u - should not happen", (unsigned) sig_alg));
  1870. }
  1871. }
  1872. #endif
  1873. MBEDTLS_SSL_DEBUG_MSG(2, ("<= parse client hello"));
  1874. return 0;
  1875. }
  1876. #if defined(MBEDTLS_SSL_TRUNCATED_HMAC)
  1877. static void ssl_write_truncated_hmac_ext(mbedtls_ssl_context *ssl,
  1878. unsigned char *buf,
  1879. size_t *olen)
  1880. {
  1881. unsigned char *p = buf;
  1882. if (ssl->session_negotiate->trunc_hmac == MBEDTLS_SSL_TRUNC_HMAC_DISABLED) {
  1883. *olen = 0;
  1884. return;
  1885. }
  1886. MBEDTLS_SSL_DEBUG_MSG(3, ("server hello, adding truncated hmac extension"));
  1887. MBEDTLS_PUT_UINT16_BE(MBEDTLS_TLS_EXT_TRUNCATED_HMAC, p, 0);
  1888. p += 2;
  1889. *p++ = 0x00;
  1890. *p++ = 0x00;
  1891. *olen = 4;
  1892. }
  1893. #endif /* MBEDTLS_SSL_TRUNCATED_HMAC */
  1894. #if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID)
  1895. static void ssl_write_cid_ext(mbedtls_ssl_context *ssl,
  1896. unsigned char *buf,
  1897. size_t *olen)
  1898. {
  1899. unsigned char *p = buf;
  1900. size_t ext_len;
  1901. const unsigned char *end = ssl->out_msg + MBEDTLS_SSL_OUT_CONTENT_LEN;
  1902. *olen = 0;
  1903. /* Skip writing the extension if we don't want to use it or if
  1904. * the client hasn't offered it. */
  1905. if (ssl->handshake->cid_in_use == MBEDTLS_SSL_CID_DISABLED) {
  1906. return;
  1907. }
  1908. /* ssl->own_cid_len is at most MBEDTLS_SSL_CID_IN_LEN_MAX
  1909. * which is at most 255, so the increment cannot overflow. */
  1910. if (end < p || (size_t) (end - p) < (unsigned) (ssl->own_cid_len + 5)) {
  1911. MBEDTLS_SSL_DEBUG_MSG(1, ("buffer too small"));
  1912. return;
  1913. }
  1914. MBEDTLS_SSL_DEBUG_MSG(3, ("server hello, adding CID extension"));
  1915. /*
  1916. * Quoting draft-ietf-tls-dtls-connection-id-05
  1917. * https://tools.ietf.org/html/draft-ietf-tls-dtls-connection-id-05
  1918. *
  1919. * struct {
  1920. * opaque cid<0..2^8-1>;
  1921. * } ConnectionId;
  1922. */
  1923. MBEDTLS_PUT_UINT16_BE(MBEDTLS_TLS_EXT_CID, p, 0);
  1924. p += 2;
  1925. ext_len = (size_t) ssl->own_cid_len + 1;
  1926. MBEDTLS_PUT_UINT16_BE(ext_len, p, 0);
  1927. p += 2;
  1928. *p++ = (uint8_t) ssl->own_cid_len;
  1929. memcpy(p, ssl->own_cid, ssl->own_cid_len);
  1930. *olen = ssl->own_cid_len + 5;
  1931. }
  1932. #endif /* MBEDTLS_SSL_DTLS_CONNECTION_ID */
  1933. #if defined(MBEDTLS_SSL_ENCRYPT_THEN_MAC)
  1934. static void ssl_write_encrypt_then_mac_ext(mbedtls_ssl_context *ssl,
  1935. unsigned char *buf,
  1936. size_t *olen)
  1937. {
  1938. unsigned char *p = buf;
  1939. const mbedtls_ssl_ciphersuite_t *suite = NULL;
  1940. const mbedtls_cipher_info_t *cipher = NULL;
  1941. if (ssl->minor_ver == MBEDTLS_SSL_MINOR_VERSION_0) {
  1942. ssl->session_negotiate->encrypt_then_mac = MBEDTLS_SSL_ETM_DISABLED;
  1943. }
  1944. /*
  1945. * RFC 7366: "If a server receives an encrypt-then-MAC request extension
  1946. * from a client and then selects a stream or Authenticated Encryption
  1947. * with Associated Data (AEAD) ciphersuite, it MUST NOT send an
  1948. * encrypt-then-MAC response extension back to the client."
  1949. */
  1950. if ((suite = mbedtls_ssl_ciphersuite_from_id(
  1951. ssl->session_negotiate->ciphersuite)) == NULL ||
  1952. (cipher = mbedtls_cipher_info_from_type(suite->cipher)) == NULL ||
  1953. cipher->mode != MBEDTLS_MODE_CBC) {
  1954. ssl->session_negotiate->encrypt_then_mac = MBEDTLS_SSL_ETM_DISABLED;
  1955. }
  1956. if (ssl->session_negotiate->encrypt_then_mac == MBEDTLS_SSL_ETM_DISABLED) {
  1957. *olen = 0;
  1958. return;
  1959. }
  1960. MBEDTLS_SSL_DEBUG_MSG(3, ("server hello, adding encrypt then mac extension"));
  1961. MBEDTLS_PUT_UINT16_BE(MBEDTLS_TLS_EXT_ENCRYPT_THEN_MAC, p, 0);
  1962. p += 2;
  1963. *p++ = 0x00;
  1964. *p++ = 0x00;
  1965. *olen = 4;
  1966. }
  1967. #endif /* MBEDTLS_SSL_ENCRYPT_THEN_MAC */
  1968. #if defined(MBEDTLS_SSL_EXTENDED_MASTER_SECRET)
  1969. static void ssl_write_extended_ms_ext(mbedtls_ssl_context *ssl,
  1970. unsigned char *buf,
  1971. size_t *olen)
  1972. {
  1973. unsigned char *p = buf;
  1974. if (ssl->handshake->extended_ms == MBEDTLS_SSL_EXTENDED_MS_DISABLED ||
  1975. ssl->minor_ver == MBEDTLS_SSL_MINOR_VERSION_0) {
  1976. *olen = 0;
  1977. return;
  1978. }
  1979. MBEDTLS_SSL_DEBUG_MSG(3, ("server hello, adding extended master secret "
  1980. "extension"));
  1981. MBEDTLS_PUT_UINT16_BE(MBEDTLS_TLS_EXT_EXTENDED_MASTER_SECRET, p, 0);
  1982. p += 2;
  1983. *p++ = 0x00;
  1984. *p++ = 0x00;
  1985. *olen = 4;
  1986. }
  1987. #endif /* MBEDTLS_SSL_EXTENDED_MASTER_SECRET */
  1988. #if defined(MBEDTLS_SSL_SESSION_TICKETS)
  1989. static void ssl_write_session_ticket_ext(mbedtls_ssl_context *ssl,
  1990. unsigned char *buf,
  1991. size_t *olen)
  1992. {
  1993. unsigned char *p = buf;
  1994. if (ssl->handshake->new_session_ticket == 0) {
  1995. *olen = 0;
  1996. return;
  1997. }
  1998. MBEDTLS_SSL_DEBUG_MSG(3, ("server hello, adding session ticket extension"));
  1999. MBEDTLS_PUT_UINT16_BE(MBEDTLS_TLS_EXT_SESSION_TICKET, p, 0);
  2000. p += 2;
  2001. *p++ = 0x00;
  2002. *p++ = 0x00;
  2003. *olen = 4;
  2004. }
  2005. #endif /* MBEDTLS_SSL_SESSION_TICKETS */
  2006. static void ssl_write_renegotiation_ext(mbedtls_ssl_context *ssl,
  2007. unsigned char *buf,
  2008. size_t *olen)
  2009. {
  2010. unsigned char *p = buf;
  2011. if (ssl->secure_renegotiation != MBEDTLS_SSL_SECURE_RENEGOTIATION) {
  2012. *olen = 0;
  2013. return;
  2014. }
  2015. MBEDTLS_SSL_DEBUG_MSG(3, ("server hello, secure renegotiation extension"));
  2016. MBEDTLS_PUT_UINT16_BE(MBEDTLS_TLS_EXT_RENEGOTIATION_INFO, p, 0);
  2017. p += 2;
  2018. #if defined(MBEDTLS_SSL_RENEGOTIATION)
  2019. if (ssl->renego_status != MBEDTLS_SSL_INITIAL_HANDSHAKE) {
  2020. *p++ = 0x00;
  2021. *p++ = (ssl->verify_data_len * 2 + 1) & 0xFF;
  2022. *p++ = ssl->verify_data_len * 2 & 0xFF;
  2023. memcpy(p, ssl->peer_verify_data, ssl->verify_data_len);
  2024. p += ssl->verify_data_len;
  2025. memcpy(p, ssl->own_verify_data, ssl->verify_data_len);
  2026. p += ssl->verify_data_len;
  2027. } else
  2028. #endif /* MBEDTLS_SSL_RENEGOTIATION */
  2029. {
  2030. *p++ = 0x00;
  2031. *p++ = 0x01;
  2032. *p++ = 0x00;
  2033. }
  2034. *olen = p - buf;
  2035. }
  2036. #if defined(MBEDTLS_SSL_MAX_FRAGMENT_LENGTH)
  2037. static void ssl_write_max_fragment_length_ext(mbedtls_ssl_context *ssl,
  2038. unsigned char *buf,
  2039. size_t *olen)
  2040. {
  2041. unsigned char *p = buf;
  2042. if (ssl->session_negotiate->mfl_code == MBEDTLS_SSL_MAX_FRAG_LEN_NONE) {
  2043. *olen = 0;
  2044. return;
  2045. }
  2046. MBEDTLS_SSL_DEBUG_MSG(3, ("server hello, max_fragment_length extension"));
  2047. MBEDTLS_PUT_UINT16_BE(MBEDTLS_TLS_EXT_MAX_FRAGMENT_LENGTH, p, 0);
  2048. p += 2;
  2049. *p++ = 0x00;
  2050. *p++ = 1;
  2051. *p++ = ssl->session_negotiate->mfl_code;
  2052. *olen = 5;
  2053. }
  2054. #endif /* MBEDTLS_SSL_MAX_FRAGMENT_LENGTH */
  2055. #if defined(MBEDTLS_ECDH_C) || defined(MBEDTLS_ECDSA_C) || \
  2056. defined(MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED)
  2057. static void ssl_write_supported_point_formats_ext(mbedtls_ssl_context *ssl,
  2058. unsigned char *buf,
  2059. size_t *olen)
  2060. {
  2061. unsigned char *p = buf;
  2062. ((void) ssl);
  2063. if ((ssl->handshake->cli_exts &
  2064. MBEDTLS_TLS_EXT_SUPPORTED_POINT_FORMATS_PRESENT) == 0) {
  2065. *olen = 0;
  2066. return;
  2067. }
  2068. MBEDTLS_SSL_DEBUG_MSG(3, ("server hello, supported_point_formats extension"));
  2069. MBEDTLS_PUT_UINT16_BE(MBEDTLS_TLS_EXT_SUPPORTED_POINT_FORMATS, p, 0);
  2070. p += 2;
  2071. *p++ = 0x00;
  2072. *p++ = 2;
  2073. *p++ = 1;
  2074. *p++ = MBEDTLS_ECP_PF_UNCOMPRESSED;
  2075. *olen = 6;
  2076. }
  2077. #endif /* MBEDTLS_ECDH_C || MBEDTLS_ECDSA_C || MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED */
  2078. #if defined(MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED)
  2079. static void ssl_write_ecjpake_kkpp_ext(mbedtls_ssl_context *ssl,
  2080. unsigned char *buf,
  2081. size_t *olen)
  2082. {
  2083. int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
  2084. unsigned char *p = buf;
  2085. const unsigned char *end = ssl->out_msg + MBEDTLS_SSL_OUT_CONTENT_LEN;
  2086. size_t kkpp_len;
  2087. *olen = 0;
  2088. /* Skip costly computation if not needed */
  2089. if (ssl->handshake->ciphersuite_info->key_exchange !=
  2090. MBEDTLS_KEY_EXCHANGE_ECJPAKE) {
  2091. return;
  2092. }
  2093. MBEDTLS_SSL_DEBUG_MSG(3, ("server hello, ecjpake kkpp extension"));
  2094. if (end - p < 4) {
  2095. MBEDTLS_SSL_DEBUG_MSG(1, ("buffer too small"));
  2096. return;
  2097. }
  2098. MBEDTLS_PUT_UINT16_BE(MBEDTLS_TLS_EXT_ECJPAKE_KKPP, p, 0);
  2099. p += 2;
  2100. ret = mbedtls_ecjpake_write_round_one(&ssl->handshake->ecjpake_ctx,
  2101. p + 2, end - p - 2, &kkpp_len,
  2102. ssl->conf->f_rng, ssl->conf->p_rng);
  2103. if (ret != 0) {
  2104. MBEDTLS_SSL_DEBUG_RET(1, "mbedtls_ecjpake_write_round_one", ret);
  2105. return;
  2106. }
  2107. MBEDTLS_PUT_UINT16_BE(kkpp_len, p, 0);
  2108. p += 2;
  2109. *olen = kkpp_len + 4;
  2110. }
  2111. #endif /* MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED */
  2112. #if defined(MBEDTLS_SSL_ALPN)
  2113. static void ssl_write_alpn_ext(mbedtls_ssl_context *ssl,
  2114. unsigned char *buf, size_t *olen)
  2115. {
  2116. if (ssl->alpn_chosen == NULL) {
  2117. *olen = 0;
  2118. return;
  2119. }
  2120. MBEDTLS_SSL_DEBUG_MSG(3, ("server hello, adding alpn extension"));
  2121. /*
  2122. * 0 . 1 ext identifier
  2123. * 2 . 3 ext length
  2124. * 4 . 5 protocol list length
  2125. * 6 . 6 protocol name length
  2126. * 7 . 7+n protocol name
  2127. */
  2128. MBEDTLS_PUT_UINT16_BE(MBEDTLS_TLS_EXT_ALPN, buf, 0);
  2129. *olen = 7 + strlen(ssl->alpn_chosen);
  2130. MBEDTLS_PUT_UINT16_BE(*olen - 4, buf, 2);
  2131. MBEDTLS_PUT_UINT16_BE(*olen - 6, buf, 4);
  2132. buf[6] = MBEDTLS_BYTE_0(*olen - 7);
  2133. memcpy(buf + 7, ssl->alpn_chosen, *olen - 7);
  2134. }
  2135. #endif /* MBEDTLS_ECDH_C || MBEDTLS_ECDSA_C */
  2136. #if defined(MBEDTLS_SSL_DTLS_SRTP) && defined(MBEDTLS_SSL_PROTO_DTLS)
  2137. static void ssl_write_use_srtp_ext(mbedtls_ssl_context *ssl,
  2138. unsigned char *buf,
  2139. size_t *olen)
  2140. {
  2141. size_t mki_len = 0, ext_len = 0;
  2142. uint16_t profile_value = 0;
  2143. const unsigned char *end = ssl->out_msg + MBEDTLS_SSL_OUT_CONTENT_LEN;
  2144. *olen = 0;
  2145. if ((ssl->conf->transport != MBEDTLS_SSL_TRANSPORT_DATAGRAM) ||
  2146. (ssl->dtls_srtp_info.chosen_dtls_srtp_profile == MBEDTLS_TLS_SRTP_UNSET)) {
  2147. return;
  2148. }
  2149. MBEDTLS_SSL_DEBUG_MSG(3, ("server hello, adding use_srtp extension"));
  2150. if (ssl->conf->dtls_srtp_mki_support == MBEDTLS_SSL_DTLS_SRTP_MKI_SUPPORTED) {
  2151. mki_len = ssl->dtls_srtp_info.mki_len;
  2152. }
  2153. /* The extension total size is 9 bytes :
  2154. * - 2 bytes for the extension tag
  2155. * - 2 bytes for the total size
  2156. * - 2 bytes for the protection profile length
  2157. * - 2 bytes for the protection profile
  2158. * - 1 byte for the mki length
  2159. * + the actual mki length
  2160. * Check we have enough room in the output buffer */
  2161. if ((size_t) (end - buf) < mki_len + 9) {
  2162. MBEDTLS_SSL_DEBUG_MSG(1, ("buffer too small"));
  2163. return;
  2164. }
  2165. /* extension */
  2166. MBEDTLS_PUT_UINT16_BE(MBEDTLS_TLS_EXT_USE_SRTP, buf, 0);
  2167. /*
  2168. * total length 5 and mki value: only one profile(2 bytes)
  2169. * and length(2 bytes) and srtp_mki )
  2170. */
  2171. ext_len = 5 + mki_len;
  2172. MBEDTLS_PUT_UINT16_BE(ext_len, buf, 2);
  2173. /* protection profile length: 2 */
  2174. buf[4] = 0x00;
  2175. buf[5] = 0x02;
  2176. profile_value = mbedtls_ssl_check_srtp_profile_value(
  2177. ssl->dtls_srtp_info.chosen_dtls_srtp_profile);
  2178. if (profile_value != MBEDTLS_TLS_SRTP_UNSET) {
  2179. MBEDTLS_PUT_UINT16_BE(profile_value, buf, 6);
  2180. } else {
  2181. MBEDTLS_SSL_DEBUG_MSG(1, ("use_srtp extension invalid profile"));
  2182. return;
  2183. }
  2184. buf[8] = mki_len & 0xFF;
  2185. memcpy(&buf[9], ssl->dtls_srtp_info.mki_value, mki_len);
  2186. *olen = 9 + mki_len;
  2187. }
  2188. #endif /* MBEDTLS_SSL_DTLS_SRTP */
  2189. #if defined(MBEDTLS_SSL_DTLS_HELLO_VERIFY)
  2190. MBEDTLS_CHECK_RETURN_CRITICAL
  2191. static int ssl_write_hello_verify_request(mbedtls_ssl_context *ssl)
  2192. {
  2193. int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
  2194. unsigned char *p = ssl->out_msg + 4;
  2195. unsigned char *cookie_len_byte;
  2196. MBEDTLS_SSL_DEBUG_MSG(2, ("=> write hello verify request"));
  2197. /*
  2198. * struct {
  2199. * ProtocolVersion server_version;
  2200. * opaque cookie<0..2^8-1>;
  2201. * } HelloVerifyRequest;
  2202. */
  2203. /* The RFC is not clear on this point, but sending the actual negotiated
  2204. * version looks like the most interoperable thing to do. */
  2205. mbedtls_ssl_write_version(ssl->major_ver, ssl->minor_ver,
  2206. ssl->conf->transport, p);
  2207. MBEDTLS_SSL_DEBUG_BUF(3, "server version", p, 2);
  2208. p += 2;
  2209. /* If we get here, f_cookie_check is not null */
  2210. if (ssl->conf->f_cookie_write == NULL) {
  2211. MBEDTLS_SSL_DEBUG_MSG(1, ("inconsistent cookie callbacks"));
  2212. return MBEDTLS_ERR_SSL_INTERNAL_ERROR;
  2213. }
  2214. /* Skip length byte until we know the length */
  2215. cookie_len_byte = p++;
  2216. if ((ret = ssl->conf->f_cookie_write(ssl->conf->p_cookie,
  2217. &p, ssl->out_buf + MBEDTLS_SSL_OUT_BUFFER_LEN,
  2218. ssl->cli_id, ssl->cli_id_len)) != 0) {
  2219. MBEDTLS_SSL_DEBUG_RET(1, "f_cookie_write", ret);
  2220. return ret;
  2221. }
  2222. *cookie_len_byte = (unsigned char) (p - (cookie_len_byte + 1));
  2223. MBEDTLS_SSL_DEBUG_BUF(3, "cookie sent", cookie_len_byte + 1, *cookie_len_byte);
  2224. ssl->out_msglen = p - ssl->out_msg;
  2225. ssl->out_msgtype = MBEDTLS_SSL_MSG_HANDSHAKE;
  2226. ssl->out_msg[0] = MBEDTLS_SSL_HS_HELLO_VERIFY_REQUEST;
  2227. ssl->state = MBEDTLS_SSL_SERVER_HELLO_VERIFY_REQUEST_SENT;
  2228. if ((ret = mbedtls_ssl_write_handshake_msg(ssl)) != 0) {
  2229. MBEDTLS_SSL_DEBUG_RET(1, "mbedtls_ssl_write_handshake_msg", ret);
  2230. return ret;
  2231. }
  2232. #if defined(MBEDTLS_SSL_PROTO_DTLS)
  2233. if (ssl->conf->transport == MBEDTLS_SSL_TRANSPORT_DATAGRAM &&
  2234. (ret = mbedtls_ssl_flight_transmit(ssl)) != 0) {
  2235. MBEDTLS_SSL_DEBUG_RET(1, "mbedtls_ssl_flight_transmit", ret);
  2236. return ret;
  2237. }
  2238. #endif /* MBEDTLS_SSL_PROTO_DTLS */
  2239. MBEDTLS_SSL_DEBUG_MSG(2, ("<= write hello verify request"));
  2240. return 0;
  2241. }
  2242. #endif /* MBEDTLS_SSL_DTLS_HELLO_VERIFY */
  2243. static void ssl_handle_id_based_session_resumption(mbedtls_ssl_context *ssl)
  2244. {
  2245. int ret;
  2246. mbedtls_ssl_session session_tmp;
  2247. mbedtls_ssl_session * const session = ssl->session_negotiate;
  2248. /* Resume is 0 by default, see ssl_handshake_init().
  2249. * It may be already set to 1 by ssl_parse_session_ticket_ext(). */
  2250. if (ssl->handshake->resume == 1) {
  2251. return;
  2252. }
  2253. if (session->id_len == 0) {
  2254. return;
  2255. }
  2256. if (ssl->conf->f_get_cache == NULL) {
  2257. return;
  2258. }
  2259. #if defined(MBEDTLS_SSL_RENEGOTIATION)
  2260. if (ssl->renego_status != MBEDTLS_SSL_INITIAL_HANDSHAKE) {
  2261. return;
  2262. }
  2263. #endif
  2264. mbedtls_ssl_session_init(&session_tmp);
  2265. session_tmp.id_len = session->id_len;
  2266. memcpy(session_tmp.id, session->id, session->id_len);
  2267. ret = ssl->conf->f_get_cache(ssl->conf->p_cache,
  2268. &session_tmp);
  2269. if (ret != 0) {
  2270. goto exit;
  2271. }
  2272. if (session->ciphersuite != session_tmp.ciphersuite ||
  2273. session->compression != session_tmp.compression) {
  2274. /* Mismatch between cached and negotiated session */
  2275. goto exit;
  2276. }
  2277. /* Move semantics */
  2278. mbedtls_ssl_session_free(session);
  2279. *session = session_tmp;
  2280. memset(&session_tmp, 0, sizeof(session_tmp));
  2281. MBEDTLS_SSL_DEBUG_MSG(3, ("session successfully restored from cache"));
  2282. ssl->handshake->resume = 1;
  2283. exit:
  2284. mbedtls_ssl_session_free(&session_tmp);
  2285. }
  2286. MBEDTLS_CHECK_RETURN_CRITICAL
  2287. static int ssl_write_server_hello(mbedtls_ssl_context *ssl)
  2288. {
  2289. #if defined(MBEDTLS_HAVE_TIME)
  2290. mbedtls_time_t t;
  2291. #endif
  2292. int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
  2293. size_t olen, ext_len = 0, n;
  2294. unsigned char *buf, *p;
  2295. MBEDTLS_SSL_DEBUG_MSG(2, ("=> write server hello"));
  2296. #if defined(MBEDTLS_SSL_DTLS_HELLO_VERIFY)
  2297. if (ssl->conf->transport == MBEDTLS_SSL_TRANSPORT_DATAGRAM &&
  2298. ssl->handshake->verify_cookie_len != 0) {
  2299. MBEDTLS_SSL_DEBUG_MSG(2, ("client hello was not authenticated"));
  2300. MBEDTLS_SSL_DEBUG_MSG(2, ("<= write server hello"));
  2301. return ssl_write_hello_verify_request(ssl);
  2302. }
  2303. #endif /* MBEDTLS_SSL_DTLS_HELLO_VERIFY */
  2304. if (ssl->conf->f_rng == NULL) {
  2305. MBEDTLS_SSL_DEBUG_MSG(1, ("no RNG provided"));
  2306. return MBEDTLS_ERR_SSL_NO_RNG;
  2307. }
  2308. /*
  2309. * 0 . 0 handshake type
  2310. * 1 . 3 handshake length
  2311. * 4 . 5 protocol version
  2312. * 6 . 9 UNIX time()
  2313. * 10 . 37 random bytes
  2314. */
  2315. buf = ssl->out_msg;
  2316. p = buf + 4;
  2317. mbedtls_ssl_write_version(ssl->major_ver, ssl->minor_ver,
  2318. ssl->conf->transport, p);
  2319. p += 2;
  2320. MBEDTLS_SSL_DEBUG_MSG(3, ("server hello, chosen version: [%d:%d]",
  2321. buf[4], buf[5]));
  2322. #if defined(MBEDTLS_HAVE_TIME)
  2323. t = mbedtls_time(NULL);
  2324. MBEDTLS_PUT_UINT32_BE(t, p, 0);
  2325. p += 4;
  2326. MBEDTLS_SSL_DEBUG_MSG(3, ("server hello, current time: %" MBEDTLS_PRINTF_LONGLONG,
  2327. (long long) t));
  2328. #else
  2329. if ((ret = ssl->conf->f_rng(ssl->conf->p_rng, p, 4)) != 0) {
  2330. return ret;
  2331. }
  2332. p += 4;
  2333. #endif /* MBEDTLS_HAVE_TIME */
  2334. if ((ret = ssl->conf->f_rng(ssl->conf->p_rng, p, 28)) != 0) {
  2335. return ret;
  2336. }
  2337. p += 28;
  2338. memcpy(ssl->handshake->randbytes + 32, buf + 6, 32);
  2339. MBEDTLS_SSL_DEBUG_BUF(3, "server hello, random bytes", buf + 6, 32);
  2340. ssl_handle_id_based_session_resumption(ssl);
  2341. if (ssl->handshake->resume == 0) {
  2342. /*
  2343. * New session, create a new session id,
  2344. * unless we're about to issue a session ticket
  2345. */
  2346. ssl->state++;
  2347. #if defined(MBEDTLS_HAVE_TIME)
  2348. ssl->session_negotiate->start = mbedtls_time(NULL);
  2349. #endif
  2350. #if defined(MBEDTLS_SSL_SESSION_TICKETS)
  2351. if (ssl->handshake->new_session_ticket != 0) {
  2352. ssl->session_negotiate->id_len = n = 0;
  2353. memset(ssl->session_negotiate->id, 0, 32);
  2354. } else
  2355. #endif /* MBEDTLS_SSL_SESSION_TICKETS */
  2356. {
  2357. ssl->session_negotiate->id_len = n = 32;
  2358. if ((ret = ssl->conf->f_rng(ssl->conf->p_rng, ssl->session_negotiate->id,
  2359. n)) != 0) {
  2360. return ret;
  2361. }
  2362. }
  2363. } else {
  2364. /*
  2365. * Resuming a session
  2366. */
  2367. n = ssl->session_negotiate->id_len;
  2368. ssl->state = MBEDTLS_SSL_SERVER_CHANGE_CIPHER_SPEC;
  2369. if ((ret = mbedtls_ssl_derive_keys(ssl)) != 0) {
  2370. MBEDTLS_SSL_DEBUG_RET(1, "mbedtls_ssl_derive_keys", ret);
  2371. return ret;
  2372. }
  2373. }
  2374. /*
  2375. * 38 . 38 session id length
  2376. * 39 . 38+n session id
  2377. * 39+n . 40+n chosen ciphersuite
  2378. * 41+n . 41+n chosen compression alg.
  2379. * 42+n . 43+n extensions length
  2380. * 44+n . 43+n+m extensions
  2381. */
  2382. *p++ = (unsigned char) ssl->session_negotiate->id_len;
  2383. memcpy(p, ssl->session_negotiate->id, ssl->session_negotiate->id_len);
  2384. p += ssl->session_negotiate->id_len;
  2385. MBEDTLS_SSL_DEBUG_MSG(3, ("server hello, session id len.: %" MBEDTLS_PRINTF_SIZET, n));
  2386. MBEDTLS_SSL_DEBUG_BUF(3, "server hello, session id", buf + 39, n);
  2387. MBEDTLS_SSL_DEBUG_MSG(3, ("%s session has been resumed",
  2388. ssl->handshake->resume ? "a" : "no"));
  2389. MBEDTLS_PUT_UINT16_BE(ssl->session_negotiate->ciphersuite, p, 0);
  2390. p += 2;
  2391. *p++ = MBEDTLS_BYTE_0(ssl->session_negotiate->compression);
  2392. MBEDTLS_SSL_DEBUG_MSG(3, ("server hello, chosen ciphersuite: %s",
  2393. mbedtls_ssl_get_ciphersuite_name(ssl->session_negotiate->ciphersuite)));
  2394. MBEDTLS_SSL_DEBUG_MSG(3, ("server hello, compress alg.: 0x%02X",
  2395. (unsigned int) ssl->session_negotiate->compression));
  2396. /* Do not write the extensions if the protocol is SSLv3 */
  2397. #if defined(MBEDTLS_SSL_PROTO_SSL3)
  2398. if ((ssl->major_ver != 3) || (ssl->minor_ver != 0)) {
  2399. #endif
  2400. /*
  2401. * First write extensions, then the total length
  2402. */
  2403. ssl_write_renegotiation_ext(ssl, p + 2 + ext_len, &olen);
  2404. ext_len += olen;
  2405. #if defined(MBEDTLS_SSL_MAX_FRAGMENT_LENGTH)
  2406. ssl_write_max_fragment_length_ext(ssl, p + 2 + ext_len, &olen);
  2407. ext_len += olen;
  2408. #endif
  2409. #if defined(MBEDTLS_SSL_TRUNCATED_HMAC)
  2410. ssl_write_truncated_hmac_ext(ssl, p + 2 + ext_len, &olen);
  2411. ext_len += olen;
  2412. #endif
  2413. #if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID)
  2414. ssl_write_cid_ext(ssl, p + 2 + ext_len, &olen);
  2415. ext_len += olen;
  2416. #endif
  2417. #if defined(MBEDTLS_SSL_ENCRYPT_THEN_MAC)
  2418. ssl_write_encrypt_then_mac_ext(ssl, p + 2 + ext_len, &olen);
  2419. ext_len += olen;
  2420. #endif
  2421. #if defined(MBEDTLS_SSL_EXTENDED_MASTER_SECRET)
  2422. ssl_write_extended_ms_ext(ssl, p + 2 + ext_len, &olen);
  2423. ext_len += olen;
  2424. #endif
  2425. #if defined(MBEDTLS_SSL_SESSION_TICKETS)
  2426. ssl_write_session_ticket_ext(ssl, p + 2 + ext_len, &olen);
  2427. ext_len += olen;
  2428. #endif
  2429. #if defined(MBEDTLS_ECDH_C) || defined(MBEDTLS_ECDSA_C) || \
  2430. defined(MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED)
  2431. if (mbedtls_ssl_ciphersuite_uses_ec(
  2432. mbedtls_ssl_ciphersuite_from_id(ssl->session_negotiate->ciphersuite))) {
  2433. ssl_write_supported_point_formats_ext(ssl, p + 2 + ext_len, &olen);
  2434. ext_len += olen;
  2435. }
  2436. #endif
  2437. #if defined(MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED)
  2438. ssl_write_ecjpake_kkpp_ext(ssl, p + 2 + ext_len, &olen);
  2439. ext_len += olen;
  2440. #endif
  2441. #if defined(MBEDTLS_SSL_ALPN)
  2442. ssl_write_alpn_ext(ssl, p + 2 + ext_len, &olen);
  2443. ext_len += olen;
  2444. #endif
  2445. #if defined(MBEDTLS_SSL_DTLS_SRTP)
  2446. ssl_write_use_srtp_ext(ssl, p + 2 + ext_len, &olen);
  2447. ext_len += olen;
  2448. #endif
  2449. MBEDTLS_SSL_DEBUG_MSG(3, ("server hello, total extension length: %" MBEDTLS_PRINTF_SIZET,
  2450. ext_len));
  2451. if (ext_len > 0) {
  2452. MBEDTLS_PUT_UINT16_BE(ext_len, p, 0);
  2453. p += 2 + ext_len;
  2454. }
  2455. #if defined(MBEDTLS_SSL_PROTO_SSL3)
  2456. }
  2457. #endif
  2458. ssl->out_msglen = p - buf;
  2459. ssl->out_msgtype = MBEDTLS_SSL_MSG_HANDSHAKE;
  2460. ssl->out_msg[0] = MBEDTLS_SSL_HS_SERVER_HELLO;
  2461. ret = mbedtls_ssl_write_handshake_msg(ssl);
  2462. MBEDTLS_SSL_DEBUG_MSG(2, ("<= write server hello"));
  2463. return ret;
  2464. }
  2465. #if !defined(MBEDTLS_KEY_EXCHANGE_CERT_REQ_ALLOWED_ENABLED)
  2466. MBEDTLS_CHECK_RETURN_CRITICAL
  2467. static int ssl_write_certificate_request(mbedtls_ssl_context *ssl)
  2468. {
  2469. const mbedtls_ssl_ciphersuite_t *ciphersuite_info =
  2470. ssl->handshake->ciphersuite_info;
  2471. MBEDTLS_SSL_DEBUG_MSG(2, ("=> write certificate request"));
  2472. if (!mbedtls_ssl_ciphersuite_cert_req_allowed(ciphersuite_info)) {
  2473. MBEDTLS_SSL_DEBUG_MSG(2, ("<= skip write certificate request"));
  2474. ssl->state++;
  2475. return 0;
  2476. }
  2477. MBEDTLS_SSL_DEBUG_MSG(1, ("should never happen"));
  2478. return MBEDTLS_ERR_SSL_INTERNAL_ERROR;
  2479. }
  2480. #else /* !MBEDTLS_KEY_EXCHANGE_CERT_REQ_ALLOWED_ENABLED */
  2481. MBEDTLS_CHECK_RETURN_CRITICAL
  2482. static int ssl_write_certificate_request(mbedtls_ssl_context *ssl)
  2483. {
  2484. int ret = MBEDTLS_ERR_SSL_FEATURE_UNAVAILABLE;
  2485. const mbedtls_ssl_ciphersuite_t *ciphersuite_info =
  2486. ssl->handshake->ciphersuite_info;
  2487. uint16_t dn_size, total_dn_size; /* excluding length bytes */
  2488. size_t ct_len, sa_len; /* including length bytes */
  2489. unsigned char *buf, *p;
  2490. const unsigned char * const end = ssl->out_msg + MBEDTLS_SSL_OUT_CONTENT_LEN;
  2491. const mbedtls_x509_crt *crt;
  2492. int authmode;
  2493. MBEDTLS_SSL_DEBUG_MSG(2, ("=> write certificate request"));
  2494. ssl->state++;
  2495. #if defined(MBEDTLS_SSL_SERVER_NAME_INDICATION)
  2496. if (ssl->handshake->sni_authmode != MBEDTLS_SSL_VERIFY_UNSET) {
  2497. authmode = ssl->handshake->sni_authmode;
  2498. } else
  2499. #endif
  2500. authmode = ssl->conf->authmode;
  2501. if (!mbedtls_ssl_ciphersuite_cert_req_allowed(ciphersuite_info) ||
  2502. authmode == MBEDTLS_SSL_VERIFY_NONE) {
  2503. MBEDTLS_SSL_DEBUG_MSG(2, ("<= skip write certificate request"));
  2504. return 0;
  2505. }
  2506. /*
  2507. * 0 . 0 handshake type
  2508. * 1 . 3 handshake length
  2509. * 4 . 4 cert type count
  2510. * 5 .. m-1 cert types
  2511. * m .. m+1 sig alg length (TLS 1.2 only)
  2512. * m+1 .. n-1 SignatureAndHashAlgorithms (TLS 1.2 only)
  2513. * n .. n+1 length of all DNs
  2514. * n+2 .. n+3 length of DN 1
  2515. * n+4 .. ... Distinguished Name #1
  2516. * ... .. ... length of DN 2, etc.
  2517. */
  2518. buf = ssl->out_msg;
  2519. p = buf + 4;
  2520. /*
  2521. * Supported certificate types
  2522. *
  2523. * ClientCertificateType certificate_types<1..2^8-1>;
  2524. * enum { (255) } ClientCertificateType;
  2525. */
  2526. ct_len = 0;
  2527. #if defined(MBEDTLS_RSA_C)
  2528. p[1 + ct_len++] = MBEDTLS_SSL_CERT_TYPE_RSA_SIGN;
  2529. #endif
  2530. #if defined(MBEDTLS_ECDSA_C)
  2531. p[1 + ct_len++] = MBEDTLS_SSL_CERT_TYPE_ECDSA_SIGN;
  2532. #endif
  2533. p[0] = (unsigned char) ct_len++;
  2534. p += ct_len;
  2535. sa_len = 0;
  2536. #if defined(MBEDTLS_SSL_PROTO_TLS1_2)
  2537. /*
  2538. * Add signature_algorithms for verify (TLS 1.2)
  2539. *
  2540. * SignatureAndHashAlgorithm supported_signature_algorithms<2..2^16-2>;
  2541. *
  2542. * struct {
  2543. * HashAlgorithm hash;
  2544. * SignatureAlgorithm signature;
  2545. * } SignatureAndHashAlgorithm;
  2546. *
  2547. * enum { (255) } HashAlgorithm;
  2548. * enum { (255) } SignatureAlgorithm;
  2549. */
  2550. if (ssl->minor_ver == MBEDTLS_SSL_MINOR_VERSION_3) {
  2551. const int *cur;
  2552. /*
  2553. * Supported signature algorithms
  2554. */
  2555. for (cur = ssl->conf->sig_hashes; *cur != MBEDTLS_MD_NONE; cur++) {
  2556. unsigned char hash = mbedtls_ssl_hash_from_md_alg(*cur);
  2557. if (MBEDTLS_SSL_HASH_NONE == hash || mbedtls_ssl_set_calc_verify_md(ssl, hash)) {
  2558. continue;
  2559. }
  2560. #if defined(MBEDTLS_RSA_C)
  2561. p[2 + sa_len++] = hash;
  2562. p[2 + sa_len++] = MBEDTLS_SSL_SIG_RSA;
  2563. #endif
  2564. #if defined(MBEDTLS_ECDSA_C)
  2565. p[2 + sa_len++] = hash;
  2566. p[2 + sa_len++] = MBEDTLS_SSL_SIG_ECDSA;
  2567. #endif
  2568. }
  2569. MBEDTLS_PUT_UINT16_BE(sa_len, p, 0);
  2570. sa_len += 2;
  2571. p += sa_len;
  2572. }
  2573. #endif /* MBEDTLS_SSL_PROTO_TLS1_2 */
  2574. /*
  2575. * DistinguishedName certificate_authorities<0..2^16-1>;
  2576. * opaque DistinguishedName<1..2^16-1>;
  2577. */
  2578. p += 2;
  2579. total_dn_size = 0;
  2580. if (ssl->conf->cert_req_ca_list == MBEDTLS_SSL_CERT_REQ_CA_LIST_ENABLED) {
  2581. /* NOTE: If trusted certificates are provisioned
  2582. * via a CA callback (configured through
  2583. * `mbedtls_ssl_conf_ca_cb()`, then the
  2584. * CertificateRequest is currently left empty. */
  2585. #if defined(MBEDTLS_SSL_SERVER_NAME_INDICATION)
  2586. if (ssl->handshake->sni_ca_chain != NULL) {
  2587. crt = ssl->handshake->sni_ca_chain;
  2588. } else
  2589. #endif
  2590. crt = ssl->conf->ca_chain;
  2591. while (crt != NULL && crt->version != 0) {
  2592. /* It follows from RFC 5280 A.1 that this length
  2593. * can be represented in at most 11 bits. */
  2594. dn_size = (uint16_t) crt->subject_raw.len;
  2595. if (end < p || (size_t) (end - p) < 2 + (size_t) dn_size) {
  2596. MBEDTLS_SSL_DEBUG_MSG(1, ("skipping CAs: buffer too short"));
  2597. break;
  2598. }
  2599. MBEDTLS_PUT_UINT16_BE(dn_size, p, 0);
  2600. p += 2;
  2601. memcpy(p, crt->subject_raw.p, dn_size);
  2602. p += dn_size;
  2603. MBEDTLS_SSL_DEBUG_BUF(3, "requested DN", p - dn_size, dn_size);
  2604. total_dn_size += 2 + dn_size;
  2605. crt = crt->next;
  2606. }
  2607. }
  2608. ssl->out_msglen = p - buf;
  2609. ssl->out_msgtype = MBEDTLS_SSL_MSG_HANDSHAKE;
  2610. ssl->out_msg[0] = MBEDTLS_SSL_HS_CERTIFICATE_REQUEST;
  2611. MBEDTLS_PUT_UINT16_BE(total_dn_size, ssl->out_msg, 4 + ct_len + sa_len);
  2612. ret = mbedtls_ssl_write_handshake_msg(ssl);
  2613. MBEDTLS_SSL_DEBUG_MSG(2, ("<= write certificate request"));
  2614. return ret;
  2615. }
  2616. #endif /* MBEDTLS_KEY_EXCHANGE_CERT_REQ_ALLOWED_ENABLED */
  2617. #if defined(MBEDTLS_KEY_EXCHANGE_ECDH_RSA_ENABLED) || \
  2618. defined(MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA_ENABLED)
  2619. MBEDTLS_CHECK_RETURN_CRITICAL
  2620. static int ssl_get_ecdh_params_from_cert(mbedtls_ssl_context *ssl)
  2621. {
  2622. int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
  2623. mbedtls_pk_context *own_key = mbedtls_ssl_own_key(ssl);
  2624. /* Check if the key is a transparent ECDH key.
  2625. * This also ensures that it is safe to call mbedtls_pk_ec(). */
  2626. if (mbedtls_pk_get_type(own_key) != MBEDTLS_PK_ECKEY &&
  2627. mbedtls_pk_get_type(own_key) != MBEDTLS_PK_ECKEY_DH) {
  2628. MBEDTLS_SSL_DEBUG_MSG(1, ("server key not ECDH capable"));
  2629. return MBEDTLS_ERR_SSL_PK_TYPE_MISMATCH;
  2630. }
  2631. if ((ret = mbedtls_ecdh_get_params(&ssl->handshake->ecdh_ctx,
  2632. mbedtls_pk_ec(*own_key),
  2633. MBEDTLS_ECDH_OURS)) != 0) {
  2634. MBEDTLS_SSL_DEBUG_RET(1, ("mbedtls_ecdh_get_params"), ret);
  2635. return ret;
  2636. }
  2637. return 0;
  2638. }
  2639. #endif /* MBEDTLS_KEY_EXCHANGE_ECDH_RSA_ENABLED) ||
  2640. MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA_ENABLED */
  2641. #if defined(MBEDTLS_KEY_EXCHANGE_WITH_SERVER_SIGNATURE_ENABLED) && \
  2642. defined(MBEDTLS_SSL_ASYNC_PRIVATE)
  2643. MBEDTLS_CHECK_RETURN_CRITICAL
  2644. static int ssl_resume_server_key_exchange(mbedtls_ssl_context *ssl,
  2645. size_t *signature_len)
  2646. {
  2647. /* Append the signature to ssl->out_msg, leaving 2 bytes for the
  2648. * signature length which will be added in ssl_write_server_key_exchange
  2649. * after the call to ssl_prepare_server_key_exchange.
  2650. * ssl_write_server_key_exchange also takes care of incrementing
  2651. * ssl->out_msglen. */
  2652. unsigned char *sig_start = ssl->out_msg + ssl->out_msglen + 2;
  2653. size_t sig_max_len = (ssl->out_buf + MBEDTLS_SSL_OUT_CONTENT_LEN
  2654. - sig_start);
  2655. int ret = ssl->conf->f_async_resume(ssl,
  2656. sig_start, signature_len, sig_max_len);
  2657. if (ret != MBEDTLS_ERR_SSL_ASYNC_IN_PROGRESS) {
  2658. ssl->handshake->async_in_progress = 0;
  2659. mbedtls_ssl_set_async_operation_data(ssl, NULL);
  2660. }
  2661. MBEDTLS_SSL_DEBUG_RET(2, "ssl_resume_server_key_exchange", ret);
  2662. return ret;
  2663. }
  2664. #endif /* defined(MBEDTLS_KEY_EXCHANGE_WITH_SERVER_SIGNATURE_ENABLED) &&
  2665. defined(MBEDTLS_SSL_ASYNC_PRIVATE) */
  2666. /* Prepare the ServerKeyExchange message, up to and including
  2667. * calculating the signature if any, but excluding formatting the
  2668. * signature and sending the message. */
  2669. MBEDTLS_CHECK_RETURN_CRITICAL
  2670. static int ssl_prepare_server_key_exchange(mbedtls_ssl_context *ssl,
  2671. size_t *signature_len)
  2672. {
  2673. const mbedtls_ssl_ciphersuite_t *ciphersuite_info =
  2674. ssl->handshake->ciphersuite_info;
  2675. #if defined(MBEDTLS_KEY_EXCHANGE_SOME_PFS_ENABLED)
  2676. #if defined(MBEDTLS_KEY_EXCHANGE_WITH_SERVER_SIGNATURE_ENABLED)
  2677. unsigned char *dig_signed = NULL;
  2678. #endif /* MBEDTLS_KEY_EXCHANGE_WITH_SERVER_SIGNATURE_ENABLED */
  2679. #endif /* MBEDTLS_KEY_EXCHANGE_SOME_PFS_ENABLED */
  2680. (void) ciphersuite_info; /* unused in some configurations */
  2681. #if !defined(MBEDTLS_KEY_EXCHANGE_WITH_SERVER_SIGNATURE_ENABLED)
  2682. (void) signature_len;
  2683. #endif /* MBEDTLS_KEY_EXCHANGE_WITH_SERVER_SIGNATURE_ENABLED */
  2684. ssl->out_msglen = 4; /* header (type:1, length:3) to be written later */
  2685. /*
  2686. *
  2687. * Part 1: Provide key exchange parameters for chosen ciphersuite.
  2688. *
  2689. */
  2690. /*
  2691. * - ECJPAKE key exchanges
  2692. */
  2693. #if defined(MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED)
  2694. if (ciphersuite_info->key_exchange == MBEDTLS_KEY_EXCHANGE_ECJPAKE) {
  2695. int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
  2696. size_t len = 0;
  2697. ret = mbedtls_ecjpake_write_round_two(
  2698. &ssl->handshake->ecjpake_ctx,
  2699. ssl->out_msg + ssl->out_msglen,
  2700. MBEDTLS_SSL_OUT_CONTENT_LEN - ssl->out_msglen, &len,
  2701. ssl->conf->f_rng, ssl->conf->p_rng);
  2702. if (ret != 0) {
  2703. MBEDTLS_SSL_DEBUG_RET(1, "mbedtls_ecjpake_write_round_two", ret);
  2704. return ret;
  2705. }
  2706. ssl->out_msglen += len;
  2707. }
  2708. #endif /* MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED */
  2709. /*
  2710. * For (EC)DHE key exchanges with PSK, parameters are prefixed by support
  2711. * identity hint (RFC 4279, Sec. 3). Until someone needs this feature,
  2712. * we use empty support identity hints here.
  2713. **/
  2714. #if defined(MBEDTLS_KEY_EXCHANGE_DHE_PSK_ENABLED) || \
  2715. defined(MBEDTLS_KEY_EXCHANGE_ECDHE_PSK_ENABLED)
  2716. if (ciphersuite_info->key_exchange == MBEDTLS_KEY_EXCHANGE_DHE_PSK ||
  2717. ciphersuite_info->key_exchange == MBEDTLS_KEY_EXCHANGE_ECDHE_PSK) {
  2718. ssl->out_msg[ssl->out_msglen++] = 0x00;
  2719. ssl->out_msg[ssl->out_msglen++] = 0x00;
  2720. }
  2721. #endif /* MBEDTLS_KEY_EXCHANGE_DHE_PSK_ENABLED ||
  2722. MBEDTLS_KEY_EXCHANGE_ECDHE_PSK_ENABLED */
  2723. /*
  2724. * - DHE key exchanges
  2725. */
  2726. #if defined(MBEDTLS_KEY_EXCHANGE_SOME_DHE_ENABLED)
  2727. if (mbedtls_ssl_ciphersuite_uses_dhe(ciphersuite_info)) {
  2728. int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
  2729. size_t len = 0;
  2730. if (ssl->conf->dhm_P.p == NULL || ssl->conf->dhm_G.p == NULL) {
  2731. MBEDTLS_SSL_DEBUG_MSG(1, ("no DH parameters set"));
  2732. return MBEDTLS_ERR_SSL_BAD_INPUT_DATA;
  2733. }
  2734. /*
  2735. * Ephemeral DH parameters:
  2736. *
  2737. * struct {
  2738. * opaque dh_p<1..2^16-1>;
  2739. * opaque dh_g<1..2^16-1>;
  2740. * opaque dh_Ys<1..2^16-1>;
  2741. * } ServerDHParams;
  2742. */
  2743. if ((ret = mbedtls_dhm_set_group(&ssl->handshake->dhm_ctx,
  2744. &ssl->conf->dhm_P,
  2745. &ssl->conf->dhm_G)) != 0) {
  2746. MBEDTLS_SSL_DEBUG_RET(1, "mbedtls_dhm_set_group", ret);
  2747. return ret;
  2748. }
  2749. if ((ret = mbedtls_dhm_make_params(
  2750. &ssl->handshake->dhm_ctx,
  2751. (int) mbedtls_mpi_size(&ssl->handshake->dhm_ctx.P),
  2752. ssl->out_msg + ssl->out_msglen, &len,
  2753. ssl->conf->f_rng, ssl->conf->p_rng)) != 0) {
  2754. MBEDTLS_SSL_DEBUG_RET(1, "mbedtls_dhm_make_params", ret);
  2755. return ret;
  2756. }
  2757. #if defined(MBEDTLS_KEY_EXCHANGE_WITH_SERVER_SIGNATURE_ENABLED)
  2758. dig_signed = ssl->out_msg + ssl->out_msglen;
  2759. #endif
  2760. ssl->out_msglen += len;
  2761. MBEDTLS_SSL_DEBUG_MPI(3, "DHM: X ", &ssl->handshake->dhm_ctx.X);
  2762. MBEDTLS_SSL_DEBUG_MPI(3, "DHM: P ", &ssl->handshake->dhm_ctx.P);
  2763. MBEDTLS_SSL_DEBUG_MPI(3, "DHM: G ", &ssl->handshake->dhm_ctx.G);
  2764. MBEDTLS_SSL_DEBUG_MPI(3, "DHM: GX", &ssl->handshake->dhm_ctx.GX);
  2765. }
  2766. #endif /* MBEDTLS_KEY_EXCHANGE_SOME_DHE_ENABLED */
  2767. /*
  2768. * - ECDHE key exchanges
  2769. */
  2770. #if defined(MBEDTLS_KEY_EXCHANGE_SOME_ECDHE_ENABLED)
  2771. if (mbedtls_ssl_ciphersuite_uses_ecdhe(ciphersuite_info)) {
  2772. /*
  2773. * Ephemeral ECDH parameters:
  2774. *
  2775. * struct {
  2776. * ECParameters curve_params;
  2777. * ECPoint public;
  2778. * } ServerECDHParams;
  2779. */
  2780. const mbedtls_ecp_curve_info **curve = NULL;
  2781. const mbedtls_ecp_group_id *gid;
  2782. int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
  2783. size_t len = 0;
  2784. /* Match our preference list against the offered curves */
  2785. for (gid = ssl->conf->curve_list; *gid != MBEDTLS_ECP_DP_NONE; gid++) {
  2786. for (curve = ssl->handshake->curves; *curve != NULL; curve++) {
  2787. if ((*curve)->grp_id == *gid) {
  2788. goto curve_matching_done;
  2789. }
  2790. }
  2791. }
  2792. curve_matching_done:
  2793. if (curve == NULL || *curve == NULL) {
  2794. MBEDTLS_SSL_DEBUG_MSG(1, ("no matching curve for ECDHE"));
  2795. return MBEDTLS_ERR_SSL_NO_CIPHER_CHOSEN;
  2796. }
  2797. MBEDTLS_SSL_DEBUG_MSG(2, ("ECDHE curve: %s", (*curve)->name));
  2798. if ((ret = mbedtls_ecdh_setup(&ssl->handshake->ecdh_ctx,
  2799. (*curve)->grp_id)) != 0) {
  2800. MBEDTLS_SSL_DEBUG_RET(1, "mbedtls_ecp_group_load", ret);
  2801. return ret;
  2802. }
  2803. if ((ret = mbedtls_ecdh_make_params(
  2804. &ssl->handshake->ecdh_ctx, &len,
  2805. ssl->out_msg + ssl->out_msglen,
  2806. MBEDTLS_SSL_OUT_CONTENT_LEN - ssl->out_msglen,
  2807. ssl->conf->f_rng, ssl->conf->p_rng)) != 0) {
  2808. MBEDTLS_SSL_DEBUG_RET(1, "mbedtls_ecdh_make_params", ret);
  2809. return ret;
  2810. }
  2811. #if defined(MBEDTLS_KEY_EXCHANGE_WITH_SERVER_SIGNATURE_ENABLED)
  2812. dig_signed = ssl->out_msg + ssl->out_msglen;
  2813. #endif
  2814. ssl->out_msglen += len;
  2815. MBEDTLS_SSL_DEBUG_ECDH(3, &ssl->handshake->ecdh_ctx,
  2816. MBEDTLS_DEBUG_ECDH_Q);
  2817. }
  2818. #endif /* MBEDTLS_KEY_EXCHANGE_SOME_ECDHE_ENABLED */
  2819. /*
  2820. *
  2821. * Part 2: For key exchanges involving the server signing the
  2822. * exchange parameters, compute and add the signature here.
  2823. *
  2824. */
  2825. #if defined(MBEDTLS_KEY_EXCHANGE_WITH_SERVER_SIGNATURE_ENABLED)
  2826. if (mbedtls_ssl_ciphersuite_uses_server_signature(ciphersuite_info)) {
  2827. size_t dig_signed_len = ssl->out_msg + ssl->out_msglen - dig_signed;
  2828. size_t hashlen = 0;
  2829. #if defined(MBEDTLS_USE_PSA_CRYPTO)
  2830. unsigned char hash[PSA_HASH_MAX_SIZE];
  2831. #else
  2832. unsigned char hash[MBEDTLS_MD_MAX_SIZE];
  2833. #endif
  2834. int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
  2835. /*
  2836. * 2.1: Choose hash algorithm:
  2837. * A: For TLS 1.2, obey signature-hash-algorithm extension
  2838. * to choose appropriate hash.
  2839. * B: For SSL3, TLS1.0, TLS1.1 and ECDHE_ECDSA, use SHA1
  2840. * (RFC 4492, Sec. 5.4)
  2841. * C: Otherwise, use MD5 + SHA1 (RFC 4346, Sec. 7.4.3)
  2842. */
  2843. mbedtls_md_type_t md_alg;
  2844. #if defined(MBEDTLS_SSL_PROTO_TLS1_2)
  2845. mbedtls_pk_type_t sig_alg =
  2846. mbedtls_ssl_get_ciphersuite_sig_pk_alg(ciphersuite_info);
  2847. if (ssl->minor_ver == MBEDTLS_SSL_MINOR_VERSION_3) {
  2848. /* A: For TLS 1.2, obey signature-hash-algorithm extension
  2849. * (RFC 5246, Sec. 7.4.1.4.1). */
  2850. if (sig_alg == MBEDTLS_PK_NONE ||
  2851. (md_alg = mbedtls_ssl_sig_hash_set_find(&ssl->handshake->hash_algs,
  2852. sig_alg)) == MBEDTLS_MD_NONE) {
  2853. MBEDTLS_SSL_DEBUG_MSG(1, ("should never happen"));
  2854. /* (... because we choose a cipher suite
  2855. * only if there is a matching hash.) */
  2856. return MBEDTLS_ERR_SSL_INTERNAL_ERROR;
  2857. }
  2858. } else
  2859. #endif /* MBEDTLS_SSL_PROTO_TLS1_2 */
  2860. #if defined(MBEDTLS_SSL_PROTO_SSL3) || defined(MBEDTLS_SSL_PROTO_TLS1) || \
  2861. defined(MBEDTLS_SSL_PROTO_TLS1_1)
  2862. if (ciphersuite_info->key_exchange == MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA) {
  2863. /* B: Default hash SHA1 */
  2864. md_alg = MBEDTLS_MD_SHA1;
  2865. } else
  2866. #endif /* MBEDTLS_SSL_PROTO_SSL3 || MBEDTLS_SSL_PROTO_TLS1 || \
  2867. MBEDTLS_SSL_PROTO_TLS1_1 */
  2868. {
  2869. /* C: MD5 + SHA1 */
  2870. md_alg = MBEDTLS_MD_NONE;
  2871. }
  2872. MBEDTLS_SSL_DEBUG_MSG(3, ("pick hash algorithm %u for signing", (unsigned) md_alg));
  2873. /*
  2874. * 2.2: Compute the hash to be signed
  2875. */
  2876. #if defined(MBEDTLS_SSL_PROTO_SSL3) || defined(MBEDTLS_SSL_PROTO_TLS1) || \
  2877. defined(MBEDTLS_SSL_PROTO_TLS1_1)
  2878. if (md_alg == MBEDTLS_MD_NONE) {
  2879. hashlen = 36;
  2880. ret = mbedtls_ssl_get_key_exchange_md_ssl_tls(ssl, hash,
  2881. dig_signed,
  2882. dig_signed_len);
  2883. if (ret != 0) {
  2884. return ret;
  2885. }
  2886. } else
  2887. #endif /* MBEDTLS_SSL_PROTO_SSL3 || MBEDTLS_SSL_PROTO_TLS1 || \
  2888. MBEDTLS_SSL_PROTO_TLS1_1 */
  2889. #if defined(MBEDTLS_SSL_PROTO_TLS1) || defined(MBEDTLS_SSL_PROTO_TLS1_1) || \
  2890. defined(MBEDTLS_SSL_PROTO_TLS1_2)
  2891. if (md_alg != MBEDTLS_MD_NONE) {
  2892. ret = mbedtls_ssl_get_key_exchange_md_tls1_2(ssl, hash, &hashlen,
  2893. dig_signed,
  2894. dig_signed_len,
  2895. md_alg);
  2896. if (ret != 0) {
  2897. return ret;
  2898. }
  2899. } else
  2900. #endif /* MBEDTLS_SSL_PROTO_TLS1 || MBEDTLS_SSL_PROTO_TLS1_1 || \
  2901. MBEDTLS_SSL_PROTO_TLS1_2 */
  2902. {
  2903. MBEDTLS_SSL_DEBUG_MSG(1, ("should never happen"));
  2904. return MBEDTLS_ERR_SSL_INTERNAL_ERROR;
  2905. }
  2906. MBEDTLS_SSL_DEBUG_BUF(3, "parameters hash", hash, hashlen);
  2907. /*
  2908. * 2.3: Compute and add the signature
  2909. */
  2910. #if defined(MBEDTLS_SSL_PROTO_TLS1_2)
  2911. if (ssl->minor_ver == MBEDTLS_SSL_MINOR_VERSION_3) {
  2912. /*
  2913. * For TLS 1.2, we need to specify signature and hash algorithm
  2914. * explicitly through a prefix to the signature.
  2915. *
  2916. * struct {
  2917. * HashAlgorithm hash;
  2918. * SignatureAlgorithm signature;
  2919. * } SignatureAndHashAlgorithm;
  2920. *
  2921. * struct {
  2922. * SignatureAndHashAlgorithm algorithm;
  2923. * opaque signature<0..2^16-1>;
  2924. * } DigitallySigned;
  2925. *
  2926. */
  2927. ssl->out_msg[ssl->out_msglen++] =
  2928. mbedtls_ssl_hash_from_md_alg(md_alg);
  2929. ssl->out_msg[ssl->out_msglen++] =
  2930. mbedtls_ssl_sig_from_pk_alg(sig_alg);
  2931. }
  2932. #endif /* MBEDTLS_SSL_PROTO_TLS1_2 */
  2933. #if defined(MBEDTLS_SSL_ASYNC_PRIVATE)
  2934. if (ssl->conf->f_async_sign_start != NULL) {
  2935. ret = ssl->conf->f_async_sign_start(ssl,
  2936. mbedtls_ssl_own_cert(ssl),
  2937. md_alg, hash, hashlen);
  2938. switch (ret) {
  2939. case MBEDTLS_ERR_SSL_HW_ACCEL_FALLTHROUGH:
  2940. /* act as if f_async_sign was null */
  2941. break;
  2942. case 0:
  2943. ssl->handshake->async_in_progress = 1;
  2944. return ssl_resume_server_key_exchange(ssl, signature_len);
  2945. case MBEDTLS_ERR_SSL_ASYNC_IN_PROGRESS:
  2946. ssl->handshake->async_in_progress = 1;
  2947. return MBEDTLS_ERR_SSL_ASYNC_IN_PROGRESS;
  2948. default:
  2949. MBEDTLS_SSL_DEBUG_RET(1, "f_async_sign_start", ret);
  2950. return ret;
  2951. }
  2952. }
  2953. #endif /* MBEDTLS_SSL_ASYNC_PRIVATE */
  2954. if (mbedtls_ssl_own_key(ssl) == NULL) {
  2955. MBEDTLS_SSL_DEBUG_MSG(1, ("got no private key"));
  2956. return MBEDTLS_ERR_SSL_PRIVATE_KEY_REQUIRED;
  2957. }
  2958. /* Append the signature to ssl->out_msg, leaving 2 bytes for the
  2959. * signature length which will be added in ssl_write_server_key_exchange
  2960. * after the call to ssl_prepare_server_key_exchange.
  2961. * ssl_write_server_key_exchange also takes care of incrementing
  2962. * ssl->out_msglen. */
  2963. if ((ret = mbedtls_pk_sign(mbedtls_ssl_own_key(ssl),
  2964. md_alg, hash, hashlen,
  2965. ssl->out_msg + ssl->out_msglen + 2,
  2966. signature_len,
  2967. ssl->conf->f_rng,
  2968. ssl->conf->p_rng)) != 0) {
  2969. MBEDTLS_SSL_DEBUG_RET(1, "mbedtls_pk_sign", ret);
  2970. return ret;
  2971. }
  2972. }
  2973. #endif /* MBEDTLS_KEY_EXCHANGE_WITH_SERVER_SIGNATURE_ENABLED */
  2974. return 0;
  2975. }
  2976. /* Prepare the ServerKeyExchange message and send it. For ciphersuites
  2977. * that do not include a ServerKeyExchange message, do nothing. Either
  2978. * way, if successful, move on to the next step in the SSL state
  2979. * machine. */
  2980. MBEDTLS_CHECK_RETURN_CRITICAL
  2981. static int ssl_write_server_key_exchange(mbedtls_ssl_context *ssl)
  2982. {
  2983. int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
  2984. size_t signature_len = 0;
  2985. #if defined(MBEDTLS_KEY_EXCHANGE_SOME_NON_PFS_ENABLED)
  2986. const mbedtls_ssl_ciphersuite_t *ciphersuite_info =
  2987. ssl->handshake->ciphersuite_info;
  2988. #endif /* MBEDTLS_KEY_EXCHANGE_SOME_NON_PFS_ENABLED */
  2989. MBEDTLS_SSL_DEBUG_MSG(2, ("=> write server key exchange"));
  2990. #if defined(MBEDTLS_KEY_EXCHANGE_SOME_NON_PFS_ENABLED)
  2991. /* Extract static ECDH parameters and abort if ServerKeyExchange
  2992. * is not needed. */
  2993. if (mbedtls_ssl_ciphersuite_no_pfs(ciphersuite_info)) {
  2994. /* For suites involving ECDH, extract DH parameters
  2995. * from certificate at this point. */
  2996. #if defined(MBEDTLS_KEY_EXCHANGE_SOME_ECDH_ENABLED)
  2997. if (mbedtls_ssl_ciphersuite_uses_ecdh(ciphersuite_info)) {
  2998. ret = ssl_get_ecdh_params_from_cert(ssl);
  2999. if (ret != 0) {
  3000. MBEDTLS_SSL_DEBUG_RET(1, "ssl_get_ecdh_params_from_cert", ret);
  3001. return ret;
  3002. }
  3003. }
  3004. #endif /* MBEDTLS_KEY_EXCHANGE_SOME_ECDH_ENABLED */
  3005. /* Key exchanges not involving ephemeral keys don't use
  3006. * ServerKeyExchange, so end here. */
  3007. MBEDTLS_SSL_DEBUG_MSG(2, ("<= skip write server key exchange"));
  3008. ssl->state++;
  3009. return 0;
  3010. }
  3011. #endif /* MBEDTLS_KEY_EXCHANGE_SOME_NON_PFS_ENABLED */
  3012. #if defined(MBEDTLS_KEY_EXCHANGE_WITH_SERVER_SIGNATURE_ENABLED) && \
  3013. defined(MBEDTLS_SSL_ASYNC_PRIVATE)
  3014. /* If we have already prepared the message and there is an ongoing
  3015. * signature operation, resume signing. */
  3016. if (ssl->handshake->async_in_progress != 0) {
  3017. MBEDTLS_SSL_DEBUG_MSG(2, ("resuming signature operation"));
  3018. ret = ssl_resume_server_key_exchange(ssl, &signature_len);
  3019. } else
  3020. #endif /* defined(MBEDTLS_KEY_EXCHANGE_WITH_SERVER_SIGNATURE_ENABLED) &&
  3021. defined(MBEDTLS_SSL_ASYNC_PRIVATE) */
  3022. {
  3023. /* ServerKeyExchange is needed. Prepare the message. */
  3024. ret = ssl_prepare_server_key_exchange(ssl, &signature_len);
  3025. }
  3026. if (ret != 0) {
  3027. /* If we're starting to write a new message, set ssl->out_msglen
  3028. * to 0. But if we're resuming after an asynchronous message,
  3029. * out_msglen is the amount of data written so far and mst be
  3030. * preserved. */
  3031. if (ret == MBEDTLS_ERR_SSL_ASYNC_IN_PROGRESS) {
  3032. MBEDTLS_SSL_DEBUG_MSG(2, ("<= write server key exchange (pending)"));
  3033. } else {
  3034. ssl->out_msglen = 0;
  3035. }
  3036. return ret;
  3037. }
  3038. /* If there is a signature, write its length.
  3039. * ssl_prepare_server_key_exchange already wrote the signature
  3040. * itself at its proper place in the output buffer. */
  3041. #if defined(MBEDTLS_KEY_EXCHANGE_WITH_SERVER_SIGNATURE_ENABLED)
  3042. if (signature_len != 0) {
  3043. ssl->out_msg[ssl->out_msglen++] = MBEDTLS_BYTE_1(signature_len);
  3044. ssl->out_msg[ssl->out_msglen++] = MBEDTLS_BYTE_0(signature_len);
  3045. MBEDTLS_SSL_DEBUG_BUF(3, "my signature",
  3046. ssl->out_msg + ssl->out_msglen,
  3047. signature_len);
  3048. /* Skip over the already-written signature */
  3049. ssl->out_msglen += signature_len;
  3050. }
  3051. #endif /* MBEDTLS_KEY_EXCHANGE_WITH_SERVER_SIGNATURE_ENABLED */
  3052. /* Add header and send. */
  3053. ssl->out_msgtype = MBEDTLS_SSL_MSG_HANDSHAKE;
  3054. ssl->out_msg[0] = MBEDTLS_SSL_HS_SERVER_KEY_EXCHANGE;
  3055. ssl->state++;
  3056. if ((ret = mbedtls_ssl_write_handshake_msg(ssl)) != 0) {
  3057. MBEDTLS_SSL_DEBUG_RET(1, "mbedtls_ssl_write_handshake_msg", ret);
  3058. return ret;
  3059. }
  3060. MBEDTLS_SSL_DEBUG_MSG(2, ("<= write server key exchange"));
  3061. return 0;
  3062. }
  3063. MBEDTLS_CHECK_RETURN_CRITICAL
  3064. static int ssl_write_server_hello_done(mbedtls_ssl_context *ssl)
  3065. {
  3066. int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
  3067. MBEDTLS_SSL_DEBUG_MSG(2, ("=> write server hello done"));
  3068. ssl->out_msglen = 4;
  3069. ssl->out_msgtype = MBEDTLS_SSL_MSG_HANDSHAKE;
  3070. ssl->out_msg[0] = MBEDTLS_SSL_HS_SERVER_HELLO_DONE;
  3071. ssl->state++;
  3072. #if defined(MBEDTLS_SSL_PROTO_DTLS)
  3073. if (ssl->conf->transport == MBEDTLS_SSL_TRANSPORT_DATAGRAM) {
  3074. mbedtls_ssl_send_flight_completed(ssl);
  3075. }
  3076. #endif
  3077. if ((ret = mbedtls_ssl_write_handshake_msg(ssl)) != 0) {
  3078. MBEDTLS_SSL_DEBUG_RET(1, "mbedtls_ssl_write_handshake_msg", ret);
  3079. return ret;
  3080. }
  3081. #if defined(MBEDTLS_SSL_PROTO_DTLS)
  3082. if (ssl->conf->transport == MBEDTLS_SSL_TRANSPORT_DATAGRAM &&
  3083. (ret = mbedtls_ssl_flight_transmit(ssl)) != 0) {
  3084. MBEDTLS_SSL_DEBUG_RET(1, "mbedtls_ssl_flight_transmit", ret);
  3085. return ret;
  3086. }
  3087. #endif /* MBEDTLS_SSL_PROTO_DTLS */
  3088. MBEDTLS_SSL_DEBUG_MSG(2, ("<= write server hello done"));
  3089. return 0;
  3090. }
  3091. #if defined(MBEDTLS_KEY_EXCHANGE_DHE_RSA_ENABLED) || \
  3092. defined(MBEDTLS_KEY_EXCHANGE_DHE_PSK_ENABLED)
  3093. MBEDTLS_CHECK_RETURN_CRITICAL
  3094. static int ssl_parse_client_dh_public(mbedtls_ssl_context *ssl, unsigned char **p,
  3095. const unsigned char *end)
  3096. {
  3097. int ret = MBEDTLS_ERR_SSL_FEATURE_UNAVAILABLE;
  3098. size_t n;
  3099. /*
  3100. * Receive G^Y mod P, premaster = (G^Y)^X mod P
  3101. */
  3102. if (*p + 2 > end) {
  3103. MBEDTLS_SSL_DEBUG_MSG(1, ("bad client key exchange message"));
  3104. return MBEDTLS_ERR_SSL_BAD_HS_CLIENT_KEY_EXCHANGE;
  3105. }
  3106. n = ((*p)[0] << 8) | (*p)[1];
  3107. *p += 2;
  3108. if (*p + n > end) {
  3109. MBEDTLS_SSL_DEBUG_MSG(1, ("bad client key exchange message"));
  3110. return MBEDTLS_ERR_SSL_BAD_HS_CLIENT_KEY_EXCHANGE;
  3111. }
  3112. if ((ret = mbedtls_dhm_read_public(&ssl->handshake->dhm_ctx, *p, n)) != 0) {
  3113. MBEDTLS_SSL_DEBUG_RET(1, "mbedtls_dhm_read_public", ret);
  3114. return MBEDTLS_ERR_SSL_BAD_HS_CLIENT_KEY_EXCHANGE_RP;
  3115. }
  3116. *p += n;
  3117. MBEDTLS_SSL_DEBUG_MPI(3, "DHM: GY", &ssl->handshake->dhm_ctx.GY);
  3118. return ret;
  3119. }
  3120. #endif /* MBEDTLS_KEY_EXCHANGE_DHE_RSA_ENABLED ||
  3121. MBEDTLS_KEY_EXCHANGE_DHE_PSK_ENABLED */
  3122. #if defined(MBEDTLS_KEY_EXCHANGE_RSA_ENABLED) || \
  3123. defined(MBEDTLS_KEY_EXCHANGE_RSA_PSK_ENABLED)
  3124. #if defined(MBEDTLS_SSL_ASYNC_PRIVATE)
  3125. MBEDTLS_CHECK_RETURN_CRITICAL
  3126. static int ssl_resume_decrypt_pms(mbedtls_ssl_context *ssl,
  3127. unsigned char *peer_pms,
  3128. size_t *peer_pmslen,
  3129. size_t peer_pmssize)
  3130. {
  3131. int ret = ssl->conf->f_async_resume(ssl,
  3132. peer_pms, peer_pmslen, peer_pmssize);
  3133. if (ret != MBEDTLS_ERR_SSL_ASYNC_IN_PROGRESS) {
  3134. ssl->handshake->async_in_progress = 0;
  3135. mbedtls_ssl_set_async_operation_data(ssl, NULL);
  3136. }
  3137. MBEDTLS_SSL_DEBUG_RET(2, "ssl_decrypt_encrypted_pms", ret);
  3138. return ret;
  3139. }
  3140. #endif /* MBEDTLS_SSL_ASYNC_PRIVATE */
  3141. MBEDTLS_CHECK_RETURN_CRITICAL
  3142. static int ssl_decrypt_encrypted_pms(mbedtls_ssl_context *ssl,
  3143. const unsigned char *p,
  3144. const unsigned char *end,
  3145. unsigned char *peer_pms,
  3146. size_t *peer_pmslen,
  3147. size_t peer_pmssize)
  3148. {
  3149. int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
  3150. mbedtls_x509_crt *own_cert = mbedtls_ssl_own_cert(ssl);
  3151. if (own_cert == NULL) {
  3152. MBEDTLS_SSL_DEBUG_MSG(1, ("got no local certificate"));
  3153. return MBEDTLS_ERR_SSL_NO_CLIENT_CERTIFICATE;
  3154. }
  3155. mbedtls_pk_context *public_key = &own_cert->pk;
  3156. mbedtls_pk_context *private_key = mbedtls_ssl_own_key(ssl);
  3157. size_t len = mbedtls_pk_get_len(public_key);
  3158. #if defined(MBEDTLS_SSL_ASYNC_PRIVATE)
  3159. /* If we have already started decoding the message and there is an ongoing
  3160. * decryption operation, resume signing. */
  3161. if (ssl->handshake->async_in_progress != 0) {
  3162. MBEDTLS_SSL_DEBUG_MSG(2, ("resuming decryption operation"));
  3163. return ssl_resume_decrypt_pms(ssl,
  3164. peer_pms, peer_pmslen, peer_pmssize);
  3165. }
  3166. #endif /* MBEDTLS_SSL_ASYNC_PRIVATE */
  3167. /*
  3168. * Prepare to decrypt the premaster using own private RSA key
  3169. */
  3170. #if defined(MBEDTLS_SSL_PROTO_TLS1) || defined(MBEDTLS_SSL_PROTO_TLS1_1) || \
  3171. defined(MBEDTLS_SSL_PROTO_TLS1_2)
  3172. if (ssl->minor_ver != MBEDTLS_SSL_MINOR_VERSION_0) {
  3173. if (p + 2 > end) {
  3174. MBEDTLS_SSL_DEBUG_MSG(1, ("bad client key exchange message"));
  3175. return MBEDTLS_ERR_SSL_BAD_HS_CLIENT_KEY_EXCHANGE;
  3176. }
  3177. if (*p++ != MBEDTLS_BYTE_1(len) ||
  3178. *p++ != MBEDTLS_BYTE_0(len)) {
  3179. MBEDTLS_SSL_DEBUG_MSG(1, ("bad client key exchange message"));
  3180. return MBEDTLS_ERR_SSL_BAD_HS_CLIENT_KEY_EXCHANGE;
  3181. }
  3182. }
  3183. #endif
  3184. if (p + len != end) {
  3185. MBEDTLS_SSL_DEBUG_MSG(1, ("bad client key exchange message"));
  3186. return MBEDTLS_ERR_SSL_BAD_HS_CLIENT_KEY_EXCHANGE;
  3187. }
  3188. /*
  3189. * Decrypt the premaster secret
  3190. */
  3191. #if defined(MBEDTLS_SSL_ASYNC_PRIVATE)
  3192. if (ssl->conf->f_async_decrypt_start != NULL) {
  3193. ret = ssl->conf->f_async_decrypt_start(ssl,
  3194. mbedtls_ssl_own_cert(ssl),
  3195. p, len);
  3196. switch (ret) {
  3197. case MBEDTLS_ERR_SSL_HW_ACCEL_FALLTHROUGH:
  3198. /* act as if f_async_decrypt_start was null */
  3199. break;
  3200. case 0:
  3201. ssl->handshake->async_in_progress = 1;
  3202. return ssl_resume_decrypt_pms(ssl,
  3203. peer_pms,
  3204. peer_pmslen,
  3205. peer_pmssize);
  3206. case MBEDTLS_ERR_SSL_ASYNC_IN_PROGRESS:
  3207. ssl->handshake->async_in_progress = 1;
  3208. return MBEDTLS_ERR_SSL_ASYNC_IN_PROGRESS;
  3209. default:
  3210. MBEDTLS_SSL_DEBUG_RET(1, "f_async_decrypt_start", ret);
  3211. return ret;
  3212. }
  3213. }
  3214. #endif /* MBEDTLS_SSL_ASYNC_PRIVATE */
  3215. if (!mbedtls_pk_can_do(private_key, MBEDTLS_PK_RSA)) {
  3216. MBEDTLS_SSL_DEBUG_MSG(1, ("got no RSA private key"));
  3217. return MBEDTLS_ERR_SSL_PRIVATE_KEY_REQUIRED;
  3218. }
  3219. ret = mbedtls_pk_decrypt(private_key, p, len,
  3220. peer_pms, peer_pmslen, peer_pmssize,
  3221. ssl->conf->f_rng, ssl->conf->p_rng);
  3222. return ret;
  3223. }
  3224. MBEDTLS_CHECK_RETURN_CRITICAL
  3225. static int ssl_parse_encrypted_pms(mbedtls_ssl_context *ssl,
  3226. const unsigned char *p,
  3227. const unsigned char *end,
  3228. size_t pms_offset)
  3229. {
  3230. int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
  3231. unsigned char *pms = ssl->handshake->premaster + pms_offset;
  3232. unsigned char ver[2];
  3233. unsigned char fake_pms[48], peer_pms[48];
  3234. unsigned char mask;
  3235. size_t i, peer_pmslen;
  3236. unsigned int diff;
  3237. /* In case of a failure in decryption, the decryption may write less than
  3238. * 2 bytes of output, but we always read the first two bytes. It doesn't
  3239. * matter in the end because diff will be nonzero in that case due to
  3240. * ret being nonzero, and we only care whether diff is 0.
  3241. * But do initialize peer_pms and peer_pmslen for robustness anyway. This
  3242. * also makes memory analyzers happy (don't access uninitialized memory,
  3243. * even if it's an unsigned char). */
  3244. peer_pms[0] = peer_pms[1] = ~0;
  3245. peer_pmslen = 0;
  3246. ret = ssl_decrypt_encrypted_pms(ssl, p, end,
  3247. peer_pms,
  3248. &peer_pmslen,
  3249. sizeof(peer_pms));
  3250. #if defined(MBEDTLS_SSL_ASYNC_PRIVATE)
  3251. if (ret == MBEDTLS_ERR_SSL_ASYNC_IN_PROGRESS) {
  3252. return ret;
  3253. }
  3254. #endif /* MBEDTLS_SSL_ASYNC_PRIVATE */
  3255. mbedtls_ssl_write_version(ssl->handshake->max_major_ver,
  3256. ssl->handshake->max_minor_ver,
  3257. ssl->conf->transport, ver);
  3258. /* Avoid data-dependent branches while checking for invalid
  3259. * padding, to protect against timing-based Bleichenbacher-type
  3260. * attacks. */
  3261. diff = (unsigned int) ret;
  3262. diff |= peer_pmslen ^ 48;
  3263. diff |= peer_pms[0] ^ ver[0];
  3264. diff |= peer_pms[1] ^ ver[1];
  3265. /* mask = diff ? 0xff : 0x00 using bit operations to avoid branches */
  3266. mask = mbedtls_ct_uint_mask(diff);
  3267. /*
  3268. * Protection against Bleichenbacher's attack: invalid PKCS#1 v1.5 padding
  3269. * must not cause the connection to end immediately; instead, send a
  3270. * bad_record_mac later in the handshake.
  3271. * To protect against timing-based variants of the attack, we must
  3272. * not have any branch that depends on whether the decryption was
  3273. * successful. In particular, always generate the fake premaster secret,
  3274. * regardless of whether it will ultimately influence the output or not.
  3275. */
  3276. ret = ssl->conf->f_rng(ssl->conf->p_rng, fake_pms, sizeof(fake_pms));
  3277. if (ret != 0) {
  3278. /* It's ok to abort on an RNG failure, since this does not reveal
  3279. * anything about the RSA decryption. */
  3280. return ret;
  3281. }
  3282. #if defined(MBEDTLS_SSL_DEBUG_ALL)
  3283. if (diff != 0) {
  3284. MBEDTLS_SSL_DEBUG_MSG(1, ("bad client key exchange message"));
  3285. }
  3286. #endif
  3287. if (sizeof(ssl->handshake->premaster) < pms_offset ||
  3288. sizeof(ssl->handshake->premaster) - pms_offset < 48) {
  3289. MBEDTLS_SSL_DEBUG_MSG(1, ("should never happen"));
  3290. return MBEDTLS_ERR_SSL_INTERNAL_ERROR;
  3291. }
  3292. ssl->handshake->pmslen = 48;
  3293. /* Set pms to either the true or the fake PMS, without
  3294. * data-dependent branches. */
  3295. for (i = 0; i < ssl->handshake->pmslen; i++) {
  3296. pms[i] = (mask & fake_pms[i]) | ((~mask) & peer_pms[i]);
  3297. }
  3298. return 0;
  3299. }
  3300. #endif /* MBEDTLS_KEY_EXCHANGE_RSA_ENABLED ||
  3301. MBEDTLS_KEY_EXCHANGE_RSA_PSK_ENABLED */
  3302. #if defined(MBEDTLS_KEY_EXCHANGE_SOME_PSK_ENABLED)
  3303. MBEDTLS_CHECK_RETURN_CRITICAL
  3304. static int ssl_parse_client_psk_identity(mbedtls_ssl_context *ssl, unsigned char **p,
  3305. const unsigned char *end)
  3306. {
  3307. int ret = 0;
  3308. uint16_t n;
  3309. if (ssl_conf_has_psk_or_cb(ssl->conf) == 0) {
  3310. MBEDTLS_SSL_DEBUG_MSG(1, ("got no pre-shared key"));
  3311. return MBEDTLS_ERR_SSL_PRIVATE_KEY_REQUIRED;
  3312. }
  3313. /*
  3314. * Receive client pre-shared key identity name
  3315. */
  3316. if (end - *p < 2) {
  3317. MBEDTLS_SSL_DEBUG_MSG(1, ("bad client key exchange message"));
  3318. return MBEDTLS_ERR_SSL_BAD_HS_CLIENT_KEY_EXCHANGE;
  3319. }
  3320. n = ((*p)[0] << 8) | (*p)[1];
  3321. *p += 2;
  3322. if (n == 0 || n > end - *p) {
  3323. MBEDTLS_SSL_DEBUG_MSG(1, ("bad client key exchange message"));
  3324. return MBEDTLS_ERR_SSL_BAD_HS_CLIENT_KEY_EXCHANGE;
  3325. }
  3326. if (ssl->conf->f_psk != NULL) {
  3327. if (ssl->conf->f_psk(ssl->conf->p_psk, ssl, *p, n) != 0) {
  3328. ret = MBEDTLS_ERR_SSL_UNKNOWN_IDENTITY;
  3329. }
  3330. } else {
  3331. /* Identity is not a big secret since clients send it in the clear,
  3332. * but treat it carefully anyway, just in case */
  3333. if (n != ssl->conf->psk_identity_len ||
  3334. mbedtls_ct_memcmp(ssl->conf->psk_identity, *p, n) != 0) {
  3335. ret = MBEDTLS_ERR_SSL_UNKNOWN_IDENTITY;
  3336. }
  3337. }
  3338. if (ret == MBEDTLS_ERR_SSL_UNKNOWN_IDENTITY) {
  3339. MBEDTLS_SSL_DEBUG_BUF(3, "Unknown PSK identity", *p, n);
  3340. mbedtls_ssl_send_alert_message(ssl, MBEDTLS_SSL_ALERT_LEVEL_FATAL,
  3341. MBEDTLS_SSL_ALERT_MSG_UNKNOWN_PSK_IDENTITY);
  3342. return MBEDTLS_ERR_SSL_UNKNOWN_IDENTITY;
  3343. }
  3344. *p += n;
  3345. return 0;
  3346. }
  3347. #endif /* MBEDTLS_KEY_EXCHANGE_SOME_PSK_ENABLED */
  3348. MBEDTLS_CHECK_RETURN_CRITICAL
  3349. static int ssl_parse_client_key_exchange(mbedtls_ssl_context *ssl)
  3350. {
  3351. int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
  3352. const mbedtls_ssl_ciphersuite_t *ciphersuite_info;
  3353. unsigned char *p, *end;
  3354. ciphersuite_info = ssl->handshake->ciphersuite_info;
  3355. MBEDTLS_SSL_DEBUG_MSG(2, ("=> parse client key exchange"));
  3356. #if defined(MBEDTLS_SSL_ASYNC_PRIVATE) && \
  3357. (defined(MBEDTLS_KEY_EXCHANGE_RSA_ENABLED) || \
  3358. defined(MBEDTLS_KEY_EXCHANGE_RSA_PSK_ENABLED))
  3359. if ((ciphersuite_info->key_exchange == MBEDTLS_KEY_EXCHANGE_RSA_PSK ||
  3360. ciphersuite_info->key_exchange == MBEDTLS_KEY_EXCHANGE_RSA) &&
  3361. (ssl->handshake->async_in_progress != 0)) {
  3362. /* We've already read a record and there is an asynchronous
  3363. * operation in progress to decrypt it. So skip reading the
  3364. * record. */
  3365. MBEDTLS_SSL_DEBUG_MSG(3, ("will resume decryption of previously-read record"));
  3366. } else
  3367. #endif
  3368. if ((ret = mbedtls_ssl_read_record(ssl, 1)) != 0) {
  3369. MBEDTLS_SSL_DEBUG_RET(1, "mbedtls_ssl_read_record", ret);
  3370. return ret;
  3371. }
  3372. p = ssl->in_msg + mbedtls_ssl_hs_hdr_len(ssl);
  3373. end = ssl->in_msg + ssl->in_hslen;
  3374. if (ssl->in_msgtype != MBEDTLS_SSL_MSG_HANDSHAKE) {
  3375. MBEDTLS_SSL_DEBUG_MSG(1, ("bad client key exchange message"));
  3376. return MBEDTLS_ERR_SSL_BAD_HS_CLIENT_KEY_EXCHANGE;
  3377. }
  3378. if (ssl->in_msg[0] != MBEDTLS_SSL_HS_CLIENT_KEY_EXCHANGE) {
  3379. MBEDTLS_SSL_DEBUG_MSG(1, ("bad client key exchange message"));
  3380. return MBEDTLS_ERR_SSL_BAD_HS_CLIENT_KEY_EXCHANGE;
  3381. }
  3382. #if defined(MBEDTLS_KEY_EXCHANGE_DHE_RSA_ENABLED)
  3383. if (ciphersuite_info->key_exchange == MBEDTLS_KEY_EXCHANGE_DHE_RSA) {
  3384. if ((ret = ssl_parse_client_dh_public(ssl, &p, end)) != 0) {
  3385. MBEDTLS_SSL_DEBUG_RET(1, ("ssl_parse_client_dh_public"), ret);
  3386. return ret;
  3387. }
  3388. if (p != end) {
  3389. MBEDTLS_SSL_DEBUG_MSG(1, ("bad client key exchange"));
  3390. return MBEDTLS_ERR_SSL_BAD_HS_CLIENT_KEY_EXCHANGE;
  3391. }
  3392. if ((ret = mbedtls_dhm_calc_secret(&ssl->handshake->dhm_ctx,
  3393. ssl->handshake->premaster,
  3394. MBEDTLS_PREMASTER_SIZE,
  3395. &ssl->handshake->pmslen,
  3396. ssl->conf->f_rng, ssl->conf->p_rng)) != 0) {
  3397. MBEDTLS_SSL_DEBUG_RET(1, "mbedtls_dhm_calc_secret", ret);
  3398. return MBEDTLS_ERR_SSL_BAD_HS_CLIENT_KEY_EXCHANGE_CS;
  3399. }
  3400. MBEDTLS_SSL_DEBUG_MPI(3, "DHM: K ", &ssl->handshake->dhm_ctx.K);
  3401. } else
  3402. #endif /* MBEDTLS_KEY_EXCHANGE_DHE_RSA_ENABLED */
  3403. #if defined(MBEDTLS_KEY_EXCHANGE_ECDHE_RSA_ENABLED) || \
  3404. defined(MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED) || \
  3405. defined(MBEDTLS_KEY_EXCHANGE_ECDH_RSA_ENABLED) || \
  3406. defined(MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA_ENABLED)
  3407. if (ciphersuite_info->key_exchange == MBEDTLS_KEY_EXCHANGE_ECDHE_RSA ||
  3408. ciphersuite_info->key_exchange == MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA ||
  3409. ciphersuite_info->key_exchange == MBEDTLS_KEY_EXCHANGE_ECDH_RSA ||
  3410. ciphersuite_info->key_exchange == MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA) {
  3411. if ((ret = mbedtls_ecdh_read_public(&ssl->handshake->ecdh_ctx,
  3412. p, end - p)) != 0) {
  3413. MBEDTLS_SSL_DEBUG_RET(1, "mbedtls_ecdh_read_public", ret);
  3414. return MBEDTLS_ERR_SSL_BAD_HS_CLIENT_KEY_EXCHANGE_RP;
  3415. }
  3416. MBEDTLS_SSL_DEBUG_ECDH(3, &ssl->handshake->ecdh_ctx,
  3417. MBEDTLS_DEBUG_ECDH_QP);
  3418. if ((ret = mbedtls_ecdh_calc_secret(&ssl->handshake->ecdh_ctx,
  3419. &ssl->handshake->pmslen,
  3420. ssl->handshake->premaster,
  3421. MBEDTLS_MPI_MAX_SIZE,
  3422. ssl->conf->f_rng, ssl->conf->p_rng)) != 0) {
  3423. MBEDTLS_SSL_DEBUG_RET(1, "mbedtls_ecdh_calc_secret", ret);
  3424. return MBEDTLS_ERR_SSL_BAD_HS_CLIENT_KEY_EXCHANGE_CS;
  3425. }
  3426. MBEDTLS_SSL_DEBUG_ECDH(3, &ssl->handshake->ecdh_ctx,
  3427. MBEDTLS_DEBUG_ECDH_Z);
  3428. } else
  3429. #endif /* MBEDTLS_KEY_EXCHANGE_ECDHE_RSA_ENABLED ||
  3430. MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED ||
  3431. MBEDTLS_KEY_EXCHANGE_ECDH_RSA_ENABLED ||
  3432. MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA_ENABLED */
  3433. #if defined(MBEDTLS_KEY_EXCHANGE_PSK_ENABLED)
  3434. if (ciphersuite_info->key_exchange == MBEDTLS_KEY_EXCHANGE_PSK) {
  3435. if ((ret = ssl_parse_client_psk_identity(ssl, &p, end)) != 0) {
  3436. MBEDTLS_SSL_DEBUG_RET(1, ("ssl_parse_client_psk_identity"), ret);
  3437. return ret;
  3438. }
  3439. if (p != end) {
  3440. MBEDTLS_SSL_DEBUG_MSG(1, ("bad client key exchange"));
  3441. return MBEDTLS_ERR_SSL_BAD_HS_CLIENT_KEY_EXCHANGE;
  3442. }
  3443. #if defined(MBEDTLS_USE_PSA_CRYPTO)
  3444. /* For opaque PSKs, we perform the PSK-to-MS derivation automatically
  3445. * and skip the intermediate PMS. */
  3446. if (ssl_use_opaque_psk(ssl) == 1) {
  3447. MBEDTLS_SSL_DEBUG_MSG(1, ("skip PMS generation for opaque PSK"));
  3448. } else
  3449. #endif /* MBEDTLS_USE_PSA_CRYPTO */
  3450. if ((ret = mbedtls_ssl_psk_derive_premaster(ssl,
  3451. ciphersuite_info->key_exchange)) != 0) {
  3452. MBEDTLS_SSL_DEBUG_RET(1, "mbedtls_ssl_psk_derive_premaster", ret);
  3453. return ret;
  3454. }
  3455. } else
  3456. #endif /* MBEDTLS_KEY_EXCHANGE_PSK_ENABLED */
  3457. #if defined(MBEDTLS_KEY_EXCHANGE_RSA_PSK_ENABLED)
  3458. if (ciphersuite_info->key_exchange == MBEDTLS_KEY_EXCHANGE_RSA_PSK) {
  3459. #if defined(MBEDTLS_SSL_ASYNC_PRIVATE)
  3460. if (ssl->handshake->async_in_progress != 0) {
  3461. /* There is an asynchronous operation in progress to
  3462. * decrypt the encrypted premaster secret, so skip
  3463. * directly to resuming this operation. */
  3464. MBEDTLS_SSL_DEBUG_MSG(3, ("PSK identity already parsed"));
  3465. /* Update p to skip the PSK identity. ssl_parse_encrypted_pms
  3466. * won't actually use it, but maintain p anyway for robustness. */
  3467. p += ssl->conf->psk_identity_len + 2;
  3468. } else
  3469. #endif /* MBEDTLS_SSL_ASYNC_PRIVATE */
  3470. if ((ret = ssl_parse_client_psk_identity(ssl, &p, end)) != 0) {
  3471. MBEDTLS_SSL_DEBUG_RET(1, ("ssl_parse_client_psk_identity"), ret);
  3472. return ret;
  3473. }
  3474. #if defined(MBEDTLS_USE_PSA_CRYPTO)
  3475. /* Opaque PSKs are currently only supported for PSK-only. */
  3476. if (ssl_use_opaque_psk(ssl) == 1) {
  3477. MBEDTLS_SSL_DEBUG_MSG(1, ("opaque PSK not supported with RSA-PSK"));
  3478. return MBEDTLS_ERR_SSL_FEATURE_UNAVAILABLE;
  3479. }
  3480. #endif
  3481. if ((ret = ssl_parse_encrypted_pms(ssl, p, end, 2)) != 0) {
  3482. MBEDTLS_SSL_DEBUG_RET(1, ("ssl_parse_encrypted_pms"), ret);
  3483. return ret;
  3484. }
  3485. if ((ret = mbedtls_ssl_psk_derive_premaster(ssl,
  3486. ciphersuite_info->key_exchange)) != 0) {
  3487. MBEDTLS_SSL_DEBUG_RET(1, "mbedtls_ssl_psk_derive_premaster", ret);
  3488. return ret;
  3489. }
  3490. } else
  3491. #endif /* MBEDTLS_KEY_EXCHANGE_RSA_PSK_ENABLED */
  3492. #if defined(MBEDTLS_KEY_EXCHANGE_DHE_PSK_ENABLED)
  3493. if (ciphersuite_info->key_exchange == MBEDTLS_KEY_EXCHANGE_DHE_PSK) {
  3494. if ((ret = ssl_parse_client_psk_identity(ssl, &p, end)) != 0) {
  3495. MBEDTLS_SSL_DEBUG_RET(1, ("ssl_parse_client_psk_identity"), ret);
  3496. return ret;
  3497. }
  3498. if ((ret = ssl_parse_client_dh_public(ssl, &p, end)) != 0) {
  3499. MBEDTLS_SSL_DEBUG_RET(1, ("ssl_parse_client_dh_public"), ret);
  3500. return ret;
  3501. }
  3502. #if defined(MBEDTLS_USE_PSA_CRYPTO)
  3503. /* Opaque PSKs are currently only supported for PSK-only. */
  3504. if (ssl_use_opaque_psk(ssl) == 1) {
  3505. MBEDTLS_SSL_DEBUG_MSG(1, ("opaque PSK not supported with DHE-PSK"));
  3506. return MBEDTLS_ERR_SSL_FEATURE_UNAVAILABLE;
  3507. }
  3508. #endif
  3509. if (p != end) {
  3510. MBEDTLS_SSL_DEBUG_MSG(1, ("bad client key exchange"));
  3511. return MBEDTLS_ERR_SSL_BAD_HS_CLIENT_KEY_EXCHANGE;
  3512. }
  3513. if ((ret = mbedtls_ssl_psk_derive_premaster(ssl,
  3514. ciphersuite_info->key_exchange)) != 0) {
  3515. MBEDTLS_SSL_DEBUG_RET(1, "mbedtls_ssl_psk_derive_premaster", ret);
  3516. return ret;
  3517. }
  3518. } else
  3519. #endif /* MBEDTLS_KEY_EXCHANGE_DHE_PSK_ENABLED */
  3520. #if defined(MBEDTLS_KEY_EXCHANGE_ECDHE_PSK_ENABLED)
  3521. if (ciphersuite_info->key_exchange == MBEDTLS_KEY_EXCHANGE_ECDHE_PSK) {
  3522. if ((ret = ssl_parse_client_psk_identity(ssl, &p, end)) != 0) {
  3523. MBEDTLS_SSL_DEBUG_RET(1, ("ssl_parse_client_psk_identity"), ret);
  3524. return ret;
  3525. }
  3526. if ((ret = mbedtls_ecdh_read_public(&ssl->handshake->ecdh_ctx,
  3527. p, end - p)) != 0) {
  3528. MBEDTLS_SSL_DEBUG_RET(1, "mbedtls_ecdh_read_public", ret);
  3529. return MBEDTLS_ERR_SSL_BAD_HS_CLIENT_KEY_EXCHANGE_RP;
  3530. }
  3531. #if defined(MBEDTLS_USE_PSA_CRYPTO)
  3532. /* Opaque PSKs are currently only supported for PSK-only. */
  3533. if (ssl_use_opaque_psk(ssl) == 1) {
  3534. MBEDTLS_SSL_DEBUG_MSG(1, ("opaque PSK not supported with ECDHE-PSK"));
  3535. return MBEDTLS_ERR_SSL_FEATURE_UNAVAILABLE;
  3536. }
  3537. #endif
  3538. MBEDTLS_SSL_DEBUG_ECDH(3, &ssl->handshake->ecdh_ctx,
  3539. MBEDTLS_DEBUG_ECDH_QP);
  3540. if ((ret = mbedtls_ssl_psk_derive_premaster(ssl,
  3541. ciphersuite_info->key_exchange)) != 0) {
  3542. MBEDTLS_SSL_DEBUG_RET(1, "mbedtls_ssl_psk_derive_premaster", ret);
  3543. return ret;
  3544. }
  3545. } else
  3546. #endif /* MBEDTLS_KEY_EXCHANGE_ECDHE_PSK_ENABLED */
  3547. #if defined(MBEDTLS_KEY_EXCHANGE_RSA_ENABLED)
  3548. if (ciphersuite_info->key_exchange == MBEDTLS_KEY_EXCHANGE_RSA) {
  3549. if ((ret = ssl_parse_encrypted_pms(ssl, p, end, 0)) != 0) {
  3550. MBEDTLS_SSL_DEBUG_RET(1, ("ssl_parse_parse_encrypted_pms_secret"), ret);
  3551. return ret;
  3552. }
  3553. } else
  3554. #endif /* MBEDTLS_KEY_EXCHANGE_RSA_ENABLED */
  3555. #if defined(MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED)
  3556. if (ciphersuite_info->key_exchange == MBEDTLS_KEY_EXCHANGE_ECJPAKE) {
  3557. ret = mbedtls_ecjpake_read_round_two(&ssl->handshake->ecjpake_ctx,
  3558. p, end - p);
  3559. if (ret != 0) {
  3560. MBEDTLS_SSL_DEBUG_RET(1, "mbedtls_ecjpake_read_round_two", ret);
  3561. return MBEDTLS_ERR_SSL_BAD_HS_SERVER_KEY_EXCHANGE;
  3562. }
  3563. ret = mbedtls_ecjpake_derive_secret(&ssl->handshake->ecjpake_ctx,
  3564. ssl->handshake->premaster, 32, &ssl->handshake->pmslen,
  3565. ssl->conf->f_rng, ssl->conf->p_rng);
  3566. if (ret != 0) {
  3567. MBEDTLS_SSL_DEBUG_RET(1, "mbedtls_ecjpake_derive_secret", ret);
  3568. return ret;
  3569. }
  3570. } else
  3571. #endif /* MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED */
  3572. {
  3573. MBEDTLS_SSL_DEBUG_MSG(1, ("should never happen"));
  3574. return MBEDTLS_ERR_SSL_INTERNAL_ERROR;
  3575. }
  3576. if ((ret = mbedtls_ssl_derive_keys(ssl)) != 0) {
  3577. MBEDTLS_SSL_DEBUG_RET(1, "mbedtls_ssl_derive_keys", ret);
  3578. return ret;
  3579. }
  3580. ssl->state++;
  3581. MBEDTLS_SSL_DEBUG_MSG(2, ("<= parse client key exchange"));
  3582. return 0;
  3583. }
  3584. #if !defined(MBEDTLS_KEY_EXCHANGE_CERT_REQ_ALLOWED_ENABLED)
  3585. MBEDTLS_CHECK_RETURN_CRITICAL
  3586. static int ssl_parse_certificate_verify(mbedtls_ssl_context *ssl)
  3587. {
  3588. const mbedtls_ssl_ciphersuite_t *ciphersuite_info =
  3589. ssl->handshake->ciphersuite_info;
  3590. MBEDTLS_SSL_DEBUG_MSG(2, ("=> parse certificate verify"));
  3591. if (!mbedtls_ssl_ciphersuite_cert_req_allowed(ciphersuite_info)) {
  3592. MBEDTLS_SSL_DEBUG_MSG(2, ("<= skip parse certificate verify"));
  3593. ssl->state++;
  3594. return 0;
  3595. }
  3596. MBEDTLS_SSL_DEBUG_MSG(1, ("should never happen"));
  3597. return MBEDTLS_ERR_SSL_INTERNAL_ERROR;
  3598. }
  3599. #else /* !MBEDTLS_KEY_EXCHANGE_CERT_REQ_ALLOWED_ENABLED */
  3600. MBEDTLS_CHECK_RETURN_CRITICAL
  3601. static int ssl_parse_certificate_verify(mbedtls_ssl_context *ssl)
  3602. {
  3603. int ret = MBEDTLS_ERR_SSL_FEATURE_UNAVAILABLE;
  3604. size_t i, sig_len;
  3605. unsigned char hash[48];
  3606. unsigned char *hash_start = hash;
  3607. size_t hashlen;
  3608. #if defined(MBEDTLS_SSL_PROTO_TLS1_2)
  3609. mbedtls_pk_type_t pk_alg;
  3610. #endif
  3611. mbedtls_md_type_t md_alg;
  3612. const mbedtls_ssl_ciphersuite_t *ciphersuite_info =
  3613. ssl->handshake->ciphersuite_info;
  3614. mbedtls_pk_context *peer_pk;
  3615. MBEDTLS_SSL_DEBUG_MSG(2, ("=> parse certificate verify"));
  3616. if (!mbedtls_ssl_ciphersuite_cert_req_allowed(ciphersuite_info)) {
  3617. MBEDTLS_SSL_DEBUG_MSG(2, ("<= skip parse certificate verify"));
  3618. ssl->state++;
  3619. return 0;
  3620. }
  3621. #if defined(MBEDTLS_SSL_KEEP_PEER_CERTIFICATE)
  3622. if (ssl->session_negotiate->peer_cert == NULL) {
  3623. MBEDTLS_SSL_DEBUG_MSG(2, ("<= skip parse certificate verify"));
  3624. ssl->state++;
  3625. return 0;
  3626. }
  3627. #else /* MBEDTLS_SSL_KEEP_PEER_CERTIFICATE */
  3628. if (ssl->session_negotiate->peer_cert_digest == NULL) {
  3629. MBEDTLS_SSL_DEBUG_MSG(2, ("<= skip parse certificate verify"));
  3630. ssl->state++;
  3631. return 0;
  3632. }
  3633. #endif /* !MBEDTLS_SSL_KEEP_PEER_CERTIFICATE */
  3634. /* Read the message without adding it to the checksum */
  3635. ret = mbedtls_ssl_read_record(ssl, 0 /* no checksum update */);
  3636. if (0 != ret) {
  3637. MBEDTLS_SSL_DEBUG_RET(1, ("mbedtls_ssl_read_record"), ret);
  3638. return ret;
  3639. }
  3640. ssl->state++;
  3641. /* Process the message contents */
  3642. if (ssl->in_msgtype != MBEDTLS_SSL_MSG_HANDSHAKE ||
  3643. ssl->in_msg[0] != MBEDTLS_SSL_HS_CERTIFICATE_VERIFY) {
  3644. MBEDTLS_SSL_DEBUG_MSG(1, ("bad certificate verify message"));
  3645. return MBEDTLS_ERR_SSL_BAD_HS_CERTIFICATE_VERIFY;
  3646. }
  3647. i = mbedtls_ssl_hs_hdr_len(ssl);
  3648. #if !defined(MBEDTLS_SSL_KEEP_PEER_CERTIFICATE)
  3649. peer_pk = &ssl->handshake->peer_pubkey;
  3650. #else /* !MBEDTLS_SSL_KEEP_PEER_CERTIFICATE */
  3651. if (ssl->session_negotiate->peer_cert == NULL) {
  3652. /* Should never happen */
  3653. return MBEDTLS_ERR_SSL_INTERNAL_ERROR;
  3654. }
  3655. peer_pk = &ssl->session_negotiate->peer_cert->pk;
  3656. #endif /* MBEDTLS_SSL_KEEP_PEER_CERTIFICATE */
  3657. /*
  3658. * struct {
  3659. * SignatureAndHashAlgorithm algorithm; -- TLS 1.2 only
  3660. * opaque signature<0..2^16-1>;
  3661. * } DigitallySigned;
  3662. */
  3663. #if defined(MBEDTLS_SSL_PROTO_SSL3) || defined(MBEDTLS_SSL_PROTO_TLS1) || \
  3664. defined(MBEDTLS_SSL_PROTO_TLS1_1)
  3665. if (ssl->minor_ver != MBEDTLS_SSL_MINOR_VERSION_3) {
  3666. md_alg = MBEDTLS_MD_NONE;
  3667. hashlen = 36;
  3668. /* For ECDSA, use SHA-1, not MD-5 + SHA-1 */
  3669. if (mbedtls_pk_can_do(peer_pk, MBEDTLS_PK_ECDSA)) {
  3670. hash_start += 16;
  3671. hashlen -= 16;
  3672. md_alg = MBEDTLS_MD_SHA1;
  3673. }
  3674. } else
  3675. #endif /* MBEDTLS_SSL_PROTO_SSL3 || MBEDTLS_SSL_PROTO_TLS1 ||
  3676. MBEDTLS_SSL_PROTO_TLS1_1 */
  3677. #if defined(MBEDTLS_SSL_PROTO_TLS1_2)
  3678. if (ssl->minor_ver == MBEDTLS_SSL_MINOR_VERSION_3) {
  3679. if (i + 2 > ssl->in_hslen) {
  3680. MBEDTLS_SSL_DEBUG_MSG(1, ("bad certificate verify message"));
  3681. return MBEDTLS_ERR_SSL_BAD_HS_CERTIFICATE_VERIFY;
  3682. }
  3683. /*
  3684. * Hash
  3685. */
  3686. md_alg = mbedtls_ssl_md_alg_from_hash(ssl->in_msg[i]);
  3687. if (md_alg == MBEDTLS_MD_NONE || mbedtls_ssl_set_calc_verify_md(ssl, ssl->in_msg[i])) {
  3688. MBEDTLS_SSL_DEBUG_MSG(1, ("peer not adhering to requested sig_alg"
  3689. " for verify message"));
  3690. return MBEDTLS_ERR_SSL_BAD_HS_CERTIFICATE_VERIFY;
  3691. }
  3692. #if !defined(MBEDTLS_MD_SHA1)
  3693. if (MBEDTLS_MD_SHA1 == md_alg) {
  3694. hash_start += 16;
  3695. }
  3696. #endif
  3697. /* Info from md_alg will be used instead */
  3698. hashlen = 0;
  3699. i++;
  3700. /*
  3701. * Signature
  3702. */
  3703. if ((pk_alg = mbedtls_ssl_pk_alg_from_sig(ssl->in_msg[i]))
  3704. == MBEDTLS_PK_NONE) {
  3705. MBEDTLS_SSL_DEBUG_MSG(1, ("peer not adhering to requested sig_alg"
  3706. " for verify message"));
  3707. return MBEDTLS_ERR_SSL_BAD_HS_CERTIFICATE_VERIFY;
  3708. }
  3709. /*
  3710. * Check the certificate's key type matches the signature alg
  3711. */
  3712. if (!mbedtls_pk_can_do(peer_pk, pk_alg)) {
  3713. MBEDTLS_SSL_DEBUG_MSG(1, ("sig_alg doesn't match cert key"));
  3714. return MBEDTLS_ERR_SSL_BAD_HS_CERTIFICATE_VERIFY;
  3715. }
  3716. i++;
  3717. } else
  3718. #endif /* MBEDTLS_SSL_PROTO_TLS1_2 */
  3719. {
  3720. MBEDTLS_SSL_DEBUG_MSG(1, ("should never happen"));
  3721. return MBEDTLS_ERR_SSL_INTERNAL_ERROR;
  3722. }
  3723. if (i + 2 > ssl->in_hslen) {
  3724. MBEDTLS_SSL_DEBUG_MSG(1, ("bad certificate verify message"));
  3725. return MBEDTLS_ERR_SSL_BAD_HS_CERTIFICATE_VERIFY;
  3726. }
  3727. sig_len = (ssl->in_msg[i] << 8) | ssl->in_msg[i+1];
  3728. i += 2;
  3729. if (i + sig_len != ssl->in_hslen) {
  3730. MBEDTLS_SSL_DEBUG_MSG(1, ("bad certificate verify message"));
  3731. return MBEDTLS_ERR_SSL_BAD_HS_CERTIFICATE_VERIFY;
  3732. }
  3733. /* Calculate hash and verify signature */
  3734. {
  3735. size_t dummy_hlen;
  3736. ssl->handshake->calc_verify(ssl, hash, &dummy_hlen);
  3737. }
  3738. if ((ret = mbedtls_pk_verify(peer_pk,
  3739. md_alg, hash_start, hashlen,
  3740. ssl->in_msg + i, sig_len)) != 0) {
  3741. MBEDTLS_SSL_DEBUG_RET(1, "mbedtls_pk_verify", ret);
  3742. return ret;
  3743. }
  3744. mbedtls_ssl_update_handshake_status(ssl);
  3745. MBEDTLS_SSL_DEBUG_MSG(2, ("<= parse certificate verify"));
  3746. return ret;
  3747. }
  3748. #endif /* MBEDTLS_KEY_EXCHANGE_CERT_REQ_ALLOWED_ENABLED */
  3749. #if defined(MBEDTLS_SSL_SESSION_TICKETS)
  3750. MBEDTLS_CHECK_RETURN_CRITICAL
  3751. static int ssl_write_new_session_ticket(mbedtls_ssl_context *ssl)
  3752. {
  3753. int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
  3754. size_t tlen;
  3755. uint32_t lifetime;
  3756. MBEDTLS_SSL_DEBUG_MSG(2, ("=> write new session ticket"));
  3757. ssl->out_msgtype = MBEDTLS_SSL_MSG_HANDSHAKE;
  3758. ssl->out_msg[0] = MBEDTLS_SSL_HS_NEW_SESSION_TICKET;
  3759. /*
  3760. * struct {
  3761. * uint32 ticket_lifetime_hint;
  3762. * opaque ticket<0..2^16-1>;
  3763. * } NewSessionTicket;
  3764. *
  3765. * 4 . 7 ticket_lifetime_hint (0 = unspecified)
  3766. * 8 . 9 ticket_len (n)
  3767. * 10 . 9+n ticket content
  3768. */
  3769. if ((ret = ssl->conf->f_ticket_write(ssl->conf->p_ticket,
  3770. ssl->session_negotiate,
  3771. ssl->out_msg + 10,
  3772. ssl->out_msg + MBEDTLS_SSL_OUT_CONTENT_LEN,
  3773. &tlen, &lifetime)) != 0) {
  3774. MBEDTLS_SSL_DEBUG_RET(1, "mbedtls_ssl_ticket_write", ret);
  3775. tlen = 0;
  3776. }
  3777. MBEDTLS_PUT_UINT32_BE(lifetime, ssl->out_msg, 4);
  3778. MBEDTLS_PUT_UINT16_BE(tlen, ssl->out_msg, 8);
  3779. ssl->out_msglen = 10 + tlen;
  3780. /*
  3781. * Morally equivalent to updating ssl->state, but NewSessionTicket and
  3782. * ChangeCipherSpec share the same state.
  3783. */
  3784. ssl->handshake->new_session_ticket = 0;
  3785. if ((ret = mbedtls_ssl_write_handshake_msg(ssl)) != 0) {
  3786. MBEDTLS_SSL_DEBUG_RET(1, "mbedtls_ssl_write_handshake_msg", ret);
  3787. return ret;
  3788. }
  3789. MBEDTLS_SSL_DEBUG_MSG(2, ("<= write new session ticket"));
  3790. return 0;
  3791. }
  3792. #endif /* MBEDTLS_SSL_SESSION_TICKETS */
  3793. /*
  3794. * SSL handshake -- server side -- single step
  3795. */
  3796. int mbedtls_ssl_handshake_server_step(mbedtls_ssl_context *ssl)
  3797. {
  3798. int ret = 0;
  3799. if (ssl->state == MBEDTLS_SSL_HANDSHAKE_OVER || ssl->handshake == NULL) {
  3800. return MBEDTLS_ERR_SSL_BAD_INPUT_DATA;
  3801. }
  3802. MBEDTLS_SSL_DEBUG_MSG(2, ("server state: %d", ssl->state));
  3803. if ((ret = mbedtls_ssl_flush_output(ssl)) != 0) {
  3804. return ret;
  3805. }
  3806. #if defined(MBEDTLS_SSL_PROTO_DTLS)
  3807. if (ssl->conf->transport == MBEDTLS_SSL_TRANSPORT_DATAGRAM &&
  3808. ssl->handshake->retransmit_state == MBEDTLS_SSL_RETRANS_SENDING) {
  3809. if ((ret = mbedtls_ssl_flight_transmit(ssl)) != 0) {
  3810. return ret;
  3811. }
  3812. }
  3813. #endif /* MBEDTLS_SSL_PROTO_DTLS */
  3814. switch (ssl->state) {
  3815. case MBEDTLS_SSL_HELLO_REQUEST:
  3816. ssl->state = MBEDTLS_SSL_CLIENT_HELLO;
  3817. break;
  3818. /*
  3819. * <== ClientHello
  3820. */
  3821. case MBEDTLS_SSL_CLIENT_HELLO:
  3822. ret = ssl_parse_client_hello(ssl);
  3823. break;
  3824. #if defined(MBEDTLS_SSL_PROTO_DTLS)
  3825. case MBEDTLS_SSL_SERVER_HELLO_VERIFY_REQUEST_SENT:
  3826. return MBEDTLS_ERR_SSL_HELLO_VERIFY_REQUIRED;
  3827. #endif
  3828. /*
  3829. * ==> ServerHello
  3830. * Certificate
  3831. * ( ServerKeyExchange )
  3832. * ( CertificateRequest )
  3833. * ServerHelloDone
  3834. */
  3835. case MBEDTLS_SSL_SERVER_HELLO:
  3836. ret = ssl_write_server_hello(ssl);
  3837. break;
  3838. case MBEDTLS_SSL_SERVER_CERTIFICATE:
  3839. ret = mbedtls_ssl_write_certificate(ssl);
  3840. break;
  3841. case MBEDTLS_SSL_SERVER_KEY_EXCHANGE:
  3842. ret = ssl_write_server_key_exchange(ssl);
  3843. break;
  3844. case MBEDTLS_SSL_CERTIFICATE_REQUEST:
  3845. ret = ssl_write_certificate_request(ssl);
  3846. break;
  3847. case MBEDTLS_SSL_SERVER_HELLO_DONE:
  3848. ret = ssl_write_server_hello_done(ssl);
  3849. break;
  3850. /*
  3851. * <== ( Certificate/Alert )
  3852. * ClientKeyExchange
  3853. * ( CertificateVerify )
  3854. * ChangeCipherSpec
  3855. * Finished
  3856. */
  3857. case MBEDTLS_SSL_CLIENT_CERTIFICATE:
  3858. ret = mbedtls_ssl_parse_certificate(ssl);
  3859. break;
  3860. case MBEDTLS_SSL_CLIENT_KEY_EXCHANGE:
  3861. ret = ssl_parse_client_key_exchange(ssl);
  3862. break;
  3863. case MBEDTLS_SSL_CERTIFICATE_VERIFY:
  3864. ret = ssl_parse_certificate_verify(ssl);
  3865. break;
  3866. case MBEDTLS_SSL_CLIENT_CHANGE_CIPHER_SPEC:
  3867. ret = mbedtls_ssl_parse_change_cipher_spec(ssl);
  3868. break;
  3869. case MBEDTLS_SSL_CLIENT_FINISHED:
  3870. ret = mbedtls_ssl_parse_finished(ssl);
  3871. break;
  3872. /*
  3873. * ==> ( NewSessionTicket )
  3874. * ChangeCipherSpec
  3875. * Finished
  3876. */
  3877. case MBEDTLS_SSL_SERVER_CHANGE_CIPHER_SPEC:
  3878. #if defined(MBEDTLS_SSL_SESSION_TICKETS)
  3879. if (ssl->handshake->new_session_ticket != 0) {
  3880. ret = ssl_write_new_session_ticket(ssl);
  3881. } else
  3882. #endif
  3883. ret = mbedtls_ssl_write_change_cipher_spec(ssl);
  3884. break;
  3885. case MBEDTLS_SSL_SERVER_FINISHED:
  3886. ret = mbedtls_ssl_write_finished(ssl);
  3887. break;
  3888. case MBEDTLS_SSL_FLUSH_BUFFERS:
  3889. MBEDTLS_SSL_DEBUG_MSG(2, ("handshake: done"));
  3890. ssl->state = MBEDTLS_SSL_HANDSHAKE_WRAPUP;
  3891. break;
  3892. case MBEDTLS_SSL_HANDSHAKE_WRAPUP:
  3893. mbedtls_ssl_handshake_wrapup(ssl);
  3894. break;
  3895. default:
  3896. MBEDTLS_SSL_DEBUG_MSG(1, ("invalid state %d", ssl->state));
  3897. return MBEDTLS_ERR_SSL_BAD_INPUT_DATA;
  3898. }
  3899. return ret;
  3900. }
  3901. #endif /* MBEDTLS_SSL_SRV_C */