t1_lib.c 141 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401
  1. /* ssl/t1_lib.c */
  2. /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
  3. * All rights reserved.
  4. *
  5. * This package is an SSL implementation written
  6. * by Eric Young (eay@cryptsoft.com).
  7. * The implementation was written so as to conform with Netscapes SSL.
  8. *
  9. * This library is free for commercial and non-commercial use as long as
  10. * the following conditions are aheared to. The following conditions
  11. * apply to all code found in this distribution, be it the RC4, RSA,
  12. * lhash, DES, etc., code; not just the SSL code. The SSL documentation
  13. * included with this distribution is covered by the same copyright terms
  14. * except that the holder is Tim Hudson (tjh@cryptsoft.com).
  15. *
  16. * Copyright remains Eric Young's, and as such any Copyright notices in
  17. * the code are not to be removed.
  18. * If this package is used in a product, Eric Young should be given attribution
  19. * as the author of the parts of the library used.
  20. * This can be in the form of a textual message at program startup or
  21. * in documentation (online or textual) provided with the package.
  22. *
  23. * Redistribution and use in source and binary forms, with or without
  24. * modification, are permitted provided that the following conditions
  25. * are met:
  26. * 1. Redistributions of source code must retain the copyright
  27. * notice, this list of conditions and the following disclaimer.
  28. * 2. Redistributions in binary form must reproduce the above copyright
  29. * notice, this list of conditions and the following disclaimer in the
  30. * documentation and/or other materials provided with the distribution.
  31. * 3. All advertising materials mentioning features or use of this software
  32. * must display the following acknowledgement:
  33. * "This product includes cryptographic software written by
  34. * Eric Young (eay@cryptsoft.com)"
  35. * The word 'cryptographic' can be left out if the rouines from the library
  36. * being used are not cryptographic related :-).
  37. * 4. If you include any Windows specific code (or a derivative thereof) from
  38. * the apps directory (application code) you must include an acknowledgement:
  39. * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
  40. *
  41. * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
  42. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  43. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  44. * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
  45. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  46. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  47. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  48. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  49. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  50. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  51. * SUCH DAMAGE.
  52. *
  53. * The licence and distribution terms for any publically available version or
  54. * derivative of this code cannot be changed. i.e. this code cannot simply be
  55. * copied and put under another distribution licence
  56. * [including the GNU Public Licence.]
  57. */
  58. /* ====================================================================
  59. * Copyright (c) 1998-2007 The OpenSSL Project. All rights reserved.
  60. *
  61. * Redistribution and use in source and binary forms, with or without
  62. * modification, are permitted provided that the following conditions
  63. * are met:
  64. *
  65. * 1. Redistributions of source code must retain the above copyright
  66. * notice, this list of conditions and the following disclaimer.
  67. *
  68. * 2. Redistributions in binary form must reproduce the above copyright
  69. * notice, this list of conditions and the following disclaimer in
  70. * the documentation and/or other materials provided with the
  71. * distribution.
  72. *
  73. * 3. All advertising materials mentioning features or use of this
  74. * software must display the following acknowledgment:
  75. * "This product includes software developed by the OpenSSL Project
  76. * for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
  77. *
  78. * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
  79. * endorse or promote products derived from this software without
  80. * prior written permission. For written permission, please contact
  81. * openssl-core@openssl.org.
  82. *
  83. * 5. Products derived from this software may not be called "OpenSSL"
  84. * nor may "OpenSSL" appear in their names without prior written
  85. * permission of the OpenSSL Project.
  86. *
  87. * 6. Redistributions of any form whatsoever must retain the following
  88. * acknowledgment:
  89. * "This product includes software developed by the OpenSSL Project
  90. * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
  91. *
  92. * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
  93. * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  94. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  95. * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
  96. * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  97. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  98. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  99. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  100. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  101. * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  102. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  103. * OF THE POSSIBILITY OF SUCH DAMAGE.
  104. * ====================================================================
  105. *
  106. * This product includes cryptographic software written by Eric Young
  107. * (eay@cryptsoft.com). This product includes software written by Tim
  108. * Hudson (tjh@cryptsoft.com).
  109. *
  110. */
  111. #include <stdio.h>
  112. #include <openssl/objects.h>
  113. #include <openssl/evp.h>
  114. #include <openssl/hmac.h>
  115. #ifndef OPENSSL_NO_EC
  116. #ifdef OPENSSL_NO_EC2M
  117. # include <openssl/ec.h>
  118. #endif
  119. #endif
  120. #include <openssl/ocsp.h>
  121. #include <openssl/rand.h>
  122. #include "ssl_locl.h"
  123. const char tls1_version_str[] = "TLSv1" OPENSSL_VERSION_PTEXT;
  124. #ifndef OPENSSL_NO_TLSEXT
  125. static int tls_decrypt_ticket(SSL *s, const unsigned char *tick, int ticklen,
  126. const unsigned char *sess_id, int sesslen,
  127. SSL_SESSION **psess);
  128. static int ssl_check_clienthello_tlsext_early(SSL *s);
  129. int ssl_check_serverhello_tlsext(SSL *s);
  130. #endif
  131. SSL3_ENC_METHOD TLSv1_enc_data = {
  132. tls1_enc,
  133. tls1_mac,
  134. tls1_setup_key_block,
  135. tls1_generate_master_secret,
  136. tls1_change_cipher_state,
  137. tls1_final_finish_mac,
  138. TLS1_FINISH_MAC_LENGTH,
  139. tls1_cert_verify_mac,
  140. TLS_MD_CLIENT_FINISH_CONST, TLS_MD_CLIENT_FINISH_CONST_SIZE,
  141. TLS_MD_SERVER_FINISH_CONST, TLS_MD_SERVER_FINISH_CONST_SIZE,
  142. tls1_alert_code,
  143. tls1_export_keying_material,
  144. 0,
  145. SSL3_HM_HEADER_LENGTH,
  146. ssl3_set_handshake_header,
  147. ssl3_handshake_write
  148. };
  149. SSL3_ENC_METHOD TLSv1_1_enc_data = {
  150. tls1_enc,
  151. tls1_mac,
  152. tls1_setup_key_block,
  153. tls1_generate_master_secret,
  154. tls1_change_cipher_state,
  155. tls1_final_finish_mac,
  156. TLS1_FINISH_MAC_LENGTH,
  157. tls1_cert_verify_mac,
  158. TLS_MD_CLIENT_FINISH_CONST, TLS_MD_CLIENT_FINISH_CONST_SIZE,
  159. TLS_MD_SERVER_FINISH_CONST, TLS_MD_SERVER_FINISH_CONST_SIZE,
  160. tls1_alert_code,
  161. tls1_export_keying_material,
  162. SSL_ENC_FLAG_EXPLICIT_IV,
  163. SSL3_HM_HEADER_LENGTH,
  164. ssl3_set_handshake_header,
  165. ssl3_handshake_write
  166. };
  167. SSL3_ENC_METHOD TLSv1_2_enc_data = {
  168. tls1_enc,
  169. tls1_mac,
  170. tls1_setup_key_block,
  171. tls1_generate_master_secret,
  172. tls1_change_cipher_state,
  173. tls1_final_finish_mac,
  174. TLS1_FINISH_MAC_LENGTH,
  175. tls1_cert_verify_mac,
  176. TLS_MD_CLIENT_FINISH_CONST, TLS_MD_CLIENT_FINISH_CONST_SIZE,
  177. TLS_MD_SERVER_FINISH_CONST, TLS_MD_SERVER_FINISH_CONST_SIZE,
  178. tls1_alert_code,
  179. tls1_export_keying_material,
  180. SSL_ENC_FLAG_EXPLICIT_IV | SSL_ENC_FLAG_SIGALGS | SSL_ENC_FLAG_SHA256_PRF
  181. | SSL_ENC_FLAG_TLS1_2_CIPHERS,
  182. SSL3_HM_HEADER_LENGTH,
  183. ssl3_set_handshake_header,
  184. ssl3_handshake_write
  185. };
  186. long tls1_default_timeout(void)
  187. {
  188. /*
  189. * 2 hours, the 24 hours mentioned in the TLSv1 spec is way too long for
  190. * http, the cache would over fill
  191. */
  192. return (60 * 60 * 2);
  193. }
  194. int tls1_new(SSL *s)
  195. {
  196. if (!ssl3_new(s))
  197. return (0);
  198. s->method->ssl_clear(s);
  199. return (1);
  200. }
  201. void tls1_free(SSL *s)
  202. {
  203. #ifndef OPENSSL_NO_TLSEXT
  204. if (s->tlsext_session_ticket) {
  205. OPENSSL_free(s->tlsext_session_ticket);
  206. }
  207. #endif /* OPENSSL_NO_TLSEXT */
  208. ssl3_free(s);
  209. }
  210. void tls1_clear(SSL *s)
  211. {
  212. ssl3_clear(s);
  213. s->version = s->method->version;
  214. }
  215. #ifndef OPENSSL_NO_EC
  216. static int nid_list[] = {
  217. NID_sect163k1, /* sect163k1 (1) */
  218. NID_sect163r1, /* sect163r1 (2) */
  219. NID_sect163r2, /* sect163r2 (3) */
  220. NID_sect193r1, /* sect193r1 (4) */
  221. NID_sect193r2, /* sect193r2 (5) */
  222. NID_sect233k1, /* sect233k1 (6) */
  223. NID_sect233r1, /* sect233r1 (7) */
  224. NID_sect239k1, /* sect239k1 (8) */
  225. NID_sect283k1, /* sect283k1 (9) */
  226. NID_sect283r1, /* sect283r1 (10) */
  227. NID_sect409k1, /* sect409k1 (11) */
  228. NID_sect409r1, /* sect409r1 (12) */
  229. NID_sect571k1, /* sect571k1 (13) */
  230. NID_sect571r1, /* sect571r1 (14) */
  231. NID_secp160k1, /* secp160k1 (15) */
  232. NID_secp160r1, /* secp160r1 (16) */
  233. NID_secp160r2, /* secp160r2 (17) */
  234. NID_secp192k1, /* secp192k1 (18) */
  235. NID_X9_62_prime192v1, /* secp192r1 (19) */
  236. NID_secp224k1, /* secp224k1 (20) */
  237. NID_secp224r1, /* secp224r1 (21) */
  238. NID_secp256k1, /* secp256k1 (22) */
  239. NID_X9_62_prime256v1, /* secp256r1 (23) */
  240. NID_secp384r1, /* secp384r1 (24) */
  241. NID_secp521r1, /* secp521r1 (25) */
  242. NID_brainpoolP256r1, /* brainpoolP256r1 (26) */
  243. NID_brainpoolP384r1, /* brainpoolP384r1 (27) */
  244. NID_brainpoolP512r1 /* brainpool512r1 (28) */
  245. };
  246. static const unsigned char ecformats_default[] = {
  247. TLSEXT_ECPOINTFORMAT_uncompressed,
  248. TLSEXT_ECPOINTFORMAT_ansiX962_compressed_prime,
  249. TLSEXT_ECPOINTFORMAT_ansiX962_compressed_char2
  250. };
  251. /* The client's default curves / the server's 'auto' curves. */
  252. static const unsigned char eccurves_auto[] = {
  253. /* Prefer P-256 which has the fastest and most secure implementations. */
  254. 0, 23, /* secp256r1 (23) */
  255. /* Other >= 256-bit prime curves. */
  256. 0, 25, /* secp521r1 (25) */
  257. 0, 28, /* brainpool512r1 (28) */
  258. 0, 27, /* brainpoolP384r1 (27) */
  259. 0, 24, /* secp384r1 (24) */
  260. 0, 26, /* brainpoolP256r1 (26) */
  261. 0, 22, /* secp256k1 (22) */
  262. # ifndef OPENSSL_NO_EC2M
  263. /* >= 256-bit binary curves. */
  264. 0, 14, /* sect571r1 (14) */
  265. 0, 13, /* sect571k1 (13) */
  266. 0, 11, /* sect409k1 (11) */
  267. 0, 12, /* sect409r1 (12) */
  268. 0, 9, /* sect283k1 (9) */
  269. 0, 10, /* sect283r1 (10) */
  270. # endif
  271. };
  272. static const unsigned char eccurves_all[] = {
  273. /* Prefer P-256 which has the fastest and most secure implementations. */
  274. 0, 23, /* secp256r1 (23) */
  275. /* Other >= 256-bit prime curves. */
  276. 0, 25, /* secp521r1 (25) */
  277. 0, 28, /* brainpool512r1 (28) */
  278. 0, 27, /* brainpoolP384r1 (27) */
  279. 0, 24, /* secp384r1 (24) */
  280. 0, 26, /* brainpoolP256r1 (26) */
  281. 0, 22, /* secp256k1 (22) */
  282. # ifndef OPENSSL_NO_EC2M
  283. /* >= 256-bit binary curves. */
  284. 0, 14, /* sect571r1 (14) */
  285. 0, 13, /* sect571k1 (13) */
  286. 0, 11, /* sect409k1 (11) */
  287. 0, 12, /* sect409r1 (12) */
  288. 0, 9, /* sect283k1 (9) */
  289. 0, 10, /* sect283r1 (10) */
  290. # endif
  291. /*
  292. * Remaining curves disabled by default but still permitted if set
  293. * via an explicit callback or parameters.
  294. */
  295. 0, 20, /* secp224k1 (20) */
  296. 0, 21, /* secp224r1 (21) */
  297. 0, 18, /* secp192k1 (18) */
  298. 0, 19, /* secp192r1 (19) */
  299. 0, 15, /* secp160k1 (15) */
  300. 0, 16, /* secp160r1 (16) */
  301. 0, 17, /* secp160r2 (17) */
  302. # ifndef OPENSSL_NO_EC2M
  303. 0, 8, /* sect239k1 (8) */
  304. 0, 6, /* sect233k1 (6) */
  305. 0, 7, /* sect233r1 (7) */
  306. 0, 4, /* sect193r1 (4) */
  307. 0, 5, /* sect193r2 (5) */
  308. 0, 1, /* sect163k1 (1) */
  309. 0, 2, /* sect163r1 (2) */
  310. 0, 3, /* sect163r2 (3) */
  311. # endif
  312. };
  313. static const unsigned char suiteb_curves[] = {
  314. 0, TLSEXT_curve_P_256,
  315. 0, TLSEXT_curve_P_384
  316. };
  317. # ifdef OPENSSL_FIPS
  318. /* Brainpool not allowed in FIPS mode */
  319. static const unsigned char fips_curves_default[] = {
  320. # ifndef OPENSSL_NO_EC2M
  321. 0, 14, /* sect571r1 (14) */
  322. 0, 13, /* sect571k1 (13) */
  323. # endif
  324. 0, 25, /* secp521r1 (25) */
  325. # ifndef OPENSSL_NO_EC2M
  326. 0, 11, /* sect409k1 (11) */
  327. 0, 12, /* sect409r1 (12) */
  328. # endif
  329. 0, 24, /* secp384r1 (24) */
  330. # ifndef OPENSSL_NO_EC2M
  331. 0, 9, /* sect283k1 (9) */
  332. 0, 10, /* sect283r1 (10) */
  333. # endif
  334. 0, 22, /* secp256k1 (22) */
  335. 0, 23, /* secp256r1 (23) */
  336. # ifndef OPENSSL_NO_EC2M
  337. 0, 8, /* sect239k1 (8) */
  338. 0, 6, /* sect233k1 (6) */
  339. 0, 7, /* sect233r1 (7) */
  340. # endif
  341. 0, 20, /* secp224k1 (20) */
  342. 0, 21, /* secp224r1 (21) */
  343. # ifndef OPENSSL_NO_EC2M
  344. 0, 4, /* sect193r1 (4) */
  345. 0, 5, /* sect193r2 (5) */
  346. # endif
  347. 0, 18, /* secp192k1 (18) */
  348. 0, 19, /* secp192r1 (19) */
  349. # ifndef OPENSSL_NO_EC2M
  350. 0, 1, /* sect163k1 (1) */
  351. 0, 2, /* sect163r1 (2) */
  352. 0, 3, /* sect163r2 (3) */
  353. # endif
  354. 0, 15, /* secp160k1 (15) */
  355. 0, 16, /* secp160r1 (16) */
  356. 0, 17, /* secp160r2 (17) */
  357. };
  358. # endif
  359. int tls1_ec_curve_id2nid(int curve_id)
  360. {
  361. /* ECC curves from RFC 4492 and RFC 7027 */
  362. if ((curve_id < 1) || ((unsigned int)curve_id >
  363. sizeof(nid_list) / sizeof(nid_list[0])))
  364. return 0;
  365. return nid_list[curve_id - 1];
  366. }
  367. int tls1_ec_nid2curve_id(int nid)
  368. {
  369. /* ECC curves from RFC 4492 and RFC 7027 */
  370. switch (nid) {
  371. case NID_sect163k1: /* sect163k1 (1) */
  372. return 1;
  373. case NID_sect163r1: /* sect163r1 (2) */
  374. return 2;
  375. case NID_sect163r2: /* sect163r2 (3) */
  376. return 3;
  377. case NID_sect193r1: /* sect193r1 (4) */
  378. return 4;
  379. case NID_sect193r2: /* sect193r2 (5) */
  380. return 5;
  381. case NID_sect233k1: /* sect233k1 (6) */
  382. return 6;
  383. case NID_sect233r1: /* sect233r1 (7) */
  384. return 7;
  385. case NID_sect239k1: /* sect239k1 (8) */
  386. return 8;
  387. case NID_sect283k1: /* sect283k1 (9) */
  388. return 9;
  389. case NID_sect283r1: /* sect283r1 (10) */
  390. return 10;
  391. case NID_sect409k1: /* sect409k1 (11) */
  392. return 11;
  393. case NID_sect409r1: /* sect409r1 (12) */
  394. return 12;
  395. case NID_sect571k1: /* sect571k1 (13) */
  396. return 13;
  397. case NID_sect571r1: /* sect571r1 (14) */
  398. return 14;
  399. case NID_secp160k1: /* secp160k1 (15) */
  400. return 15;
  401. case NID_secp160r1: /* secp160r1 (16) */
  402. return 16;
  403. case NID_secp160r2: /* secp160r2 (17) */
  404. return 17;
  405. case NID_secp192k1: /* secp192k1 (18) */
  406. return 18;
  407. case NID_X9_62_prime192v1: /* secp192r1 (19) */
  408. return 19;
  409. case NID_secp224k1: /* secp224k1 (20) */
  410. return 20;
  411. case NID_secp224r1: /* secp224r1 (21) */
  412. return 21;
  413. case NID_secp256k1: /* secp256k1 (22) */
  414. return 22;
  415. case NID_X9_62_prime256v1: /* secp256r1 (23) */
  416. return 23;
  417. case NID_secp384r1: /* secp384r1 (24) */
  418. return 24;
  419. case NID_secp521r1: /* secp521r1 (25) */
  420. return 25;
  421. case NID_brainpoolP256r1: /* brainpoolP256r1 (26) */
  422. return 26;
  423. case NID_brainpoolP384r1: /* brainpoolP384r1 (27) */
  424. return 27;
  425. case NID_brainpoolP512r1: /* brainpool512r1 (28) */
  426. return 28;
  427. default:
  428. return 0;
  429. }
  430. }
  431. /*
  432. * Get curves list, if "sess" is set return client curves otherwise
  433. * preferred list.
  434. * Sets |num_curves| to the number of curves in the list, i.e.,
  435. * the length of |pcurves| is 2 * num_curves.
  436. * Returns 1 on success and 0 if the client curves list has invalid format.
  437. * The latter indicates an internal error: we should not be accepting such
  438. * lists in the first place.
  439. * TODO(emilia): we should really be storing the curves list in explicitly
  440. * parsed form instead. (However, this would affect binary compatibility
  441. * so cannot happen in the 1.0.x series.)
  442. */
  443. static int tls1_get_curvelist(SSL *s, int sess,
  444. const unsigned char **pcurves,
  445. size_t *num_curves)
  446. {
  447. size_t pcurveslen = 0;
  448. if (sess) {
  449. *pcurves = s->session->tlsext_ellipticcurvelist;
  450. pcurveslen = s->session->tlsext_ellipticcurvelist_length;
  451. } else {
  452. /* For Suite B mode only include P-256, P-384 */
  453. switch (tls1_suiteb(s)) {
  454. case SSL_CERT_FLAG_SUITEB_128_LOS:
  455. *pcurves = suiteb_curves;
  456. pcurveslen = sizeof(suiteb_curves);
  457. break;
  458. case SSL_CERT_FLAG_SUITEB_128_LOS_ONLY:
  459. *pcurves = suiteb_curves;
  460. pcurveslen = 2;
  461. break;
  462. case SSL_CERT_FLAG_SUITEB_192_LOS:
  463. *pcurves = suiteb_curves + 2;
  464. pcurveslen = 2;
  465. break;
  466. default:
  467. *pcurves = s->tlsext_ellipticcurvelist;
  468. pcurveslen = s->tlsext_ellipticcurvelist_length;
  469. }
  470. if (!*pcurves) {
  471. # ifdef OPENSSL_FIPS
  472. if (FIPS_mode()) {
  473. *pcurves = fips_curves_default;
  474. pcurveslen = sizeof(fips_curves_default);
  475. } else
  476. # endif
  477. {
  478. if (!s->server || s->cert->ecdh_tmp_auto) {
  479. *pcurves = eccurves_auto;
  480. pcurveslen = sizeof(eccurves_auto);
  481. } else {
  482. *pcurves = eccurves_all;
  483. pcurveslen = sizeof(eccurves_all);
  484. }
  485. }
  486. }
  487. }
  488. /* We do not allow odd length arrays to enter the system. */
  489. if (pcurveslen & 1) {
  490. SSLerr(SSL_F_TLS1_GET_CURVELIST, ERR_R_INTERNAL_ERROR);
  491. *num_curves = 0;
  492. return 0;
  493. } else {
  494. *num_curves = pcurveslen / 2;
  495. return 1;
  496. }
  497. }
  498. /* Check a curve is one of our preferences */
  499. int tls1_check_curve(SSL *s, const unsigned char *p, size_t len)
  500. {
  501. const unsigned char *curves;
  502. size_t num_curves, i;
  503. unsigned int suiteb_flags = tls1_suiteb(s);
  504. if (len != 3 || p[0] != NAMED_CURVE_TYPE)
  505. return 0;
  506. /* Check curve matches Suite B preferences */
  507. if (suiteb_flags) {
  508. unsigned long cid = s->s3->tmp.new_cipher->id;
  509. if (p[1])
  510. return 0;
  511. if (cid == TLS1_CK_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256) {
  512. if (p[2] != TLSEXT_curve_P_256)
  513. return 0;
  514. } else if (cid == TLS1_CK_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384) {
  515. if (p[2] != TLSEXT_curve_P_384)
  516. return 0;
  517. } else /* Should never happen */
  518. return 0;
  519. }
  520. if (!tls1_get_curvelist(s, 0, &curves, &num_curves))
  521. return 0;
  522. for (i = 0; i < num_curves; i++, curves += 2) {
  523. if (p[1] == curves[0] && p[2] == curves[1])
  524. return 1;
  525. }
  526. return 0;
  527. }
  528. /*-
  529. * Return |nmatch|th shared curve or NID_undef if there is no match.
  530. * For nmatch == -1, return number of matches
  531. * For nmatch == -2, return the NID of the curve to use for
  532. * an EC tmp key, or NID_undef if there is no match.
  533. */
  534. int tls1_shared_curve(SSL *s, int nmatch)
  535. {
  536. const unsigned char *pref, *supp;
  537. size_t num_pref, num_supp, i, j;
  538. int k;
  539. /* Can't do anything on client side */
  540. if (s->server == 0)
  541. return -1;
  542. if (nmatch == -2) {
  543. if (tls1_suiteb(s)) {
  544. /*
  545. * For Suite B ciphersuite determines curve: we already know
  546. * these are acceptable due to previous checks.
  547. */
  548. unsigned long cid = s->s3->tmp.new_cipher->id;
  549. if (cid == TLS1_CK_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256)
  550. return NID_X9_62_prime256v1; /* P-256 */
  551. if (cid == TLS1_CK_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384)
  552. return NID_secp384r1; /* P-384 */
  553. /* Should never happen */
  554. return NID_undef;
  555. }
  556. /* If not Suite B just return first preference shared curve */
  557. nmatch = 0;
  558. }
  559. /*
  560. * Avoid truncation. tls1_get_curvelist takes an int
  561. * but s->options is a long...
  562. */
  563. if (!tls1_get_curvelist
  564. (s, (s->options & SSL_OP_CIPHER_SERVER_PREFERENCE) != 0, &supp,
  565. &num_supp))
  566. /* In practice, NID_undef == 0 but let's be precise. */
  567. return nmatch == -1 ? 0 : NID_undef;
  568. if (!tls1_get_curvelist
  569. (s, !(s->options & SSL_OP_CIPHER_SERVER_PREFERENCE), &pref,
  570. &num_pref))
  571. return nmatch == -1 ? 0 : NID_undef;
  572. /*
  573. * If the client didn't send the elliptic_curves extension all of them
  574. * are allowed.
  575. */
  576. if (num_supp == 0 && (s->options & SSL_OP_CIPHER_SERVER_PREFERENCE) != 0) {
  577. supp = eccurves_all;
  578. num_supp = sizeof(eccurves_all) / 2;
  579. } else if (num_pref == 0 &&
  580. (s->options & SSL_OP_CIPHER_SERVER_PREFERENCE) == 0) {
  581. pref = eccurves_all;
  582. num_pref = sizeof(eccurves_all) / 2;
  583. }
  584. k = 0;
  585. for (i = 0; i < num_pref; i++, pref += 2) {
  586. const unsigned char *tsupp = supp;
  587. for (j = 0; j < num_supp; j++, tsupp += 2) {
  588. if (pref[0] == tsupp[0] && pref[1] == tsupp[1]) {
  589. if (nmatch == k) {
  590. int id = (pref[0] << 8) | pref[1];
  591. return tls1_ec_curve_id2nid(id);
  592. }
  593. k++;
  594. }
  595. }
  596. }
  597. if (nmatch == -1)
  598. return k;
  599. /* Out of range (nmatch > k). */
  600. return NID_undef;
  601. }
  602. int tls1_set_curves(unsigned char **pext, size_t *pextlen,
  603. int *curves, size_t ncurves)
  604. {
  605. unsigned char *clist, *p;
  606. size_t i;
  607. /*
  608. * Bitmap of curves included to detect duplicates: only works while curve
  609. * ids < 32
  610. */
  611. unsigned long dup_list = 0;
  612. # ifdef OPENSSL_NO_EC2M
  613. EC_GROUP *curve;
  614. # endif
  615. clist = OPENSSL_malloc(ncurves * 2);
  616. if (!clist)
  617. return 0;
  618. for (i = 0, p = clist; i < ncurves; i++) {
  619. unsigned long idmask;
  620. int id;
  621. id = tls1_ec_nid2curve_id(curves[i]);
  622. # ifdef OPENSSL_FIPS
  623. /* NB: 25 is last curve ID supported by FIPS module */
  624. if (FIPS_mode() && id > 25) {
  625. OPENSSL_free(clist);
  626. return 0;
  627. }
  628. # endif
  629. # ifdef OPENSSL_NO_EC2M
  630. curve = EC_GROUP_new_by_curve_name(curves[i]);
  631. if (!curve || EC_METHOD_get_field_type(EC_GROUP_method_of(curve))
  632. == NID_X9_62_characteristic_two_field) {
  633. if (curve)
  634. EC_GROUP_free(curve);
  635. OPENSSL_free(clist);
  636. return 0;
  637. } else
  638. EC_GROUP_free(curve);
  639. # endif
  640. idmask = 1L << id;
  641. if (!id || (dup_list & idmask)) {
  642. OPENSSL_free(clist);
  643. return 0;
  644. }
  645. dup_list |= idmask;
  646. s2n(id, p);
  647. }
  648. if (*pext)
  649. OPENSSL_free(*pext);
  650. *pext = clist;
  651. *pextlen = ncurves * 2;
  652. return 1;
  653. }
  654. # define MAX_CURVELIST 28
  655. typedef struct {
  656. size_t nidcnt;
  657. int nid_arr[MAX_CURVELIST];
  658. } nid_cb_st;
  659. static int nid_cb(const char *elem, int len, void *arg)
  660. {
  661. nid_cb_st *narg = arg;
  662. size_t i;
  663. int nid;
  664. char etmp[20];
  665. if (elem == NULL)
  666. return 0;
  667. if (narg->nidcnt == MAX_CURVELIST)
  668. return 0;
  669. if (len > (int)(sizeof(etmp) - 1))
  670. return 0;
  671. memcpy(etmp, elem, len);
  672. etmp[len] = 0;
  673. nid = EC_curve_nist2nid(etmp);
  674. if (nid == NID_undef)
  675. nid = OBJ_sn2nid(etmp);
  676. if (nid == NID_undef)
  677. nid = OBJ_ln2nid(etmp);
  678. if (nid == NID_undef)
  679. return 0;
  680. for (i = 0; i < narg->nidcnt; i++)
  681. if (narg->nid_arr[i] == nid)
  682. return 0;
  683. narg->nid_arr[narg->nidcnt++] = nid;
  684. return 1;
  685. }
  686. /* Set curves based on a colon separate list */
  687. int tls1_set_curves_list(unsigned char **pext, size_t *pextlen,
  688. const char *str)
  689. {
  690. nid_cb_st ncb;
  691. ncb.nidcnt = 0;
  692. if (!CONF_parse_list(str, ':', 1, nid_cb, &ncb))
  693. return 0;
  694. if (pext == NULL)
  695. return 1;
  696. return tls1_set_curves(pext, pextlen, ncb.nid_arr, ncb.nidcnt);
  697. }
  698. /* For an EC key set TLS id and required compression based on parameters */
  699. static int tls1_set_ec_id(unsigned char *curve_id, unsigned char *comp_id,
  700. EC_KEY *ec)
  701. {
  702. int is_prime, id;
  703. const EC_GROUP *grp;
  704. const EC_METHOD *meth;
  705. if (!ec)
  706. return 0;
  707. /* Determine if it is a prime field */
  708. grp = EC_KEY_get0_group(ec);
  709. if (!grp)
  710. return 0;
  711. meth = EC_GROUP_method_of(grp);
  712. if (!meth)
  713. return 0;
  714. if (EC_METHOD_get_field_type(meth) == NID_X9_62_prime_field)
  715. is_prime = 1;
  716. else
  717. is_prime = 0;
  718. /* Determine curve ID */
  719. id = EC_GROUP_get_curve_name(grp);
  720. id = tls1_ec_nid2curve_id(id);
  721. /* If we have an ID set it, otherwise set arbitrary explicit curve */
  722. if (id) {
  723. curve_id[0] = 0;
  724. curve_id[1] = (unsigned char)id;
  725. } else {
  726. curve_id[0] = 0xff;
  727. if (is_prime)
  728. curve_id[1] = 0x01;
  729. else
  730. curve_id[1] = 0x02;
  731. }
  732. if (comp_id) {
  733. if (EC_KEY_get0_public_key(ec) == NULL)
  734. return 0;
  735. if (EC_KEY_get_conv_form(ec) == POINT_CONVERSION_COMPRESSED) {
  736. if (is_prime)
  737. *comp_id = TLSEXT_ECPOINTFORMAT_ansiX962_compressed_prime;
  738. else
  739. *comp_id = TLSEXT_ECPOINTFORMAT_ansiX962_compressed_char2;
  740. } else
  741. *comp_id = TLSEXT_ECPOINTFORMAT_uncompressed;
  742. }
  743. return 1;
  744. }
  745. /* Check an EC key is compatible with extensions */
  746. static int tls1_check_ec_key(SSL *s,
  747. unsigned char *curve_id, unsigned char *comp_id)
  748. {
  749. const unsigned char *pformats, *pcurves;
  750. size_t num_formats, num_curves, i;
  751. int j;
  752. /*
  753. * If point formats extension present check it, otherwise everything is
  754. * supported (see RFC4492).
  755. */
  756. if (comp_id && s->session->tlsext_ecpointformatlist) {
  757. pformats = s->session->tlsext_ecpointformatlist;
  758. num_formats = s->session->tlsext_ecpointformatlist_length;
  759. for (i = 0; i < num_formats; i++, pformats++) {
  760. if (*comp_id == *pformats)
  761. break;
  762. }
  763. if (i == num_formats)
  764. return 0;
  765. }
  766. if (!curve_id)
  767. return 1;
  768. /* Check curve is consistent with client and server preferences */
  769. for (j = 0; j <= 1; j++) {
  770. if (!tls1_get_curvelist(s, j, &pcurves, &num_curves))
  771. return 0;
  772. if (j == 1 && num_curves == 0) {
  773. /*
  774. * If we've not received any curves then skip this check.
  775. * RFC 4492 does not require the supported elliptic curves extension
  776. * so if it is not sent we can just choose any curve.
  777. * It is invalid to send an empty list in the elliptic curves
  778. * extension, so num_curves == 0 always means no extension.
  779. */
  780. break;
  781. }
  782. for (i = 0; i < num_curves; i++, pcurves += 2) {
  783. if (pcurves[0] == curve_id[0] && pcurves[1] == curve_id[1])
  784. break;
  785. }
  786. if (i == num_curves)
  787. return 0;
  788. /* For clients can only check sent curve list */
  789. if (!s->server)
  790. return 1;
  791. }
  792. return 1;
  793. }
  794. static void tls1_get_formatlist(SSL *s, const unsigned char **pformats,
  795. size_t *num_formats)
  796. {
  797. /*
  798. * If we have a custom point format list use it otherwise use default
  799. */
  800. if (s->tlsext_ecpointformatlist) {
  801. *pformats = s->tlsext_ecpointformatlist;
  802. *num_formats = s->tlsext_ecpointformatlist_length;
  803. } else {
  804. *pformats = ecformats_default;
  805. /* For Suite B we don't support char2 fields */
  806. if (tls1_suiteb(s))
  807. *num_formats = sizeof(ecformats_default) - 1;
  808. else
  809. *num_formats = sizeof(ecformats_default);
  810. }
  811. }
  812. /*
  813. * Check cert parameters compatible with extensions: currently just checks EC
  814. * certificates have compatible curves and compression.
  815. */
  816. static int tls1_check_cert_param(SSL *s, X509 *x, int set_ee_md)
  817. {
  818. unsigned char comp_id, curve_id[2];
  819. EVP_PKEY *pkey;
  820. int rv;
  821. pkey = X509_get_pubkey(x);
  822. if (!pkey)
  823. return 0;
  824. /* If not EC nothing to do */
  825. if (pkey->type != EVP_PKEY_EC) {
  826. EVP_PKEY_free(pkey);
  827. return 1;
  828. }
  829. rv = tls1_set_ec_id(curve_id, &comp_id, pkey->pkey.ec);
  830. EVP_PKEY_free(pkey);
  831. if (!rv)
  832. return 0;
  833. /*
  834. * Can't check curve_id for client certs as we don't have a supported
  835. * curves extension.
  836. */
  837. rv = tls1_check_ec_key(s, s->server ? curve_id : NULL, &comp_id);
  838. if (!rv)
  839. return 0;
  840. /*
  841. * Special case for suite B. We *MUST* sign using SHA256+P-256 or
  842. * SHA384+P-384, adjust digest if necessary.
  843. */
  844. if (set_ee_md && tls1_suiteb(s)) {
  845. int check_md;
  846. size_t i;
  847. CERT *c = s->cert;
  848. if (curve_id[0])
  849. return 0;
  850. /* Check to see we have necessary signing algorithm */
  851. if (curve_id[1] == TLSEXT_curve_P_256)
  852. check_md = NID_ecdsa_with_SHA256;
  853. else if (curve_id[1] == TLSEXT_curve_P_384)
  854. check_md = NID_ecdsa_with_SHA384;
  855. else
  856. return 0; /* Should never happen */
  857. for (i = 0; i < c->shared_sigalgslen; i++)
  858. if (check_md == c->shared_sigalgs[i].signandhash_nid)
  859. break;
  860. if (i == c->shared_sigalgslen)
  861. return 0;
  862. if (set_ee_md == 2) {
  863. if (check_md == NID_ecdsa_with_SHA256)
  864. c->pkeys[SSL_PKEY_ECC].digest = EVP_sha256();
  865. else
  866. c->pkeys[SSL_PKEY_ECC].digest = EVP_sha384();
  867. }
  868. }
  869. return rv;
  870. }
  871. # ifndef OPENSSL_NO_ECDH
  872. /* Check EC temporary key is compatible with client extensions */
  873. int tls1_check_ec_tmp_key(SSL *s, unsigned long cid)
  874. {
  875. unsigned char curve_id[2];
  876. EC_KEY *ec = s->cert->ecdh_tmp;
  877. # ifdef OPENSSL_SSL_DEBUG_BROKEN_PROTOCOL
  878. /* Allow any curve: not just those peer supports */
  879. if (s->cert->cert_flags & SSL_CERT_FLAG_BROKEN_PROTOCOL)
  880. return 1;
  881. # endif
  882. /*
  883. * If Suite B, AES128 MUST use P-256 and AES256 MUST use P-384, no other
  884. * curves permitted.
  885. */
  886. if (tls1_suiteb(s)) {
  887. /* Curve to check determined by ciphersuite */
  888. if (cid == TLS1_CK_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256)
  889. curve_id[1] = TLSEXT_curve_P_256;
  890. else if (cid == TLS1_CK_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384)
  891. curve_id[1] = TLSEXT_curve_P_384;
  892. else
  893. return 0;
  894. curve_id[0] = 0;
  895. /* Check this curve is acceptable */
  896. if (!tls1_check_ec_key(s, curve_id, NULL))
  897. return 0;
  898. /* If auto or setting curve from callback assume OK */
  899. if (s->cert->ecdh_tmp_auto || s->cert->ecdh_tmp_cb)
  900. return 1;
  901. /* Otherwise check curve is acceptable */
  902. else {
  903. unsigned char curve_tmp[2];
  904. if (!ec)
  905. return 0;
  906. if (!tls1_set_ec_id(curve_tmp, NULL, ec))
  907. return 0;
  908. if (!curve_tmp[0] || curve_tmp[1] == curve_id[1])
  909. return 1;
  910. return 0;
  911. }
  912. }
  913. if (s->cert->ecdh_tmp_auto) {
  914. /* Need a shared curve */
  915. if (tls1_shared_curve(s, 0))
  916. return 1;
  917. else
  918. return 0;
  919. }
  920. if (!ec) {
  921. if (s->cert->ecdh_tmp_cb)
  922. return 1;
  923. else
  924. return 0;
  925. }
  926. if (!tls1_set_ec_id(curve_id, NULL, ec))
  927. return 0;
  928. /* Set this to allow use of invalid curves for testing */
  929. # if 0
  930. return 1;
  931. # else
  932. return tls1_check_ec_key(s, curve_id, NULL);
  933. # endif
  934. }
  935. # endif /* OPENSSL_NO_ECDH */
  936. #else
  937. static int tls1_check_cert_param(SSL *s, X509 *x, int set_ee_md)
  938. {
  939. return 1;
  940. }
  941. #endif /* OPENSSL_NO_EC */
  942. #ifndef OPENSSL_NO_TLSEXT
  943. /*
  944. * List of supported signature algorithms and hashes. Should make this
  945. * customisable at some point, for now include everything we support.
  946. */
  947. # ifdef OPENSSL_NO_RSA
  948. # define tlsext_sigalg_rsa(md) /* */
  949. # else
  950. # define tlsext_sigalg_rsa(md) md, TLSEXT_signature_rsa,
  951. # endif
  952. # ifdef OPENSSL_NO_DSA
  953. # define tlsext_sigalg_dsa(md) /* */
  954. # else
  955. # define tlsext_sigalg_dsa(md) md, TLSEXT_signature_dsa,
  956. # endif
  957. # ifdef OPENSSL_NO_ECDSA
  958. # define tlsext_sigalg_ecdsa(md)
  959. /* */
  960. # else
  961. # define tlsext_sigalg_ecdsa(md) md, TLSEXT_signature_ecdsa,
  962. # endif
  963. # define tlsext_sigalg(md) \
  964. tlsext_sigalg_rsa(md) \
  965. tlsext_sigalg_dsa(md) \
  966. tlsext_sigalg_ecdsa(md)
  967. static unsigned char tls12_sigalgs[] = {
  968. # ifndef OPENSSL_NO_SHA512
  969. tlsext_sigalg(TLSEXT_hash_sha512)
  970. tlsext_sigalg(TLSEXT_hash_sha384)
  971. # endif
  972. # ifndef OPENSSL_NO_SHA256
  973. tlsext_sigalg(TLSEXT_hash_sha256)
  974. tlsext_sigalg(TLSEXT_hash_sha224)
  975. # endif
  976. # ifndef OPENSSL_NO_SHA
  977. tlsext_sigalg(TLSEXT_hash_sha1)
  978. # endif
  979. };
  980. # ifndef OPENSSL_NO_ECDSA
  981. static unsigned char suiteb_sigalgs[] = {
  982. tlsext_sigalg_ecdsa(TLSEXT_hash_sha256)
  983. tlsext_sigalg_ecdsa(TLSEXT_hash_sha384)
  984. };
  985. # endif
  986. size_t tls12_get_psigalgs(SSL *s, const unsigned char **psigs)
  987. {
  988. /*
  989. * If Suite B mode use Suite B sigalgs only, ignore any other
  990. * preferences.
  991. */
  992. # ifndef OPENSSL_NO_EC
  993. switch (tls1_suiteb(s)) {
  994. case SSL_CERT_FLAG_SUITEB_128_LOS:
  995. *psigs = suiteb_sigalgs;
  996. return sizeof(suiteb_sigalgs);
  997. case SSL_CERT_FLAG_SUITEB_128_LOS_ONLY:
  998. *psigs = suiteb_sigalgs;
  999. return 2;
  1000. case SSL_CERT_FLAG_SUITEB_192_LOS:
  1001. *psigs = suiteb_sigalgs + 2;
  1002. return 2;
  1003. }
  1004. # endif
  1005. /* If server use client authentication sigalgs if not NULL */
  1006. if (s->server && s->cert->client_sigalgs) {
  1007. *psigs = s->cert->client_sigalgs;
  1008. return s->cert->client_sigalgslen;
  1009. } else if (s->cert->conf_sigalgs) {
  1010. *psigs = s->cert->conf_sigalgs;
  1011. return s->cert->conf_sigalgslen;
  1012. } else {
  1013. *psigs = tls12_sigalgs;
  1014. return sizeof(tls12_sigalgs);
  1015. }
  1016. }
  1017. /*
  1018. * Check signature algorithm is consistent with sent supported signature
  1019. * algorithms and if so return relevant digest.
  1020. */
  1021. int tls12_check_peer_sigalg(const EVP_MD **pmd, SSL *s,
  1022. const unsigned char *sig, EVP_PKEY *pkey)
  1023. {
  1024. const unsigned char *sent_sigs;
  1025. size_t sent_sigslen, i;
  1026. int sigalg = tls12_get_sigid(pkey);
  1027. /* Should never happen */
  1028. if (sigalg == -1)
  1029. return -1;
  1030. /* Check key type is consistent with signature */
  1031. if (sigalg != (int)sig[1]) {
  1032. SSLerr(SSL_F_TLS12_CHECK_PEER_SIGALG, SSL_R_WRONG_SIGNATURE_TYPE);
  1033. return 0;
  1034. }
  1035. # ifndef OPENSSL_NO_EC
  1036. if (pkey->type == EVP_PKEY_EC) {
  1037. unsigned char curve_id[2], comp_id;
  1038. /* Check compression and curve matches extensions */
  1039. if (!tls1_set_ec_id(curve_id, &comp_id, pkey->pkey.ec))
  1040. return 0;
  1041. if (!s->server && !tls1_check_ec_key(s, curve_id, &comp_id)) {
  1042. SSLerr(SSL_F_TLS12_CHECK_PEER_SIGALG, SSL_R_WRONG_CURVE);
  1043. return 0;
  1044. }
  1045. /* If Suite B only P-384+SHA384 or P-256+SHA-256 allowed */
  1046. if (tls1_suiteb(s)) {
  1047. if (curve_id[0])
  1048. return 0;
  1049. if (curve_id[1] == TLSEXT_curve_P_256) {
  1050. if (sig[0] != TLSEXT_hash_sha256) {
  1051. SSLerr(SSL_F_TLS12_CHECK_PEER_SIGALG,
  1052. SSL_R_ILLEGAL_SUITEB_DIGEST);
  1053. return 0;
  1054. }
  1055. } else if (curve_id[1] == TLSEXT_curve_P_384) {
  1056. if (sig[0] != TLSEXT_hash_sha384) {
  1057. SSLerr(SSL_F_TLS12_CHECK_PEER_SIGALG,
  1058. SSL_R_ILLEGAL_SUITEB_DIGEST);
  1059. return 0;
  1060. }
  1061. } else
  1062. return 0;
  1063. }
  1064. } else if (tls1_suiteb(s))
  1065. return 0;
  1066. # endif
  1067. /* Check signature matches a type we sent */
  1068. sent_sigslen = tls12_get_psigalgs(s, &sent_sigs);
  1069. for (i = 0; i < sent_sigslen; i += 2, sent_sigs += 2) {
  1070. if (sig[0] == sent_sigs[0] && sig[1] == sent_sigs[1])
  1071. break;
  1072. }
  1073. /* Allow fallback to SHA1 if not strict mode */
  1074. if (i == sent_sigslen
  1075. && (sig[0] != TLSEXT_hash_sha1
  1076. || s->cert->cert_flags & SSL_CERT_FLAGS_CHECK_TLS_STRICT)) {
  1077. SSLerr(SSL_F_TLS12_CHECK_PEER_SIGALG, SSL_R_WRONG_SIGNATURE_TYPE);
  1078. return 0;
  1079. }
  1080. *pmd = tls12_get_hash(sig[0]);
  1081. if (*pmd == NULL) {
  1082. SSLerr(SSL_F_TLS12_CHECK_PEER_SIGALG, SSL_R_UNKNOWN_DIGEST);
  1083. return 0;
  1084. }
  1085. /*
  1086. * Store the digest used so applications can retrieve it if they wish.
  1087. */
  1088. if (s->session && s->session->sess_cert)
  1089. s->session->sess_cert->peer_key->digest = *pmd;
  1090. return 1;
  1091. }
  1092. /*
  1093. * Get a mask of disabled algorithms: an algorithm is disabled if it isn't
  1094. * supported or doesn't appear in supported signature algorithms. Unlike
  1095. * ssl_cipher_get_disabled this applies to a specific session and not global
  1096. * settings.
  1097. */
  1098. void ssl_set_client_disabled(SSL *s)
  1099. {
  1100. CERT *c = s->cert;
  1101. const unsigned char *sigalgs;
  1102. size_t i, sigalgslen;
  1103. int have_rsa = 0, have_dsa = 0, have_ecdsa = 0;
  1104. c->mask_a = 0;
  1105. c->mask_k = 0;
  1106. /* Don't allow TLS 1.2 only ciphers if we don't suppport them */
  1107. if (!SSL_CLIENT_USE_TLS1_2_CIPHERS(s))
  1108. c->mask_ssl = SSL_TLSV1_2;
  1109. else
  1110. c->mask_ssl = 0;
  1111. /*
  1112. * Now go through all signature algorithms seeing if we support any for
  1113. * RSA, DSA, ECDSA. Do this for all versions not just TLS 1.2.
  1114. */
  1115. sigalgslen = tls12_get_psigalgs(s, &sigalgs);
  1116. for (i = 0; i < sigalgslen; i += 2, sigalgs += 2) {
  1117. switch (sigalgs[1]) {
  1118. # ifndef OPENSSL_NO_RSA
  1119. case TLSEXT_signature_rsa:
  1120. have_rsa = 1;
  1121. break;
  1122. # endif
  1123. # ifndef OPENSSL_NO_DSA
  1124. case TLSEXT_signature_dsa:
  1125. have_dsa = 1;
  1126. break;
  1127. # endif
  1128. # ifndef OPENSSL_NO_ECDSA
  1129. case TLSEXT_signature_ecdsa:
  1130. have_ecdsa = 1;
  1131. break;
  1132. # endif
  1133. }
  1134. }
  1135. /*
  1136. * Disable auth and static DH if we don't include any appropriate
  1137. * signature algorithms.
  1138. */
  1139. if (!have_rsa) {
  1140. c->mask_a |= SSL_aRSA;
  1141. c->mask_k |= SSL_kDHr | SSL_kECDHr;
  1142. }
  1143. if (!have_dsa) {
  1144. c->mask_a |= SSL_aDSS;
  1145. c->mask_k |= SSL_kDHd;
  1146. }
  1147. if (!have_ecdsa) {
  1148. c->mask_a |= SSL_aECDSA;
  1149. c->mask_k |= SSL_kECDHe;
  1150. }
  1151. # ifndef OPENSSL_NO_KRB5
  1152. if (!kssl_tgt_is_available(s->kssl_ctx)) {
  1153. c->mask_a |= SSL_aKRB5;
  1154. c->mask_k |= SSL_kKRB5;
  1155. }
  1156. # endif
  1157. # ifndef OPENSSL_NO_PSK
  1158. /* with PSK there must be client callback set */
  1159. if (!s->psk_client_callback) {
  1160. c->mask_a |= SSL_aPSK;
  1161. c->mask_k |= SSL_kPSK;
  1162. }
  1163. # endif /* OPENSSL_NO_PSK */
  1164. # ifndef OPENSSL_NO_SRP
  1165. if (!(s->srp_ctx.srp_Mask & SSL_kSRP)) {
  1166. c->mask_a |= SSL_aSRP;
  1167. c->mask_k |= SSL_kSRP;
  1168. }
  1169. # endif
  1170. c->valid = 1;
  1171. }
  1172. unsigned char *ssl_add_clienthello_tlsext(SSL *s, unsigned char *buf,
  1173. unsigned char *limit, int *al)
  1174. {
  1175. int extdatalen = 0;
  1176. unsigned char *orig = buf;
  1177. unsigned char *ret = buf;
  1178. # ifndef OPENSSL_NO_EC
  1179. /* See if we support any ECC ciphersuites */
  1180. int using_ecc = 0;
  1181. if (s->version >= TLS1_VERSION || SSL_IS_DTLS(s)) {
  1182. int i;
  1183. unsigned long alg_k, alg_a;
  1184. STACK_OF(SSL_CIPHER) *cipher_stack = SSL_get_ciphers(s);
  1185. for (i = 0; i < sk_SSL_CIPHER_num(cipher_stack); i++) {
  1186. SSL_CIPHER *c = sk_SSL_CIPHER_value(cipher_stack, i);
  1187. alg_k = c->algorithm_mkey;
  1188. alg_a = c->algorithm_auth;
  1189. if ((alg_k & (SSL_kEECDH | SSL_kECDHr | SSL_kECDHe)
  1190. || (alg_a & SSL_aECDSA))) {
  1191. using_ecc = 1;
  1192. break;
  1193. }
  1194. }
  1195. }
  1196. # endif
  1197. /* don't add extensions for SSLv3 unless doing secure renegotiation */
  1198. if (s->client_version == SSL3_VERSION && !s->s3->send_connection_binding)
  1199. return orig;
  1200. ret += 2;
  1201. if (ret >= limit)
  1202. return NULL; /* this really never occurs, but ... */
  1203. if (s->tlsext_hostname != NULL) {
  1204. /* Add TLS extension servername to the Client Hello message */
  1205. unsigned long size_str;
  1206. long lenmax;
  1207. /*-
  1208. * check for enough space.
  1209. * 4 for the servername type and entension length
  1210. * 2 for servernamelist length
  1211. * 1 for the hostname type
  1212. * 2 for hostname length
  1213. * + hostname length
  1214. */
  1215. if ((lenmax = limit - ret - 9) < 0
  1216. || (size_str =
  1217. strlen(s->tlsext_hostname)) > (unsigned long)lenmax)
  1218. return NULL;
  1219. /* extension type and length */
  1220. s2n(TLSEXT_TYPE_server_name, ret);
  1221. s2n(size_str + 5, ret);
  1222. /* length of servername list */
  1223. s2n(size_str + 3, ret);
  1224. /* hostname type, length and hostname */
  1225. *(ret++) = (unsigned char)TLSEXT_NAMETYPE_host_name;
  1226. s2n(size_str, ret);
  1227. memcpy(ret, s->tlsext_hostname, size_str);
  1228. ret += size_str;
  1229. }
  1230. /* Add RI if renegotiating */
  1231. if (s->renegotiate) {
  1232. int el;
  1233. if (!ssl_add_clienthello_renegotiate_ext(s, 0, &el, 0)) {
  1234. SSLerr(SSL_F_SSL_ADD_CLIENTHELLO_TLSEXT, ERR_R_INTERNAL_ERROR);
  1235. return NULL;
  1236. }
  1237. if ((limit - ret - 4 - el) < 0)
  1238. return NULL;
  1239. s2n(TLSEXT_TYPE_renegotiate, ret);
  1240. s2n(el, ret);
  1241. if (!ssl_add_clienthello_renegotiate_ext(s, ret, &el, el)) {
  1242. SSLerr(SSL_F_SSL_ADD_CLIENTHELLO_TLSEXT, ERR_R_INTERNAL_ERROR);
  1243. return NULL;
  1244. }
  1245. ret += el;
  1246. }
  1247. # ifndef OPENSSL_NO_SRP
  1248. /* Add SRP username if there is one */
  1249. if (s->srp_ctx.login != NULL) { /* Add TLS extension SRP username to the
  1250. * Client Hello message */
  1251. int login_len = strlen(s->srp_ctx.login);
  1252. if (login_len > 255 || login_len == 0) {
  1253. SSLerr(SSL_F_SSL_ADD_CLIENTHELLO_TLSEXT, ERR_R_INTERNAL_ERROR);
  1254. return NULL;
  1255. }
  1256. /*-
  1257. * check for enough space.
  1258. * 4 for the srp type type and entension length
  1259. * 1 for the srp user identity
  1260. * + srp user identity length
  1261. */
  1262. if ((limit - ret - 5 - login_len) < 0)
  1263. return NULL;
  1264. /* fill in the extension */
  1265. s2n(TLSEXT_TYPE_srp, ret);
  1266. s2n(login_len + 1, ret);
  1267. (*ret++) = (unsigned char)login_len;
  1268. memcpy(ret, s->srp_ctx.login, login_len);
  1269. ret += login_len;
  1270. }
  1271. # endif
  1272. # ifndef OPENSSL_NO_EC
  1273. if (using_ecc) {
  1274. /*
  1275. * Add TLS extension ECPointFormats to the ClientHello message
  1276. */
  1277. long lenmax;
  1278. const unsigned char *pcurves, *pformats;
  1279. size_t num_curves, num_formats, curves_list_len;
  1280. tls1_get_formatlist(s, &pformats, &num_formats);
  1281. if ((lenmax = limit - ret - 5) < 0)
  1282. return NULL;
  1283. if (num_formats > (size_t)lenmax)
  1284. return NULL;
  1285. if (num_formats > 255) {
  1286. SSLerr(SSL_F_SSL_ADD_CLIENTHELLO_TLSEXT, ERR_R_INTERNAL_ERROR);
  1287. return NULL;
  1288. }
  1289. s2n(TLSEXT_TYPE_ec_point_formats, ret);
  1290. /* The point format list has 1-byte length. */
  1291. s2n(num_formats + 1, ret);
  1292. *(ret++) = (unsigned char)num_formats;
  1293. memcpy(ret, pformats, num_formats);
  1294. ret += num_formats;
  1295. /*
  1296. * Add TLS extension EllipticCurves to the ClientHello message
  1297. */
  1298. pcurves = s->tlsext_ellipticcurvelist;
  1299. if (!tls1_get_curvelist(s, 0, &pcurves, &num_curves))
  1300. return NULL;
  1301. if ((lenmax = limit - ret - 6) < 0)
  1302. return NULL;
  1303. if (num_curves > (size_t)lenmax / 2)
  1304. return NULL;
  1305. if (num_curves > 65532 / 2) {
  1306. SSLerr(SSL_F_SSL_ADD_CLIENTHELLO_TLSEXT, ERR_R_INTERNAL_ERROR);
  1307. return NULL;
  1308. }
  1309. curves_list_len = 2 * num_curves;
  1310. s2n(TLSEXT_TYPE_elliptic_curves, ret);
  1311. s2n(curves_list_len + 2, ret);
  1312. s2n(curves_list_len, ret);
  1313. memcpy(ret, pcurves, curves_list_len);
  1314. ret += curves_list_len;
  1315. }
  1316. # endif /* OPENSSL_NO_EC */
  1317. if (!(SSL_get_options(s) & SSL_OP_NO_TICKET)) {
  1318. int ticklen;
  1319. if (!s->new_session && s->session && s->session->tlsext_tick)
  1320. ticklen = s->session->tlsext_ticklen;
  1321. else if (s->session && s->tlsext_session_ticket &&
  1322. s->tlsext_session_ticket->data) {
  1323. ticklen = s->tlsext_session_ticket->length;
  1324. s->session->tlsext_tick = OPENSSL_malloc(ticklen);
  1325. if (!s->session->tlsext_tick)
  1326. return NULL;
  1327. memcpy(s->session->tlsext_tick,
  1328. s->tlsext_session_ticket->data, ticklen);
  1329. s->session->tlsext_ticklen = ticklen;
  1330. } else
  1331. ticklen = 0;
  1332. if (ticklen == 0 && s->tlsext_session_ticket &&
  1333. s->tlsext_session_ticket->data == NULL)
  1334. goto skip_ext;
  1335. /*
  1336. * Check for enough room 2 for extension type, 2 for len rest for
  1337. * ticket
  1338. */
  1339. if ((long)(limit - ret - 4 - ticklen) < 0)
  1340. return NULL;
  1341. s2n(TLSEXT_TYPE_session_ticket, ret);
  1342. s2n(ticklen, ret);
  1343. if (ticklen) {
  1344. memcpy(ret, s->session->tlsext_tick, ticklen);
  1345. ret += ticklen;
  1346. }
  1347. }
  1348. skip_ext:
  1349. if (SSL_USE_SIGALGS(s)) {
  1350. size_t salglen;
  1351. const unsigned char *salg;
  1352. salglen = tls12_get_psigalgs(s, &salg);
  1353. if ((size_t)(limit - ret) < salglen + 6)
  1354. return NULL;
  1355. s2n(TLSEXT_TYPE_signature_algorithms, ret);
  1356. s2n(salglen + 2, ret);
  1357. s2n(salglen, ret);
  1358. memcpy(ret, salg, salglen);
  1359. ret += salglen;
  1360. }
  1361. # ifdef TLSEXT_TYPE_opaque_prf_input
  1362. if (s->s3->client_opaque_prf_input != NULL) {
  1363. size_t col = s->s3->client_opaque_prf_input_len;
  1364. if ((long)(limit - ret - 6 - col < 0))
  1365. return NULL;
  1366. if (col > 0xFFFD) /* can't happen */
  1367. return NULL;
  1368. s2n(TLSEXT_TYPE_opaque_prf_input, ret);
  1369. s2n(col + 2, ret);
  1370. s2n(col, ret);
  1371. memcpy(ret, s->s3->client_opaque_prf_input, col);
  1372. ret += col;
  1373. }
  1374. # endif
  1375. if (s->tlsext_status_type == TLSEXT_STATUSTYPE_ocsp) {
  1376. int i;
  1377. long extlen, idlen, itmp;
  1378. OCSP_RESPID *id;
  1379. idlen = 0;
  1380. for (i = 0; i < sk_OCSP_RESPID_num(s->tlsext_ocsp_ids); i++) {
  1381. id = sk_OCSP_RESPID_value(s->tlsext_ocsp_ids, i);
  1382. itmp = i2d_OCSP_RESPID(id, NULL);
  1383. if (itmp <= 0)
  1384. return NULL;
  1385. idlen += itmp + 2;
  1386. }
  1387. if (s->tlsext_ocsp_exts) {
  1388. extlen = i2d_X509_EXTENSIONS(s->tlsext_ocsp_exts, NULL);
  1389. if (extlen < 0)
  1390. return NULL;
  1391. } else
  1392. extlen = 0;
  1393. if ((long)(limit - ret - 7 - extlen - idlen) < 0)
  1394. return NULL;
  1395. s2n(TLSEXT_TYPE_status_request, ret);
  1396. if (extlen + idlen > 0xFFF0)
  1397. return NULL;
  1398. s2n(extlen + idlen + 5, ret);
  1399. *(ret++) = TLSEXT_STATUSTYPE_ocsp;
  1400. s2n(idlen, ret);
  1401. for (i = 0; i < sk_OCSP_RESPID_num(s->tlsext_ocsp_ids); i++) {
  1402. /* save position of id len */
  1403. unsigned char *q = ret;
  1404. id = sk_OCSP_RESPID_value(s->tlsext_ocsp_ids, i);
  1405. /* skip over id len */
  1406. ret += 2;
  1407. itmp = i2d_OCSP_RESPID(id, &ret);
  1408. /* write id len */
  1409. s2n(itmp, q);
  1410. }
  1411. s2n(extlen, ret);
  1412. if (extlen > 0)
  1413. i2d_X509_EXTENSIONS(s->tlsext_ocsp_exts, &ret);
  1414. }
  1415. # ifndef OPENSSL_NO_HEARTBEATS
  1416. /* Add Heartbeat extension */
  1417. if ((limit - ret - 4 - 1) < 0)
  1418. return NULL;
  1419. s2n(TLSEXT_TYPE_heartbeat, ret);
  1420. s2n(1, ret);
  1421. /*-
  1422. * Set mode:
  1423. * 1: peer may send requests
  1424. * 2: peer not allowed to send requests
  1425. */
  1426. if (s->tlsext_heartbeat & SSL_TLSEXT_HB_DONT_RECV_REQUESTS)
  1427. *(ret++) = SSL_TLSEXT_HB_DONT_SEND_REQUESTS;
  1428. else
  1429. *(ret++) = SSL_TLSEXT_HB_ENABLED;
  1430. # endif
  1431. # ifndef OPENSSL_NO_NEXTPROTONEG
  1432. if (s->ctx->next_proto_select_cb && !s->s3->tmp.finish_md_len) {
  1433. /*
  1434. * The client advertises an emtpy extension to indicate its support
  1435. * for Next Protocol Negotiation
  1436. */
  1437. if (limit - ret - 4 < 0)
  1438. return NULL;
  1439. s2n(TLSEXT_TYPE_next_proto_neg, ret);
  1440. s2n(0, ret);
  1441. }
  1442. # endif
  1443. if (s->alpn_client_proto_list && !s->s3->tmp.finish_md_len) {
  1444. if ((size_t)(limit - ret) < 6 + s->alpn_client_proto_list_len)
  1445. return NULL;
  1446. s2n(TLSEXT_TYPE_application_layer_protocol_negotiation, ret);
  1447. s2n(2 + s->alpn_client_proto_list_len, ret);
  1448. s2n(s->alpn_client_proto_list_len, ret);
  1449. memcpy(ret, s->alpn_client_proto_list, s->alpn_client_proto_list_len);
  1450. ret += s->alpn_client_proto_list_len;
  1451. }
  1452. # ifndef OPENSSL_NO_SRTP
  1453. if (SSL_IS_DTLS(s) && SSL_get_srtp_profiles(s)) {
  1454. int el;
  1455. ssl_add_clienthello_use_srtp_ext(s, 0, &el, 0);
  1456. if ((limit - ret - 4 - el) < 0)
  1457. return NULL;
  1458. s2n(TLSEXT_TYPE_use_srtp, ret);
  1459. s2n(el, ret);
  1460. if (ssl_add_clienthello_use_srtp_ext(s, ret, &el, el)) {
  1461. SSLerr(SSL_F_SSL_ADD_CLIENTHELLO_TLSEXT, ERR_R_INTERNAL_ERROR);
  1462. return NULL;
  1463. }
  1464. ret += el;
  1465. }
  1466. # endif
  1467. custom_ext_init(&s->cert->cli_ext);
  1468. /* Add custom TLS Extensions to ClientHello */
  1469. if (!custom_ext_add(s, 0, &ret, limit, al))
  1470. return NULL;
  1471. /*
  1472. * Add padding to workaround bugs in F5 terminators. See
  1473. * https://tools.ietf.org/html/draft-agl-tls-padding-03 NB: because this
  1474. * code works out the length of all existing extensions it MUST always
  1475. * appear last.
  1476. */
  1477. if (s->options & SSL_OP_TLSEXT_PADDING) {
  1478. int hlen = ret - (unsigned char *)s->init_buf->data;
  1479. /*
  1480. * The code in s23_clnt.c to build ClientHello messages includes the
  1481. * 5-byte record header in the buffer, while the code in s3_clnt.c
  1482. * does not.
  1483. */
  1484. if (s->state == SSL23_ST_CW_CLNT_HELLO_A)
  1485. hlen -= 5;
  1486. if (hlen > 0xff && hlen < 0x200) {
  1487. hlen = 0x200 - hlen;
  1488. if (hlen >= 4)
  1489. hlen -= 4;
  1490. else
  1491. hlen = 0;
  1492. s2n(TLSEXT_TYPE_padding, ret);
  1493. s2n(hlen, ret);
  1494. memset(ret, 0, hlen);
  1495. ret += hlen;
  1496. }
  1497. }
  1498. if ((extdatalen = ret - orig - 2) == 0)
  1499. return orig;
  1500. s2n(extdatalen, orig);
  1501. return ret;
  1502. }
  1503. unsigned char *ssl_add_serverhello_tlsext(SSL *s, unsigned char *buf,
  1504. unsigned char *limit, int *al)
  1505. {
  1506. int extdatalen = 0;
  1507. unsigned char *orig = buf;
  1508. unsigned char *ret = buf;
  1509. # ifndef OPENSSL_NO_NEXTPROTONEG
  1510. int next_proto_neg_seen;
  1511. # endif
  1512. # ifndef OPENSSL_NO_EC
  1513. unsigned long alg_k = s->s3->tmp.new_cipher->algorithm_mkey;
  1514. unsigned long alg_a = s->s3->tmp.new_cipher->algorithm_auth;
  1515. int using_ecc = (alg_k & (SSL_kEECDH | SSL_kECDHr | SSL_kECDHe))
  1516. || (alg_a & SSL_aECDSA);
  1517. using_ecc = using_ecc && (s->session->tlsext_ecpointformatlist != NULL);
  1518. # endif
  1519. /*
  1520. * don't add extensions for SSLv3, unless doing secure renegotiation
  1521. */
  1522. if (s->version == SSL3_VERSION && !s->s3->send_connection_binding)
  1523. return orig;
  1524. ret += 2;
  1525. if (ret >= limit)
  1526. return NULL; /* this really never occurs, but ... */
  1527. if (!s->hit && s->servername_done == 1
  1528. && s->session->tlsext_hostname != NULL) {
  1529. if ((long)(limit - ret - 4) < 0)
  1530. return NULL;
  1531. s2n(TLSEXT_TYPE_server_name, ret);
  1532. s2n(0, ret);
  1533. }
  1534. if (s->s3->send_connection_binding) {
  1535. int el;
  1536. if (!ssl_add_serverhello_renegotiate_ext(s, 0, &el, 0)) {
  1537. SSLerr(SSL_F_SSL_ADD_SERVERHELLO_TLSEXT, ERR_R_INTERNAL_ERROR);
  1538. return NULL;
  1539. }
  1540. if ((limit - ret - 4 - el) < 0)
  1541. return NULL;
  1542. s2n(TLSEXT_TYPE_renegotiate, ret);
  1543. s2n(el, ret);
  1544. if (!ssl_add_serverhello_renegotiate_ext(s, ret, &el, el)) {
  1545. SSLerr(SSL_F_SSL_ADD_SERVERHELLO_TLSEXT, ERR_R_INTERNAL_ERROR);
  1546. return NULL;
  1547. }
  1548. ret += el;
  1549. }
  1550. # ifndef OPENSSL_NO_EC
  1551. if (using_ecc) {
  1552. const unsigned char *plist;
  1553. size_t plistlen;
  1554. /*
  1555. * Add TLS extension ECPointFormats to the ServerHello message
  1556. */
  1557. long lenmax;
  1558. tls1_get_formatlist(s, &plist, &plistlen);
  1559. if ((lenmax = limit - ret - 5) < 0)
  1560. return NULL;
  1561. if (plistlen > (size_t)lenmax)
  1562. return NULL;
  1563. if (plistlen > 255) {
  1564. SSLerr(SSL_F_SSL_ADD_SERVERHELLO_TLSEXT, ERR_R_INTERNAL_ERROR);
  1565. return NULL;
  1566. }
  1567. s2n(TLSEXT_TYPE_ec_point_formats, ret);
  1568. s2n(plistlen + 1, ret);
  1569. *(ret++) = (unsigned char)plistlen;
  1570. memcpy(ret, plist, plistlen);
  1571. ret += plistlen;
  1572. }
  1573. /*
  1574. * Currently the server should not respond with a SupportedCurves
  1575. * extension
  1576. */
  1577. # endif /* OPENSSL_NO_EC */
  1578. if (s->tlsext_ticket_expected && !(SSL_get_options(s) & SSL_OP_NO_TICKET)) {
  1579. if ((long)(limit - ret - 4) < 0)
  1580. return NULL;
  1581. s2n(TLSEXT_TYPE_session_ticket, ret);
  1582. s2n(0, ret);
  1583. }
  1584. if (s->tlsext_status_expected) {
  1585. if ((long)(limit - ret - 4) < 0)
  1586. return NULL;
  1587. s2n(TLSEXT_TYPE_status_request, ret);
  1588. s2n(0, ret);
  1589. }
  1590. # ifdef TLSEXT_TYPE_opaque_prf_input
  1591. if (s->s3->server_opaque_prf_input != NULL) {
  1592. size_t sol = s->s3->server_opaque_prf_input_len;
  1593. if ((long)(limit - ret - 6 - sol) < 0)
  1594. return NULL;
  1595. if (sol > 0xFFFD) /* can't happen */
  1596. return NULL;
  1597. s2n(TLSEXT_TYPE_opaque_prf_input, ret);
  1598. s2n(sol + 2, ret);
  1599. s2n(sol, ret);
  1600. memcpy(ret, s->s3->server_opaque_prf_input, sol);
  1601. ret += sol;
  1602. }
  1603. # endif
  1604. # ifndef OPENSSL_NO_SRTP
  1605. if (SSL_IS_DTLS(s) && s->srtp_profile) {
  1606. int el;
  1607. ssl_add_serverhello_use_srtp_ext(s, 0, &el, 0);
  1608. if ((limit - ret - 4 - el) < 0)
  1609. return NULL;
  1610. s2n(TLSEXT_TYPE_use_srtp, ret);
  1611. s2n(el, ret);
  1612. if (ssl_add_serverhello_use_srtp_ext(s, ret, &el, el)) {
  1613. SSLerr(SSL_F_SSL_ADD_SERVERHELLO_TLSEXT, ERR_R_INTERNAL_ERROR);
  1614. return NULL;
  1615. }
  1616. ret += el;
  1617. }
  1618. # endif
  1619. if (((s->s3->tmp.new_cipher->id & 0xFFFF) == 0x80
  1620. || (s->s3->tmp.new_cipher->id & 0xFFFF) == 0x81)
  1621. && (SSL_get_options(s) & SSL_OP_CRYPTOPRO_TLSEXT_BUG)) {
  1622. const unsigned char cryptopro_ext[36] = {
  1623. 0xfd, 0xe8, /* 65000 */
  1624. 0x00, 0x20, /* 32 bytes length */
  1625. 0x30, 0x1e, 0x30, 0x08, 0x06, 0x06, 0x2a, 0x85,
  1626. 0x03, 0x02, 0x02, 0x09, 0x30, 0x08, 0x06, 0x06,
  1627. 0x2a, 0x85, 0x03, 0x02, 0x02, 0x16, 0x30, 0x08,
  1628. 0x06, 0x06, 0x2a, 0x85, 0x03, 0x02, 0x02, 0x17
  1629. };
  1630. if (limit - ret < 36)
  1631. return NULL;
  1632. memcpy(ret, cryptopro_ext, 36);
  1633. ret += 36;
  1634. }
  1635. # ifndef OPENSSL_NO_HEARTBEATS
  1636. /* Add Heartbeat extension if we've received one */
  1637. if (s->tlsext_heartbeat & SSL_TLSEXT_HB_ENABLED) {
  1638. if ((limit - ret - 4 - 1) < 0)
  1639. return NULL;
  1640. s2n(TLSEXT_TYPE_heartbeat, ret);
  1641. s2n(1, ret);
  1642. /*-
  1643. * Set mode:
  1644. * 1: peer may send requests
  1645. * 2: peer not allowed to send requests
  1646. */
  1647. if (s->tlsext_heartbeat & SSL_TLSEXT_HB_DONT_RECV_REQUESTS)
  1648. *(ret++) = SSL_TLSEXT_HB_DONT_SEND_REQUESTS;
  1649. else
  1650. *(ret++) = SSL_TLSEXT_HB_ENABLED;
  1651. }
  1652. # endif
  1653. # ifndef OPENSSL_NO_NEXTPROTONEG
  1654. next_proto_neg_seen = s->s3->next_proto_neg_seen;
  1655. s->s3->next_proto_neg_seen = 0;
  1656. if (next_proto_neg_seen && s->ctx->next_protos_advertised_cb) {
  1657. const unsigned char *npa;
  1658. unsigned int npalen;
  1659. int r;
  1660. r = s->ctx->next_protos_advertised_cb(s, &npa, &npalen,
  1661. s->
  1662. ctx->next_protos_advertised_cb_arg);
  1663. if (r == SSL_TLSEXT_ERR_OK) {
  1664. if ((long)(limit - ret - 4 - npalen) < 0)
  1665. return NULL;
  1666. s2n(TLSEXT_TYPE_next_proto_neg, ret);
  1667. s2n(npalen, ret);
  1668. memcpy(ret, npa, npalen);
  1669. ret += npalen;
  1670. s->s3->next_proto_neg_seen = 1;
  1671. }
  1672. }
  1673. # endif
  1674. if (!custom_ext_add(s, 1, &ret, limit, al))
  1675. return NULL;
  1676. if (s->s3->alpn_selected) {
  1677. const unsigned char *selected = s->s3->alpn_selected;
  1678. unsigned len = s->s3->alpn_selected_len;
  1679. if ((long)(limit - ret - 4 - 2 - 1 - len) < 0)
  1680. return NULL;
  1681. s2n(TLSEXT_TYPE_application_layer_protocol_negotiation, ret);
  1682. s2n(3 + len, ret);
  1683. s2n(1 + len, ret);
  1684. *ret++ = len;
  1685. memcpy(ret, selected, len);
  1686. ret += len;
  1687. }
  1688. if ((extdatalen = ret - orig - 2) == 0)
  1689. return orig;
  1690. s2n(extdatalen, orig);
  1691. return ret;
  1692. }
  1693. # ifndef OPENSSL_NO_EC
  1694. /*-
  1695. * ssl_check_for_safari attempts to fingerprint Safari using OS X
  1696. * SecureTransport using the TLS extension block in |d|, of length |n|.
  1697. * Safari, since 10.6, sends exactly these extensions, in this order:
  1698. * SNI,
  1699. * elliptic_curves
  1700. * ec_point_formats
  1701. *
  1702. * We wish to fingerprint Safari because they broke ECDHE-ECDSA support in 10.8,
  1703. * but they advertise support. So enabling ECDHE-ECDSA ciphers breaks them.
  1704. * Sadly we cannot differentiate 10.6, 10.7 and 10.8.4 (which work), from
  1705. * 10.8..10.8.3 (which don't work).
  1706. */
  1707. static void ssl_check_for_safari(SSL *s, const unsigned char *data,
  1708. const unsigned char *limit)
  1709. {
  1710. unsigned short type, size;
  1711. static const unsigned char kSafariExtensionsBlock[] = {
  1712. 0x00, 0x0a, /* elliptic_curves extension */
  1713. 0x00, 0x08, /* 8 bytes */
  1714. 0x00, 0x06, /* 6 bytes of curve ids */
  1715. 0x00, 0x17, /* P-256 */
  1716. 0x00, 0x18, /* P-384 */
  1717. 0x00, 0x19, /* P-521 */
  1718. 0x00, 0x0b, /* ec_point_formats */
  1719. 0x00, 0x02, /* 2 bytes */
  1720. 0x01, /* 1 point format */
  1721. 0x00, /* uncompressed */
  1722. };
  1723. /* The following is only present in TLS 1.2 */
  1724. static const unsigned char kSafariTLS12ExtensionsBlock[] = {
  1725. 0x00, 0x0d, /* signature_algorithms */
  1726. 0x00, 0x0c, /* 12 bytes */
  1727. 0x00, 0x0a, /* 10 bytes */
  1728. 0x05, 0x01, /* SHA-384/RSA */
  1729. 0x04, 0x01, /* SHA-256/RSA */
  1730. 0x02, 0x01, /* SHA-1/RSA */
  1731. 0x04, 0x03, /* SHA-256/ECDSA */
  1732. 0x02, 0x03, /* SHA-1/ECDSA */
  1733. };
  1734. if (data >= (limit - 2))
  1735. return;
  1736. data += 2;
  1737. if (data > (limit - 4))
  1738. return;
  1739. n2s(data, type);
  1740. n2s(data, size);
  1741. if (type != TLSEXT_TYPE_server_name)
  1742. return;
  1743. if (data + size > limit)
  1744. return;
  1745. data += size;
  1746. if (TLS1_get_client_version(s) >= TLS1_2_VERSION) {
  1747. const size_t len1 = sizeof(kSafariExtensionsBlock);
  1748. const size_t len2 = sizeof(kSafariTLS12ExtensionsBlock);
  1749. if (data + len1 + len2 != limit)
  1750. return;
  1751. if (memcmp(data, kSafariExtensionsBlock, len1) != 0)
  1752. return;
  1753. if (memcmp(data + len1, kSafariTLS12ExtensionsBlock, len2) != 0)
  1754. return;
  1755. } else {
  1756. const size_t len = sizeof(kSafariExtensionsBlock);
  1757. if (data + len != limit)
  1758. return;
  1759. if (memcmp(data, kSafariExtensionsBlock, len) != 0)
  1760. return;
  1761. }
  1762. s->s3->is_probably_safari = 1;
  1763. }
  1764. # endif /* !OPENSSL_NO_EC */
  1765. /*
  1766. * tls1_alpn_handle_client_hello is called to process the ALPN extension in a
  1767. * ClientHello. data: the contents of the extension, not including the type
  1768. * and length. data_len: the number of bytes in |data| al: a pointer to the
  1769. * alert value to send in the event of a non-zero return. returns: 0 on
  1770. * success.
  1771. */
  1772. static int tls1_alpn_handle_client_hello(SSL *s, const unsigned char *data,
  1773. unsigned data_len, int *al)
  1774. {
  1775. unsigned i;
  1776. unsigned proto_len;
  1777. const unsigned char *selected;
  1778. unsigned char selected_len;
  1779. int r;
  1780. if (s->ctx->alpn_select_cb == NULL)
  1781. return 0;
  1782. if (data_len < 2)
  1783. goto parse_error;
  1784. /*
  1785. * data should contain a uint16 length followed by a series of 8-bit,
  1786. * length-prefixed strings.
  1787. */
  1788. i = ((unsigned)data[0]) << 8 | ((unsigned)data[1]);
  1789. data_len -= 2;
  1790. data += 2;
  1791. if (data_len != i)
  1792. goto parse_error;
  1793. if (data_len < 2)
  1794. goto parse_error;
  1795. for (i = 0; i < data_len;) {
  1796. proto_len = data[i];
  1797. i++;
  1798. if (proto_len == 0)
  1799. goto parse_error;
  1800. if (i + proto_len < i || i + proto_len > data_len)
  1801. goto parse_error;
  1802. i += proto_len;
  1803. }
  1804. r = s->ctx->alpn_select_cb(s, &selected, &selected_len, data, data_len,
  1805. s->ctx->alpn_select_cb_arg);
  1806. if (r == SSL_TLSEXT_ERR_OK) {
  1807. if (s->s3->alpn_selected)
  1808. OPENSSL_free(s->s3->alpn_selected);
  1809. s->s3->alpn_selected = OPENSSL_malloc(selected_len);
  1810. if (!s->s3->alpn_selected) {
  1811. *al = SSL_AD_INTERNAL_ERROR;
  1812. return -1;
  1813. }
  1814. memcpy(s->s3->alpn_selected, selected, selected_len);
  1815. s->s3->alpn_selected_len = selected_len;
  1816. }
  1817. return 0;
  1818. parse_error:
  1819. *al = SSL_AD_DECODE_ERROR;
  1820. return -1;
  1821. }
  1822. static int ssl_scan_clienthello_tlsext(SSL *s, unsigned char **p,
  1823. unsigned char *limit, int *al)
  1824. {
  1825. unsigned short type;
  1826. unsigned short size;
  1827. unsigned short len;
  1828. unsigned char *data = *p;
  1829. int renegotiate_seen = 0;
  1830. s->servername_done = 0;
  1831. s->tlsext_status_type = -1;
  1832. # ifndef OPENSSL_NO_NEXTPROTONEG
  1833. s->s3->next_proto_neg_seen = 0;
  1834. # endif
  1835. if (s->s3->alpn_selected) {
  1836. OPENSSL_free(s->s3->alpn_selected);
  1837. s->s3->alpn_selected = NULL;
  1838. }
  1839. # ifndef OPENSSL_NO_HEARTBEATS
  1840. s->tlsext_heartbeat &= ~(SSL_TLSEXT_HB_ENABLED |
  1841. SSL_TLSEXT_HB_DONT_SEND_REQUESTS);
  1842. # endif
  1843. # ifndef OPENSSL_NO_EC
  1844. if (s->options & SSL_OP_SAFARI_ECDHE_ECDSA_BUG)
  1845. ssl_check_for_safari(s, data, limit);
  1846. # endif /* !OPENSSL_NO_EC */
  1847. /* Clear any signature algorithms extension received */
  1848. if (s->cert->peer_sigalgs) {
  1849. OPENSSL_free(s->cert->peer_sigalgs);
  1850. s->cert->peer_sigalgs = NULL;
  1851. }
  1852. # ifndef OPENSSL_NO_SRP
  1853. if (s->srp_ctx.login != NULL) {
  1854. OPENSSL_free(s->srp_ctx.login);
  1855. s->srp_ctx.login = NULL;
  1856. }
  1857. # endif
  1858. s->srtp_profile = NULL;
  1859. if (data == limit)
  1860. goto ri_check;
  1861. if (data > (limit - 2))
  1862. goto err;
  1863. n2s(data, len);
  1864. if (data + len != limit)
  1865. goto err;
  1866. while (data <= (limit - 4)) {
  1867. n2s(data, type);
  1868. n2s(data, size);
  1869. if (data + size > (limit))
  1870. goto err;
  1871. # if 0
  1872. fprintf(stderr, "Received extension type %d size %d\n", type, size);
  1873. # endif
  1874. if (s->tlsext_debug_cb)
  1875. s->tlsext_debug_cb(s, 0, type, data, size, s->tlsext_debug_arg);
  1876. /*-
  1877. * The servername extension is treated as follows:
  1878. *
  1879. * - Only the hostname type is supported with a maximum length of 255.
  1880. * - The servername is rejected if too long or if it contains zeros,
  1881. * in which case an fatal alert is generated.
  1882. * - The servername field is maintained together with the session cache.
  1883. * - When a session is resumed, the servername call back invoked in order
  1884. * to allow the application to position itself to the right context.
  1885. * - The servername is acknowledged if it is new for a session or when
  1886. * it is identical to a previously used for the same session.
  1887. * Applications can control the behaviour. They can at any time
  1888. * set a 'desirable' servername for a new SSL object. This can be the
  1889. * case for example with HTTPS when a Host: header field is received and
  1890. * a renegotiation is requested. In this case, a possible servername
  1891. * presented in the new client hello is only acknowledged if it matches
  1892. * the value of the Host: field.
  1893. * - Applications must use SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION
  1894. * if they provide for changing an explicit servername context for the
  1895. * session, i.e. when the session has been established with a servername
  1896. * extension.
  1897. * - On session reconnect, the servername extension may be absent.
  1898. *
  1899. */
  1900. if (type == TLSEXT_TYPE_server_name) {
  1901. unsigned char *sdata;
  1902. int servname_type;
  1903. int dsize;
  1904. if (size < 2)
  1905. goto err;
  1906. n2s(data, dsize);
  1907. size -= 2;
  1908. if (dsize > size)
  1909. goto err;
  1910. sdata = data;
  1911. while (dsize > 3) {
  1912. servname_type = *(sdata++);
  1913. n2s(sdata, len);
  1914. dsize -= 3;
  1915. if (len > dsize)
  1916. goto err;
  1917. if (s->servername_done == 0)
  1918. switch (servname_type) {
  1919. case TLSEXT_NAMETYPE_host_name:
  1920. if (!s->hit) {
  1921. if (s->session->tlsext_hostname)
  1922. goto err;
  1923. if (len > TLSEXT_MAXLEN_host_name) {
  1924. *al = TLS1_AD_UNRECOGNIZED_NAME;
  1925. return 0;
  1926. }
  1927. if ((s->session->tlsext_hostname =
  1928. OPENSSL_malloc(len + 1)) == NULL) {
  1929. *al = TLS1_AD_INTERNAL_ERROR;
  1930. return 0;
  1931. }
  1932. memcpy(s->session->tlsext_hostname, sdata, len);
  1933. s->session->tlsext_hostname[len] = '\0';
  1934. if (strlen(s->session->tlsext_hostname) != len) {
  1935. OPENSSL_free(s->session->tlsext_hostname);
  1936. s->session->tlsext_hostname = NULL;
  1937. *al = TLS1_AD_UNRECOGNIZED_NAME;
  1938. return 0;
  1939. }
  1940. s->servername_done = 1;
  1941. } else
  1942. s->servername_done = s->session->tlsext_hostname
  1943. && strlen(s->session->tlsext_hostname) == len
  1944. && strncmp(s->session->tlsext_hostname,
  1945. (char *)sdata, len) == 0;
  1946. break;
  1947. default:
  1948. break;
  1949. }
  1950. dsize -= len;
  1951. }
  1952. if (dsize != 0)
  1953. goto err;
  1954. }
  1955. # ifndef OPENSSL_NO_SRP
  1956. else if (type == TLSEXT_TYPE_srp) {
  1957. if (size == 0 || ((len = data[0])) != (size - 1))
  1958. goto err;
  1959. if (s->srp_ctx.login != NULL)
  1960. goto err;
  1961. if ((s->srp_ctx.login = OPENSSL_malloc(len + 1)) == NULL)
  1962. return -1;
  1963. memcpy(s->srp_ctx.login, &data[1], len);
  1964. s->srp_ctx.login[len] = '\0';
  1965. if (strlen(s->srp_ctx.login) != len)
  1966. goto err;
  1967. }
  1968. # endif
  1969. # ifndef OPENSSL_NO_EC
  1970. else if (type == TLSEXT_TYPE_ec_point_formats) {
  1971. unsigned char *sdata = data;
  1972. int ecpointformatlist_length = *(sdata++);
  1973. if (ecpointformatlist_length != size - 1 ||
  1974. ecpointformatlist_length < 1)
  1975. goto err;
  1976. if (!s->hit) {
  1977. if (s->session->tlsext_ecpointformatlist) {
  1978. OPENSSL_free(s->session->tlsext_ecpointformatlist);
  1979. s->session->tlsext_ecpointformatlist = NULL;
  1980. }
  1981. s->session->tlsext_ecpointformatlist_length = 0;
  1982. if ((s->session->tlsext_ecpointformatlist =
  1983. OPENSSL_malloc(ecpointformatlist_length)) == NULL) {
  1984. *al = TLS1_AD_INTERNAL_ERROR;
  1985. return 0;
  1986. }
  1987. s->session->tlsext_ecpointformatlist_length =
  1988. ecpointformatlist_length;
  1989. memcpy(s->session->tlsext_ecpointformatlist, sdata,
  1990. ecpointformatlist_length);
  1991. }
  1992. # if 0
  1993. fprintf(stderr,
  1994. "ssl_parse_clienthello_tlsext s->session->tlsext_ecpointformatlist (length=%i) ",
  1995. s->session->tlsext_ecpointformatlist_length);
  1996. sdata = s->session->tlsext_ecpointformatlist;
  1997. for (i = 0; i < s->session->tlsext_ecpointformatlist_length; i++)
  1998. fprintf(stderr, "%i ", *(sdata++));
  1999. fprintf(stderr, "\n");
  2000. # endif
  2001. } else if (type == TLSEXT_TYPE_elliptic_curves) {
  2002. unsigned char *sdata = data;
  2003. int ellipticcurvelist_length = (*(sdata++) << 8);
  2004. ellipticcurvelist_length += (*(sdata++));
  2005. if (ellipticcurvelist_length != size - 2 ||
  2006. ellipticcurvelist_length < 1 ||
  2007. /* Each NamedCurve is 2 bytes. */
  2008. ellipticcurvelist_length & 1)
  2009. goto err;
  2010. if (!s->hit) {
  2011. if (s->session->tlsext_ellipticcurvelist)
  2012. goto err;
  2013. s->session->tlsext_ellipticcurvelist_length = 0;
  2014. if ((s->session->tlsext_ellipticcurvelist =
  2015. OPENSSL_malloc(ellipticcurvelist_length)) == NULL) {
  2016. *al = TLS1_AD_INTERNAL_ERROR;
  2017. return 0;
  2018. }
  2019. s->session->tlsext_ellipticcurvelist_length =
  2020. ellipticcurvelist_length;
  2021. memcpy(s->session->tlsext_ellipticcurvelist, sdata,
  2022. ellipticcurvelist_length);
  2023. }
  2024. # if 0
  2025. fprintf(stderr,
  2026. "ssl_parse_clienthello_tlsext s->session->tlsext_ellipticcurvelist (length=%i) ",
  2027. s->session->tlsext_ellipticcurvelist_length);
  2028. sdata = s->session->tlsext_ellipticcurvelist;
  2029. for (i = 0; i < s->session->tlsext_ellipticcurvelist_length; i++)
  2030. fprintf(stderr, "%i ", *(sdata++));
  2031. fprintf(stderr, "\n");
  2032. # endif
  2033. }
  2034. # endif /* OPENSSL_NO_EC */
  2035. # ifdef TLSEXT_TYPE_opaque_prf_input
  2036. else if (type == TLSEXT_TYPE_opaque_prf_input) {
  2037. unsigned char *sdata = data;
  2038. if (size < 2) {
  2039. *al = SSL_AD_DECODE_ERROR;
  2040. return 0;
  2041. }
  2042. n2s(sdata, s->s3->client_opaque_prf_input_len);
  2043. if (s->s3->client_opaque_prf_input_len != size - 2) {
  2044. *al = SSL_AD_DECODE_ERROR;
  2045. return 0;
  2046. }
  2047. if (s->s3->client_opaque_prf_input != NULL) {
  2048. /* shouldn't really happen */
  2049. OPENSSL_free(s->s3->client_opaque_prf_input);
  2050. }
  2051. /* dummy byte just to get non-NULL */
  2052. if (s->s3->client_opaque_prf_input_len == 0)
  2053. s->s3->client_opaque_prf_input = OPENSSL_malloc(1);
  2054. else
  2055. s->s3->client_opaque_prf_input =
  2056. BUF_memdup(sdata, s->s3->client_opaque_prf_input_len);
  2057. if (s->s3->client_opaque_prf_input == NULL) {
  2058. *al = TLS1_AD_INTERNAL_ERROR;
  2059. return 0;
  2060. }
  2061. }
  2062. # endif
  2063. else if (type == TLSEXT_TYPE_session_ticket) {
  2064. if (s->tls_session_ticket_ext_cb &&
  2065. !s->tls_session_ticket_ext_cb(s, data, size,
  2066. s->tls_session_ticket_ext_cb_arg))
  2067. {
  2068. *al = TLS1_AD_INTERNAL_ERROR;
  2069. return 0;
  2070. }
  2071. } else if (type == TLSEXT_TYPE_renegotiate) {
  2072. if (!ssl_parse_clienthello_renegotiate_ext(s, data, size, al))
  2073. return 0;
  2074. renegotiate_seen = 1;
  2075. } else if (type == TLSEXT_TYPE_signature_algorithms) {
  2076. int dsize;
  2077. if (s->cert->peer_sigalgs || size < 2)
  2078. goto err;
  2079. n2s(data, dsize);
  2080. size -= 2;
  2081. if (dsize != size || dsize & 1 || !dsize)
  2082. goto err;
  2083. if (!tls1_save_sigalgs(s, data, dsize))
  2084. goto err;
  2085. } else if (type == TLSEXT_TYPE_status_request) {
  2086. if (size < 5)
  2087. goto err;
  2088. s->tlsext_status_type = *data++;
  2089. size--;
  2090. if (s->tlsext_status_type == TLSEXT_STATUSTYPE_ocsp) {
  2091. const unsigned char *sdata;
  2092. int dsize;
  2093. /* Read in responder_id_list */
  2094. n2s(data, dsize);
  2095. size -= 2;
  2096. if (dsize > size)
  2097. goto err;
  2098. while (dsize > 0) {
  2099. OCSP_RESPID *id;
  2100. int idsize;
  2101. if (dsize < 4)
  2102. goto err;
  2103. n2s(data, idsize);
  2104. dsize -= 2 + idsize;
  2105. size -= 2 + idsize;
  2106. if (dsize < 0)
  2107. goto err;
  2108. sdata = data;
  2109. data += idsize;
  2110. id = d2i_OCSP_RESPID(NULL, &sdata, idsize);
  2111. if (!id)
  2112. goto err;
  2113. if (data != sdata) {
  2114. OCSP_RESPID_free(id);
  2115. goto err;
  2116. }
  2117. if (!s->tlsext_ocsp_ids
  2118. && !(s->tlsext_ocsp_ids =
  2119. sk_OCSP_RESPID_new_null())) {
  2120. OCSP_RESPID_free(id);
  2121. *al = SSL_AD_INTERNAL_ERROR;
  2122. return 0;
  2123. }
  2124. if (!sk_OCSP_RESPID_push(s->tlsext_ocsp_ids, id)) {
  2125. OCSP_RESPID_free(id);
  2126. *al = SSL_AD_INTERNAL_ERROR;
  2127. return 0;
  2128. }
  2129. }
  2130. /* Read in request_extensions */
  2131. if (size < 2)
  2132. goto err;
  2133. n2s(data, dsize);
  2134. size -= 2;
  2135. if (dsize != size)
  2136. goto err;
  2137. sdata = data;
  2138. if (dsize > 0) {
  2139. if (s->tlsext_ocsp_exts) {
  2140. sk_X509_EXTENSION_pop_free(s->tlsext_ocsp_exts,
  2141. X509_EXTENSION_free);
  2142. }
  2143. s->tlsext_ocsp_exts =
  2144. d2i_X509_EXTENSIONS(NULL, &sdata, dsize);
  2145. if (!s->tlsext_ocsp_exts || (data + dsize != sdata))
  2146. goto err;
  2147. }
  2148. }
  2149. /*
  2150. * We don't know what to do with any other type * so ignore it.
  2151. */
  2152. else
  2153. s->tlsext_status_type = -1;
  2154. }
  2155. # ifndef OPENSSL_NO_HEARTBEATS
  2156. else if (type == TLSEXT_TYPE_heartbeat) {
  2157. switch (data[0]) {
  2158. case 0x01: /* Client allows us to send HB requests */
  2159. s->tlsext_heartbeat |= SSL_TLSEXT_HB_ENABLED;
  2160. break;
  2161. case 0x02: /* Client doesn't accept HB requests */
  2162. s->tlsext_heartbeat |= SSL_TLSEXT_HB_ENABLED;
  2163. s->tlsext_heartbeat |= SSL_TLSEXT_HB_DONT_SEND_REQUESTS;
  2164. break;
  2165. default:
  2166. *al = SSL_AD_ILLEGAL_PARAMETER;
  2167. return 0;
  2168. }
  2169. }
  2170. # endif
  2171. # ifndef OPENSSL_NO_NEXTPROTONEG
  2172. else if (type == TLSEXT_TYPE_next_proto_neg &&
  2173. s->s3->tmp.finish_md_len == 0 &&
  2174. s->s3->alpn_selected == NULL) {
  2175. /*-
  2176. * We shouldn't accept this extension on a
  2177. * renegotiation.
  2178. *
  2179. * s->new_session will be set on renegotiation, but we
  2180. * probably shouldn't rely that it couldn't be set on
  2181. * the initial renegotation too in certain cases (when
  2182. * there's some other reason to disallow resuming an
  2183. * earlier session -- the current code won't be doing
  2184. * anything like that, but this might change).
  2185. *
  2186. * A valid sign that there's been a previous handshake
  2187. * in this connection is if s->s3->tmp.finish_md_len >
  2188. * 0. (We are talking about a check that will happen
  2189. * in the Hello protocol round, well before a new
  2190. * Finished message could have been computed.)
  2191. */
  2192. s->s3->next_proto_neg_seen = 1;
  2193. }
  2194. # endif
  2195. else if (type == TLSEXT_TYPE_application_layer_protocol_negotiation &&
  2196. s->ctx->alpn_select_cb && s->s3->tmp.finish_md_len == 0) {
  2197. if (tls1_alpn_handle_client_hello(s, data, size, al) != 0)
  2198. return 0;
  2199. # ifndef OPENSSL_NO_NEXTPROTONEG
  2200. /* ALPN takes precedence over NPN. */
  2201. s->s3->next_proto_neg_seen = 0;
  2202. # endif
  2203. }
  2204. /* session ticket processed earlier */
  2205. # ifndef OPENSSL_NO_SRTP
  2206. else if (SSL_IS_DTLS(s) && SSL_get_srtp_profiles(s)
  2207. && type == TLSEXT_TYPE_use_srtp) {
  2208. if (ssl_parse_clienthello_use_srtp_ext(s, data, size, al))
  2209. return 0;
  2210. }
  2211. # endif
  2212. data += size;
  2213. }
  2214. /* Spurious data on the end */
  2215. if (data != limit)
  2216. goto err;
  2217. *p = data;
  2218. ri_check:
  2219. /* Need RI if renegotiating */
  2220. if (!renegotiate_seen && s->renegotiate &&
  2221. !(s->options & SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION)) {
  2222. *al = SSL_AD_HANDSHAKE_FAILURE;
  2223. SSLerr(SSL_F_SSL_SCAN_CLIENTHELLO_TLSEXT,
  2224. SSL_R_UNSAFE_LEGACY_RENEGOTIATION_DISABLED);
  2225. return 0;
  2226. }
  2227. return 1;
  2228. err:
  2229. *al = SSL_AD_DECODE_ERROR;
  2230. return 0;
  2231. }
  2232. /*
  2233. * Parse any custom extensions found. "data" is the start of the extension data
  2234. * and "limit" is the end of the record. TODO: add strict syntax checking.
  2235. */
  2236. static int ssl_scan_clienthello_custom_tlsext(SSL *s,
  2237. const unsigned char *data,
  2238. const unsigned char *limit,
  2239. int *al)
  2240. {
  2241. unsigned short type, size, len;
  2242. /* If resumed session or no custom extensions nothing to do */
  2243. if (s->hit || s->cert->srv_ext.meths_count == 0)
  2244. return 1;
  2245. if (data >= limit - 2)
  2246. return 1;
  2247. n2s(data, len);
  2248. if (data > limit - len)
  2249. return 1;
  2250. while (data <= limit - 4) {
  2251. n2s(data, type);
  2252. n2s(data, size);
  2253. if (data + size > limit)
  2254. return 1;
  2255. if (custom_ext_parse(s, 1 /* server */ , type, data, size, al) <= 0)
  2256. return 0;
  2257. data += size;
  2258. }
  2259. return 1;
  2260. }
  2261. int ssl_parse_clienthello_tlsext(SSL *s, unsigned char **p,
  2262. unsigned char *limit)
  2263. {
  2264. int al = -1;
  2265. unsigned char *ptmp = *p;
  2266. /*
  2267. * Internally supported extensions are parsed first so SNI can be handled
  2268. * before custom extensions. An application processing SNI will typically
  2269. * switch the parent context using SSL_set_SSL_CTX and custom extensions
  2270. * need to be handled by the new SSL_CTX structure.
  2271. */
  2272. if (ssl_scan_clienthello_tlsext(s, p, limit, &al) <= 0) {
  2273. ssl3_send_alert(s, SSL3_AL_FATAL, al);
  2274. return 0;
  2275. }
  2276. if (ssl_check_clienthello_tlsext_early(s) <= 0) {
  2277. SSLerr(SSL_F_SSL_PARSE_CLIENTHELLO_TLSEXT, SSL_R_CLIENTHELLO_TLSEXT);
  2278. return 0;
  2279. }
  2280. custom_ext_init(&s->cert->srv_ext);
  2281. if (ssl_scan_clienthello_custom_tlsext(s, ptmp, limit, &al) <= 0) {
  2282. ssl3_send_alert(s, SSL3_AL_FATAL, al);
  2283. return 0;
  2284. }
  2285. return 1;
  2286. }
  2287. # ifndef OPENSSL_NO_NEXTPROTONEG
  2288. /*
  2289. * ssl_next_proto_validate validates a Next Protocol Negotiation block. No
  2290. * elements of zero length are allowed and the set of elements must exactly
  2291. * fill the length of the block.
  2292. */
  2293. static char ssl_next_proto_validate(unsigned char *d, unsigned len)
  2294. {
  2295. unsigned int off = 0;
  2296. while (off < len) {
  2297. if (d[off] == 0)
  2298. return 0;
  2299. off += d[off];
  2300. off++;
  2301. }
  2302. return off == len;
  2303. }
  2304. # endif
  2305. static int ssl_scan_serverhello_tlsext(SSL *s, unsigned char **p,
  2306. unsigned char *d, int n, int *al)
  2307. {
  2308. unsigned short length;
  2309. unsigned short type;
  2310. unsigned short size;
  2311. unsigned char *data = *p;
  2312. int tlsext_servername = 0;
  2313. int renegotiate_seen = 0;
  2314. # ifndef OPENSSL_NO_NEXTPROTONEG
  2315. s->s3->next_proto_neg_seen = 0;
  2316. # endif
  2317. s->tlsext_ticket_expected = 0;
  2318. if (s->s3->alpn_selected) {
  2319. OPENSSL_free(s->s3->alpn_selected);
  2320. s->s3->alpn_selected = NULL;
  2321. }
  2322. # ifndef OPENSSL_NO_HEARTBEATS
  2323. s->tlsext_heartbeat &= ~(SSL_TLSEXT_HB_ENABLED |
  2324. SSL_TLSEXT_HB_DONT_SEND_REQUESTS);
  2325. # endif
  2326. if (data >= (d + n - 2))
  2327. goto ri_check;
  2328. n2s(data, length);
  2329. if (data + length != d + n) {
  2330. *al = SSL_AD_DECODE_ERROR;
  2331. return 0;
  2332. }
  2333. while (data <= (d + n - 4)) {
  2334. n2s(data, type);
  2335. n2s(data, size);
  2336. if (data + size > (d + n))
  2337. goto ri_check;
  2338. if (s->tlsext_debug_cb)
  2339. s->tlsext_debug_cb(s, 1, type, data, size, s->tlsext_debug_arg);
  2340. if (type == TLSEXT_TYPE_server_name) {
  2341. if (s->tlsext_hostname == NULL || size > 0) {
  2342. *al = TLS1_AD_UNRECOGNIZED_NAME;
  2343. return 0;
  2344. }
  2345. tlsext_servername = 1;
  2346. }
  2347. # ifndef OPENSSL_NO_EC
  2348. else if (type == TLSEXT_TYPE_ec_point_formats) {
  2349. unsigned char *sdata = data;
  2350. int ecpointformatlist_length = *(sdata++);
  2351. if (ecpointformatlist_length != size - 1) {
  2352. *al = TLS1_AD_DECODE_ERROR;
  2353. return 0;
  2354. }
  2355. if (!s->hit) {
  2356. s->session->tlsext_ecpointformatlist_length = 0;
  2357. if (s->session->tlsext_ecpointformatlist != NULL)
  2358. OPENSSL_free(s->session->tlsext_ecpointformatlist);
  2359. if ((s->session->tlsext_ecpointformatlist =
  2360. OPENSSL_malloc(ecpointformatlist_length)) == NULL) {
  2361. *al = TLS1_AD_INTERNAL_ERROR;
  2362. return 0;
  2363. }
  2364. s->session->tlsext_ecpointformatlist_length =
  2365. ecpointformatlist_length;
  2366. memcpy(s->session->tlsext_ecpointformatlist, sdata,
  2367. ecpointformatlist_length);
  2368. }
  2369. # if 0
  2370. fprintf(stderr,
  2371. "ssl_parse_serverhello_tlsext s->session->tlsext_ecpointformatlist ");
  2372. sdata = s->session->tlsext_ecpointformatlist;
  2373. for (i = 0; i < s->session->tlsext_ecpointformatlist_length; i++)
  2374. fprintf(stderr, "%i ", *(sdata++));
  2375. fprintf(stderr, "\n");
  2376. # endif
  2377. }
  2378. # endif /* OPENSSL_NO_EC */
  2379. else if (type == TLSEXT_TYPE_session_ticket) {
  2380. if (s->tls_session_ticket_ext_cb &&
  2381. !s->tls_session_ticket_ext_cb(s, data, size,
  2382. s->tls_session_ticket_ext_cb_arg))
  2383. {
  2384. *al = TLS1_AD_INTERNAL_ERROR;
  2385. return 0;
  2386. }
  2387. if ((SSL_get_options(s) & SSL_OP_NO_TICKET)
  2388. || (size > 0)) {
  2389. *al = TLS1_AD_UNSUPPORTED_EXTENSION;
  2390. return 0;
  2391. }
  2392. s->tlsext_ticket_expected = 1;
  2393. }
  2394. # ifdef TLSEXT_TYPE_opaque_prf_input
  2395. else if (type == TLSEXT_TYPE_opaque_prf_input) {
  2396. unsigned char *sdata = data;
  2397. if (size < 2) {
  2398. *al = SSL_AD_DECODE_ERROR;
  2399. return 0;
  2400. }
  2401. n2s(sdata, s->s3->server_opaque_prf_input_len);
  2402. if (s->s3->server_opaque_prf_input_len != size - 2) {
  2403. *al = SSL_AD_DECODE_ERROR;
  2404. return 0;
  2405. }
  2406. if (s->s3->server_opaque_prf_input != NULL) {
  2407. /* shouldn't really happen */
  2408. OPENSSL_free(s->s3->server_opaque_prf_input);
  2409. }
  2410. if (s->s3->server_opaque_prf_input_len == 0) {
  2411. /* dummy byte just to get non-NULL */
  2412. s->s3->server_opaque_prf_input = OPENSSL_malloc(1);
  2413. } else {
  2414. s->s3->server_opaque_prf_input =
  2415. BUF_memdup(sdata, s->s3->server_opaque_prf_input_len);
  2416. }
  2417. if (s->s3->server_opaque_prf_input == NULL) {
  2418. *al = TLS1_AD_INTERNAL_ERROR;
  2419. return 0;
  2420. }
  2421. }
  2422. # endif
  2423. else if (type == TLSEXT_TYPE_status_request) {
  2424. /*
  2425. * MUST be empty and only sent if we've requested a status
  2426. * request message.
  2427. */
  2428. if ((s->tlsext_status_type == -1) || (size > 0)) {
  2429. *al = TLS1_AD_UNSUPPORTED_EXTENSION;
  2430. return 0;
  2431. }
  2432. /* Set flag to expect CertificateStatus message */
  2433. s->tlsext_status_expected = 1;
  2434. }
  2435. # ifndef OPENSSL_NO_NEXTPROTONEG
  2436. else if (type == TLSEXT_TYPE_next_proto_neg &&
  2437. s->s3->tmp.finish_md_len == 0) {
  2438. unsigned char *selected;
  2439. unsigned char selected_len;
  2440. /* We must have requested it. */
  2441. if (s->ctx->next_proto_select_cb == NULL) {
  2442. *al = TLS1_AD_UNSUPPORTED_EXTENSION;
  2443. return 0;
  2444. }
  2445. /* The data must be valid */
  2446. if (!ssl_next_proto_validate(data, size)) {
  2447. *al = TLS1_AD_DECODE_ERROR;
  2448. return 0;
  2449. }
  2450. if (s->
  2451. ctx->next_proto_select_cb(s, &selected, &selected_len, data,
  2452. size,
  2453. s->ctx->next_proto_select_cb_arg) !=
  2454. SSL_TLSEXT_ERR_OK) {
  2455. *al = TLS1_AD_INTERNAL_ERROR;
  2456. return 0;
  2457. }
  2458. s->next_proto_negotiated = OPENSSL_malloc(selected_len);
  2459. if (!s->next_proto_negotiated) {
  2460. *al = TLS1_AD_INTERNAL_ERROR;
  2461. return 0;
  2462. }
  2463. memcpy(s->next_proto_negotiated, selected, selected_len);
  2464. s->next_proto_negotiated_len = selected_len;
  2465. s->s3->next_proto_neg_seen = 1;
  2466. }
  2467. # endif
  2468. else if (type == TLSEXT_TYPE_application_layer_protocol_negotiation) {
  2469. unsigned len;
  2470. /* We must have requested it. */
  2471. if (s->alpn_client_proto_list == NULL) {
  2472. *al = TLS1_AD_UNSUPPORTED_EXTENSION;
  2473. return 0;
  2474. }
  2475. if (size < 4) {
  2476. *al = TLS1_AD_DECODE_ERROR;
  2477. return 0;
  2478. }
  2479. /*-
  2480. * The extension data consists of:
  2481. * uint16 list_length
  2482. * uint8 proto_length;
  2483. * uint8 proto[proto_length];
  2484. */
  2485. len = data[0];
  2486. len <<= 8;
  2487. len |= data[1];
  2488. if (len != (unsigned)size - 2) {
  2489. *al = TLS1_AD_DECODE_ERROR;
  2490. return 0;
  2491. }
  2492. len = data[2];
  2493. if (len != (unsigned)size - 3) {
  2494. *al = TLS1_AD_DECODE_ERROR;
  2495. return 0;
  2496. }
  2497. if (s->s3->alpn_selected)
  2498. OPENSSL_free(s->s3->alpn_selected);
  2499. s->s3->alpn_selected = OPENSSL_malloc(len);
  2500. if (!s->s3->alpn_selected) {
  2501. *al = TLS1_AD_INTERNAL_ERROR;
  2502. return 0;
  2503. }
  2504. memcpy(s->s3->alpn_selected, data + 3, len);
  2505. s->s3->alpn_selected_len = len;
  2506. }
  2507. else if (type == TLSEXT_TYPE_renegotiate) {
  2508. if (!ssl_parse_serverhello_renegotiate_ext(s, data, size, al))
  2509. return 0;
  2510. renegotiate_seen = 1;
  2511. }
  2512. # ifndef OPENSSL_NO_HEARTBEATS
  2513. else if (type == TLSEXT_TYPE_heartbeat) {
  2514. switch (data[0]) {
  2515. case 0x01: /* Server allows us to send HB requests */
  2516. s->tlsext_heartbeat |= SSL_TLSEXT_HB_ENABLED;
  2517. break;
  2518. case 0x02: /* Server doesn't accept HB requests */
  2519. s->tlsext_heartbeat |= SSL_TLSEXT_HB_ENABLED;
  2520. s->tlsext_heartbeat |= SSL_TLSEXT_HB_DONT_SEND_REQUESTS;
  2521. break;
  2522. default:
  2523. *al = SSL_AD_ILLEGAL_PARAMETER;
  2524. return 0;
  2525. }
  2526. }
  2527. # endif
  2528. # ifndef OPENSSL_NO_SRTP
  2529. else if (SSL_IS_DTLS(s) && type == TLSEXT_TYPE_use_srtp) {
  2530. if (ssl_parse_serverhello_use_srtp_ext(s, data, size, al))
  2531. return 0;
  2532. }
  2533. # endif
  2534. /*
  2535. * If this extension type was not otherwise handled, but matches a
  2536. * custom_cli_ext_record, then send it to the c callback
  2537. */
  2538. else if (custom_ext_parse(s, 0, type, data, size, al) <= 0)
  2539. return 0;
  2540. data += size;
  2541. }
  2542. if (data != d + n) {
  2543. *al = SSL_AD_DECODE_ERROR;
  2544. return 0;
  2545. }
  2546. if (!s->hit && tlsext_servername == 1) {
  2547. if (s->tlsext_hostname) {
  2548. if (s->session->tlsext_hostname == NULL) {
  2549. s->session->tlsext_hostname = BUF_strdup(s->tlsext_hostname);
  2550. if (!s->session->tlsext_hostname) {
  2551. *al = SSL_AD_UNRECOGNIZED_NAME;
  2552. return 0;
  2553. }
  2554. } else {
  2555. *al = SSL_AD_DECODE_ERROR;
  2556. return 0;
  2557. }
  2558. }
  2559. }
  2560. *p = data;
  2561. ri_check:
  2562. /*
  2563. * Determine if we need to see RI. Strictly speaking if we want to avoid
  2564. * an attack we should *always* see RI even on initial server hello
  2565. * because the client doesn't see any renegotiation during an attack.
  2566. * However this would mean we could not connect to any server which
  2567. * doesn't support RI so for the immediate future tolerate RI absence on
  2568. * initial connect only.
  2569. */
  2570. if (!renegotiate_seen && !(s->options & SSL_OP_LEGACY_SERVER_CONNECT)
  2571. && !(s->options & SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION)) {
  2572. *al = SSL_AD_HANDSHAKE_FAILURE;
  2573. SSLerr(SSL_F_SSL_SCAN_SERVERHELLO_TLSEXT,
  2574. SSL_R_UNSAFE_LEGACY_RENEGOTIATION_DISABLED);
  2575. return 0;
  2576. }
  2577. return 1;
  2578. }
  2579. int ssl_prepare_clienthello_tlsext(SSL *s)
  2580. {
  2581. # ifdef TLSEXT_TYPE_opaque_prf_input
  2582. {
  2583. int r = 1;
  2584. if (s->ctx->tlsext_opaque_prf_input_callback != 0) {
  2585. r = s->ctx->tlsext_opaque_prf_input_callback(s, NULL, 0,
  2586. s->
  2587. ctx->tlsext_opaque_prf_input_callback_arg);
  2588. if (!r)
  2589. return -1;
  2590. }
  2591. if (s->tlsext_opaque_prf_input != NULL) {
  2592. if (s->s3->client_opaque_prf_input != NULL) {
  2593. /* shouldn't really happen */
  2594. OPENSSL_free(s->s3->client_opaque_prf_input);
  2595. }
  2596. if (s->tlsext_opaque_prf_input_len == 0) {
  2597. /* dummy byte just to get non-NULL */
  2598. s->s3->client_opaque_prf_input = OPENSSL_malloc(1);
  2599. } else {
  2600. s->s3->client_opaque_prf_input =
  2601. BUF_memdup(s->tlsext_opaque_prf_input,
  2602. s->tlsext_opaque_prf_input_len);
  2603. }
  2604. if (s->s3->client_opaque_prf_input == NULL) {
  2605. SSLerr(SSL_F_SSL_PREPARE_CLIENTHELLO_TLSEXT,
  2606. ERR_R_MALLOC_FAILURE);
  2607. return -1;
  2608. }
  2609. s->s3->client_opaque_prf_input_len =
  2610. s->tlsext_opaque_prf_input_len;
  2611. }
  2612. if (r == 2)
  2613. /*
  2614. * at callback's request, insist on receiving an appropriate
  2615. * server opaque PRF input
  2616. */
  2617. s->s3->server_opaque_prf_input_len =
  2618. s->tlsext_opaque_prf_input_len;
  2619. }
  2620. # endif
  2621. return 1;
  2622. }
  2623. int ssl_prepare_serverhello_tlsext(SSL *s)
  2624. {
  2625. return 1;
  2626. }
  2627. static int ssl_check_clienthello_tlsext_early(SSL *s)
  2628. {
  2629. int ret = SSL_TLSEXT_ERR_NOACK;
  2630. int al = SSL_AD_UNRECOGNIZED_NAME;
  2631. # ifndef OPENSSL_NO_EC
  2632. /*
  2633. * The handling of the ECPointFormats extension is done elsewhere, namely
  2634. * in ssl3_choose_cipher in s3_lib.c.
  2635. */
  2636. /*
  2637. * The handling of the EllipticCurves extension is done elsewhere, namely
  2638. * in ssl3_choose_cipher in s3_lib.c.
  2639. */
  2640. # endif
  2641. if (s->ctx != NULL && s->ctx->tlsext_servername_callback != 0)
  2642. ret =
  2643. s->ctx->tlsext_servername_callback(s, &al,
  2644. s->ctx->tlsext_servername_arg);
  2645. else if (s->initial_ctx != NULL
  2646. && s->initial_ctx->tlsext_servername_callback != 0)
  2647. ret =
  2648. s->initial_ctx->tlsext_servername_callback(s, &al,
  2649. s->
  2650. initial_ctx->tlsext_servername_arg);
  2651. # ifdef TLSEXT_TYPE_opaque_prf_input
  2652. {
  2653. /*
  2654. * This sort of belongs into ssl_prepare_serverhello_tlsext(), but we
  2655. * might be sending an alert in response to the client hello, so this
  2656. * has to happen here in ssl_check_clienthello_tlsext_early().
  2657. */
  2658. int r = 1;
  2659. if (s->ctx->tlsext_opaque_prf_input_callback != 0) {
  2660. r = s->ctx->tlsext_opaque_prf_input_callback(s, NULL, 0,
  2661. s->
  2662. ctx->tlsext_opaque_prf_input_callback_arg);
  2663. if (!r) {
  2664. ret = SSL_TLSEXT_ERR_ALERT_FATAL;
  2665. al = SSL_AD_INTERNAL_ERROR;
  2666. goto err;
  2667. }
  2668. }
  2669. if (s->s3->server_opaque_prf_input != NULL) {
  2670. /* shouldn't really happen */
  2671. OPENSSL_free(s->s3->server_opaque_prf_input);
  2672. }
  2673. s->s3->server_opaque_prf_input = NULL;
  2674. if (s->tlsext_opaque_prf_input != NULL) {
  2675. if (s->s3->client_opaque_prf_input != NULL &&
  2676. s->s3->client_opaque_prf_input_len ==
  2677. s->tlsext_opaque_prf_input_len) {
  2678. /*
  2679. * can only use this extension if we have a server opaque PRF
  2680. * input of the same length as the client opaque PRF input!
  2681. */
  2682. if (s->tlsext_opaque_prf_input_len == 0) {
  2683. /* dummy byte just to get non-NULL */
  2684. s->s3->server_opaque_prf_input = OPENSSL_malloc(1);
  2685. } else {
  2686. s->s3->server_opaque_prf_input =
  2687. BUF_memdup(s->tlsext_opaque_prf_input,
  2688. s->tlsext_opaque_prf_input_len);
  2689. }
  2690. if (s->s3->server_opaque_prf_input == NULL) {
  2691. ret = SSL_TLSEXT_ERR_ALERT_FATAL;
  2692. al = SSL_AD_INTERNAL_ERROR;
  2693. goto err;
  2694. }
  2695. s->s3->server_opaque_prf_input_len =
  2696. s->tlsext_opaque_prf_input_len;
  2697. }
  2698. }
  2699. if (r == 2 && s->s3->server_opaque_prf_input == NULL) {
  2700. /*
  2701. * The callback wants to enforce use of the extension, but we
  2702. * can't do that with the client opaque PRF input; abort the
  2703. * handshake.
  2704. */
  2705. ret = SSL_TLSEXT_ERR_ALERT_FATAL;
  2706. al = SSL_AD_HANDSHAKE_FAILURE;
  2707. }
  2708. }
  2709. err:
  2710. # endif
  2711. switch (ret) {
  2712. case SSL_TLSEXT_ERR_ALERT_FATAL:
  2713. ssl3_send_alert(s, SSL3_AL_FATAL, al);
  2714. return -1;
  2715. case SSL_TLSEXT_ERR_ALERT_WARNING:
  2716. ssl3_send_alert(s, SSL3_AL_WARNING, al);
  2717. return 1;
  2718. case SSL_TLSEXT_ERR_NOACK:
  2719. s->servername_done = 0;
  2720. default:
  2721. return 1;
  2722. }
  2723. }
  2724. int tls1_set_server_sigalgs(SSL *s)
  2725. {
  2726. int al;
  2727. size_t i;
  2728. /* Clear any shared sigtnature algorithms */
  2729. if (s->cert->shared_sigalgs) {
  2730. OPENSSL_free(s->cert->shared_sigalgs);
  2731. s->cert->shared_sigalgs = NULL;
  2732. s->cert->shared_sigalgslen = 0;
  2733. }
  2734. /* Clear certificate digests and validity flags */
  2735. for (i = 0; i < SSL_PKEY_NUM; i++) {
  2736. s->cert->pkeys[i].digest = NULL;
  2737. s->cert->pkeys[i].valid_flags = 0;
  2738. }
  2739. /* If sigalgs received process it. */
  2740. if (s->cert->peer_sigalgs) {
  2741. if (!tls1_process_sigalgs(s)) {
  2742. SSLerr(SSL_F_TLS1_SET_SERVER_SIGALGS, ERR_R_MALLOC_FAILURE);
  2743. al = SSL_AD_INTERNAL_ERROR;
  2744. goto err;
  2745. }
  2746. /* Fatal error is no shared signature algorithms */
  2747. if (!s->cert->shared_sigalgs) {
  2748. SSLerr(SSL_F_TLS1_SET_SERVER_SIGALGS,
  2749. SSL_R_NO_SHARED_SIGATURE_ALGORITHMS);
  2750. al = SSL_AD_ILLEGAL_PARAMETER;
  2751. goto err;
  2752. }
  2753. } else
  2754. ssl_cert_set_default_md(s->cert);
  2755. return 1;
  2756. err:
  2757. ssl3_send_alert(s, SSL3_AL_FATAL, al);
  2758. return 0;
  2759. }
  2760. int ssl_check_clienthello_tlsext_late(SSL *s)
  2761. {
  2762. int ret = SSL_TLSEXT_ERR_OK;
  2763. int al;
  2764. /*
  2765. * If status request then ask callback what to do. Note: this must be
  2766. * called after servername callbacks in case the certificate has changed,
  2767. * and must be called after the cipher has been chosen because this may
  2768. * influence which certificate is sent
  2769. */
  2770. if ((s->tlsext_status_type != -1) && s->ctx && s->ctx->tlsext_status_cb) {
  2771. int r;
  2772. CERT_PKEY *certpkey;
  2773. certpkey = ssl_get_server_send_pkey(s);
  2774. /* If no certificate can't return certificate status */
  2775. if (certpkey == NULL) {
  2776. s->tlsext_status_expected = 0;
  2777. return 1;
  2778. }
  2779. /*
  2780. * Set current certificate to one we will use so SSL_get_certificate
  2781. * et al can pick it up.
  2782. */
  2783. s->cert->key = certpkey;
  2784. r = s->ctx->tlsext_status_cb(s, s->ctx->tlsext_status_arg);
  2785. switch (r) {
  2786. /* We don't want to send a status request response */
  2787. case SSL_TLSEXT_ERR_NOACK:
  2788. s->tlsext_status_expected = 0;
  2789. break;
  2790. /* status request response should be sent */
  2791. case SSL_TLSEXT_ERR_OK:
  2792. if (s->tlsext_ocsp_resp)
  2793. s->tlsext_status_expected = 1;
  2794. else
  2795. s->tlsext_status_expected = 0;
  2796. break;
  2797. /* something bad happened */
  2798. case SSL_TLSEXT_ERR_ALERT_FATAL:
  2799. ret = SSL_TLSEXT_ERR_ALERT_FATAL;
  2800. al = SSL_AD_INTERNAL_ERROR;
  2801. goto err;
  2802. }
  2803. } else
  2804. s->tlsext_status_expected = 0;
  2805. err:
  2806. switch (ret) {
  2807. case SSL_TLSEXT_ERR_ALERT_FATAL:
  2808. ssl3_send_alert(s, SSL3_AL_FATAL, al);
  2809. return -1;
  2810. case SSL_TLSEXT_ERR_ALERT_WARNING:
  2811. ssl3_send_alert(s, SSL3_AL_WARNING, al);
  2812. return 1;
  2813. default:
  2814. return 1;
  2815. }
  2816. }
  2817. int ssl_check_serverhello_tlsext(SSL *s)
  2818. {
  2819. int ret = SSL_TLSEXT_ERR_NOACK;
  2820. int al = SSL_AD_UNRECOGNIZED_NAME;
  2821. # ifndef OPENSSL_NO_EC
  2822. /*
  2823. * If we are client and using an elliptic curve cryptography cipher
  2824. * suite, then if server returns an EC point formats lists extension it
  2825. * must contain uncompressed.
  2826. */
  2827. unsigned long alg_k = s->s3->tmp.new_cipher->algorithm_mkey;
  2828. unsigned long alg_a = s->s3->tmp.new_cipher->algorithm_auth;
  2829. if ((s->tlsext_ecpointformatlist != NULL)
  2830. && (s->tlsext_ecpointformatlist_length > 0)
  2831. && (s->session->tlsext_ecpointformatlist != NULL)
  2832. && (s->session->tlsext_ecpointformatlist_length > 0)
  2833. && ((alg_k & (SSL_kEECDH | SSL_kECDHr | SSL_kECDHe))
  2834. || (alg_a & SSL_aECDSA))) {
  2835. /* we are using an ECC cipher */
  2836. size_t i;
  2837. unsigned char *list;
  2838. int found_uncompressed = 0;
  2839. list = s->session->tlsext_ecpointformatlist;
  2840. for (i = 0; i < s->session->tlsext_ecpointformatlist_length; i++) {
  2841. if (*(list++) == TLSEXT_ECPOINTFORMAT_uncompressed) {
  2842. found_uncompressed = 1;
  2843. break;
  2844. }
  2845. }
  2846. if (!found_uncompressed) {
  2847. SSLerr(SSL_F_SSL_CHECK_SERVERHELLO_TLSEXT,
  2848. SSL_R_TLS_INVALID_ECPOINTFORMAT_LIST);
  2849. return -1;
  2850. }
  2851. }
  2852. ret = SSL_TLSEXT_ERR_OK;
  2853. # endif /* OPENSSL_NO_EC */
  2854. if (s->ctx != NULL && s->ctx->tlsext_servername_callback != 0)
  2855. ret =
  2856. s->ctx->tlsext_servername_callback(s, &al,
  2857. s->ctx->tlsext_servername_arg);
  2858. else if (s->initial_ctx != NULL
  2859. && s->initial_ctx->tlsext_servername_callback != 0)
  2860. ret =
  2861. s->initial_ctx->tlsext_servername_callback(s, &al,
  2862. s->
  2863. initial_ctx->tlsext_servername_arg);
  2864. # ifdef TLSEXT_TYPE_opaque_prf_input
  2865. if (s->s3->server_opaque_prf_input_len > 0) {
  2866. /*
  2867. * This case may indicate that we, as a client, want to insist on
  2868. * using opaque PRF inputs. So first verify that we really have a
  2869. * value from the server too.
  2870. */
  2871. if (s->s3->server_opaque_prf_input == NULL) {
  2872. ret = SSL_TLSEXT_ERR_ALERT_FATAL;
  2873. al = SSL_AD_HANDSHAKE_FAILURE;
  2874. }
  2875. /*
  2876. * Anytime the server *has* sent an opaque PRF input, we need to
  2877. * check that we have a client opaque PRF input of the same size.
  2878. */
  2879. if (s->s3->client_opaque_prf_input == NULL ||
  2880. s->s3->client_opaque_prf_input_len !=
  2881. s->s3->server_opaque_prf_input_len) {
  2882. ret = SSL_TLSEXT_ERR_ALERT_FATAL;
  2883. al = SSL_AD_ILLEGAL_PARAMETER;
  2884. }
  2885. }
  2886. # endif
  2887. OPENSSL_free(s->tlsext_ocsp_resp);
  2888. s->tlsext_ocsp_resp = NULL;
  2889. s->tlsext_ocsp_resplen = -1;
  2890. /*
  2891. * If we've requested certificate status and we wont get one tell the
  2892. * callback
  2893. */
  2894. if ((s->tlsext_status_type != -1) && !(s->tlsext_status_expected)
  2895. && !(s->hit) && s->ctx && s->ctx->tlsext_status_cb) {
  2896. int r;
  2897. /*
  2898. * Call callback with resp == NULL and resplen == -1 so callback
  2899. * knows there is no response
  2900. */
  2901. r = s->ctx->tlsext_status_cb(s, s->ctx->tlsext_status_arg);
  2902. if (r == 0) {
  2903. al = SSL_AD_BAD_CERTIFICATE_STATUS_RESPONSE;
  2904. ret = SSL_TLSEXT_ERR_ALERT_FATAL;
  2905. }
  2906. if (r < 0) {
  2907. al = SSL_AD_INTERNAL_ERROR;
  2908. ret = SSL_TLSEXT_ERR_ALERT_FATAL;
  2909. }
  2910. }
  2911. switch (ret) {
  2912. case SSL_TLSEXT_ERR_ALERT_FATAL:
  2913. ssl3_send_alert(s, SSL3_AL_FATAL, al);
  2914. return -1;
  2915. case SSL_TLSEXT_ERR_ALERT_WARNING:
  2916. ssl3_send_alert(s, SSL3_AL_WARNING, al);
  2917. return 1;
  2918. case SSL_TLSEXT_ERR_NOACK:
  2919. s->servername_done = 0;
  2920. default:
  2921. return 1;
  2922. }
  2923. }
  2924. int ssl_parse_serverhello_tlsext(SSL *s, unsigned char **p, unsigned char *d,
  2925. int n)
  2926. {
  2927. int al = -1;
  2928. if (s->version < SSL3_VERSION)
  2929. return 1;
  2930. if (ssl_scan_serverhello_tlsext(s, p, d, n, &al) <= 0) {
  2931. ssl3_send_alert(s, SSL3_AL_FATAL, al);
  2932. return 0;
  2933. }
  2934. if (ssl_check_serverhello_tlsext(s) <= 0) {
  2935. SSLerr(SSL_F_SSL_PARSE_SERVERHELLO_TLSEXT, SSL_R_SERVERHELLO_TLSEXT);
  2936. return 0;
  2937. }
  2938. return 1;
  2939. }
  2940. /*-
  2941. * Since the server cache lookup is done early on in the processing of the
  2942. * ClientHello, and other operations depend on the result, we need to handle
  2943. * any TLS session ticket extension at the same time.
  2944. *
  2945. * session_id: points at the session ID in the ClientHello. This code will
  2946. * read past the end of this in order to parse out the session ticket
  2947. * extension, if any.
  2948. * len: the length of the session ID.
  2949. * limit: a pointer to the first byte after the ClientHello.
  2950. * ret: (output) on return, if a ticket was decrypted, then this is set to
  2951. * point to the resulting session.
  2952. *
  2953. * If s->tls_session_secret_cb is set then we are expecting a pre-shared key
  2954. * ciphersuite, in which case we have no use for session tickets and one will
  2955. * never be decrypted, nor will s->tlsext_ticket_expected be set to 1.
  2956. *
  2957. * Returns:
  2958. * -1: fatal error, either from parsing or decrypting the ticket.
  2959. * 0: no ticket was found (or was ignored, based on settings).
  2960. * 1: a zero length extension was found, indicating that the client supports
  2961. * session tickets but doesn't currently have one to offer.
  2962. * 2: either s->tls_session_secret_cb was set, or a ticket was offered but
  2963. * couldn't be decrypted because of a non-fatal error.
  2964. * 3: a ticket was successfully decrypted and *ret was set.
  2965. *
  2966. * Side effects:
  2967. * Sets s->tlsext_ticket_expected to 1 if the server will have to issue
  2968. * a new session ticket to the client because the client indicated support
  2969. * (and s->tls_session_secret_cb is NULL) but the client either doesn't have
  2970. * a session ticket or we couldn't use the one it gave us, or if
  2971. * s->ctx->tlsext_ticket_key_cb asked to renew the client's ticket.
  2972. * Otherwise, s->tlsext_ticket_expected is set to 0.
  2973. */
  2974. int tls1_process_ticket(SSL *s, unsigned char *session_id, int len,
  2975. const unsigned char *limit, SSL_SESSION **ret)
  2976. {
  2977. /* Point after session ID in client hello */
  2978. const unsigned char *p = session_id + len;
  2979. unsigned short i;
  2980. *ret = NULL;
  2981. s->tlsext_ticket_expected = 0;
  2982. /*
  2983. * If tickets disabled behave as if no ticket present to permit stateful
  2984. * resumption.
  2985. */
  2986. if (SSL_get_options(s) & SSL_OP_NO_TICKET)
  2987. return 0;
  2988. if ((s->version <= SSL3_VERSION) || !limit)
  2989. return 0;
  2990. if (p >= limit)
  2991. return -1;
  2992. /* Skip past DTLS cookie */
  2993. if (SSL_IS_DTLS(s)) {
  2994. i = *(p++);
  2995. p += i;
  2996. if (p >= limit)
  2997. return -1;
  2998. }
  2999. /* Skip past cipher list */
  3000. n2s(p, i);
  3001. p += i;
  3002. if (p >= limit)
  3003. return -1;
  3004. /* Skip past compression algorithm list */
  3005. i = *(p++);
  3006. p += i;
  3007. if (p > limit)
  3008. return -1;
  3009. /* Now at start of extensions */
  3010. if ((p + 2) >= limit)
  3011. return 0;
  3012. n2s(p, i);
  3013. while ((p + 4) <= limit) {
  3014. unsigned short type, size;
  3015. n2s(p, type);
  3016. n2s(p, size);
  3017. if (p + size > limit)
  3018. return 0;
  3019. if (type == TLSEXT_TYPE_session_ticket) {
  3020. int r;
  3021. if (size == 0) {
  3022. /*
  3023. * The client will accept a ticket but doesn't currently have
  3024. * one.
  3025. */
  3026. s->tlsext_ticket_expected = 1;
  3027. return 1;
  3028. }
  3029. if (s->tls_session_secret_cb) {
  3030. /*
  3031. * Indicate that the ticket couldn't be decrypted rather than
  3032. * generating the session from ticket now, trigger
  3033. * abbreviated handshake based on external mechanism to
  3034. * calculate the master secret later.
  3035. */
  3036. return 2;
  3037. }
  3038. r = tls_decrypt_ticket(s, p, size, session_id, len, ret);
  3039. switch (r) {
  3040. case 2: /* ticket couldn't be decrypted */
  3041. s->tlsext_ticket_expected = 1;
  3042. return 2;
  3043. case 3: /* ticket was decrypted */
  3044. return r;
  3045. case 4: /* ticket decrypted but need to renew */
  3046. s->tlsext_ticket_expected = 1;
  3047. return 3;
  3048. default: /* fatal error */
  3049. return -1;
  3050. }
  3051. }
  3052. p += size;
  3053. }
  3054. return 0;
  3055. }
  3056. /*-
  3057. * tls_decrypt_ticket attempts to decrypt a session ticket.
  3058. *
  3059. * etick: points to the body of the session ticket extension.
  3060. * eticklen: the length of the session tickets extenion.
  3061. * sess_id: points at the session ID.
  3062. * sesslen: the length of the session ID.
  3063. * psess: (output) on return, if a ticket was decrypted, then this is set to
  3064. * point to the resulting session.
  3065. *
  3066. * Returns:
  3067. * -1: fatal error, either from parsing or decrypting the ticket.
  3068. * 2: the ticket couldn't be decrypted.
  3069. * 3: a ticket was successfully decrypted and *psess was set.
  3070. * 4: same as 3, but the ticket needs to be renewed.
  3071. */
  3072. static int tls_decrypt_ticket(SSL *s, const unsigned char *etick,
  3073. int eticklen, const unsigned char *sess_id,
  3074. int sesslen, SSL_SESSION **psess)
  3075. {
  3076. SSL_SESSION *sess;
  3077. unsigned char *sdec;
  3078. const unsigned char *p;
  3079. int slen, mlen, renew_ticket = 0;
  3080. unsigned char tick_hmac[EVP_MAX_MD_SIZE];
  3081. HMAC_CTX hctx;
  3082. EVP_CIPHER_CTX ctx;
  3083. SSL_CTX *tctx = s->initial_ctx;
  3084. /* Need at least keyname + iv + some encrypted data */
  3085. if (eticklen < 48)
  3086. return 2;
  3087. /* Initialize session ticket encryption and HMAC contexts */
  3088. HMAC_CTX_init(&hctx);
  3089. EVP_CIPHER_CTX_init(&ctx);
  3090. if (tctx->tlsext_ticket_key_cb) {
  3091. unsigned char *nctick = (unsigned char *)etick;
  3092. int rv = tctx->tlsext_ticket_key_cb(s, nctick, nctick + 16,
  3093. &ctx, &hctx, 0);
  3094. if (rv < 0)
  3095. return -1;
  3096. if (rv == 0)
  3097. return 2;
  3098. if (rv == 2)
  3099. renew_ticket = 1;
  3100. } else {
  3101. /* Check key name matches */
  3102. if (memcmp(etick, tctx->tlsext_tick_key_name, 16))
  3103. return 2;
  3104. if (HMAC_Init_ex(&hctx, tctx->tlsext_tick_hmac_key, 16,
  3105. tlsext_tick_md(), NULL) <= 0
  3106. || EVP_DecryptInit_ex(&ctx, EVP_aes_128_cbc(), NULL,
  3107. tctx->tlsext_tick_aes_key,
  3108. etick + 16) <= 0) {
  3109. goto err;
  3110. }
  3111. }
  3112. /*
  3113. * Attempt to process session ticket, first conduct sanity and integrity
  3114. * checks on ticket.
  3115. */
  3116. mlen = HMAC_size(&hctx);
  3117. if (mlen < 0) {
  3118. goto err;
  3119. }
  3120. eticklen -= mlen;
  3121. /* Check HMAC of encrypted ticket */
  3122. if (HMAC_Update(&hctx, etick, eticklen) <= 0
  3123. || HMAC_Final(&hctx, tick_hmac, NULL) <= 0) {
  3124. goto err;
  3125. }
  3126. HMAC_CTX_cleanup(&hctx);
  3127. if (CRYPTO_memcmp(tick_hmac, etick + eticklen, mlen)) {
  3128. EVP_CIPHER_CTX_cleanup(&ctx);
  3129. return 2;
  3130. }
  3131. /* Attempt to decrypt session data */
  3132. /* Move p after IV to start of encrypted ticket, update length */
  3133. p = etick + 16 + EVP_CIPHER_CTX_iv_length(&ctx);
  3134. eticklen -= 16 + EVP_CIPHER_CTX_iv_length(&ctx);
  3135. sdec = OPENSSL_malloc(eticklen);
  3136. if (!sdec || EVP_DecryptUpdate(&ctx, sdec, &slen, p, eticklen) <= 0) {
  3137. EVP_CIPHER_CTX_cleanup(&ctx);
  3138. return -1;
  3139. }
  3140. if (EVP_DecryptFinal(&ctx, sdec + slen, &mlen) <= 0) {
  3141. EVP_CIPHER_CTX_cleanup(&ctx);
  3142. OPENSSL_free(sdec);
  3143. return 2;
  3144. }
  3145. slen += mlen;
  3146. EVP_CIPHER_CTX_cleanup(&ctx);
  3147. p = sdec;
  3148. sess = d2i_SSL_SESSION(NULL, &p, slen);
  3149. OPENSSL_free(sdec);
  3150. if (sess) {
  3151. /*
  3152. * The session ID, if non-empty, is used by some clients to detect
  3153. * that the ticket has been accepted. So we copy it to the session
  3154. * structure. If it is empty set length to zero as required by
  3155. * standard.
  3156. */
  3157. if (sesslen)
  3158. memcpy(sess->session_id, sess_id, sesslen);
  3159. sess->session_id_length = sesslen;
  3160. *psess = sess;
  3161. if (renew_ticket)
  3162. return 4;
  3163. else
  3164. return 3;
  3165. }
  3166. ERR_clear_error();
  3167. /*
  3168. * For session parse failure, indicate that we need to send a new ticket.
  3169. */
  3170. return 2;
  3171. err:
  3172. EVP_CIPHER_CTX_cleanup(&ctx);
  3173. HMAC_CTX_cleanup(&hctx);
  3174. return -1;
  3175. }
  3176. /* Tables to translate from NIDs to TLS v1.2 ids */
  3177. typedef struct {
  3178. int nid;
  3179. int id;
  3180. } tls12_lookup;
  3181. static tls12_lookup tls12_md[] = {
  3182. {NID_md5, TLSEXT_hash_md5},
  3183. {NID_sha1, TLSEXT_hash_sha1},
  3184. {NID_sha224, TLSEXT_hash_sha224},
  3185. {NID_sha256, TLSEXT_hash_sha256},
  3186. {NID_sha384, TLSEXT_hash_sha384},
  3187. {NID_sha512, TLSEXT_hash_sha512}
  3188. };
  3189. static tls12_lookup tls12_sig[] = {
  3190. {EVP_PKEY_RSA, TLSEXT_signature_rsa},
  3191. {EVP_PKEY_DSA, TLSEXT_signature_dsa},
  3192. {EVP_PKEY_EC, TLSEXT_signature_ecdsa}
  3193. };
  3194. static int tls12_find_id(int nid, tls12_lookup *table, size_t tlen)
  3195. {
  3196. size_t i;
  3197. for (i = 0; i < tlen; i++) {
  3198. if (table[i].nid == nid)
  3199. return table[i].id;
  3200. }
  3201. return -1;
  3202. }
  3203. static int tls12_find_nid(int id, tls12_lookup *table, size_t tlen)
  3204. {
  3205. size_t i;
  3206. for (i = 0; i < tlen; i++) {
  3207. if ((table[i].id) == id)
  3208. return table[i].nid;
  3209. }
  3210. return NID_undef;
  3211. }
  3212. int tls12_get_sigandhash(unsigned char *p, const EVP_PKEY *pk,
  3213. const EVP_MD *md)
  3214. {
  3215. int sig_id, md_id;
  3216. if (!md)
  3217. return 0;
  3218. md_id = tls12_find_id(EVP_MD_type(md), tls12_md,
  3219. sizeof(tls12_md) / sizeof(tls12_lookup));
  3220. if (md_id == -1)
  3221. return 0;
  3222. sig_id = tls12_get_sigid(pk);
  3223. if (sig_id == -1)
  3224. return 0;
  3225. p[0] = (unsigned char)md_id;
  3226. p[1] = (unsigned char)sig_id;
  3227. return 1;
  3228. }
  3229. int tls12_get_sigid(const EVP_PKEY *pk)
  3230. {
  3231. return tls12_find_id(pk->type, tls12_sig,
  3232. sizeof(tls12_sig) / sizeof(tls12_lookup));
  3233. }
  3234. const EVP_MD *tls12_get_hash(unsigned char hash_alg)
  3235. {
  3236. switch (hash_alg) {
  3237. # ifndef OPENSSL_NO_MD5
  3238. case TLSEXT_hash_md5:
  3239. # ifdef OPENSSL_FIPS
  3240. if (FIPS_mode())
  3241. return NULL;
  3242. # endif
  3243. return EVP_md5();
  3244. # endif
  3245. # ifndef OPENSSL_NO_SHA
  3246. case TLSEXT_hash_sha1:
  3247. return EVP_sha1();
  3248. # endif
  3249. # ifndef OPENSSL_NO_SHA256
  3250. case TLSEXT_hash_sha224:
  3251. return EVP_sha224();
  3252. case TLSEXT_hash_sha256:
  3253. return EVP_sha256();
  3254. # endif
  3255. # ifndef OPENSSL_NO_SHA512
  3256. case TLSEXT_hash_sha384:
  3257. return EVP_sha384();
  3258. case TLSEXT_hash_sha512:
  3259. return EVP_sha512();
  3260. # endif
  3261. default:
  3262. return NULL;
  3263. }
  3264. }
  3265. static int tls12_get_pkey_idx(unsigned char sig_alg)
  3266. {
  3267. switch (sig_alg) {
  3268. # ifndef OPENSSL_NO_RSA
  3269. case TLSEXT_signature_rsa:
  3270. return SSL_PKEY_RSA_SIGN;
  3271. # endif
  3272. # ifndef OPENSSL_NO_DSA
  3273. case TLSEXT_signature_dsa:
  3274. return SSL_PKEY_DSA_SIGN;
  3275. # endif
  3276. # ifndef OPENSSL_NO_ECDSA
  3277. case TLSEXT_signature_ecdsa:
  3278. return SSL_PKEY_ECC;
  3279. # endif
  3280. }
  3281. return -1;
  3282. }
  3283. /* Convert TLS 1.2 signature algorithm extension values into NIDs */
  3284. static void tls1_lookup_sigalg(int *phash_nid, int *psign_nid,
  3285. int *psignhash_nid, const unsigned char *data)
  3286. {
  3287. int sign_nid = NID_undef, hash_nid = NID_undef;
  3288. if (!phash_nid && !psign_nid && !psignhash_nid)
  3289. return;
  3290. if (phash_nid || psignhash_nid) {
  3291. hash_nid = tls12_find_nid(data[0], tls12_md,
  3292. sizeof(tls12_md) / sizeof(tls12_lookup));
  3293. if (phash_nid)
  3294. *phash_nid = hash_nid;
  3295. }
  3296. if (psign_nid || psignhash_nid) {
  3297. sign_nid = tls12_find_nid(data[1], tls12_sig,
  3298. sizeof(tls12_sig) / sizeof(tls12_lookup));
  3299. if (psign_nid)
  3300. *psign_nid = sign_nid;
  3301. }
  3302. if (psignhash_nid) {
  3303. if (sign_nid == NID_undef || hash_nid == NID_undef
  3304. || OBJ_find_sigid_by_algs(psignhash_nid, hash_nid,
  3305. sign_nid) <= 0)
  3306. *psignhash_nid = NID_undef;
  3307. }
  3308. }
  3309. /* Given preference and allowed sigalgs set shared sigalgs */
  3310. static int tls12_do_shared_sigalgs(TLS_SIGALGS *shsig,
  3311. const unsigned char *pref, size_t preflen,
  3312. const unsigned char *allow,
  3313. size_t allowlen)
  3314. {
  3315. const unsigned char *ptmp, *atmp;
  3316. size_t i, j, nmatch = 0;
  3317. for (i = 0, ptmp = pref; i < preflen; i += 2, ptmp += 2) {
  3318. /* Skip disabled hashes or signature algorithms */
  3319. if (tls12_get_hash(ptmp[0]) == NULL)
  3320. continue;
  3321. if (tls12_get_pkey_idx(ptmp[1]) == -1)
  3322. continue;
  3323. for (j = 0, atmp = allow; j < allowlen; j += 2, atmp += 2) {
  3324. if (ptmp[0] == atmp[0] && ptmp[1] == atmp[1]) {
  3325. nmatch++;
  3326. if (shsig) {
  3327. shsig->rhash = ptmp[0];
  3328. shsig->rsign = ptmp[1];
  3329. tls1_lookup_sigalg(&shsig->hash_nid,
  3330. &shsig->sign_nid,
  3331. &shsig->signandhash_nid, ptmp);
  3332. shsig++;
  3333. }
  3334. break;
  3335. }
  3336. }
  3337. }
  3338. return nmatch;
  3339. }
  3340. /* Set shared signature algorithms for SSL structures */
  3341. static int tls1_set_shared_sigalgs(SSL *s)
  3342. {
  3343. const unsigned char *pref, *allow, *conf;
  3344. size_t preflen, allowlen, conflen;
  3345. size_t nmatch;
  3346. TLS_SIGALGS *salgs = NULL;
  3347. CERT *c = s->cert;
  3348. unsigned int is_suiteb = tls1_suiteb(s);
  3349. if (c->shared_sigalgs) {
  3350. OPENSSL_free(c->shared_sigalgs);
  3351. c->shared_sigalgs = NULL;
  3352. c->shared_sigalgslen = 0;
  3353. }
  3354. /* If client use client signature algorithms if not NULL */
  3355. if (!s->server && c->client_sigalgs && !is_suiteb) {
  3356. conf = c->client_sigalgs;
  3357. conflen = c->client_sigalgslen;
  3358. } else if (c->conf_sigalgs && !is_suiteb) {
  3359. conf = c->conf_sigalgs;
  3360. conflen = c->conf_sigalgslen;
  3361. } else
  3362. conflen = tls12_get_psigalgs(s, &conf);
  3363. if (s->options & SSL_OP_CIPHER_SERVER_PREFERENCE || is_suiteb) {
  3364. pref = conf;
  3365. preflen = conflen;
  3366. allow = c->peer_sigalgs;
  3367. allowlen = c->peer_sigalgslen;
  3368. } else {
  3369. allow = conf;
  3370. allowlen = conflen;
  3371. pref = c->peer_sigalgs;
  3372. preflen = c->peer_sigalgslen;
  3373. }
  3374. nmatch = tls12_do_shared_sigalgs(NULL, pref, preflen, allow, allowlen);
  3375. if (nmatch) {
  3376. salgs = OPENSSL_malloc(nmatch * sizeof(TLS_SIGALGS));
  3377. if (!salgs)
  3378. return 0;
  3379. nmatch = tls12_do_shared_sigalgs(salgs, pref, preflen, allow, allowlen);
  3380. } else {
  3381. salgs = NULL;
  3382. }
  3383. c->shared_sigalgs = salgs;
  3384. c->shared_sigalgslen = nmatch;
  3385. return 1;
  3386. }
  3387. /* Set preferred digest for each key type */
  3388. int tls1_save_sigalgs(SSL *s, const unsigned char *data, int dsize)
  3389. {
  3390. CERT *c = s->cert;
  3391. /* Extension ignored for inappropriate versions */
  3392. if (!SSL_USE_SIGALGS(s))
  3393. return 1;
  3394. /* Should never happen */
  3395. if (!c)
  3396. return 0;
  3397. if (c->peer_sigalgs)
  3398. OPENSSL_free(c->peer_sigalgs);
  3399. c->peer_sigalgs = OPENSSL_malloc(dsize);
  3400. if (!c->peer_sigalgs)
  3401. return 0;
  3402. c->peer_sigalgslen = dsize;
  3403. memcpy(c->peer_sigalgs, data, dsize);
  3404. return 1;
  3405. }
  3406. int tls1_process_sigalgs(SSL *s)
  3407. {
  3408. int idx;
  3409. size_t i;
  3410. const EVP_MD *md;
  3411. CERT *c = s->cert;
  3412. TLS_SIGALGS *sigptr;
  3413. if (!tls1_set_shared_sigalgs(s))
  3414. return 0;
  3415. # ifdef OPENSSL_SSL_DEBUG_BROKEN_PROTOCOL
  3416. if (s->cert->cert_flags & SSL_CERT_FLAG_BROKEN_PROTOCOL) {
  3417. /*
  3418. * Use first set signature preference to force message digest,
  3419. * ignoring any peer preferences.
  3420. */
  3421. const unsigned char *sigs = NULL;
  3422. if (s->server)
  3423. sigs = c->conf_sigalgs;
  3424. else
  3425. sigs = c->client_sigalgs;
  3426. if (sigs) {
  3427. idx = tls12_get_pkey_idx(sigs[1]);
  3428. md = tls12_get_hash(sigs[0]);
  3429. c->pkeys[idx].digest = md;
  3430. c->pkeys[idx].valid_flags = CERT_PKEY_EXPLICIT_SIGN;
  3431. if (idx == SSL_PKEY_RSA_SIGN) {
  3432. c->pkeys[SSL_PKEY_RSA_ENC].valid_flags =
  3433. CERT_PKEY_EXPLICIT_SIGN;
  3434. c->pkeys[SSL_PKEY_RSA_ENC].digest = md;
  3435. }
  3436. }
  3437. }
  3438. # endif
  3439. for (i = 0, sigptr = c->shared_sigalgs;
  3440. i < c->shared_sigalgslen; i++, sigptr++) {
  3441. idx = tls12_get_pkey_idx(sigptr->rsign);
  3442. if (idx > 0 && c->pkeys[idx].digest == NULL) {
  3443. md = tls12_get_hash(sigptr->rhash);
  3444. c->pkeys[idx].digest = md;
  3445. c->pkeys[idx].valid_flags = CERT_PKEY_EXPLICIT_SIGN;
  3446. if (idx == SSL_PKEY_RSA_SIGN) {
  3447. c->pkeys[SSL_PKEY_RSA_ENC].valid_flags =
  3448. CERT_PKEY_EXPLICIT_SIGN;
  3449. c->pkeys[SSL_PKEY_RSA_ENC].digest = md;
  3450. }
  3451. }
  3452. }
  3453. /*
  3454. * In strict mode leave unset digests as NULL to indicate we can't use
  3455. * the certificate for signing.
  3456. */
  3457. if (!(s->cert->cert_flags & SSL_CERT_FLAGS_CHECK_TLS_STRICT)) {
  3458. /*
  3459. * Set any remaining keys to default values. NOTE: if alg is not
  3460. * supported it stays as NULL.
  3461. */
  3462. # ifndef OPENSSL_NO_DSA
  3463. if (!c->pkeys[SSL_PKEY_DSA_SIGN].digest)
  3464. c->pkeys[SSL_PKEY_DSA_SIGN].digest = EVP_sha1();
  3465. # endif
  3466. # ifndef OPENSSL_NO_RSA
  3467. if (!c->pkeys[SSL_PKEY_RSA_SIGN].digest) {
  3468. c->pkeys[SSL_PKEY_RSA_SIGN].digest = EVP_sha1();
  3469. c->pkeys[SSL_PKEY_RSA_ENC].digest = EVP_sha1();
  3470. }
  3471. # endif
  3472. # ifndef OPENSSL_NO_ECDSA
  3473. if (!c->pkeys[SSL_PKEY_ECC].digest)
  3474. c->pkeys[SSL_PKEY_ECC].digest = EVP_sha1();
  3475. # endif
  3476. }
  3477. return 1;
  3478. }
  3479. int SSL_get_sigalgs(SSL *s, int idx,
  3480. int *psign, int *phash, int *psignhash,
  3481. unsigned char *rsig, unsigned char *rhash)
  3482. {
  3483. const unsigned char *psig = s->cert->peer_sigalgs;
  3484. if (psig == NULL)
  3485. return 0;
  3486. if (idx >= 0) {
  3487. idx <<= 1;
  3488. if (idx >= (int)s->cert->peer_sigalgslen)
  3489. return 0;
  3490. psig += idx;
  3491. if (rhash)
  3492. *rhash = psig[0];
  3493. if (rsig)
  3494. *rsig = psig[1];
  3495. tls1_lookup_sigalg(phash, psign, psignhash, psig);
  3496. }
  3497. return s->cert->peer_sigalgslen / 2;
  3498. }
  3499. int SSL_get_shared_sigalgs(SSL *s, int idx,
  3500. int *psign, int *phash, int *psignhash,
  3501. unsigned char *rsig, unsigned char *rhash)
  3502. {
  3503. TLS_SIGALGS *shsigalgs = s->cert->shared_sigalgs;
  3504. if (!shsigalgs || idx >= (int)s->cert->shared_sigalgslen)
  3505. return 0;
  3506. shsigalgs += idx;
  3507. if (phash)
  3508. *phash = shsigalgs->hash_nid;
  3509. if (psign)
  3510. *psign = shsigalgs->sign_nid;
  3511. if (psignhash)
  3512. *psignhash = shsigalgs->signandhash_nid;
  3513. if (rsig)
  3514. *rsig = shsigalgs->rsign;
  3515. if (rhash)
  3516. *rhash = shsigalgs->rhash;
  3517. return s->cert->shared_sigalgslen;
  3518. }
  3519. # ifndef OPENSSL_NO_HEARTBEATS
  3520. int tls1_process_heartbeat(SSL *s)
  3521. {
  3522. unsigned char *p = &s->s3->rrec.data[0], *pl;
  3523. unsigned short hbtype;
  3524. unsigned int payload;
  3525. unsigned int padding = 16; /* Use minimum padding */
  3526. if (s->msg_callback)
  3527. s->msg_callback(0, s->version, TLS1_RT_HEARTBEAT,
  3528. &s->s3->rrec.data[0], s->s3->rrec.length,
  3529. s, s->msg_callback_arg);
  3530. /* Read type and payload length first */
  3531. if (1 + 2 + 16 > s->s3->rrec.length)
  3532. return 0; /* silently discard */
  3533. hbtype = *p++;
  3534. n2s(p, payload);
  3535. if (1 + 2 + payload + 16 > s->s3->rrec.length)
  3536. return 0; /* silently discard per RFC 6520 sec. 4 */
  3537. pl = p;
  3538. if (hbtype == TLS1_HB_REQUEST) {
  3539. unsigned char *buffer, *bp;
  3540. int r;
  3541. /*
  3542. * Allocate memory for the response, size is 1 bytes message type,
  3543. * plus 2 bytes payload length, plus payload, plus padding
  3544. */
  3545. buffer = OPENSSL_malloc(1 + 2 + payload + padding);
  3546. bp = buffer;
  3547. /* Enter response type, length and copy payload */
  3548. *bp++ = TLS1_HB_RESPONSE;
  3549. s2n(payload, bp);
  3550. memcpy(bp, pl, payload);
  3551. bp += payload;
  3552. /* Random padding */
  3553. if (RAND_pseudo_bytes(bp, padding) < 0) {
  3554. OPENSSL_free(buffer);
  3555. return -1;
  3556. }
  3557. r = ssl3_write_bytes(s, TLS1_RT_HEARTBEAT, buffer,
  3558. 3 + payload + padding);
  3559. if (r >= 0 && s->msg_callback)
  3560. s->msg_callback(1, s->version, TLS1_RT_HEARTBEAT,
  3561. buffer, 3 + payload + padding,
  3562. s, s->msg_callback_arg);
  3563. OPENSSL_free(buffer);
  3564. if (r < 0)
  3565. return r;
  3566. } else if (hbtype == TLS1_HB_RESPONSE) {
  3567. unsigned int seq;
  3568. /*
  3569. * We only send sequence numbers (2 bytes unsigned int), and 16
  3570. * random bytes, so we just try to read the sequence number
  3571. */
  3572. n2s(pl, seq);
  3573. if (payload == 18 && seq == s->tlsext_hb_seq) {
  3574. s->tlsext_hb_seq++;
  3575. s->tlsext_hb_pending = 0;
  3576. }
  3577. }
  3578. return 0;
  3579. }
  3580. int tls1_heartbeat(SSL *s)
  3581. {
  3582. unsigned char *buf, *p;
  3583. int ret = -1;
  3584. unsigned int payload = 18; /* Sequence number + random bytes */
  3585. unsigned int padding = 16; /* Use minimum padding */
  3586. /* Only send if peer supports and accepts HB requests... */
  3587. if (!(s->tlsext_heartbeat & SSL_TLSEXT_HB_ENABLED) ||
  3588. s->tlsext_heartbeat & SSL_TLSEXT_HB_DONT_SEND_REQUESTS) {
  3589. SSLerr(SSL_F_TLS1_HEARTBEAT, SSL_R_TLS_HEARTBEAT_PEER_DOESNT_ACCEPT);
  3590. return -1;
  3591. }
  3592. /* ...and there is none in flight yet... */
  3593. if (s->tlsext_hb_pending) {
  3594. SSLerr(SSL_F_TLS1_HEARTBEAT, SSL_R_TLS_HEARTBEAT_PENDING);
  3595. return -1;
  3596. }
  3597. /* ...and no handshake in progress. */
  3598. if (SSL_in_init(s) || s->in_handshake) {
  3599. SSLerr(SSL_F_TLS1_HEARTBEAT, SSL_R_UNEXPECTED_MESSAGE);
  3600. return -1;
  3601. }
  3602. /*
  3603. * Check if padding is too long, payload and padding must not exceed 2^14
  3604. * - 3 = 16381 bytes in total.
  3605. */
  3606. OPENSSL_assert(payload + padding <= 16381);
  3607. /*-
  3608. * Create HeartBeat message, we just use a sequence number
  3609. * as payload to distuingish different messages and add
  3610. * some random stuff.
  3611. * - Message Type, 1 byte
  3612. * - Payload Length, 2 bytes (unsigned int)
  3613. * - Payload, the sequence number (2 bytes uint)
  3614. * - Payload, random bytes (16 bytes uint)
  3615. * - Padding
  3616. */
  3617. buf = OPENSSL_malloc(1 + 2 + payload + padding);
  3618. p = buf;
  3619. /* Message Type */
  3620. *p++ = TLS1_HB_REQUEST;
  3621. /* Payload length (18 bytes here) */
  3622. s2n(payload, p);
  3623. /* Sequence number */
  3624. s2n(s->tlsext_hb_seq, p);
  3625. /* 16 random bytes */
  3626. if (RAND_pseudo_bytes(p, 16) < 0) {
  3627. SSLerr(SSL_F_TLS1_HEARTBEAT, ERR_R_INTERNAL_ERROR);
  3628. goto err;
  3629. }
  3630. p += 16;
  3631. /* Random padding */
  3632. if (RAND_pseudo_bytes(p, padding) < 0) {
  3633. SSLerr(SSL_F_TLS1_HEARTBEAT, ERR_R_INTERNAL_ERROR);
  3634. goto err;
  3635. }
  3636. ret = ssl3_write_bytes(s, TLS1_RT_HEARTBEAT, buf, 3 + payload + padding);
  3637. if (ret >= 0) {
  3638. if (s->msg_callback)
  3639. s->msg_callback(1, s->version, TLS1_RT_HEARTBEAT,
  3640. buf, 3 + payload + padding,
  3641. s, s->msg_callback_arg);
  3642. s->tlsext_hb_pending = 1;
  3643. }
  3644. err:
  3645. OPENSSL_free(buf);
  3646. return ret;
  3647. }
  3648. # endif
  3649. # define MAX_SIGALGLEN (TLSEXT_hash_num * TLSEXT_signature_num * 2)
  3650. typedef struct {
  3651. size_t sigalgcnt;
  3652. int sigalgs[MAX_SIGALGLEN];
  3653. } sig_cb_st;
  3654. static int sig_cb(const char *elem, int len, void *arg)
  3655. {
  3656. sig_cb_st *sarg = arg;
  3657. size_t i;
  3658. char etmp[20], *p;
  3659. int sig_alg, hash_alg;
  3660. if (elem == NULL)
  3661. return 0;
  3662. if (sarg->sigalgcnt == MAX_SIGALGLEN)
  3663. return 0;
  3664. if (len > (int)(sizeof(etmp) - 1))
  3665. return 0;
  3666. memcpy(etmp, elem, len);
  3667. etmp[len] = 0;
  3668. p = strchr(etmp, '+');
  3669. if (!p)
  3670. return 0;
  3671. *p = 0;
  3672. p++;
  3673. if (!*p)
  3674. return 0;
  3675. if (!strcmp(etmp, "RSA"))
  3676. sig_alg = EVP_PKEY_RSA;
  3677. else if (!strcmp(etmp, "DSA"))
  3678. sig_alg = EVP_PKEY_DSA;
  3679. else if (!strcmp(etmp, "ECDSA"))
  3680. sig_alg = EVP_PKEY_EC;
  3681. else
  3682. return 0;
  3683. hash_alg = OBJ_sn2nid(p);
  3684. if (hash_alg == NID_undef)
  3685. hash_alg = OBJ_ln2nid(p);
  3686. if (hash_alg == NID_undef)
  3687. return 0;
  3688. for (i = 0; i < sarg->sigalgcnt; i += 2) {
  3689. if (sarg->sigalgs[i] == sig_alg && sarg->sigalgs[i + 1] == hash_alg)
  3690. return 0;
  3691. }
  3692. sarg->sigalgs[sarg->sigalgcnt++] = hash_alg;
  3693. sarg->sigalgs[sarg->sigalgcnt++] = sig_alg;
  3694. return 1;
  3695. }
  3696. /*
  3697. * Set suppored signature algorithms based on a colon separated list of the
  3698. * form sig+hash e.g. RSA+SHA512:DSA+SHA512
  3699. */
  3700. int tls1_set_sigalgs_list(CERT *c, const char *str, int client)
  3701. {
  3702. sig_cb_st sig;
  3703. sig.sigalgcnt = 0;
  3704. if (!CONF_parse_list(str, ':', 1, sig_cb, &sig))
  3705. return 0;
  3706. if (c == NULL)
  3707. return 1;
  3708. return tls1_set_sigalgs(c, sig.sigalgs, sig.sigalgcnt, client);
  3709. }
  3710. int tls1_set_sigalgs(CERT *c, const int *psig_nids, size_t salglen,
  3711. int client)
  3712. {
  3713. unsigned char *sigalgs, *sptr;
  3714. int rhash, rsign;
  3715. size_t i;
  3716. if (salglen & 1)
  3717. return 0;
  3718. sigalgs = OPENSSL_malloc(salglen);
  3719. if (sigalgs == NULL)
  3720. return 0;
  3721. for (i = 0, sptr = sigalgs; i < salglen; i += 2) {
  3722. rhash = tls12_find_id(*psig_nids++, tls12_md,
  3723. sizeof(tls12_md) / sizeof(tls12_lookup));
  3724. rsign = tls12_find_id(*psig_nids++, tls12_sig,
  3725. sizeof(tls12_sig) / sizeof(tls12_lookup));
  3726. if (rhash == -1 || rsign == -1)
  3727. goto err;
  3728. *sptr++ = rhash;
  3729. *sptr++ = rsign;
  3730. }
  3731. if (client) {
  3732. if (c->client_sigalgs)
  3733. OPENSSL_free(c->client_sigalgs);
  3734. c->client_sigalgs = sigalgs;
  3735. c->client_sigalgslen = salglen;
  3736. } else {
  3737. if (c->conf_sigalgs)
  3738. OPENSSL_free(c->conf_sigalgs);
  3739. c->conf_sigalgs = sigalgs;
  3740. c->conf_sigalgslen = salglen;
  3741. }
  3742. return 1;
  3743. err:
  3744. OPENSSL_free(sigalgs);
  3745. return 0;
  3746. }
  3747. static int tls1_check_sig_alg(CERT *c, X509 *x, int default_nid)
  3748. {
  3749. int sig_nid;
  3750. size_t i;
  3751. if (default_nid == -1)
  3752. return 1;
  3753. sig_nid = X509_get_signature_nid(x);
  3754. if (default_nid)
  3755. return sig_nid == default_nid ? 1 : 0;
  3756. for (i = 0; i < c->shared_sigalgslen; i++)
  3757. if (sig_nid == c->shared_sigalgs[i].signandhash_nid)
  3758. return 1;
  3759. return 0;
  3760. }
  3761. /* Check to see if a certificate issuer name matches list of CA names */
  3762. static int ssl_check_ca_name(STACK_OF(X509_NAME) *names, X509 *x)
  3763. {
  3764. X509_NAME *nm;
  3765. int i;
  3766. nm = X509_get_issuer_name(x);
  3767. for (i = 0; i < sk_X509_NAME_num(names); i++) {
  3768. if (!X509_NAME_cmp(nm, sk_X509_NAME_value(names, i)))
  3769. return 1;
  3770. }
  3771. return 0;
  3772. }
  3773. /*
  3774. * Check certificate chain is consistent with TLS extensions and is usable by
  3775. * server. This servers two purposes: it allows users to check chains before
  3776. * passing them to the server and it allows the server to check chains before
  3777. * attempting to use them.
  3778. */
  3779. /* Flags which need to be set for a certificate when stict mode not set */
  3780. # define CERT_PKEY_VALID_FLAGS \
  3781. (CERT_PKEY_EE_SIGNATURE|CERT_PKEY_EE_PARAM)
  3782. /* Strict mode flags */
  3783. # define CERT_PKEY_STRICT_FLAGS \
  3784. (CERT_PKEY_VALID_FLAGS|CERT_PKEY_CA_SIGNATURE|CERT_PKEY_CA_PARAM \
  3785. | CERT_PKEY_ISSUER_NAME|CERT_PKEY_CERT_TYPE)
  3786. int tls1_check_chain(SSL *s, X509 *x, EVP_PKEY *pk, STACK_OF(X509) *chain,
  3787. int idx)
  3788. {
  3789. int i;
  3790. int rv = 0;
  3791. int check_flags = 0, strict_mode;
  3792. CERT_PKEY *cpk = NULL;
  3793. CERT *c = s->cert;
  3794. unsigned int suiteb_flags = tls1_suiteb(s);
  3795. /* idx == -1 means checking server chains */
  3796. if (idx != -1) {
  3797. /* idx == -2 means checking client certificate chains */
  3798. if (idx == -2) {
  3799. cpk = c->key;
  3800. idx = cpk - c->pkeys;
  3801. } else
  3802. cpk = c->pkeys + idx;
  3803. x = cpk->x509;
  3804. pk = cpk->privatekey;
  3805. chain = cpk->chain;
  3806. strict_mode = c->cert_flags & SSL_CERT_FLAGS_CHECK_TLS_STRICT;
  3807. /* If no cert or key, forget it */
  3808. if (!x || !pk)
  3809. goto end;
  3810. # ifdef OPENSSL_SSL_DEBUG_BROKEN_PROTOCOL
  3811. /* Allow any certificate to pass test */
  3812. if (s->cert->cert_flags & SSL_CERT_FLAG_BROKEN_PROTOCOL) {
  3813. rv = CERT_PKEY_STRICT_FLAGS | CERT_PKEY_EXPLICIT_SIGN |
  3814. CERT_PKEY_VALID | CERT_PKEY_SIGN;
  3815. cpk->valid_flags = rv;
  3816. return rv;
  3817. }
  3818. # endif
  3819. } else {
  3820. if (!x || !pk)
  3821. return 0;
  3822. idx = ssl_cert_type(x, pk);
  3823. if (idx == -1)
  3824. return 0;
  3825. cpk = c->pkeys + idx;
  3826. if (c->cert_flags & SSL_CERT_FLAGS_CHECK_TLS_STRICT)
  3827. check_flags = CERT_PKEY_STRICT_FLAGS;
  3828. else
  3829. check_flags = CERT_PKEY_VALID_FLAGS;
  3830. strict_mode = 1;
  3831. }
  3832. if (suiteb_flags) {
  3833. int ok;
  3834. if (check_flags)
  3835. check_flags |= CERT_PKEY_SUITEB;
  3836. ok = X509_chain_check_suiteb(NULL, x, chain, suiteb_flags);
  3837. if (ok == X509_V_OK)
  3838. rv |= CERT_PKEY_SUITEB;
  3839. else if (!check_flags)
  3840. goto end;
  3841. }
  3842. /*
  3843. * Check all signature algorithms are consistent with signature
  3844. * algorithms extension if TLS 1.2 or later and strict mode.
  3845. */
  3846. if (TLS1_get_version(s) >= TLS1_2_VERSION && strict_mode) {
  3847. int default_nid;
  3848. unsigned char rsign = 0;
  3849. if (c->peer_sigalgs)
  3850. default_nid = 0;
  3851. /* If no sigalgs extension use defaults from RFC5246 */
  3852. else {
  3853. switch (idx) {
  3854. case SSL_PKEY_RSA_ENC:
  3855. case SSL_PKEY_RSA_SIGN:
  3856. case SSL_PKEY_DH_RSA:
  3857. rsign = TLSEXT_signature_rsa;
  3858. default_nid = NID_sha1WithRSAEncryption;
  3859. break;
  3860. case SSL_PKEY_DSA_SIGN:
  3861. case SSL_PKEY_DH_DSA:
  3862. rsign = TLSEXT_signature_dsa;
  3863. default_nid = NID_dsaWithSHA1;
  3864. break;
  3865. case SSL_PKEY_ECC:
  3866. rsign = TLSEXT_signature_ecdsa;
  3867. default_nid = NID_ecdsa_with_SHA1;
  3868. break;
  3869. default:
  3870. default_nid = -1;
  3871. break;
  3872. }
  3873. }
  3874. /*
  3875. * If peer sent no signature algorithms extension and we have set
  3876. * preferred signature algorithms check we support sha1.
  3877. */
  3878. if (default_nid > 0 && c->conf_sigalgs) {
  3879. size_t j;
  3880. const unsigned char *p = c->conf_sigalgs;
  3881. for (j = 0; j < c->conf_sigalgslen; j += 2, p += 2) {
  3882. if (p[0] == TLSEXT_hash_sha1 && p[1] == rsign)
  3883. break;
  3884. }
  3885. if (j == c->conf_sigalgslen) {
  3886. if (check_flags)
  3887. goto skip_sigs;
  3888. else
  3889. goto end;
  3890. }
  3891. }
  3892. /* Check signature algorithm of each cert in chain */
  3893. if (!tls1_check_sig_alg(c, x, default_nid)) {
  3894. if (!check_flags)
  3895. goto end;
  3896. } else
  3897. rv |= CERT_PKEY_EE_SIGNATURE;
  3898. rv |= CERT_PKEY_CA_SIGNATURE;
  3899. for (i = 0; i < sk_X509_num(chain); i++) {
  3900. if (!tls1_check_sig_alg(c, sk_X509_value(chain, i), default_nid)) {
  3901. if (check_flags) {
  3902. rv &= ~CERT_PKEY_CA_SIGNATURE;
  3903. break;
  3904. } else
  3905. goto end;
  3906. }
  3907. }
  3908. }
  3909. /* Else not TLS 1.2, so mark EE and CA signing algorithms OK */
  3910. else if (check_flags)
  3911. rv |= CERT_PKEY_EE_SIGNATURE | CERT_PKEY_CA_SIGNATURE;
  3912. skip_sigs:
  3913. /* Check cert parameters are consistent */
  3914. if (tls1_check_cert_param(s, x, check_flags ? 1 : 2))
  3915. rv |= CERT_PKEY_EE_PARAM;
  3916. else if (!check_flags)
  3917. goto end;
  3918. if (!s->server)
  3919. rv |= CERT_PKEY_CA_PARAM;
  3920. /* In strict mode check rest of chain too */
  3921. else if (strict_mode) {
  3922. rv |= CERT_PKEY_CA_PARAM;
  3923. for (i = 0; i < sk_X509_num(chain); i++) {
  3924. X509 *ca = sk_X509_value(chain, i);
  3925. if (!tls1_check_cert_param(s, ca, 0)) {
  3926. if (check_flags) {
  3927. rv &= ~CERT_PKEY_CA_PARAM;
  3928. break;
  3929. } else
  3930. goto end;
  3931. }
  3932. }
  3933. }
  3934. if (!s->server && strict_mode) {
  3935. STACK_OF(X509_NAME) *ca_dn;
  3936. int check_type = 0;
  3937. switch (pk->type) {
  3938. case EVP_PKEY_RSA:
  3939. check_type = TLS_CT_RSA_SIGN;
  3940. break;
  3941. case EVP_PKEY_DSA:
  3942. check_type = TLS_CT_DSS_SIGN;
  3943. break;
  3944. case EVP_PKEY_EC:
  3945. check_type = TLS_CT_ECDSA_SIGN;
  3946. break;
  3947. case EVP_PKEY_DH:
  3948. case EVP_PKEY_DHX:
  3949. {
  3950. int cert_type = X509_certificate_type(x, pk);
  3951. if (cert_type & EVP_PKS_RSA)
  3952. check_type = TLS_CT_RSA_FIXED_DH;
  3953. if (cert_type & EVP_PKS_DSA)
  3954. check_type = TLS_CT_DSS_FIXED_DH;
  3955. }
  3956. }
  3957. if (check_type) {
  3958. const unsigned char *ctypes;
  3959. int ctypelen;
  3960. if (c->ctypes) {
  3961. ctypes = c->ctypes;
  3962. ctypelen = (int)c->ctype_num;
  3963. } else {
  3964. ctypes = (unsigned char *)s->s3->tmp.ctype;
  3965. ctypelen = s->s3->tmp.ctype_num;
  3966. }
  3967. for (i = 0; i < ctypelen; i++) {
  3968. if (ctypes[i] == check_type) {
  3969. rv |= CERT_PKEY_CERT_TYPE;
  3970. break;
  3971. }
  3972. }
  3973. if (!(rv & CERT_PKEY_CERT_TYPE) && !check_flags)
  3974. goto end;
  3975. } else
  3976. rv |= CERT_PKEY_CERT_TYPE;
  3977. ca_dn = s->s3->tmp.ca_names;
  3978. if (!sk_X509_NAME_num(ca_dn))
  3979. rv |= CERT_PKEY_ISSUER_NAME;
  3980. if (!(rv & CERT_PKEY_ISSUER_NAME)) {
  3981. if (ssl_check_ca_name(ca_dn, x))
  3982. rv |= CERT_PKEY_ISSUER_NAME;
  3983. }
  3984. if (!(rv & CERT_PKEY_ISSUER_NAME)) {
  3985. for (i = 0; i < sk_X509_num(chain); i++) {
  3986. X509 *xtmp = sk_X509_value(chain, i);
  3987. if (ssl_check_ca_name(ca_dn, xtmp)) {
  3988. rv |= CERT_PKEY_ISSUER_NAME;
  3989. break;
  3990. }
  3991. }
  3992. }
  3993. if (!check_flags && !(rv & CERT_PKEY_ISSUER_NAME))
  3994. goto end;
  3995. } else
  3996. rv |= CERT_PKEY_ISSUER_NAME | CERT_PKEY_CERT_TYPE;
  3997. if (!check_flags || (rv & check_flags) == check_flags)
  3998. rv |= CERT_PKEY_VALID;
  3999. end:
  4000. if (TLS1_get_version(s) >= TLS1_2_VERSION) {
  4001. if (cpk->valid_flags & CERT_PKEY_EXPLICIT_SIGN)
  4002. rv |= CERT_PKEY_EXPLICIT_SIGN | CERT_PKEY_SIGN;
  4003. else if (cpk->digest)
  4004. rv |= CERT_PKEY_SIGN;
  4005. } else
  4006. rv |= CERT_PKEY_SIGN | CERT_PKEY_EXPLICIT_SIGN;
  4007. /*
  4008. * When checking a CERT_PKEY structure all flags are irrelevant if the
  4009. * chain is invalid.
  4010. */
  4011. if (!check_flags) {
  4012. if (rv & CERT_PKEY_VALID)
  4013. cpk->valid_flags = rv;
  4014. else {
  4015. /* Preserve explicit sign flag, clear rest */
  4016. cpk->valid_flags &= CERT_PKEY_EXPLICIT_SIGN;
  4017. return 0;
  4018. }
  4019. }
  4020. return rv;
  4021. }
  4022. /* Set validity of certificates in an SSL structure */
  4023. void tls1_set_cert_validity(SSL *s)
  4024. {
  4025. tls1_check_chain(s, NULL, NULL, NULL, SSL_PKEY_RSA_ENC);
  4026. tls1_check_chain(s, NULL, NULL, NULL, SSL_PKEY_RSA_SIGN);
  4027. tls1_check_chain(s, NULL, NULL, NULL, SSL_PKEY_DSA_SIGN);
  4028. tls1_check_chain(s, NULL, NULL, NULL, SSL_PKEY_DH_RSA);
  4029. tls1_check_chain(s, NULL, NULL, NULL, SSL_PKEY_DH_DSA);
  4030. tls1_check_chain(s, NULL, NULL, NULL, SSL_PKEY_ECC);
  4031. }
  4032. /* User level utiity function to check a chain is suitable */
  4033. int SSL_check_chain(SSL *s, X509 *x, EVP_PKEY *pk, STACK_OF(X509) *chain)
  4034. {
  4035. return tls1_check_chain(s, x, pk, chain, -1);
  4036. }
  4037. #endif