Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

Factor out the buffering and low-level record code. This begins decoupling the transport from the SSL state machine. The buffering logic is hidden behind an opaque API. Fields like ssl->packet and ssl->packet_length are gone. ssl3_get_record and dtls1_get_record now call low-level tls_open_record and dtls_open_record functions that unpack a single record independent of who owns the buffer. Both may be called in-place. This removes ssl->rstate which was redundant with the buffer length. Future work will push the buffer up the stack until it is above the handshake. Then we can expose SSL_open and SSL_seal APIs which act like *_open_record but return a slightly larger enum due to other events being possible. Likewise the handshake state machine will be detached from its buffer. The existing SSL_read, SSL_write, etc., APIs will be implemented on top of SSL_open, etc., combined with ssl_read_buffer_* and ssl_write_buffer_*. (Which is why ssl_read_buffer_extend still tries to abstract between TLS's and DTLS's fairly different needs.) The new buffering logic does not support read-ahead (removed previously) since it lacks a memmove on ssl_read_buffer_discard for TLS, but this could be added if desired. The old buffering logic wasn't quite right anyway; it tried to avoid the memmove in some cases and could get stuck too far into the buffer and not accept records. (The only time the memmove is optional is in DTLS or if enough of the record header is available to know that the entire next record would fit in the buffer.) The new logic also now actually decrypts the ciphertext in-place again, rather than almost in-place when there's an explicit nonce/IV. (That accidentally switched in https://boringssl-review.googlesource.com/#/c/4792/; see 3d59e04bce96474099ba76786a2337e99ae14505.) BUG=468889 Change-Id: I403c1626253c46897f47c7ae93aeab1064b767b2 Reviewed-on: https://boringssl-review.googlesource.com/5715 Reviewed-by: Adam Langley <agl@google.com>
há 9 anos
Tighten up EMS resumption behaviour. The client and server both have to decide on behaviour when resuming a session where the EMS state of the session doesn't match the EMS state as exchanged in the handshake. Original handshake | No Yes ------+-------------------------------------------------------------- | R | Server: ok [1] Server: abort [3] e No | Client: ok [2] Client: abort [4] s | u | m | e | Yes | Server: don't resume No problem | Client: abort; server | shouldn't have resumed [1] Servers want to accept legacy clients. The draft[5] says that resumptions SHOULD be rejected so that Triple-Handshake can't be done, but we'll rather enforce that EMS was used when using tls-unique etc. [2] The draft[5] says that even the initial handshake should be aborted if the server doesn't support EMS, but we need to be able to talk to the world. [3] This is a very weird case where a client has regressed without flushing the session cache. Hopefully we can be strict and reject these. [4] This can happen when a server-farm shares a session cache but frontends are not all updated at once. If Chrome is strict here then hopefully we can prevent any servers from existing that will try to resume an EMS session that they don't understand. OpenSSL appears to be ok here: https://www.ietf.org/mail-archive/web/tls/current/msg16570.html [5] https://tools.ietf.org/html/draft-ietf-tls-session-hash-05#section-5.2 BUG=492200 Change-Id: Ie1225a3960d49117b05eefa5a36263d8e556e467 Reviewed-on: https://boringssl-review.googlesource.com/4981 Reviewed-by: Adam Langley <agl@google.com>
há 9 anos
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584
  1. /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
  2. * All rights reserved.
  3. *
  4. * This package is an SSL implementation written
  5. * by Eric Young (eay@cryptsoft.com).
  6. * The implementation was written so as to conform with Netscapes SSL.
  7. *
  8. * This library is free for commercial and non-commercial use as long as
  9. * the following conditions are aheared to. The following conditions
  10. * apply to all code found in this distribution, be it the RC4, RSA,
  11. * lhash, DES, etc., code; not just the SSL code. The SSL documentation
  12. * included with this distribution is covered by the same copyright terms
  13. * except that the holder is Tim Hudson (tjh@cryptsoft.com).
  14. *
  15. * Copyright remains Eric Young's, and as such any Copyright notices in
  16. * the code are not to be removed.
  17. * If this package is used in a product, Eric Young should be given attribution
  18. * as the author of the parts of the library used.
  19. * This can be in the form of a textual message at program startup or
  20. * in documentation (online or textual) provided with the package.
  21. *
  22. * Redistribution and use in source and binary forms, with or without
  23. * modification, are permitted provided that the following conditions
  24. * are met:
  25. * 1. Redistributions of source code must retain the copyright
  26. * notice, this list of conditions and the following disclaimer.
  27. * 2. Redistributions in binary form must reproduce the above copyright
  28. * notice, this list of conditions and the following disclaimer in the
  29. * documentation and/or other materials provided with the distribution.
  30. * 3. All advertising materials mentioning features or use of this software
  31. * must display the following acknowledgement:
  32. * "This product includes cryptographic software written by
  33. * Eric Young (eay@cryptsoft.com)"
  34. * The word 'cryptographic' can be left out if the rouines from the library
  35. * being used are not cryptographic related :-).
  36. * 4. If you include any Windows specific code (or a derivative thereof) from
  37. * the apps directory (application code) you must include an acknowledgement:
  38. * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
  39. *
  40. * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
  41. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  42. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  43. * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
  44. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  45. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  46. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  47. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  48. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  49. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  50. * SUCH DAMAGE.
  51. *
  52. * The licence and distribution terms for any publically available version or
  53. * derivative of this code cannot be changed. i.e. this code cannot simply be
  54. * copied and put under another distribution licence
  55. * [including the GNU Public Licence.]
  56. */
  57. /* ====================================================================
  58. * Copyright (c) 1998-2007 The OpenSSL Project. All rights reserved.
  59. *
  60. * Redistribution and use in source and binary forms, with or without
  61. * modification, are permitted provided that the following conditions
  62. * are met:
  63. *
  64. * 1. Redistributions of source code must retain the above copyright
  65. * notice, this list of conditions and the following disclaimer.
  66. *
  67. * 2. Redistributions in binary form must reproduce the above copyright
  68. * notice, this list of conditions and the following disclaimer in
  69. * the documentation and/or other materials provided with the
  70. * distribution.
  71. *
  72. * 3. All advertising materials mentioning features or use of this
  73. * software must display the following acknowledgment:
  74. * "This product includes software developed by the OpenSSL Project
  75. * for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
  76. *
  77. * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
  78. * endorse or promote products derived from this software without
  79. * prior written permission. For written permission, please contact
  80. * openssl-core@openssl.org.
  81. *
  82. * 5. Products derived from this software may not be called "OpenSSL"
  83. * nor may "OpenSSL" appear in their names without prior written
  84. * permission of the OpenSSL Project.
  85. *
  86. * 6. Redistributions of any form whatsoever must retain the following
  87. * acknowledgment:
  88. * "This product includes software developed by the OpenSSL Project
  89. * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
  90. *
  91. * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
  92. * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  93. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  94. * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
  95. * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  96. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  97. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  98. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  99. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  100. * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  101. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  102. * OF THE POSSIBILITY OF SUCH DAMAGE.
  103. * ====================================================================
  104. *
  105. * This product includes cryptographic software written by Eric Young
  106. * (eay@cryptsoft.com). This product includes software written by Tim
  107. * Hudson (tjh@cryptsoft.com).
  108. *
  109. */
  110. /* ====================================================================
  111. * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED.
  112. * ECC cipher suite support in OpenSSL originally developed by
  113. * SUN MICROSYSTEMS, INC., and contributed to the OpenSSL project.
  114. */
  115. /* ====================================================================
  116. * Copyright 2005 Nokia. All rights reserved.
  117. *
  118. * The portions of the attached software ("Contribution") is developed by
  119. * Nokia Corporation and is licensed pursuant to the OpenSSL open source
  120. * license.
  121. *
  122. * The Contribution, originally written by Mika Kousa and Pasi Eronen of
  123. * Nokia Corporation, consists of the "PSK" (Pre-Shared Key) ciphersuites
  124. * support (see RFC 4279) to OpenSSL.
  125. *
  126. * No patent licenses or other rights except those expressly stated in
  127. * the OpenSSL open source license shall be deemed granted or received
  128. * expressly, by implication, estoppel, or otherwise.
  129. *
  130. * No assurances are provided by Nokia that the Contribution does not
  131. * infringe the patent or other intellectual property rights of any third
  132. * party or that the license provides you with all the necessary rights
  133. * to make use of the Contribution.
  134. *
  135. * THE SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. IN
  136. * ADDITION TO THE DISCLAIMERS INCLUDED IN THE LICENSE, NOKIA
  137. * SPECIFICALLY DISCLAIMS ANY LIABILITY FOR CLAIMS BROUGHT BY YOU OR ANY
  138. * OTHER ENTITY BASED ON INFRINGEMENT OF INTELLECTUAL PROPERTY RIGHTS OR
  139. * OTHERWISE.
  140. */
  141. #ifndef OPENSSL_HEADER_SSL_H
  142. #define OPENSSL_HEADER_SSL_H
  143. #include <openssl/base.h>
  144. #include <openssl/bio.h>
  145. #include <openssl/buf.h>
  146. #include <openssl/hmac.h>
  147. #include <openssl/lhash.h>
  148. #include <openssl/pem.h>
  149. #include <openssl/ssl3.h>
  150. #include <openssl/thread.h>
  151. #include <openssl/tls1.h>
  152. #include <openssl/x509.h>
  153. #if !defined(OPENSSL_WINDOWS)
  154. #include <sys/time.h>
  155. #endif
  156. /* wpa_supplicant expects to get the version functions from ssl.h */
  157. #include <openssl/crypto.h>
  158. /* Forward-declare struct timeval. On Windows, it is defined in winsock2.h and
  159. * Windows headers define too many macros to be included in public headers.
  160. * However, only a forward declaration is needed. */
  161. struct timeval;
  162. #if defined(__cplusplus)
  163. extern "C" {
  164. #endif
  165. /* SSL implementation. */
  166. /* SSL contexts.
  167. *
  168. * |SSL_CTX| objects manage shared state and configuration between multiple TLS
  169. * or DTLS connections. Whether the connections are TLS or DTLS is selected by
  170. * an |SSL_METHOD| on creation.
  171. *
  172. * |SSL_CTX| are reference-counted and may be shared by connections across
  173. * multiple threads. Once shared, functions which change the |SSL_CTX|'s
  174. * configuration may not be used. */
  175. /* TLS_method is the |SSL_METHOD| used for TLS (and SSLv3) connections. */
  176. OPENSSL_EXPORT const SSL_METHOD *TLS_method(void);
  177. /* DTLS_method is the |SSL_METHOD| used for DTLS connections. */
  178. OPENSSL_EXPORT const SSL_METHOD *DTLS_method(void);
  179. /* SSL_CTX_new returns a newly-allocated |SSL_CTX| with default settings or NULL
  180. * on error. */
  181. OPENSSL_EXPORT SSL_CTX *SSL_CTX_new(const SSL_METHOD *method);
  182. /* SSL_CTX_free releases memory associated with |ctx|. */
  183. OPENSSL_EXPORT void SSL_CTX_free(SSL_CTX *ctx);
  184. /* SSL connections.
  185. *
  186. * An |SSL| object represents a single TLS or DTLS connection. Although the
  187. * shared |SSL_CTX| is thread-safe, an |SSL| is not thread-safe and may only be
  188. * used on one thread at a time. */
  189. /* SSL_new returns a newly-allocated |SSL| using |ctx| or NULL on error. The new
  190. * connection inherits settings from |ctx| at the time of creation. Settings may
  191. * also be individually configured on the connection.
  192. *
  193. * On creation, an |SSL| is not configured to be either a client or server. Call
  194. * |SSL_set_connect_state| or |SSL_set_accept_state| to set this. */
  195. OPENSSL_EXPORT SSL *SSL_new(SSL_CTX *ctx);
  196. /* SSL_free releases memory associated with |ssl|. */
  197. OPENSSL_EXPORT void SSL_free(SSL *ssl);
  198. /* SSL_get_SSL_CTX returns the |SSL_CTX| associated with |ssl|. If
  199. * |SSL_set_SSL_CTX| is called, it returns the new |SSL_CTX|, not the initial
  200. * one. */
  201. OPENSSL_EXPORT SSL_CTX *SSL_get_SSL_CTX(const SSL *ssl);
  202. /* SSL_set_connect_state configures |ssl| to be a client. */
  203. OPENSSL_EXPORT void SSL_set_connect_state(SSL *ssl);
  204. /* SSL_set_accept_state configures |ssl| to be a server. */
  205. OPENSSL_EXPORT void SSL_set_accept_state(SSL *ssl);
  206. /* SSL_is_server returns one if |ssl| is configured as a server and zero
  207. * otherwise. */
  208. OPENSSL_EXPORT int SSL_is_server(SSL *ssl);
  209. /* SSL_set_bio configures |ssl| to read from |rbio| and write to |wbio|. |ssl|
  210. * takes ownership of the two |BIO|s. If |rbio| and |wbio| are the same, |ssl|
  211. * only takes ownership of one reference.
  212. *
  213. * In DTLS, if |rbio| is blocking, it must handle
  214. * |BIO_CTRL_DGRAM_SET_NEXT_TIMEOUT| control requests to set read timeouts.
  215. *
  216. * Calling this function on an already-configured |ssl| is deprecated. */
  217. OPENSSL_EXPORT void SSL_set_bio(SSL *ssl, BIO *rbio, BIO *wbio);
  218. /* SSL_get_rbio returns the |BIO| that |ssl| reads from. */
  219. OPENSSL_EXPORT BIO *SSL_get_rbio(const SSL *ssl);
  220. /* SSL_get_wbio returns the |BIO| that |ssl| writes to. */
  221. OPENSSL_EXPORT BIO *SSL_get_wbio(const SSL *ssl);
  222. /* SSL_get_fd calls |SSL_get_rfd|. */
  223. OPENSSL_EXPORT int SSL_get_fd(const SSL *ssl);
  224. /* SSL_get_rfd returns the file descriptor that |ssl| is configured to read
  225. * from. If |ssl|'s read |BIO| is not configured or doesn't wrap a file
  226. * descriptor then it returns -1. */
  227. OPENSSL_EXPORT int SSL_get_rfd(const SSL *ssl);
  228. /* SSL_get_wfd returns the file descriptor that |ssl| is configured to write
  229. * to. If |ssl|'s write |BIO| is not configured or doesn't wrap a file
  230. * descriptor then it returns -1. */
  231. OPENSSL_EXPORT int SSL_get_wfd(const SSL *ssl);
  232. /* SSL_set_fd configures |ssl| to read from and write to |fd|. It returns one
  233. * on success and zero on allocation error. The caller retains ownership of
  234. * |fd|. */
  235. OPENSSL_EXPORT int SSL_set_fd(SSL *ssl, int fd);
  236. /* SSL_set_rfd configures |ssl| to read from |fd|. It returns one on success and
  237. * zero on allocation error. The caller retains ownership of |fd|. */
  238. OPENSSL_EXPORT int SSL_set_rfd(SSL *ssl, int fd);
  239. /* SSL_set_wfd configures |ssl| to write to |fd|. It returns one on success and
  240. * zero on allocation error. The caller retains ownership of |fd|. */
  241. OPENSSL_EXPORT int SSL_set_wfd(SSL *ssl, int fd);
  242. /* SSL_do_handshake continues the current handshake. If there is none or the
  243. * handshake has completed or False Started, it returns one. Otherwise, it
  244. * returns <= 0. The caller should pass the value into |SSL_get_error| to
  245. * determine how to proceed.
  246. *
  247. * In DTLS, if the read |BIO| is non-blocking, the caller must drive
  248. * retransmissions. Whenever |SSL_get_error| signals |SSL_ERROR_WANT_READ|, use
  249. * |DTLSv1_get_timeout| to determine the current timeout. If it expires before
  250. * the next retry, call |DTLSv1_handle_timeout|. Note that DTLS handshake
  251. * retransmissions use fresh sequence numbers, so it is not sufficient to replay
  252. * packets at the transport.
  253. *
  254. * TODO(davidben): Ensure 0 is only returned on transport EOF.
  255. * https://crbug.com/466303. */
  256. OPENSSL_EXPORT int SSL_do_handshake(SSL *ssl);
  257. /* SSL_connect configures |ssl| as a client, if unconfigured, and calls
  258. * |SSL_do_handshake|. */
  259. OPENSSL_EXPORT int SSL_connect(SSL *ssl);
  260. /* SSL_accept configures |ssl| as a server, if unconfigured, and calls
  261. * |SSL_do_handshake|. */
  262. OPENSSL_EXPORT int SSL_accept(SSL *ssl);
  263. /* SSL_read reads up to |num| bytes from |ssl| into |buf|. It implicitly runs
  264. * any pending handshakes, including renegotiations when enabled. On success, it
  265. * returns the number of bytes read. Otherwise, it returns <= 0. The caller
  266. * should pass the value into |SSL_get_error| to determine how to proceed.
  267. *
  268. * TODO(davidben): Ensure 0 is only returned on transport EOF.
  269. * https://crbug.com/466303. */
  270. OPENSSL_EXPORT int SSL_read(SSL *ssl, void *buf, int num);
  271. /* SSL_peek behaves like |SSL_read| but does not consume any bytes returned. */
  272. OPENSSL_EXPORT int SSL_peek(SSL *ssl, void *buf, int num);
  273. /* SSL_pending returns the number of bytes available in |ssl|. It does not read
  274. * from the transport. */
  275. OPENSSL_EXPORT int SSL_pending(const SSL *ssl);
  276. /* SSL_write writes up to |num| bytes from |buf| into |ssl|. It implicitly runs
  277. * any pending handshakes, including renegotiations when enabled. On success, it
  278. * returns the number of bytes read. Otherwise, it returns <= 0. The caller
  279. * should pass the value into |SSL_get_error| to determine how to proceed.
  280. *
  281. * In TLS, a non-blocking |SSL_write| differs from non-blocking |write| in that
  282. * a failed |SSL_write| still commits to the data passed in. When retrying, the
  283. * caller must supply the original write buffer (or a larger one containing the
  284. * original as a prefix). By default, retries will fail if they also do not
  285. * reuse the same |buf| pointer. This may be relaxed with
  286. * |SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER|, but the buffer contents still must be
  287. * unchanged.
  288. *
  289. * By default, in TLS, |SSL_write| will not return success until all |num| bytes
  290. * are written. This may be relaxed with |SSL_MODE_ENABLE_PARTIAL_WRITE|. It
  291. * allows |SSL_write| to complete with a partial result when only part of the
  292. * input was written in a single record.
  293. *
  294. * In DTLS, neither |SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER| and
  295. * |SSL_MODE_ENABLE_PARTIAL_WRITE| do anything. The caller may retry with a
  296. * different buffer freely. A single call to |SSL_write| only ever writes a
  297. * single record in a single packet, so |num| must be at most
  298. * |SSL3_RT_MAX_PLAIN_LENGTH|.
  299. *
  300. * TODO(davidben): Ensure 0 is only returned on transport EOF.
  301. * https://crbug.com/466303. */
  302. OPENSSL_EXPORT int SSL_write(SSL *ssl, const void *buf, int num);
  303. /* SSL_shutdown shuts down |ssl|. On success, it completes in two stages. First,
  304. * it returns 0 if |ssl| completed uni-directional shutdown; close_notify has
  305. * been sent, but the peer's close_notify has not been received. Most callers
  306. * may stop at this point. For bi-directional shutdown, call |SSL_shutdown|
  307. * again. It returns 1 if close_notify has been both sent and received.
  308. *
  309. * If the peer's close_notify arrived first, the first stage is skipped.
  310. * |SSL_shutdown| will return 1 once close_notify is sent and skip 0. Callers
  311. * only interested in uni-directional shutdown must therefore allow for the
  312. * first stage returning either 0 or 1.
  313. *
  314. * |SSL_shutdown| returns -1 on failure. The caller should pass the return value
  315. * into |SSL_get_error| to determine how to proceed. If the underlying |BIO| is
  316. * non-blocking, both stages may require retry.
  317. *
  318. * |SSL_shutdown| must be called to retain |ssl|'s session in the session
  319. * cache. Use |SSL_CTX_set_quiet_shutdown| to configure |SSL_shutdown| to
  320. * neither send nor wait for close_notify but still retain the session.
  321. *
  322. * TODO(davidben): Is there any point in the session cache interaction? Remove
  323. * it? */
  324. OPENSSL_EXPORT int SSL_shutdown(SSL *ssl);
  325. /* SSL_CTX_set_quiet_shutdown sets quiet shutdown on |ctx| to |mode|. If
  326. * enabled, |SSL_shutdown| will not send a close_notify alert or wait for one
  327. * from the peer. It will instead synchronously return one. */
  328. OPENSSL_EXPORT void SSL_CTX_set_quiet_shutdown(SSL_CTX *ctx, int mode);
  329. /* SSL_CTX_get_quiet_shutdown returns whether quiet shutdown is enabled for
  330. * |ctx|. */
  331. OPENSSL_EXPORT int SSL_CTX_get_quiet_shutdown(const SSL_CTX *ctx);
  332. /* SSL_set_quiet_shutdown sets quiet shutdown on |ssl| to |mode|. If enabled,
  333. * |SSL_shutdown| will not send a close_notify alert or wait for one from the
  334. * peer. It will instead synchronously return one. */
  335. OPENSSL_EXPORT void SSL_set_quiet_shutdown(SSL *ssl, int mode);
  336. /* SSL_get_quiet_shutdown returns whether quiet shutdown is enabled for
  337. * |ssl|. */
  338. OPENSSL_EXPORT int SSL_get_quiet_shutdown(const SSL *ssl);
  339. /* SSL_get_error returns a |SSL_ERROR_*| value for the most recent operation on
  340. * |ssl|. It should be called after an operation failed to determine whether the
  341. * error was fatal and, if not, when to retry. */
  342. OPENSSL_EXPORT int SSL_get_error(const SSL *ssl, int ret_code);
  343. /* SSL_ERROR_NONE indicates the operation succeeded. */
  344. #define SSL_ERROR_NONE 0
  345. /* SSL_ERROR_SSL indicates the operation failed within the library. The caller
  346. * may inspect the error queue for more information. */
  347. #define SSL_ERROR_SSL 1
  348. /* SSL_ERROR_WANT_READ indicates the operation failed attempting to read from
  349. * the transport. The caller may retry the operation when the transport is ready
  350. * for reading.
  351. *
  352. * If signaled by a DTLS handshake, the caller must also call
  353. * |DTLSv1_get_timeout| and |DTLSv1_handle_timeout| as appropriate. See
  354. * |SSL_do_handshake|. */
  355. #define SSL_ERROR_WANT_READ 2
  356. /* SSL_ERROR_WANT_WRITE indicates the operation failed attempting to write to
  357. * the transport. The caller may retry the operation when the transport is ready
  358. * for writing. */
  359. #define SSL_ERROR_WANT_WRITE 3
  360. /* SSL_ERROR_WANT_X509_LOOKUP indicates the operation failed in calling the
  361. * |cert_cb| or |client_cert_cb|. The caller may retry the operation when the
  362. * callback is ready to return a certificate or one has been configured
  363. * externally.
  364. *
  365. * See also |SSL_CTX_set_cert_cb| and |SSL_CTX_set_client_cert_cb|. */
  366. #define SSL_ERROR_WANT_X509_LOOKUP 4
  367. /* SSL_ERROR_WANT_SYSCALL indicates the operation failed externally to the
  368. * library. The caller should consult the system-specific error mechanism. This
  369. * is typically |errno| but may be something custom if using a custom |BIO|. It
  370. * may also be signaled if the transport returned EOF, in which case the
  371. * operation's return value will be zero. */
  372. #define SSL_ERROR_SYSCALL 5
  373. /* SSL_ERROR_ZERO_RETURN indicates the operation failed because the connection
  374. * was cleanly shut down with a close_notify alert. */
  375. #define SSL_ERROR_ZERO_RETURN 6
  376. /* SSL_ERROR_WANT_CONNECT indicates the operation failed attempting to connect
  377. * the transport (the |BIO| signaled |BIO_RR_CONNECT|). The caller may retry the
  378. * operation when the transport is ready. */
  379. #define SSL_ERROR_WANT_CONNECT 7
  380. /* SSL_ERROR_WANT_ACCEPT indicates the operation failed attempting to accept a
  381. * connection from the transport (the |BIO| signaled |BIO_RR_ACCEPT|). The
  382. * caller may retry the operation when the transport is ready.
  383. *
  384. * TODO(davidben): Remove this. It's used by accept BIOs which are bizarre. */
  385. #define SSL_ERROR_WANT_ACCEPT 8
  386. /* SSL_ERROR_WANT_CHANNEL_ID_LOOKUP indicates the operation failed looking up
  387. * the Channel ID key. The caller may retry the operation when |channel_id_cb|
  388. * is ready to return a key or one has been configured with
  389. * |SSL_set1_tls_channel_id|.
  390. *
  391. * See also |SSL_CTX_set_channel_id_cb|. */
  392. #define SSL_ERROR_WANT_CHANNEL_ID_LOOKUP 9
  393. /* SSL_ERROR_PENDING_SESSION indicates the operation failed because the session
  394. * lookup callback indicated the session was unavailable. The caller may retry
  395. * the operation when lookup has completed.
  396. *
  397. * See also |SSL_CTX_sess_set_get_cb| and |SSL_magic_pending_session_ptr|. */
  398. #define SSL_ERROR_PENDING_SESSION 11
  399. /* SSL_ERROR_PENDING_CERTIFICATE indicates the operation failed because the
  400. * early callback indicated certificate lookup was incomplete. The caller may
  401. * retry the operation when lookup has completed. Note: when the operation is
  402. * retried, the early callback will not be called a second time.
  403. *
  404. * See also |SSL_CTX_set_select_certificate_cb|. */
  405. #define SSL_ERROR_PENDING_CERTIFICATE 12
  406. /* SSL_ERROR_WANT_PRIVATE_KEY_OPERATION indicates the operation failed because
  407. * a private key operation was unfinished. The caller may retry the operation
  408. * when the private key operation is complete.
  409. *
  410. * See also |SSL_set_private_key_method|. */
  411. #define SSL_ERROR_WANT_PRIVATE_KEY_OPERATION 13
  412. /* SSL_set_mtu sets the |ssl|'s MTU in DTLS to |mtu|. It returns one on success
  413. * and zero on failure. */
  414. OPENSSL_EXPORT int SSL_set_mtu(SSL *ssl, unsigned mtu);
  415. /* DTLSv1_get_timeout queries the next DTLS handshake timeout. If there is a
  416. * timeout in progress, it sets |*out| to the time remaining and returns one.
  417. * Otherwise, it returns zero.
  418. *
  419. * When the timeout expires, call |DTLSv1_handle_timeout| to handle the
  420. * retransmit behavior.
  421. *
  422. * NOTE: This function must be queried again whenever the handshake state
  423. * machine changes, including when |DTLSv1_handle_timeout| is called. */
  424. OPENSSL_EXPORT int DTLSv1_get_timeout(const SSL *ssl, struct timeval *out);
  425. /* DTLSv1_handle_timeout is called when a DTLS handshake timeout expires. If no
  426. * timeout had expired, it returns 0. Otherwise, it retransmits the previous
  427. * flight of handshake messages and returns 1. If too many timeouts had expired
  428. * without progress or an error occurs, it returns -1.
  429. *
  430. * The caller's external timer should be compatible with the one |ssl| queries
  431. * within some fudge factor. Otherwise, the call will be a no-op, but
  432. * |DTLSv1_get_timeout| will return an updated timeout.
  433. *
  434. * If the function returns -1, checking if |SSL_get_error| returns
  435. * |SSL_ERROR_WANT_WRITE| may be used to determine if the retransmit failed due
  436. * to a non-fatal error at the write |BIO|. However, the operation may not be
  437. * retried until the next timeout fires.
  438. *
  439. * WARNING: This function breaks the usual return value convention.
  440. *
  441. * TODO(davidben): This |SSL_ERROR_WANT_WRITE| behavior is kind of bizarre. */
  442. OPENSSL_EXPORT int DTLSv1_handle_timeout(SSL *ssl);
  443. /* Protocol versions. */
  444. #define DTLS1_VERSION_MAJOR 0xfe
  445. #define SSL3_VERSION_MAJOR 0x03
  446. #define SSL3_VERSION 0x0300
  447. #define TLS1_VERSION 0x0301
  448. #define TLS1_1_VERSION 0x0302
  449. #define TLS1_2_VERSION 0x0303
  450. #define DTLS1_VERSION 0xfeff
  451. #define DTLS1_2_VERSION 0xfefd
  452. /* SSL_CTX_set_min_version sets the minimum protocol version for |ctx| to
  453. * |version|. */
  454. OPENSSL_EXPORT void SSL_CTX_set_min_version(SSL_CTX *ctx, uint16_t version);
  455. /* SSL_CTX_set_max_version sets the maximum protocol version for |ctx| to
  456. * |version|. */
  457. OPENSSL_EXPORT void SSL_CTX_set_max_version(SSL_CTX *ctx, uint16_t version);
  458. /* SSL_set_min_version sets the minimum protocol version for |ssl| to
  459. * |version|. */
  460. OPENSSL_EXPORT void SSL_set_min_version(SSL *ssl, uint16_t version);
  461. /* SSL_set_max_version sets the maximum protocol version for |ssl| to
  462. * |version|. */
  463. OPENSSL_EXPORT void SSL_set_max_version(SSL *ssl, uint16_t version);
  464. /* SSL_version returns the TLS or DTLS protocol version used by |ssl|, which is
  465. * one of the |*_VERSION| values. (E.g. |TLS1_2_VERSION|.) Before the version
  466. * is negotiated, the result is undefined. */
  467. OPENSSL_EXPORT int SSL_version(const SSL *ssl);
  468. /* Options.
  469. *
  470. * Options configure protocol behavior. */
  471. /* SSL_OP_LEGACY_SERVER_CONNECT allows initial connections to servers that don't
  472. * support the renegotiation_info extension (RFC 5746). It is on by default. */
  473. #define SSL_OP_LEGACY_SERVER_CONNECT 0x00000004L
  474. /* SSL_OP_MICROSOFT_BIG_SSLV3_BUFFER allows for record sizes |SSL3_RT_MAX_EXTRA|
  475. * bytes above the maximum record size. */
  476. #define SSL_OP_MICROSOFT_BIG_SSLV3_BUFFER 0x00000020L
  477. /* SSL_OP_TLS_D5_BUG accepts an RSAClientKeyExchange in TLS encoded as in SSL3
  478. * (i.e. without a length prefix). */
  479. #define SSL_OP_TLS_D5_BUG 0x00000100L
  480. /* SSL_OP_ALL enables the above bug workarounds that are enabled by many
  481. * consumers.
  482. * TODO(davidben): Determine which of the remaining may be removed now. */
  483. #define SSL_OP_ALL 0x00000BFFL
  484. /* SSL_OP_NO_QUERY_MTU, in DTLS, disables querying the MTU from the underlying
  485. * |BIO|. Instead, the MTU is configured with |SSL_set_mtu|. */
  486. #define SSL_OP_NO_QUERY_MTU 0x00001000L
  487. /* SSL_OP_NO_TICKET disables session ticket support (RFC 5077). */
  488. #define SSL_OP_NO_TICKET 0x00004000L
  489. /* SSL_OP_CIPHER_SERVER_PREFERENCE configures servers to select ciphers and
  490. * ECDHE curves according to the server's preferences instead of the
  491. * client's. */
  492. #define SSL_OP_CIPHER_SERVER_PREFERENCE 0x00400000L
  493. /* SSL_OP_DISABLE_NPN configures an individual |SSL| to not advertise NPN,
  494. * despite |SSL_CTX_set_next_proto_select_cb| being configured on the
  495. * |SSL_CTX|. */
  496. #define SSL_OP_DISABLE_NPN 0x00800000L
  497. /* SSL_CTX_set_options enables all options set in |options| (which should be one
  498. * or more of the |SSL_OP_*| values, ORed together) in |ctx|. It returns a
  499. * bitmask representing the resulting enabled options. */
  500. OPENSSL_EXPORT uint32_t SSL_CTX_set_options(SSL_CTX *ctx, uint32_t options);
  501. /* SSL_CTX_clear_options disables all options set in |options| (which should be
  502. * one or more of the |SSL_OP_*| values, ORed together) in |ctx|. It returns a
  503. * bitmask representing the resulting enabled options. */
  504. OPENSSL_EXPORT uint32_t SSL_CTX_clear_options(SSL_CTX *ctx, uint32_t options);
  505. /* SSL_CTX_get_options returns a bitmask of |SSL_OP_*| values that represent all
  506. * the options enabled for |ctx|. */
  507. OPENSSL_EXPORT uint32_t SSL_CTX_get_options(const SSL_CTX *ctx);
  508. /* SSL_set_options enables all options set in |options| (which should be one or
  509. * more of the |SSL_OP_*| values, ORed together) in |ssl|. It returns a bitmask
  510. * representing the resulting enabled options. */
  511. OPENSSL_EXPORT uint32_t SSL_set_options(SSL *ssl, uint32_t options);
  512. /* SSL_clear_options disables all options set in |options| (which should be one
  513. * or more of the |SSL_OP_*| values, ORed together) in |ssl|. It returns a
  514. * bitmask representing the resulting enabled options. */
  515. OPENSSL_EXPORT uint32_t SSL_clear_options(SSL *ssl, uint32_t options);
  516. /* SSL_get_options returns a bitmask of |SSL_OP_*| values that represent all the
  517. * options enabled for |ssl|. */
  518. OPENSSL_EXPORT uint32_t SSL_get_options(const SSL *ssl);
  519. /* Modes.
  520. *
  521. * Modes configure API behavior. */
  522. /* SSL_MODE_ENABLE_PARTIAL_WRITE, in TLS, allows |SSL_write| to complete with a
  523. * partial result when the only part of the input was written in a single
  524. * record. In DTLS, it does nothing. */
  525. #define SSL_MODE_ENABLE_PARTIAL_WRITE 0x00000001L
  526. /* SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER, in TLS, allows retrying an incomplete
  527. * |SSL_write| with a different buffer. However, |SSL_write| still assumes the
  528. * buffer contents are unchanged. This is not the default to avoid the
  529. * misconception that non-blocking |SSL_write| behaves like non-blocking
  530. * |write|. In DTLS, it does nothing. */
  531. #define SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER 0x00000002L
  532. /* SSL_MODE_NO_AUTO_CHAIN disables automatically building a certificate chain
  533. * before sending certificates to the peer.
  534. * TODO(davidben): Remove this behavior. https://crbug.com/486295. */
  535. #define SSL_MODE_NO_AUTO_CHAIN 0x00000008L
  536. /* SSL_MODE_ENABLE_FALSE_START allows clients to send application data before
  537. * receipt of ChangeCipherSpec and Finished. This mode enables full-handshakes
  538. * to 'complete' in one RTT. See draft-bmoeller-tls-falsestart-01.
  539. *
  540. * When False Start is enabled, |SSL_do_handshake| may succeed before the
  541. * handshake has completely finished. |SSL_write| will function at this point,
  542. * and |SSL_read| will transparently wait for the final handshake leg before
  543. * returning application data. To determine if False Start occurred or when the
  544. * handshake is completely finished, see |SSL_in_false_start|, |SSL_in_init|,
  545. * and |SSL_CB_HANDSHAKE_DONE| from |SSL_CTX_set_info_callback|. */
  546. #define SSL_MODE_ENABLE_FALSE_START 0x00000080L
  547. /* SSL_MODE_CBC_RECORD_SPLITTING causes multi-byte CBC records in SSL 3.0 and
  548. * TLS 1.0 to be split in two: the first record will contain a single byte and
  549. * the second will contain the remainder. This effectively randomises the IV and
  550. * prevents BEAST attacks. */
  551. #define SSL_MODE_CBC_RECORD_SPLITTING 0x00000100L
  552. /* SSL_MODE_NO_SESSION_CREATION will cause any attempts to create a session to
  553. * fail with SSL_R_SESSION_MAY_NOT_BE_CREATED. This can be used to enforce that
  554. * session resumption is used for a given SSL*. */
  555. #define SSL_MODE_NO_SESSION_CREATION 0x00000200L
  556. /* SSL_MODE_SEND_FALLBACK_SCSV sends TLS_FALLBACK_SCSV in the ClientHello.
  557. * To be set only by applications that reconnect with a downgraded protocol
  558. * version; see RFC 7507 for details.
  559. *
  560. * DO NOT ENABLE THIS if your application attempts a normal handshake. Only use
  561. * this in explicit fallback retries, following the guidance in RFC 7507. */
  562. #define SSL_MODE_SEND_FALLBACK_SCSV 0x00000400L
  563. /* SSL_CTX_set_mode enables all modes set in |mode| (which should be one or more
  564. * of the |SSL_MODE_*| values, ORed together) in |ctx|. It returns a bitmask
  565. * representing the resulting enabled modes. */
  566. OPENSSL_EXPORT uint32_t SSL_CTX_set_mode(SSL_CTX *ctx, uint32_t mode);
  567. /* SSL_CTX_clear_mode disables all modes set in |mode| (which should be one or
  568. * more of the |SSL_MODE_*| values, ORed together) in |ctx|. It returns a
  569. * bitmask representing the resulting enabled modes. */
  570. OPENSSL_EXPORT uint32_t SSL_CTX_clear_mode(SSL_CTX *ctx, uint32_t mode);
  571. /* SSL_CTX_get_mode returns a bitmask of |SSL_MODE_*| values that represent all
  572. * the modes enabled for |ssl|. */
  573. OPENSSL_EXPORT uint32_t SSL_CTX_get_mode(const SSL_CTX *ctx);
  574. /* SSL_set_mode enables all modes set in |mode| (which should be one or more of
  575. * the |SSL_MODE_*| values, ORed together) in |ssl|. It returns a bitmask
  576. * representing the resulting enabled modes. */
  577. OPENSSL_EXPORT uint32_t SSL_set_mode(SSL *ssl, uint32_t mode);
  578. /* SSL_clear_mode disables all modes set in |mode| (which should be one or more
  579. * of the |SSL_MODE_*| values, ORed together) in |ssl|. It returns a bitmask
  580. * representing the resulting enabled modes. */
  581. OPENSSL_EXPORT uint32_t SSL_clear_mode(SSL *ssl, uint32_t mode);
  582. /* SSL_get_mode returns a bitmask of |SSL_MODE_*| values that represent all the
  583. * modes enabled for |ssl|. */
  584. OPENSSL_EXPORT uint32_t SSL_get_mode(const SSL *ssl);
  585. /* Configuring certificates and private keys.
  586. *
  587. * These functions configure the connection's leaf certificate, private key, and
  588. * certificate chain. The certificate chain is ordered leaf to root (as sent on
  589. * the wire) but does not include the leaf. Both client and server certificates
  590. * use these functions.
  591. *
  592. * Certificates and keys may be configured before the handshake or dynamically
  593. * in the early callback and certificate callback. */
  594. /* SSL_CTX_use_certificate sets |ctx|'s leaf certificate to |x509|. It returns
  595. * one on success and zero on failure. */
  596. OPENSSL_EXPORT int SSL_CTX_use_certificate(SSL_CTX *ctx, X509 *x509);
  597. /* SSL_use_certificate sets |ssl|'s leaf certificate to |x509|. It returns one
  598. * on success and zero on failure. */
  599. OPENSSL_EXPORT int SSL_use_certificate(SSL *ssl, X509 *x509);
  600. /* SSL_CTX_use_PrivateKey sets |ctx|'s private key to |pkey|. It returns one on
  601. * success and zero on failure. */
  602. OPENSSL_EXPORT int SSL_CTX_use_PrivateKey(SSL_CTX *ctx, EVP_PKEY *pkey);
  603. /* SSL_use_PrivateKey sets |ssl|'s private key to |pkey|. It returns one on
  604. * success and zero on failure. */
  605. OPENSSL_EXPORT int SSL_use_PrivateKey(SSL *ssl, EVP_PKEY *pkey);
  606. /* SSL_CTX_set0_chain sets |ctx|'s certificate chain, excluding the leaf, to
  607. * |chain|. On success, it returns one and takes ownership of |chain|.
  608. * Otherwise, it returns zero. */
  609. OPENSSL_EXPORT int SSL_CTX_set0_chain(SSL_CTX *ctx, STACK_OF(X509) *chain);
  610. /* SSL_CTX_set1_chain sets |ctx|'s certificate chain, excluding the leaf, to
  611. * |chain|. It returns one on success and zero on failure. The caller retains
  612. * ownership of |chain| and may release it freely. */
  613. OPENSSL_EXPORT int SSL_CTX_set1_chain(SSL_CTX *ctx, STACK_OF(X509) *chain);
  614. /* SSL_set0_chain sets |ssl|'s certificate chain, excluding the leaf, to
  615. * |chain|. On success, it returns one and takes ownership of |chain|.
  616. * Otherwise, it returns zero. */
  617. OPENSSL_EXPORT int SSL_set0_chain(SSL *ssl, STACK_OF(X509) *chain);
  618. /* SSL_set1_chain sets |ssl|'s certificate chain, excluding the leaf, to
  619. * |chain|. It returns one on success and zero on failure. The caller retains
  620. * ownership of |chain| and may release it freely. */
  621. OPENSSL_EXPORT int SSL_set1_chain(SSL *ssl, STACK_OF(X509) *chain);
  622. /* SSL_CTX_add0_chain_cert appends |x509| to |ctx|'s certificate chain. On
  623. * success, it returns one and takes ownership of |x509|. Otherwise, it returns
  624. * zero. */
  625. OPENSSL_EXPORT int SSL_CTX_add0_chain_cert(SSL_CTX *ctx, X509 *x509);
  626. /* SSL_CTX_add1_chain_cert appends |x509| to |ctx|'s certificate chain. It
  627. * returns one on success and zero on failure. The caller retains ownership of
  628. * |x509| and may release it freely. */
  629. OPENSSL_EXPORT int SSL_CTX_add1_chain_cert(SSL_CTX *ctx, X509 *x509);
  630. /* SSL_add0_chain_cert appends |x509| to |ctx|'s certificate chain. On success,
  631. * it returns one and takes ownership of |x509|. Otherwise, it returns zero. */
  632. OPENSSL_EXPORT int SSL_add0_chain_cert(SSL *ssl, X509 *x509);
  633. /* SSL_CTX_add_extra_chain_cert calls |SSL_CTX_add0_chain_cert|. */
  634. OPENSSL_EXPORT int SSL_CTX_add_extra_chain_cert(SSL_CTX *ctx, X509 *x509);
  635. /* SSL_add1_chain_cert appends |x509| to |ctx|'s certificate chain. It returns
  636. * one on success and zero on failure. The caller retains ownership of |x509|
  637. * and may release it freely. */
  638. OPENSSL_EXPORT int SSL_add1_chain_cert(SSL *ssl, X509 *x509);
  639. /* SSL_CTX_clear_chain_certs clears |ctx|'s certificate chain and returns
  640. * one. */
  641. OPENSSL_EXPORT int SSL_CTX_clear_chain_certs(SSL_CTX *ctx);
  642. /* SSL_CTX_clear_extra_chain_certs calls |SSL_CTX_clear_chain_certs|. */
  643. OPENSSL_EXPORT int SSL_CTX_clear_extra_chain_certs(SSL_CTX *ctx);
  644. /* SSL_clear_chain_certs clears |ssl|'s certificate chain and returns one. */
  645. OPENSSL_EXPORT int SSL_clear_chain_certs(SSL *ssl);
  646. /* SSL_CTX_set_cert_cb sets a callback that is called to select a certificate.
  647. * The callback returns one on success, zero on internal error, and a negative
  648. * number on failure or to pause the handshake. If the handshake is paused,
  649. * |SSL_get_error| will return |SSL_ERROR_WANT_X509_LOOKUP|.
  650. *
  651. * On the client, the callback may call |SSL_get0_certificate_types| and
  652. * |SSL_get_client_CA_list| for information on the server's certificate
  653. * request. */
  654. OPENSSL_EXPORT void SSL_CTX_set_cert_cb(SSL_CTX *ctx,
  655. int (*cb)(SSL *ssl, void *arg),
  656. void *arg);
  657. /* SSL_set_cert_cb sets a callback that is called to select a certificate. The
  658. * callback returns one on success, zero on internal error, and a negative
  659. * number on failure or to pause the handshake. If the handshake is paused,
  660. * |SSL_get_error| will return |SSL_ERROR_WANT_X509_LOOKUP|.
  661. *
  662. * On the client, the callback may call |SSL_get0_certificate_types| and
  663. * |SSL_get_client_CA_list| for information on the server's certificate
  664. * request. */
  665. OPENSSL_EXPORT void SSL_set_cert_cb(SSL *ssl, int (*cb)(SSL *ssl, void *arg),
  666. void *arg);
  667. /* SSL_get0_certificate_types, for a client, sets |*out_types| to an array
  668. * containing the client certificate types requested by a server. It returns the
  669. * length of the array.
  670. *
  671. * The behavior of this function is undefined except during the callbacks set by
  672. * by |SSL_CTX_set_cert_cb| and |SSL_CTX_set_client_cert_cb| or when the
  673. * handshake is paused because of them. */
  674. OPENSSL_EXPORT size_t SSL_get0_certificate_types(SSL *ssl,
  675. const uint8_t **out_types);
  676. /* SSL_certs_clear resets the private key, leaf certificate, and certificate
  677. * chain of |ssl|. */
  678. OPENSSL_EXPORT void SSL_certs_clear(SSL *ssl);
  679. /* SSL_CTX_check_private_key returns one if the certificate and private key
  680. * configured in |ctx| are consistent and zero otherwise. */
  681. OPENSSL_EXPORT int SSL_CTX_check_private_key(const SSL_CTX *ctx);
  682. /* SSL_check_private_key returns one if the certificate and private key
  683. * configured in |ssl| are consistent and zero otherwise. */
  684. OPENSSL_EXPORT int SSL_check_private_key(const SSL *ssl);
  685. /* SSL_CTX_get0_certificate returns |ctx|'s leaf certificate. */
  686. OPENSSL_EXPORT X509 *SSL_CTX_get0_certificate(const SSL_CTX *ctx);
  687. /* SSL_get_certificate returns |ssl|'s leaf certificate. */
  688. OPENSSL_EXPORT X509 *SSL_get_certificate(const SSL *ssl);
  689. /* SSL_CTX_get0_privatekey returns |ctx|'s private key. */
  690. OPENSSL_EXPORT EVP_PKEY *SSL_CTX_get0_privatekey(const SSL_CTX *ctx);
  691. /* SSL_get_privatekey returns |ssl|'s private key. */
  692. OPENSSL_EXPORT EVP_PKEY *SSL_get_privatekey(const SSL *ssl);
  693. /* SSL_CTX_get0_chain_certs sets |*out_chain| to |ctx|'s certificate chain and
  694. * returns one. */
  695. OPENSSL_EXPORT int SSL_CTX_get0_chain_certs(const SSL_CTX *ctx,
  696. STACK_OF(X509) **out_chain);
  697. /* SSL_CTX_get_extra_chain_certs calls |SSL_CTX_get0_chain_certs|. */
  698. OPENSSL_EXPORT int SSL_CTX_get_extra_chain_certs(const SSL_CTX *ctx,
  699. STACK_OF(X509) **out_chain);
  700. /* SSL_get0_chain_certs sets |*out_chain| to |ssl|'s certificate chain and
  701. * returns one. */
  702. OPENSSL_EXPORT int SSL_get0_chain_certs(const SSL *ssl,
  703. STACK_OF(X509) **out_chain);
  704. /* SSL_CTX_set_signed_cert_timestamp_list sets the list of signed certificate
  705. * timestamps that is sent to clients that request it. The |list| argument must
  706. * contain one or more SCT structures serialised as a SignedCertificateTimestamp
  707. * List (see https://tools.ietf.org/html/rfc6962#section-3.3) – i.e. each SCT
  708. * is prefixed by a big-endian, uint16 length and the concatenation of one or
  709. * more such prefixed SCTs are themselves also prefixed by a uint16 length. It
  710. * returns one on success and zero on error. The caller retains ownership of
  711. * |list|. */
  712. OPENSSL_EXPORT int SSL_CTX_set_signed_cert_timestamp_list(SSL_CTX *ctx,
  713. const uint8_t *list,
  714. size_t list_len);
  715. /* SSL_CTX_set_ocsp_response sets the OCSP reponse that is sent to clients
  716. * which request it. It returns one on success and zero on error. The caller
  717. * retains ownership of |response|. */
  718. OPENSSL_EXPORT int SSL_CTX_set_ocsp_response(SSL_CTX *ctx,
  719. const uint8_t *response,
  720. size_t response_len);
  721. /* SSL_set_private_key_digest_prefs copies |num_digests| NIDs from |digest_nids|
  722. * into |ssl|. These digests will be used, in decreasing order of preference,
  723. * when signing with |ssl|'s private key. It returns one on success and zero on
  724. * error. */
  725. OPENSSL_EXPORT int SSL_set_private_key_digest_prefs(SSL *ssl,
  726. const int *digest_nids,
  727. size_t num_digests);
  728. /* Certificate and private key convenience functions. */
  729. /* SSL_CTX_use_RSAPrivateKey sets |ctx|'s private key to |rsa|. It returns one
  730. * on success and zero on failure. */
  731. OPENSSL_EXPORT int SSL_CTX_use_RSAPrivateKey(SSL_CTX *ctx, RSA *rsa);
  732. /* SSL_use_RSAPrivateKey sets |ctx|'s private key to |rsa|. It returns one on
  733. * success and zero on failure. */
  734. OPENSSL_EXPORT int SSL_use_RSAPrivateKey(SSL *ssl, RSA *rsa);
  735. /* The following functions configure certificates or private keys but take as
  736. * input DER-encoded structures. They return one on success and zero on
  737. * failure. */
  738. OPENSSL_EXPORT int SSL_CTX_use_certificate_ASN1(SSL_CTX *ctx, size_t der_len,
  739. const uint8_t *der);
  740. OPENSSL_EXPORT int SSL_use_certificate_ASN1(SSL *ssl, const uint8_t *der,
  741. size_t der_len);
  742. OPENSSL_EXPORT int SSL_CTX_use_PrivateKey_ASN1(int pk, SSL_CTX *ctx,
  743. const uint8_t *der,
  744. size_t der_len);
  745. OPENSSL_EXPORT int SSL_use_PrivateKey_ASN1(int type, SSL *ssl,
  746. const uint8_t *der, size_t der_len);
  747. OPENSSL_EXPORT int SSL_CTX_use_RSAPrivateKey_ASN1(SSL_CTX *ctx,
  748. const uint8_t *der,
  749. size_t der_len);
  750. OPENSSL_EXPORT int SSL_use_RSAPrivateKey_ASN1(SSL *ssl, const uint8_t *der,
  751. size_t der_len);
  752. /* The following functions configure certificates or private keys but take as
  753. * input files to read from. They return one on success and zero on failure. The
  754. * |type| parameter is one of the |SSL_FILETYPE_*| values and determines whether
  755. * the file's contents are read as PEM or DER. */
  756. #define SSL_FILETYPE_ASN1 X509_FILETYPE_ASN1
  757. #define SSL_FILETYPE_PEM X509_FILETYPE_PEM
  758. OPENSSL_EXPORT int SSL_CTX_use_RSAPrivateKey_file(SSL_CTX *ctx,
  759. const char *file,
  760. int type);
  761. OPENSSL_EXPORT int SSL_use_RSAPrivateKey_file(SSL *ssl, const char *file,
  762. int type);
  763. OPENSSL_EXPORT int SSL_CTX_use_certificate_file(SSL_CTX *ctx, const char *file,
  764. int type);
  765. OPENSSL_EXPORT int SSL_use_certificate_file(SSL *ssl, const char *file,
  766. int type);
  767. OPENSSL_EXPORT int SSL_CTX_use_PrivateKey_file(SSL_CTX *ctx, const char *file,
  768. int type);
  769. OPENSSL_EXPORT int SSL_use_PrivateKey_file(SSL *ssl, const char *file,
  770. int type);
  771. /* SSL_CTX_use_certificate_chain_file configures certificates for |ctx|. It
  772. * reads the contents of |file| as a PEM-encoded leaf certificate followed
  773. * optionally by the certificate chain to send to the peer. It returns one on
  774. * success and zero on failure. */
  775. OPENSSL_EXPORT int SSL_CTX_use_certificate_chain_file(SSL_CTX *ctx,
  776. const char *file);
  777. /* SSL_CTX_set_default_passwd_cb sets the password callback for PEM-based
  778. * convenience functions called on |ctx|. */
  779. OPENSSL_EXPORT void SSL_CTX_set_default_passwd_cb(SSL_CTX *ctx,
  780. pem_password_cb *cb);
  781. /* SSL_CTX_set_default_passwd_cb_userdata sets the userdata parameter for
  782. * |ctx|'s password callback. */
  783. OPENSSL_EXPORT void SSL_CTX_set_default_passwd_cb_userdata(SSL_CTX *ctx,
  784. void *data);
  785. /* Custom private keys. */
  786. enum ssl_private_key_result_t {
  787. ssl_private_key_success,
  788. ssl_private_key_retry,
  789. ssl_private_key_failure,
  790. };
  791. /* SSL_PRIVATE_KEY_METHOD describes private key hooks. This is used to off-load
  792. * signing operations to a custom, potentially asynchronous, backend. */
  793. typedef struct ssl_private_key_method_st {
  794. /* type returns either |EVP_PKEY_RSA| or |EVP_PKEY_EC| to denote the type of
  795. * key used by |ssl|. */
  796. int (*type)(SSL *ssl);
  797. /* max_signature_len returns the maximum length of a signature signed by the
  798. * key used by |ssl|. This must be a constant value for a given |ssl|. */
  799. size_t (*max_signature_len)(SSL *ssl);
  800. /* sign signs |in_len| bytes of digest from |in|. |md| is the hash function
  801. * used to calculate |in|. On success, it returns |ssl_private_key_success|
  802. * and writes at most |max_out| bytes of signature data to |out|. On failure,
  803. * it returns |ssl_private_key_failure|. If the operation has not completed,
  804. * it returns |ssl_private_key_retry|. |sign| should arrange for the
  805. * high-level operation on |ssl| to be retried when the operation is
  806. * completed. This will result in a call to |sign_complete|.
  807. *
  808. * If the key is an RSA key, implementations must use PKCS#1 padding. |in| is
  809. * the digest itself, so the DigestInfo prefix, if any, must be prepended by
  810. * |sign|. If |md| is |EVP_md5_sha1|, there is no prefix.
  811. *
  812. * It is an error to call |sign| while another private key operation is in
  813. * progress on |ssl|. */
  814. enum ssl_private_key_result_t (*sign)(SSL *ssl, uint8_t *out, size_t *out_len,
  815. size_t max_out, const EVP_MD *md,
  816. const uint8_t *in, size_t in_len);
  817. /* sign_complete completes a pending |sign| operation. If the operation has
  818. * completed, it returns |ssl_private_key_success| and writes the result to
  819. * |out| as in |sign|. Otherwise, it returns |ssl_private_key_failure| on
  820. * failure and |ssl_private_key_retry| if the operation is still in progress.
  821. *
  822. * |sign_complete| may be called arbitrarily many times before completion, but
  823. * it is an error to call |sign_complete| if there is no pending |sign|
  824. * operation in progress on |ssl|. */
  825. enum ssl_private_key_result_t (*sign_complete)(SSL *ssl, uint8_t *out,
  826. size_t *out_len,
  827. size_t max_out);
  828. /* decrypt decrypts |in_len| bytes of encrypted data from |in|. On success it
  829. * returns |ssl_private_key_success|, writes at most |max_out| bytes of
  830. * decrypted data to |out| and sets |*out_len| to the actual number of bytes
  831. * written. On failure it returns |ssl_private_key_failure|. If the operation
  832. * has not completed, it returns |ssl_private_key_retry|. The caller should
  833. * arrange for the high-level operation on |ssl| to be retried when the
  834. * operation is completed, which will result in a call to |decrypt_complete|.
  835. * This function only works with RSA keys and should perform a raw RSA
  836. * decryption operation with no padding.
  837. *
  838. * It is an error to call |decrypt| while another private key operation is in
  839. * progress on |ssl|. */
  840. enum ssl_private_key_result_t (*decrypt)(SSL *ssl, uint8_t *out,
  841. size_t *out_len, size_t max_out,
  842. const uint8_t *in, size_t in_len);
  843. /* decrypt_complete completes a pending |decrypt| operation. If the operation
  844. * has completed, it returns |ssl_private_key_success| and writes the result
  845. * to |out| as in |decrypt|. Otherwise, it returns |ssl_private_key_failure|
  846. * on failure and |ssl_private_key_retry| if the operation is still in
  847. * progress.
  848. *
  849. * |decrypt_complete| may be called arbitrarily many times before completion,
  850. * but it is an error to call |decrypt_complete| if there is no pending
  851. * |decrypt| operation in progress on |ssl|. */
  852. enum ssl_private_key_result_t (*decrypt_complete)(SSL *ssl, uint8_t *out,
  853. size_t *out_len,
  854. size_t max_out);
  855. } SSL_PRIVATE_KEY_METHOD;
  856. /* SSL_set_private_key_method configures a custom private key on |ssl|.
  857. * |key_method| must remain valid for the lifetime of |ssl|. */
  858. OPENSSL_EXPORT void SSL_set_private_key_method(
  859. SSL *ssl, const SSL_PRIVATE_KEY_METHOD *key_method);
  860. /* Cipher suites.
  861. *
  862. * |SSL_CIPHER| objects represent cipher suites. */
  863. DECLARE_STACK_OF(SSL_CIPHER)
  864. /* SSL_get_cipher_by_value returns the structure representing a TLS cipher
  865. * suite based on its assigned number, or NULL if unknown. See
  866. * https://www.iana.org/assignments/tls-parameters/tls-parameters.xhtml#tls-parameters-4. */
  867. OPENSSL_EXPORT const SSL_CIPHER *SSL_get_cipher_by_value(uint16_t value);
  868. /* SSL_CIPHER_get_id returns |cipher|'s id. It may be cast to a |uint16_t| to
  869. * get the cipher suite value. */
  870. OPENSSL_EXPORT uint32_t SSL_CIPHER_get_id(const SSL_CIPHER *cipher);
  871. /* SSL_CIPHER_is_AES returns one if |cipher| uses AES (either GCM or CBC
  872. * mode). */
  873. OPENSSL_EXPORT int SSL_CIPHER_is_AES(const SSL_CIPHER *cipher);
  874. /* SSL_CIPHER_has_MD5_HMAC returns one if |cipher| uses HMAC-MD5. */
  875. OPENSSL_EXPORT int SSL_CIPHER_has_MD5_HMAC(const SSL_CIPHER *cipher);
  876. /* SSL_CIPHER_has_SHA1_HMAC returns one if |cipher| uses HMAC-SHA1. */
  877. OPENSSL_EXPORT int SSL_CIPHER_has_SHA1_HMAC(const SSL_CIPHER *cipher);
  878. /* SSL_CIPHER_is_AESGCM returns one if |cipher| uses AES-GCM. */
  879. OPENSSL_EXPORT int SSL_CIPHER_is_AESGCM(const SSL_CIPHER *cipher);
  880. /* SSL_CIPHER_is_AES128GCM returns one if |cipher| uses 128-bit AES-GCM. */
  881. OPENSSL_EXPORT int SSL_CIPHER_is_AES128GCM(const SSL_CIPHER *cipher);
  882. /* SSL_CIPHER_is_AES128CBC returns one if |cipher| uses 128-bit AES in CBC
  883. * mode. */
  884. OPENSSL_EXPORT int SSL_CIPHER_is_AES128CBC(const SSL_CIPHER *cipher);
  885. /* SSL_CIPHER_is_AES256CBC returns one if |cipher| uses 256-bit AES in CBC
  886. * mode. */
  887. OPENSSL_EXPORT int SSL_CIPHER_is_AES256CBC(const SSL_CIPHER *cipher);
  888. /* SSL_CIPHER_is_CHACHA20POLY1305 returns one if |cipher| uses
  889. * CHACHA20_POLY1305. */
  890. OPENSSL_EXPORT int SSL_CIPHER_is_CHACHA20POLY1305(const SSL_CIPHER *cipher);
  891. /* SSL_CIPHER_is_NULL returns one if |cipher| does not encrypt. */
  892. OPENSSL_EXPORT int SSL_CIPHER_is_NULL(const SSL_CIPHER *cipher);
  893. /* SSL_CIPHER_is_RC4 returns one if |cipher| uses RC4. */
  894. OPENSSL_EXPORT int SSL_CIPHER_is_RC4(const SSL_CIPHER *cipher);
  895. /* SSL_CIPHER_is_block_cipher returns one if |cipher| is a block cipher. */
  896. OPENSSL_EXPORT int SSL_CIPHER_is_block_cipher(const SSL_CIPHER *cipher);
  897. /* SSL_CIPHER_is_ECDSA returns one if |cipher| uses ECDSA. */
  898. OPENSSL_EXPORT int SSL_CIPHER_is_ECDSA(const SSL_CIPHER *cipher);
  899. /* SSL_CIPHER_get_min_version returns the minimum protocol version required
  900. * for |cipher|. */
  901. OPENSSL_EXPORT uint16_t SSL_CIPHER_get_min_version(const SSL_CIPHER *cipher);
  902. /* SSL_CIPHER_get_name returns the OpenSSL name of |cipher|. */
  903. OPENSSL_EXPORT const char *SSL_CIPHER_get_name(const SSL_CIPHER *cipher);
  904. /* SSL_CIPHER_get_kx_name returns a string that describes the key-exchange
  905. * method used by |cipher|. For example, "ECDHE_ECDSA". */
  906. OPENSSL_EXPORT const char *SSL_CIPHER_get_kx_name(const SSL_CIPHER *cipher);
  907. /* SSL_CIPHER_get_rfc_name returns a newly-allocated string with the standard
  908. * name for |cipher| or NULL on error. For example,
  909. * "TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256". The caller is responsible for
  910. * calling |OPENSSL_free| on the result. */
  911. OPENSSL_EXPORT char *SSL_CIPHER_get_rfc_name(const SSL_CIPHER *cipher);
  912. /* SSL_CIPHER_get_bits returns the strength, in bits, of |cipher|. If
  913. * |out_alg_bits| is not NULL, it writes the number of bits consumed by the
  914. * symmetric algorithm to |*out_alg_bits|. */
  915. OPENSSL_EXPORT int SSL_CIPHER_get_bits(const SSL_CIPHER *cipher,
  916. int *out_alg_bits);
  917. /* Cipher suite configuration.
  918. *
  919. * OpenSSL uses a mini-language to configure cipher suites. The language
  920. * maintains an ordered list of enabled ciphers, along with an ordered list of
  921. * disabled but available ciphers. Initially, all ciphers are disabled with a
  922. * default ordering. The cipher string is then interpreted as a sequence of
  923. * directives, separated by colons, each of which modifies this state.
  924. *
  925. * Most directives consist of a one character or empty opcode followed by a
  926. * selector which matches a subset of available ciphers.
  927. *
  928. * Available opcodes are:
  929. *
  930. * The empty opcode enables and appends all matching disabled ciphers to the
  931. * end of the enabled list. The newly appended ciphers are ordered relative to
  932. * each other matching their order in the disabled list.
  933. *
  934. * |-| disables all matching enabled ciphers and prepends them to the disabled
  935. * list, with relative order from the enabled list preserved. This means the
  936. * most recently disabled ciphers get highest preference relative to other
  937. * disabled ciphers if re-enabled.
  938. *
  939. * |+| moves all matching enabled ciphers to the end of the enabled list, with
  940. * relative order preserved.
  941. *
  942. * |!| deletes all matching ciphers, enabled or not, from either list. Deleted
  943. * ciphers will not matched by future operations.
  944. *
  945. * A selector may be a specific cipher (using the OpenSSL name for the cipher)
  946. * or one or more rules separated by |+|. The final selector matches the
  947. * intersection of each rule. For instance, |AESGCM+aECDSA| matches
  948. * ECDSA-authenticated AES-GCM ciphers.
  949. *
  950. * Available cipher rules are:
  951. *
  952. * |ALL| matches all ciphers.
  953. *
  954. * |kRSA|, |kDHE|, |kECDHE|, and |kPSK| match ciphers using plain RSA, DHE,
  955. * ECDHE, and plain PSK key exchanges, respectively. Note that ECDHE_PSK is
  956. * matched by |kECDHE| and not |kPSK|.
  957. *
  958. * |aRSA|, |aECDSA|, and |aPSK| match ciphers authenticated by RSA, ECDSA, and
  959. * a pre-shared key, respectively.
  960. *
  961. * |RSA|, |DHE|, |ECDHE|, |PSK|, |ECDSA|, and |PSK| are aliases for the
  962. * corresponding |k*| or |a*| cipher rule. |RSA| is an alias for |kRSA|, not
  963. * |aRSA|.
  964. *
  965. * |3DES|, |RC4|, |AES128|, |AES256|, |AES|, |AESGCM|, |CHACHA20| match
  966. * ciphers whose bulk cipher use the corresponding encryption scheme. Note
  967. * that |AES|, |AES128|, and |AES256| match both CBC and GCM ciphers.
  968. *
  969. * |MD5|, |SHA1|, |SHA256|, and |SHA384| match legacy cipher suites using the
  970. * corresponding hash function in their MAC. AEADs are matched by none of
  971. * these.
  972. *
  973. * |SHA| is an alias for |SHA1|.
  974. *
  975. * Although implemented, authentication-only ciphers match no rules and must be
  976. * explicitly selected by name.
  977. *
  978. * Deprecated cipher rules:
  979. *
  980. * |kEDH|, |EDH|, |kEECDH|, and |EECDH| are legacy aliases for |kDHE|, |DHE|,
  981. * |kECDHE|, and |ECDHE|, respectively.
  982. *
  983. * |MEDIUM| and |HIGH| match RC4-based ciphers and all others, respectively.
  984. *
  985. * |FIPS| is an alias for |HIGH|.
  986. *
  987. * |SSLv3| and |TLSv1| match ciphers available in TLS 1.1 or earlier.
  988. * |TLSv1_2| matches ciphers new in TLS 1.2. This is confusing and should not
  989. * be used.
  990. *
  991. * Unknown rules silently match nothing.
  992. *
  993. * The special |@STRENGTH| directive will sort all enabled ciphers by strength.
  994. *
  995. * The |DEFAULT| directive, when appearing at the front of the string, expands
  996. * to the default ordering of available ciphers.
  997. *
  998. * If configuring a server, one may also configure equal-preference groups to
  999. * partially respect the client's preferences when
  1000. * |SSL_OP_CIPHER_SERVER_PREFERENCE| is enabled. Ciphers in an equal-preference
  1001. * group have equal priority and use the client order. This may be used to
  1002. * enforce that AEADs are preferred but select AES-GCM vs. ChaCha20-Poly1305
  1003. * based on client preferences. An equal-preference is specified with square
  1004. * brackets, combining multiple selectors separated by |. For example:
  1005. *
  1006. * [ECDHE-ECDSA-CHACHA20-POLY1305|ECDHE-ECDSA-AES128-GCM-SHA256]
  1007. *
  1008. * Once an equal-preference group is used, future directives must be
  1009. * opcode-less. */
  1010. /* SSL_DEFAULT_CIPHER_LIST is the default cipher suite configuration. It is
  1011. * substituted when a cipher string starts with 'DEFAULT'. */
  1012. #define SSL_DEFAULT_CIPHER_LIST "ALL"
  1013. /* SSL_CTX_set_cipher_list configures the cipher list for |ctx|, evaluating
  1014. * |str| as a cipher string. It returns one on success and zero on failure. */
  1015. OPENSSL_EXPORT int SSL_CTX_set_cipher_list(SSL_CTX *ctx, const char *str);
  1016. /* SSL_CTX_set_cipher_list_tls10 configures the TLS 1.0+ cipher list for |ctx|,
  1017. * evaluating |str| as a cipher string. It returns one on success and zero on
  1018. * failure. If set, servers will use this cipher suite list for TLS 1.0 or
  1019. * higher. */
  1020. OPENSSL_EXPORT int SSL_CTX_set_cipher_list_tls10(SSL_CTX *ctx, const char *str);
  1021. /* SSL_CTX_set_cipher_list_tls11 configures the TLS 1.1+ cipher list for |ctx|,
  1022. * evaluating |str| as a cipher string. It returns one on success and zero on
  1023. * failure. If set, servers will use this cipher suite list for TLS 1.1 or
  1024. * higher. */
  1025. OPENSSL_EXPORT int SSL_CTX_set_cipher_list_tls11(SSL_CTX *ctx, const char *str);
  1026. /* SSL_set_cipher_list configures the cipher list for |ssl|, evaluating |str| as
  1027. * a cipher string. It returns one on success and zero on failure. */
  1028. OPENSSL_EXPORT int SSL_set_cipher_list(SSL *ssl, const char *str);
  1029. /* SSL_get_ciphers returns the cipher list for |ssl|, in order of preference. If
  1030. * |SSL_CTX_set_cipher_list_tls10| or |SSL_CTX_set_cipher_list_tls11| has been
  1031. * used, the corresponding list for the current version is returned. */
  1032. OPENSSL_EXPORT STACK_OF(SSL_CIPHER) *SSL_get_ciphers(const SSL *ssl);
  1033. /* Connection information. */
  1034. /* SSL_is_init_finished returns one if |ssl| has completed its initial handshake
  1035. * and has no pending handshake. It returns zero otherwise. */
  1036. OPENSSL_EXPORT int SSL_is_init_finished(const SSL *ssl);
  1037. /* SSL_in_init returns one if |ssl| has a pending handshake and zero
  1038. * otherwise. */
  1039. OPENSSL_EXPORT int SSL_in_init(const SSL *ssl);
  1040. /* SSL_in_false_start returns one if |ssl| has a pending handshake that is in
  1041. * False Start. |SSL_write| may be called at this point without waiting for the
  1042. * peer, but |SSL_read| will complete the handshake before accepting application
  1043. * data.
  1044. *
  1045. * See also |SSL_MODE_ENABLE_FALSE_START|. */
  1046. OPENSSL_EXPORT int SSL_in_false_start(const SSL *ssl);
  1047. /* SSL_get_peer_certificate returns the peer's leaf certificate or NULL if the
  1048. * peer did not use certificates. The caller must call |X509_free| on the
  1049. * result to release it. */
  1050. OPENSSL_EXPORT X509 *SSL_get_peer_certificate(const SSL *ssl);
  1051. /* SSL_get_peer_cert_chain returns the peer's certificate chain or NULL if
  1052. * unavailable or the peer did not use certificates. This is the unverified
  1053. * list of certificates as sent by the peer, not the final chain built during
  1054. * verification. For historical reasons, this value may not be available if
  1055. * resuming a serialized |SSL_SESSION|. The caller does not take ownership of
  1056. * the result.
  1057. *
  1058. * WARNING: This function behaves differently between client and server. If
  1059. * |ssl| is a server, the returned chain does not include the leaf certificate.
  1060. * If a client, it does. */
  1061. OPENSSL_EXPORT STACK_OF(X509) *SSL_get_peer_cert_chain(const SSL *ssl);
  1062. /* SSL_get0_signed_cert_timestamp_list sets |*out| and |*out_len| to point to
  1063. * |*out_len| bytes of SCT information from the server. This is only valid if
  1064. * |ssl| is a client. The SCT information is a SignedCertificateTimestampList
  1065. * (including the two leading length bytes).
  1066. * See https://tools.ietf.org/html/rfc6962#section-3.3
  1067. * If no SCT was received then |*out_len| will be zero on return.
  1068. *
  1069. * WARNING: the returned data is not guaranteed to be well formed. */
  1070. OPENSSL_EXPORT void SSL_get0_signed_cert_timestamp_list(const SSL *ssl,
  1071. const uint8_t **out,
  1072. size_t *out_len);
  1073. /* SSL_get0_ocsp_response sets |*out| and |*out_len| to point to |*out_len|
  1074. * bytes of an OCSP response from the server. This is the DER encoding of an
  1075. * OCSPResponse type as defined in RFC 2560.
  1076. *
  1077. * WARNING: the returned data is not guaranteed to be well formed. */
  1078. OPENSSL_EXPORT void SSL_get0_ocsp_response(const SSL *ssl, const uint8_t **out,
  1079. size_t *out_len);
  1080. /* SSL_get_tls_unique writes at most |max_out| bytes of the tls-unique value
  1081. * for |ssl| to |out| and sets |*out_len| to the number of bytes written. It
  1082. * returns one on success or zero on error. In general |max_out| should be at
  1083. * least 12.
  1084. *
  1085. * This function will always fail if the initial handshake has not completed.
  1086. * The tls-unique value will change after a renegotiation but, since
  1087. * renegotiations can be initiated by the server at any point, the higher-level
  1088. * protocol must either leave them disabled or define states in which the
  1089. * tls-unique value can be read.
  1090. *
  1091. * The tls-unique value is defined by
  1092. * https://tools.ietf.org/html/rfc5929#section-3.1. Due to a weakness in the
  1093. * TLS protocol, tls-unique is broken for resumed connections unless the
  1094. * Extended Master Secret extension is negotiated. Thus this function will
  1095. * return zero if |ssl| performed session resumption unless EMS was used when
  1096. * negotiating the original session. */
  1097. OPENSSL_EXPORT int SSL_get_tls_unique(const SSL *ssl, uint8_t *out,
  1098. size_t *out_len, size_t max_out);
  1099. /* SSL_get_extms_support returns one if the Extended Master Secret
  1100. * extension was negotiated. Otherwise, it returns zero. */
  1101. OPENSSL_EXPORT int SSL_get_extms_support(const SSL *ssl);
  1102. /* SSL_get_current_cipher returns the cipher used in the current outgoing
  1103. * connection state, or NULL if the null cipher is active. */
  1104. OPENSSL_EXPORT const SSL_CIPHER *SSL_get_current_cipher(const SSL *ssl);
  1105. /* SSL_session_reused returns one if |ssl| performed an abbreviated handshake
  1106. * and zero otherwise.
  1107. *
  1108. * TODO(davidben): Hammer down the semantics of this API while a handshake,
  1109. * initial or renego, is in progress. */
  1110. OPENSSL_EXPORT int SSL_session_reused(const SSL *ssl);
  1111. /* SSL_get_secure_renegotiation_support returns one if the peer supports secure
  1112. * renegotiation (RFC 5746) and zero otherwise. */
  1113. OPENSSL_EXPORT int SSL_get_secure_renegotiation_support(const SSL *ssl);
  1114. /* SSL_export_keying_material exports a value derived from the master secret, as
  1115. * specified in RFC 5705. It writes |out_len| bytes to |out| given a label and
  1116. * optional context. (Since a zero length context is allowed, the |use_context|
  1117. * flag controls whether a context is included.)
  1118. *
  1119. * It returns one on success and zero otherwise. */
  1120. OPENSSL_EXPORT int SSL_export_keying_material(
  1121. SSL *ssl, uint8_t *out, size_t out_len, const char *label, size_t label_len,
  1122. const uint8_t *context, size_t context_len, int use_context);
  1123. /* Custom extensions.
  1124. *
  1125. * The custom extension functions allow TLS extensions to be added to
  1126. * ClientHello and ServerHello messages. */
  1127. /* SSL_custom_ext_add_cb is a callback function that is called when the
  1128. * ClientHello (for clients) or ServerHello (for servers) is constructed. In
  1129. * the case of a server, this callback will only be called for a given
  1130. * extension if the ClientHello contained that extension – it's not possible to
  1131. * inject extensions into a ServerHello that the client didn't request.
  1132. *
  1133. * When called, |extension_value| will contain the extension number that is
  1134. * being considered for addition (so that a single callback can handle multiple
  1135. * extensions). If the callback wishes to include the extension, it must set
  1136. * |*out| to point to |*out_len| bytes of extension contents and return one. In
  1137. * this case, the corresponding |SSL_custom_ext_free_cb| callback will later be
  1138. * called with the value of |*out| once that data has been copied.
  1139. *
  1140. * If the callback does not wish to add an extension it must return zero.
  1141. *
  1142. * Alternatively, the callback can abort the connection by setting
  1143. * |*out_alert_value| to a TLS alert number and returning -1. */
  1144. typedef int (*SSL_custom_ext_add_cb)(SSL *ssl, unsigned extension_value,
  1145. const uint8_t **out, size_t *out_len,
  1146. int *out_alert_value, void *add_arg);
  1147. /* SSL_custom_ext_free_cb is a callback function that is called by OpenSSL iff
  1148. * an |SSL_custom_ext_add_cb| callback previously returned one. In that case,
  1149. * this callback is called and passed the |out| pointer that was returned by
  1150. * the add callback. This is to free any dynamically allocated data created by
  1151. * the add callback. */
  1152. typedef void (*SSL_custom_ext_free_cb)(SSL *ssl, unsigned extension_value,
  1153. const uint8_t *out, void *add_arg);
  1154. /* SSL_custom_ext_parse_cb is a callback function that is called by OpenSSL to
  1155. * parse an extension from the peer: that is from the ServerHello for a client
  1156. * and from the ClientHello for a server.
  1157. *
  1158. * When called, |extension_value| will contain the extension number and the
  1159. * contents of the extension are |contents_len| bytes at |contents|.
  1160. *
  1161. * The callback must return one to continue the handshake. Otherwise, if it
  1162. * returns zero, a fatal alert with value |*out_alert_value| is sent and the
  1163. * handshake is aborted. */
  1164. typedef int (*SSL_custom_ext_parse_cb)(SSL *ssl, unsigned extension_value,
  1165. const uint8_t *contents,
  1166. size_t contents_len,
  1167. int *out_alert_value, void *parse_arg);
  1168. /* SSL_extension_supported returns one iff OpenSSL internally handles
  1169. * extensions of type |extension_value|. This can be used to avoid registering
  1170. * custom extension handlers for extensions that a future version of OpenSSL
  1171. * may handle internally. */
  1172. OPENSSL_EXPORT int SSL_extension_supported(unsigned extension_value);
  1173. /* SSL_CTX_add_client_custom_ext registers callback functions for handling
  1174. * custom TLS extensions for client connections.
  1175. *
  1176. * If |add_cb| is NULL then an empty extension will be added in each
  1177. * ClientHello. Otherwise, see the comment for |SSL_custom_ext_add_cb| about
  1178. * this callback.
  1179. *
  1180. * The |free_cb| may be NULL if |add_cb| doesn't dynamically allocate data that
  1181. * needs to be freed.
  1182. *
  1183. * It returns one on success or zero on error. It's always an error to register
  1184. * callbacks for the same extension twice, or to register callbacks for an
  1185. * extension that OpenSSL handles internally. See |SSL_extension_supported| to
  1186. * discover, at runtime, which extensions OpenSSL handles internally. */
  1187. OPENSSL_EXPORT int SSL_CTX_add_client_custom_ext(
  1188. SSL_CTX *ctx, unsigned extension_value, SSL_custom_ext_add_cb add_cb,
  1189. SSL_custom_ext_free_cb free_cb, void *add_arg,
  1190. SSL_custom_ext_parse_cb parse_cb, void *parse_arg);
  1191. /* SSL_CTX_add_server_custom_ext is the same as
  1192. * |SSL_CTX_add_client_custom_ext|, but for server connections.
  1193. *
  1194. * Unlike on the client side, if |add_cb| is NULL no extension will be added.
  1195. * The |add_cb|, if any, will only be called if the ClientHello contained a
  1196. * matching extension. */
  1197. OPENSSL_EXPORT int SSL_CTX_add_server_custom_ext(
  1198. SSL_CTX *ctx, unsigned extension_value, SSL_custom_ext_add_cb add_cb,
  1199. SSL_custom_ext_free_cb free_cb, void *add_arg,
  1200. SSL_custom_ext_parse_cb parse_cb, void *parse_arg);
  1201. /* Sessions.
  1202. *
  1203. * An |SSL_SESSION| represents an SSL session that may be resumed in an
  1204. * abbreviated handshake. It is reference-counted and immutable. Once
  1205. * established, an |SSL_SESSION| may be shared by multiple |SSL| objects on
  1206. * different threads and must not be modified. */
  1207. DECLARE_LHASH_OF(SSL_SESSION)
  1208. DECLARE_PEM_rw(SSL_SESSION, SSL_SESSION)
  1209. /* SSL_SESSION_new returns a newly-allocated blank |SSL_SESSION| or NULL on
  1210. * error. This may be useful in writing tests but otherwise should not be
  1211. * used outside the library. */
  1212. OPENSSL_EXPORT SSL_SESSION *SSL_SESSION_new(void);
  1213. /* SSL_SESSION_up_ref, if |session| is not NULL, increments the reference count
  1214. * of |session|. It then returns |session|. */
  1215. OPENSSL_EXPORT SSL_SESSION *SSL_SESSION_up_ref(SSL_SESSION *session);
  1216. /* SSL_SESSION_free decrements the reference count of |session|. If it reaches
  1217. * zero, all data referenced by |session| and |session| itself are released. */
  1218. OPENSSL_EXPORT void SSL_SESSION_free(SSL_SESSION *session);
  1219. /* SSL_SESSION_to_bytes serializes |in| into a newly allocated buffer and sets
  1220. * |*out_data| to that buffer and |*out_len| to its length. The caller takes
  1221. * ownership of the buffer and must call |OPENSSL_free| when done. It returns
  1222. * one on success and zero on error. */
  1223. OPENSSL_EXPORT int SSL_SESSION_to_bytes(const SSL_SESSION *in,
  1224. uint8_t **out_data, size_t *out_len);
  1225. /* SSL_SESSION_to_bytes_for_ticket serializes |in|, but excludes the session
  1226. * identification information, namely the session ID and ticket. */
  1227. OPENSSL_EXPORT int SSL_SESSION_to_bytes_for_ticket(const SSL_SESSION *in,
  1228. uint8_t **out_data,
  1229. size_t *out_len);
  1230. /* SSL_SESSION_from_bytes parses |in_len| bytes from |in| as an SSL_SESSION. It
  1231. * returns a newly-allocated |SSL_SESSION| on success or NULL on error. */
  1232. OPENSSL_EXPORT SSL_SESSION *SSL_SESSION_from_bytes(const uint8_t *in,
  1233. size_t in_len);
  1234. /* SSL_SESSION_get_version returns a string describing the TLS version |session|
  1235. * was established at. For example, "TLSv1.2" or "SSLv3". */
  1236. OPENSSL_EXPORT const char *SSL_SESSION_get_version(const SSL_SESSION *session);
  1237. /* SSL_SESSION_get_id returns a pointer to a buffer containg |session|'s session
  1238. * ID and sets |*out_len| to its length. */
  1239. OPENSSL_EXPORT const uint8_t *SSL_SESSION_get_id(const SSL_SESSION *session,
  1240. unsigned *out_len);
  1241. /* SSL_SESSION_get_time returns the time at which |session| was established in
  1242. * seconds since the UNIX epoch. */
  1243. OPENSSL_EXPORT long SSL_SESSION_get_time(const SSL_SESSION *session);
  1244. /* SSL_SESSION_get_timeout returns the lifetime of |session| in seconds. */
  1245. OPENSSL_EXPORT long SSL_SESSION_get_timeout(const SSL_SESSION *session);
  1246. /* SSL_SESSION_get_key_exchange_info returns a value that describes the
  1247. * strength of the asymmetric operation that provides confidentiality to
  1248. * |session|. Its interpretation depends on the operation used. See the
  1249. * documentation for this value in the |SSL_SESSION| structure. */
  1250. OPENSSL_EXPORT uint32_t SSL_SESSION_get_key_exchange_info(
  1251. const SSL_SESSION *session);
  1252. /* SSL_SESSION_get0_peer return's the peer leaf certificate stored in
  1253. * |session|.
  1254. *
  1255. * TODO(davidben): This should return a const X509 *. */
  1256. OPENSSL_EXPORT X509 *SSL_SESSION_get0_peer(const SSL_SESSION *session);
  1257. /* SSL_SESSION_set_time sets |session|'s creation time to |time| and returns
  1258. * |time|. This function may be useful in writing tests but otherwise should not
  1259. * be used. */
  1260. OPENSSL_EXPORT long SSL_SESSION_set_time(SSL_SESSION *session, long time);
  1261. /* SSL_SESSION_set_timeout sets |session|'s timeout to |timeout| and returns
  1262. * one. This function may be useful in writing tests but otherwise should not
  1263. * be used. */
  1264. OPENSSL_EXPORT long SSL_SESSION_set_timeout(SSL_SESSION *session, long timeout);
  1265. /* SSL_SESSION_set1_id_context sets |session|'s session ID context (see
  1266. * |SSL_CTX_set_session_id_context|) to |sid_ctx|. It returns one on success and
  1267. * zero on error. This function may be useful in writing tests but otherwise
  1268. * should not be used. */
  1269. OPENSSL_EXPORT int SSL_SESSION_set1_id_context(SSL_SESSION *session,
  1270. const uint8_t *sid_ctx,
  1271. unsigned sid_ctx_len);
  1272. /* Session caching.
  1273. *
  1274. * Session caching allows clients to reconnect to a server based on saved
  1275. * parameters from a previous connection.
  1276. *
  1277. * For a server, the library implements a built-in internal session cache as an
  1278. * in-memory hash table. One may also register callbacks to implement a custom
  1279. * external session cache. An external cache may be used in addition to or
  1280. * instead of the internal one. Use |SSL_CTX_set_session_cache_mode| to toggle
  1281. * the internal cache.
  1282. *
  1283. * For a client, the only option is an external session cache. Prior to
  1284. * handshaking, the consumer should look up a session externally (keyed, for
  1285. * instance, by hostname) and use |SSL_set_session| to configure which session
  1286. * to offer. The callbacks may be used to determine when new sessions are
  1287. * available.
  1288. *
  1289. * Note that offering or accepting a session short-circuits most parameter
  1290. * negotiation. Resuming sessions across different configurations may result in
  1291. * surprising behavor. So, for instance, a client implementing a version
  1292. * fallback should shard its session cache by maximum protocol version. */
  1293. /* SSL_SESS_CACHE_OFF disables all session caching. */
  1294. #define SSL_SESS_CACHE_OFF 0x0000
  1295. /* SSL_SESS_CACHE_CLIENT enables session caching for a client. The internal
  1296. * cache is never used on a client, so this only enables the callbacks. */
  1297. #define SSL_SESS_CACHE_CLIENT 0x0001
  1298. /* SSL_SESS_CACHE_SERVER enables session caching for a server. */
  1299. #define SSL_SESS_CACHE_SERVER 0x0002
  1300. /* SSL_SESS_CACHE_SERVER enables session caching for both client and server. */
  1301. #define SSL_SESS_CACHE_BOTH (SSL_SESS_CACHE_CLIENT | SSL_SESS_CACHE_SERVER)
  1302. /* SSL_SESS_CACHE_NO_AUTO_CLEAR disables automatically calling
  1303. * |SSL_CTX_flush_sessions| every 255 connections. */
  1304. #define SSL_SESS_CACHE_NO_AUTO_CLEAR 0x0080
  1305. /* SSL_SESS_CACHE_NO_INTERNAL_LOOKUP, on a server, disables looking up a session
  1306. * from the internal session cache. */
  1307. #define SSL_SESS_CACHE_NO_INTERNAL_LOOKUP 0x0100
  1308. /* SSL_SESS_CACHE_NO_INTERNAL_STORE, on a server, disables storing sessions in
  1309. * the internal session cache. */
  1310. #define SSL_SESS_CACHE_NO_INTERNAL_STORE 0x0200
  1311. /* SSL_SESS_CACHE_NO_INTERNAL, on a server, disables the internal session
  1312. * cache. */
  1313. #define SSL_SESS_CACHE_NO_INTERNAL \
  1314. (SSL_SESS_CACHE_NO_INTERNAL_LOOKUP | SSL_SESS_CACHE_NO_INTERNAL_STORE)
  1315. /* SSL_CTX_set_session_cache_mode sets the session cache mode bits for |ctx| to
  1316. * |mode|. It returns the previous value. */
  1317. OPENSSL_EXPORT int SSL_CTX_set_session_cache_mode(SSL_CTX *ctx, int mode);
  1318. /* SSL_CTX_get_session_cache_mode returns the session cache mode bits for
  1319. * |ctx| */
  1320. OPENSSL_EXPORT int SSL_CTX_get_session_cache_mode(const SSL_CTX *ctx);
  1321. /* SSL_set_session, for a client, configures |ssl| to offer to resume |session|
  1322. * in the initial handshake and returns one. The caller retains ownership of
  1323. * |session|. */
  1324. OPENSSL_EXPORT int SSL_set_session(SSL *ssl, SSL_SESSION *session);
  1325. /* SSL_get_session returns a non-owning pointer to |ssl|'s session. Prior to the
  1326. * initial handshake beginning, this is the session to be offered, set by
  1327. * |SSL_set_session|. After a handshake has finished, this is the currently
  1328. * active session. Its behavior is undefined while a handshake is progress. */
  1329. OPENSSL_EXPORT SSL_SESSION *SSL_get_session(const SSL *ssl);
  1330. /* SSL_get0_session is an alias for |SSL_get_session|. */
  1331. #define SSL_get0_session SSL_get_session
  1332. /* SSL_get1_session acts like |SSL_get_session| but returns a new reference to
  1333. * the session. */
  1334. OPENSSL_EXPORT SSL_SESSION *SSL_get1_session(SSL *ssl);
  1335. /* SSL_DEFAULT_SESSION_TIMEOUT is the default lifetime, in seconds, of a
  1336. * session. */
  1337. #define SSL_DEFAULT_SESSION_TIMEOUT (2 * 60 * 60)
  1338. /* SSL_CTX_set_timeout sets the lifetime, in seconds, of sessions created in
  1339. * |ctx| to |timeout|. */
  1340. OPENSSL_EXPORT long SSL_CTX_set_timeout(SSL_CTX *ctx, long timeout);
  1341. /* SSL_CTX_get_timeout returns the lifetime, in seconds, of sessions created in
  1342. * |ctx|. */
  1343. OPENSSL_EXPORT long SSL_CTX_get_timeout(const SSL_CTX *ctx);
  1344. /* SSL_CTX_set_session_id_context sets |ctx|'s session ID context to |sid_ctx|.
  1345. * It returns one on success and zero on error. The session ID context is an
  1346. * application-defined opaque byte string. A session will not be used in a
  1347. * connection without a matching session ID context.
  1348. *
  1349. * For a server, if |SSL_VERIFY_PEER| is enabled, it is an error to not set a
  1350. * session ID context.
  1351. *
  1352. * TODO(davidben): Is that check needed? That seems a special case of taking
  1353. * care not to cross-resume across configuration changes, and this is only
  1354. * relevant if a server requires client auth. */
  1355. OPENSSL_EXPORT int SSL_CTX_set_session_id_context(SSL_CTX *ctx,
  1356. const uint8_t *sid_ctx,
  1357. unsigned sid_ctx_len);
  1358. /* SSL_set_session_id_context sets |ssl|'s session ID context to |sid_ctx|. It
  1359. * returns one on success and zero on error. See also
  1360. * |SSL_CTX_set_session_id_context|. */
  1361. OPENSSL_EXPORT int SSL_set_session_id_context(SSL *ssl, const uint8_t *sid_ctx,
  1362. unsigned sid_ctx_len);
  1363. /* SSL_SESSION_CACHE_MAX_SIZE_DEFAULT is the default maximum size of a session
  1364. * cache. */
  1365. #define SSL_SESSION_CACHE_MAX_SIZE_DEFAULT (1024 * 20)
  1366. /* SSL_CTX_sess_set_cache_size sets the maximum size of |ctx|'s internal session
  1367. * cache to |size|. It returns the previous value. */
  1368. OPENSSL_EXPORT unsigned long SSL_CTX_sess_set_cache_size(SSL_CTX *ctx,
  1369. unsigned long size);
  1370. /* SSL_CTX_sess_get_cache_size returns the maximum size of |ctx|'s internal
  1371. * session cache. */
  1372. OPENSSL_EXPORT unsigned long SSL_CTX_sess_get_cache_size(const SSL_CTX *ctx);
  1373. /* SSL_CTX_sessions returns |ctx|'s internal session cache. */
  1374. OPENSSL_EXPORT LHASH_OF(SSL_SESSION) *SSL_CTX_sessions(SSL_CTX *ctx);
  1375. /* SSL_CTX_sess_number returns the number of sessions in |ctx|'s internal
  1376. * session cache. */
  1377. OPENSSL_EXPORT size_t SSL_CTX_sess_number(const SSL_CTX *ctx);
  1378. /* SSL_CTX_add_session inserts |session| into |ctx|'s internal session cache. It
  1379. * returns one on success and zero on error or if |session| is already in the
  1380. * cache. The caller retains its reference to |session|. */
  1381. OPENSSL_EXPORT int SSL_CTX_add_session(SSL_CTX *ctx, SSL_SESSION *session);
  1382. /* SSL_CTX_remove_session removes |session| from |ctx|'s internal session cache.
  1383. * It returns one on success and zero if |session| was not in the cache. */
  1384. OPENSSL_EXPORT int SSL_CTX_remove_session(SSL_CTX *ctx, SSL_SESSION *session);
  1385. /* SSL_CTX_flush_sessions removes all sessions from |ctx| which have expired as
  1386. * of time |time|. If |time| is zero, all sessions are removed. */
  1387. OPENSSL_EXPORT void SSL_CTX_flush_sessions(SSL_CTX *ctx, long time);
  1388. /* SSL_CTX_sess_set_new_cb sets the callback to be called when a new session is
  1389. * established and ready to be cached. If the session cache is disabled (the
  1390. * appropriate one of |SSL_SESS_CACHE_CLIENT| or |SSL_SESS_CACHE_SERVER| is
  1391. * unset), the callback is not called.
  1392. *
  1393. * The callback is passed a reference to |session|. It returns one if it takes
  1394. * ownership and zero otherwise.
  1395. *
  1396. * Note: For a client, the callback may be called on abbreviated handshakes if a
  1397. * ticket is renewed. Further, it may not be called until some time after
  1398. * |SSL_do_handshake| or |SSL_connect| completes if False Start is enabled. Thus
  1399. * it's recommended to use this callback over checking |SSL_session_reused| on
  1400. * handshake completion.
  1401. *
  1402. * TODO(davidben): Conditioning callbacks on |SSL_SESS_CACHE_CLIENT| or
  1403. * |SSL_SESS_CACHE_SERVER| doesn't make any sense when one could just as easily
  1404. * not supply the callbacks. Removing that condition and the client internal
  1405. * cache would simplify things. */
  1406. OPENSSL_EXPORT void SSL_CTX_sess_set_new_cb(
  1407. SSL_CTX *ctx, int (*new_session_cb)(SSL *ssl, SSL_SESSION *session));
  1408. /* SSL_CTX_sess_get_new_cb returns the callback set by
  1409. * |SSL_CTX_sess_set_new_cb|. */
  1410. OPENSSL_EXPORT int (*SSL_CTX_sess_get_new_cb(SSL_CTX *ctx))(
  1411. SSL *ssl, SSL_SESSION *session);
  1412. /* SSL_CTX_sess_set_remove_cb sets a callback which is called when a session is
  1413. * removed from the internal session cache.
  1414. *
  1415. * TODO(davidben): What is the point of this callback? It seems useless since it
  1416. * only fires on sessions in the internal cache. */
  1417. OPENSSL_EXPORT void SSL_CTX_sess_set_remove_cb(
  1418. SSL_CTX *ctx,
  1419. void (*remove_session_cb)(SSL_CTX *ctx, SSL_SESSION *session));
  1420. /* SSL_CTX_sess_get_remove_cb returns the callback set by
  1421. * |SSL_CTX_sess_set_remove_cb|. */
  1422. OPENSSL_EXPORT void (*SSL_CTX_sess_get_remove_cb(SSL_CTX *ctx))(
  1423. SSL_CTX *ctx, SSL_SESSION *session);
  1424. /* SSL_CTX_sess_set_get_cb sets a callback to look up a session by ID for a
  1425. * server. The callback is passed the session ID and should return a matching
  1426. * |SSL_SESSION| or NULL if not found. It should set |*out_copy| to zero and
  1427. * return a new reference to the session. This callback is not used for a
  1428. * client.
  1429. *
  1430. * For historical reasons, if |*out_copy| is set to one (default), the SSL
  1431. * library will take a new reference to the returned |SSL_SESSION|, expecting
  1432. * the callback to return a non-owning pointer. This is not recommended. If
  1433. * |ctx| and thus the callback is used on multiple threads, the session may be
  1434. * removed and invalidated before the SSL library calls |SSL_SESSION_up_ref|,
  1435. * whereas the callback may synchronize internally.
  1436. *
  1437. * To look up a session asynchronously, the callback may return
  1438. * |SSL_magic_pending_session_ptr|. See the documentation for that function and
  1439. * |SSL_ERROR_PENDING_SESSION|.
  1440. *
  1441. * If the internal session cache is enabled, the callback is only consulted if
  1442. * the internal cache does not return a match.
  1443. *
  1444. * The callback's |id| parameter is not const for historical reasons, but the
  1445. * contents may not be modified. */
  1446. OPENSSL_EXPORT void SSL_CTX_sess_set_get_cb(
  1447. SSL_CTX *ctx,
  1448. SSL_SESSION *(*get_session_cb)(SSL *ssl, uint8_t *id, int id_len,
  1449. int *out_copy));
  1450. /* SSL_CTX_sess_get_get_cb returns the callback set by
  1451. * |SSL_CTX_sess_set_get_cb|. */
  1452. OPENSSL_EXPORT SSL_SESSION *(*SSL_CTX_sess_get_get_cb(SSL_CTX *ctx))(
  1453. SSL *ssl, uint8_t *id, int id_len, int *out_copy);
  1454. /* SSL_magic_pending_session_ptr returns a magic |SSL_SESSION|* which indicates
  1455. * that the session isn't currently unavailable. |SSL_get_error| will then
  1456. * return |SSL_ERROR_PENDING_SESSION| and the handshake can be retried later
  1457. * when the lookup has completed. */
  1458. OPENSSL_EXPORT SSL_SESSION *SSL_magic_pending_session_ptr(void);
  1459. /* Session tickets.
  1460. *
  1461. * Session tickets, from RFC 5077, allow session resumption without server-side
  1462. * state. Session tickets are supported in by default but may be disabled with
  1463. * |SSL_OP_NO_TICKET|.
  1464. *
  1465. * On the client, ticket-based sessions use the same APIs as ID-based tickets.
  1466. * Callers do not need to handle them differently.
  1467. *
  1468. * On the server, tickets are encrypted and authenticated with a secret key. By
  1469. * default, an |SSL_CTX| generates a key on creation. Tickets are minted and
  1470. * processed transparently. The following functions may be used to configure a
  1471. * persistent key or implement more custom behavior. */
  1472. /* SSL_CTX_get_tlsext_ticket_keys writes |ctx|'s session ticket key material to
  1473. * |len| bytes of |out|. It returns one on success and zero if |len| is not
  1474. * 48. If |out| is NULL, it returns 48 instead. */
  1475. OPENSSL_EXPORT int SSL_CTX_get_tlsext_ticket_keys(SSL_CTX *ctx, void *out,
  1476. size_t len);
  1477. /* SSL_CTX_set_tlsext_ticket_keys sets |ctx|'s session ticket key material to
  1478. * |len| bytes of |in|. It returns one on success and zero if |len| is not
  1479. * 48. If |in| is NULL, it returns 48 instead. */
  1480. OPENSSL_EXPORT int SSL_CTX_set_tlsext_ticket_keys(SSL_CTX *ctx, const void *in,
  1481. size_t len);
  1482. /* SSL_TICKET_KEY_NAME_LEN is the length of the key name prefix of a session
  1483. * ticket. */
  1484. #define SSL_TICKET_KEY_NAME_LEN 16
  1485. /* SSL_CTX_set_tlsext_ticket_key_cb sets the ticket callback to |callback| and
  1486. * returns one. |callback| will be called when encrypting a new ticket and when
  1487. * decrypting a ticket from the client.
  1488. *
  1489. * In both modes, |ctx| and |hmac_ctx| will already have been initialized with
  1490. * |EVP_CIPHER_CTX_init| and |HMAC_CTX_init|, respectively. |callback|
  1491. * configures |hmac_ctx| with an HMAC digest and key, and configures |ctx|
  1492. * for encryption or decryption, based on the mode.
  1493. *
  1494. * When encrypting a new ticket, |encrypt| will be one. It writes a public
  1495. * 16-byte key name to |key_name| and a fresh IV to |iv|. The output IV length
  1496. * must match |EVP_CIPHER_CTX_iv_length| of the cipher selected. In this mode,
  1497. * |callback| returns 1 on success and -1 on error.
  1498. *
  1499. * When decrypting a ticket, |encrypt| will be zero. |key_name| will point to a
  1500. * 16-byte key name and |iv| points to an IV. The length of the IV consumed must
  1501. * match |EVP_CIPHER_CTX_iv_length| of the cipher selected. In this mode,
  1502. * |callback| returns -1 to abort the handshake, 0 if decrypting the ticket
  1503. * failed, and 1 or 2 on success. If it returns 2, the ticket will be renewed.
  1504. * This may be used to re-key the ticket.
  1505. *
  1506. * WARNING: |callback| wildly breaks the usual return value convention and is
  1507. * called in two different modes. */
  1508. OPENSSL_EXPORT int SSL_CTX_set_tlsext_ticket_key_cb(
  1509. SSL_CTX *ctx, int (*callback)(SSL *ssl, uint8_t *key_name, uint8_t *iv,
  1510. EVP_CIPHER_CTX *ctx, HMAC_CTX *hmac_ctx,
  1511. int encrypt));
  1512. /* Elliptic curve Diffie-Hellman.
  1513. *
  1514. * Cipher suites using an ECDHE key exchange perform Diffie-Hellman over an
  1515. * elliptic curve negotiated by both endpoints. See RFC 4492. Only named curves
  1516. * are supported. ECDHE is always enabled, but the curve preferences may be
  1517. * configured with these functions.
  1518. *
  1519. * A client may use |SSL_SESSION_get_key_exchange_info| to determine the curve
  1520. * selected. */
  1521. /* SSL_CTX_set1_curves sets the preferred curves for |ctx| to be |curves|. Each
  1522. * element of |curves| should be a curve nid. It returns one on success and
  1523. * zero on failure. */
  1524. OPENSSL_EXPORT int SSL_CTX_set1_curves(SSL_CTX *ctx, const int *curves,
  1525. size_t curves_len);
  1526. /* SSL_set1_curves sets the preferred curves for |ssl| to be |curves|. Each
  1527. * element of |curves| should be a curve nid. It returns one on success and
  1528. * zero on failure. */
  1529. OPENSSL_EXPORT int SSL_set1_curves(SSL *ssl, const int *curves,
  1530. size_t curves_len);
  1531. /* SSL_CTX_set_tmp_ecdh configures |ctx| to use the curve from |ecdh| as the
  1532. * curve for ephemeral ECDH keys. For historical reasons, this API expects an
  1533. * |EC_KEY|, but only the curve is used. It returns one on success and zero on
  1534. * error. If unset, an appropriate curve will be chosen based on curve
  1535. * preferences. (This is recommended.) */
  1536. OPENSSL_EXPORT int SSL_CTX_set_tmp_ecdh(SSL_CTX *ctx, const EC_KEY *ec_key);
  1537. /* SSL_set_tmp_ecdh configures |ssl| to use the curve from |ecdh| as the curve
  1538. * for ephemeral ECDH keys. For historical reasons, this API expects an
  1539. * |EC_KEY|, but only the curve is used. It returns one on success and zero on
  1540. * error. If unset, an appropriate curve will be chosen based on curve
  1541. * preferences. (This is recommended.) */
  1542. OPENSSL_EXPORT int SSL_set_tmp_ecdh(SSL *ssl, const EC_KEY *ec_key);
  1543. /* SSL_CTX_set_tmp_ecdh_callback configures |ctx| to use |callback| to determine
  1544. * the curve for ephemeral ECDH keys. |callback| should ignore |is_export| and
  1545. * |keylength| and return an |EC_KEY| of the selected curve or NULL on
  1546. * error. Only the curve is used, so the |EC_KEY| needn't have a generated
  1547. * keypair.
  1548. *
  1549. * If the callback is unset, an appropriate curve will be chosen based on curve
  1550. * preferences. (This is recommended.)
  1551. *
  1552. * WARNING: The caller does not take ownership of the resulting |EC_KEY|, so
  1553. * |callback| must save and release the object elsewhere. */
  1554. OPENSSL_EXPORT void SSL_CTX_set_tmp_ecdh_callback(
  1555. SSL_CTX *ctx, EC_KEY *(*callback)(SSL *ssl, int is_export, int keylength));
  1556. /* SSL_set_tmp_ecdh_callback configures |ssl| to use |callback| to determine the
  1557. * curve for ephemeral ECDH keys. |callback| should ignore |is_export| and
  1558. * |keylength| and return an |EC_KEY| of the selected curve or NULL on
  1559. * error. Only the curve is used, so the |EC_KEY| needn't have a generated
  1560. * keypair.
  1561. *
  1562. * If the callback is unset, an appropriate curve will be chosen based on curve
  1563. * preferences. (This is recommended.)
  1564. *
  1565. * WARNING: The caller does not take ownership of the resulting |EC_KEY|, so
  1566. * |callback| must save and release the object elsewhere. */
  1567. OPENSSL_EXPORT void SSL_set_tmp_ecdh_callback(
  1568. SSL *ssl, EC_KEY *(*callback)(SSL *ssl, int is_export, int keylength));
  1569. /* SSL_get_curve_name returns a human-readable name for the elliptic curve
  1570. * specified by the given TLS curve id, or NULL if the curve if unknown. */
  1571. OPENSSL_EXPORT const char *SSL_get_curve_name(uint16_t curve_id);
  1572. /* Multiplicative Diffie-Hellman.
  1573. *
  1574. * Cipher suites using a DHE key exchange perform Diffie-Hellman over a
  1575. * multiplicative group selected by the server. These ciphers are disabled for a
  1576. * server unless a group is chosen with one of these functions.
  1577. *
  1578. * A client may use |SSL_SESSION_get_key_exchange_info| to determine the size of
  1579. * the selected group's prime, but note that servers may select degenerate
  1580. * groups. */
  1581. /* SSL_CTX_set_tmp_dh configures |ctx| to use the group from |dh| as the group
  1582. * for DHE. Only the group is used, so |dh| needn't have a keypair. It returns
  1583. * one on success and zero on error. */
  1584. OPENSSL_EXPORT int SSL_CTX_set_tmp_dh(SSL_CTX *ctx, const DH *dh);
  1585. /* SSL_set_tmp_dh configures |ssl| to use the group from |dh| as the group for
  1586. * DHE. Only the group is used, so |dh| needn't have a keypair. It returns one
  1587. * on success and zero on error. */
  1588. OPENSSL_EXPORT int SSL_set_tmp_dh(SSL *ssl, const DH *dh);
  1589. /* SSL_CTX_set_tmp_dh_callback configures |ctx| to use |callback| to determine
  1590. * the group for DHE ciphers. |callback| should ignore |is_export| and
  1591. * |keylength| and return a |DH| of the selected group or NULL on error. Only
  1592. * the parameters are used, so the |DH| needn't have a generated keypair.
  1593. *
  1594. * WARNING: The caller does not take ownership of the resulting |DH|, so
  1595. * |callback| must save and release the object elsewhere. */
  1596. OPENSSL_EXPORT void SSL_CTX_set_tmp_dh_callback(
  1597. SSL_CTX *ctx, DH *(*callback)(SSL *ssl, int is_export, int keylength));
  1598. /* SSL_set_tmp_dh_callback configures |ssl| to use |callback| to determine the
  1599. * group for DHE ciphers. |callback| should ignore |is_export| and |keylength|
  1600. * and return a |DH| of the selected group or NULL on error. Only the
  1601. * parameters are used, so the |DH| needn't have a generated keypair.
  1602. *
  1603. * WARNING: The caller does not take ownership of the resulting |DH|, so
  1604. * |callback| must save and release the object elsewhere. */
  1605. OPENSSL_EXPORT void SSL_set_tmp_dh_callback(SSL *ssl,
  1606. DH *(*dh)(SSL *ssl, int is_export,
  1607. int keylength));
  1608. /* Certificate verification.
  1609. *
  1610. * SSL may authenticate either endpoint with an X.509 certificate. Typically
  1611. * this is used to authenticate the server to the client. These functions
  1612. * configure certificate verification.
  1613. *
  1614. * WARNING: By default, certificate verification errors on a client are not
  1615. * fatal. See |SSL_VERIFY_NONE| This may be configured with
  1616. * |SSL_CTX_set_verify|.
  1617. *
  1618. * By default clients are anonymous but a server may request a certificate from
  1619. * the client by setting |SSL_VERIFY_PEER|.
  1620. *
  1621. * Many of these functions use OpenSSL's legacy X.509 stack which is
  1622. * underdocumented and deprecated, but the replacement isn't ready yet. For
  1623. * now, consumers may use the existing stack or bypass it by performing
  1624. * certificate verification externally. This may be done with
  1625. * |SSL_CTX_set_cert_verify_callback| or by extracting the chain with
  1626. * |SSL_get_peer_cert_chain| after the handshake. In the future, functions will
  1627. * be added to use the SSL stack without dependency on any part of the legacy
  1628. * X.509 and ASN.1 stack.
  1629. *
  1630. * To augment certificate verification, a client may also enable OCSP stapling
  1631. * (RFC 6066) and Certificate Transparency (RFC 6962) extensions. */
  1632. /* SSL_VERIFY_NONE, on a client, verifies the server certificate but does not
  1633. * make errors fatal. The result may be checked with |SSL_get_verify_result|. On
  1634. * a server it does not request a client certificate. This is the default. */
  1635. #define SSL_VERIFY_NONE 0x00
  1636. /* SSL_VERIFY_PEER, on a client, makes server certificate errors fatal. On a
  1637. * server it requests a client certificate and makes errors fatal. However,
  1638. * anonymous clients are still allowed. See
  1639. * |SSL_VERIFY_FAIL_IF_NO_PEER_CERT|. */
  1640. #define SSL_VERIFY_PEER 0x01
  1641. /* SSL_VERIFY_FAIL_IF_NO_PEER_CERT configures a server to reject connections if
  1642. * the client declines to send a certificate. Otherwise |SSL_VERIFY_PEER| still
  1643. * allows anonymous clients. */
  1644. #define SSL_VERIFY_FAIL_IF_NO_PEER_CERT 0x02
  1645. /* SSL_VERIFY_PEER_IF_NO_OBC configures a server to request a client certificate
  1646. * if and only if Channel ID is not negotiated. */
  1647. #define SSL_VERIFY_PEER_IF_NO_OBC 0x04
  1648. /* SSL_CTX_set_verify configures certificate verification behavior. |mode| is
  1649. * one of the |SSL_VERIFY_*| values defined above. |callback|, if not NULL, is
  1650. * used to customize certificate verification. See the behavior of
  1651. * |X509_STORE_CTX_set_verify_cb|.
  1652. *
  1653. * The callback may use |SSL_get_ex_data_X509_STORE_CTX_idx| with
  1654. * |X509_STORE_CTX_get_ex_data| to look up the |SSL| from |store_ctx|. */
  1655. OPENSSL_EXPORT void SSL_CTX_set_verify(
  1656. SSL_CTX *ctx, int mode, int (*callback)(int ok, X509_STORE_CTX *store_ctx));
  1657. /* SSL_set_verify configures certificate verification behavior. |mode| is one of
  1658. * the |SSL_VERIFY_*| values defined above. |callback|, if not NULL, is used to
  1659. * customize certificate verification. See the behavior of
  1660. * |X509_STORE_CTX_set_verify_cb|.
  1661. *
  1662. * The callback may use |SSL_get_ex_data_X509_STORE_CTX_idx| with
  1663. * |X509_STORE_CTX_get_ex_data| to look up the |SSL| from |store_ctx|. */
  1664. OPENSSL_EXPORT void SSL_set_verify(SSL *ssl, int mode,
  1665. int (*callback)(int ok,
  1666. X509_STORE_CTX *store_ctx));
  1667. /* SSL_CTX_get_verify_mode returns |ctx|'s verify mode, set by
  1668. * |SSL_CTX_set_verify|. */
  1669. OPENSSL_EXPORT int SSL_CTX_get_verify_mode(const SSL_CTX *ctx);
  1670. /* SSL_get_verify_mode returns |ssl|'s verify mode, set by |SSL_CTX_set_verify|
  1671. * or |SSL_set_verify|. */
  1672. OPENSSL_EXPORT int SSL_get_verify_mode(const SSL *ssl);
  1673. /* SSL_CTX_get_verify_callback returns the callback set by
  1674. * |SSL_CTX_set_verify|. */
  1675. OPENSSL_EXPORT int (*SSL_CTX_get_verify_callback(const SSL_CTX *ctx))(
  1676. int ok, X509_STORE_CTX *store_ctx);
  1677. /* SSL_get_verify_callback returns the callback set by |SSL_CTX_set_verify| or
  1678. * |SSL_set_verify|. */
  1679. OPENSSL_EXPORT int (*SSL_get_verify_callback(const SSL *ssl))(
  1680. int ok, X509_STORE_CTX *store_ctx);
  1681. /* SSL_CTX_set_verify_depth sets the maximum depth of a certificate chain
  1682. * accepted in verification. This number does not include the leaf, so a depth
  1683. * of 1 allows the leaf and one CA certificate. */
  1684. OPENSSL_EXPORT void SSL_CTX_set_verify_depth(SSL_CTX *ctx, int depth);
  1685. /* SSL_set_verify_depth sets the maximum depth of a certificate chain accepted
  1686. * in verification. This number does not include the leaf, so a depth of 1
  1687. * allows the leaf and one CA certificate. */
  1688. OPENSSL_EXPORT void SSL_set_verify_depth(SSL *ssl, int depth);
  1689. /* SSL_CTX_get_verify_depth returns the maximum depth of a certificate accepted
  1690. * in verification. */
  1691. OPENSSL_EXPORT int SSL_CTX_get_verify_depth(const SSL_CTX *ctx);
  1692. /* SSL_get_verify_depth returns the maximum depth of a certificate accepted in
  1693. * verification. */
  1694. OPENSSL_EXPORT int SSL_get_verify_depth(const SSL *ssl);
  1695. /* SSL_CTX_set1_param sets verification parameters from |param|. It returns one
  1696. * on success and zero on failure. The caller retains ownership of |param|. */
  1697. OPENSSL_EXPORT int SSL_CTX_set1_param(SSL_CTX *ctx,
  1698. const X509_VERIFY_PARAM *param);
  1699. /* SSL_set1_param sets verification parameters from |param|. It returns one on
  1700. * success and zero on failure. The caller retains ownership of |param|. */
  1701. OPENSSL_EXPORT int SSL_set1_param(SSL *ssl,
  1702. const X509_VERIFY_PARAM *param);
  1703. /* SSL_CTX_get0_param returns |ctx|'s |X509_VERIFY_PARAM| for certificate
  1704. * verification. The caller must not release the returned pointer but may call
  1705. * functions on it to configure it. */
  1706. OPENSSL_EXPORT X509_VERIFY_PARAM *SSL_CTX_get0_param(SSL_CTX *ctx);
  1707. /* SSL_get0_param returns |ssl|'s |X509_VERIFY_PARAM| for certificate
  1708. * verification. The caller must not release the returned pointer but may call
  1709. * functions on it to configure it. */
  1710. OPENSSL_EXPORT X509_VERIFY_PARAM *SSL_get0_param(SSL *ssl);
  1711. /* SSL_CTX_set_purpose sets |ctx|'s |X509_VERIFY_PARAM|'s 'purpose' parameter to
  1712. * |purpose|. It returns one on success and zero on error. */
  1713. OPENSSL_EXPORT int SSL_CTX_set_purpose(SSL_CTX *ctx, int purpose);
  1714. /* SSL_set_purpose sets |ssl|'s |X509_VERIFY_PARAM|'s 'purpose' parameter to
  1715. * |purpose|. It returns one on success and zero on error. */
  1716. OPENSSL_EXPORT int SSL_set_purpose(SSL *ssl, int purpose);
  1717. /* SSL_CTX_set_trust sets |ctx|'s |X509_VERIFY_PARAM|'s 'trust' parameter to
  1718. * |trust|. It returns one on success and zero on error. */
  1719. OPENSSL_EXPORT int SSL_CTX_set_trust(SSL_CTX *ctx, int trust);
  1720. /* SSL_set_trust sets |ssl|'s |X509_VERIFY_PARAM|'s 'trust' parameter to
  1721. * |trust|. It returns one on success and zero on error. */
  1722. OPENSSL_EXPORT int SSL_set_trust(SSL *ssl, int trust);
  1723. /* SSL_CTX_set_cert_store sets |ctx|'s certificate store to |store|. It takes
  1724. * ownership of |store|. The store is used for certificate verification.
  1725. *
  1726. * The store is also used for the auto-chaining feature, but this is deprecated.
  1727. * See also |SSL_MODE_NO_AUTO_CHAIN|. */
  1728. OPENSSL_EXPORT void SSL_CTX_set_cert_store(SSL_CTX *ctx, X509_STORE *store);
  1729. /* SSL_CTX_get_cert_store returns |ctx|'s certificate store. */
  1730. OPENSSL_EXPORT X509_STORE *SSL_CTX_get_cert_store(const SSL_CTX *ctx);
  1731. /* SSL_CTX_set_default_verify_paths loads the OpenSSL system-default trust
  1732. * anchors into |ctx|'s store. It returns one on success and zero on failure. */
  1733. OPENSSL_EXPORT int SSL_CTX_set_default_verify_paths(SSL_CTX *ctx);
  1734. /* SSL_CTX_load_verify_locations loads trust anchors into |ctx|'s store from
  1735. * |ca_file| and |ca_dir|, either of which may be NULL. If |ca_file| is passed,
  1736. * it is opened and PEM-encoded CA certificates are read. If |ca_dir| is passed,
  1737. * it is treated as a directory in OpenSSL's hashed directory format. It returns
  1738. * one on success and zero on failure.
  1739. *
  1740. * See
  1741. * https://www.openssl.org/docs/manmaster/ssl/SSL_CTX_load_verify_locations.html
  1742. * for documentation on the directory format. */
  1743. OPENSSL_EXPORT int SSL_CTX_load_verify_locations(SSL_CTX *ctx,
  1744. const char *ca_file,
  1745. const char *ca_dir);
  1746. /* SSL_get_verify_result returns the result of certificate verification. It is
  1747. * either |X509_V_OK| or a |X509_V_ERR_*| value. */
  1748. OPENSSL_EXPORT long SSL_get_verify_result(const SSL *ssl);
  1749. /* SSL_set_verify_result overrides the result of certificate verification. */
  1750. OPENSSL_EXPORT void SSL_set_verify_result(SSL *ssl, long result);
  1751. /* SSL_get_ex_data_X509_STORE_CTX_idx returns the ex_data index used to look up
  1752. * the |SSL| associated with an |X509_STORE_CTX| in the verify callback. */
  1753. OPENSSL_EXPORT int SSL_get_ex_data_X509_STORE_CTX_idx(void);
  1754. /* SSL_CTX_set_cert_verify_callback sets a custom callback to be called on
  1755. * certificate verification rather than |X509_verify_cert|. |store_ctx| contains
  1756. * the verification parameters. The callback should return one on success and
  1757. * zero on fatal error. It may use |X509_STORE_CTX_set_error| to set a
  1758. * verification result.
  1759. *
  1760. * The callback may use either the |arg| parameter or
  1761. * |SSL_get_ex_data_X509_STORE_CTX_idx| to recover the associated |SSL|
  1762. * object. */
  1763. OPENSSL_EXPORT void SSL_CTX_set_cert_verify_callback(
  1764. SSL_CTX *ctx, int (*callback)(X509_STORE_CTX *store_ctx, void *arg),
  1765. void *arg);
  1766. /* SSL_enable_signed_cert_timestamps causes |ssl| (which must be the client end
  1767. * of a connection) to request SCTs from the server. See
  1768. * https://tools.ietf.org/html/rfc6962. It returns one.
  1769. *
  1770. * Call |SSL_get0_signed_cert_timestamp_list| to recover the SCT after the
  1771. * handshake. */
  1772. OPENSSL_EXPORT int SSL_enable_signed_cert_timestamps(SSL *ssl);
  1773. /* SSL_CTX_enable_signed_cert_timestamps enables SCT requests on all client SSL
  1774. * objects created from |ctx|.
  1775. *
  1776. * Call |SSL_get0_signed_cert_timestamp_list| to recover the SCT after the
  1777. * handshake. */
  1778. OPENSSL_EXPORT void SSL_CTX_enable_signed_cert_timestamps(SSL_CTX *ctx);
  1779. /* SSL_enable_ocsp_stapling causes |ssl| (which must be the client end of a
  1780. * connection) to request a stapled OCSP response from the server. It returns
  1781. * one.
  1782. *
  1783. * Call |SSL_get0_ocsp_response| to recover the OCSP response after the
  1784. * handshake. */
  1785. OPENSSL_EXPORT int SSL_enable_ocsp_stapling(SSL *ssl);
  1786. /* SSL_CTX_enable_ocsp_stapling enables OCSP stapling on all client SSL objects
  1787. * created from |ctx|.
  1788. *
  1789. * Call |SSL_get0_ocsp_response| to recover the OCSP response after the
  1790. * handshake. */
  1791. OPENSSL_EXPORT void SSL_CTX_enable_ocsp_stapling(SSL_CTX *ctx);
  1792. /* Client certificate CA list.
  1793. *
  1794. * When requesting a client certificate, a server may advertise a list of
  1795. * certificate authorities which are accepted. These functions may be used to
  1796. * configure this list. */
  1797. /* SSL_set_client_CA_list sets |ssl|'s client certificate CA list to
  1798. * |name_list|. It takes ownership of |name_list|. */
  1799. OPENSSL_EXPORT void SSL_set_client_CA_list(SSL *ssl,
  1800. STACK_OF(X509_NAME) *name_list);
  1801. /* SSL_CTX_set_client_CA_list sets |ctx|'s client certificate CA list to
  1802. * |name_list|. It takes ownership of |name_list|. */
  1803. OPENSSL_EXPORT void SSL_CTX_set_client_CA_list(SSL_CTX *ctx,
  1804. STACK_OF(X509_NAME) *name_list);
  1805. /* SSL_get_client_CA_list returns |ssl|'s client certificate CA list. If |ssl|
  1806. * has not been configured as a client, this is the list configured by
  1807. * |SSL_CTX_set_client_CA_list|.
  1808. *
  1809. * If configured as a client, it returns the client certificate CA list sent by
  1810. * the server. In this mode, the behavior is undefined except during the
  1811. * callbacks set by |SSL_CTX_set_cert_cb| and |SSL_CTX_set_client_cert_cb| or
  1812. * when the handshake is paused because of them. */
  1813. OPENSSL_EXPORT STACK_OF(X509_NAME) *SSL_get_client_CA_list(const SSL *ssl);
  1814. /* SSL_CTX_get_client_CA_list returns |ctx|'s client certificate CA list. */
  1815. OPENSSL_EXPORT STACK_OF(X509_NAME) *
  1816. SSL_CTX_get_client_CA_list(const SSL_CTX *ctx);
  1817. /* SSL_add_client_CA appends |x509|'s subject to the client certificate CA list.
  1818. * It returns one on success or zero on error. The caller retains ownership of
  1819. * |x509|. */
  1820. OPENSSL_EXPORT int SSL_add_client_CA(SSL *ssl, X509 *x509);
  1821. /* SSL_CTX_add_client_CA appends |x509|'s subject to the client certificate CA
  1822. * list. It returns one on success or zero on error. The caller retains
  1823. * ownership of |x509|. */
  1824. OPENSSL_EXPORT int SSL_CTX_add_client_CA(SSL_CTX *ctx, X509 *x509);
  1825. /* SSL_load_client_CA_file opens |file| and reads PEM-encoded certificates from
  1826. * it. It returns a newly-allocated stack of the certificate subjects or NULL
  1827. * on error. */
  1828. OPENSSL_EXPORT STACK_OF(X509_NAME) *SSL_load_client_CA_file(const char *file);
  1829. /* SSL_dup_CA_list makes a deep copy of |list|. It returns the new list on
  1830. * success or NULL on allocation error. */
  1831. OPENSSL_EXPORT STACK_OF(X509_NAME) *SSL_dup_CA_list(STACK_OF(X509_NAME) *list);
  1832. /* SSL_add_file_cert_subjects_to_stack behaves like |SSL_load_client_CA_file|
  1833. * but appends the result to |out|. It returns one on success or zero on
  1834. * error. */
  1835. OPENSSL_EXPORT int SSL_add_file_cert_subjects_to_stack(STACK_OF(X509_NAME) *out,
  1836. const char *file);
  1837. /* SSL_add_dir_cert_subjects_to_stack lists files in directory |dir|. It calls
  1838. * |SSL_add_file_cert_subjects_to_stack| on each file and returns one on success
  1839. * or zero on error. */
  1840. OPENSSL_EXPORT int SSL_add_dir_cert_subjects_to_stack(STACK_OF(X509_NAME) *out,
  1841. const char *dir);
  1842. /* Server name indication.
  1843. *
  1844. * The server_name extension (RFC 3546) allows the client to advertise the name
  1845. * of the server it is connecting to. This is used in virtual hosting
  1846. * deployments to select one of a several certificates on a single IP. Only the
  1847. * host_name name type is supported. */
  1848. #define TLSEXT_NAMETYPE_host_name 0
  1849. /* SSL_set_tlsext_host_name, for a client, configures |ssl| to advertise |name|
  1850. * in the server_name extension. It returns one on success and zero on error. */
  1851. OPENSSL_EXPORT int SSL_set_tlsext_host_name(SSL *ssl, const char *name);
  1852. /* SSL_get_servername, for a server, returns the hostname supplied by the
  1853. * client or NULL if there was none. The |type| argument must be
  1854. * |TLSEXT_NAMETYPE_host_name|. */
  1855. OPENSSL_EXPORT const char *SSL_get_servername(const SSL *ssl, const int type);
  1856. /* SSL_get_servername_type, for a server, returns |TLSEXT_NAMETYPE_host_name|
  1857. * if the client sent a hostname and -1 otherwise. */
  1858. OPENSSL_EXPORT int SSL_get_servername_type(const SSL *ssl);
  1859. /* SSL_CTX_set_tlsext_servername_callback configures |callback| to be called on
  1860. * the server after ClientHello extensions have been parsed and returns one.
  1861. * The callback may use |SSL_get_servername| to examine the server_name extension
  1862. * and returns a |SSL_TLSEXT_ERR_*| value. The value of |arg| may be set by
  1863. * calling |SSL_CTX_set_tlsext_servername_arg|.
  1864. *
  1865. * If the callback returns |SSL_TLSEXT_ERR_NOACK|, the server_name extension is
  1866. * not acknowledged in the ServerHello. If the return value is
  1867. * |SSL_TLSEXT_ERR_ALERT_FATAL| or |SSL_TLSEXT_ERR_ALERT_WARNING| then
  1868. * |*out_alert| must be set to the alert value to send. */
  1869. OPENSSL_EXPORT int SSL_CTX_set_tlsext_servername_callback(
  1870. SSL_CTX *ctx, int (*callback)(SSL *ssl, int *out_alert, void *arg));
  1871. /* SSL_CTX_set_tlsext_servername_arg sets the argument to the servername
  1872. * callback and returns one. See |SSL_CTX_set_tlsext_servername_callback|. */
  1873. OPENSSL_EXPORT int SSL_CTX_set_tlsext_servername_arg(SSL_CTX *ctx, void *arg);
  1874. /* SSL_TLSEXT_ERR_* are values returned by some extension-related callbacks. */
  1875. #define SSL_TLSEXT_ERR_OK 0
  1876. #define SSL_TLSEXT_ERR_ALERT_WARNING 1
  1877. #define SSL_TLSEXT_ERR_ALERT_FATAL 2
  1878. #define SSL_TLSEXT_ERR_NOACK 3
  1879. /* Application-layer protocol negotation.
  1880. *
  1881. * The ALPN extension (RFC 7301) allows negotiating different application-layer
  1882. * protocols over a single port. This is used, for example, to negotiate
  1883. * HTTP/2. */
  1884. /* SSL_CTX_set_alpn_protos sets the client ALPN protocol list on |ctx| to
  1885. * |protos|. |protos| must be in wire-format (i.e. a series of non-empty, 8-bit
  1886. * length-prefixed strings). It returns zero on success and one on failure.
  1887. * Configuring this list enables ALPN on a client.
  1888. *
  1889. * WARNING: this function is dangerous because it breaks the usual return value
  1890. * convention. */
  1891. OPENSSL_EXPORT int SSL_CTX_set_alpn_protos(SSL_CTX *ctx, const uint8_t *protos,
  1892. unsigned protos_len);
  1893. /* SSL_set_alpn_protos sets the client ALPN protocol list on |ssl| to |protos|.
  1894. * |protos| must be in wire-format (i.e. a series of non-empty, 8-bit
  1895. * length-prefixed strings). It returns zero on success and one on failure.
  1896. * Configuring this list enables ALPN on a client.
  1897. *
  1898. * WARNING: this function is dangerous because it breaks the usual return value
  1899. * convention. */
  1900. OPENSSL_EXPORT int SSL_set_alpn_protos(SSL *ssl, const uint8_t *protos,
  1901. unsigned protos_len);
  1902. /* SSL_CTX_set_alpn_select_cb sets a callback function on |ctx| that is called
  1903. * during ClientHello processing in order to select an ALPN protocol from the
  1904. * client's list of offered protocols. Configuring this callback enables ALPN on
  1905. * a server.
  1906. *
  1907. * The callback is passed a wire-format (i.e. a series of non-empty, 8-bit
  1908. * length-prefixed strings) ALPN protocol list in |in|. It should set |*out| and
  1909. * |*out_len| to the selected protocol and return |SSL_TLSEXT_ERR_OK| on
  1910. * success. It does not pass ownership of the buffer. Otherwise, it should
  1911. * return |SSL_TLSEXT_ERR_NOACK|. Other |SSL_TLSEXT_ERR_*| values are
  1912. * unimplemented and will be treated as |SSL_TLSEXT_ERR_NOACK|. */
  1913. OPENSSL_EXPORT void SSL_CTX_set_alpn_select_cb(
  1914. SSL_CTX *ctx, int (*cb)(SSL *ssl, const uint8_t **out, uint8_t *out_len,
  1915. const uint8_t *in, unsigned in_len, void *arg),
  1916. void *arg);
  1917. /* SSL_get0_alpn_selected gets the selected ALPN protocol (if any) from |ssl|.
  1918. * On return it sets |*out_data| to point to |*out_len| bytes of protocol name
  1919. * (not including the leading length-prefix byte). If the server didn't respond
  1920. * with a negotiated protocol then |*out_len| will be zero. */
  1921. OPENSSL_EXPORT void SSL_get0_alpn_selected(const SSL *ssl,
  1922. const uint8_t **out_data,
  1923. unsigned *out_len);
  1924. /* Next protocol negotiation.
  1925. *
  1926. * The NPN extension (draft-agl-tls-nextprotoneg-03) is the predecessor to ALPN
  1927. * and deprecated in favor of it. */
  1928. /* SSL_CTX_set_next_protos_advertised_cb sets a callback that is called when a
  1929. * TLS server needs a list of supported protocols for Next Protocol
  1930. * Negotiation. The returned list must be in wire format. The list is returned
  1931. * by setting |*out| to point to it and |*out_len| to its length. This memory
  1932. * will not be modified, but one should assume that |ssl| keeps a reference to
  1933. * it.
  1934. *
  1935. * The callback should return |SSL_TLSEXT_ERR_OK| if it wishes to advertise.
  1936. * Otherwise, no such extension will be included in the ServerHello. */
  1937. OPENSSL_EXPORT void SSL_CTX_set_next_protos_advertised_cb(
  1938. SSL_CTX *ctx,
  1939. int (*cb)(SSL *ssl, const uint8_t **out, unsigned *out_len, void *arg),
  1940. void *arg);
  1941. /* SSL_CTX_set_next_proto_select_cb sets a callback that is called when a client
  1942. * needs to select a protocol from the server's provided list. |*out| must be
  1943. * set to point to the selected protocol (which may be within |in|). The length
  1944. * of the protocol name must be written into |*out_len|. The server's advertised
  1945. * protocols are provided in |in| and |in_len|. The callback can assume that
  1946. * |in| is syntactically valid.
  1947. *
  1948. * The client must select a protocol. It is fatal to the connection if this
  1949. * callback returns a value other than |SSL_TLSEXT_ERR_OK|.
  1950. *
  1951. * Configuring this callback enables NPN on a client. */
  1952. OPENSSL_EXPORT void SSL_CTX_set_next_proto_select_cb(
  1953. SSL_CTX *ctx, int (*cb)(SSL *ssl, uint8_t **out, uint8_t *out_len,
  1954. const uint8_t *in, unsigned in_len, void *arg),
  1955. void *arg);
  1956. /* SSL_get0_next_proto_negotiated sets |*out_data| and |*out_len| to point to
  1957. * the client's requested protocol for this connection. If the client didn't
  1958. * request any protocol, then |*out_data| is set to NULL.
  1959. *
  1960. * Note that the client can request any protocol it chooses. The value returned
  1961. * from this function need not be a member of the list of supported protocols
  1962. * provided by the server. */
  1963. OPENSSL_EXPORT void SSL_get0_next_proto_negotiated(const SSL *ssl,
  1964. const uint8_t **out_data,
  1965. unsigned *out_len);
  1966. /* SSL_select_next_proto implements the standard protocol selection. It is
  1967. * expected that this function is called from the callback set by
  1968. * |SSL_CTX_set_next_proto_select_cb|.
  1969. *
  1970. * The protocol data is assumed to be a vector of 8-bit, length prefixed byte
  1971. * strings. The length byte itself is not included in the length. A byte
  1972. * string of length 0 is invalid. No byte string may be truncated.
  1973. *
  1974. * The current, but experimental algorithm for selecting the protocol is:
  1975. *
  1976. * 1) If the server doesn't support NPN then this is indicated to the
  1977. * callback. In this case, the client application has to abort the connection
  1978. * or have a default application level protocol.
  1979. *
  1980. * 2) If the server supports NPN, but advertises an empty list then the
  1981. * client selects the first protcol in its list, but indicates via the
  1982. * API that this fallback case was enacted.
  1983. *
  1984. * 3) Otherwise, the client finds the first protocol in the server's list
  1985. * that it supports and selects this protocol. This is because it's
  1986. * assumed that the server has better information about which protocol
  1987. * a client should use.
  1988. *
  1989. * 4) If the client doesn't support any of the server's advertised
  1990. * protocols, then this is treated the same as case 2.
  1991. *
  1992. * It returns either |OPENSSL_NPN_NEGOTIATED| if a common protocol was found, or
  1993. * |OPENSSL_NPN_NO_OVERLAP| if the fallback case was reached. */
  1994. OPENSSL_EXPORT int SSL_select_next_proto(uint8_t **out, uint8_t *out_len,
  1995. const uint8_t *server,
  1996. unsigned server_len,
  1997. const uint8_t *client,
  1998. unsigned client_len);
  1999. #define OPENSSL_NPN_UNSUPPORTED 0
  2000. #define OPENSSL_NPN_NEGOTIATED 1
  2001. #define OPENSSL_NPN_NO_OVERLAP 2
  2002. /* Channel ID.
  2003. *
  2004. * See draft-balfanz-tls-channelid-01. */
  2005. /* SSL_CTX_enable_tls_channel_id either configures a TLS server to accept TLS
  2006. * Channel IDs from clients, or configures a client to send TLS Channel IDs to
  2007. * a server. It returns one. */
  2008. OPENSSL_EXPORT int SSL_CTX_enable_tls_channel_id(SSL_CTX *ctx);
  2009. /* SSL_enable_tls_channel_id either configures a TLS server to accept TLS
  2010. * Channel IDs from clients, or configures a client to send TLS Channel IDs to
  2011. * server. It returns one. */
  2012. OPENSSL_EXPORT int SSL_enable_tls_channel_id(SSL *ssl);
  2013. /* SSL_CTX_set1_tls_channel_id configures a TLS client to send a TLS Channel ID
  2014. * to compatible servers. |private_key| must be a P-256 EC key. It returns one
  2015. * on success and zero on error. */
  2016. OPENSSL_EXPORT int SSL_CTX_set1_tls_channel_id(SSL_CTX *ctx,
  2017. EVP_PKEY *private_key);
  2018. /* SSL_set1_tls_channel_id configures a TLS client to send a TLS Channel ID to
  2019. * compatible servers. |private_key| must be a P-256 EC key. It returns one on
  2020. * success and zero on error. */
  2021. OPENSSL_EXPORT int SSL_set1_tls_channel_id(SSL *ssl, EVP_PKEY *private_key);
  2022. /* SSL_get_tls_channel_id gets the client's TLS Channel ID from a server |SSL*|
  2023. * and copies up to the first |max_out| bytes into |out|. The Channel ID
  2024. * consists of the client's P-256 public key as an (x,y) pair where each is a
  2025. * 32-byte, big-endian field element. It returns 0 if the client didn't offer a
  2026. * Channel ID and the length of the complete Channel ID otherwise. */
  2027. OPENSSL_EXPORT size_t SSL_get_tls_channel_id(SSL *ssl, uint8_t *out,
  2028. size_t max_out);
  2029. /* SSL_CTX_set_channel_id_cb sets a callback to be called when a TLS Channel ID
  2030. * is requested. The callback may set |*out_pkey| to a key, passing a reference
  2031. * to the caller. If none is returned, the handshake will pause and
  2032. * |SSL_get_error| will return |SSL_ERROR_WANT_CHANNEL_ID_LOOKUP|.
  2033. *
  2034. * See also |SSL_ERROR_WANT_CHANNEL_ID_LOOKUP|. */
  2035. OPENSSL_EXPORT void SSL_CTX_set_channel_id_cb(
  2036. SSL_CTX *ctx, void (*channel_id_cb)(SSL *ssl, EVP_PKEY **out_pkey));
  2037. /* SSL_CTX_get_channel_id_cb returns the callback set by
  2038. * |SSL_CTX_set_channel_id_cb|. */
  2039. OPENSSL_EXPORT void (*SSL_CTX_get_channel_id_cb(SSL_CTX *ctx))(
  2040. SSL *ssl, EVP_PKEY **out_pkey);
  2041. /* DTLS-SRTP.
  2042. *
  2043. * See RFC 5764. */
  2044. /* An SRTP_PROTECTION_PROFILE is an SRTP profile for use with the use_srtp
  2045. * extension. */
  2046. struct srtp_protection_profile_st {
  2047. const char *name;
  2048. unsigned long id;
  2049. } /* SRTP_PROTECTION_PROFILE */;
  2050. DECLARE_STACK_OF(SRTP_PROTECTION_PROFILE)
  2051. /* SRTP_* define constants for SRTP profiles. */
  2052. #define SRTP_AES128_CM_SHA1_80 0x0001
  2053. #define SRTP_AES128_CM_SHA1_32 0x0002
  2054. #define SRTP_AES128_F8_SHA1_80 0x0003
  2055. #define SRTP_AES128_F8_SHA1_32 0x0004
  2056. #define SRTP_NULL_SHA1_80 0x0005
  2057. #define SRTP_NULL_SHA1_32 0x0006
  2058. #define SRTP_AEAD_AES_128_GCM 0x0007
  2059. #define SRTP_AEAD_AES_256_GCM 0x0008
  2060. /* SSL_CTX_set_srtp_profiles enables SRTP for all SSL objects created from
  2061. * |ctx|. |profile| contains a colon-separated list of profile names. It returns
  2062. * one on success and zero on failure. */
  2063. OPENSSL_EXPORT int SSL_CTX_set_srtp_profiles(SSL_CTX *ctx,
  2064. const char *profiles);
  2065. /* SSL_set_srtp_profiles enables SRTP for |ssl|. |profile| contains a
  2066. * colon-separated list of profile names. It returns one on success and zero on
  2067. * failure. */
  2068. OPENSSL_EXPORT int SSL_set_srtp_profiles(SSL *ssl, const char *profiles);
  2069. /* SSL_get_srtp_profiles returns the SRTP profiles supported by |ssl|. */
  2070. OPENSSL_EXPORT STACK_OF(SRTP_PROTECTION_PROFILE) *SSL_get_srtp_profiles(
  2071. SSL *ssl);
  2072. /* SSL_get_selected_srtp_profile returns the selected SRTP profile, or NULL if
  2073. * SRTP was not negotiated. */
  2074. OPENSSL_EXPORT const SRTP_PROTECTION_PROFILE *SSL_get_selected_srtp_profile(
  2075. SSL *ssl);
  2076. /* Pre-shared keys.
  2077. *
  2078. * Connections may be configured with PSK (Pre-Shared Key) cipher suites. These
  2079. * authenticate using out-of-band pre-shared keys rather than certificates. See
  2080. * RFC 4279.
  2081. *
  2082. * This implementation uses NUL-terminated C strings for identities and identity
  2083. * hints, so values with a NUL character are not supported. (RFC 4279 does not
  2084. * specify the format of an identity.) */
  2085. /* PSK_MAX_IDENTITY_LEN is the maximum supported length of a PSK identity,
  2086. * excluding the NUL terminator. */
  2087. #define PSK_MAX_IDENTITY_LEN 128
  2088. /* PSK_MAX_PSK_LEN is the maximum supported length of a pre-shared key. */
  2089. #define PSK_MAX_PSK_LEN 256
  2090. /* SSL_CTX_set_psk_client_callback sets the callback to be called when PSK is
  2091. * negotiated on the client. This callback must be set to enable PSK cipher
  2092. * suites on the client.
  2093. *
  2094. * The callback is passed the identity hint in |hint| or NULL if none was
  2095. * provided. It should select a PSK identity and write the identity and the
  2096. * corresponding PSK to |identity| and |psk|, respectively. The identity is
  2097. * written as a NUL-terminated C string of length (excluding the NUL terminator)
  2098. * at most |max_identity_len|. The PSK's length must be at most |max_psk_len|.
  2099. * The callback returns the length of the PSK or 0 if no suitable identity was
  2100. * found. */
  2101. OPENSSL_EXPORT void SSL_CTX_set_psk_client_callback(
  2102. SSL_CTX *ctx,
  2103. unsigned (*psk_client_callback)(
  2104. SSL *ssl, const char *hint, char *identity,
  2105. unsigned max_identity_len, uint8_t *psk, unsigned max_psk_len));
  2106. /* SSL_set_psk_client_callback sets the callback to be called when PSK is
  2107. * negotiated on the client. This callback must be set to enable PSK cipher
  2108. * suites on the client. See also |SSL_CTX_set_psk_client_callback|. */
  2109. OPENSSL_EXPORT void SSL_set_psk_client_callback(
  2110. SSL *ssl, unsigned (*psk_client_callback)(SSL *ssl, const char *hint,
  2111. char *identity,
  2112. unsigned max_identity_len,
  2113. uint8_t *psk,
  2114. unsigned max_psk_len));
  2115. /* SSL_CTX_set_psk_server_callback sets the callback to be called when PSK is
  2116. * negotiated on the server. This callback must be set to enable PSK cipher
  2117. * suites on the server.
  2118. *
  2119. * The callback is passed the identity in |identity|. It should write a PSK of
  2120. * length at most |max_psk_len| to |psk| and return the number of bytes written
  2121. * or zero if the PSK identity is unknown. */
  2122. OPENSSL_EXPORT void SSL_CTX_set_psk_server_callback(
  2123. SSL_CTX *ctx,
  2124. unsigned (*psk_server_callback)(SSL *ssl, const char *identity,
  2125. uint8_t *psk,
  2126. unsigned max_psk_len));
  2127. /* SSL_set_psk_server_callback sets the callback to be called when PSK is
  2128. * negotiated on the server. This callback must be set to enable PSK cipher
  2129. * suites on the server. See also |SSL_CTX_set_psk_server_callback|. */
  2130. OPENSSL_EXPORT void SSL_set_psk_server_callback(
  2131. SSL *ssl,
  2132. unsigned (*psk_server_callback)(SSL *ssl, const char *identity,
  2133. uint8_t *psk,
  2134. unsigned max_psk_len));
  2135. /* SSL_CTX_use_psk_identity_hint configures server connections to advertise an
  2136. * identity hint of |identity_hint|. It returns one on success and zero on
  2137. * error. */
  2138. OPENSSL_EXPORT int SSL_CTX_use_psk_identity_hint(SSL_CTX *ctx,
  2139. const char *identity_hint);
  2140. /* SSL_use_psk_identity_hint configures server connections to advertise an
  2141. * identity hint of |identity_hint|. It returns one on success and zero on
  2142. * error. */
  2143. OPENSSL_EXPORT int SSL_use_psk_identity_hint(SSL *ssl,
  2144. const char *identity_hint);
  2145. /* SSL_get_psk_identity_hint returns the PSK identity hint advertised for |ssl|
  2146. * or NULL if there is none. */
  2147. OPENSSL_EXPORT const char *SSL_get_psk_identity_hint(const SSL *ssl);
  2148. /* SSL_get_psk_identity, after the handshake completes, returns the PSK identity
  2149. * that was negotiated by |ssl| or NULL if PSK was not used. */
  2150. OPENSSL_EXPORT const char *SSL_get_psk_identity(const SSL *ssl);
  2151. /* Alerts.
  2152. *
  2153. * TLS and SSL 3.0 use alerts to signal error conditions. Alerts have a type
  2154. * (warning or fatal) and description. OpenSSL internally handles fatal alerts
  2155. * with dedicated error codes (see |SSL_AD_REASON_OFFSET|). Except for
  2156. * close_notify, warning alerts are silently ignored and may only be surfaced
  2157. * with |SSL_CTX_set_info_callback|. */
  2158. /* SSL_AD_REASON_OFFSET is the offset between error reasons and |SSL_AD_*|
  2159. * values. Any error code under |ERR_LIB_SSL| with an error reason above this
  2160. * value corresponds to an alert description. Consumers may add or subtract
  2161. * |SSL_AD_REASON_OFFSET| to convert between them.
  2162. *
  2163. * make_errors.go reserves error codes above 1000 for manually-assigned errors.
  2164. * This value must be kept in sync with reservedReasonCode in make_errors.h */
  2165. #define SSL_AD_REASON_OFFSET 1000
  2166. /* SSL_AD_* are alert descriptions for SSL 3.0 and TLS. */
  2167. #define SSL_AD_CLOSE_NOTIFY SSL3_AD_CLOSE_NOTIFY
  2168. #define SSL_AD_UNEXPECTED_MESSAGE SSL3_AD_UNEXPECTED_MESSAGE
  2169. #define SSL_AD_BAD_RECORD_MAC SSL3_AD_BAD_RECORD_MAC
  2170. #define SSL_AD_DECRYPTION_FAILED TLS1_AD_DECRYPTION_FAILED
  2171. #define SSL_AD_RECORD_OVERFLOW TLS1_AD_RECORD_OVERFLOW
  2172. #define SSL_AD_DECOMPRESSION_FAILURE SSL3_AD_DECOMPRESSION_FAILURE
  2173. #define SSL_AD_HANDSHAKE_FAILURE SSL3_AD_HANDSHAKE_FAILURE
  2174. #define SSL_AD_NO_CERTIFICATE SSL3_AD_NO_CERTIFICATE /* Not used in TLS */
  2175. #define SSL_AD_BAD_CERTIFICATE SSL3_AD_BAD_CERTIFICATE
  2176. #define SSL_AD_UNSUPPORTED_CERTIFICATE SSL3_AD_UNSUPPORTED_CERTIFICATE
  2177. #define SSL_AD_CERTIFICATE_REVOKED SSL3_AD_CERTIFICATE_REVOKED
  2178. #define SSL_AD_CERTIFICATE_EXPIRED SSL3_AD_CERTIFICATE_EXPIRED
  2179. #define SSL_AD_CERTIFICATE_UNKNOWN SSL3_AD_CERTIFICATE_UNKNOWN
  2180. #define SSL_AD_ILLEGAL_PARAMETER SSL3_AD_ILLEGAL_PARAMETER
  2181. #define SSL_AD_UNKNOWN_CA TLS1_AD_UNKNOWN_CA
  2182. #define SSL_AD_ACCESS_DENIED TLS1_AD_ACCESS_DENIED
  2183. #define SSL_AD_DECODE_ERROR TLS1_AD_DECODE_ERROR
  2184. #define SSL_AD_DECRYPT_ERROR TLS1_AD_DECRYPT_ERROR
  2185. #define SSL_AD_EXPORT_RESTRICTION TLS1_AD_EXPORT_RESTRICTION
  2186. #define SSL_AD_PROTOCOL_VERSION TLS1_AD_PROTOCOL_VERSION
  2187. #define SSL_AD_INSUFFICIENT_SECURITY TLS1_AD_INSUFFICIENT_SECURITY
  2188. #define SSL_AD_INTERNAL_ERROR TLS1_AD_INTERNAL_ERROR
  2189. #define SSL_AD_USER_CANCELLED TLS1_AD_USER_CANCELLED
  2190. #define SSL_AD_NO_RENEGOTIATION TLS1_AD_NO_RENEGOTIATION
  2191. #define SSL_AD_UNSUPPORTED_EXTENSION TLS1_AD_UNSUPPORTED_EXTENSION
  2192. #define SSL_AD_CERTIFICATE_UNOBTAINABLE TLS1_AD_CERTIFICATE_UNOBTAINABLE
  2193. #define SSL_AD_UNRECOGNIZED_NAME TLS1_AD_UNRECOGNIZED_NAME
  2194. #define SSL_AD_BAD_CERTIFICATE_STATUS_RESPONSE \
  2195. TLS1_AD_BAD_CERTIFICATE_STATUS_RESPONSE
  2196. #define SSL_AD_BAD_CERTIFICATE_HASH_VALUE TLS1_AD_BAD_CERTIFICATE_HASH_VALUE
  2197. #define SSL_AD_UNKNOWN_PSK_IDENTITY TLS1_AD_UNKNOWN_PSK_IDENTITY
  2198. #define SSL_AD_INAPPROPRIATE_FALLBACK SSL3_AD_INAPPROPRIATE_FALLBACK
  2199. /* SSL_alert_type_string_long returns a string description of |value| as an
  2200. * alert type (warning or fatal). */
  2201. OPENSSL_EXPORT const char *SSL_alert_type_string_long(int value);
  2202. /* SSL_alert_desc_string_long returns a string description of |value| as an
  2203. * alert description or "unknown" if unknown. */
  2204. OPENSSL_EXPORT const char *SSL_alert_desc_string_long(int value);
  2205. /* ex_data functions.
  2206. *
  2207. * See |ex_data.h| for details. */
  2208. OPENSSL_EXPORT int SSL_set_ex_data(SSL *ssl, int idx, void *data);
  2209. OPENSSL_EXPORT void *SSL_get_ex_data(const SSL *ssl, int idx);
  2210. OPENSSL_EXPORT int SSL_get_ex_new_index(long argl, void *argp,
  2211. CRYPTO_EX_new *new_func,
  2212. CRYPTO_EX_dup *dup_func,
  2213. CRYPTO_EX_free *free_func);
  2214. OPENSSL_EXPORT int SSL_SESSION_set_ex_data(SSL_SESSION *session, int idx,
  2215. void *data);
  2216. OPENSSL_EXPORT void *SSL_SESSION_get_ex_data(const SSL_SESSION *session,
  2217. int idx);
  2218. OPENSSL_EXPORT int SSL_SESSION_get_ex_new_index(long argl, void *argp,
  2219. CRYPTO_EX_new *new_func,
  2220. CRYPTO_EX_dup *dup_func,
  2221. CRYPTO_EX_free *free_func);
  2222. OPENSSL_EXPORT int SSL_CTX_set_ex_data(SSL_CTX *ctx, int idx, void *data);
  2223. OPENSSL_EXPORT void *SSL_CTX_get_ex_data(const SSL_CTX *ctx, int idx);
  2224. OPENSSL_EXPORT int SSL_CTX_get_ex_new_index(long argl, void *argp,
  2225. CRYPTO_EX_new *new_func,
  2226. CRYPTO_EX_dup *dup_func,
  2227. CRYPTO_EX_free *free_func);
  2228. /* Obscure functions. */
  2229. /* SSL_get_rc4_state sets |*read_key| and |*write_key| to the RC4 states for
  2230. * the read and write directions. It returns one on success or zero if |ssl|
  2231. * isn't using an RC4-based cipher suite. */
  2232. OPENSSL_EXPORT int SSL_get_rc4_state(const SSL *ssl, const RC4_KEY **read_key,
  2233. const RC4_KEY **write_key);
  2234. /* SSL_get_ivs sets |*out_iv_len| to the length of the IVs for the ciphers
  2235. * underlying |ssl| and sets |*out_read_iv| and |*out_write_iv| to point to the
  2236. * current IVs for the read and write directions. This is only meaningful for
  2237. * connections with implicit IVs (i.e. CBC mode with SSLv3 or TLS 1.0).
  2238. *
  2239. * It returns one on success or zero on error. */
  2240. OPENSSL_EXPORT int SSL_get_ivs(const SSL *ssl, const uint8_t **out_read_iv,
  2241. const uint8_t **out_write_iv,
  2242. size_t *out_iv_len);
  2243. /* SSL_get_structure_sizes returns the sizes of the SSL, SSL_CTX and
  2244. * SSL_SESSION structures so that a test can ensure that outside code agrees on
  2245. * these values. */
  2246. OPENSSL_EXPORT void SSL_get_structure_sizes(size_t *ssl_size,
  2247. size_t *ssl_ctx_size,
  2248. size_t *ssl_session_size);
  2249. /* SSL_CTX_set_msg_callback installs |cb| as the message callback for |ctx|.
  2250. * This callback will be called when sending or receiving low-level record
  2251. * headers, complete handshake messages, ChangeCipherSpec, and alerts.
  2252. * |write_p| is one for outgoing messages and zero for incoming messages.
  2253. *
  2254. * For each record header, |cb| is called with |version| = 0 and |content_type|
  2255. * = |SSL3_RT_HEADER|. The |len| bytes from |buf| contain the header. Note that
  2256. * this does not include the record body. If the record is sealed, the length
  2257. * in the header is the length of the ciphertext.
  2258. *
  2259. * For each handshake message, ChangeCipherSpec, and alert, |version| is the
  2260. * protocol version and |content_type| is the corresponding record type. The
  2261. * |len| bytes from |buf| contain the handshake message, one-byte
  2262. * ChangeCipherSpec body, and two-byte alert, respectively. */
  2263. OPENSSL_EXPORT void SSL_CTX_set_msg_callback(
  2264. SSL_CTX *ctx, void (*cb)(int write_p, int version, int content_type,
  2265. const void *buf, size_t len, SSL *ssl, void *arg));
  2266. /* SSL_CTX_set_msg_callback_arg sets the |arg| parameter of the message
  2267. * callback. */
  2268. OPENSSL_EXPORT void SSL_CTX_set_msg_callback_arg(SSL_CTX *ctx, void *arg);
  2269. /* SSL_set_msg_callback installs |cb| as the message callback of |ssl|. See
  2270. * |SSL_CTX_set_msg_callback| for when this callback is called. */
  2271. OPENSSL_EXPORT void SSL_set_msg_callback(
  2272. SSL *ssl, void (*cb)(int write_p, int version, int content_type,
  2273. const void *buf, size_t len, SSL *ssl, void *arg));
  2274. /* SSL_set_msg_callback_arg sets the |arg| parameter of the message callback. */
  2275. OPENSSL_EXPORT void SSL_set_msg_callback_arg(SSL *ssl, void *arg);
  2276. /* SSL_CTX_set_keylog_callback configures a callback to log key material. This
  2277. * is intended for debugging use with tools like Wireshark. The |cb| function
  2278. * should log |line| followed by a newline, synchronizing with any concurrent
  2279. * access to the log.
  2280. *
  2281. * The format is described in
  2282. * https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/Key_Log_Format. */
  2283. OPENSSL_EXPORT void SSL_CTX_set_keylog_callback(
  2284. SSL_CTX *ctx, void (*cb)(const SSL *ssl, const char *line));
  2285. enum ssl_renegotiate_mode_t {
  2286. ssl_renegotiate_never = 0,
  2287. ssl_renegotiate_once,
  2288. ssl_renegotiate_freely,
  2289. ssl_renegotiate_ignore,
  2290. };
  2291. /* SSL_set_renegotiate_mode configures how |ssl|, a client, reacts to
  2292. * renegotiation attempts by a server. If |ssl| is a server, peer-initiated
  2293. * renegotiations are *always* rejected and this function does nothing.
  2294. *
  2295. * The renegotiation mode defaults to |ssl_renegotiate_never|, but may be set
  2296. * at any point in a connection's lifetime. Set it to |ssl_renegotiate_once| to
  2297. * allow one renegotiation, |ssl_renegotiate_freely| to allow all
  2298. * renegotiations or |ssl_renegotiate_ignore| to ignore HelloRequest messages.
  2299. * Note that ignoring HelloRequest messages may cause the connection to stall
  2300. * if the server waits for the renegotiation to complete.
  2301. *
  2302. * There is no support in BoringSSL for initiating renegotiations as a client
  2303. * or server. */
  2304. OPENSSL_EXPORT void SSL_set_renegotiate_mode(SSL *ssl,
  2305. enum ssl_renegotiate_mode_t mode);
  2306. /* SSL_renegotiate_pending returns one if |ssl| is in the middle of a
  2307. * renegotiation. */
  2308. OPENSSL_EXPORT int SSL_renegotiate_pending(SSL *ssl);
  2309. /* SSL_total_renegotiations returns the total number of renegotiation handshakes
  2310. * peformed by |ssl|. This includes the pending renegotiation, if any. */
  2311. OPENSSL_EXPORT int SSL_total_renegotiations(const SSL *ssl);
  2312. /* SSL_MAX_CERT_LIST_DEFAULT is the default maximum length, in bytes, of a peer
  2313. * certificate chain. */
  2314. #define SSL_MAX_CERT_LIST_DEFAULT 1024 * 100
  2315. /* SSL_CTX_get_max_cert_list returns the maximum length, in bytes, of a peer
  2316. * certificate chain accepted by |ctx|. */
  2317. OPENSSL_EXPORT size_t SSL_CTX_get_max_cert_list(const SSL_CTX *ctx);
  2318. /* SSL_CTX_set_max_cert_list sets the maximum length, in bytes, of a peer
  2319. * certificate chain to |max_cert_list|. This affects how much memory may be
  2320. * consumed during the handshake. */
  2321. OPENSSL_EXPORT void SSL_CTX_set_max_cert_list(SSL_CTX *ctx,
  2322. size_t max_cert_list);
  2323. /* SSL_get_max_cert_list returns the maximum length, in bytes, of a peer
  2324. * certificate chain accepted by |ssl|. */
  2325. OPENSSL_EXPORT size_t SSL_get_max_cert_list(const SSL *ssl);
  2326. /* SSL_set_max_cert_list sets the maximum length, in bytes, of a peer
  2327. * certificate chain to |max_cert_list|. This affects how much memory may be
  2328. * consumed during the handshake. */
  2329. OPENSSL_EXPORT void SSL_set_max_cert_list(SSL *ssl, size_t max_cert_list);
  2330. /* SSL_CTX_set_max_send_fragment sets the maximum length, in bytes, of records
  2331. * sent by |ctx|. Beyond this length, handshake messages and application data
  2332. * will be split into multiple records. */
  2333. OPENSSL_EXPORT void SSL_CTX_set_max_send_fragment(SSL_CTX *ctx,
  2334. size_t max_send_fragment);
  2335. /* SSL_set_max_send_fragment sets the maximum length, in bytes, of records
  2336. * sent by |ssl|. Beyond this length, handshake messages and application data
  2337. * will be split into multiple records. */
  2338. OPENSSL_EXPORT void SSL_set_max_send_fragment(SSL *ssl,
  2339. size_t max_send_fragment);
  2340. /* OPENSSL_get_big_buffer_use_count returns the total number of invalid TLS
  2341. * records that were accepted because of |SSL_OP_MICROSOFT_BIG_SSLV3_BUFFER|.
  2342. *
  2343. * TODO(davidben): Remove this when (hopefully!) the quirk is demonstrated to be
  2344. * unnecessary. */
  2345. OPENSSL_EXPORT uint64_t OPENSSL_get_big_buffer_use_count(void);
  2346. /* OPENSSL_get_d5_bug_use_count returns the total number of invalid RSA
  2347. * ClientKeyExchanges that were accepted because of |SSL_OP_TLS_D5_BUG|.
  2348. *
  2349. * TODO(davidben): Remove this when (hopefully!) the quirk is demonstrated to be
  2350. * unnecessary. */
  2351. OPENSSL_EXPORT uint64_t OPENSSL_get_d5_bug_use_count(void);
  2352. /* ssl_early_callback_ctx is passed to certain callbacks that are called very
  2353. * early on during the server handshake. At this point, much of the SSL* hasn't
  2354. * been filled out and only the ClientHello can be depended on. */
  2355. struct ssl_early_callback_ctx {
  2356. SSL *ssl;
  2357. const uint8_t *client_hello;
  2358. size_t client_hello_len;
  2359. const uint8_t *session_id;
  2360. size_t session_id_len;
  2361. const uint8_t *cipher_suites;
  2362. size_t cipher_suites_len;
  2363. const uint8_t *compression_methods;
  2364. size_t compression_methods_len;
  2365. const uint8_t *extensions;
  2366. size_t extensions_len;
  2367. };
  2368. /* SSL_early_callback_ctx_extension_get searches the extensions in |ctx| for an
  2369. * extension of the given type. If not found, it returns zero. Otherwise it
  2370. * sets |out_data| to point to the extension contents (not including the type
  2371. * and length bytes), sets |out_len| to the length of the extension contents
  2372. * and returns one. */
  2373. OPENSSL_EXPORT int SSL_early_callback_ctx_extension_get(
  2374. const struct ssl_early_callback_ctx *ctx, uint16_t extension_type,
  2375. const uint8_t **out_data, size_t *out_len);
  2376. /* SSL_CTX_set_select_certificate_cb sets a callback that is called before most
  2377. * ClientHello processing and before the decision whether to resume a session
  2378. * is made. The callback may inspect the ClientHello and configure the
  2379. * connection. It may then return one to continue the handshake or zero to
  2380. * pause the handshake to perform an asynchronous operation. If paused,
  2381. * |SSL_get_error| will return |SSL_ERROR_PENDING_CERTIFICATE|.
  2382. *
  2383. * Note: The |ssl_early_callback_ctx| is only valid for the duration of the
  2384. * callback and is not valid while the handshake is paused. Further, unlike with
  2385. * most callbacks, when the handshake loop is resumed, it will not call the
  2386. * callback a second time. The caller must finish reconfiguring the connection
  2387. * before resuming the handshake. */
  2388. OPENSSL_EXPORT void SSL_CTX_set_select_certificate_cb(
  2389. SSL_CTX *ctx, int (*cb)(const struct ssl_early_callback_ctx *));
  2390. /* SSL_CTX_set_dos_protection_cb sets a callback that is called once the
  2391. * resumption decision for a ClientHello has been made. It can return one to
  2392. * allow the handshake to continue or zero to cause the handshake to abort. */
  2393. OPENSSL_EXPORT void SSL_CTX_set_dos_protection_cb(
  2394. SSL_CTX *ctx, int (*cb)(const struct ssl_early_callback_ctx *));
  2395. /* SSL_ST_* are possible values for |SSL_state| and the bitmasks that make them
  2396. * up. */
  2397. #define SSL_ST_CONNECT 0x1000
  2398. #define SSL_ST_ACCEPT 0x2000
  2399. #define SSL_ST_MASK 0x0FFF
  2400. #define SSL_ST_INIT (SSL_ST_CONNECT | SSL_ST_ACCEPT)
  2401. #define SSL_ST_OK 0x03
  2402. #define SSL_ST_RENEGOTIATE (0x04 | SSL_ST_INIT)
  2403. /* SSL_CB_* are possible values for the |type| parameter in the info
  2404. * callback and the bitmasks that make them up. */
  2405. #define SSL_CB_LOOP 0x01
  2406. #define SSL_CB_EXIT 0x02
  2407. #define SSL_CB_READ 0x04
  2408. #define SSL_CB_WRITE 0x08
  2409. #define SSL_CB_ALERT 0x4000
  2410. #define SSL_CB_READ_ALERT (SSL_CB_ALERT | SSL_CB_READ)
  2411. #define SSL_CB_WRITE_ALERT (SSL_CB_ALERT | SSL_CB_WRITE)
  2412. #define SSL_CB_ACCEPT_LOOP (SSL_ST_ACCEPT | SSL_CB_LOOP)
  2413. #define SSL_CB_ACCEPT_EXIT (SSL_ST_ACCEPT | SSL_CB_EXIT)
  2414. #define SSL_CB_CONNECT_LOOP (SSL_ST_CONNECT | SSL_CB_LOOP)
  2415. #define SSL_CB_CONNECT_EXIT (SSL_ST_CONNECT | SSL_CB_EXIT)
  2416. #define SSL_CB_HANDSHAKE_START 0x10
  2417. #define SSL_CB_HANDSHAKE_DONE 0x20
  2418. /* SSL_CTX_set_info_callback configures a callback to be run when various
  2419. * events occur during a connection's lifetime. The |type| argumentj determines
  2420. * the type of event and the meaning of the |value| argument. Callbacks must
  2421. * ignore unexpected |type| values.
  2422. *
  2423. * |SSL_CB_READ_ALERT| is signaled for each alert received, warning or fatal.
  2424. * The |value| argument is a 16-bit value where the alert level (either
  2425. * |SSL3_AL_WARNING| or |SSL3_AL_FATAL|) is in the most-significant eight bits and
  2426. * the alert type (one of |SSL_AD_*|) is in the least-significant eight.
  2427. *
  2428. * |SSL_CB_WRITE_ALERT| is signaled for each alert sent. The |value| argument
  2429. * is constructed as with |SSL_CB_READ_ALERT|.
  2430. *
  2431. * |SSL_CB_HANDSHAKE_START| is signaled when a handshake begins. The |value|
  2432. * argument is always one.
  2433. *
  2434. * |SSL_CB_HANDSHAKE_DONE| is signaled when a handshake completes successfully.
  2435. * The |value| argument is always one. If a handshake False Starts, this event
  2436. * may be used to determine when the Finished message is received.
  2437. *
  2438. * The following event types expose implementation details of the handshake
  2439. * state machine. Consuming them is deprecated.
  2440. *
  2441. * |SSL_CB_ACCEPT_LOOP| (respectively, |SSL_CB_CONNECT_LOOP|) is signaled when
  2442. * a server (respectively, client) handshake progresses. The |value| argument
  2443. * is always one. For the duration of the callback, |SSL_state| will return the
  2444. * previous state.
  2445. *
  2446. * |SSL_CB_ACCEPT_EXIT| (respectively, |SSL_CB_CONNECT_EXIT|) is signaled when
  2447. * a server (respectively, client) handshake completes, fails, or is paused.
  2448. * The |value| argument is one if the handshake succeeded and <= 0
  2449. * otherwise. */
  2450. OPENSSL_EXPORT void SSL_CTX_set_info_callback(
  2451. SSL_CTX *ctx, void (*cb)(const SSL *ssl, int type, int value));
  2452. /* SSL_CTX_get_info_callback returns the callback set by
  2453. * |SSL_CTX_set_info_callback|. */
  2454. OPENSSL_EXPORT void (*SSL_CTX_get_info_callback(SSL_CTX *ctx))(const SSL *ssl,
  2455. int type,
  2456. int value);
  2457. /* SSL_set_info_callback configures a callback to be run at various events
  2458. * during a connection's lifetime. See |SSL_CTX_set_info_callback|. */
  2459. OPENSSL_EXPORT void SSL_set_info_callback(
  2460. SSL *ssl, void (*cb)(const SSL *ssl, int type, int value));
  2461. /* SSL_get_info_callback returns the callback set by |SSL_set_info_callback|. */
  2462. OPENSSL_EXPORT void (*SSL_get_info_callback(const SSL *ssl))(const SSL *ssl,
  2463. int type,
  2464. int value);
  2465. /* SSL_state_string_long returns the current state of the handshake state
  2466. * machine as a string. This may be useful for debugging and logging. */
  2467. OPENSSL_EXPORT const char *SSL_state_string_long(const SSL *ssl);
  2468. /* SSL_set_SSL_CTX partially changes |ssl|'s |SSL_CTX|. |ssl| will use the
  2469. * certificate and session_id_context from |ctx|, and |SSL_get_SSL_CTX| will
  2470. * report |ctx|. However most settings and the session cache itself will
  2471. * continue to use the initial |SSL_CTX|. It is often used as part of SNI.
  2472. *
  2473. * TODO(davidben): Make a better story here and get rid of this API. Also
  2474. * determine if there's anything else affected by |SSL_set_SSL_CTX| that
  2475. * matters. Not as many values are affected as one might initially think. The
  2476. * session cache explicitly selects the initial |SSL_CTX|. Most settings are
  2477. * copied at |SSL_new| so |ctx|'s versions don't apply. This, notably, has some
  2478. * consequences for any plans to make |SSL| copy-on-write most of its
  2479. * configuration. */
  2480. OPENSSL_EXPORT SSL_CTX *SSL_set_SSL_CTX(SSL *ssl, SSL_CTX *ctx);
  2481. #define SSL_SENT_SHUTDOWN 1
  2482. #define SSL_RECEIVED_SHUTDOWN 2
  2483. /* SSL_get_shutdown returns a bitmask with a subset of |SSL_SENT_SHUTDOWN| and
  2484. * |SSL_RECEIVED_SHUTDOWN| to query whether close_notify was sent or received,
  2485. * respectively. */
  2486. OPENSSL_EXPORT int SSL_get_shutdown(const SSL *ssl);
  2487. /* SSL_get_server_key_exchange_hash, on a client, returns the hash the server
  2488. * used to sign the ServerKeyExchange in TLS 1.2. If not applicable, it returns
  2489. * |TLSEXT_hash_none|. */
  2490. OPENSSL_EXPORT uint8_t SSL_get_server_key_exchange_hash(const SSL *ssl);
  2491. /* Deprecated functions. */
  2492. /* SSL_library_init calls |CRYPTO_library_init| and returns one. */
  2493. OPENSSL_EXPORT int SSL_library_init(void);
  2494. /* SSL_set_reject_peer_renegotiations calls |SSL_set_renegotiate_mode| with
  2495. * |ssl_never_renegotiate| if |reject| is one and |ssl_renegotiate_freely| if
  2496. * zero. */
  2497. OPENSSL_EXPORT void SSL_set_reject_peer_renegotiations(SSL *ssl, int reject);
  2498. /* SSL_CIPHER_description writes a description of |cipher| into |buf| and
  2499. * returns |buf|. If |buf| is NULL, it returns a newly allocated string, to be
  2500. * freed with |OPENSSL_free|, or NULL on error.
  2501. *
  2502. * The description includes a trailing newline and has the form:
  2503. * AES128-SHA Kx=RSA Au=RSA Enc=AES(128) Mac=SHA1
  2504. *
  2505. * Consider |SSL_CIPHER_get_name| or |SSL_CIPHER_get_rfc_name| instead. */
  2506. OPENSSL_EXPORT const char *SSL_CIPHER_description(const SSL_CIPHER *cipher,
  2507. char *buf, int len);
  2508. /* SSL_CIPHER_get_version returns the string "TLSv1/SSLv3". */
  2509. OPENSSL_EXPORT const char *SSL_CIPHER_get_version(const SSL_CIPHER *cipher);
  2510. typedef void COMP_METHOD;
  2511. /* SSL_COMP_get_compression_methods returns NULL. */
  2512. OPENSSL_EXPORT COMP_METHOD *SSL_COMP_get_compression_methods(void);
  2513. /* SSL_COMP_add_compression_method returns one. */
  2514. OPENSSL_EXPORT int SSL_COMP_add_compression_method(int id, COMP_METHOD *cm);
  2515. /* SSL_COMP_get_name returns NULL. */
  2516. OPENSSL_EXPORT const char *SSL_COMP_get_name(const COMP_METHOD *comp);
  2517. /* SSLv23_method calls |TLS_method|. */
  2518. OPENSSL_EXPORT const SSL_METHOD *SSLv23_method(void);
  2519. /* These version-specific methods behave exactly like |TLS_method| and
  2520. * |DTLS_method| except they also call |SSL_CTX_set_min_version| and
  2521. * |SSL_CTX_set_max_version| to lock connections to that protocol version. */
  2522. OPENSSL_EXPORT const SSL_METHOD *SSLv3_method(void);
  2523. OPENSSL_EXPORT const SSL_METHOD *TLSv1_method(void);
  2524. OPENSSL_EXPORT const SSL_METHOD *TLSv1_1_method(void);
  2525. OPENSSL_EXPORT const SSL_METHOD *TLSv1_2_method(void);
  2526. OPENSSL_EXPORT const SSL_METHOD *DTLSv1_method(void);
  2527. OPENSSL_EXPORT const SSL_METHOD *DTLSv1_2_method(void);
  2528. /* These client- and server-specific methods call their corresponding generic
  2529. * methods. */
  2530. OPENSSL_EXPORT const SSL_METHOD *SSLv23_server_method(void);
  2531. OPENSSL_EXPORT const SSL_METHOD *SSLv23_client_method(void);
  2532. OPENSSL_EXPORT const SSL_METHOD *SSLv3_server_method(void);
  2533. OPENSSL_EXPORT const SSL_METHOD *SSLv3_client_method(void);
  2534. OPENSSL_EXPORT const SSL_METHOD *TLSv1_server_method(void);
  2535. OPENSSL_EXPORT const SSL_METHOD *TLSv1_client_method(void);
  2536. OPENSSL_EXPORT const SSL_METHOD *TLSv1_1_server_method(void);
  2537. OPENSSL_EXPORT const SSL_METHOD *TLSv1_1_client_method(void);
  2538. OPENSSL_EXPORT const SSL_METHOD *TLSv1_2_server_method(void);
  2539. OPENSSL_EXPORT const SSL_METHOD *TLSv1_2_client_method(void);
  2540. OPENSSL_EXPORT const SSL_METHOD *DTLS_server_method(void);
  2541. OPENSSL_EXPORT const SSL_METHOD *DTLS_client_method(void);
  2542. OPENSSL_EXPORT const SSL_METHOD *DTLSv1_server_method(void);
  2543. OPENSSL_EXPORT const SSL_METHOD *DTLSv1_client_method(void);
  2544. OPENSSL_EXPORT const SSL_METHOD *DTLSv1_2_server_method(void);
  2545. OPENSSL_EXPORT const SSL_METHOD *DTLSv1_2_client_method(void);
  2546. /* SSL_clear resets |ssl| to allow another connection and returns one on success
  2547. * or zero on failure. It returns most configuration state but releases memory
  2548. * associated with the current connection.
  2549. *
  2550. * Free |ssl| and create a new one instead. */
  2551. OPENSSL_EXPORT int SSL_clear(SSL *ssl);
  2552. /* SSL_CTX_set_tmp_rsa_callback does nothing. */
  2553. OPENSSL_EXPORT void SSL_CTX_set_tmp_rsa_callback(
  2554. SSL_CTX *ctx, RSA *(*cb)(SSL *ssl, int is_export, int keylength));
  2555. /* SSL_set_tmp_rsa_callback does nothing. */
  2556. OPENSSL_EXPORT void SSL_set_tmp_rsa_callback(SSL *ssl,
  2557. RSA *(*cb)(SSL *ssl, int is_export,
  2558. int keylength));
  2559. /* SSL_CTX_sess_connect returns zero. */
  2560. OPENSSL_EXPORT int SSL_CTX_sess_connect(const SSL_CTX *ctx);
  2561. /* SSL_CTX_sess_connect_good returns zero. */
  2562. OPENSSL_EXPORT int SSL_CTX_sess_connect_good(const SSL_CTX *ctx);
  2563. /* SSL_CTX_sess_connect_renegotiate returns zero. */
  2564. OPENSSL_EXPORT int SSL_CTX_sess_connect_renegotiate(const SSL_CTX *ctx);
  2565. /* SSL_CTX_sess_accept returns zero. */
  2566. OPENSSL_EXPORT int SSL_CTX_sess_accept(const SSL_CTX *ctx);
  2567. /* SSL_CTX_sess_accept_renegotiate returns zero. */
  2568. OPENSSL_EXPORT int SSL_CTX_sess_accept_renegotiate(const SSL_CTX *ctx);
  2569. /* SSL_CTX_sess_accept_good returns zero. */
  2570. OPENSSL_EXPORT int SSL_CTX_sess_accept_good(const SSL_CTX *ctx);
  2571. /* SSL_CTX_sess_hits returns zero. */
  2572. OPENSSL_EXPORT int SSL_CTX_sess_hits(const SSL_CTX *ctx);
  2573. /* SSL_CTX_sess_cb_hits returns zero. */
  2574. OPENSSL_EXPORT int SSL_CTX_sess_cb_hits(const SSL_CTX *ctx);
  2575. /* SSL_CTX_sess_misses returns zero. */
  2576. OPENSSL_EXPORT int SSL_CTX_sess_misses(const SSL_CTX *ctx);
  2577. /* SSL_CTX_sess_timeouts returns zero. */
  2578. OPENSSL_EXPORT int SSL_CTX_sess_timeouts(const SSL_CTX *ctx);
  2579. /* SSL_CTX_sess_cache_full returns zero. */
  2580. OPENSSL_EXPORT int SSL_CTX_sess_cache_full(const SSL_CTX *ctx);
  2581. /* SSL_cutthrough_complete calls |SSL_in_false_start|. */
  2582. OPENSSL_EXPORT int SSL_cutthrough_complete(const SSL *s);
  2583. /* SSL_num_renegotiations calls |SSL_total_renegotiations|. */
  2584. OPENSSL_EXPORT int SSL_num_renegotiations(const SSL *ssl);
  2585. /* SSL_CTX_need_tmp_RSA returns zero. */
  2586. OPENSSL_EXPORT int SSL_CTX_need_tmp_RSA(const SSL_CTX *ctx);
  2587. /* SSL_need_tmp_RSA returns zero. */
  2588. OPENSSL_EXPORT int SSL_need_tmp_RSA(const SSL *ssl);
  2589. /* SSL_CTX_set_tmp_rsa returns one. */
  2590. OPENSSL_EXPORT int SSL_CTX_set_tmp_rsa(SSL_CTX *ctx, const RSA *rsa);
  2591. /* SSL_set_tmp_rsa returns one. */
  2592. OPENSSL_EXPORT int SSL_set_tmp_rsa(SSL *ssl, const RSA *rsa);
  2593. /* SSL_CTX_get_read_ahead returns zero. */
  2594. OPENSSL_EXPORT int SSL_CTX_get_read_ahead(const SSL_CTX *ctx);
  2595. /* SSL_CTX_set_read_ahead does nothing. */
  2596. OPENSSL_EXPORT void SSL_CTX_set_read_ahead(SSL_CTX *ctx, int yes);
  2597. /* SSL_get_read_ahead returns zero. */
  2598. OPENSSL_EXPORT int SSL_get_read_ahead(const SSL *s);
  2599. /* SSL_set_read_ahead does nothing. */
  2600. OPENSSL_EXPORT void SSL_set_read_ahead(SSL *s, int yes);
  2601. /* SSL_renegotiate put an error on the error queue and returns zero. */
  2602. OPENSSL_EXPORT int SSL_renegotiate(SSL *ssl);
  2603. /* SSL_set_state does nothing. */
  2604. OPENSSL_EXPORT void SSL_set_state(SSL *ssl, int state);
  2605. /* SSL_MODE_HANDSHAKE_CUTTHROUGH is the same as SSL_MODE_ENABLE_FALSE_START. */
  2606. #define SSL_MODE_HANDSHAKE_CUTTHROUGH SSL_MODE_ENABLE_FALSE_START
  2607. /* i2d_SSL_SESSION serializes |in| to the bytes pointed to by |*pp|. On success,
  2608. * it returns the number of bytes written and advances |*pp| by that many bytes.
  2609. * On failure, it returns -1. If |pp| is NULL, no bytes are written and only the
  2610. * length is returned.
  2611. *
  2612. * Use |SSL_SESSION_to_bytes| instead. */
  2613. OPENSSL_EXPORT int i2d_SSL_SESSION(SSL_SESSION *in, uint8_t **pp);
  2614. /* d2i_SSL_SESSION parses a serialized session from the |length| bytes pointed
  2615. * to by |*pp|. It returns the new |SSL_SESSION| and advances |*pp| by the
  2616. * number of bytes consumed on success and NULL on failure. The caller takes
  2617. * ownership of the new session and must call |SSL_SESSION_free| when done.
  2618. *
  2619. * If |a| is non-NULL, |*a| is released and set the new |SSL_SESSION|.
  2620. *
  2621. * Use |SSL_SESSION_from_bytes| instead. */
  2622. OPENSSL_EXPORT SSL_SESSION *d2i_SSL_SESSION(SSL_SESSION **a, const uint8_t **pp,
  2623. long length);
  2624. /* i2d_SSL_SESSION_bio serializes |session| and writes the result to |bio|. It
  2625. * returns the number of bytes written on success and <= 0 on error. */
  2626. OPENSSL_EXPORT int i2d_SSL_SESSION_bio(BIO *bio, const SSL_SESSION *session);
  2627. /* d2i_SSL_SESSION_bio reads a serialized |SSL_SESSION| from |bio| and returns a
  2628. * newly-allocated |SSL_SESSION| or NULL on error. If |out| is not NULL, it also
  2629. * frees |*out| and sets |*out| to the new |SSL_SESSION|. */
  2630. OPENSSL_EXPORT SSL_SESSION *d2i_SSL_SESSION_bio(BIO *bio, SSL_SESSION **out);
  2631. /* ERR_load_SSL_strings does nothing. */
  2632. OPENSSL_EXPORT void ERR_load_SSL_strings(void);
  2633. /* SSL_load_error_strings does nothing. */
  2634. OPENSSL_EXPORT void SSL_load_error_strings(void);
  2635. /* SSL_CTX_set_tlsext_use_srtp calls |SSL_CTX_set_srtp_profiles|. It returns
  2636. * zero on success and one on failure.
  2637. *
  2638. * WARNING: this function is dangerous because it breaks the usual return value
  2639. * convention. Use |SSL_CTX_set_srtp_profiles| instead. */
  2640. OPENSSL_EXPORT int SSL_CTX_set_tlsext_use_srtp(SSL_CTX *ctx,
  2641. const char *profiles);
  2642. /* SSL_set_tlsext_use_srtp calls |SSL_set_srtp_profiles|. It returns zero on
  2643. * success and one on failure.
  2644. *
  2645. * WARNING: this function is dangerous because it breaks the usual return value
  2646. * convention. Use |SSL_set_srtp_profiles| instead. */
  2647. OPENSSL_EXPORT int SSL_set_tlsext_use_srtp(SSL *ssl, const char *profiles);
  2648. /* SSL_get_current_compression returns NULL. */
  2649. OPENSSL_EXPORT const COMP_METHOD *SSL_get_current_compression(SSL *s);
  2650. /* SSL_get_current_expansion returns NULL. */
  2651. OPENSSL_EXPORT const COMP_METHOD *SSL_get_current_expansion(SSL *s);
  2652. #define SSL_set_app_data(s, arg) (SSL_set_ex_data(s, 0, (char *)arg))
  2653. #define SSL_get_app_data(s) (SSL_get_ex_data(s, 0))
  2654. #define SSL_SESSION_set_app_data(s, a) \
  2655. (SSL_SESSION_set_ex_data(s, 0, (char *)a))
  2656. #define SSL_SESSION_get_app_data(s) (SSL_SESSION_get_ex_data(s, 0))
  2657. #define SSL_CTX_get_app_data(ctx) (SSL_CTX_get_ex_data(ctx, 0))
  2658. #define SSL_CTX_set_app_data(ctx, arg) \
  2659. (SSL_CTX_set_ex_data(ctx, 0, (char *)arg))
  2660. #define OpenSSL_add_ssl_algorithms() SSL_library_init()
  2661. #define SSLeay_add_ssl_algorithms() SSL_library_init()
  2662. #define SSL_get_cipher(ssl) SSL_CIPHER_get_name(SSL_get_current_cipher(ssl))
  2663. #define SSL_get_cipher_bits(ssl, out_alg_bits) \
  2664. SSL_CIPHER_get_bits(SSL_get_current_cipher(ssl), out_alg_bits)
  2665. #define SSL_get_cipher_version(ssl) \
  2666. SSL_CIPHER_get_version(SSL_get_current_cipher(ssl))
  2667. #define SSL_get_cipher_name(ssl) \
  2668. SSL_CIPHER_get_name(SSL_get_current_cipher(ssl))
  2669. #define SSL_get_time(session) SSL_SESSION_get_time(session)
  2670. #define SSL_set_time(session, time) SSL_SESSION_set_time((session), (time))
  2671. #define SSL_get_timeout(session) SSL_SESSION_get_timeout(session)
  2672. #define SSL_set_timeout(session, timeout) \
  2673. SSL_SESSION_set_timeout((session), (timeout))
  2674. typedef struct ssl_comp_st SSL_COMP;
  2675. struct ssl_comp_st {
  2676. int id;
  2677. const char *name;
  2678. char *method;
  2679. };
  2680. DECLARE_STACK_OF(SSL_COMP)
  2681. /* The following flags toggle individual protocol versions. This is deprecated.
  2682. * Use |SSL_CTX_set_min_version| and |SSL_CTX_set_max_version| instead. */
  2683. #define SSL_OP_NO_SSLv3 0x02000000L
  2684. #define SSL_OP_NO_TLSv1 0x04000000L
  2685. #define SSL_OP_NO_TLSv1_2 0x08000000L
  2686. #define SSL_OP_NO_TLSv1_1 0x10000000L
  2687. #define SSL_OP_NO_DTLSv1 SSL_OP_NO_TLSv1
  2688. #define SSL_OP_NO_DTLSv1_2 SSL_OP_NO_TLSv1_2
  2689. /* The following flags do nothing and are included only to make it easier to
  2690. * compile code with BoringSSL. */
  2691. #define SSL_MODE_AUTO_RETRY 0
  2692. #define SSL_MODE_RELEASE_BUFFERS 0
  2693. #define SSL_MODE_SEND_CLIENTHELLO_TIME 0
  2694. #define SSL_MODE_SEND_SERVERHELLO_TIME 0
  2695. #define SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION 0
  2696. #define SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS 0
  2697. #define SSL_OP_EPHEMERAL_RSA 0
  2698. #define SSL_OP_MICROSOFT_SESS_ID_BUG 0
  2699. #define SSL_OP_MSIE_SSLV2_RSA_PADDING 0
  2700. #define SSL_OP_NETSCAPE_CA_DN_BUG 0
  2701. #define SSL_OP_NETSCAPE_CHALLENGE_BUG 0
  2702. #define SSL_OP_NETSCAPE_DEMO_CIPHER_CHANGE_BUG 0
  2703. #define SSL_OP_NETSCAPE_REUSE_CIPHER_CHANGE_BUG 0
  2704. #define SSL_OP_NO_COMPRESSION 0
  2705. #define SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION 0
  2706. #define SSL_OP_NO_SSLv2 0
  2707. #define SSL_OP_PKCS1_CHECK_1 0
  2708. #define SSL_OP_PKCS1_CHECK_2 0
  2709. #define SSL_OP_SINGLE_DH_USE 0
  2710. #define SSL_OP_SINGLE_ECDH_USE 0
  2711. #define SSL_OP_SSLEAY_080_CLIENT_DH_BUG 0
  2712. #define SSL_OP_SSLREF2_REUSE_CERT_TYPE_BUG 0
  2713. #define SSL_OP_TLS_BLOCK_PADDING_BUG 0
  2714. #define SSL_OP_TLS_ROLLBACK_BUG 0
  2715. #define SSL_VERIFY_CLIENT_ONCE 0
  2716. /* SSL_cache_hit calls |SSL_session_resumed|. */
  2717. OPENSSL_EXPORT int SSL_cache_hit(SSL *ssl);
  2718. /* SSL_get_default_timeout returns |SSL_DEFAULT_SESSION_TIMEOUT|. */
  2719. OPENSSL_EXPORT long SSL_get_default_timeout(const SSL *ssl);
  2720. /* SSL_get_version returns a string describing the TLS version used by |ssl|.
  2721. * For example, "TLSv1.2" or "SSLv3". */
  2722. OPENSSL_EXPORT const char *SSL_get_version(const SSL *ssl);
  2723. /* SSL_get_cipher_list returns the name of the |n|th cipher in the output of
  2724. * |SSL_get_ciphers| or NULL if out of range. Use |SSL_get_ciphers| insteads. */
  2725. OPENSSL_EXPORT const char *SSL_get_cipher_list(const SSL *ssl, int n);
  2726. /* SSL_CTX_set_client_cert_cb sets a callback which is called on the client if
  2727. * the server requests a client certificate and none is configured. On success,
  2728. * the callback should return one and set |*out_x509| to |*out_pkey| to a leaf
  2729. * certificate and private key, respectively, passing ownership. It should
  2730. * return zero to send no certificate and -1 to fail or pause the handshake. If
  2731. * the handshake is paused, |SSL_get_error| will return
  2732. * |SSL_ERROR_WANT_X509_LOOKUP|.
  2733. *
  2734. * The callback may call |SSL_get0_certificate_types| and
  2735. * |SSL_get_client_CA_list| for information on the server's certificate request.
  2736. *
  2737. * Use |SSL_CTX_set_cert_cb| instead. Configuring intermediate certificates with
  2738. * this function is confusing. */
  2739. OPENSSL_EXPORT void SSL_CTX_set_client_cert_cb(
  2740. SSL_CTX *ctx,
  2741. int (*client_cert_cb)(SSL *ssl, X509 **out_x509, EVP_PKEY **out_pkey));
  2742. /* SSL_CTX_get_client_cert_cb returns the callback set by
  2743. * |SSL_CTX_set_client_cert_cb|. */
  2744. OPENSSL_EXPORT int (*SSL_CTX_get_client_cert_cb(SSL_CTX *ctx))(
  2745. SSL *ssl, X509 **out_x509, EVP_PKEY **out_pkey);
  2746. #define SSL_NOTHING 1
  2747. #define SSL_WRITING 2
  2748. #define SSL_READING 3
  2749. #define SSL_X509_LOOKUP 4
  2750. #define SSL_CHANNEL_ID_LOOKUP 5
  2751. #define SSL_PENDING_SESSION 7
  2752. #define SSL_CERTIFICATE_SELECTION_PENDING 8
  2753. #define SSL_PRIVATE_KEY_OPERATION 9
  2754. /* SSL_want returns one of the above values to determine what the most recent
  2755. * operation on |ssl| was blocked on. Use |SSL_get_error| instead. */
  2756. OPENSSL_EXPORT int SSL_want(const SSL *ssl);
  2757. #define SSL_want_nothing(ssl) (SSL_want(ssl) == SSL_NOTHING)
  2758. #define SSL_want_read(ssl) (SSL_want(ssl) == SSL_READING)
  2759. #define SSL_want_write(ssl) (SSL_want(ssl) == SSL_WRITING)
  2760. #define SSL_want_x509_lookup(ssl) (SSL_want(ssl) == SSL_X509_LOOKUP)
  2761. #define SSL_want_channel_id_lookup(ssl) (SSL_want(ssl) == SSL_CHANNEL_ID_LOOKUP)
  2762. #define SSL_want_session(ssl) (SSL_want(ssl) == SSL_PENDING_SESSION)
  2763. #define SSL_want_certificate(ssl) \
  2764. (SSL_want(ssl) == SSL_CERTIFICATE_SELECTION_PENDING)
  2765. #define SSL_want_private_key_operation(ssl) \
  2766. (SSL_want(ssl) == SSL_PRIVATE_KEY_OPERATION)
  2767. /* SSL_get_finished writes up to |count| bytes of the Finished message sent by
  2768. * |ssl| to |buf|. It returns the total untruncated length or zero if none has
  2769. * been sent yet.
  2770. *
  2771. * Use |SSL_get_tls_unique| instead. */
  2772. OPENSSL_EXPORT size_t SSL_get_finished(const SSL *ssl, void *buf, size_t count);
  2773. /* SSL_get_peer_finished writes up to |count| bytes of the Finished message
  2774. * received from |ssl|'s peer to |buf|. It returns the total untruncated length
  2775. * or zero if none has been received yet.
  2776. *
  2777. * Use |SSL_get_tls_unique| instead. */
  2778. OPENSSL_EXPORT size_t SSL_get_peer_finished(const SSL *ssl, void *buf,
  2779. size_t count);
  2780. /* SSL_alert_type_string returns "!". Use |SSL_alert_type_string_long|
  2781. * instead. */
  2782. OPENSSL_EXPORT const char *SSL_alert_type_string(int value);
  2783. /* SSL_alert_desc_string returns "!!". Use |SSL_alert_desc_string_long|
  2784. * instead. */
  2785. OPENSSL_EXPORT const char *SSL_alert_desc_string(int value);
  2786. /* SSL_TXT_* expand to strings. */
  2787. #define SSL_TXT_MEDIUM "MEDIUM"
  2788. #define SSL_TXT_HIGH "HIGH"
  2789. #define SSL_TXT_FIPS "FIPS"
  2790. #define SSL_TXT_kRSA "kRSA"
  2791. #define SSL_TXT_kDHE "kDHE"
  2792. #define SSL_TXT_kEDH "kEDH"
  2793. #define SSL_TXT_kECDHE "kECDHE"
  2794. #define SSL_TXT_kEECDH "kEECDH"
  2795. #define SSL_TXT_kPSK "kPSK"
  2796. #define SSL_TXT_aRSA "aRSA"
  2797. #define SSL_TXT_aECDSA "aECDSA"
  2798. #define SSL_TXT_aPSK "aPSK"
  2799. #define SSL_TXT_DH "DH"
  2800. #define SSL_TXT_DHE "DHE"
  2801. #define SSL_TXT_EDH "EDH"
  2802. #define SSL_TXT_RSA "RSA"
  2803. #define SSL_TXT_ECDH "ECDH"
  2804. #define SSL_TXT_ECDHE "ECDHE"
  2805. #define SSL_TXT_EECDH "EECDH"
  2806. #define SSL_TXT_ECDSA "ECDSA"
  2807. #define SSL_TXT_PSK "PSK"
  2808. #define SSL_TXT_3DES "3DES"
  2809. #define SSL_TXT_RC4 "RC4"
  2810. #define SSL_TXT_AES128 "AES128"
  2811. #define SSL_TXT_AES256 "AES256"
  2812. #define SSL_TXT_AES "AES"
  2813. #define SSL_TXT_AES_GCM "AESGCM"
  2814. #define SSL_TXT_CHACHA20 "CHACHA20"
  2815. #define SSL_TXT_MD5 "MD5"
  2816. #define SSL_TXT_SHA1 "SHA1"
  2817. #define SSL_TXT_SHA "SHA"
  2818. #define SSL_TXT_SHA256 "SHA256"
  2819. #define SSL_TXT_SHA384 "SHA384"
  2820. #define SSL_TXT_SSLV3 "SSLv3"
  2821. #define SSL_TXT_TLSV1 "TLSv1"
  2822. #define SSL_TXT_TLSV1_1 "TLSv1.1"
  2823. #define SSL_TXT_TLSV1_2 "TLSv1.2"
  2824. #define SSL_TXT_ALL "ALL"
  2825. #define SSL_TXT_CMPDEF "COMPLEMENTOFDEFAULT"
  2826. typedef struct ssl_conf_ctx_st SSL_CONF_CTX;
  2827. /* SSL_state returns the current state of the handshake state machine. */
  2828. OPENSSL_EXPORT int SSL_state(const SSL *ssl);
  2829. #define SSL_get_state(ssl) SSL_state(ssl)
  2830. /* SSL_state_string returns the current state of the handshake state machine as
  2831. * a six-letter string. Use |SSL_state_string_long| for a more intelligible
  2832. * string. */
  2833. OPENSSL_EXPORT const char *SSL_state_string(const SSL *ssl);
  2834. /* SSL_set_shutdown causes |ssl| to behave as if the shutdown bitmask (see
  2835. * |SSL_get_shutdown|) were |mode|. This may be used to skip sending or
  2836. * receiving close_notify in |SSL_shutdown| by causing the implementation to
  2837. * believe the events already happened.
  2838. *
  2839. * It is an error to use |SSL_set_shutdown| to unset a bit that has already been
  2840. * set. Doing so will trigger an |assert| in debug builds and otherwise be
  2841. * ignored.
  2842. *
  2843. * Use |SSL_CTX_set_quiet_shutdown| instead. */
  2844. OPENSSL_EXPORT void SSL_set_shutdown(SSL *ssl, int mode);
  2845. /* Private structures.
  2846. *
  2847. * This structures are exposed for historical reasons, but access to them is
  2848. * deprecated. */
  2849. typedef struct ssl_protocol_method_st SSL_PROTOCOL_METHOD;
  2850. typedef struct ssl3_enc_method SSL3_ENC_METHOD;
  2851. typedef struct ssl_aead_ctx_st SSL_AEAD_CTX;
  2852. struct ssl_cipher_st {
  2853. /* name is the OpenSSL name for the cipher. */
  2854. const char *name;
  2855. /* id is the cipher suite value bitwise OR-d with 0x03000000. */
  2856. uint32_t id;
  2857. /* algorithm_* are internal fields. See ssl/internal.h for their values. */
  2858. uint32_t algorithm_mkey;
  2859. uint32_t algorithm_auth;
  2860. uint32_t algorithm_enc;
  2861. uint32_t algorithm_mac;
  2862. uint32_t algorithm_prf;
  2863. };
  2864. #define SSL_MAX_SSL_SESSION_ID_LENGTH 32
  2865. #define SSL_MAX_SID_CTX_LENGTH 32
  2866. #define SSL_MAX_MASTER_KEY_LENGTH 48
  2867. struct ssl_session_st {
  2868. CRYPTO_refcount_t references;
  2869. int ssl_version; /* what ssl version session info is being kept in here? */
  2870. /* key_exchange_info contains an indication of the size of the asymmetric
  2871. * primitive used in the handshake that created this session. In the event
  2872. * that two asymmetric operations are used, this value applies to the one
  2873. * that controls the confidentiality of the connection. Its interpretation
  2874. * depends on the primitive that was used; as specified by the cipher suite:
  2875. * DHE: the size, in bits, of the multiplicative group.
  2876. * RSA: the size, in bits, of the modulus.
  2877. * ECDHE: the TLS id for the curve.
  2878. *
  2879. * A zero indicates that the value is unknown. */
  2880. uint32_t key_exchange_info;
  2881. int master_key_length;
  2882. uint8_t master_key[SSL_MAX_MASTER_KEY_LENGTH];
  2883. /* session_id - valid? */
  2884. unsigned int session_id_length;
  2885. uint8_t session_id[SSL_MAX_SSL_SESSION_ID_LENGTH];
  2886. /* this is used to determine whether the session is being reused in
  2887. * the appropriate context. It is up to the application to set this,
  2888. * via SSL_new */
  2889. unsigned int sid_ctx_length;
  2890. uint8_t sid_ctx[SSL_MAX_SID_CTX_LENGTH];
  2891. char *psk_identity;
  2892. /* peer is the peer's certificate. */
  2893. X509 *peer;
  2894. /* cert_chain is the certificate chain sent by the peer. NOTE: for historical
  2895. * reasons, when a client (so the peer is a server), the chain includes
  2896. * |peer|, but when a server it does not. */
  2897. STACK_OF(X509) *cert_chain;
  2898. /* when app_verify_callback accepts a session where the peer's certificate is
  2899. * not ok, we must remember the error for session reuse: */
  2900. long verify_result; /* only for servers */
  2901. long timeout;
  2902. long time;
  2903. const SSL_CIPHER *cipher;
  2904. CRYPTO_EX_DATA ex_data; /* application specific data */
  2905. /* These are used to make removal of session-ids more efficient and to
  2906. * implement a maximum cache size. */
  2907. SSL_SESSION *prev, *next;
  2908. char *tlsext_hostname;
  2909. /* RFC4507 info */
  2910. uint8_t *tlsext_tick; /* Session ticket */
  2911. size_t tlsext_ticklen; /* Session ticket length */
  2912. size_t tlsext_signed_cert_timestamp_list_length;
  2913. uint8_t *tlsext_signed_cert_timestamp_list; /* Server's list. */
  2914. /* The OCSP response that came with the session. */
  2915. size_t ocsp_response_length;
  2916. uint8_t *ocsp_response;
  2917. /* peer_sha256 contains the SHA-256 hash of the peer's certificate if
  2918. * |peer_sha256_valid| is true. */
  2919. uint8_t peer_sha256[SHA256_DIGEST_LENGTH];
  2920. /* original_handshake_hash contains the handshake hash (either SHA-1+MD5 or
  2921. * SHA-2, depending on TLS version) for the original, full handshake that
  2922. * created a session. This is used by Channel IDs during resumption. */
  2923. uint8_t original_handshake_hash[EVP_MAX_MD_SIZE];
  2924. unsigned original_handshake_hash_len;
  2925. uint32_t tlsext_tick_lifetime_hint; /* Session lifetime hint in seconds */
  2926. /* extended_master_secret is true if the master secret in this session was
  2927. * generated using EMS and thus isn't vulnerable to the Triple Handshake
  2928. * attack. */
  2929. unsigned extended_master_secret:1;
  2930. /* peer_sha256_valid is non-zero if |peer_sha256| is valid. */
  2931. unsigned peer_sha256_valid:1; /* Non-zero if peer_sha256 is valid */
  2932. /* not_resumable is used to indicate that session resumption is not allowed.
  2933. * Applications can also set this bit for a new session via
  2934. * not_resumable_session_cb to disable session caching and tickets. */
  2935. unsigned not_resumable:1;
  2936. };
  2937. /* ssl_cipher_preference_list_st contains a list of SSL_CIPHERs with
  2938. * equal-preference groups. For TLS clients, the groups are moot because the
  2939. * server picks the cipher and groups cannot be expressed on the wire. However,
  2940. * for servers, the equal-preference groups allow the client's preferences to
  2941. * be partially respected. (This only has an effect with
  2942. * SSL_OP_CIPHER_SERVER_PREFERENCE).
  2943. *
  2944. * The equal-preference groups are expressed by grouping SSL_CIPHERs together.
  2945. * All elements of a group have the same priority: no ordering is expressed
  2946. * within a group.
  2947. *
  2948. * The values in |ciphers| are in one-to-one correspondence with
  2949. * |in_group_flags|. (That is, sk_SSL_CIPHER_num(ciphers) is the number of
  2950. * bytes in |in_group_flags|.) The bytes in |in_group_flags| are either 1, to
  2951. * indicate that the corresponding SSL_CIPHER is not the last element of a
  2952. * group, or 0 to indicate that it is.
  2953. *
  2954. * For example, if |in_group_flags| contains all zeros then that indicates a
  2955. * traditional, fully-ordered preference. Every SSL_CIPHER is the last element
  2956. * of the group (i.e. they are all in a one-element group).
  2957. *
  2958. * For a more complex example, consider:
  2959. * ciphers: A B C D E F
  2960. * in_group_flags: 1 1 0 0 1 0
  2961. *
  2962. * That would express the following, order:
  2963. *
  2964. * A E
  2965. * B -> D -> F
  2966. * C
  2967. */
  2968. struct ssl_cipher_preference_list_st {
  2969. STACK_OF(SSL_CIPHER) *ciphers;
  2970. uint8_t *in_group_flags;
  2971. };
  2972. struct ssl_ctx_st {
  2973. const SSL_PROTOCOL_METHOD *method;
  2974. /* lock is used to protect various operations on this object. */
  2975. CRYPTO_MUTEX lock;
  2976. /* max_version is the maximum acceptable protocol version. If zero, the
  2977. * maximum supported version, currently (D)TLS 1.2, is used. */
  2978. uint16_t max_version;
  2979. /* min_version is the minimum acceptable protocl version. If zero, the
  2980. * minimum supported version, currently SSL 3.0 and DTLS 1.0, is used */
  2981. uint16_t min_version;
  2982. struct ssl_cipher_preference_list_st *cipher_list;
  2983. /* same as above but sorted for lookup */
  2984. STACK_OF(SSL_CIPHER) *cipher_list_by_id;
  2985. /* cipher_list_tls10 is the list of ciphers when TLS 1.0 or greater is in
  2986. * use. This only applies to server connections as, for clients, the version
  2987. * number is known at connect time and so the cipher list can be set then. If
  2988. * |cipher_list_tls11| is non-NULL then this applies only to TLS 1.0
  2989. * connections.
  2990. *
  2991. * TODO(agl): this exists to assist in the death of SSLv3. It can hopefully
  2992. * be removed after that. */
  2993. struct ssl_cipher_preference_list_st *cipher_list_tls10;
  2994. /* cipher_list_tls11 is the list of ciphers when TLS 1.1 or greater is in
  2995. * use. This only applies to server connections as, for clients, the version
  2996. * number is known at connect time and so the cipher list can be set then. */
  2997. struct ssl_cipher_preference_list_st *cipher_list_tls11;
  2998. X509_STORE *cert_store;
  2999. LHASH_OF(SSL_SESSION) *sessions;
  3000. /* Most session-ids that will be cached, default is
  3001. * SSL_SESSION_CACHE_MAX_SIZE_DEFAULT. 0 is unlimited. */
  3002. unsigned long session_cache_size;
  3003. SSL_SESSION *session_cache_head;
  3004. SSL_SESSION *session_cache_tail;
  3005. /* handshakes_since_cache_flush is the number of successful handshakes since
  3006. * the last cache flush. */
  3007. int handshakes_since_cache_flush;
  3008. /* This can have one of 2 values, ored together,
  3009. * SSL_SESS_CACHE_CLIENT,
  3010. * SSL_SESS_CACHE_SERVER,
  3011. * Default is SSL_SESSION_CACHE_SERVER, which means only
  3012. * SSL_accept which cache SSL_SESSIONS. */
  3013. int session_cache_mode;
  3014. /* If timeout is not 0, it is the default timeout value set when SSL_new() is
  3015. * called. This has been put in to make life easier to set things up */
  3016. long session_timeout;
  3017. /* If this callback is not null, it will be called each time a session id is
  3018. * added to the cache. If this function returns 1, it means that the
  3019. * callback will do a SSL_SESSION_free() when it has finished using it.
  3020. * Otherwise, on 0, it means the callback has finished with it. If
  3021. * remove_session_cb is not null, it will be called when a session-id is
  3022. * removed from the cache. After the call, OpenSSL will SSL_SESSION_free()
  3023. * it. */
  3024. int (*new_session_cb)(SSL *ssl, SSL_SESSION *sess);
  3025. void (*remove_session_cb)(SSL_CTX *ctx, SSL_SESSION *sess);
  3026. SSL_SESSION *(*get_session_cb)(SSL *ssl, uint8_t *data, int len,
  3027. int *copy);
  3028. CRYPTO_refcount_t references;
  3029. /* if defined, these override the X509_verify_cert() calls */
  3030. int (*app_verify_callback)(X509_STORE_CTX *store_ctx, void *arg);
  3031. void *app_verify_arg;
  3032. /* Default password callback. */
  3033. pem_password_cb *default_passwd_callback;
  3034. /* Default password callback user data. */
  3035. void *default_passwd_callback_userdata;
  3036. /* get client cert callback */
  3037. int (*client_cert_cb)(SSL *ssl, X509 **out_x509, EVP_PKEY **out_pkey);
  3038. /* get channel id callback */
  3039. void (*channel_id_cb)(SSL *ssl, EVP_PKEY **out_pkey);
  3040. CRYPTO_EX_DATA ex_data;
  3041. /* custom_*_extensions stores any callback sets for custom extensions. Note
  3042. * that these pointers will be NULL if the stack would otherwise be empty. */
  3043. STACK_OF(SSL_CUSTOM_EXTENSION) *client_custom_extensions;
  3044. STACK_OF(SSL_CUSTOM_EXTENSION) *server_custom_extensions;
  3045. /* Default values used when no per-SSL value is defined follow */
  3046. void (*info_callback)(const SSL *ssl, int type, int value);
  3047. /* what we put in client cert requests */
  3048. STACK_OF(X509_NAME) *client_CA;
  3049. /* Default values to use in SSL structures follow (these are copied by
  3050. * SSL_new) */
  3051. uint32_t options;
  3052. uint32_t mode;
  3053. uint32_t max_cert_list;
  3054. struct cert_st /* CERT */ *cert;
  3055. /* callback that allows applications to peek at protocol messages */
  3056. void (*msg_callback)(int write_p, int version, int content_type,
  3057. const void *buf, size_t len, SSL *ssl, void *arg);
  3058. void *msg_callback_arg;
  3059. int verify_mode;
  3060. unsigned int sid_ctx_length;
  3061. uint8_t sid_ctx[SSL_MAX_SID_CTX_LENGTH];
  3062. int (*default_verify_callback)(
  3063. int ok, X509_STORE_CTX *ctx); /* called 'verify_callback' in the SSL */
  3064. X509_VERIFY_PARAM *param;
  3065. /* select_certificate_cb is called before most ClientHello processing and
  3066. * before the decision whether to resume a session is made. It may return one
  3067. * to continue the handshake or zero to cause the handshake loop to return
  3068. * with an error and cause SSL_get_error to return
  3069. * SSL_ERROR_PENDING_CERTIFICATE. Note: when the handshake loop is resumed, it
  3070. * will not call the callback a second time. */
  3071. int (*select_certificate_cb)(const struct ssl_early_callback_ctx *);
  3072. /* dos_protection_cb is called once the resumption decision for a ClientHello
  3073. * has been made. It returns one to continue the handshake or zero to
  3074. * abort. */
  3075. int (*dos_protection_cb) (const struct ssl_early_callback_ctx *);
  3076. /* Maximum amount of data to send in one fragment. actual record size can be
  3077. * more than this due to padding and MAC overheads. */
  3078. uint16_t max_send_fragment;
  3079. /* TLS extensions servername callback */
  3080. int (*tlsext_servername_callback)(SSL *, int *, void *);
  3081. void *tlsext_servername_arg;
  3082. /* RFC 4507 session ticket keys */
  3083. uint8_t tlsext_tick_key_name[SSL_TICKET_KEY_NAME_LEN];
  3084. uint8_t tlsext_tick_hmac_key[16];
  3085. uint8_t tlsext_tick_aes_key[16];
  3086. /* Callback to support customisation of ticket key setting */
  3087. int (*tlsext_ticket_key_cb)(SSL *ssl, uint8_t *name, uint8_t *iv,
  3088. EVP_CIPHER_CTX *ectx, HMAC_CTX *hctx, int enc);
  3089. /* Server-only: psk_identity_hint is the default identity hint to send in
  3090. * PSK-based key exchanges. */
  3091. char *psk_identity_hint;
  3092. unsigned int (*psk_client_callback)(SSL *ssl, const char *hint,
  3093. char *identity,
  3094. unsigned int max_identity_len,
  3095. uint8_t *psk, unsigned int max_psk_len);
  3096. unsigned int (*psk_server_callback)(SSL *ssl, const char *identity,
  3097. uint8_t *psk, unsigned int max_psk_len);
  3098. /* retain_only_sha256_of_client_certs is true if we should compute the SHA256
  3099. * hash of the peer's certifiate and then discard it to save memory and
  3100. * session space. Only effective on the server side. */
  3101. char retain_only_sha256_of_client_certs;
  3102. /* Next protocol negotiation information */
  3103. /* (for experimental NPN extension). */
  3104. /* For a server, this contains a callback function by which the set of
  3105. * advertised protocols can be provided. */
  3106. int (*next_protos_advertised_cb)(SSL *ssl, const uint8_t **out,
  3107. unsigned *out_len, void *arg);
  3108. void *next_protos_advertised_cb_arg;
  3109. /* For a client, this contains a callback function that selects the
  3110. * next protocol from the list provided by the server. */
  3111. int (*next_proto_select_cb)(SSL *ssl, uint8_t **out, uint8_t *out_len,
  3112. const uint8_t *in, unsigned in_len, void *arg);
  3113. void *next_proto_select_cb_arg;
  3114. /* ALPN information
  3115. * (we are in the process of transitioning from NPN to ALPN.) */
  3116. /* For a server, this contains a callback function that allows the
  3117. * server to select the protocol for the connection.
  3118. * out: on successful return, this must point to the raw protocol
  3119. * name (without the length prefix).
  3120. * outlen: on successful return, this contains the length of |*out|.
  3121. * in: points to the client's list of supported protocols in
  3122. * wire-format.
  3123. * inlen: the length of |in|. */
  3124. int (*alpn_select_cb)(SSL *s, const uint8_t **out, uint8_t *out_len,
  3125. const uint8_t *in, unsigned in_len, void *arg);
  3126. void *alpn_select_cb_arg;
  3127. /* For a client, this contains the list of supported protocols in wire
  3128. * format. */
  3129. uint8_t *alpn_client_proto_list;
  3130. unsigned alpn_client_proto_list_len;
  3131. /* SRTP profiles we are willing to do from RFC 5764 */
  3132. STACK_OF(SRTP_PROTECTION_PROFILE) *srtp_profiles;
  3133. /* EC extension values inherited by SSL structure */
  3134. size_t tlsext_ellipticcurvelist_length;
  3135. uint16_t *tlsext_ellipticcurvelist;
  3136. /* The client's Channel ID private key. */
  3137. EVP_PKEY *tlsext_channel_id_private;
  3138. /* Signed certificate timestamp list to be sent to the client, if requested */
  3139. uint8_t *signed_cert_timestamp_list;
  3140. size_t signed_cert_timestamp_list_length;
  3141. /* OCSP response to be sent to the client, if requested. */
  3142. uint8_t *ocsp_response;
  3143. size_t ocsp_response_length;
  3144. /* keylog_callback, if not NULL, is the key logging callback. See
  3145. * |SSL_CTX_set_keylog_callback|. */
  3146. void (*keylog_callback)(const SSL *ssl, const char *line);
  3147. /* current_time_cb, if not NULL, is the function to use to get the current
  3148. * time. It sets |*out_clock| to the current time. */
  3149. void (*current_time_cb)(const SSL *ssl, struct timeval *out_clock);
  3150. /* quiet_shutdown is true if the connection should not send a close_notify on
  3151. * shutdown. */
  3152. unsigned quiet_shutdown:1;
  3153. /* ocsp_stapling_enabled is only used by client connections and indicates
  3154. * whether OCSP stapling will be requested. */
  3155. unsigned ocsp_stapling_enabled:1;
  3156. /* If true, a client will request certificate timestamps. */
  3157. unsigned signed_cert_timestamps_enabled:1;
  3158. /* tlsext_channel_id_enabled is copied from the |SSL_CTX|. For a server,
  3159. * means that we'll accept Channel IDs from clients. For a client, means that
  3160. * we'll advertise support. */
  3161. unsigned tlsext_channel_id_enabled:1;
  3162. };
  3163. struct ssl_st {
  3164. /* version is the protocol version. */
  3165. int version;
  3166. /* max_version is the maximum acceptable protocol version. If zero, the
  3167. * maximum supported version, currently (D)TLS 1.2, is used. */
  3168. uint16_t max_version;
  3169. /* min_version is the minimum acceptable protocl version. If zero, the
  3170. * minimum supported version, currently SSL 3.0 and DTLS 1.0, is used */
  3171. uint16_t min_version;
  3172. /* method is the method table corresponding to the current protocol (DTLS or
  3173. * TLS). */
  3174. const SSL_PROTOCOL_METHOD *method;
  3175. /* enc_method is the method table corresponding to the current protocol
  3176. * version. */
  3177. const SSL3_ENC_METHOD *enc_method;
  3178. /* There are 2 BIO's even though they are normally both the same. This is so
  3179. * data can be read and written to different handlers */
  3180. BIO *rbio; /* used by SSL_read */
  3181. BIO *wbio; /* used by SSL_write */
  3182. /* bbio, if non-NULL, is a buffer placed in front of |wbio| to pack handshake
  3183. * messages within one flight into a single |BIO_write|.
  3184. *
  3185. * TODO(davidben): This does not work right for DTLS. It assumes the MTU is
  3186. * smaller than the buffer size so that the buffer's internal flushing never
  3187. * kicks in. It also doesn't kick in for DTLS retransmission. Replace this
  3188. * with a better mechanism. */
  3189. BIO *bbio;
  3190. int (*handshake_func)(SSL *);
  3191. /* Imagine that here's a boolean member "init" that is switched as soon as
  3192. * SSL_set_{accept/connect}_state is called for the first time, so that
  3193. * "state" and "handshake_func" are properly initialized. But as
  3194. * handshake_func is == 0 until then, we use this test instead of an "init"
  3195. * member. */
  3196. int shutdown; /* we have shut things down, 0x01 sent, 0x02
  3197. * for received */
  3198. int state; /* where we are */
  3199. BUF_MEM *init_buf; /* buffer used during init */
  3200. uint8_t *init_msg; /* pointer to handshake message body, set by
  3201. ssl3_get_message() */
  3202. int init_num; /* amount read/written */
  3203. int init_off; /* amount read/written */
  3204. struct ssl3_state_st *s3; /* SSLv3 variables */
  3205. struct dtls1_state_st *d1; /* DTLSv1 variables */
  3206. /* callback that allows applications to peek at protocol messages */
  3207. void (*msg_callback)(int write_p, int version, int content_type,
  3208. const void *buf, size_t len, SSL *ssl, void *arg);
  3209. void *msg_callback_arg;
  3210. X509_VERIFY_PARAM *param;
  3211. /* crypto */
  3212. struct ssl_cipher_preference_list_st *cipher_list;
  3213. STACK_OF(SSL_CIPHER) *cipher_list_by_id;
  3214. SSL_AEAD_CTX *aead_read_ctx;
  3215. SSL_AEAD_CTX *aead_write_ctx;
  3216. /* session info */
  3217. /* client cert? */
  3218. /* This is used to hold the server certificate used */
  3219. struct cert_st /* CERT */ *cert;
  3220. /* This holds a variable that indicates what we were doing when a 0 or -1 is
  3221. * returned. This is needed for non-blocking IO so we know what request
  3222. * needs re-doing when in SSL_accept or SSL_connect */
  3223. int rwstate;
  3224. /* the session_id_context is used to ensure sessions are only reused
  3225. * in the appropriate context */
  3226. unsigned int sid_ctx_length;
  3227. uint8_t sid_ctx[SSL_MAX_SID_CTX_LENGTH];
  3228. /* This can also be in the session once a session is established */
  3229. SSL_SESSION *session;
  3230. int (*verify_callback)(int ok,
  3231. X509_STORE_CTX *ctx); /* fail if callback returns 0 */
  3232. void (*info_callback)(const SSL *ssl, int type, int value);
  3233. /* Server-only: psk_identity_hint is the identity hint to send in
  3234. * PSK-based key exchanges. */
  3235. char *psk_identity_hint;
  3236. unsigned int (*psk_client_callback)(SSL *ssl, const char *hint,
  3237. char *identity,
  3238. unsigned int max_identity_len,
  3239. uint8_t *psk, unsigned int max_psk_len);
  3240. unsigned int (*psk_server_callback)(SSL *ssl, const char *identity,
  3241. uint8_t *psk, unsigned int max_psk_len);
  3242. SSL_CTX *ctx;
  3243. /* extra application data */
  3244. long verify_result;
  3245. CRYPTO_EX_DATA ex_data;
  3246. /* for server side, keep the list of CA_dn we can use */
  3247. STACK_OF(X509_NAME) *client_CA;
  3248. uint32_t options; /* protocol behaviour */
  3249. uint32_t mode; /* API behaviour */
  3250. uint32_t max_cert_list;
  3251. int client_version; /* what was passed, used for
  3252. * SSLv3/TLS rollback check */
  3253. uint16_t max_send_fragment;
  3254. char *tlsext_hostname;
  3255. /* RFC4507 session ticket expected to be received or sent */
  3256. int tlsext_ticket_expected;
  3257. size_t tlsext_ellipticcurvelist_length;
  3258. uint16_t *tlsext_ellipticcurvelist; /* our list */
  3259. SSL_CTX *initial_ctx; /* initial ctx, used to store sessions */
  3260. /* Next protocol negotiation. For the client, this is the protocol that we
  3261. * sent in NextProtocol and is set when handling ServerHello extensions.
  3262. *
  3263. * For a server, this is the client's selected_protocol from NextProtocol and
  3264. * is set when handling the NextProtocol message, before the Finished
  3265. * message. */
  3266. uint8_t *next_proto_negotiated;
  3267. size_t next_proto_negotiated_len;
  3268. /* srtp_profiles is the list of configured SRTP protection profiles for
  3269. * DTLS-SRTP. */
  3270. STACK_OF(SRTP_PROTECTION_PROFILE) *srtp_profiles;
  3271. /* srtp_profile is the selected SRTP protection profile for
  3272. * DTLS-SRTP. */
  3273. const SRTP_PROTECTION_PROFILE *srtp_profile;
  3274. /* The client's Channel ID private key. */
  3275. EVP_PKEY *tlsext_channel_id_private;
  3276. /* For a client, this contains the list of supported protocols in wire
  3277. * format. */
  3278. uint8_t *alpn_client_proto_list;
  3279. unsigned alpn_client_proto_list_len;
  3280. /* renegotiate_mode controls how peer renegotiation attempts are handled. */
  3281. enum ssl_renegotiate_mode_t renegotiate_mode;
  3282. /* These fields are always NULL and exist only to keep wpa_supplicant happy
  3283. * about the change to EVP_AEAD. They are only needed for EAP-FAST, which we
  3284. * don't support. */
  3285. EVP_CIPHER_CTX *enc_read_ctx;
  3286. EVP_MD_CTX *read_hash;
  3287. /* in_handshake is non-zero when we are actually in SSL_accept() or
  3288. * SSL_connect() */
  3289. int in_handshake;
  3290. /* verify_mode is a bitmask of |SSL_VERIFY_*| values. */
  3291. uint8_t verify_mode;
  3292. /* hit is true if this connection is resuming a previous session. */
  3293. unsigned hit:1;
  3294. /* server is true iff the this SSL* is the server half. Note: before the SSL*
  3295. * is initialized by either SSL_set_accept_state or SSL_set_connect_state,
  3296. * the side is not determined. In this state, server is always false. */
  3297. unsigned server:1;
  3298. /* quiet_shutdown is true if the connection should not send a close_notify on
  3299. * shutdown. */
  3300. unsigned quiet_shutdown:1;
  3301. /* Enable signed certificate time stamps. Currently client only. */
  3302. unsigned signed_cert_timestamps_enabled:1;
  3303. /* ocsp_stapling_enabled is only used by client connections and indicates
  3304. * whether OCSP stapling will be requested. */
  3305. unsigned ocsp_stapling_enabled:1;
  3306. /* tlsext_channel_id_enabled is copied from the |SSL_CTX|. For a server,
  3307. * means that we'll accept Channel IDs from clients. For a client, means that
  3308. * we'll advertise support. */
  3309. unsigned tlsext_channel_id_enabled:1;
  3310. };
  3311. typedef struct ssl3_record_st {
  3312. /* type is the record type. */
  3313. uint8_t type;
  3314. /* length is the number of unconsumed bytes of |data|. */
  3315. uint16_t length;
  3316. /* off is the number of consumed bytes of |data|. */
  3317. uint16_t off;
  3318. /* data is a non-owning pointer to the record contents. The total length of
  3319. * the buffer is |off| + |length|. */
  3320. uint8_t *data;
  3321. } SSL3_RECORD;
  3322. typedef struct ssl3_buffer_st {
  3323. /* buf is the memory allocated for this buffer. */
  3324. uint8_t *buf;
  3325. /* offset is the offset into |buf| which the buffer contents start at. */
  3326. uint16_t offset;
  3327. /* len is the length of the buffer contents from |buf| + |offset|. */
  3328. uint16_t len;
  3329. /* cap is how much memory beyond |buf| + |offset| is available. */
  3330. uint16_t cap;
  3331. } SSL3_BUFFER;
  3332. /* TODO(davidben): This flag can probably be merged into s3->change_cipher_spec
  3333. * to something tri-state. (Normal / Expect CCS / Between CCS and Finished). */
  3334. #define SSL3_FLAGS_EXPECT_CCS 0x0080
  3335. typedef struct ssl3_state_st {
  3336. long flags;
  3337. uint8_t read_sequence[8];
  3338. int read_mac_secret_size;
  3339. uint8_t read_mac_secret[EVP_MAX_MD_SIZE];
  3340. uint8_t write_sequence[8];
  3341. int write_mac_secret_size;
  3342. uint8_t write_mac_secret[EVP_MAX_MD_SIZE];
  3343. uint8_t server_random[SSL3_RANDOM_SIZE];
  3344. uint8_t client_random[SSL3_RANDOM_SIZE];
  3345. /* flags for countermeasure against known-IV weakness */
  3346. int need_record_splitting;
  3347. /* have_version is true if the connection's final version is known. Otherwise
  3348. * the version has not been negotiated yet. */
  3349. char have_version;
  3350. /* initial_handshake_complete is true if the initial handshake has
  3351. * completed. */
  3352. char initial_handshake_complete;
  3353. /* read_buffer holds data from the transport to be processed. */
  3354. SSL3_BUFFER read_buffer;
  3355. /* write_buffer holds data to be written to the transport. */
  3356. SSL3_BUFFER write_buffer;
  3357. SSL3_RECORD rrec; /* each decoded record goes in here */
  3358. /* storage for Handshake protocol data received but not yet processed by
  3359. * ssl3_read_bytes: */
  3360. uint8_t handshake_fragment[4];
  3361. unsigned int handshake_fragment_len;
  3362. /* partial write - check the numbers match */
  3363. unsigned int wnum; /* number of bytes sent so far */
  3364. int wpend_tot; /* number bytes written */
  3365. int wpend_type;
  3366. int wpend_ret; /* number of bytes submitted */
  3367. const uint8_t *wpend_buf;
  3368. /* handshake_buffer, if non-NULL, contains the handshake transcript. */
  3369. BUF_MEM *handshake_buffer;
  3370. /* handshake_hash, if initialized with an |EVP_MD|, maintains the handshake
  3371. * hash. For TLS 1.1 and below, it is the SHA-1 half. */
  3372. EVP_MD_CTX handshake_hash;
  3373. /* handshake_md5, if initialized with an |EVP_MD|, maintains the MD5 half of
  3374. * the handshake hash for TLS 1.1 and below. */
  3375. EVP_MD_CTX handshake_md5;
  3376. /* this is set whenerver we see a change_cipher_spec message come in when we
  3377. * are not looking for one */
  3378. int change_cipher_spec;
  3379. int warn_alert;
  3380. int fatal_alert;
  3381. /* we allow one fatal and one warning alert to be outstanding, send close
  3382. * alert via the warning alert */
  3383. int alert_dispatch;
  3384. uint8_t send_alert[2];
  3385. int total_renegotiations;
  3386. /* empty_record_count is the number of consecutive empty records received. */
  3387. uint8_t empty_record_count;
  3388. /* warning_alert_count is the number of consecutive warning alerts
  3389. * received. */
  3390. uint8_t warning_alert_count;
  3391. /* State pertaining to the pending handshake.
  3392. *
  3393. * TODO(davidben): State is current spread all over the place. Move
  3394. * pending handshake state here so it can be managed separately from
  3395. * established connection state in case of renegotiations. */
  3396. struct {
  3397. /* actually only need to be 16+20 for SSLv3 and 12 for TLS */
  3398. uint8_t finish_md[EVP_MAX_MD_SIZE * 2];
  3399. int finish_md_len;
  3400. uint8_t peer_finish_md[EVP_MAX_MD_SIZE * 2];
  3401. int peer_finish_md_len;
  3402. unsigned long message_size;
  3403. int message_type;
  3404. /* used to hold the new cipher we are going to use */
  3405. const SSL_CIPHER *new_cipher;
  3406. DH *dh;
  3407. EC_KEY *ecdh; /* holds short lived ECDH key */
  3408. /* used when SSL_ST_FLUSH_DATA is entered */
  3409. int next_state;
  3410. int reuse_message;
  3411. union {
  3412. /* sent is a bitset where the bits correspond to elements of kExtensions
  3413. * in t1_lib.c. Each bit is set if that extension was sent in a
  3414. * ClientHello. It's not used by servers. */
  3415. uint32_t sent;
  3416. /* received is a bitset, like |sent|, but is used by servers to record
  3417. * which extensions were received from a client. */
  3418. uint32_t received;
  3419. } extensions;
  3420. union {
  3421. /* sent is a bitset where the bits correspond to elements of
  3422. * |client_custom_extensions| in the |SSL_CTX|. Each bit is set if that
  3423. * extension was sent in a ClientHello. It's not used by servers. */
  3424. uint16_t sent;
  3425. /* received is a bitset, like |sent|, but is used by servers to record
  3426. * which custom extensions were received from a client. The bits here
  3427. * correspond to |server_custom_extensions|. */
  3428. uint16_t received;
  3429. } custom_extensions;
  3430. /* SNI extension */
  3431. /* should_ack_sni is used by a server and indicates that the SNI extension
  3432. * should be echoed in the ServerHello. */
  3433. unsigned should_ack_sni:1;
  3434. /* Client-only: cert_req determines if a client certificate is to be sent.
  3435. * This is 0 if no client Certificate message is to be sent, 1 if there is
  3436. * a client certificate, and 2 to send an empty client Certificate
  3437. * message. */
  3438. int cert_req;
  3439. /* Client-only: ca_names contains the list of CAs received in a
  3440. * CertificateRequest message. */
  3441. STACK_OF(X509_NAME) *ca_names;
  3442. /* Client-only: certificate_types contains the set of certificate types
  3443. * received in a CertificateRequest message. */
  3444. uint8_t *certificate_types;
  3445. size_t num_certificate_types;
  3446. int key_block_length;
  3447. uint8_t *key_block;
  3448. const EVP_AEAD *new_aead;
  3449. uint8_t new_mac_secret_len;
  3450. uint8_t new_fixed_iv_len;
  3451. uint8_t new_variable_iv_len;
  3452. /* Server-only: cert_request is true if a client certificate was
  3453. * requested. */
  3454. int cert_request;
  3455. /* certificate_status_expected is true if OCSP stapling was negotiated and
  3456. * the server is expected to send a CertificateStatus message. (This is
  3457. * used on both the client and server sides.) */
  3458. unsigned certificate_status_expected:1;
  3459. /* ocsp_stapling_requested is true if a client requested OCSP stapling. */
  3460. unsigned ocsp_stapling_requested:1;
  3461. /* Server-only: peer_ellipticcurvelist contains the EC curve IDs advertised
  3462. * by the peer. This is only set on the server's end. The server does not
  3463. * advertise this extension to the client. */
  3464. uint16_t *peer_ellipticcurvelist;
  3465. size_t peer_ellipticcurvelist_length;
  3466. /* extended_master_secret indicates whether the extended master secret
  3467. * computation is used in this handshake. Note that this is different from
  3468. * whether it was used for the current session. If this is a resumption
  3469. * handshake then EMS might be negotiated in the client and server hello
  3470. * messages, but it doesn't matter if the session that's being resumed
  3471. * didn't use it to create the master secret initially. */
  3472. char extended_master_secret;
  3473. /* Client-only: peer_psk_identity_hint is the psk_identity_hint sent by the
  3474. * server when using a PSK key exchange. */
  3475. char *peer_psk_identity_hint;
  3476. /* new_mac_secret_size is unused and exists only until wpa_supplicant can
  3477. * be updated. It is only needed for EAP-FAST, which we don't support. */
  3478. uint8_t new_mac_secret_size;
  3479. /* Client-only: in_false_start is one if there is a pending handshake in
  3480. * False Start. The client may write data at this point. */
  3481. char in_false_start;
  3482. /* server_key_exchange_hash, on a client, is the hash the server used to
  3483. * sign the ServerKeyExchange in TLS 1.2. If not applicable, it is
  3484. * |TLSEXT_hash_none|. */
  3485. uint8_t server_key_exchange_hash;
  3486. /* peer_dh_tmp, on a client, is the server's DHE public key. */
  3487. DH *peer_dh_tmp;
  3488. /* peer_ecdh_tmp, on a client, is the server's ECDHE public key. */
  3489. EC_KEY *peer_ecdh_tmp;
  3490. } tmp;
  3491. /* Connection binding to prevent renegotiation attacks */
  3492. uint8_t previous_client_finished[EVP_MAX_MD_SIZE];
  3493. uint8_t previous_client_finished_len;
  3494. uint8_t previous_server_finished[EVP_MAX_MD_SIZE];
  3495. uint8_t previous_server_finished_len;
  3496. int send_connection_binding; /* TODOEKR */
  3497. /* Set if we saw the Next Protocol Negotiation extension from our peer. */
  3498. int next_proto_neg_seen;
  3499. /* ALPN information
  3500. * (we are in the process of transitioning from NPN to ALPN.) */
  3501. /* In a server these point to the selected ALPN protocol after the
  3502. * ClientHello has been processed. In a client these contain the protocol
  3503. * that the server selected once the ServerHello has been processed. */
  3504. uint8_t *alpn_selected;
  3505. size_t alpn_selected_len;
  3506. /* In a client, this means that the server supported Channel ID and that a
  3507. * Channel ID was sent. In a server it means that we echoed support for
  3508. * Channel IDs and that tlsext_channel_id will be valid after the
  3509. * handshake. */
  3510. char tlsext_channel_id_valid;
  3511. /* For a server:
  3512. * If |tlsext_channel_id_valid| is true, then this contains the
  3513. * verified Channel ID from the client: a P256 point, (x,y), where
  3514. * each are big-endian values. */
  3515. uint8_t tlsext_channel_id[64];
  3516. } SSL3_STATE;
  3517. /* Android compatibility section (hidden).
  3518. *
  3519. * These functions are declared, temporarily, for Android because
  3520. * wpa_supplicant will take a little time to sync with upstream. Outside of
  3521. * Android they'll have no definition. */
  3522. #define SSL_F_SSL_SET_SESSION_TICKET_EXT doesnt_exist
  3523. OPENSSL_EXPORT int SSL_set_session_ticket_ext(SSL *s, void *ext_data,
  3524. int ext_len);
  3525. OPENSSL_EXPORT int SSL_set_session_secret_cb(SSL *s, void *cb, void *arg);
  3526. OPENSSL_EXPORT int SSL_set_session_ticket_ext_cb(SSL *s, void *cb, void *arg);
  3527. OPENSSL_EXPORT int SSL_set_ssl_method(SSL *s, const SSL_METHOD *method);
  3528. /* Preprocessor compatibility section (hidden).
  3529. *
  3530. * Historically, a number of APIs were implemented in OpenSSL as macros and
  3531. * constants to 'ctrl' functions. To avoid breaking #ifdefs in consumers, this
  3532. * section defines a number of legacy macros.
  3533. *
  3534. * Although using either the CTRL values or their wrapper macros in #ifdefs is
  3535. * still supported, the CTRL values may not be passed to |SSL_ctrl| and
  3536. * |SSL_CTX_ctrl|. Call the functions (previously wrapper macros) instead. */
  3537. #define DTLS_CTRL_GET_TIMEOUT doesnt_exist
  3538. #define DTLS_CTRL_HANDLE_TIMEOUT doesnt_exist
  3539. #define SSL_CTRL_CHAIN doesnt_exist
  3540. #define SSL_CTRL_CHAIN_CERT doesnt_exist
  3541. #define SSL_CTRL_CHANNEL_ID doesnt_exist
  3542. #define SSL_CTRL_CLEAR_EXTRA_CHAIN_CERTS doesnt_exist
  3543. #define SSL_CTRL_CLEAR_MODE doesnt_exist
  3544. #define SSL_CTRL_CLEAR_OPTIONS doesnt_exist
  3545. #define SSL_CTRL_EXTRA_CHAIN_CERT doesnt_exist
  3546. #define SSL_CTRL_GET_CHAIN_CERTS doesnt_exist
  3547. #define SSL_CTRL_GET_CHANNEL_ID doesnt_exist
  3548. #define SSL_CTRL_GET_CLIENT_CERT_TYPES doesnt_exist
  3549. #define SSL_CTRL_GET_EXTRA_CHAIN_CERTS doesnt_exist
  3550. #define SSL_CTRL_GET_MAX_CERT_LIST doesnt_exist
  3551. #define SSL_CTRL_GET_NUM_RENEGOTIATIONS doesnt_exist
  3552. #define SSL_CTRL_GET_READ_AHEAD doesnt_exist
  3553. #define SSL_CTRL_GET_RI_SUPPORT doesnt_exist
  3554. #define SSL_CTRL_GET_SESSION_REUSED doesnt_exist
  3555. #define SSL_CTRL_GET_SESS_CACHE_MODE doesnt_exist
  3556. #define SSL_CTRL_GET_SESS_CACHE_SIZE doesnt_exist
  3557. #define SSL_CTRL_GET_TLSEXT_TICKET_KEYS doesnt_exist
  3558. #define SSL_CTRL_GET_TOTAL_RENEGOTIATIONS doesnt_exist
  3559. #define SSL_CTRL_MODE doesnt_exist
  3560. #define SSL_CTRL_NEED_TMP_RSA doesnt_exist
  3561. #define SSL_CTRL_OPTIONS doesnt_exist
  3562. #define SSL_CTRL_SESS_NUMBER doesnt_exist
  3563. #define SSL_CTRL_SET_CHANNEL_ID doesnt_exist
  3564. #define SSL_CTRL_SET_CURVES doesnt_exist
  3565. #define SSL_CTRL_SET_MAX_CERT_LIST doesnt_exist
  3566. #define SSL_CTRL_SET_MAX_SEND_FRAGMENT doesnt_exist
  3567. #define SSL_CTRL_SET_MSG_CALLBACK doesnt_exist
  3568. #define SSL_CTRL_SET_MSG_CALLBACK_ARG doesnt_exist
  3569. #define SSL_CTRL_SET_MTU doesnt_exist
  3570. #define SSL_CTRL_SET_READ_AHEAD doesnt_exist
  3571. #define SSL_CTRL_SET_SESS_CACHE_MODE doesnt_exist
  3572. #define SSL_CTRL_SET_SESS_CACHE_SIZE doesnt_exist
  3573. #define SSL_CTRL_SET_TLSEXT_HOSTNAME doesnt_exist
  3574. #define SSL_CTRL_SET_TLSEXT_SERVERNAME_ARG doesnt_exist
  3575. #define SSL_CTRL_SET_TLSEXT_SERVERNAME_CB doesnt_exist
  3576. #define SSL_CTRL_SET_TLSEXT_TICKET_KEYS doesnt_exist
  3577. #define SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB doesnt_exist
  3578. #define SSL_CTRL_SET_TMP_DH doesnt_exist
  3579. #define SSL_CTRL_SET_TMP_DH_CB doesnt_exist
  3580. #define SSL_CTRL_SET_TMP_ECDH doesnt_exist
  3581. #define SSL_CTRL_SET_TMP_ECDH_CB doesnt_exist
  3582. #define SSL_CTRL_SET_TMP_RSA doesnt_exist
  3583. #define SSL_CTRL_SET_TMP_RSA_CB doesnt_exist
  3584. #define DTLSv1_get_timeout DTLSv1_get_timeout
  3585. #define DTLSv1_handle_timeout DTLSv1_handle_timeout
  3586. #define SSL_CTX_add0_chain_cert SSL_CTX_add0_chain_cert
  3587. #define SSL_CTX_add1_chain_cert SSL_CTX_add1_chain_cert
  3588. #define SSL_CTX_add_extra_chain_cert SSL_CTX_add_extra_chain_cert
  3589. #define SSL_CTX_clear_extra_chain_certs SSL_CTX_clear_extra_chain_certs
  3590. #define SSL_CTX_clear_chain_certs SSL_CTX_clear_chain_certs
  3591. #define SSL_CTX_clear_mode SSL_CTX_clear_mode
  3592. #define SSL_CTX_clear_options SSL_CTX_clear_options
  3593. #define SSL_CTX_enable_tls_channel_id SSL_CTX_enable_tls_channel_id
  3594. #define SSL_CTX_get0_chain_certs SSL_CTX_get0_chain_certs
  3595. #define SSL_CTX_get_extra_chain_certs SSL_CTX_get_extra_chain_certs
  3596. #define SSL_CTX_get_max_cert_list SSL_CTX_get_max_cert_list
  3597. #define SSL_CTX_get_mode SSL_CTX_get_mode
  3598. #define SSL_CTX_get_options SSL_CTX_get_options
  3599. #define SSL_CTX_get_read_ahead SSL_CTX_get_read_ahead
  3600. #define SSL_CTX_get_session_cache_mode SSL_CTX_get_session_cache_mode
  3601. #define SSL_CTX_get_tlsext_ticket_keys SSL_CTX_get_tlsext_ticket_keys
  3602. #define SSL_CTX_need_tmp_RSA SSL_CTX_need_tmp_RSA
  3603. #define SSL_CTX_sess_get_cache_size SSL_CTX_sess_get_cache_size
  3604. #define SSL_CTX_sess_number SSL_CTX_sess_number
  3605. #define SSL_CTX_sess_set_cache_size SSL_CTX_sess_set_cache_size
  3606. #define SSL_CTX_set0_chain SSL_CTX_set0_chain
  3607. #define SSL_CTX_set1_chain SSL_CTX_set1_chain
  3608. #define SSL_CTX_set1_curves SSL_CTX_set1_curves
  3609. #define SSL_CTX_set1_tls_channel_id SSL_CTX_set1_tls_channel_id
  3610. #define SSL_CTX_set_max_cert_list SSL_CTX_set_max_cert_list
  3611. #define SSL_CTX_set_max_send_fragment SSL_CTX_set_max_send_fragment
  3612. #define SSL_CTX_set_mode SSL_CTX_set_mode
  3613. #define SSL_CTX_set_msg_callback_arg SSL_CTX_set_msg_callback_arg
  3614. #define SSL_CTX_set_options SSL_CTX_set_options
  3615. #define SSL_CTX_set_read_ahead SSL_CTX_set_read_ahead
  3616. #define SSL_CTX_set_session_cache_mode SSL_CTX_set_session_cache_mode
  3617. #define SSL_CTX_set_tlsext_servername_arg SSL_CTX_set_tlsext_servername_arg
  3618. #define SSL_CTX_set_tlsext_servername_callback \
  3619. SSL_CTX_set_tlsext_servername_callback
  3620. #define SSL_CTX_set_tlsext_ticket_key_cb SSL_CTX_set_tlsext_ticket_key_cb
  3621. #define SSL_CTX_set_tlsext_ticket_keys SSL_CTX_set_tlsext_ticket_keys
  3622. #define SSL_CTX_set_tmp_dh SSL_CTX_set_tmp_dh
  3623. #define SSL_CTX_set_tmp_ecdh SSL_CTX_set_tmp_ecdh
  3624. #define SSL_CTX_set_tmp_rsa SSL_CTX_set_tmp_rsa
  3625. #define SSL_add0_chain_cert SSL_add0_chain_cert
  3626. #define SSL_add1_chain_cert SSL_add1_chain_cert
  3627. #define SSL_clear_chain_certs SSL_clear_chain_certs
  3628. #define SSL_clear_mode SSL_clear_mode
  3629. #define SSL_clear_options SSL_clear_options
  3630. #define SSL_enable_tls_channel_id SSL_enable_tls_channel_id
  3631. #define SSL_get0_certificate_types SSL_get0_certificate_types
  3632. #define SSL_get0_chain_certs SSL_get0_chain_certs
  3633. #define SSL_get_max_cert_list SSL_get_max_cert_list
  3634. #define SSL_get_mode SSL_get_mode
  3635. #define SSL_get_options SSL_get_options
  3636. #define SSL_get_secure_renegotiation_support \
  3637. SSL_get_secure_renegotiation_support
  3638. #define SSL_get_tls_channel_id SSL_get_tls_channel_id
  3639. #define SSL_need_tmp_RSA SSL_need_tmp_RSA
  3640. #define SSL_num_renegotiations SSL_num_renegotiations
  3641. #define SSL_session_reused SSL_session_reused
  3642. #define SSL_set0_chain SSL_set0_chain
  3643. #define SSL_set1_chain SSL_set1_chain
  3644. #define SSL_set1_curves SSL_set1_curves
  3645. #define SSL_set1_tls_channel_id SSL_set1_tls_channel_id
  3646. #define SSL_set_max_cert_list SSL_set_max_cert_list
  3647. #define SSL_set_max_send_fragment SSL_set_max_send_fragment
  3648. #define SSL_set_mode SSL_set_mode
  3649. #define SSL_set_msg_callback_arg SSL_set_msg_callback_arg
  3650. #define SSL_set_mtu SSL_set_mtu
  3651. #define SSL_set_options SSL_set_options
  3652. #define SSL_set_tlsext_host_name SSL_set_tlsext_host_name
  3653. #define SSL_set_tmp_dh SSL_set_tmp_dh
  3654. #define SSL_set_tmp_ecdh SSL_set_tmp_ecdh
  3655. #define SSL_set_tmp_rsa SSL_set_tmp_rsa
  3656. #define SSL_total_renegotiations SSL_total_renegotiations
  3657. #if defined(__cplusplus)
  3658. } /* extern C */
  3659. #endif
  3660. #define SSL_R_APP_DATA_IN_HANDSHAKE 100
  3661. #define SSL_R_ATTEMPT_TO_REUSE_SESSION_IN_DIFFERENT_CONTEXT 101
  3662. #define SSL_R_BAD_ALERT 102
  3663. #define SSL_R_BAD_CHANGE_CIPHER_SPEC 103
  3664. #define SSL_R_BAD_DATA_RETURNED_BY_CALLBACK 104
  3665. #define SSL_R_BAD_DH_P_LENGTH 105
  3666. #define SSL_R_BAD_DIGEST_LENGTH 106
  3667. #define SSL_R_BAD_ECC_CERT 107
  3668. #define SSL_R_BAD_ECPOINT 108
  3669. #define SSL_R_BAD_HANDSHAKE_LENGTH 109
  3670. #define SSL_R_BAD_HANDSHAKE_RECORD 110
  3671. #define SSL_R_BAD_HELLO_REQUEST 111
  3672. #define SSL_R_BAD_LENGTH 112
  3673. #define SSL_R_BAD_PACKET_LENGTH 113
  3674. #define SSL_R_BAD_RSA_ENCRYPT 114
  3675. #define SSL_R_BAD_SIGNATURE 115
  3676. #define SSL_R_BAD_SRTP_MKI_VALUE 116
  3677. #define SSL_R_BAD_SRTP_PROTECTION_PROFILE_LIST 117
  3678. #define SSL_R_BAD_SSL_FILETYPE 118
  3679. #define SSL_R_BAD_WRITE_RETRY 119
  3680. #define SSL_R_BIO_NOT_SET 120
  3681. #define SSL_R_BN_LIB 121
  3682. #define SSL_R_CANNOT_SERIALIZE_PUBLIC_KEY 122
  3683. #define SSL_R_CA_DN_LENGTH_MISMATCH 123
  3684. #define SSL_R_CA_DN_TOO_LONG 124
  3685. #define SSL_R_CCS_RECEIVED_EARLY 125
  3686. #define SSL_R_CERTIFICATE_VERIFY_FAILED 126
  3687. #define SSL_R_CERT_CB_ERROR 127
  3688. #define SSL_R_CERT_LENGTH_MISMATCH 128
  3689. #define SSL_R_CHANNEL_ID_NOT_P256 129
  3690. #define SSL_R_CHANNEL_ID_SIGNATURE_INVALID 130
  3691. #define SSL_R_CIPHER_CODE_WRONG_LENGTH 131
  3692. #define SSL_R_CIPHER_OR_HASH_UNAVAILABLE 132
  3693. #define SSL_R_CLIENTHELLO_PARSE_FAILED 133
  3694. #define SSL_R_CLIENTHELLO_TLSEXT 134
  3695. #define SSL_R_CONNECTION_REJECTED 135
  3696. #define SSL_R_CONNECTION_TYPE_NOT_SET 136
  3697. #define SSL_R_COOKIE_MISMATCH 137
  3698. #define SSL_R_D2I_ECDSA_SIG 138
  3699. #define SSL_R_DATA_BETWEEN_CCS_AND_FINISHED 139
  3700. #define SSL_R_DATA_LENGTH_TOO_LONG 140
  3701. #define SSL_R_DECODE_ERROR 141
  3702. #define SSL_R_DECRYPTION_FAILED 142
  3703. #define SSL_R_DECRYPTION_FAILED_OR_BAD_RECORD_MAC 143
  3704. #define SSL_R_DH_PUBLIC_VALUE_LENGTH_IS_WRONG 144
  3705. #define SSL_R_DIGEST_CHECK_FAILED 145
  3706. #define SSL_R_DTLS_MESSAGE_TOO_BIG 146
  3707. #define SSL_R_ECC_CERT_NOT_FOR_SIGNING 147
  3708. #define SSL_R_EMPTY_SRTP_PROTECTION_PROFILE_LIST 148
  3709. #define SSL_R_ENCRYPTED_LENGTH_TOO_LONG 149
  3710. #define SSL_R_ERROR_IN_RECEIVED_CIPHER_LIST 150
  3711. #define SSL_R_EVP_DIGESTSIGNFINAL_FAILED 151
  3712. #define SSL_R_EVP_DIGESTSIGNINIT_FAILED 152
  3713. #define SSL_R_EXCESSIVE_MESSAGE_SIZE 153
  3714. #define SSL_R_EXTRA_DATA_IN_MESSAGE 154
  3715. #define SSL_R_GOT_A_FIN_BEFORE_A_CCS 155
  3716. #define SSL_R_GOT_CHANNEL_ID_BEFORE_A_CCS 156
  3717. #define SSL_R_GOT_NEXT_PROTO_BEFORE_A_CCS 157
  3718. #define SSL_R_GOT_NEXT_PROTO_WITHOUT_EXTENSION 158
  3719. #define SSL_R_HANDSHAKE_FAILURE_ON_CLIENT_HELLO 159
  3720. #define SSL_R_HANDSHAKE_RECORD_BEFORE_CCS 160
  3721. #define SSL_R_HTTPS_PROXY_REQUEST 161
  3722. #define SSL_R_HTTP_REQUEST 162
  3723. #define SSL_R_INAPPROPRIATE_FALLBACK 163
  3724. #define SSL_R_INVALID_COMMAND 164
  3725. #define SSL_R_INVALID_MESSAGE 165
  3726. #define SSL_R_INVALID_SSL_SESSION 166
  3727. #define SSL_R_INVALID_TICKET_KEYS_LENGTH 167
  3728. #define SSL_R_LENGTH_MISMATCH 168
  3729. #define SSL_R_LIBRARY_HAS_NO_CIPHERS 169
  3730. #define SSL_R_MISSING_DH_KEY 170
  3731. #define SSL_R_MISSING_ECDSA_SIGNING_CERT 171
  3732. #define SSL_R_MISSING_RSA_CERTIFICATE 172
  3733. #define SSL_R_MISSING_RSA_ENCRYPTING_CERT 173
  3734. #define SSL_R_MISSING_RSA_SIGNING_CERT 174
  3735. #define SSL_R_MISSING_TMP_DH_KEY 175
  3736. #define SSL_R_MISSING_TMP_ECDH_KEY 176
  3737. #define SSL_R_MIXED_SPECIAL_OPERATOR_WITH_GROUPS 177
  3738. #define SSL_R_MTU_TOO_SMALL 178
  3739. #define SSL_R_NESTED_GROUP 179
  3740. #define SSL_R_NO_CERTIFICATES_RETURNED 180
  3741. #define SSL_R_NO_CERTIFICATE_ASSIGNED 181
  3742. #define SSL_R_NO_CERTIFICATE_SET 182
  3743. #define SSL_R_NO_CIPHERS_AVAILABLE 183
  3744. #define SSL_R_NO_CIPHERS_PASSED 184
  3745. #define SSL_R_NO_CIPHERS_SPECIFIED 185
  3746. #define SSL_R_NO_CIPHER_MATCH 186
  3747. #define SSL_R_NO_COMPRESSION_SPECIFIED 187
  3748. #define SSL_R_NO_METHOD_SPECIFIED 188
  3749. #define SSL_R_NO_P256_SUPPORT 189
  3750. #define SSL_R_NO_PRIVATE_KEY_ASSIGNED 190
  3751. #define SSL_R_NO_RENEGOTIATION 191
  3752. #define SSL_R_NO_REQUIRED_DIGEST 192
  3753. #define SSL_R_NO_SHARED_CIPHER 193
  3754. #define SSL_R_NO_SHARED_SIGATURE_ALGORITHMS 194
  3755. #define SSL_R_NO_SRTP_PROFILES 195
  3756. #define SSL_R_NULL_SSL_CTX 196
  3757. #define SSL_R_NULL_SSL_METHOD_PASSED 197
  3758. #define SSL_R_OLD_SESSION_CIPHER_NOT_RETURNED 198
  3759. #define SSL_R_PACKET_LENGTH_TOO_LONG 199
  3760. #define SSL_R_PARSE_TLSEXT 200
  3761. #define SSL_R_PATH_TOO_LONG 201
  3762. #define SSL_R_PEER_DID_NOT_RETURN_A_CERTIFICATE 202
  3763. #define SSL_R_PEER_ERROR_UNSUPPORTED_CERTIFICATE_TYPE 203
  3764. #define SSL_R_PROTOCOL_IS_SHUTDOWN 204
  3765. #define SSL_R_PSK_IDENTITY_NOT_FOUND 205
  3766. #define SSL_R_PSK_NO_CLIENT_CB 206
  3767. #define SSL_R_PSK_NO_SERVER_CB 207
  3768. #define SSL_R_READ_BIO_NOT_SET 208
  3769. #define SSL_R_READ_TIMEOUT_EXPIRED 209
  3770. #define SSL_R_RECORD_LENGTH_MISMATCH 210
  3771. #define SSL_R_RECORD_TOO_LARGE 211
  3772. #define SSL_R_RENEGOTIATE_EXT_TOO_LONG 212
  3773. #define SSL_R_RENEGOTIATION_ENCODING_ERR 213
  3774. #define SSL_R_RENEGOTIATION_MISMATCH 214
  3775. #define SSL_R_REQUIRED_CIPHER_MISSING 215
  3776. #define SSL_R_SCSV_RECEIVED_WHEN_RENEGOTIATING 216
  3777. #define SSL_R_SERVERHELLO_TLSEXT 217
  3778. #define SSL_R_SESSION_ID_CONTEXT_UNINITIALIZED 218
  3779. #define SSL_R_SESSION_MAY_NOT_BE_CREATED 219
  3780. #define SSL_R_SIGNATURE_ALGORITHMS_ERROR 220
  3781. #define SSL_R_SRTP_COULD_NOT_ALLOCATE_PROFILES 221
  3782. #define SSL_R_SRTP_PROTECTION_PROFILE_LIST_TOO_LONG 222
  3783. #define SSL_R_SRTP_UNKNOWN_PROTECTION_PROFILE 223
  3784. #define SSL_R_SSL3_EXT_INVALID_SERVERNAME 224
  3785. #define SSL_R_SSL3_EXT_INVALID_SERVERNAME_TYPE 225
  3786. #define SSL_R_SSL_CTX_HAS_NO_DEFAULT_SSL_VERSION 226
  3787. #define SSL_R_SSL_HANDSHAKE_FAILURE 227
  3788. #define SSL_R_SSL_SESSION_ID_CALLBACK_FAILED 228
  3789. #define SSL_R_SSL_SESSION_ID_CONFLICT 229
  3790. #define SSL_R_SSL_SESSION_ID_CONTEXT_TOO_LONG 230
  3791. #define SSL_R_SSL_SESSION_ID_HAS_BAD_LENGTH 231
  3792. #define SSL_R_TLS_CLIENT_CERT_REQ_WITH_ANON_CIPHER 232
  3793. #define SSL_R_TLS_ILLEGAL_EXPORTER_LABEL 233
  3794. #define SSL_R_TLS_INVALID_ECPOINTFORMAT_LIST 234
  3795. #define SSL_R_TLS_PEER_DID_NOT_RESPOND_WITH_CERTIFICATE_LIST 235
  3796. #define SSL_R_TLS_RSA_ENCRYPTED_VALUE_LENGTH_IS_WRONG 236
  3797. #define SSL_R_TOO_MANY_EMPTY_FRAGMENTS 237
  3798. #define SSL_R_UNABLE_TO_FIND_ECDH_PARAMETERS 238
  3799. #define SSL_R_UNABLE_TO_FIND_PUBLIC_KEY_PARAMETERS 239
  3800. #define SSL_R_UNEXPECTED_GROUP_CLOSE 240
  3801. #define SSL_R_UNEXPECTED_MESSAGE 241
  3802. #define SSL_R_UNEXPECTED_OPERATOR_IN_GROUP 242
  3803. #define SSL_R_UNEXPECTED_RECORD 243
  3804. #define SSL_R_UNINITIALIZED 244
  3805. #define SSL_R_UNKNOWN_ALERT_TYPE 245
  3806. #define SSL_R_UNKNOWN_CERTIFICATE_TYPE 246
  3807. #define SSL_R_UNKNOWN_CIPHER_RETURNED 247
  3808. #define SSL_R_UNKNOWN_CIPHER_TYPE 248
  3809. #define SSL_R_UNKNOWN_DIGEST 249
  3810. #define SSL_R_UNKNOWN_KEY_EXCHANGE_TYPE 250
  3811. #define SSL_R_UNKNOWN_PROTOCOL 251
  3812. #define SSL_R_UNKNOWN_SSL_VERSION 252
  3813. #define SSL_R_UNKNOWN_STATE 253
  3814. #define SSL_R_UNPROCESSED_HANDSHAKE_DATA 254
  3815. #define SSL_R_UNSAFE_LEGACY_RENEGOTIATION_DISABLED 255
  3816. #define SSL_R_UNSUPPORTED_CIPHER 256
  3817. #define SSL_R_UNSUPPORTED_COMPRESSION_ALGORITHM 257
  3818. #define SSL_R_UNSUPPORTED_ELLIPTIC_CURVE 258
  3819. #define SSL_R_UNSUPPORTED_PROTOCOL 259
  3820. #define SSL_R_UNSUPPORTED_SSL_VERSION 260
  3821. #define SSL_R_USE_SRTP_NOT_NEGOTIATED 261
  3822. #define SSL_R_WRONG_CERTIFICATE_TYPE 262
  3823. #define SSL_R_WRONG_CIPHER_RETURNED 263
  3824. #define SSL_R_WRONG_CURVE 264
  3825. #define SSL_R_WRONG_MESSAGE_TYPE 265
  3826. #define SSL_R_WRONG_SIGNATURE_TYPE 266
  3827. #define SSL_R_WRONG_SSL_VERSION 267
  3828. #define SSL_R_WRONG_VERSION_NUMBER 268
  3829. #define SSL_R_X509_LIB 269
  3830. #define SSL_R_X509_VERIFICATION_SETUP_PROBLEMS 270
  3831. #define SSL_R_FRAGMENT_MISMATCH 271
  3832. #define SSL_R_BUFFER_TOO_SMALL 272
  3833. #define SSL_R_OLD_SESSION_VERSION_NOT_RETURNED 273
  3834. #define SSL_R_OUTPUT_ALIASES_INPUT 274
  3835. #define SSL_R_RESUMED_EMS_SESSION_WITHOUT_EMS_EXTENSION 275
  3836. #define SSL_R_EMS_STATE_INCONSISTENT 276
  3837. #define SSL_R_RESUMED_NON_EMS_SESSION_WITH_EMS_EXTENSION 277
  3838. #define SSL_R_TOO_MANY_WARNING_ALERTS 278
  3839. #define SSL_R_UNEXPECTED_EXTENSION 279
  3840. #define SSL_R_SIGNATURE_ALGORITHMS_EXTENSION_SENT_BY_SERVER 280
  3841. #define SSL_R_ERROR_ADDING_EXTENSION 281
  3842. #define SSL_R_ERROR_PARSING_EXTENSION 282
  3843. #define SSL_R_MISSING_EXTENSION 283
  3844. #define SSL_R_CUSTOM_EXTENSION_CONTENTS_TOO_LARGE 284
  3845. #define SSL_R_CUSTOM_EXTENSION_ERROR 285
  3846. #define SSL_R_NEGOTIATED_BOTH_NPN_AND_ALPN 286
  3847. #define SSL_R_DH_P_TOO_LONG 287
  3848. #define SSL_R_SSLV3_ALERT_CLOSE_NOTIFY 1000
  3849. #define SSL_R_SSLV3_ALERT_UNEXPECTED_MESSAGE 1010
  3850. #define SSL_R_SSLV3_ALERT_BAD_RECORD_MAC 1020
  3851. #define SSL_R_TLSV1_ALERT_DECRYPTION_FAILED 1021
  3852. #define SSL_R_TLSV1_ALERT_RECORD_OVERFLOW 1022
  3853. #define SSL_R_SSLV3_ALERT_DECOMPRESSION_FAILURE 1030
  3854. #define SSL_R_SSLV3_ALERT_HANDSHAKE_FAILURE 1040
  3855. #define SSL_R_SSLV3_ALERT_NO_CERTIFICATE 1041
  3856. #define SSL_R_SSLV3_ALERT_BAD_CERTIFICATE 1042
  3857. #define SSL_R_SSLV3_ALERT_UNSUPPORTED_CERTIFICATE 1043
  3858. #define SSL_R_SSLV3_ALERT_CERTIFICATE_REVOKED 1044
  3859. #define SSL_R_SSLV3_ALERT_CERTIFICATE_EXPIRED 1045
  3860. #define SSL_R_SSLV3_ALERT_CERTIFICATE_UNKNOWN 1046
  3861. #define SSL_R_SSLV3_ALERT_ILLEGAL_PARAMETER 1047
  3862. #define SSL_R_TLSV1_ALERT_UNKNOWN_CA 1048
  3863. #define SSL_R_TLSV1_ALERT_ACCESS_DENIED 1049
  3864. #define SSL_R_TLSV1_ALERT_DECODE_ERROR 1050
  3865. #define SSL_R_TLSV1_ALERT_DECRYPT_ERROR 1051
  3866. #define SSL_R_TLSV1_ALERT_EXPORT_RESTRICTION 1060
  3867. #define SSL_R_TLSV1_ALERT_PROTOCOL_VERSION 1070
  3868. #define SSL_R_TLSV1_ALERT_INSUFFICIENT_SECURITY 1071
  3869. #define SSL_R_TLSV1_ALERT_INTERNAL_ERROR 1080
  3870. #define SSL_R_TLSV1_ALERT_INAPPROPRIATE_FALLBACK 1086
  3871. #define SSL_R_TLSV1_ALERT_USER_CANCELLED 1090
  3872. #define SSL_R_TLSV1_ALERT_NO_RENEGOTIATION 1100
  3873. #define SSL_R_TLSV1_UNSUPPORTED_EXTENSION 1110
  3874. #define SSL_R_TLSV1_CERTIFICATE_UNOBTAINABLE 1111
  3875. #define SSL_R_TLSV1_UNRECOGNIZED_NAME 1112
  3876. #define SSL_R_TLSV1_BAD_CERTIFICATE_STATUS_RESPONSE 1113
  3877. #define SSL_R_TLSV1_BAD_CERTIFICATE_HASH_VALUE 1114
  3878. #endif /* OPENSSL_HEADER_SSL_H */