rfc7540_SUITE.erl 172 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023
  1. %% Copyright (c) 2016-2017, Loïc Hoguin <essen@ninenines.eu>
  2. %%
  3. %% Permission to use, copy, modify, and/or distribute this software for any
  4. %% purpose with or without fee is hereby granted, provided that the above
  5. %% copyright notice and this permission notice appear in all copies.
  6. %%
  7. %% THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
  8. %% WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  9. %% MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
  10. %% ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  11. %% WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  12. %% ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  13. %% OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  14. -module(rfc7540_SUITE).
  15. -compile(export_all).
  16. -compile(nowarn_export_all).
  17. -import(ct_helper, [config/2]).
  18. -import(ct_helper, [doc/1]).
  19. -import(ct_helper, [name/0]).
  20. -import(cowboy_test, [gun_open/1]).
  21. -import(cowboy_test, [raw_open/1]).
  22. -import(cowboy_test, [raw_send/2]).
  23. -import(cowboy_test, [raw_recv_head/1]).
  24. -import(cowboy_test, [raw_recv/3]).
  25. all() -> [{group, clear}, {group, tls}].
  26. groups() ->
  27. Modules = ct_helper:all(?MODULE),
  28. Clear = [M || M <- Modules, lists:sublist(atom_to_list(M), 4) =/= "alpn"] -- [prior_knowledge_reject_tls],
  29. TLS = [M || M <- Modules, lists:sublist(atom_to_list(M), 4) =:= "alpn"] ++ [prior_knowledge_reject_tls],
  30. [{clear, [parallel], Clear}, {tls, [parallel], TLS}].
  31. init_per_group(Name = clear, Config) ->
  32. cowboy_test:init_http(Name = clear, #{
  33. env => #{dispatch => cowboy_router:compile(init_routes(Config))}
  34. }, Config);
  35. init_per_group(Name = tls, Config) ->
  36. cowboy_test:init_http2(Name = tls, #{
  37. env => #{dispatch => cowboy_router:compile(init_routes(Config))}
  38. }, Config).
  39. end_per_group(Name, _) ->
  40. ok = cowboy:stop_listener(Name).
  41. init_routes(_) -> [
  42. {"localhost", [
  43. {"/", hello_h, []},
  44. {"/echo/:key", echo_h, []},
  45. {"/long_polling", long_polling_h, []},
  46. {"/resp/:key[/:arg]", resp_h, []}
  47. ]}
  48. ].
  49. %% Starting HTTP/2 for "http" URIs.
  50. http_upgrade_ignore_h2(Config) ->
  51. doc("An h2 token in an Upgrade field must be ignored. (RFC7540 3.2)"),
  52. {ok, Socket} = gen_tcp:connect("localhost", config(port, Config), [binary, {active, false}]),
  53. ok = gen_tcp:send(Socket, [
  54. "GET / HTTP/1.1\r\n"
  55. "Host: localhost\r\n"
  56. "Connection: Upgrade, HTTP2-Settings\r\n"
  57. "Upgrade: h2\r\n"
  58. "HTTP2-Settings: ", base64:encode(cow_http2:settings_payload(#{})), "\r\n",
  59. "\r\n"]),
  60. {ok, <<"HTTP/1.1 200">>} = gen_tcp:recv(Socket, 12, 1000),
  61. ok.
  62. http_upgrade_ignore_if_http_10(Config) ->
  63. doc("The Upgrade header must be ignored if part of an HTTP/1.0 request. (RFC7230 6.7)"),
  64. {ok, Socket} = gen_tcp:connect("localhost", config(port, Config), [binary, {active, false}]),
  65. ok = gen_tcp:send(Socket, [
  66. "GET / HTTP/1.0\r\n"
  67. "Host: localhost\r\n"
  68. "Connection: Upgrade, HTTP2-Settings\r\n"
  69. "Upgrade: h2c\r\n"
  70. "HTTP2-Settings: ", base64:encode(cow_http2:settings_payload(#{})), "\r\n",
  71. "\r\n"]),
  72. {ok, <<"HTTP/1.1 200">>} = gen_tcp:recv(Socket, 12, 1000),
  73. ok.
  74. http_upgrade_ignore_missing_upgrade_in_connection(Config) ->
  75. doc("The Upgrade header must be listed in the "
  76. "Connection header field. (RFC7230 6.7)"),
  77. {ok, Socket} = gen_tcp:connect("localhost", config(port, Config), [binary, {active, false}]),
  78. ok = gen_tcp:send(Socket, [
  79. "GET / HTTP/1.1\r\n"
  80. "Host: localhost\r\n"
  81. "Connection: HTTP2-Settings\r\n"
  82. "Upgrade: h2c\r\n"
  83. "HTTP2-Settings: ", base64:encode(cow_http2:settings_payload(#{})), "\r\n",
  84. "\r\n"]),
  85. {ok, <<"HTTP/1.1 200">>} = gen_tcp:recv(Socket, 12, 1000),
  86. ok.
  87. http_upgrade_ignore_missing_http2_settings_in_connection(Config) ->
  88. doc("The HTTP2-Settings header must be listed in the "
  89. "Connection header field. (RFC7540 3.2.1, RFC7230 6.7)"),
  90. {ok, Socket} = gen_tcp:connect("localhost", config(port, Config), [binary, {active, false}]),
  91. ok = gen_tcp:send(Socket, [
  92. "GET / HTTP/1.1\r\n"
  93. "Host: localhost\r\n"
  94. "Connection: Upgrade\r\n"
  95. "Upgrade: h2c\r\n"
  96. "HTTP2-Settings: ", base64:encode(cow_http2:settings_payload(#{})), "\r\n",
  97. "\r\n"]),
  98. {ok, <<"HTTP/1.1 200">>} = gen_tcp:recv(Socket, 12, 1000),
  99. ok.
  100. http_upgrade_ignore_zero_http2_settings_header(Config) ->
  101. doc("The HTTP Upgrade request must include "
  102. "exactly one HTTP2-Settings header field (RFC7540 3.2, RFC7540 3.2.1)"),
  103. {ok, Socket} = gen_tcp:connect("localhost", config(port, Config), [binary, {active, false}]),
  104. ok = gen_tcp:send(Socket, [
  105. "GET / HTTP/1.1\r\n"
  106. "Host: localhost\r\n"
  107. "Connection: Upgrade, HTTP2-Settings\r\n"
  108. "Upgrade: h2c\r\n"
  109. "\r\n"]),
  110. {ok, <<"HTTP/1.1 200">>} = gen_tcp:recv(Socket, 12, 1000),
  111. ok.
  112. http_upgrade_reject_two_http2_settings_header(Config) ->
  113. doc("The HTTP Upgrade request must include "
  114. "exactly one HTTP2-Settings header field (RFC7540 3.2, RFC7540 3.2.1)"),
  115. {ok, Socket} = gen_tcp:connect("localhost", config(port, Config), [binary, {active, false}]),
  116. ok = gen_tcp:send(Socket, [
  117. "GET / HTTP/1.1\r\n"
  118. "Host: localhost\r\n"
  119. "Connection: Upgrade, HTTP2-Settings\r\n"
  120. "Upgrade: h2c\r\n"
  121. "HTTP2-Settings: ", base64:encode(cow_http2:settings_payload(#{})), "\r\n",
  122. "HTTP2-Settings: ", base64:encode(cow_http2:settings_payload(#{})), "\r\n",
  123. "\r\n"]),
  124. {ok, <<"HTTP/1.1 400">>} = gen_tcp:recv(Socket, 12, 1000),
  125. ok.
  126. http_upgrade_reject_bad_http2_settings_header(Config) ->
  127. doc("The HTTP Upgrade request must include "
  128. "a valid HTTP2-Settings header field (RFC7540 3.2, RFC7540 3.2.1)"),
  129. {ok, Socket} = gen_tcp:connect("localhost", config(port, Config), [binary, {active, false}]),
  130. ok = gen_tcp:send(Socket, [
  131. "GET / HTTP/1.1\r\n"
  132. "Host: localhost\r\n"
  133. "Connection: Upgrade, HTTP2-Settings\r\n"
  134. "Upgrade: h2c\r\n"
  135. %% We send a full SETTINGS frame on purpose.
  136. "HTTP2-Settings: ", base64:encode(iolist_to_binary(cow_http2:settings(#{}))), "\r\n",
  137. "\r\n"]),
  138. {ok, <<"HTTP/1.1 400">>} = gen_tcp:recv(Socket, 12, 1000),
  139. ok.
  140. %% Match directly for now.
  141. do_recv_101(Socket) ->
  142. {ok, <<
  143. "HTTP/1.1 101 Switching Protocols\r\n"
  144. "connection: Upgrade\r\n"
  145. "upgrade: h2c\r\n"
  146. "\r\n"
  147. >>} = gen_tcp:recv(Socket, 71, 1000),
  148. ok.
  149. http_upgrade_101(Config) ->
  150. doc("A 101 response must be sent on successful upgrade "
  151. "to HTTP/2 when using the HTTP Upgrade mechanism. (RFC7540 3.2, RFC7230 6.7)"),
  152. {ok, Socket} = gen_tcp:connect("localhost", config(port, Config), [binary, {active, false}]),
  153. ok = gen_tcp:send(Socket, [
  154. "GET / HTTP/1.1\r\n"
  155. "Host: localhost\r\n"
  156. "Connection: Upgrade, HTTP2-Settings\r\n"
  157. "Upgrade: h2c\r\n"
  158. "HTTP2-Settings: ", base64:encode(cow_http2:settings_payload(#{})), "\r\n",
  159. "\r\n"]),
  160. ok = do_recv_101(Socket),
  161. ok.
  162. http_upgrade_server_preface(Config) ->
  163. doc("The first frame after the upgrade must be a "
  164. "SETTINGS frame for the server connection preface. (RFC7540 3.2, RFC7540 3.5, RFC7540 6.5)"),
  165. {ok, Socket} = gen_tcp:connect("localhost", config(port, Config), [binary, {active, false}]),
  166. ok = gen_tcp:send(Socket, [
  167. "GET / HTTP/1.1\r\n"
  168. "Host: localhost\r\n"
  169. "Connection: Upgrade, HTTP2-Settings\r\n"
  170. "Upgrade: h2c\r\n"
  171. "HTTP2-Settings: ", base64:encode(cow_http2:settings_payload(#{})), "\r\n",
  172. "\r\n"]),
  173. ok = do_recv_101(Socket),
  174. %% Receive the server preface.
  175. {ok, << _:24, 4:8, 0:40 >>} = gen_tcp:recv(Socket, 9, 1000),
  176. ok.
  177. http_upgrade_client_preface_timeout(Config) ->
  178. doc("Clients negotiating HTTP/2 and not sending a preface in "
  179. "a timely manner must be disconnected."),
  180. {ok, Socket} = gen_tcp:connect("localhost", config(port, Config), [binary, {active, false}]),
  181. ok = gen_tcp:send(Socket, [
  182. "GET / HTTP/1.1\r\n"
  183. "Host: localhost\r\n"
  184. "Connection: Upgrade, HTTP2-Settings\r\n"
  185. "Upgrade: h2c\r\n"
  186. "HTTP2-Settings: ", base64:encode(cow_http2:settings_payload(#{})), "\r\n",
  187. "\r\n"]),
  188. ok = do_recv_101(Socket),
  189. %% Receive the server preface.
  190. {ok, << Len:24 >>} = gen_tcp:recv(Socket, 3, 1000),
  191. {ok, << 4:8, 0:40, _:Len/binary >>} = gen_tcp:recv(Socket, 6 + Len, 1000),
  192. %% Receive the response to the initial HTTP/1.1 request.
  193. {ok, << HeadersSkipLen:24, 1:8, _:8, 1:32 >>} = gen_tcp:recv(Socket, 9, 1000),
  194. {ok, _} = gen_tcp:recv(Socket, HeadersSkipLen, 1000),
  195. {ok, << DataSkipLen:24, 0:8, _:8, 1:32 >>} = gen_tcp:recv(Socket, 9, 1000),
  196. {ok, _} = gen_tcp:recv(Socket, DataSkipLen, 1000),
  197. %% Do not send the preface. Wait for the server to disconnect us.
  198. {error, closed} = gen_tcp:recv(Socket, 9, 6000),
  199. ok.
  200. http_upgrade_reject_missing_client_preface(Config) ->
  201. doc("Servers must treat an invalid connection preface as a "
  202. "connection error of type PROTOCOL_ERROR. (RFC7540 3.2, RFC7540 3.5)"),
  203. {ok, Socket} = gen_tcp:connect("localhost", config(port, Config), [binary, {active, false}]),
  204. ok = gen_tcp:send(Socket, [
  205. "GET / HTTP/1.1\r\n"
  206. "Host: localhost\r\n"
  207. "Connection: Upgrade, HTTP2-Settings\r\n"
  208. "Upgrade: h2c\r\n"
  209. "HTTP2-Settings: ", base64:encode(cow_http2:settings_payload(#{})), "\r\n",
  210. "\r\n"]),
  211. ok = do_recv_101(Socket),
  212. %% Send a SETTINGS frame directly instead of the proper preface.
  213. ok = gen_tcp:send(Socket, cow_http2:settings(#{})),
  214. %% Receive the server preface.
  215. {ok, << Len:24 >>} = gen_tcp:recv(Socket, 3, 1000),
  216. {ok, << 4:8, 0:40, _:Len/binary >>} = gen_tcp:recv(Socket, 6 + Len, 1000),
  217. %% We expect the server to close the connection when it receives a bad preface.
  218. %% The server may however have already started sending the response to the
  219. %% initial HTTP/1.1 request.
  220. Received = lists:reverse(lists:foldl(fun(_, Acc) ->
  221. case gen_tcp:recv(Socket, 9, 1000) of
  222. {ok, << SkipLen:24, 1:8, _:8, 1:32 >>} ->
  223. {ok, _} = gen_tcp:recv(Socket, SkipLen, 1000),
  224. [headers|Acc];
  225. {ok, << SkipLen:24, 0:8, _:8, 1:32 >>} ->
  226. {ok, _} = gen_tcp:recv(Socket, SkipLen, 1000),
  227. [data|Acc];
  228. {error, _} ->
  229. [closed|Acc]
  230. end
  231. end, [], [1, 2, 3])),
  232. case Received of
  233. [closed|_] -> ok;
  234. [headers, closed|_] -> ok;
  235. [headers, data, closed] -> ok
  236. end.
  237. http_upgrade_reject_invalid_client_preface(Config) ->
  238. doc("Servers must treat an invalid connection preface as a "
  239. "connection error of type PROTOCOL_ERROR. (RFC7540 3.2, RFC7540 3.5)"),
  240. {ok, Socket} = gen_tcp:connect("localhost", config(port, Config), [binary, {active, false}]),
  241. ok = gen_tcp:send(Socket, [
  242. "GET / HTTP/1.1\r\n"
  243. "Host: localhost\r\n"
  244. "Connection: Upgrade, HTTP2-Settings\r\n"
  245. "Upgrade: h2c\r\n"
  246. "HTTP2-Settings: ", base64:encode(cow_http2:settings_payload(#{})), "\r\n",
  247. "\r\n"]),
  248. ok = do_recv_101(Socket),
  249. %% Send a slightly incorrect preface.
  250. ok = gen_tcp:send(Socket, "PRI * HTTP/2.0\r\n\r\nSM: Value\r\n\r\n"),
  251. %% Receive the server preface.
  252. {ok, << Len:24 >>} = gen_tcp:recv(Socket, 3, 1000),
  253. {ok, << 4:8, 0:40, _:Len/binary >>} = gen_tcp:recv(Socket, 6 + Len, 1000),
  254. %% We expect the server to close the connection when it receives a bad preface.
  255. %% The server may however have already started sending the response to the
  256. %% initial HTTP/1.1 request.
  257. Received = lists:reverse(lists:foldl(fun(_, Acc) ->
  258. case gen_tcp:recv(Socket, 9, 1000) of
  259. {ok, << SkipLen:24, 1:8, _:8, 1:32 >>} ->
  260. {ok, _} = gen_tcp:recv(Socket, SkipLen, 1000),
  261. [headers|Acc];
  262. {ok, << SkipLen:24, 0:8, _:8, 1:32 >>} ->
  263. {ok, _} = gen_tcp:recv(Socket, SkipLen, 1000),
  264. [data|Acc];
  265. {error, _} ->
  266. [closed|Acc]
  267. end
  268. end, [], [1, 2, 3])),
  269. case Received of
  270. [closed|_] -> ok;
  271. [headers, closed|_] -> ok;
  272. [headers, data, closed] -> ok
  273. end.
  274. http_upgrade_reject_missing_client_preface_settings(Config) ->
  275. doc("Servers must treat an invalid connection preface as a "
  276. "connection error of type PROTOCOL_ERROR. (RFC7540 3.2, RFC7540 3.5)"),
  277. {ok, Socket} = gen_tcp:connect("localhost", config(port, Config), [binary, {active, false}]),
  278. ok = gen_tcp:send(Socket, [
  279. "GET / HTTP/1.1\r\n"
  280. "Host: localhost\r\n"
  281. "Connection: Upgrade, HTTP2-Settings\r\n"
  282. "Upgrade: h2c\r\n"
  283. "HTTP2-Settings: ", base64:encode(cow_http2:settings_payload(#{})), "\r\n",
  284. "\r\n"]),
  285. ok = do_recv_101(Socket),
  286. %% Send a valid preface sequence except followed by a PING instead of a SETTINGS frame.
  287. ok = gen_tcp:send(Socket, ["PRI * HTTP/2.0\r\n\r\nSM\r\n\r\n", cow_http2:ping(0)]),
  288. %% Receive the server preface.
  289. {ok, << Len:24 >>} = gen_tcp:recv(Socket, 3, 1000),
  290. {ok, << 4:8, 0:40, _:Len/binary >>} = gen_tcp:recv(Socket, 6 + Len, 1000),
  291. %% We expect the server to close the connection when it receives a bad preface.
  292. %% The server may however have already started sending the response to the
  293. %% initial HTTP/1.1 request.
  294. Received = lists:reverse(lists:foldl(fun(_, Acc) ->
  295. case gen_tcp:recv(Socket, 9, 1000) of
  296. {ok, << SkipLen:24, 1:8, _:8, 1:32 >>} ->
  297. {ok, _} = gen_tcp:recv(Socket, SkipLen, 1000),
  298. [headers|Acc];
  299. {ok, << SkipLen:24, 0:8, _:8, 1:32 >>} ->
  300. {ok, _} = gen_tcp:recv(Socket, SkipLen, 1000),
  301. [data|Acc];
  302. {error, _} ->
  303. [closed|Acc]
  304. end
  305. end, [], [1, 2, 3])),
  306. case Received of
  307. [closed|_] -> ok;
  308. [headers, closed|_] -> ok;
  309. [headers, data, closed] -> ok
  310. end.
  311. http_upgrade_reject_invalid_client_preface_settings(Config) ->
  312. doc("Servers must treat an invalid connection preface as a "
  313. "connection error of type PROTOCOL_ERROR. (RFC7540 3.2, RFC7540 3.5)"),
  314. {ok, Socket} = gen_tcp:connect("localhost", config(port, Config), [binary, {active, false}]),
  315. ok = gen_tcp:send(Socket, [
  316. "GET / HTTP/1.1\r\n"
  317. "Host: localhost\r\n"
  318. "Connection: Upgrade, HTTP2-Settings\r\n"
  319. "Upgrade: h2c\r\n"
  320. "HTTP2-Settings: ", base64:encode(cow_http2:settings_payload(#{})), "\r\n",
  321. "\r\n"]),
  322. ok = do_recv_101(Socket),
  323. %% Send a valid preface sequence except followed by a badly formed SETTINGS frame.
  324. ok = gen_tcp:send(Socket, ["PRI * HTTP/2.0\r\n\r\nSM\r\n\r\n", << 0:24, 4:8, 0:9, 1:31 >>]),
  325. %% Receive the server preface.
  326. {ok, << Len:24 >>} = gen_tcp:recv(Socket, 3, 1000),
  327. {ok, << 4:8, 0:40, _:Len/binary >>} = gen_tcp:recv(Socket, 6 + Len, 1000),
  328. %% We expect the server to close the connection when it receives a bad preface.
  329. %% The server may however have already started sending the response to the
  330. %% initial HTTP/1.1 request.
  331. Received = lists:reverse(lists:foldl(fun(_, Acc) ->
  332. case gen_tcp:recv(Socket, 9, 1000) of
  333. {ok, << SkipLen:24, 1:8, _:8, 1:32 >>} ->
  334. {ok, _} = gen_tcp:recv(Socket, SkipLen, 1000),
  335. [headers|Acc];
  336. {ok, << SkipLen:24, 0:8, _:8, 1:32 >>} ->
  337. {ok, _} = gen_tcp:recv(Socket, SkipLen, 1000),
  338. [data|Acc];
  339. {error, _} ->
  340. [closed|Acc]
  341. end
  342. end, [], [1, 2, 3])),
  343. case Received of
  344. [closed|_] -> ok;
  345. [headers, closed|_] -> ok;
  346. [headers, data, closed] -> ok
  347. end.
  348. http_upgrade_accept_client_preface_empty_settings(Config) ->
  349. doc("The SETTINGS frame in the client preface may be empty. (RFC7540 3.2, RFC7540 3.5)"),
  350. {ok, Socket} = gen_tcp:connect("localhost", config(port, Config), [binary, {active, false}]),
  351. ok = gen_tcp:send(Socket, [
  352. "GET / HTTP/1.1\r\n"
  353. "Host: localhost\r\n"
  354. "Connection: Upgrade, HTTP2-Settings\r\n"
  355. "Upgrade: h2c\r\n"
  356. "HTTP2-Settings: ", base64:encode(cow_http2:settings_payload(#{})), "\r\n",
  357. "\r\n"]),
  358. ok = do_recv_101(Socket),
  359. %% Send a valid preface sequence except followed by an empty SETTINGS frame.
  360. ok = gen_tcp:send(Socket, ["PRI * HTTP/2.0\r\n\r\nSM\r\n\r\n", cow_http2:settings(#{})]),
  361. %% Receive the server preface.
  362. {ok, << Len:24 >>} = gen_tcp:recv(Socket, 3, 1000),
  363. {ok, << 4:8, 0:40, _:Len/binary >>} = gen_tcp:recv(Socket, 6 + Len, 1000),
  364. %% Receive the SETTINGS ack. The response might arrive beforehand.
  365. Received = lists:reverse(lists:foldl(fun(_, Acc) ->
  366. case gen_tcp:recv(Socket, 9, 1000) of
  367. {ok, << SkipLen:24, 1:8, _:8, 1:32 >>} ->
  368. {ok, _} = gen_tcp:recv(Socket, SkipLen, 1000),
  369. [headers|Acc];
  370. {ok, << SkipLen:24, 0:8, _:8, 1:32 >>} ->
  371. {ok, _} = gen_tcp:recv(Socket, SkipLen, 1000),
  372. [data|Acc];
  373. {ok, << 0:24, 4:8, 1:8, 0:32 >>} ->
  374. [settings_ack|Acc]
  375. end
  376. end, [], [1, 2, 3])),
  377. case Received of
  378. [settings_ack|_] -> ok;
  379. [headers, settings_ack|_] -> ok;
  380. [headers, data, settings_ack] -> ok
  381. end.
  382. http_upgrade_client_preface_settings_ack_timeout(Config) ->
  383. doc("The SETTINGS frames sent by the client must be acknowledged. (RFC7540 3.5, RFC7540 6.5.3)"),
  384. {ok, Socket} = gen_tcp:connect("localhost", config(port, Config), [binary, {active, false}]),
  385. ok = gen_tcp:send(Socket, [
  386. "GET / HTTP/1.1\r\n"
  387. "Host: localhost\r\n"
  388. "Connection: Upgrade, HTTP2-Settings\r\n"
  389. "Upgrade: h2c\r\n"
  390. "HTTP2-Settings: ", base64:encode(cow_http2:settings_payload(#{})), "\r\n",
  391. "\r\n"]),
  392. ok = do_recv_101(Socket),
  393. %% Send a valid preface.
  394. ok = gen_tcp:send(Socket, ["PRI * HTTP/2.0\r\n\r\nSM\r\n\r\n", cow_http2:settings(#{})]),
  395. %% Receive the server preface.
  396. {ok, << Len:24 >>} = gen_tcp:recv(Socket, 3, 1000),
  397. {ok, << 4:8, 0:40, _:Len/binary >>} = gen_tcp:recv(Socket, 6 + Len, 1000),
  398. %% Skip the SETTINGS ack. Receive a GOAWAY with reason SETTINGS_TIMEOUT,
  399. %% possibly following a HEADERS or HEADERS and DATA frames.
  400. Received = lists:reverse(lists:foldl(fun(_, Acc) ->
  401. case gen_tcp:recv(Socket, 9, 6000) of
  402. {ok, << 0:24, 4:8, 1:8, 0:32 >>} ->
  403. Acc;
  404. {ok, << SkipLen:24, 1:8, _:8, 1:32 >>} ->
  405. {ok, _} = gen_tcp:recv(Socket, SkipLen, 1000),
  406. [headers|Acc];
  407. {ok, << SkipLen:24, 0:8, _:8, 1:32 >>} ->
  408. {ok, _} = gen_tcp:recv(Socket, SkipLen, 1000),
  409. [data|Acc];
  410. {ok, << 8:24, 7:8, 0:40 >>} ->
  411. %% We expect a SETTINGS_TIMEOUT reason.
  412. {ok, << 1:32, 4:32 >>} = gen_tcp:recv(Socket, 8, 1000),
  413. [goaway|Acc];
  414. {error, _} ->
  415. %% Can be timeouts, ignore them.
  416. Acc
  417. end
  418. end, [], [1, 2, 3, 4])),
  419. case Received of
  420. [goaway] -> ok;
  421. [headers, goaway] -> ok;
  422. [headers, data, goaway] -> ok
  423. end.
  424. %% @todo We need a successful test with actual options in HTTP2-Settings.
  425. %% SETTINGS_MAX_FRAME_SIZE is probably the easiest to test. The relevant
  426. %% RFC quote is:
  427. %%
  428. %% 3.2.1
  429. %% A server decodes and interprets these values as it would any other
  430. %% SETTINGS frame. Explicit acknowledgement of these settings
  431. %% (Section 6.5.3) is not necessary, since a 101 response serves as
  432. %% implicit acknowledgement.
  433. %% @todo We need to test an upgrade with a request body. It is probably
  434. %% worth having a configuration value for how much we accept while still
  435. %% upgrading (if too big, we would just stay on HTTP/1.1). We therefore
  436. %% needs a test for when the body is small enough, and one for when the
  437. %% body is larger than we accept. The relevant RFC quote is:
  438. %%
  439. %% 3.2
  440. %% Requests that contain a payload body MUST be sent in their entirety
  441. %% before the client can send HTTP/2 frames. This means that a large
  442. %% request can block the use of the connection until it is completely
  443. %% sent.
  444. %% @todo We should definitely have a test with OPTIONS. The relevant
  445. %% RFC quote is:
  446. %%
  447. %% 3.2
  448. %% If concurrency of an initial request with subsequent requests is
  449. %% important, an OPTIONS request can be used to perform the upgrade to
  450. %% HTTP/2, at the cost of an additional round trip.
  451. %% @todo If we ever handle priority, we need to check that the initial
  452. %% HTTP/1.1 request has default priority. The relevant RFC quote is:
  453. %%
  454. %% 3.2
  455. %% The HTTP/1.1 request that is sent prior to upgrade is assigned a
  456. %% stream identifier of 1 (see Section 5.1.1) with default priority
  457. %% values (Section 5.3.5).
  458. http_upgrade_response(Config) ->
  459. doc("A response must be sent to the initial HTTP/1.1 request "
  460. "after switching to HTTP/2. The response must use "
  461. "the stream identifier 1. (RFC7540 3.2)"),
  462. {ok, Socket} = gen_tcp:connect("localhost", config(port, Config), [binary, {active, false}]),
  463. ok = gen_tcp:send(Socket, [
  464. "GET / HTTP/1.1\r\n"
  465. "Host: localhost\r\n"
  466. "Connection: Upgrade, HTTP2-Settings\r\n"
  467. "Upgrade: h2c\r\n"
  468. "HTTP2-Settings: ", base64:encode(cow_http2:settings_payload(#{})), "\r\n",
  469. "\r\n"]),
  470. ok = do_recv_101(Socket),
  471. %% Send a valid preface.
  472. %% @todo Use non-empty SETTINGS here. Just because.
  473. ok = gen_tcp:send(Socket, ["PRI * HTTP/2.0\r\n\r\nSM\r\n\r\n", cow_http2:settings(#{})]),
  474. %% Receive the server preface.
  475. {ok, << Len:24 >>} = gen_tcp:recv(Socket, 3, 1000),
  476. {ok, << 4:8, 0:40, _:Len/binary >>} = gen_tcp:recv(Socket, 6 + Len, 1000),
  477. %% Send the SETTINGS ack.
  478. ok = gen_tcp:send(Socket, cow_http2:settings_ack()),
  479. %% Receive the SETTINGS ack, and the response HEADERS and DATA (Stream ID 1).
  480. Received = lists:reverse(lists:foldl(fun(_, Acc) ->
  481. case gen_tcp:recv(Socket, 9, 1000) of
  482. {ok, << 0:24, 4:8, 1:8, 0:32 >>} ->
  483. [settings_ack|Acc];
  484. {ok, << SkipLen:24, 1:8, _:8, 1:32 >>} ->
  485. {ok, _} = gen_tcp:recv(Socket, SkipLen, 1000),
  486. [headers|Acc];
  487. {ok, << SkipLen:24, 0:8, _:8, 1:32 >>} ->
  488. {ok, _} = gen_tcp:recv(Socket, SkipLen, 1000),
  489. [data|Acc]
  490. end
  491. end, [], [1, 2, 3])),
  492. case Received of
  493. [settings_ack, headers, data] -> ok;
  494. [headers, settings_ack, data] -> ok;
  495. [headers, data, settings_ack] -> ok
  496. end.
  497. http_upgrade_response_half_closed(Config) ->
  498. doc("The stream for the initial HTTP/1.1 request is half-closed. (RFC7540 3.2)"),
  499. %% Try sending more data after the upgrade and get an error.
  500. {ok, Socket} = gen_tcp:connect("localhost", config(port, Config), [binary, {active, false}]),
  501. ok = gen_tcp:send(Socket, [
  502. "GET / HTTP/1.1\r\n"
  503. "Host: localhost\r\n"
  504. "Connection: Upgrade, HTTP2-Settings\r\n"
  505. "Upgrade: h2c\r\n"
  506. "HTTP2-Settings: ", base64:encode(cow_http2:settings_payload(#{})), "\r\n",
  507. "\r\n"]),
  508. ok = do_recv_101(Socket),
  509. %% Send a valid preface followed by an unexpected DATA frame.
  510. ok = gen_tcp:send(Socket, [
  511. "PRI * HTTP/2.0\r\n\r\nSM\r\n\r\n",
  512. cow_http2:settings(#{}),
  513. cow_http2:data(1, fin, <<"Unexpected DATA frame.">>)
  514. ]),
  515. %% Receive the server preface.
  516. {ok, << Len:24 >>} = gen_tcp:recv(Socket, 3, 1000),
  517. {ok, << 4:8, 0:40, _:Len/binary >>} = gen_tcp:recv(Socket, 6 + Len, 1000),
  518. %% Skip the SETTINGS ack. Receive an RST_STREAM possibly following by
  519. %% a HEADERS frame, or a GOAWAY following HEADERS and DATA. This
  520. %% corresponds to the stream being in half-closed and closed states.
  521. %% The reason must be STREAM_CLOSED.
  522. Received = lists:reverse(lists:foldl(fun(_, Acc) ->
  523. case gen_tcp:recv(Socket, 9, 1000) of
  524. {ok, << 0:24, 4:8, 1:8, 0:32 >>} ->
  525. Acc;
  526. {ok, << SkipLen:24, 1:8, _:8, 1:32 >>} ->
  527. {ok, _} = gen_tcp:recv(Socket, SkipLen, 1000),
  528. [headers|Acc];
  529. {ok, << SkipLen:24, 0:8, _:8, 1:32 >>} ->
  530. {ok, _} = gen_tcp:recv(Socket, SkipLen, 1000),
  531. [data|Acc];
  532. {ok, << 4:24, 3:8, 0:8, 1:32 >>} ->
  533. %% We expect a STREAM_CLOSED reason.
  534. {ok, << 5:32 >>} = gen_tcp:recv(Socket, 4, 1000),
  535. [rst_stream|Acc];
  536. {ok, << 8:24, 7:8, 0:40 >>} ->
  537. %% We expect a STREAM_CLOSED reason.
  538. {ok, << 1:32, 5:32 >>} = gen_tcp:recv(Socket, 8, 1000),
  539. [goaway|Acc];
  540. {error, _} ->
  541. %% Can be timeouts, ignore them.
  542. Acc
  543. end
  544. end, [], [1, 2, 3, 4])),
  545. case Received of
  546. [rst_stream] -> ok;
  547. [headers, rst_stream] -> ok;
  548. [headers, data, goaway] -> ok
  549. end.
  550. %% Starting HTTP/2 for "https" URIs.
  551. alpn_ignore_h2c(Config) ->
  552. doc("An h2c ALPN protocol identifier must be ignored. (RFC7540 3.3)"),
  553. {ok, Socket} = ssl:connect("localhost", config(port, Config),
  554. [{alpn_advertised_protocols, [<<"h2c">>, <<"http/1.1">>]}, binary, {active, false}]),
  555. {ok, <<"http/1.1">>} = ssl:negotiated_protocol(Socket),
  556. ok.
  557. alpn_server_preface(Config) ->
  558. doc("The first frame must be a SETTINGS frame "
  559. "for the server connection preface. (RFC7540 3.3, RFC7540 3.5, RFC7540 6.5)"),
  560. {ok, Socket} = ssl:connect("localhost", config(port, Config),
  561. [{alpn_advertised_protocols, [<<"h2">>]}, binary, {active, false}]),
  562. {ok, <<"h2">>} = ssl:negotiated_protocol(Socket),
  563. %% Receive the server preface.
  564. {ok, << _:24, 4:8, 0:40 >>} = ssl:recv(Socket, 9, 1000),
  565. ok.
  566. alpn_client_preface_timeout(Config) ->
  567. doc("Clients negotiating HTTP/2 and not sending a preface in "
  568. "a timely manner must be disconnected."),
  569. {ok, Socket} = ssl:connect("localhost", config(port, Config),
  570. [{alpn_advertised_protocols, [<<"h2">>]}, binary, {active, false}]),
  571. {ok, <<"h2">>} = ssl:negotiated_protocol(Socket),
  572. %% Receive the server preface.
  573. {ok, << Len:24 >>} = ssl:recv(Socket, 3, 1000),
  574. {ok, << 4:8, 0:40, _:Len/binary >>} = ssl:recv(Socket, 6 + Len, 1000),
  575. %% Do not send the preface. Wait for the server to disconnect us.
  576. {error, closed} = ssl:recv(Socket, 3, 6000),
  577. ok.
  578. alpn_reject_missing_client_preface(Config) ->
  579. doc("Servers must treat an invalid connection preface as a "
  580. "connection error of type PROTOCOL_ERROR. (RFC7540 3.3, RFC7540 3.5)"),
  581. {ok, Socket} = ssl:connect("localhost", config(port, Config),
  582. [{alpn_advertised_protocols, [<<"h2">>]}, binary, {active, false}]),
  583. {ok, <<"h2">>} = ssl:negotiated_protocol(Socket),
  584. %% Send a SETTINGS frame directly instead of the proper preface.
  585. ok = ssl:send(Socket, cow_http2:settings(#{})),
  586. %% Receive the server preface.
  587. {ok, << Len:24 >>} = ssl:recv(Socket, 3, 1000),
  588. {ok, << 4:8, 0:40, _:Len/binary >>} = ssl:recv(Socket, 6 + Len, 1000),
  589. %% We expect the server to close the connection when it receives a bad preface.
  590. {error, closed} = ssl:recv(Socket, 3, 1000),
  591. ok.
  592. alpn_reject_invalid_client_preface(Config) ->
  593. doc("Servers must treat an invalid connection preface as a "
  594. "connection error of type PROTOCOL_ERROR. (RFC7540 3.3, RFC7540 3.5)"),
  595. {ok, Socket} = ssl:connect("localhost", config(port, Config),
  596. [{alpn_advertised_protocols, [<<"h2">>]}, binary, {active, false}]),
  597. {ok, <<"h2">>} = ssl:negotiated_protocol(Socket),
  598. %% Send a slightly incorrect preface.
  599. ok = ssl:send(Socket, "PRI * HTTP/2.0\r\n\r\nSM: Value\r\n\r\n"),
  600. %% Receive the server preface.
  601. {ok, << Len:24 >>} = ssl:recv(Socket, 3, 1000),
  602. {ok, << 4:8, 0:40, _:Len/binary >>} = ssl:recv(Socket, 6 + Len, 1000),
  603. %% We expect the server to close the connection when it receives a bad preface.
  604. {error, closed} = ssl:recv(Socket, 3, 1000),
  605. ok.
  606. alpn_reject_missing_client_preface_settings(Config) ->
  607. doc("Servers must treat an invalid connection preface as a "
  608. "connection error of type PROTOCOL_ERROR. (RFC7540 3.3, RFC7540 3.5)"),
  609. {ok, Socket} = ssl:connect("localhost", config(port, Config),
  610. [{alpn_advertised_protocols, [<<"h2">>]}, binary, {active, false}]),
  611. {ok, <<"h2">>} = ssl:negotiated_protocol(Socket),
  612. %% Send a valid preface sequence except followed by a PING instead of a SETTINGS frame.
  613. ok = ssl:send(Socket, ["PRI * HTTP/2.0\r\n\r\nSM\r\n\r\n", cow_http2:ping(0)]),
  614. %% Receive the server preface.
  615. {ok, << Len:24 >>} = ssl:recv(Socket, 3, 1000),
  616. {ok, << 4:8, 0:40, _:Len/binary >>} = ssl:recv(Socket, 6 + Len, 1000),
  617. %% We expect the server to close the connection when it receives a bad preface.
  618. {error, closed} = ssl:recv(Socket, 3, 1000),
  619. ok.
  620. alpn_reject_invalid_client_preface_settings(Config) ->
  621. doc("Servers must treat an invalid connection preface as a "
  622. "connection error of type PROTOCOL_ERROR. (RFC7540 3.3, RFC7540 3.5)"),
  623. {ok, Socket} = ssl:connect("localhost", config(port, Config),
  624. [{alpn_advertised_protocols, [<<"h2">>]}, binary, {active, false}]),
  625. {ok, <<"h2">>} = ssl:negotiated_protocol(Socket),
  626. %% Send a valid preface sequence except followed by a badly formed SETTINGS frame.
  627. ok = ssl:send(Socket, ["PRI * HTTP/2.0\r\n\r\nSM\r\n\r\n", << 0:24, 4:8, 0:9, 1:31 >>]),
  628. %% Receive the server preface.
  629. {ok, << Len:24 >>} = ssl:recv(Socket, 3, 1000),
  630. {ok, << 4:8, 0:40, _:Len/binary >>} = ssl:recv(Socket, 6 + Len, 1000),
  631. %% We expect the server to close the connection when it receives a bad preface.
  632. {error, closed} = ssl:recv(Socket, 3, 1000),
  633. ok.
  634. alpn_accept_client_preface_empty_settings(Config) ->
  635. doc("The SETTINGS frame in the client preface may be empty. (RFC7540 3.3, RFC7540 3.5)"),
  636. {ok, Socket} = ssl:connect("localhost", config(port, Config),
  637. [{alpn_advertised_protocols, [<<"h2">>]}, binary, {active, false}]),
  638. {ok, <<"h2">>} = ssl:negotiated_protocol(Socket),
  639. %% Send a valid preface sequence except followed by an empty SETTINGS frame.
  640. ok = ssl:send(Socket, ["PRI * HTTP/2.0\r\n\r\nSM\r\n\r\n", cow_http2:settings(#{})]),
  641. %% Receive the server preface.
  642. {ok, << Len:24 >>} = ssl:recv(Socket, 3, 1000),
  643. {ok, << 4:8, 0:40, _:Len/binary >>} = ssl:recv(Socket, 6 + Len, 1000),
  644. %% Receive the SETTINGS ack.
  645. {ok, << 0:24, 4:8, 1:8, 0:32 >>} = ssl:recv(Socket, 9, 1000),
  646. ok.
  647. alpn_client_preface_settings_ack_timeout(Config) ->
  648. doc("Failure to acknowledge the server's SETTINGS frame "
  649. "results in a SETTINGS_TIMEOUT connection error. (RFC7540 3.5, RFC7540 6.5.3)"),
  650. {ok, Socket} = ssl:connect("localhost", config(port, Config),
  651. [{alpn_advertised_protocols, [<<"h2">>]}, binary, {active, false}]),
  652. {ok, <<"h2">>} = ssl:negotiated_protocol(Socket),
  653. %% Send a valid preface.
  654. ok = ssl:send(Socket, ["PRI * HTTP/2.0\r\n\r\nSM\r\n\r\n", cow_http2:settings(#{})]),
  655. %% Receive the server preface.
  656. {ok, << Len:24 >>} = ssl:recv(Socket, 3, 1000),
  657. {ok, << 4:8, 0:40, _:Len/binary >>} = ssl:recv(Socket, 6 + Len, 1000),
  658. %% Receive the SETTINGS ack.
  659. {ok, << 0:24, 4:8, 1:8, 0:32 >>} = ssl:recv(Socket, 9, 1000),
  660. %% Do not ack the server preface. Expect a GOAWAY with reason SETTINGS_TIMEOUT.
  661. {ok, << _:24, 7:8, _:72, 4:32 >>} = ssl:recv(Socket, 17, 6000),
  662. ok.
  663. alpn(Config) ->
  664. doc("Successful ALPN negotiation. (RFC7540 3.3)"),
  665. {ok, Socket} = ssl:connect("localhost", config(port, Config),
  666. [{alpn_advertised_protocols, [<<"h2">>]}, binary, {active, false}]),
  667. {ok, <<"h2">>} = ssl:negotiated_protocol(Socket),
  668. %% Send a valid preface.
  669. %% @todo Use non-empty SETTINGS here. Just because.
  670. ok = ssl:send(Socket, ["PRI * HTTP/2.0\r\n\r\nSM\r\n\r\n", cow_http2:settings(#{})]),
  671. %% Receive the server preface.
  672. {ok, << Len:24 >>} = ssl:recv(Socket, 3, 1000),
  673. {ok, << 4:8, 0:40, _:Len/binary >>} = ssl:recv(Socket, 6 + Len, 1000),
  674. %% Send the SETTINGS ack.
  675. ok = ssl:send(Socket, cow_http2:settings_ack()),
  676. %% Receive the SETTINGS ack.
  677. {ok, << 0:24, 4:8, 1:8, 0:32 >>} = ssl:recv(Socket, 9, 1000),
  678. %% Wait until after the SETTINGS ack timeout was supposed to trigger.
  679. receive after 6000 -> ok end,
  680. %% Send a PING.
  681. ok = ssl:send(Socket, cow_http2:ping(0)),
  682. %% Receive a PING ack back, indicating the connection is still up.
  683. {ok, << 8:24, 6:8, 0:7, 1:1, 0:96 >>} = ssl:recv(Socket, 17, 1000),
  684. ok.
  685. %% Starting HTTP/2 with prior knowledge.
  686. prior_knowledge_reject_tls(Config) ->
  687. doc("Implementations that support HTTP/2 over TLS must use ALPN. (RFC7540 3.4)"),
  688. {ok, Socket} = ssl:connect("localhost", config(port, Config), [binary, {active, false}]),
  689. %% Send a valid preface.
  690. ok = ssl:send(Socket, ["PRI * HTTP/2.0\r\n\r\nSM\r\n\r\n", cow_http2:settings(#{})]),
  691. %% We expect the server to send an HTTP 400 error
  692. %% when trying to use HTTP/2 without going through ALPN negotiation.
  693. {ok, <<"HTTP/1.1 400">>} = ssl:recv(Socket, 12, 1000),
  694. ok.
  695. prior_knowledge_server_preface(Config) ->
  696. doc("The first frame must be a SETTINGS frame "
  697. "for the server connection preface. (RFC7540 3.4, RFC7540 3.5, RFC7540 6.5)"),
  698. {ok, Socket} = gen_tcp:connect("localhost", config(port, Config), [binary, {active, false}]),
  699. %% Send a valid preface.
  700. ok = gen_tcp:send(Socket, ["PRI * HTTP/2.0\r\n\r\nSM\r\n\r\n", cow_http2:settings(#{})]),
  701. %% Receive the server preface.
  702. {ok, << _:24, 4:8, 0:40 >>} = gen_tcp:recv(Socket, 9, 1000),
  703. ok.
  704. %% Note: the client preface timeout doesn't apply in this case,
  705. %% so we don't test it. An HTTP/1.1 client that does not send
  706. %% a request in a timely manner will get disconnected by the
  707. %% HTTP protocol code, not by HTTP/2's.
  708. %% Note: the test that starts by sending a SETTINGS frame is
  709. %% redundant with tests sending garbage on the connection.
  710. %% From the point of view of an HTTP/1.1 connection, a
  711. %% SETTINGS frame is indistinguishable from garbage.
  712. prior_knowledge_reject_invalid_client_preface(Config) ->
  713. doc("An incorrect preface is an invalid HTTP/1.1 request. (RFC7540 3.4)"),
  714. {ok, Socket} = gen_tcp:connect("localhost", config(port, Config), [binary, {active, false}]),
  715. %% Send a slightly incorrect preface.
  716. ok = gen_tcp:send(Socket, "PRI * HTTP/2.0\r\n\r\nSM: Value\r\n\r\n"),
  717. %% We propagate to HTTP/2 after checking only the request-line.
  718. %% The server then sends its preface before checking the full client preface.
  719. {ok, << Len:24 >>} = gen_tcp:recv(Socket, 3, 1000),
  720. {ok, << 4:8, 0:40, _:Len/binary >>} = gen_tcp:recv(Socket, 6 + Len, 1000),
  721. %% We expect the server to close the connection when it receives a bad preface.
  722. {error, closed} = gen_tcp:recv(Socket, 9, 1000),
  723. ok.
  724. prior_knowledge_reject_missing_client_preface_settings(Config) ->
  725. doc("Servers must treat an invalid connection preface as a "
  726. "connection error of type PROTOCOL_ERROR. (RFC7540 3.4, RFC7540 3.5)"),
  727. {ok, Socket} = gen_tcp:connect("localhost", config(port, Config), [binary, {active, false}]),
  728. %% Send a valid preface sequence except followed by a PING instead of a SETTINGS frame.
  729. ok = gen_tcp:send(Socket, ["PRI * HTTP/2.0\r\n\r\nSM\r\n\r\n", cow_http2:ping(0)]),
  730. %% Receive the server preface.
  731. {ok, << Len:24 >>} = gen_tcp:recv(Socket, 3, 1000),
  732. {ok, << 4:8, 0:40, _:Len/binary >>} = gen_tcp:recv(Socket, 6 + Len, 1000),
  733. %% We expect the server to close the connection when it receives a bad preface.
  734. {error, closed} = gen_tcp:recv(Socket, 9, 1000),
  735. ok.
  736. prior_knowledge_reject_invalid_client_preface_settings(Config) ->
  737. doc("Servers must treat an invalid connection preface as a "
  738. "connection error of type PROTOCOL_ERROR. (RFC7540 3.4, RFC7540 3.5)"),
  739. {ok, Socket} = gen_tcp:connect("localhost", config(port, Config), [binary, {active, false}]),
  740. %% Send a valid preface sequence except followed by a badly formed SETTINGS frame.
  741. ok = gen_tcp:send(Socket, ["PRI * HTTP/2.0\r\n\r\nSM\r\n\r\n", << 0:24, 4:8, 0:9, 1:31 >>]),
  742. %% Receive the server preface.
  743. {ok, << Len:24 >>} = gen_tcp:recv(Socket, 3, 1000),
  744. {ok, << 4:8, 0:40, _:Len/binary >>} = gen_tcp:recv(Socket, 6 + Len, 1000),
  745. %% We expect the server to close the connection when it receives a bad preface.
  746. {error, closed} = gen_tcp:recv(Socket, 9, 1000),
  747. ok.
  748. prior_knowledge_accept_client_preface_empty_settings(Config) ->
  749. doc("The SETTINGS frame in the client preface may be empty. (RFC7540 3.4, RFC7540 3.5)"),
  750. {ok, Socket} = gen_tcp:connect("localhost", config(port, Config), [binary, {active, false}]),
  751. %% Send a valid preface sequence except followed by an empty SETTINGS frame.
  752. ok = gen_tcp:send(Socket, ["PRI * HTTP/2.0\r\n\r\nSM\r\n\r\n", cow_http2:settings(#{})]),
  753. %% Receive the server preface.
  754. {ok, << Len:24 >>} = gen_tcp:recv(Socket, 3, 1000),
  755. {ok, << 4:8, 0:40, _:Len/binary >>} = gen_tcp:recv(Socket, 6 + Len, 1000),
  756. %% Receive the SETTINGS ack.
  757. {ok, << 0:24, 4:8, 1:8, 0:32 >>} = gen_tcp:recv(Socket, 9, 1000),
  758. ok.
  759. prior_knowledge_client_preface_settings_ack_timeout(Config) ->
  760. doc("The SETTINGS frames sent by the client must be acknowledged. (RFC7540 3.5, RFC7540 6.5.3)"),
  761. {ok, Socket} = gen_tcp:connect("localhost", config(port, Config), [binary, {active, false}]),
  762. %% Send a valid preface.
  763. ok = gen_tcp:send(Socket, ["PRI * HTTP/2.0\r\n\r\nSM\r\n\r\n", cow_http2:settings(#{})]),
  764. %% Receive the server preface.
  765. {ok, << Len:24 >>} = gen_tcp:recv(Socket, 3, 1000),
  766. {ok, << 4:8, 0:40, _:Len/binary >>} = gen_tcp:recv(Socket, 6 + Len, 1000),
  767. %% Receive the SETTINGS ack.
  768. {ok, << 0:24, 4:8, 1:8, 0:32 >>} = gen_tcp:recv(Socket, 9, 1000),
  769. %% Do not ack the server preface. Expect a GOAWAY with reason SETTINGS_TIMEOUT.
  770. {ok, << _:24, 7:8, _:72, 4:32 >>} = gen_tcp:recv(Socket, 17, 6000),
  771. ok.
  772. %% Do a prior knowledge handshake.
  773. do_handshake(Config) ->
  774. {ok, Socket} = gen_tcp:connect("localhost", config(port, Config), [binary, {active, false}]),
  775. %% Send a valid preface.
  776. ok = gen_tcp:send(Socket, ["PRI * HTTP/2.0\r\n\r\nSM\r\n\r\n", cow_http2:settings(#{})]),
  777. %% Receive the server preface.
  778. {ok, << Len:24 >>} = gen_tcp:recv(Socket, 3, 1000),
  779. {ok, << 4:8, 0:40, _:Len/binary >>} = gen_tcp:recv(Socket, 6 + Len, 1000),
  780. %% Send the SETTINGS ack.
  781. ok = gen_tcp:send(Socket, cow_http2:settings_ack()),
  782. %% Receive the SETTINGS ack.
  783. {ok, << 0:24, 4:8, 1:8, 0:32 >>} = gen_tcp:recv(Socket, 9, 1000),
  784. {ok, Socket}.
  785. prior_knowledge(Config) ->
  786. doc("Streams can be initiated after a successful HTTP/2 connection "
  787. "with prior knowledge of server capabilities. (RFC7540 3.4)"),
  788. %% @todo Use non-empty SETTINGS here. Just because.
  789. {ok, Socket} = do_handshake(Config),
  790. %% Wait until after the SETTINGS ack timeout was supposed to trigger.
  791. receive after 6000 -> ok end,
  792. %% Send a PING.
  793. ok = gen_tcp:send(Socket, cow_http2:ping(0)),
  794. %% Receive a PING ack back, indicating the connection is still up.
  795. {ok, << 8:24, 6:8, 0:7, 1:1, 0:96 >>} = gen_tcp:recv(Socket, 17, 1000),
  796. ok.
  797. %% @todo If we ever add an option to disable HTTP/2, we need to check
  798. %% the following things:
  799. %% * HTTP/1.1 Upgrade returns an HTTP/1.1 response (3.2)
  800. %% * HTTP/1.1 Upgrade errors out if the client sends HTTP/2 frames
  801. %% without waiting for the 101 response (3.2, 3.5)
  802. %% * Prior knowledge handshake fails (3.4)
  803. %% * ALPN selects HTTP/1.1 (3.3)
  804. %% Frame format.
  805. ignore_unknown_frames(Config) ->
  806. doc("Frames of unknown type must be ignored and discarded. (RFC7540 4.1)"),
  807. {ok, Socket} = do_handshake(Config),
  808. %% Send a POST request with a single DATA frame,
  809. %% and an unknown frame type interleaved.
  810. {HeadersBlock, _} = cow_hpack:encode([
  811. {<<":method">>, <<"POST">>},
  812. {<<":scheme">>, <<"http">>},
  813. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  814. {<<":path">>, <<"/echo/read_body">>}
  815. ]),
  816. ok = gen_tcp:send(Socket, [
  817. cow_http2:headers(1, nofin, HeadersBlock),
  818. << 10:24, 99:8, 0:40, 0:80 >>,
  819. cow_http2:data(1, fin, << 0:100/unit:8 >>)
  820. ]),
  821. %% Receive a response with the same DATA frame.
  822. {ok, << SkipLen:24, 1:8, _:8, 1:32 >>} = gen_tcp:recv(Socket, 9, 1000),
  823. {ok, _} = gen_tcp:recv(Socket, SkipLen, 1000),
  824. {ok, << 100:24, 0:8, 1:8, 1:32 >>} = gen_tcp:recv(Socket, 9, 1000),
  825. {ok, << 0:100/unit:8 >>} = gen_tcp:recv(Socket, 100, 1000),
  826. ok.
  827. ignore_data_unknown_flags(Config) ->
  828. doc("Undefined DATA frame flags must be ignored. (RFC7540 4.1, RFC7540 6.1)"),
  829. {ok, Socket} = do_handshake(Config),
  830. %% Send a POST request with a DATA frame with unknown flags.
  831. {HeadersBlock, _} = cow_hpack:encode([
  832. {<<":method">>, <<"POST">>},
  833. {<<":scheme">>, <<"http">>},
  834. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  835. {<<":path">>, <<"/echo/read_body">>}
  836. ]),
  837. ok = gen_tcp:send(Socket, [
  838. cow_http2:headers(1, nofin, HeadersBlock),
  839. << 100:24, 0:8,
  840. 1:1, 1:1, 1:1, 1:1, %% Undefined.
  841. 0:1, %% PADDED.
  842. 1:1, 1:1, %% Undefined.
  843. 1:1, %% END_STREAM.
  844. 0:1, 1:31, 0:100/unit:8 >>
  845. ]),
  846. %% Receive a response with the same DATA frame.
  847. {ok, << SkipLen:24, 1:8, _:8, 1:32 >>} = gen_tcp:recv(Socket, 9, 1000),
  848. {ok, _} = gen_tcp:recv(Socket, SkipLen, 1000),
  849. {ok, << 100:24, 0:8, 1:8, 1:32 >>} = gen_tcp:recv(Socket, 9, 1000),
  850. {ok, << 0:100/unit:8 >>} = gen_tcp:recv(Socket, 100, 1000),
  851. ok.
  852. ignore_headers_unknown_flags(Config) ->
  853. doc("Undefined HEADERS frame flags must be ignored. (RFC7540 4.1, RFC7540 6.2)"),
  854. {ok, Socket} = do_handshake(Config),
  855. %% Send a POST request with a HEADERS frame with unknown flags.
  856. {HeadersBlock, _} = cow_hpack:encode([
  857. {<<":method">>, <<"POST">>},
  858. {<<":scheme">>, <<"http">>},
  859. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  860. {<<":path">>, <<"/echo/read_body">>}
  861. ]),
  862. Len = iolist_size(HeadersBlock),
  863. ok = gen_tcp:send(Socket, [
  864. << Len:24, 1:8,
  865. 1:1, 1:1, %% Undefined.
  866. 0:1, %% PRIORITY.
  867. 1:1, %% Undefined.
  868. 0:1, %% PADDED.
  869. 1:1, %% END_HEADERS.
  870. 1:1, %% Undefined.
  871. 0:1, %% END_STREAM.
  872. 0:1, 1:31 >>,
  873. HeadersBlock,
  874. cow_http2:data(1, fin, << 0:100/unit:8 >>)
  875. ]),
  876. %% Receive a response with the same DATA frame.
  877. {ok, << SkipLen:24, 1:8, _:8, 1:32 >>} = gen_tcp:recv(Socket, 9, 1000),
  878. {ok, _} = gen_tcp:recv(Socket, SkipLen, 1000),
  879. {ok, << 100:24, 0:8, 1:8, 1:32 >>} = gen_tcp:recv(Socket, 9, 1000),
  880. {ok, << 0:100/unit:8 >>} = gen_tcp:recv(Socket, 100, 1000),
  881. ok.
  882. ignore_priority_unknown_flags(Config) ->
  883. doc("Undefined PRIORITY frame flags must be ignored. (RFC7540 4.1, RFC7540 6.3)"),
  884. {ok, Socket} = do_handshake(Config),
  885. %% Send a POST request with an interleaved PRIORITY frame with unknown flags.
  886. {HeadersBlock, _} = cow_hpack:encode([
  887. {<<":method">>, <<"POST">>},
  888. {<<":scheme">>, <<"http">>},
  889. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  890. {<<":path">>, <<"/echo/read_body">>}
  891. ]),
  892. ok = gen_tcp:send(Socket, [
  893. cow_http2:headers(1, nofin, HeadersBlock),
  894. << 5:24, 2:8,
  895. 1:1, 1:1, 1:1, 1:1, 1:1, 1:1, 1:1, 1:1, %% Undefined.
  896. 0:1, 1:31, 0:1, 3:31, 0:8 >>,
  897. cow_http2:data(1, fin, << 0:100/unit:8 >>)
  898. ]),
  899. %% Receive a response with the same DATA frame.
  900. {ok, << SkipLen:24, 1:8, _:8, 1:32 >>} = gen_tcp:recv(Socket, 9, 1000),
  901. {ok, _} = gen_tcp:recv(Socket, SkipLen, 1000),
  902. {ok, << 100:24, 0:8, 1:8, 1:32 >>} = gen_tcp:recv(Socket, 9, 1000),
  903. {ok, << 0:100/unit:8 >>} = gen_tcp:recv(Socket, 100, 1000),
  904. ok.
  905. ignore_rst_stream_unknown_flags(Config) ->
  906. doc("Undefined RST_STREAM frame flags must be ignored. (RFC7540 4.1, RFC7540 6.4)"),
  907. {ok, Socket} = do_handshake(Config),
  908. %% Send a POST request then cancel it with an RST_STREAM frame with unknown flags.
  909. {HeadersBlock, _} = cow_hpack:encode([
  910. {<<":method">>, <<"POST">>},
  911. {<<":scheme">>, <<"http">>},
  912. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  913. {<<":path">>, <<"/echo/read_body">>}
  914. ]),
  915. ok = gen_tcp:send(Socket, [
  916. cow_http2:headers(1, nofin, HeadersBlock),
  917. << 4:24, 3:8,
  918. 1:1, 1:1, 1:1, 1:1, 1:1, 1:1, 1:1, 1:1, %% Undefined.
  919. 0:1, 1:31, 8:32 >>,
  920. cow_http2:headers(3, nofin, HeadersBlock),
  921. cow_http2:data(3, fin, << 0:100/unit:8 >>)
  922. ]),
  923. %% Receive a response with the same DATA frame.
  924. {ok, << SkipLen:24, 1:8, _:8, 3:32 >>} = gen_tcp:recv(Socket, 9, 1000),
  925. {ok, _} = gen_tcp:recv(Socket, SkipLen, 1000),
  926. {ok, << 100:24, 0:8, 1:8, 3:32 >>} = gen_tcp:recv(Socket, 9, 1000),
  927. {ok, << 0:100/unit:8 >>} = gen_tcp:recv(Socket, 100, 1000),
  928. ok.
  929. ignore_settings_unknown_flags(Config) ->
  930. doc("Undefined SETTINGS frame flags must be ignored. (RFC7540 4.1, RFC7540 6.5)"),
  931. {ok, Socket} = do_handshake(Config),
  932. %% Send a SETTINGS frame with unknown flags.
  933. ok = gen_tcp:send(Socket, << 6:24, 4:8,
  934. 1:1, 1:1, 1:1, 1:1, 1:1, 1:1, 1:1, %% Undefined.
  935. 0:1, %% ACK.
  936. 0:32, 2:16, 0:32 >>),
  937. %% Receive a SETTINGS ack.
  938. {ok, << 0:24, 4:8, 0:7, 1:1, 0:32 >>} = gen_tcp:recv(Socket, 9, 1000),
  939. ok.
  940. ignore_push_promise_unknown_flags(Config) ->
  941. doc("Undefined PUSH_PROMISE frame flags must be ignored. (RFC7540 4.1, RFC7540 6.6)"),
  942. {ok, Socket} = do_handshake(Config),
  943. %% Send a PUSH_PROMISE frame with unknown flags.
  944. ok = gen_tcp:send(Socket, << 4:24, 5:8,
  945. 1:1, 1:1, 1:1, 1:1, %% Undefined.
  946. 0:1, %% PADDED.
  947. 1:1, %% END_HEADERS.
  948. 1:1, 1:1, %% Undefined.
  949. 0:1, 1:31, 0:1, 3:31 >>
  950. ),
  951. %% Receive a PROTOCOL_ERROR connection error.
  952. %%
  953. %% Note that it is not possible to distinguish between the expected
  954. %% result and the server rejecting PUSH_PROMISE frames.
  955. {ok, << _:24, 7:8, _:72, 1:32 >>} = gen_tcp:recv(Socket, 17, 6000),
  956. ok.
  957. ignore_ping_unknown_flags(Config) ->
  958. doc("Undefined PING frame flags must be ignored. (RFC7540 4.1, RFC7540 6.7)"),
  959. {ok, Socket} = do_handshake(Config),
  960. %% Send a PING frame with unknown flags.
  961. ok = gen_tcp:send(Socket, << 8:24, 6:8,
  962. 1:1, 1:1, 1:1, 1:1, 1:1, 1:1, 1:1, %% Undefined.
  963. 0:1, %% ACK.
  964. 0:32, 0:64 >>),
  965. %% Receive a PING ACK in return.
  966. {ok, << 8:24, 6:8, _:7, 1:1, _:32, 0:64 >>} = gen_tcp:recv(Socket, 17, 6000),
  967. ok.
  968. ignore_goaway_unknown_flags(Config) ->
  969. doc("Undefined GOAWAY frame flags must be ignored. (RFC7540 4.1, RFC7540 6.8)"),
  970. {ok, Socket} = do_handshake(Config),
  971. %% Send a GOAWAY frame with unknown flags.
  972. ok = gen_tcp:send(Socket, << 8:24, 7:8,
  973. 1:1, 1:1, 1:1, 1:1, 1:1, 1:1, 1:1, 1:1, %% Undefined.
  974. 0:32, 0:64 >>),
  975. %% Receive a GOAWAY frame back.
  976. {ok, << _:24, 7:8, _:72, 0:32 >>} = gen_tcp:recv(Socket, 17, 6000),
  977. ok.
  978. ignore_window_update_unknown_flags(Config) ->
  979. doc("Undefined WINDOW_UPDATE frame flags must be ignored. (RFC7540 4.1, RFC7540 6.9)"),
  980. {ok, Socket} = do_handshake(Config),
  981. %% Send a WINDOW_UPDATE frame with unknown flags.
  982. ok = gen_tcp:send(Socket, << 4:24, 8:8,
  983. 1:1, 1:1, 1:1, 1:1, 1:1, 1:1, 1:1, 1:1, %% Undefined.
  984. 0:32, 1000:32 >>),
  985. %% We expect no errors or replies, therefore we send a PING frame.
  986. ok = gen_tcp:send(Socket, cow_http2:ping(0)),
  987. %% And receive a PING ACK in return.
  988. {ok, << 8:24, 6:8, _:7, 1:1, _:32, 0:64 >>} = gen_tcp:recv(Socket, 17, 6000),
  989. ok.
  990. ignore_continuation_unknown_flags(Config) ->
  991. doc("Undefined CONTINUATION frame flags must be ignored. (RFC7540 4.1, RFC7540 6.10)"),
  992. {ok, Socket} = do_handshake(Config),
  993. %% Send a POST request with a CONTINUATION frame with unknown flags.
  994. {HeadersBlock, _} = cow_hpack:encode([
  995. {<<":method">>, <<"POST">>},
  996. {<<":scheme">>, <<"http">>},
  997. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  998. {<<":path">>, <<"/echo/read_body">>}
  999. ]),
  1000. Len = iolist_size(HeadersBlock),
  1001. ok = gen_tcp:send(Socket, [
  1002. << 0:24, 1:8, 0:8, 0:1, 1:31 >>,
  1003. << Len:24, 9:8,
  1004. 1:1, 1:1, 1:1, 1:1, 1:1, %% Undefined.
  1005. 1:1, %% END_HEADERS.
  1006. 1:1, 1:1, %% Undefined.
  1007. 0:1, 1:31 >>,
  1008. HeadersBlock,
  1009. cow_http2:data(1, fin, << 0:100/unit:8 >>)
  1010. ]),
  1011. %% Receive a response with the same DATA frame.
  1012. {ok, << SkipLen:24, 1:8, _:8, 1:32 >>} = gen_tcp:recv(Socket, 9, 1000),
  1013. {ok, _} = gen_tcp:recv(Socket, SkipLen, 1000),
  1014. {ok, << 100:24, 0:8, 1:8, 1:32 >>} = gen_tcp:recv(Socket, 9, 1000),
  1015. {ok, << 0:100/unit:8 >>} = gen_tcp:recv(Socket, 100, 1000),
  1016. ok.
  1017. %% @todo Flags that have no defined semantics for
  1018. %% a particular frame type MUST be left unset (0x0) when sending. (RFC7540 4.1)
  1019. ignore_data_reserved_bit(Config) ->
  1020. doc("Reserved 1-bit field of DATA frame must be ignored. (RFC7540 4.1, RFC7540 6.1)"),
  1021. {ok, Socket} = do_handshake(Config),
  1022. %% Send a POST request with a DATA frame with the reserved bit set.
  1023. {HeadersBlock, _} = cow_hpack:encode([
  1024. {<<":method">>, <<"POST">>},
  1025. {<<":scheme">>, <<"http">>},
  1026. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  1027. {<<":path">>, <<"/echo/read_body">>}
  1028. ]),
  1029. ok = gen_tcp:send(Socket, [
  1030. cow_http2:headers(1, nofin, HeadersBlock),
  1031. << 100:24, 0:8, 0:7, 1:1,
  1032. 1:1, %% Reserved bit.
  1033. 1:31, 0:100/unit:8 >>
  1034. ]),
  1035. %% Receive a response with the same DATA frame.
  1036. {ok, << SkipLen:24, 1:8, _:8, 1:32 >>} = gen_tcp:recv(Socket, 9, 1000),
  1037. {ok, _} = gen_tcp:recv(Socket, SkipLen, 1000),
  1038. {ok, << 100:24, 0:8, 1:8, 1:32 >>} = gen_tcp:recv(Socket, 9, 1000),
  1039. {ok, << 0:100/unit:8 >>} = gen_tcp:recv(Socket, 100, 1000),
  1040. ok.
  1041. ignore_headers_reserved_bit(Config) ->
  1042. doc("Reserved 1-bit field of HEADERS frame must be ignored. (RFC7540 4.1, RFC7540 6.2)"),
  1043. {ok, Socket} = do_handshake(Config),
  1044. %% Send a POST request with a HEADERS frame with the reserved bit set.
  1045. {HeadersBlock, _} = cow_hpack:encode([
  1046. {<<":method">>, <<"POST">>},
  1047. {<<":scheme">>, <<"http">>},
  1048. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  1049. {<<":path">>, <<"/echo/read_body">>}
  1050. ]),
  1051. Len = iolist_size(HeadersBlock),
  1052. ok = gen_tcp:send(Socket, [
  1053. << Len:24, 1:8, 0:5, 1:1, 0:2,
  1054. 1:1, %% Reserved bit.
  1055. 1:31 >>,
  1056. HeadersBlock,
  1057. cow_http2:data(1, fin, << 0:100/unit:8 >>)
  1058. ]),
  1059. %% Receive a response with the same DATA frame.
  1060. {ok, << SkipLen:24, 1:8, _:8, 1:32 >>} = gen_tcp:recv(Socket, 9, 1000),
  1061. {ok, _} = gen_tcp:recv(Socket, SkipLen, 1000),
  1062. {ok, << 100:24, 0:8, 1:8, 1:32 >>} = gen_tcp:recv(Socket, 9, 1000),
  1063. {ok, << 0:100/unit:8 >>} = gen_tcp:recv(Socket, 100, 1000),
  1064. ok.
  1065. ignore_priority_reserved_bit(Config) ->
  1066. doc("Reserved 1-bit field of PRIORITY frame must be ignored. (RFC7540 4.1, RFC7540 6.3)"),
  1067. {ok, Socket} = do_handshake(Config),
  1068. %% Send a POST request with an interleaved PRIORITY frame with the reserved bit set.
  1069. {HeadersBlock, _} = cow_hpack:encode([
  1070. {<<":method">>, <<"POST">>},
  1071. {<<":scheme">>, <<"http">>},
  1072. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  1073. {<<":path">>, <<"/echo/read_body">>}
  1074. ]),
  1075. ok = gen_tcp:send(Socket, [
  1076. cow_http2:headers(1, nofin, HeadersBlock),
  1077. << 5:24, 2:8, 0:8,
  1078. 1:1, %% Reserved bit.
  1079. 1:31, 0:1, 3:31, 0:8 >>,
  1080. cow_http2:data(1, fin, << 0:100/unit:8 >>)
  1081. ]),
  1082. %% Receive a response with the same DATA frame.
  1083. {ok, << SkipLen:24, 1:8, _:8, 1:32 >>} = gen_tcp:recv(Socket, 9, 1000),
  1084. {ok, _} = gen_tcp:recv(Socket, SkipLen, 1000),
  1085. {ok, << 100:24, 0:8, 1:8, 1:32 >>} = gen_tcp:recv(Socket, 9, 1000),
  1086. {ok, << 0:100/unit:8 >>} = gen_tcp:recv(Socket, 100, 1000),
  1087. ok.
  1088. ignore_rst_stream_reserved_bit(Config) ->
  1089. doc("Reserved 1-bit field of RST_STREAM frame must be ignored. (RFC7540 4.1, RFC7540 6.4)"),
  1090. {ok, Socket} = do_handshake(Config),
  1091. %% Send a POST request then cancel it with an RST_STREAM frame with the reserved bit set.
  1092. {HeadersBlock, _} = cow_hpack:encode([
  1093. {<<":method">>, <<"POST">>},
  1094. {<<":scheme">>, <<"http">>},
  1095. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  1096. {<<":path">>, <<"/echo/read_body">>}
  1097. ]),
  1098. ok = gen_tcp:send(Socket, [
  1099. cow_http2:headers(1, nofin, HeadersBlock),
  1100. << 4:24, 3:8, 0:8,
  1101. 1:1, %% Reserved bit.
  1102. 1:31, 8:32 >>,
  1103. cow_http2:headers(3, nofin, HeadersBlock),
  1104. cow_http2:data(3, fin, << 0:100/unit:8 >>)
  1105. ]),
  1106. %% Receive a response with the same DATA frame.
  1107. {ok, << SkipLen:24, 1:8, _:8, 3:32 >>} = gen_tcp:recv(Socket, 9, 1000),
  1108. {ok, _} = gen_tcp:recv(Socket, SkipLen, 1000),
  1109. {ok, << 100:24, 0:8, 1:8, 3:32 >>} = gen_tcp:recv(Socket, 9, 1000),
  1110. {ok, << 0:100/unit:8 >>} = gen_tcp:recv(Socket, 100, 1000),
  1111. ok.
  1112. ignore_settings_reserved_bit(Config) ->
  1113. doc("Reserved 1-bit field of SETTINGS frame must be ignored. (RFC7540 4.1, RFC7540 6.5)"),
  1114. {ok, Socket} = do_handshake(Config),
  1115. %% Send a SETTINGS frame with the reserved bit set.
  1116. ok = gen_tcp:send(Socket, << 6:24, 4:8, 0:8,
  1117. 1:1, %% Reserved bit.
  1118. 0:31, 2:16, 0:32 >>),
  1119. %% Receive a SETTINGS ack.
  1120. {ok, << 0:24, 4:8, 0:7, 1:1, 0:32 >>} = gen_tcp:recv(Socket, 9, 1000),
  1121. ok.
  1122. ignore_push_promise_reserved_bit(Config) ->
  1123. doc("Reserved 1-bit field of PUSH_PROMISE frame must be ignored. (RFC7540 4.1, RFC7540 6.6)"),
  1124. {ok, Socket} = do_handshake(Config),
  1125. %% Send a PUSH_PROMISE frame with the reserved bit set.
  1126. ok = gen_tcp:send(Socket, << 4:24, 5:8, 0:5, 1:1, 0:2,
  1127. 1:1, %% Reserved bit.
  1128. 1:31, 0:1, 3:31 >>
  1129. ),
  1130. %% Receive a PROTOCOL_ERROR connection error.
  1131. %%
  1132. %% Note that it is not possible to distinguish between the expected
  1133. %% result and the server rejecting PUSH_PROMISE frames.
  1134. {ok, << _:24, 7:8, _:72, 1:32 >>} = gen_tcp:recv(Socket, 17, 6000),
  1135. ok.
  1136. ignore_ping_reserved_bit(Config) ->
  1137. doc("Reserved 1-bit field of PING frame must be ignored. (RFC7540 4.1, RFC7540 6.7)"),
  1138. {ok, Socket} = do_handshake(Config),
  1139. %% Send a PING frame with the reserved bit set.
  1140. ok = gen_tcp:send(Socket, << 8:24, 6:8, 0:8,
  1141. 1:1, %% Reserved bit.
  1142. 0:31, 0:64 >>),
  1143. %% Receive a PING ACK in return.
  1144. {ok, << 8:24, 6:8, _:7, 1:1, _:32, 0:64 >>} = gen_tcp:recv(Socket, 17, 6000),
  1145. ok.
  1146. ignore_goaway_reserved_bit(Config) ->
  1147. doc("Reserved 1-bit field of GOAWAY frame must be ignored. (RFC7540 4.1, RFC7540 6.8)"),
  1148. {ok, Socket} = do_handshake(Config),
  1149. %% Send a GOAWAY frame with the reserved bit set.
  1150. ok = gen_tcp:send(Socket, << 8:24, 7:8, 0:8,
  1151. 1:1, %% Reserved bit.
  1152. 0:31, 0:64 >>),
  1153. %% Receive a GOAWAY frame back.
  1154. {ok, << _:24, 7:8, _:72, 0:32 >>} = gen_tcp:recv(Socket, 17, 6000),
  1155. ok.
  1156. ignore_window_update_reserved_bit(Config) ->
  1157. doc("Reserved 1-bit field of WINDOW_UPDATE frame must be ignored. (RFC7540 4.1, RFC7540 6.9)"),
  1158. {ok, Socket} = do_handshake(Config),
  1159. %% Send a WINDOW_UPDATE frame with the reserved bit set.
  1160. ok = gen_tcp:send(Socket, << 4:24, 8:8, 0:8,
  1161. 1:1, %% Reserved bit.
  1162. 0:31, 1000:32 >>),
  1163. %% We expect no errors or replies, therefore we send a PING frame.
  1164. ok = gen_tcp:send(Socket, cow_http2:ping(0)),
  1165. %% And receive a PING ACK in return.
  1166. {ok, << 8:24, 6:8, _:7, 1:1, _:32, 0:64 >>} = gen_tcp:recv(Socket, 17, 6000),
  1167. ok.
  1168. ignore_continuation_reserved_bit(Config) ->
  1169. doc("Reserved 1-bit field of CONTINUATION frame must be ignored. (RFC7540 4.1, RFC7540 6.10)"),
  1170. {ok, Socket} = do_handshake(Config),
  1171. %% Send a POST request with a CONTINUATION frame with the reserved bit set.
  1172. {HeadersBlock, _} = cow_hpack:encode([
  1173. {<<":method">>, <<"POST">>},
  1174. {<<":scheme">>, <<"http">>},
  1175. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  1176. {<<":path">>, <<"/echo/read_body">>}
  1177. ]),
  1178. Len = iolist_size(HeadersBlock),
  1179. ok = gen_tcp:send(Socket, [
  1180. << 0:24, 1:8, 0:8, 0:1, 1:31 >>,
  1181. << Len:24, 9:8, 0:5, 1:1, 0:2,
  1182. 1:1, %% Reserved bit.
  1183. 1:31 >>,
  1184. HeadersBlock,
  1185. cow_http2:data(1, fin, << 0:100/unit:8 >>)
  1186. ]),
  1187. %% Receive a response with the same DATA frame.
  1188. {ok, << SkipLen:24, 1:8, _:8, 1:32 >>} = gen_tcp:recv(Socket, 9, 1000),
  1189. {ok, _} = gen_tcp:recv(Socket, SkipLen, 1000),
  1190. {ok, << 100:24, 0:8, 1:8, 1:32 >>} = gen_tcp:recv(Socket, 9, 1000),
  1191. {ok, << 0:100/unit:8 >>} = gen_tcp:recv(Socket, 100, 1000),
  1192. ok.
  1193. %% @todo The reserved 1-bit field MUST remain unset (0x0) when sending. (RFC7540 4.1)
  1194. %% Frame size.
  1195. max_frame_size_allow_exactly_default(Config) ->
  1196. doc("All implementations must allow frame sizes of at least 16384. (RFC7540 4.1, RFC7540 4.2)"),
  1197. {ok, Socket} = do_handshake(Config),
  1198. %% Send a POST request with a DATA frame of exactly 16384 bytes.
  1199. {HeadersBlock, _} = cow_hpack:encode([
  1200. {<<":method">>, <<"POST">>},
  1201. {<<":scheme">>, <<"http">>},
  1202. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  1203. {<<":path">>, <<"/echo/read_body">>}
  1204. ]),
  1205. ok = gen_tcp:send(Socket, [
  1206. cow_http2:headers(1, nofin, HeadersBlock),
  1207. cow_http2:data(1, fin, << 0:16384/unit:8 >>)
  1208. ]),
  1209. %% Receive a response with the same DATA frame.
  1210. {ok, << SkipLen:24, 1:8, _:8, 1:32 >>} = case gen_tcp:recv(Socket, 9, 1000) of
  1211. %% We received a WINDOW_UPDATE first. Skip it and the next.
  1212. {ok, <<4:24, 8:8, 0:40>>} ->
  1213. {ok, _} = gen_tcp:recv(Socket, 4 + 13, 1000),
  1214. gen_tcp:recv(Socket, 9, 1000);
  1215. Res ->
  1216. Res
  1217. end,
  1218. {ok, _} = gen_tcp:recv(Socket, SkipLen, 1000),
  1219. {ok, << 16384:24, 0:8, 1:8, 1:32 >>} = gen_tcp:recv(Socket, 9, 1000),
  1220. {ok, << 0:16384/unit:8 >>} = gen_tcp:recv(Socket, 16384, 1000),
  1221. ok.
  1222. max_frame_size_reject_larger_than_default(Config) ->
  1223. doc("A FRAME_SIZE_ERROR connection error must be sent when receiving "
  1224. "frames larger than the default 16384 length. (RFC7540 4.1, RFC7540 4.2)"),
  1225. {ok, Socket} = do_handshake(Config),
  1226. %% Send a POST request with a DATA frame larger than 16384 bytes.
  1227. {HeadersBlock, _} = cow_hpack:encode([
  1228. {<<":method">>, <<"POST">>},
  1229. {<<":scheme">>, <<"http">>},
  1230. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  1231. {<<":path">>, <<"/echo/read_body">>}
  1232. ]),
  1233. ok = gen_tcp:send(Socket, [
  1234. cow_http2:headers(1, nofin, HeadersBlock),
  1235. cow_http2:data(1, fin, << 0:16385/unit:8 >>)
  1236. ]),
  1237. %% Receive a FRAME_SIZE_ERROR connection error.
  1238. {ok, << _:24, 7:8, _:72, 6:32 >>} = gen_tcp:recv(Socket, 17, 6000),
  1239. ok.
  1240. max_frame_size_allow_exactly_custom(Config0) ->
  1241. doc("An endpoint that sets SETTINGS_MAX_FRAME_SIZE must allow frames "
  1242. "of up to that size. (RFC7540 4.2, RFC7540 6.5.2)"),
  1243. %% Create a new listener that sets the maximum frame size to 30000.
  1244. Config = cowboy_test:init_http(name(), #{
  1245. env => #{dispatch => cowboy_router:compile(init_routes(Config0))},
  1246. max_frame_size_received => 30000
  1247. }, Config0),
  1248. %% Do the handshake.
  1249. {ok, Socket} = do_handshake(Config),
  1250. %% Send a HEADERS frame initiating a stream followed by
  1251. %% a single 30000 bytes DATA frame.
  1252. Headers = [
  1253. {<<":method">>, <<"POST">>},
  1254. {<<":scheme">>, <<"http">>},
  1255. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  1256. {<<":path">>, <<"/long_polling">>}
  1257. ],
  1258. {HeadersBlock, _} = cow_hpack:encode(Headers),
  1259. ok = gen_tcp:send(Socket, [
  1260. cow_http2:headers(1, nofin, HeadersBlock),
  1261. cow_http2:data(1, fin, <<0:30000/unit:8>>)
  1262. ]),
  1263. %% Receive a proper response.
  1264. {ok, << Len2:24, 1:8, _:40 >>} = gen_tcp:recv(Socket, 9, 6000),
  1265. {ok, _} = gen_tcp:recv(Socket, Len2, 6000),
  1266. %% No errors follow due to our sending of a 25000 bytes frame.
  1267. {error, timeout} = gen_tcp:recv(Socket, 0, 1000),
  1268. ok.
  1269. max_frame_size_reject_larger_than_custom(Config0) ->
  1270. doc("An endpoint that sets SETTINGS_MAX_FRAME_SIZE must reject frames "
  1271. "of up to that size with a FRAME_SIZE_ERROR connection error. (RFC7540 4.2, RFC7540 6.5.2)"),
  1272. %% Create a new listener that sets the maximum frame size to 30000.
  1273. Config = cowboy_test:init_http(name(), #{
  1274. env => #{dispatch => cowboy_router:compile(init_routes(Config0))},
  1275. max_frame_size_received => 30000
  1276. }, Config0),
  1277. %% Do the handshake.
  1278. {ok, Socket} = do_handshake(Config),
  1279. %% Send a HEADERS frame initiating a stream followed by
  1280. %% a single DATA frame larger than 30000 bytes.
  1281. Headers = [
  1282. {<<":method">>, <<"POST">>},
  1283. {<<":scheme">>, <<"http">>},
  1284. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  1285. {<<":path">>, <<"/long_polling">>}
  1286. ],
  1287. {HeadersBlock, _} = cow_hpack:encode(Headers),
  1288. ok = gen_tcp:send(Socket, [
  1289. cow_http2:headers(1, nofin, HeadersBlock),
  1290. cow_http2:data(1, fin, <<0:30001/unit:8>>)
  1291. ]),
  1292. %% Receive a FRAME_SIZE_ERROR connection error.
  1293. {ok, << _:24, 7:8, _:72, 6:32 >>} = gen_tcp:recv(Socket, 17, 6000),
  1294. ok.
  1295. %% I am using FRAME_SIZE_ERROR here because the information in the
  1296. %% frame header tells us this frame is at least 1 byte long, while
  1297. %% the given length is smaller; i.e. it is too small to contain
  1298. %% mandatory frame data (the pad length).
  1299. data_reject_frame_size_0_padded_flag(Config) ->
  1300. doc("DATA frames of size 0 with the PADDED flag set must be rejected "
  1301. "with a FRAME_SIZE_ERROR connection error. (RFC7540 4.2, RFC7540 6.1)"),
  1302. {ok, Socket} = do_handshake(Config),
  1303. %% Send a POST request with an incorrect padded DATA frame size.
  1304. {HeadersBlock, _} = cow_hpack:encode([
  1305. {<<":method">>, <<"POST">>},
  1306. {<<":scheme">>, <<"http">>},
  1307. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  1308. {<<":path">>, <<"/echo/read_body">>}
  1309. ]),
  1310. ok = gen_tcp:send(Socket, [
  1311. cow_http2:headers(1, nofin, HeadersBlock),
  1312. << 0:24, 0:8, 0:4, 1:1, 0:2, 1:1, 0:1, 1:31 >>
  1313. ]),
  1314. %% Receive a FRAME_SIZE_ERROR connection error.
  1315. {ok, << _:24, 7:8, _:72, 6:32 >>} = gen_tcp:recv(Socket, 17, 6000),
  1316. ok.
  1317. %% This case on the other hand is noted specifically in the RFC
  1318. %% as being a PROTOCOL_ERROR. It can be thought of as the Pad Length
  1319. %% being incorrect, rather than the frame size.
  1320. data_reject_frame_size_too_small_padded_flag(Config) ->
  1321. doc("DATA frames with Pad Length >= Length must be rejected "
  1322. "with a PROTOCOL_ERROR connection error. (RFC7540 6.1)"),
  1323. {ok, Socket} = do_handshake(Config),
  1324. %% Send a POST request with an incorrect padded DATA frame size.
  1325. {HeadersBlock, _} = cow_hpack:encode([
  1326. {<<":method">>, <<"POST">>},
  1327. {<<":scheme">>, <<"http">>},
  1328. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  1329. {<<":path">>, <<"/echo/read_body">>}
  1330. ]),
  1331. ok = gen_tcp:send(Socket, [
  1332. cow_http2:headers(1, nofin, HeadersBlock),
  1333. << 10:24, 0:8, 0:4, 1:1, 0:2, 1:1, 0:1, 1:31, 10:8, 0:80 >>
  1334. ]),
  1335. %% Receive a PROTOCOL_ERROR connection error.
  1336. {ok, << _:24, 7:8, _:72, 1:32 >>} = gen_tcp:recv(Socket, 17, 6000),
  1337. ok.
  1338. headers_reject_frame_size_0_padded_flag(Config) ->
  1339. doc("HEADERS frames of size 0 with the PADDED flag set must be rejected "
  1340. "with a FRAME_SIZE_ERROR connection error. (RFC7540 4.2, RFC7540 6.2)"),
  1341. {ok, Socket} = do_handshake(Config),
  1342. %% Send a padded HEADERS frame with an incorrect size.
  1343. ok = gen_tcp:send(Socket, << 0:24, 1:8, 0:4, 1:1, 0:2, 1:1, 0:1, 1:31 >>),
  1344. %% Receive a FRAME_SIZE_ERROR connection error.
  1345. {ok, << _:24, 7:8, _:72, 6:32 >>} = gen_tcp:recv(Socket, 17, 6000),
  1346. ok.
  1347. headers_reject_frame_size_too_small_padded_flag(Config) ->
  1348. doc("HEADERS frames with no priority flag and Pad Length >= Length "
  1349. "must be rejected with a PROTOCOL_ERROR connection error. (RFC7540 6.2)"),
  1350. {ok, Socket} = do_handshake(Config),
  1351. %% Send a padded HEADERS frame with an incorrect size.
  1352. ok = gen_tcp:send(Socket, << 10:24, 1:8, 0:4, 1:1, 0:2, 1:1, 0:1, 1:31, 10:8, 0:80 >>),
  1353. %% Receive a PROTOCOL_ERROR connection error.
  1354. {ok, << _:24, 7:8, _:72, 1:32 >>} = gen_tcp:recv(Socket, 17, 6000),
  1355. ok.
  1356. headers_reject_frame_size_too_small_priority_flag(Config) ->
  1357. doc("HEADERS frames of size smaller than 5 with the PRIORITY flag set must be rejected "
  1358. "with a FRAME_SIZE_ERROR connection error. (RFC7540 4.2, RFC7540 6.2)"),
  1359. {ok, Socket} = do_handshake(Config),
  1360. %% Send a HEADERS frame with priority set and an incorrect size.
  1361. ok = gen_tcp:send(Socket, << 4:24, 1:8,
  1362. 0:2, 1:1, 0:4, 1:1, 0:1, 1:31, 0:1, 3:31, 0:8 >>),
  1363. %% Receive a FRAME_SIZE_ERROR connection error.
  1364. {ok, << _:24, 7:8, _:72, 6:32 >>} = gen_tcp:recv(Socket, 17, 6000),
  1365. ok.
  1366. headers_reject_frame_size_5_padded_and_priority_flags(Config) ->
  1367. doc("HEADERS frames of size smaller than 6 with the PADDED "
  1368. "and PRIORITY flags set must be rejected "
  1369. "with a FRAME_SIZE_ERROR connection error. (RFC7540 4.2, RFC7540 6.2)"),
  1370. {ok, Socket} = do_handshake(Config),
  1371. %% Send a padded HEADERS frame with an incorrect size.
  1372. ok = gen_tcp:send(Socket, << 5:24, 1:8,
  1373. 0:2, 1:1, 0:1, 1:1, 0:2, 1:1, 0:1, 1:31, 0:8, 0:1, 3:31, 0:8 >>),
  1374. %% Receive a FRAME_SIZE_ERROR connection error.
  1375. {ok, << _:24, 7:8, _:72, 6:32 >>} = gen_tcp:recv(Socket, 17, 6000),
  1376. ok.
  1377. headers_reject_frame_size_too_small_padded_and_priority_flags(Config) ->
  1378. doc("HEADERS frames of size smaller than Length+6 with the PADDED and PRIORITY flags set "
  1379. "must be rejected with a FRAME_SIZE_ERROR connection error. (RFC7540 4.2, RFC7540 6.2)"),
  1380. {ok, Socket} = do_handshake(Config),
  1381. %% Send a padded HEADERS frame with an incorrect size.
  1382. ok = gen_tcp:send(Socket, << 15:24, 1:8,
  1383. 0:2, 1:1, 0:1, 1:1, 0:2, 1:1, 0:1, 1:31, 10:8, 0:1, 3:31, 0:8, 0:80 >>),
  1384. %% Receive a PROTOCOL_ERROR connection error.
  1385. {ok, << _:24, 7:8, _:72, 1:32 >>} = gen_tcp:recv(Socket, 17, 6000),
  1386. ok.
  1387. priority_reject_frame_size_too_small(Config) ->
  1388. doc("PRIORITY frames of size smaller than 5 must be rejected "
  1389. "with a FRAME_SIZE_ERROR connection error. (RFC7540 4.2, RFC7540 6.3)"),
  1390. {ok, Socket} = do_handshake(Config),
  1391. %% Send a PRIORITY frame with an incorrect size.
  1392. ok = gen_tcp:send(Socket, << 4:24, 2:8, 0:9, 1:31, 0:1, 3:31, 0:8 >>),
  1393. %% Receive a FRAME_SIZE_ERROR stream error.
  1394. {ok, << _:24, 3:8, _:40, 6:32 >>} = gen_tcp:recv(Socket, 13, 6000),
  1395. ok.
  1396. priority_reject_frame_size_too_large(Config) ->
  1397. doc("PRIORITY frames of size larger than 5 must be rejected "
  1398. "with a FRAME_SIZE_ERROR connection error. (RFC7540 4.2, RFC7540 6.3)"),
  1399. {ok, Socket} = do_handshake(Config),
  1400. %% Send a PRIORITY frame with an incorrect size.
  1401. ok = gen_tcp:send(Socket, << 6:24, 2:8, 0:9, 1:31, 0:1, 3:31, 0:16 >>),
  1402. %% Receive a FRAME_SIZE_ERROR stream error.
  1403. {ok, << _:24, 3:8, _:40, 6:32 >>} = gen_tcp:recv(Socket, 13, 6000),
  1404. ok.
  1405. rst_stream_reject_frame_size_too_small(Config) ->
  1406. doc("RST_STREAM frames of size smaller than 4 must be rejected "
  1407. "with a FRAME_SIZE_ERROR connection error. (RFC7540 4.2, RFC7540 6.4)"),
  1408. {ok, Socket} = do_handshake(Config),
  1409. %% Send a request and reset it immediately.
  1410. {HeadersBlock, _} = cow_hpack:encode([
  1411. {<<":method">>, <<"GET">>},
  1412. {<<":scheme">>, <<"http">>},
  1413. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  1414. {<<":path">>, <<"/">>}
  1415. ]),
  1416. ok = gen_tcp:send(Socket, [
  1417. cow_http2:headers(1, fin, HeadersBlock),
  1418. << 3:24, 3:8, 0:9, 1:31, 8:32 >>
  1419. ]),
  1420. %% Receive a FRAME_SIZE_ERROR connection error.
  1421. {ok, << _:24, 7:8, _:72, 6:32 >>} = gen_tcp:recv(Socket, 17, 6000),
  1422. ok.
  1423. rst_stream_reject_frame_size_too_large(Config) ->
  1424. doc("RST_STREAM frames of size larger than 4 must be rejected "
  1425. "with a FRAME_SIZE_ERROR connection error. (RFC7540 4.2, RFC7540 6.4)"),
  1426. {ok, Socket} = do_handshake(Config),
  1427. %% Send a request and reset it immediately.
  1428. {HeadersBlock, _} = cow_hpack:encode([
  1429. {<<":method">>, <<"GET">>},
  1430. {<<":scheme">>, <<"http">>},
  1431. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  1432. {<<":path">>, <<"/">>}
  1433. ]),
  1434. ok = gen_tcp:send(Socket, [
  1435. cow_http2:headers(1, fin, HeadersBlock),
  1436. << 5:24, 3:8, 0:9, 1:31, 8:32 >>
  1437. ]),
  1438. %% Receive a FRAME_SIZE_ERROR connection error.
  1439. {ok, << _:24, 7:8, _:72, 6:32 >>} = gen_tcp:recv(Socket, 17, 6000),
  1440. ok.
  1441. settings_reject_bad_frame_size(Config) ->
  1442. doc("SETTINGS frames must have a size multiple of 6 or be rejected "
  1443. "with a FRAME_SIZE_ERROR connection error. (RFC7540 4.2, RFC7540 6.5)"),
  1444. {ok, Socket} = do_handshake(Config),
  1445. %% Send a SETTINGS frame with an incorrect size.
  1446. ok = gen_tcp:send(Socket, << 5:24, 4:8, 0:40, 1:16, 4096:32 >>),
  1447. %% Receive a FRAME_SIZE_ERROR connection error.
  1448. {ok, << _:24, 7:8, _:72, 6:32 >>} = gen_tcp:recv(Socket, 17, 6000),
  1449. ok.
  1450. settings_ack_reject_non_empty_frame_size(Config) ->
  1451. doc("SETTINGS frames with the ACK flag set and a non-empty payload "
  1452. "must be rejected with a FRAME_SIZE_ERROR connection error (RFC7540 4.2, RFC7540 6.5)"),
  1453. {ok, Socket} = gen_tcp:connect("localhost", config(port, Config), [binary, {active, false}]),
  1454. %% Send a valid preface.
  1455. ok = gen_tcp:send(Socket, ["PRI * HTTP/2.0\r\n\r\nSM\r\n\r\n", cow_http2:settings(#{})]),
  1456. %% Receive the server preface.
  1457. {ok, << Len:24 >>} = gen_tcp:recv(Socket, 3, 1000),
  1458. {ok, << 4:8, 0:40, _:Len/binary >>} = gen_tcp:recv(Socket, 6 + Len, 1000),
  1459. %% Send a SETTINGS ack with a payload.
  1460. ok = gen_tcp:send(Socket, << 6:24, 4:8, 0:7, 1:1, 0:32, 1:16, 4096:32 >>),
  1461. %% Receive the SETTINGS ack.
  1462. {ok, << 0:24, 4:8, 1:8, 0:32 >>} = gen_tcp:recv(Socket, 9, 1000),
  1463. %% Receive a FRAME_SIZE_ERROR connection error.
  1464. {ok, << _:24, 7:8, _:72, 6:32 >>} = gen_tcp:recv(Socket, 17, 6000),
  1465. ok.
  1466. %% Note that clients are not supposed to send PUSH_PROMISE frames.
  1467. %% However when they do, we need to be able to parse it in order
  1468. %% to reject it, and so these errors may still occur.
  1469. push_promise_reject_frame_size_too_small(Config) ->
  1470. doc("PUSH_PROMISE frames of size smaller than 4 must be rejected "
  1471. "with a FRAME_SIZE_ERROR connection error. (RFC7540 4.2, RFC7540 6.6)"),
  1472. {ok, Socket} = do_handshake(Config),
  1473. %% Send a PUSH_PROMISE frame with an incorrect size.
  1474. ok = gen_tcp:send(Socket, << 3:24, 5:8, 0:5, 1:1, 0:3, 1:31, 0:1, 3:31 >>),
  1475. %% Receive a FRAME_SIZE_ERROR connection error.
  1476. {ok, << _:24, 7:8, _:72, 6:32 >>} = gen_tcp:recv(Socket, 17, 6000),
  1477. ok.
  1478. push_promise_reject_frame_size_4_padded_flag(Config) ->
  1479. doc("PUSH_PROMISE frames of size smaller than 5 with the PADDED flag set must be rejected "
  1480. "with a FRAME_SIZE_ERROR connection error. (RFC7540 4.2, RFC7540 6.6)"),
  1481. {ok, Socket} = do_handshake(Config),
  1482. %% Send a PUSH_PROMISE frame with an incorrect size.
  1483. ok = gen_tcp:send(Socket, << 4:24, 5:8, 0:4, 1:1, 1:1, 0:3, 1:31, 0:1, 0:8, 3:31 >>),
  1484. %% Receive a FRAME_SIZE_ERROR connection error.
  1485. {ok, << _:24, 7:8, _:72, 6:32 >>} = gen_tcp:recv(Socket, 17, 6000),
  1486. ok.
  1487. push_promise_reject_frame_size_too_small_padded_flag(Config) ->
  1488. doc("PUSH_PROMISE frames of size smaller than Length+5 with the PADDED flag set "
  1489. "must be rejected with a PROTOCOL_ERROR connection error. (RFC7540 4.2, RFC7540 6.6)"),
  1490. {ok, Socket} = do_handshake(Config),
  1491. %% Send a PUSH_PROMISE frame with an incorrect size.
  1492. {HeadersBlock, _} = cow_hpack:encode([
  1493. {<<":method">>, <<"GET">>},
  1494. {<<":scheme">>, <<"http">>},
  1495. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  1496. {<<":path">>, <<"/">>}
  1497. ]),
  1498. Len = 14 + iolist_size(HeadersBlock),
  1499. ok = gen_tcp:send(Socket, [
  1500. << Len:24, 5:8, 0:4, 1:1, 1:1, 0:3, 1:31, 10:8, 0:1, 3:31 >>,
  1501. HeadersBlock,
  1502. << 0:80 >>
  1503. ]),
  1504. %% Receive a PROTOCOL_ERROR connection error.
  1505. %%
  1506. %% Note that it is not possible to distinguish between a Pad Length
  1507. %% error and the server rejecting PUSH_PROMISE frames.
  1508. {ok, << _:24, 7:8, _:72, 1:32 >>} = gen_tcp:recv(Socket, 17, 6000),
  1509. ok.
  1510. ping_reject_frame_size_too_small(Config) ->
  1511. doc("PING frames of size smaller than 8 must be rejected "
  1512. "with a FRAME_SIZE_ERROR connection error. (RFC7540 4.2, RFC7540 6.7)"),
  1513. {ok, Socket} = do_handshake(Config),
  1514. %% Send a PING frame with an incorrect size.
  1515. ok = gen_tcp:send(Socket, << 7:24, 6:8, 0:40, 0:56 >>),
  1516. %% Receive a FRAME_SIZE_ERROR connection error.
  1517. {ok, << _:24, 7:8, _:72, 6:32 >>} = gen_tcp:recv(Socket, 17, 6000),
  1518. ok.
  1519. ping_reject_frame_size_too_large(Config) ->
  1520. doc("PING frames of size larger than 8 must be rejected "
  1521. "with a FRAME_SIZE_ERROR connection error. (RFC7540 4.2, RFC7540 6.7)"),
  1522. {ok, Socket} = do_handshake(Config),
  1523. %% Send a PING frame with an incorrect size.
  1524. ok = gen_tcp:send(Socket, << 9:24, 6:8, 0:40, 0:72 >>),
  1525. %% Receive a FRAME_SIZE_ERROR connection error.
  1526. {ok, << _:24, 7:8, _:72, 6:32 >>} = gen_tcp:recv(Socket, 17, 6000),
  1527. ok.
  1528. goaway_reject_frame_size_too_small(Config) ->
  1529. doc("GOAWAY frames of size smaller than 8 must be rejected "
  1530. "with a FRAME_SIZE_ERROR connection error. (RFC7540 4.2, RFC7540 6.8)"),
  1531. {ok, Socket} = do_handshake(Config),
  1532. %% Send a GOAWAY frame with an incorrect size.
  1533. ok = gen_tcp:send(Socket, << 7:24, 7:8, 0:40, 0:56 >>),
  1534. %% Receive a FRAME_SIZE_ERROR connection error.
  1535. {ok, << _:24, 7:8, _:72, 6:32 >>} = gen_tcp:recv(Socket, 17, 6000),
  1536. ok.
  1537. goaway_allow_frame_size_too_large(Config) ->
  1538. doc("GOAWAY frames of size larger than 8 must be allowed. (RFC7540 6.8)"),
  1539. {ok, Socket} = do_handshake(Config),
  1540. %% Send a GOAWAY frame with debug data.
  1541. ok = gen_tcp:send(Socket, << 12:24, 7:8, 0:40, 0:64, 99999:32 >>),
  1542. %% Receive a GOAWAY frame back.
  1543. {ok, << _:24, 7:8, _:72, 0:32 >>} = gen_tcp:recv(Socket, 17, 6000),
  1544. ok.
  1545. window_update_reject_frame_size_too_small(Config) ->
  1546. doc("WINDOW_UPDATE frames of size smaller than 4 must be rejected "
  1547. "with a FRAME_SIZE_ERROR connection error. (RFC7540 4.2, RFC7540 6.9)"),
  1548. {ok, Socket} = do_handshake(Config),
  1549. %% Send a WINDOW_UPDATE frame with an incorrect size.
  1550. ok = gen_tcp:send(Socket, << 3:24, 8:8, 0:40, 1000:24 >>),
  1551. %% Receive a FRAME_SIZE_ERROR connection error.
  1552. {ok, << _:24, 7:8, _:72, 6:32 >>} = gen_tcp:recv(Socket, 17, 6000),
  1553. ok.
  1554. window_update_reject_frame_size_too_large(Config) ->
  1555. doc("WINDOW_UPDATE frames of size larger than 4 must be rejected "
  1556. "with a FRAME_SIZE_ERROR connection error. (RFC7540 4.2, RFC7540 6.9)"),
  1557. {ok, Socket} = do_handshake(Config),
  1558. %% Send a WINDOW_UPDATE frame with an incorrect size.
  1559. ok = gen_tcp:send(Socket, << 5:24, 8:8, 0:40, 1000:40 >>),
  1560. %% Receive a FRAME_SIZE_ERROR connection error.
  1561. {ok, << _:24, 7:8, _:72, 6:32 >>} = gen_tcp:recv(Socket, 17, 6000),
  1562. ok.
  1563. %% Note: There is no particular limits on the size of CONTINUATION frames,
  1564. %% they can go from 0 to SETTINGS_MAX_FRAME_SIZE.
  1565. %% Header compression and decompression.
  1566. headers_compression_error(Config) ->
  1567. doc("A decoding error in a HEADERS frame's header block must be rejected "
  1568. "with a COMPRESSION_ERROR connection error. (RFC7540 4.3, RFC7540 6.2)"),
  1569. {ok, Socket} = do_handshake(Config),
  1570. %% Send a HEADERS frame with an invalid header block.
  1571. ok = gen_tcp:send(Socket, << 10:24, 1:8, 0:5, 1:1, 0:1, 1:1, 0:1, 1:31, 0:10/unit:8 >>),
  1572. %% Receive a COMPRESSION_ERROR connection error.
  1573. {ok, << _:24, 7:8, _:72, 9:32 >>} = gen_tcp:recv(Socket, 17, 6000),
  1574. ok.
  1575. continuation_compression_error(Config) ->
  1576. doc("A decoding error in a CONTINUATION frame's header block must be rejected "
  1577. "with a COMPRESSION_ERROR connection error. (RFC7540 4.3, RFC7540 6.10)"),
  1578. {ok, Socket} = do_handshake(Config),
  1579. %% Send a CONTINUATION frame with an invalid header block.
  1580. ok = gen_tcp:send(Socket, [
  1581. << 0:24, 1:8, 0:7, 1:1, 0:1, 1:31 >>,
  1582. << 10:24, 9:8, 0:5, 1:1, 0:3, 1:31, 0:10/unit:8 >>
  1583. ]),
  1584. %% Receive a COMPRESSION_ERROR connection error.
  1585. {ok, << _:24, 7:8, _:72, 9:32 >>} = gen_tcp:recv(Socket, 17, 6000),
  1586. ok.
  1587. continuation_with_frame_interleaved_error(Config) ->
  1588. doc("Frames interleaved in a header block must be rejected "
  1589. "with a PROTOCOL_ERROR connection error. (RFC7540 4.3, RFC7540 6.2, RFC7540 6.10)"),
  1590. {ok, Socket} = do_handshake(Config),
  1591. %% Send an unterminated HEADERS frame followed by a PING frame.
  1592. ok = gen_tcp:send(Socket, [
  1593. << 0:24, 1:8, 0:7, 1:1, 0:1, 1:31 >>,
  1594. cow_http2:ping(0)
  1595. ]),
  1596. %% Receive a PROTOCOL_ERROR connection error.
  1597. {ok, << _:24, 7:8, _:72, 1:32 >>} = gen_tcp:recv(Socket, 17, 6000),
  1598. ok.
  1599. continuation_wrong_stream_error(Config) ->
  1600. doc("CONTINUATION frames with an incorrect stream identifier must be rejected "
  1601. "with a PROTOCOL_ERROR connection error. (RFC7540 4.3, RFC7540 6.2)"),
  1602. {ok, Socket} = do_handshake(Config),
  1603. %% Send an unterminated HEADERS frame followed by a CONTINUATION frame for another stream.
  1604. ok = gen_tcp:send(Socket, [
  1605. << 0:24, 1:8, 0:7, 1:1, 0:1, 1:31 >>,
  1606. << 0:24, 9:8, 0:9, 3:31 >>
  1607. ]),
  1608. %% Receive a PROTOCOL_ERROR connection error.
  1609. {ok, << _:24, 7:8, _:72, 1:32 >>} = gen_tcp:recv(Socket, 17, 6000),
  1610. ok.
  1611. %% Stream states.
  1612. idle_stream_reject_data(Config) ->
  1613. doc("DATA frames received on an idle stream must be rejected "
  1614. "with a PROTOCOL_ERROR connection error. (RFC7540 5.1, RFC7540 6.1)"),
  1615. {ok, Socket} = do_handshake(Config),
  1616. %% Send a DATA frame on an idle stream.
  1617. ok = gen_tcp:send(Socket, cow_http2:data(1, fin, <<"Unexpected DATA frame.">>)),
  1618. %% Receive a PROTOCOL_ERROR connection error.
  1619. {ok, << _:24, 7:8, _:72, 1:32 >>} = gen_tcp:recv(Socket, 17, 6000),
  1620. ok.
  1621. idle_stream_accept_headers(Config) ->
  1622. doc("HEADERS frames received on an idle stream must be accepted. (RFC7540 5.1)"),
  1623. {ok, Socket} = do_handshake(Config),
  1624. %% Send a HEADERS frame on an idle stream.
  1625. {HeadersBlock, _} = cow_hpack:encode([
  1626. {<<":method">>, <<"GET">>},
  1627. {<<":scheme">>, <<"http">>},
  1628. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  1629. {<<":path">>, <<"/">>}
  1630. ]),
  1631. ok = gen_tcp:send(Socket, cow_http2:headers(1, fin, HeadersBlock)),
  1632. %% Receive a HEADERS frame as a response.
  1633. {ok, << _:24, 1:8, _:40 >>} = gen_tcp:recv(Socket, 9, 6000),
  1634. ok.
  1635. idle_stream_accept_priority(Config) ->
  1636. doc("PRIORITY frames received on an idle stream must be accepted. (RFC7540 5.1)"),
  1637. {ok, Socket} = do_handshake(Config),
  1638. %% Send a PRIORITY frame on an idle stream.
  1639. ok = gen_tcp:send(Socket, cow_http2:priority(1, shared, 3, 123)),
  1640. %% Receive no error.
  1641. {error, timeout} = gen_tcp:recv(Socket, 7, 1000),
  1642. %% Send a HEADERS frame on the same stream.
  1643. {HeadersBlock, _} = cow_hpack:encode([
  1644. {<<":method">>, <<"GET">>},
  1645. {<<":scheme">>, <<"http">>},
  1646. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  1647. {<<":path">>, <<"/">>}
  1648. ]),
  1649. ok = gen_tcp:send(Socket, cow_http2:headers(1, fin, HeadersBlock)),
  1650. %% Receive a HEADERS frame as a response.
  1651. {ok, << _:24, 1:8, _:40 >>} = gen_tcp:recv(Socket, 9, 6000),
  1652. ok.
  1653. idle_stream_reject_rst_stream(Config) ->
  1654. doc("RST_STREAM frames received on an idle stream must be rejected "
  1655. "with a PROTOCOL_ERROR connection error. (RFC7540 5.1)"),
  1656. {ok, Socket} = do_handshake(Config),
  1657. %% Send an RST_STREAM frame on an idle stream.
  1658. ok = gen_tcp:send(Socket, cow_http2:rst_stream(1, no_error)),
  1659. %% Receive a PROTOCOL_ERROR connection error.
  1660. {ok, << _:24, 7:8, _:72, 1:32 >>} = gen_tcp:recv(Socket, 17, 6000),
  1661. ok.
  1662. idle_stream_reject_push_promise(Config) ->
  1663. doc("PUSH_PROMISE frames received on an idle stream must be rejected "
  1664. "with a PROTOCOL_ERROR connection error. (RFC7540 5.1)"),
  1665. {ok, Socket} = do_handshake(Config),
  1666. %% Send a PUSH_PROMISE frame on an idle stream.
  1667. {HeadersBlock, _} = cow_hpack:encode([
  1668. {<<":method">>, <<"GET">>},
  1669. {<<":scheme">>, <<"http">>},
  1670. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  1671. {<<":path">>, <<"/">>}
  1672. ]),
  1673. ok = gen_tcp:send(Socket, cow_http2:push_promise(1, 3, HeadersBlock)),
  1674. %% Receive a PROTOCOL_ERROR connection error.
  1675. {ok, << _:24, 7:8, _:72, 1:32 >>} = gen_tcp:recv(Socket, 17, 6000),
  1676. ok.
  1677. idle_stream_reject_window_update(Config) ->
  1678. doc("WINDOW_UPDATE frames received on an idle stream must be rejected "
  1679. "with a PROTOCOL_ERROR connection error. (RFC7540 5.1)"),
  1680. {ok, Socket} = do_handshake(Config),
  1681. %% Send a WINDOW_UPDATE frame on an idle stream.
  1682. ok = gen_tcp:send(Socket, cow_http2:window_update(1, 12345)),
  1683. %% Receive a PROTOCOL_ERROR connection error.
  1684. {ok, << _:24, 7:8, _:72, 1:32 >>} = gen_tcp:recv(Socket, 17, 6000),
  1685. ok.
  1686. %reserved (local) - after sending PUSH_PROMISE:
  1687. % An endpoint MUST NOT send any type of frame other than HEADERS,
  1688. % RST_STREAM, or PRIORITY in this state.
  1689. %%% how to test this?
  1690. %
  1691. % A PRIORITY or WINDOW_UPDATE frame MAY be received in this state.
  1692. % Receiving any type of frame other than RST_STREAM, PRIORITY, or
  1693. % WINDOW_UPDATE on a stream in this state MUST be treated as a
  1694. % connection error (Section 5.4.1) of type PROTOCOL_ERROR.
  1695. %%% we need to use a large enough file for this
  1696. %
  1697. %reserved_local_reject_data
  1698. %reserved_local_reject_headers
  1699. %reserved_local_accept_priority
  1700. %reserved_local_accept_rst_stream
  1701. %reserved_local_reject_push_promise %% do we even care? we reject it always
  1702. %reserved_local_accept_window_update
  1703. %
  1704. %half-closed (remote):
  1705. % If an endpoint receives additional frames, other than
  1706. % WINDOW_UPDATE, PRIORITY, or RST_STREAM, for a stream that is in
  1707. % this state, it MUST respond with a stream error (Section 5.4.2) of
  1708. % type STREAM_CLOSED.
  1709. half_closed_remote_reject_data(Config) ->
  1710. doc("DATA frames received on a half-closed (remote) stream must be rejected "
  1711. "with a STREAM_CLOSED stream error. (RFC7540 5.1, RFC7540 6.1)"),
  1712. {ok, Socket} = do_handshake(Config),
  1713. %% Send a HEADERS frame with the FIN flag set.
  1714. {HeadersBlock, _} = cow_hpack:encode([
  1715. {<<":method">>, <<"GET">>},
  1716. {<<":scheme">>, <<"http">>},
  1717. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  1718. {<<":path">>, <<"/">>}
  1719. ]),
  1720. ok = gen_tcp:send(Socket, cow_http2:headers(1, fin, HeadersBlock)),
  1721. %% Send a DATA frame on that now half-closed (remote) stream.
  1722. ok = gen_tcp:send(Socket, cow_http2:data(1, fin, <<"Unexpected DATA frame.">>)),
  1723. %% Receive a STREAM_CLOSED stream error.
  1724. {ok, << _:24, 3:8, _:8, 1:32, 5:32 >>} = gen_tcp:recv(Socket, 13, 6000),
  1725. ok.
  1726. %% We reject all invalid HEADERS with a connection error because
  1727. %% we do not want to waste resources decoding them.
  1728. half_closed_remote_reject_headers(Config) ->
  1729. doc("HEADERS frames received on a half-closed (remote) stream must be rejected "
  1730. "with a STREAM_CLOSED connection error. (RFC7540 4.3, RFC7540 5.1)"),
  1731. {ok, Socket} = do_handshake(Config),
  1732. %% Send a HEADERS frame with the FIN flag set.
  1733. {HeadersBlock, _} = cow_hpack:encode([
  1734. {<<":method">>, <<"GET">>},
  1735. {<<":scheme">>, <<"http">>},
  1736. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  1737. {<<":path">>, <<"/">>}
  1738. ]),
  1739. ok = gen_tcp:send(Socket, cow_http2:headers(1, fin, HeadersBlock)),
  1740. %% Send a HEADERS frame on that now half-closed (remote) stream.
  1741. ok = gen_tcp:send(Socket, cow_http2:headers(1, fin, HeadersBlock)),
  1742. %% Receive a STREAM_CLOSED connection error.
  1743. {ok, << _:24, 7:8, _:72, 5:32 >>} = gen_tcp:recv(Socket, 17, 6000),
  1744. ok.
  1745. half_closed_remote_accept_priority(Config) ->
  1746. doc("PRIORITY frames received on a half-closed stream must be accepted. (RFC7540 5.1)"),
  1747. {ok, Socket} = do_handshake(Config),
  1748. %% Send a HEADERS frame with the FIN flag set.
  1749. {HeadersBlock, _} = cow_hpack:encode([
  1750. {<<":method">>, <<"GET">>},
  1751. {<<":scheme">>, <<"http">>},
  1752. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  1753. {<<":path">>, <<"/">>}
  1754. ]),
  1755. ok = gen_tcp:send(Socket, cow_http2:headers(1, fin, HeadersBlock)),
  1756. %% Send a PRIORITY frame on that now half-closed (remote) stream.
  1757. ok = gen_tcp:send(Socket, cow_http2:priority(1, shared, 3, 123)),
  1758. %% Receive a HEADERS frame as a response.
  1759. {ok, << _:24, 1:8, _:40 >>} = gen_tcp:recv(Socket, 9, 6000),
  1760. ok.
  1761. half_closed_remote_accept_rst_stream(Config) ->
  1762. doc("RST_STREAM frames received on a half-closed stream must be accepted. (RFC7540 5.1)"),
  1763. {ok, Socket} = do_handshake(Config),
  1764. %% Send a HEADERS frame with the FIN flag set.
  1765. {HeadersBlock, _} = cow_hpack:encode([
  1766. {<<":method">>, <<"GET">>},
  1767. {<<":scheme">>, <<"http">>},
  1768. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  1769. {<<":path">>, <<"/">>}
  1770. ]),
  1771. ok = gen_tcp:send(Socket, cow_http2:headers(1, fin, HeadersBlock)),
  1772. %% Send an RST_STREAM frame on that now half-closed (remote) stream.
  1773. ok = gen_tcp:send(Socket, cow_http2:rst_stream(1, no_error)),
  1774. %% Receive nothing back.
  1775. {error, timeout} = gen_tcp:recv(Socket, 9, 6000),
  1776. ok.
  1777. %% half_closed_remote_reject_push_promise
  1778. %%
  1779. %% We respond to all PUSH_PROMISE frames with a PROTOCOL_ERROR connection error
  1780. %% because PUSH is disabled in that direction. We therefore cannot test other
  1781. %% error conditions.
  1782. half_closed_remote_accept_window_update(Config) ->
  1783. doc("WINDOW_UPDATE frames received on a half-closed stream must be accepted. (RFC7540 5.1)"),
  1784. {ok, Socket} = do_handshake(Config),
  1785. %% Send a HEADERS frame with the FIN flag set.
  1786. {HeadersBlock, _} = cow_hpack:encode([
  1787. {<<":method">>, <<"GET">>},
  1788. {<<":scheme">>, <<"http">>},
  1789. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  1790. {<<":path">>, <<"/">>}
  1791. ]),
  1792. ok = gen_tcp:send(Socket, cow_http2:headers(1, fin, HeadersBlock)),
  1793. %% Send a WINDOW_UPDATE frame on that now half-closed (remote) stream.
  1794. ok = gen_tcp:send(Socket, cow_http2:window_update(1, 12345)),
  1795. %% Receive a HEADERS frame as a response.
  1796. {ok, << _:24, 1:8, _:40 >>} = gen_tcp:recv(Socket, 9, 6000),
  1797. ok.
  1798. %% We reject DATA frames sent on closed streams with a STREAM_CLOSED
  1799. %% connection error regardless of how the stream was closed to simplify
  1800. %% the implementation. This excludes the few frames we ignore from
  1801. %% lingering streams that we canceled.
  1802. rst_stream_closed_reject_data(Config) ->
  1803. doc("DATA frames received on a stream closed via RST_STREAM must be rejected "
  1804. "with a STREAM_CLOSED connection error. (RFC7540 5.1, RFC7540 6.1)"),
  1805. {ok, Socket} = do_handshake(Config),
  1806. %% Send a HEADERS frame.
  1807. {HeadersBlock, _} = cow_hpack:encode([
  1808. {<<":method">>, <<"GET">>},
  1809. {<<":scheme">>, <<"http">>},
  1810. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  1811. {<<":path">>, <<"/">>}
  1812. ]),
  1813. ok = gen_tcp:send(Socket, cow_http2:headers(1, nofin, HeadersBlock)),
  1814. %% Send an RST_STREAM frame to close the stream.
  1815. ok = gen_tcp:send(Socket, cow_http2:rst_stream(1, cancel)),
  1816. %% Send a DATA frame on the now RST_STREAM closed stream.
  1817. ok = gen_tcp:send(Socket, cow_http2:data(1, fin, <<"Unexpected DATA frame.">>)),
  1818. %% Receive a STREAM_CLOSED connection error.
  1819. {ok, << _:24, 7:8, _:72, 5:32 >>} = gen_tcp:recv(Socket, 17, 6000),
  1820. ok.
  1821. %% We reject all invalid HEADERS with a connection error because
  1822. %% we do not want to waste resources decoding them.
  1823. rst_stream_closed_reject_headers(Config) ->
  1824. doc("HEADERS frames received on a stream closed via RST_STREAM must be rejected "
  1825. "with a STREAM_CLOSED connection error. (RFC7540 4.3, RFC7540 5.1)"),
  1826. {ok, Socket} = do_handshake(Config),
  1827. %% Send a HEADERS frame.
  1828. {HeadersBlock, _} = cow_hpack:encode([
  1829. {<<":method">>, <<"GET">>},
  1830. {<<":scheme">>, <<"http">>},
  1831. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  1832. {<<":path">>, <<"/">>}
  1833. ]),
  1834. ok = gen_tcp:send(Socket, cow_http2:headers(1, nofin, HeadersBlock)),
  1835. %% Send an RST_STREAM frame to close the stream.
  1836. ok = gen_tcp:send(Socket, cow_http2:rst_stream(1, cancel)),
  1837. %% Send a HEADERS frame on the now RST_STREAM closed stream.
  1838. ok = gen_tcp:send(Socket, cow_http2:headers(1, nofin, HeadersBlock)),
  1839. %% Receive a STREAM_CLOSED connection error.
  1840. {ok, << _:24, 7:8, _:72, 5:32 >>} = gen_tcp:recv(Socket, 17, 6000),
  1841. ok.
  1842. rst_stream_closed_accept_priority(Config) ->
  1843. doc("PRIORITY frames received on a stream closed via RST_STREAM "
  1844. "must be accepted. (RFC7540 5.1)"),
  1845. {ok, Socket} = do_handshake(Config),
  1846. %% Send a HEADERS frame.
  1847. {HeadersBlock, _} = cow_hpack:encode([
  1848. {<<":method">>, <<"GET">>},
  1849. {<<":scheme">>, <<"http">>},
  1850. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  1851. {<<":path">>, <<"/">>}
  1852. ]),
  1853. ok = gen_tcp:send(Socket, cow_http2:headers(1, nofin, HeadersBlock)),
  1854. %% Send an RST_STREAM frame to close the stream.
  1855. ok = gen_tcp:send(Socket, cow_http2:rst_stream(1, cancel)),
  1856. %% Send a PRIORITY frame on that now RST_STREAM closed stream.
  1857. ok = gen_tcp:send(Socket, cow_http2:priority(1, shared, 3, 123)),
  1858. %% Receive nothing back.
  1859. {error, timeout} = gen_tcp:recv(Socket, 9, 6000),
  1860. ok.
  1861. rst_stream_closed_ignore_rst_stream(Config) ->
  1862. doc("RST_STREAM frames received on a stream closed via RST_STREAM "
  1863. "must be ignored to avoid looping. (RFC7540 5.1, RFC7540 5.4.2)"),
  1864. {ok, Socket} = do_handshake(Config),
  1865. %% Send a HEADERS frame.
  1866. {HeadersBlock, _} = cow_hpack:encode([
  1867. {<<":method">>, <<"GET">>},
  1868. {<<":scheme">>, <<"http">>},
  1869. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  1870. {<<":path">>, <<"/">>}
  1871. ]),
  1872. ok = gen_tcp:send(Socket, cow_http2:headers(1, nofin, HeadersBlock)),
  1873. %% Send an RST_STREAM frame to close the stream.
  1874. ok = gen_tcp:send(Socket, cow_http2:rst_stream(1, cancel)),
  1875. %% Send an extra RST_STREAM.
  1876. ok = gen_tcp:send(Socket, cow_http2:rst_stream(1, cancel)),
  1877. %% Receive nothing back.
  1878. {error, timeout} = gen_tcp:recv(Socket, 9, 6000),
  1879. ok.
  1880. %% rst_stream_closed_reject_push_promise
  1881. %%
  1882. %% We respond to all PUSH_PROMISE frames with a PROTOCOL_ERROR connection error
  1883. %% because PUSH is disabled in that direction. We therefore cannot test other
  1884. %% error conditions.
  1885. rst_stream_closed_reject_window_update(Config) ->
  1886. doc("WINDOW_UPDATE frames received on a stream closed via RST_STREAM "
  1887. "must be rejected with a STREAM_CLOSED stream error. (RFC7540 5.1)"),
  1888. {ok, Socket} = do_handshake(Config),
  1889. %% Send a HEADERS frame.
  1890. {HeadersBlock, _} = cow_hpack:encode([
  1891. {<<":method">>, <<"GET">>},
  1892. {<<":scheme">>, <<"http">>},
  1893. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  1894. {<<":path">>, <<"/">>}
  1895. ]),
  1896. ok = gen_tcp:send(Socket, cow_http2:headers(1, nofin, HeadersBlock)),
  1897. %% Send an RST_STREAM frame to close the stream.
  1898. ok = gen_tcp:send(Socket, cow_http2:rst_stream(1, cancel)),
  1899. %% Send a WINDOW_UPDATE frame on the now RST_STREAM closed stream.
  1900. ok = gen_tcp:send(Socket, cow_http2:window_update(1, 12345)),
  1901. %% Receive a STREAM_CLOSED stream error.
  1902. {ok, << _:24, 3:8, _:8, 1:32, 5:32 >>} = gen_tcp:recv(Socket, 13, 6000),
  1903. ok.
  1904. stream_closed_reject_data(Config) ->
  1905. doc("DATA frames received on a stream closed normally must be rejected "
  1906. "with a STREAM_CLOSED connection error. (RFC7540 5.1, RFC7540 6.1)"),
  1907. {ok, Socket} = do_handshake(Config),
  1908. %% Send a HEADERS frame.
  1909. {HeadersBlock, _} = cow_hpack:encode([
  1910. {<<":method">>, <<"GET">>},
  1911. {<<":scheme">>, <<"http">>},
  1912. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  1913. {<<":path">>, <<"/">>}
  1914. ]),
  1915. ok = gen_tcp:send(Socket, cow_http2:headers(1, fin, HeadersBlock)),
  1916. %% Receive the response.
  1917. {ok, << Length1:24, 1:8, _:40 >>} = gen_tcp:recv(Socket, 9, 6000),
  1918. {ok, _} = gen_tcp:recv(Socket, Length1, 6000),
  1919. {ok, << Length2:24, 0:8, _:40 >>} = gen_tcp:recv(Socket, 9, 6000),
  1920. {ok, _} = gen_tcp:recv(Socket, Length2, 6000),
  1921. %% Send a DATA frame on the now closed stream.
  1922. ok = gen_tcp:send(Socket, cow_http2:data(1, fin, <<"Unexpected DATA frame.">>)),
  1923. %% Receive a STREAM_CLOSED connection error.
  1924. {ok, << _:24, 7:8, _:72, 5:32 >>} = gen_tcp:recv(Socket, 17, 6000),
  1925. ok.
  1926. stream_closed_reject_headers(Config) ->
  1927. doc("HEADERS frames received on a stream closed normally must be rejected "
  1928. "with a STREAM_CLOSED connection error. (RFC7540 5.1)"),
  1929. {ok, Socket} = do_handshake(Config),
  1930. %% Send a HEADERS frame.
  1931. {HeadersBlock, _} = cow_hpack:encode([
  1932. {<<":method">>, <<"GET">>},
  1933. {<<":scheme">>, <<"http">>},
  1934. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  1935. {<<":path">>, <<"/">>}
  1936. ]),
  1937. ok = gen_tcp:send(Socket, cow_http2:headers(1, fin, HeadersBlock)),
  1938. %% Receive the response.
  1939. {ok, << Length1:24, 1:8, _:40 >>} = gen_tcp:recv(Socket, 9, 6000),
  1940. {ok, _} = gen_tcp:recv(Socket, Length1, 6000),
  1941. {ok, << Length2:24, 0:8, _:40 >>} = gen_tcp:recv(Socket, 9, 6000),
  1942. {ok, _} = gen_tcp:recv(Socket, Length2, 6000),
  1943. %% Send a HEADERS frame on the now closed stream.
  1944. ok = gen_tcp:send(Socket, cow_http2:headers(1, fin, HeadersBlock)),
  1945. %% Receive a STREAM_CLOSED connection error.
  1946. {ok, << _:24, 7:8, _:72, 5:32 >>} = gen_tcp:recv(Socket, 17, 6000),
  1947. ok.
  1948. stream_closed_accept_priority(Config) ->
  1949. doc("PRIORITY frames received on a stream closed normally must be accepted. (RFC7540 5.1)"),
  1950. {ok, Socket} = do_handshake(Config),
  1951. %% Send a HEADERS frame.
  1952. {HeadersBlock, _} = cow_hpack:encode([
  1953. {<<":method">>, <<"GET">>},
  1954. {<<":scheme">>, <<"http">>},
  1955. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  1956. {<<":path">>, <<"/">>}
  1957. ]),
  1958. ok = gen_tcp:send(Socket, cow_http2:headers(1, fin, HeadersBlock)),
  1959. %% Receive the response.
  1960. {ok, << Length1:24, 1:8, _:40 >>} = gen_tcp:recv(Socket, 9, 6000),
  1961. {ok, _} = gen_tcp:recv(Socket, Length1, 6000),
  1962. {ok, << Length2:24, 0:8, _:40 >>} = gen_tcp:recv(Socket, 9, 6000),
  1963. {ok, _} = gen_tcp:recv(Socket, Length2, 6000),
  1964. %% Send a PRIORITY frame on the now closed stream.
  1965. ok = gen_tcp:send(Socket, cow_http2:priority(1, shared, 3, 123)),
  1966. %% Receive nothing back.
  1967. {error, timeout} = gen_tcp:recv(Socket, 9, 6000),
  1968. ok.
  1969. stream_closed_accept_rst_stream(Config) ->
  1970. doc("RST_STREAM frames received on a stream closed normally "
  1971. "must be accepted for a short period. (RFC7540 5.1)"),
  1972. {ok, Socket} = do_handshake(Config),
  1973. %% Send a HEADERS frame.
  1974. {HeadersBlock, _} = cow_hpack:encode([
  1975. {<<":method">>, <<"GET">>},
  1976. {<<":scheme">>, <<"http">>},
  1977. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  1978. {<<":path">>, <<"/">>}
  1979. ]),
  1980. ok = gen_tcp:send(Socket, cow_http2:headers(1, fin, HeadersBlock)),
  1981. %% Receive the response.
  1982. {ok, << Length1:24, 1:8, _:40 >>} = gen_tcp:recv(Socket, 9, 6000),
  1983. {ok, _} = gen_tcp:recv(Socket, Length1, 6000),
  1984. {ok, << Length2:24, 0:8, _:40 >>} = gen_tcp:recv(Socket, 9, 6000),
  1985. {ok, _} = gen_tcp:recv(Socket, Length2, 6000),
  1986. %% Send an RST_STREAM frame on the now closed stream.
  1987. ok = gen_tcp:send(Socket, cow_http2:rst_stream(1, cancel)),
  1988. %% Receive nothing back.
  1989. {error, timeout} = gen_tcp:recv(Socket, 9, 6000),
  1990. ok.
  1991. %% stream_closed_reject_push_promise
  1992. %%
  1993. %% We respond to all PUSH_PROMISE frames with a PROTOCOL_ERROR connection error
  1994. %% because PUSH is disabled in that direction. We therefore cannot test other
  1995. %% error conditions.
  1996. stream_closed_accept_window_update(Config) ->
  1997. doc("WINDOW_UPDATE frames received on a stream closed normally "
  1998. "must be accepted for a short period. (RFC7540 5.1)"),
  1999. {ok, Socket} = do_handshake(Config),
  2000. %% Send a HEADERS frame.
  2001. {HeadersBlock, _} = cow_hpack:encode([
  2002. {<<":method">>, <<"GET">>},
  2003. {<<":scheme">>, <<"http">>},
  2004. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  2005. {<<":path">>, <<"/">>}
  2006. ]),
  2007. ok = gen_tcp:send(Socket, cow_http2:headers(1, fin, HeadersBlock)),
  2008. %% Receive the response.
  2009. {ok, << Length1:24, 1:8, _:40 >>} = gen_tcp:recv(Socket, 9, 6000),
  2010. {ok, _} = gen_tcp:recv(Socket, Length1, 6000),
  2011. {ok, << Length2:24, 0:8, _:40 >>} = gen_tcp:recv(Socket, 9, 6000),
  2012. {ok, _} = gen_tcp:recv(Socket, Length2, 6000),
  2013. %% Send a WINDOW_UPDATE frame on the now closed stream.
  2014. ok = gen_tcp:send(Socket, cow_http2:window_update(1, 12345)),
  2015. %% Receive nothing back.
  2016. {error, timeout} = gen_tcp:recv(Socket, 9, 6000),
  2017. ok.
  2018. %% @todo While we accept RST_STREAM and WINDOW_UPDATE for a short period
  2019. %% after the stream closed normally, we may want to reject the ones coming
  2020. %% a significant amount of time after that.
  2021. %% @todo Frames may arrive on a stream after we send an RST_STREAM for it.
  2022. %% They must be ignored for a short period of time:
  2023. %
  2024. % If this state is reached as a result of sending a RST_STREAM
  2025. % frame, the peer that receives the RST_STREAM might have already
  2026. % sent -- or enqueued for sending -- frames on the stream that
  2027. % cannot be withdrawn. An endpoint MUST ignore frames that it
  2028. % receives on closed streams after it has sent a RST_STREAM frame.
  2029. % An endpoint MAY choose to limit the period over which it ignores
  2030. % frames and treat frames that arrive after this time as being in
  2031. % error.
  2032. %% @todo Ensure that rejected DATA frames result in the connection
  2033. %% flow-control window being updated. How to test this?
  2034. %
  2035. % Flow-controlled frames (i.e., DATA) received after sending
  2036. % RST_STREAM are counted toward the connection flow-control window.
  2037. % Even though these frames might be ignored, because they are sent
  2038. % before the sender receives the RST_STREAM, the sender will
  2039. % consider the frames to count against the flow-control window.
  2040. %% Stream identifiers.
  2041. reject_streamid_even(Config) ->
  2042. doc("HEADERS frames received with an even-numbered streamid "
  2043. "must be rejected with a PROTOCOL_ERROR connection error. (RFC7540 5.1.1)"),
  2044. {ok, Socket} = do_handshake(Config),
  2045. %% Send a HEADERS frame with an even-numbered streamid.
  2046. {HeadersBlock, _} = cow_hpack:encode([
  2047. {<<":method">>, <<"GET">>},
  2048. {<<":scheme">>, <<"http">>},
  2049. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  2050. {<<":path">>, <<"/">>}
  2051. ]),
  2052. ok = gen_tcp:send(Socket, cow_http2:headers(2, fin, HeadersBlock)),
  2053. %% Receive a PROTOCOL_ERROR connection error.
  2054. {ok, << _:24, 7:8, _:72, 1:32 >>} = gen_tcp:recv(Socket, 17, 6000),
  2055. ok.
  2056. reject_streamid_0(Config) ->
  2057. doc("HEADERS frames received with streamid 0 (zero) "
  2058. "must be rejected with a PROTOCOL_ERROR connection error. (RFC7540 5.1.1)"),
  2059. {ok, Socket} = do_handshake(Config),
  2060. %% Send a HEADERS frame with an streamid 0.
  2061. {HeadersBlock, _} = cow_hpack:encode([
  2062. {<<":method">>, <<"GET">>},
  2063. {<<":scheme">>, <<"http">>},
  2064. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  2065. {<<":path">>, <<"/">>}
  2066. ]),
  2067. ok = gen_tcp:send(Socket, cow_http2:headers(0, fin, HeadersBlock)),
  2068. %% Receive a PROTOCOL_ERROR connection error.
  2069. {ok, << _:24, 7:8, _:72, 1:32 >>} = gen_tcp:recv(Socket, 17, 6000),
  2070. ok.
  2071. %% See the comment for reject_streamid_lower for the rationale behind
  2072. %% having a STREAM_CLOSED connection error.
  2073. http_upgrade_reject_reuse_streamid_1(Config) ->
  2074. doc("Attempts to reuse streamid 1 after upgrading to HTTP/2 "
  2075. "must be rejected with a STREAM_CLOSED connection error. (RFC7540 5.1.1)"),
  2076. {ok, Socket} = gen_tcp:connect("localhost", config(port, Config), [binary, {active, false}]),
  2077. ok = gen_tcp:send(Socket, [
  2078. "GET / HTTP/1.1\r\n"
  2079. "Host: localhost\r\n"
  2080. "Connection: Upgrade, HTTP2-Settings\r\n"
  2081. "Upgrade: h2c\r\n"
  2082. "HTTP2-Settings: ", base64:encode(cow_http2:settings_payload(#{})), "\r\n",
  2083. "\r\n"]),
  2084. ok = do_recv_101(Socket),
  2085. %% Send a valid preface.
  2086. ok = gen_tcp:send(Socket, ["PRI * HTTP/2.0\r\n\r\nSM\r\n\r\n", cow_http2:settings(#{})]),
  2087. %% Receive the server preface.
  2088. {ok, << Len:24 >>} = gen_tcp:recv(Socket, 3, 1000),
  2089. {ok, << 4:8, 0:40, _:Len/binary >>} = gen_tcp:recv(Socket, 6 + Len, 1000),
  2090. %% Send the SETTINGS ack.
  2091. ok = gen_tcp:send(Socket, cow_http2:settings_ack()),
  2092. %% Receive the SETTINGS ack, and the response HEADERS and DATA (Stream ID 1).
  2093. Received = lists:reverse(lists:foldl(fun(_, Acc) ->
  2094. case gen_tcp:recv(Socket, 9, 1000) of
  2095. {ok, << 0:24, 4:8, 1:8, 0:32 >>} ->
  2096. [settings_ack|Acc];
  2097. {ok, << SkipLen:24, 1:8, _:8, 1:32 >>} ->
  2098. {ok, _} = gen_tcp:recv(Socket, SkipLen, 1000),
  2099. [headers|Acc];
  2100. {ok, << SkipLen:24, 0:8, _:8, 1:32 >>} ->
  2101. {ok, _} = gen_tcp:recv(Socket, SkipLen, 1000),
  2102. [data|Acc]
  2103. end
  2104. end, [], [1, 2, 3])),
  2105. case Received of
  2106. [settings_ack, headers, data] -> ok;
  2107. [headers, settings_ack, data] -> ok;
  2108. [headers, data, settings_ack] -> ok
  2109. end,
  2110. %% Send a HEADERS frame with streamid 1.
  2111. {HeadersBlock, _} = cow_hpack:encode([
  2112. {<<":method">>, <<"GET">>},
  2113. {<<":scheme">>, <<"http">>},
  2114. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  2115. {<<":path">>, <<"/">>}
  2116. ]),
  2117. ok = gen_tcp:send(Socket, cow_http2:headers(1, fin, HeadersBlock)),
  2118. %% Receive a STREAM_CLOSED connection error.
  2119. {ok, << _:24, 7:8, _:72, 5:32 >>} = gen_tcp:recv(Socket, 17, 6000),
  2120. ok.
  2121. %% The RFC gives us various error codes to return for this case,
  2122. %% depending on whether the stream existed previously and how it
  2123. %% ended up being (half-)closed. Cowboy rejects all these HEADERS
  2124. %% frames the same way: with a STREAM_CLOSED connection error.
  2125. %% Making it a connection error is particularly important in the
  2126. %% cases where a stream error would be allowed because we avoid
  2127. %% having to decode the headers and save up resources.
  2128. reject_streamid_lower(Config) ->
  2129. doc("HEADERS frames received with streamid lower than the previous stream "
  2130. "must be rejected with a STREAM_CLOSED connection error. (RFC7540 5.1.1)"),
  2131. {ok, Socket} = do_handshake(Config),
  2132. %% Send a HEADERS frame with streamid 5.
  2133. {HeadersBlock, _} = cow_hpack:encode([
  2134. {<<":method">>, <<"GET">>},
  2135. {<<":scheme">>, <<"http">>},
  2136. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  2137. {<<":path">>, <<"/">>}
  2138. ]),
  2139. ok = gen_tcp:send(Socket, cow_http2:headers(5, fin, HeadersBlock)),
  2140. %% Receive the response.
  2141. {ok, << Length1:24, 1:8, _:40 >>} = gen_tcp:recv(Socket, 9, 6000),
  2142. {ok, _} = gen_tcp:recv(Socket, Length1, 6000),
  2143. {ok, << Length2:24, 0:8, _:40 >>} = gen_tcp:recv(Socket, 9, 6000),
  2144. {ok, _} = gen_tcp:recv(Socket, Length2, 6000),
  2145. %% Send a HEADERS frame with streamid 3.
  2146. ok = gen_tcp:send(Socket, cow_http2:headers(3, fin, HeadersBlock)),
  2147. %% Receive a STREAM_CLOSED connection error.
  2148. {ok, << _:24, 7:8, _:72, 5:32 >>} = gen_tcp:recv(Socket, 17, 6000),
  2149. ok.
  2150. %% @todo We need an option to limit the number of streams one can open
  2151. %% on a connection. And we need to enforce it. (RFC7540 5.1.1)
  2152. %
  2153. % Stream identifiers cannot be reused. Long-lived connections can
  2154. % result in an endpoint exhausting the available range of stream
  2155. % identifiers. A server
  2156. % that is unable to establish a new stream identifier can send a GOAWAY
  2157. % frame so that the client is forced to open a new connection for new
  2158. % streams.
  2159. %% (RFC7540 5.2.1)
  2160. % 3. Flow control is directional with overall control provided by the
  2161. % receiver. A receiver MAY choose to set any window size that it
  2162. % desires for each stream and for the entire connection. A sender
  2163. % MUST respect flow-control limits imposed by a receiver. Clients,
  2164. % servers, and intermediaries all independently advertise their
  2165. % flow-control window as a receiver and abide by the flow-control
  2166. % limits set by their peer when sending.
  2167. %
  2168. % 4. The initial value for the flow-control window is 65,535 octets
  2169. % for both new streams and the overall connection.
  2170. %
  2171. % 5. The frame type determines whether flow control applies to a
  2172. % frame. Of the frames specified in this document, only DATA
  2173. % frames are subject to flow control; all other frame types do not
  2174. % consume space in the advertised flow-control window. This
  2175. % ensures that important control frames are not blocked by flow
  2176. % control.
  2177. %
  2178. % 6. Flow control cannot be disabled.
  2179. %% (RFC7540 5.2.2)
  2180. % Even with full awareness of the current bandwidth-delay product,
  2181. % implementation of flow control can be difficult. When using flow
  2182. % control, the receiver MUST read from the TCP receive buffer in a
  2183. % timely fashion. Failure to do so could lead to a deadlock when
  2184. % critical frames, such as WINDOW_UPDATE, are not read and acted upon.
  2185. %% (RFC7540 5.3.1)
  2186. % Inside the dependency tree, a dependent stream SHOULD only be
  2187. % allocated resources if either all of the streams that it depends on
  2188. % (the chain of parent streams up to 0x0) are closed or it is not
  2189. % possible to make progress on them.
  2190. %% We reject all invalid HEADERS with a connection error because
  2191. %% we do not want to waste resources decoding them.
  2192. reject_self_dependent_stream_headers(Config) ->
  2193. doc("HEADERS frames opening a stream that depends on itself "
  2194. "must be rejected with a PROTOCOL_ERROR connection error. (RFC7540 5.3.1)"),
  2195. {ok, Socket} = do_handshake(Config),
  2196. %% Send a HEADERS frame with priority set to depend on itself.
  2197. ok = gen_tcp:send(Socket, << 5:24, 1:8,
  2198. 0:2, 1:1, 0:4, 1:1, 0:1, 1:31, 0:1, 1:31, 0:8 >>),
  2199. %% Receive a PROTOCOL_ERROR connection error.
  2200. {ok, << _:24, 7:8, _:72, 1:32 >>} = gen_tcp:recv(Socket, 17, 6000),
  2201. ok.
  2202. %% We reject all invalid HEADERS with a connection error because
  2203. %% we do not want to waste resources decoding them.
  2204. reject_self_dependent_stream_headers_with_padding(Config) ->
  2205. doc("HEADERS frames opening a stream that depends on itself "
  2206. "must be rejected with a PROTOCOL_ERROR connection error. (RFC7540 5.3.1)"),
  2207. {ok, Socket} = do_handshake(Config),
  2208. %% Send a HEADERS frame with priority set to depend on itself.
  2209. ok = gen_tcp:send(Socket, << 6:24, 1:8,
  2210. 0:2, 1:1, 0:1, 1:1, 0:2, 1:1, 0:1, 1:31, 0:8, 0:1, 1:31, 0:8 >>),
  2211. %% Receive a PROTOCOL_ERROR connection error.
  2212. {ok, << _:24, 7:8, _:72, 1:32 >>} = gen_tcp:recv(Socket, 17, 6000),
  2213. ok.
  2214. reject_self_dependent_stream_priority(Config) ->
  2215. doc("PRIORITY frames making a stream depend on itself "
  2216. "must be rejected with a PROTOCOL_ERROR stream error. (RFC7540 5.3.1)"),
  2217. {ok, Socket} = do_handshake(Config),
  2218. %% Send a PRIORITY frame making a stream depend on itself.
  2219. ok = gen_tcp:send(Socket, cow_http2:priority(1, shared, 1, 123)),
  2220. %% Receive a PROTOCOL_ERROR stream error.
  2221. {ok, << _:24, 3:8, _:8, 1:32, 1:32 >>} = gen_tcp:recv(Socket, 13, 6000),
  2222. ok.
  2223. %% @todo Stream priorities. (RFC7540 5.3.2 5.3.3 5.3.4 5.3.5)
  2224. %% (RFC7540 5.4.1)
  2225. % An endpoint that encounters a connection error SHOULD first send a
  2226. % GOAWAY frame (Section 6.8) with the stream identifier of the last
  2227. % stream that it successfully received from its peer. The GOAWAY frame
  2228. % includes an error code that indicates why the connection is
  2229. % terminating. After sending the GOAWAY frame for an error condition,
  2230. % the endpoint MUST close the TCP connection.
  2231. %
  2232. % An endpoint can end a connection at any time. In particular, an
  2233. % endpoint MAY choose to treat a stream error as a connection error.
  2234. % Endpoints SHOULD send a GOAWAY frame when ending a connection,
  2235. % providing that circumstances permit it.
  2236. %% (RFC7540 5.4.2)
  2237. % A RST_STREAM is the last frame that an endpoint can send on a stream.
  2238. % The peer that sends the RST_STREAM frame MUST be prepared to receive
  2239. % any frames that were sent or enqueued for sending by the remote peer.
  2240. % These frames can be ignored, except where they modify connection
  2241. % state (such as the state maintained for header compression
  2242. % (Section 4.3) or flow control).
  2243. %
  2244. % Normally, an endpoint SHOULD NOT send more than one RST_STREAM frame
  2245. % for any stream. However, an endpoint MAY send additional RST_STREAM
  2246. % frames if it receives frames on a closed stream after more than a
  2247. % round-trip time. This behavior is permitted to deal with misbehaving
  2248. % implementations.
  2249. %
  2250. % To avoid looping, an endpoint MUST NOT send a RST_STREAM in response
  2251. % to a RST_STREAM frame.
  2252. %% (RFC7540 5.5)
  2253. % Extensions are permitted to use new frame types (Section 4.1), new
  2254. % settings (Section 6.5.2), or new error codes (Section 7). Registries
  2255. % are established for managing these extension points: frame types
  2256. % (Section 11.2), settings (Section 11.3), and error codes
  2257. % (Section 11.4).
  2258. %
  2259. % Implementations MUST ignore unknown or unsupported values in all
  2260. % extensible protocol elements. Implementations MUST discard frames
  2261. % that have unknown or unsupported types. This means that any of these
  2262. % extension points can be safely used by extensions without prior
  2263. % arrangement or negotiation. However, extension frames that appear in
  2264. % the middle of a header block (Section 4.3) are not permitted; these
  2265. % MUST be treated as a connection error (Section 5.4.1) of type
  2266. % PROTOCOL_ERROR.
  2267. continuation_with_extension_frame_interleaved_error(Config) ->
  2268. doc("Extension frames interleaved in a header block must be rejected "
  2269. "with a PROTOCOL_ERROR connection error. "
  2270. "(RFC7540 4.3, RFC7540 5.5, RFC7540 6.2, RFC7540 6.10)"),
  2271. {ok, Socket} = do_handshake(Config),
  2272. %% Send an unterminated HEADERS frame followed by an extension frame.
  2273. ok = gen_tcp:send(Socket, [
  2274. << 0:24, 1:8, 0:7, 1:1, 0:1, 1:31 >>,
  2275. << 0:24, 128:8, 0:8, 0:32 >>
  2276. ]),
  2277. %% Receive a PROTOCOL_ERROR connection error.
  2278. {ok, << _:24, 7:8, _:72, 1:32 >>} = gen_tcp:recv(Socket, 17, 6000),
  2279. ok.
  2280. %% (RFC7540 6.1) DATA
  2281. % Padding: Padding octets that contain no application semantic value.
  2282. % Padding octets MUST be set to zero when sending. A receiver is
  2283. % not obligated to verify padding but MAY treat non-zero padding as
  2284. % a connection error (Section 5.4.1) of type PROTOCOL_ERROR.
  2285. %
  2286. % DATA frames MUST be associated with a stream. If a DATA frame is
  2287. % received whose stream identifier field is 0x0, the recipient MUST
  2288. % respond with a connection error (Section 5.4.1) of type
  2289. % PROTOCOL_ERROR.
  2290. %% (RFC7540 6.2) HEADERS
  2291. % Padding: Padding octets that contain no application semantic value.
  2292. % Padding octets MUST be set to zero when sending. A receiver is
  2293. % not obligated to verify padding but MAY treat non-zero padding as
  2294. % a connection error (Section 5.4.1) of type PROTOCOL_ERROR.
  2295. %
  2296. % A HEADERS frame carries the END_STREAM flag that signals the end
  2297. % of a stream. However, a HEADERS frame with the END_STREAM flag
  2298. % set can be followed by CONTINUATION frames on the same stream.
  2299. % Logically, the CONTINUATION frames are part of the HEADERS frame.
  2300. %
  2301. %% @todo We probably need a test for the server sending HEADERS too large.
  2302. % The payload of a HEADERS frame contains a header block fragment
  2303. % (Section 4.3). A header block that does not fit within a HEADERS
  2304. % frame is continued in a CONTINUATION frame (Section 6.10).
  2305. %
  2306. % HEADERS frames MUST be associated with a stream. If a HEADERS frame
  2307. % is received whose stream identifier field is 0x0, the recipient MUST
  2308. % respond with a connection error (Section 5.4.1) of type
  2309. % PROTOCOL_ERROR.
  2310. %% (RFC7540 6.3) PRIORITY
  2311. % The PRIORITY frame always identifies a stream. If a PRIORITY frame
  2312. % is received with a stream identifier of 0x0, the recipient MUST
  2313. % respond with a connection error (Section 5.4.1) of type
  2314. % PROTOCOL_ERROR.
  2315. %% (RFC7540 6.4) RST_STREAM
  2316. % The RST_STREAM frame fully terminates the referenced stream and
  2317. % causes it to enter the "closed" state. After receiving a RST_STREAM
  2318. % on a stream, the receiver MUST NOT send additional frames for that
  2319. % stream, with the exception of PRIORITY. However, after sending the
  2320. % RST_STREAM, the sending endpoint MUST be prepared to receive and
  2321. % process additional frames sent on the stream that might have been
  2322. % sent by the peer prior to the arrival of the RST_STREAM.
  2323. %
  2324. % RST_STREAM frames MUST be associated with a stream. If a RST_STREAM
  2325. % frame is received with a stream identifier of 0x0, the recipient MUST
  2326. % treat this as a connection error (Section 5.4.1) of type
  2327. % PROTOCOL_ERROR.
  2328. %% (RFC7540 6.5) SETTINGS
  2329. % A SETTINGS frame MUST be sent by both endpoints at the start of a
  2330. % connection and MAY be sent at any other time by either endpoint over
  2331. % the lifetime of the connection. Implementations MUST support all of
  2332. % the parameters defined by this specification.
  2333. %
  2334. % SETTINGS frames always apply to a connection, never a single stream.
  2335. % The stream identifier for a SETTINGS frame MUST be zero (0x0). If an
  2336. % endpoint receives a SETTINGS frame whose stream identifier field is
  2337. % anything other than 0x0, the endpoint MUST respond with a connection
  2338. % error (Section 5.4.1) of type PROTOCOL_ERROR.
  2339. %
  2340. % The SETTINGS frame affects connection state. A badly formed or
  2341. % incomplete SETTINGS frame MUST be treated as a connection error
  2342. % (Section 5.4.1) of type PROTOCOL_ERROR.
  2343. %% Settings.
  2344. settings_header_table_size_client(Config) ->
  2345. doc("The SETTINGS_HEADER_TABLE_SIZE setting can be used to "
  2346. "inform the server of the maximum header table size "
  2347. "used by the client to decode header blocks. (RFC7540 6.5.2)"),
  2348. HeaderTableSize = 128,
  2349. %% Do the handhsake.
  2350. {ok, Socket} = gen_tcp:connect("localhost", config(port, Config), [binary, {active, false}]),
  2351. %% Send a valid preface.
  2352. ok = gen_tcp:send(Socket, ["PRI * HTTP/2.0\r\n\r\nSM\r\n\r\n",
  2353. cow_http2:settings(#{header_table_size => HeaderTableSize})]),
  2354. %% Receive the server preface.
  2355. {ok, << Len0:24 >>} = gen_tcp:recv(Socket, 3, 1000),
  2356. {ok, << 4:8, 0:40, _:Len0/binary >>} = gen_tcp:recv(Socket, 6 + Len0, 1000),
  2357. %% Send the SETTINGS ack.
  2358. ok = gen_tcp:send(Socket, cow_http2:settings_ack()),
  2359. %% Receive the SETTINGS ack.
  2360. {ok, << 0:24, 4:8, 1:8, 0:32 >>} = gen_tcp:recv(Socket, 9, 1000),
  2361. %% Initialize decoding/encoding states.
  2362. DecodeState = cow_hpack:set_max_size(HeaderTableSize, cow_hpack:init()),
  2363. EncodeState = cow_hpack:init(),
  2364. %% Send a HEADERS frame as a request.
  2365. {ReqHeadersBlock1, _} = cow_hpack:encode([
  2366. {<<":method">>, <<"GET">>},
  2367. {<<":scheme">>, <<"http">>},
  2368. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  2369. {<<":path">>, <<"/">>}
  2370. ], EncodeState),
  2371. ok = gen_tcp:send(Socket, cow_http2:headers(1, fin, ReqHeadersBlock1)),
  2372. %% Receive a HEADERS frame as a response.
  2373. {ok, << Len1:24, 1:8, _:40 >>} = gen_tcp:recv(Socket, 9, 6000),
  2374. {ok, RespHeadersBlock1} = gen_tcp:recv(Socket, Len1, 6000),
  2375. {RespHeaders, _} = cow_hpack:decode(RespHeadersBlock1, DecodeState),
  2376. {_, <<"200">>} = lists:keyfind(<<":status">>, 1, RespHeaders),
  2377. %% The decoding succeeded, confirming that the table size is
  2378. %% lower than or equal to HeaderTableSize.
  2379. ok.
  2380. settings_header_table_size_server(Config0) ->
  2381. doc("The SETTINGS_HEADER_TABLE_SIZE setting can be used to "
  2382. "inform the client of the maximum header table size "
  2383. "used by the server to decode header blocks. (RFC7540 6.5.2)"),
  2384. HeaderTableSize = 128,
  2385. %% Create a new listener that allows larger header table sizes.
  2386. Config = cowboy_test:init_http(name(), #{
  2387. env => #{dispatch => cowboy_router:compile(init_routes(Config0))},
  2388. max_decode_table_size => HeaderTableSize
  2389. }, Config0),
  2390. %% Do the handhsake.
  2391. {ok, Socket} = gen_tcp:connect("localhost", config(port, Config), [binary, {active, false}]),
  2392. %% Send a valid preface.
  2393. ok = gen_tcp:send(Socket, ["PRI * HTTP/2.0\r\n\r\nSM\r\n\r\n",
  2394. cow_http2:settings(#{header_table_size => HeaderTableSize})]),
  2395. %% Receive the server preface.
  2396. {ok, << Len0:24 >>} = gen_tcp:recv(Socket, 3, 1000),
  2397. {ok, Data = <<_:48, _:Len0/binary>>} = gen_tcp:recv(Socket, 6 + Len0, 1000),
  2398. %% Confirm the server's SETTINGS_HEADERS_TABLE_SIZE uses HeaderTableSize.
  2399. {ok, {settings, #{header_table_size := HeaderTableSize}}, <<>>}
  2400. = cow_http2:parse(<<Len0:24, Data/binary>>),
  2401. %% Send the SETTINGS ack.
  2402. ok = gen_tcp:send(Socket, cow_http2:settings_ack()),
  2403. %% Receive the SETTINGS ack.
  2404. {ok, << 0:24, 4:8, 1:8, 0:32 >>} = gen_tcp:recv(Socket, 9, 1000),
  2405. %% Initialize decoding/encoding states.
  2406. DecodeState = cow_hpack:init(),
  2407. EncodeState = cow_hpack:set_max_size(HeaderTableSize, cow_hpack:init()),
  2408. %% Send a HEADERS frame as a request.
  2409. {ReqHeadersBlock1, _} = cow_hpack:encode([
  2410. {<<":method">>, <<"GET">>},
  2411. {<<":scheme">>, <<"http">>},
  2412. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  2413. {<<":path">>, <<"/">>}
  2414. ], EncodeState),
  2415. ok = gen_tcp:send(Socket, cow_http2:headers(1, fin, ReqHeadersBlock1)),
  2416. %% Receive a HEADERS frame as a response.
  2417. {ok, << Len1:24, 1:8, _:40 >>} = gen_tcp:recv(Socket, 9, 6000),
  2418. {ok, RespHeadersBlock1} = gen_tcp:recv(Socket, Len1, 6000),
  2419. {RespHeaders, _} = cow_hpack:decode(RespHeadersBlock1, DecodeState),
  2420. {_, <<"200">>} = lists:keyfind(<<":status">>, 1, RespHeaders),
  2421. %% The decoding succeeded on the server, confirming that
  2422. %% the table size was updated to HeaderTableSize.
  2423. ok.
  2424. % SETTINGS_ENABLE_PUSH (0x2): This setting can be used to disable
  2425. % server push (Section 8.2). An endpoint MUST NOT send a
  2426. % PUSH_PROMISE frame if it receives this parameter set to a value of
  2427. % 0. An endpoint that has both set this parameter to 0 and had it
  2428. % acknowledged MUST treat the receipt of a PUSH_PROMISE frame as a
  2429. % connection error (Section 5.4.1) of type PROTOCOL_ERROR.
  2430. %% @todo settings_disable_push
  2431. settings_max_concurrent_streams(Config0) ->
  2432. doc("The SETTINGS_MAX_CONCURRENT_STREAMS setting can be used to "
  2433. "restrict the number of concurrent streams. (RFC7540 5.1.2, RFC7540 6.5.2)"),
  2434. %% Create a new listener that allows only a single concurrent stream.
  2435. Config = cowboy_test:init_http(name(), #{
  2436. env => #{dispatch => cowboy_router:compile(init_routes(Config0))},
  2437. max_concurrent_streams => 1
  2438. }, Config0),
  2439. {ok, Socket} = do_handshake(Config),
  2440. %% Send two HEADERS frames as two separate streams.
  2441. Headers = [
  2442. {<<":method">>, <<"GET">>},
  2443. {<<":scheme">>, <<"http">>},
  2444. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  2445. {<<":path">>, <<"/long_polling">>}
  2446. ],
  2447. {ReqHeadersBlock1, EncodeState} = cow_hpack:encode(Headers),
  2448. {ReqHeadersBlock2, _} = cow_hpack:encode(Headers, EncodeState),
  2449. ok = gen_tcp:send(Socket, [
  2450. cow_http2:headers(1, fin, ReqHeadersBlock1),
  2451. cow_http2:headers(3, fin, ReqHeadersBlock2)
  2452. ]),
  2453. %% Receive a REFUSED_STREAM stream error.
  2454. {ok, << _:24, 3:8, _:8, 3:32, 7:32 >>} = gen_tcp:recv(Socket, 13, 6000),
  2455. ok.
  2456. settings_max_concurrent_streams_0(Config0) ->
  2457. doc("The SETTINGS_MAX_CONCURRENT_STREAMS setting can be set to "
  2458. "0 to refuse all incoming streams. (RFC7540 5.1.2, RFC7540 6.5.2)"),
  2459. %% Create a new listener that allows only a single concurrent stream.
  2460. Config = cowboy_test:init_http(name(), #{
  2461. env => #{dispatch => cowboy_router:compile(init_routes(Config0))},
  2462. max_concurrent_streams => 0
  2463. }, Config0),
  2464. {ok, Socket} = do_handshake(Config),
  2465. %% Send a HEADERS frame.
  2466. {HeadersBlock, _} = cow_hpack:encode([
  2467. {<<":method">>, <<"GET">>},
  2468. {<<":scheme">>, <<"http">>},
  2469. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  2470. {<<":path">>, <<"/long_polling">>}
  2471. ]),
  2472. ok = gen_tcp:send(Socket, cow_http2:headers(1, fin, HeadersBlock)),
  2473. %% Receive a REFUSED_STREAM stream error.
  2474. {ok, << _:24, 3:8, _:8, 1:32, 7:32 >>} = gen_tcp:recv(Socket, 13, 6000),
  2475. ok.
  2476. %% @todo The client can limit the number of concurrent streams too. (RFC7540 5.1.2)
  2477. %
  2478. % A peer can limit the number of concurrently active streams using the
  2479. % SETTINGS_MAX_CONCURRENT_STREAMS parameter (see Section 6.5.2) within
  2480. % a SETTINGS frame. The maximum concurrent streams setting is specific
  2481. % to each endpoint and applies only to the peer that receives the
  2482. % setting. That is, clients specify the maximum number of concurrent
  2483. % streams the server can initiate, and servers specify the maximum
  2484. % number of concurrent streams the client can initiate.
  2485. %
  2486. % Endpoints MUST NOT exceed the limit set by their peer. An endpoint
  2487. % that receives a HEADERS frame that causes its advertised concurrent
  2488. % stream limit to be exceeded MUST treat this as a stream error
  2489. % (Section 5.4.2) of type PROTOCOL_ERROR or REFUSED_STREAM. The choice
  2490. % of error code determines whether the endpoint wishes to enable
  2491. % automatic retry (see Section 8.1.4) for details).
  2492. settings_initial_window_size(Config0) ->
  2493. doc("The SETTINGS_INITIAL_WINDOW_SIZE setting can be used to "
  2494. "change the initial window size of streams. (RFC7540 6.5.2)"),
  2495. %% Create a new listener that sets initial window sizes to 100000.
  2496. Config = cowboy_test:init_http(name(), #{
  2497. env => #{dispatch => cowboy_router:compile(init_routes(Config0))},
  2498. initial_connection_window_size => 100000,
  2499. initial_stream_window_size => 100000
  2500. }, Config0),
  2501. %% We need to do the handshake manually because a WINDOW_UPDATE
  2502. %% frame will be sent to update the connection window.
  2503. {ok, Socket} = gen_tcp:connect("localhost", config(port, Config), [binary, {active, false}]),
  2504. %% Send a valid preface.
  2505. ok = gen_tcp:send(Socket, ["PRI * HTTP/2.0\r\n\r\nSM\r\n\r\n", cow_http2:settings(#{})]),
  2506. %% Receive the server preface.
  2507. {ok, << Len1:24 >>} = gen_tcp:recv(Socket, 3, 1000),
  2508. {ok, << 4:8, 0:40, _:Len1/binary >>} = gen_tcp:recv(Socket, 6 + Len1, 1000),
  2509. %% Send the SETTINGS ack.
  2510. ok = gen_tcp:send(Socket, cow_http2:settings_ack()),
  2511. %% Receive the WINDOW_UPDATE for the connection.
  2512. {ok, << 4:24, 8:8, 0:40, _:32 >>} = gen_tcp:recv(Socket, 13, 1000),
  2513. %% Receive the SETTINGS ack.
  2514. {ok, << 0:24, 4:8, 1:8, 0:32 >>} = gen_tcp:recv(Socket, 9, 1000),
  2515. %% Send a HEADERS frame initiating a stream followed by
  2516. %% DATA frames totaling 90000 bytes of body.
  2517. Headers = [
  2518. {<<":method">>, <<"POST">>},
  2519. {<<":scheme">>, <<"http">>},
  2520. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  2521. {<<":path">>, <<"/long_polling">>}
  2522. ],
  2523. {HeadersBlock, _} = cow_hpack:encode(Headers),
  2524. ok = gen_tcp:send(Socket, [
  2525. cow_http2:headers(1, nofin, HeadersBlock),
  2526. cow_http2:data(1, nofin, <<0:15000/unit:8>>),
  2527. cow_http2:data(1, nofin, <<0:15000/unit:8>>),
  2528. cow_http2:data(1, nofin, <<0:15000/unit:8>>),
  2529. cow_http2:data(1, nofin, <<0:15000/unit:8>>),
  2530. cow_http2:data(1, nofin, <<0:15000/unit:8>>),
  2531. cow_http2:data(1, fin, <<0:15000/unit:8>>)
  2532. ]),
  2533. %% Receive a proper response.
  2534. {ok, << Len2:24, 1:8, _:40 >>} = gen_tcp:recv(Socket, 9, 6000),
  2535. {ok, _} = gen_tcp:recv(Socket, Len2, 6000),
  2536. %% No errors follow due to our sending of more than 65535 bytes of data.
  2537. {error, timeout} = gen_tcp:recv(Socket, 0, 1000),
  2538. ok.
  2539. settings_initial_window_size_after_ack(Config0) ->
  2540. doc("The SETTINGS_INITIAL_WINDOW_SIZE setting can be used to "
  2541. "change the initial window size of streams. It is applied "
  2542. "to all existing streams upon receipt of the SETTINGS ack. (RFC7540 6.5.2)"),
  2543. %% Create a new listener that sets the initial stream window sizes to 0.
  2544. Config = cowboy_test:init_http(name(), #{
  2545. env => #{dispatch => cowboy_router:compile(init_routes(Config0))},
  2546. initial_stream_window_size => 0
  2547. }, Config0),
  2548. %% We need to do the handshake manually because we don't
  2549. %% want to send the SETTINGS ack immediately.
  2550. {ok, Socket} = gen_tcp:connect("localhost", config(port, Config), [binary, {active, false}]),
  2551. %% Send a valid preface.
  2552. ok = gen_tcp:send(Socket, ["PRI * HTTP/2.0\r\n\r\nSM\r\n\r\n", cow_http2:settings(#{})]),
  2553. %% Receive the server preface.
  2554. {ok, << Len1:24 >>} = gen_tcp:recv(Socket, 3, 1000),
  2555. {ok, << 4:8, 0:40, _:Len1/binary >>} = gen_tcp:recv(Socket, 6 + Len1, 1000),
  2556. %%
  2557. %% Don't send the SETTINGS ack yet! We want to create a stream first.
  2558. %%
  2559. %% Receive the SETTINGS ack.
  2560. {ok, << 0:24, 4:8, 1:8, 0:32 >>} = gen_tcp:recv(Socket, 9, 1000),
  2561. %% Send a HEADERS frame initiating a stream, a SETTINGS ack
  2562. %% and a small DATA frame despite no window available in the stream.
  2563. Headers = [
  2564. {<<":method">>, <<"POST">>},
  2565. {<<":scheme">>, <<"http">>},
  2566. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  2567. {<<":path">>, <<"/long_polling">>}
  2568. ],
  2569. {HeadersBlock, _} = cow_hpack:encode(Headers),
  2570. ok = gen_tcp:send(Socket, [
  2571. cow_http2:headers(1, nofin, HeadersBlock),
  2572. cow_http2:settings_ack(),
  2573. cow_http2:data(1, fin, <<0:32/unit:8>>)
  2574. ]),
  2575. %% Receive a FLOW_CONTROL_ERROR stream error.
  2576. {ok, << _:24, 3:8, _:8, 1:32, 3:32 >>} = gen_tcp:recv(Socket, 13, 6000),
  2577. ok.
  2578. settings_initial_window_size_before_ack(Config0) ->
  2579. doc("The SETTINGS_INITIAL_WINDOW_SIZE setting can be used to "
  2580. "change the initial window size of streams. It is only "
  2581. "applied upon receipt of the SETTINGS ack. (RFC7540 6.5.2)"),
  2582. %% Create a new listener that sets the initial stream window sizes to 0.
  2583. Config = cowboy_test:init_http(name(), #{
  2584. env => #{dispatch => cowboy_router:compile(init_routes(Config0))},
  2585. initial_stream_window_size => 0
  2586. }, Config0),
  2587. %% We need to do the handshake manually because we don't
  2588. %% want to send the SETTINGS ack.
  2589. {ok, Socket} = gen_tcp:connect("localhost", config(port, Config), [binary, {active, false}]),
  2590. %% Send a valid preface.
  2591. ok = gen_tcp:send(Socket, ["PRI * HTTP/2.0\r\n\r\nSM\r\n\r\n", cow_http2:settings(#{})]),
  2592. %% Receive the server preface.
  2593. {ok, << Len1:24 >>} = gen_tcp:recv(Socket, 3, 1000),
  2594. {ok, << 4:8, 0:40, _:Len1/binary >>} = gen_tcp:recv(Socket, 6 + Len1, 1000),
  2595. %%
  2596. %% Don't send the SETTINGS ack! We want the server to keep the original settings.
  2597. %%
  2598. %% Receive the SETTINGS ack.
  2599. {ok, << 0:24, 4:8, 1:8, 0:32 >>} = gen_tcp:recv(Socket, 9, 1000),
  2600. %% Send a HEADERS frame initiating a stream followed by
  2601. %% DATA frames totaling 60000 bytes of body.
  2602. Headers = [
  2603. {<<":method">>, <<"POST">>},
  2604. {<<":scheme">>, <<"http">>},
  2605. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  2606. {<<":path">>, <<"/long_polling">>}
  2607. ],
  2608. {HeadersBlock, _} = cow_hpack:encode(Headers),
  2609. ok = gen_tcp:send(Socket, [
  2610. cow_http2:headers(1, nofin, HeadersBlock),
  2611. cow_http2:data(1, nofin, <<0:15000/unit:8>>),
  2612. cow_http2:data(1, nofin, <<0:15000/unit:8>>),
  2613. cow_http2:data(1, nofin, <<0:15000/unit:8>>),
  2614. cow_http2:data(1, fin, <<0:15000/unit:8>>)
  2615. ]),
  2616. %% Receive a proper response.
  2617. {ok, << Len2:24, 1:8, _:40 >>} = gen_tcp:recv(Socket, 9, 6000),
  2618. {ok, _} = gen_tcp:recv(Socket, Len2, 6000),
  2619. %% No errors follow due to our sending of more than 0 bytes of data.
  2620. {error, timeout} = gen_tcp:recv(Socket, 0, 1000),
  2621. ok.
  2622. settings_max_frame_size(Config0) ->
  2623. doc("The SETTINGS_MAX_FRAME_SIZE setting can be used to "
  2624. "change the maximum frame size allowed. (RFC7540 6.5.2)"),
  2625. %% Create a new listener that sets the maximum frame size to 30000.
  2626. Config = cowboy_test:init_http(name(), #{
  2627. env => #{dispatch => cowboy_router:compile(init_routes(Config0))},
  2628. max_frame_size_received => 30000
  2629. }, Config0),
  2630. %% Do the handshake.
  2631. {ok, Socket} = do_handshake(Config),
  2632. %% Send a HEADERS frame initiating a stream followed by
  2633. %% a single 25000 bytes DATA frame.
  2634. Headers = [
  2635. {<<":method">>, <<"POST">>},
  2636. {<<":scheme">>, <<"http">>},
  2637. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  2638. {<<":path">>, <<"/long_polling">>}
  2639. ],
  2640. {HeadersBlock, _} = cow_hpack:encode(Headers),
  2641. ok = gen_tcp:send(Socket, [
  2642. cow_http2:headers(1, nofin, HeadersBlock),
  2643. cow_http2:data(1, fin, <<0:25000/unit:8>>)
  2644. ]),
  2645. %% Receive a proper response.
  2646. {ok, << Len2:24, 1:8, _:40 >>} = gen_tcp:recv(Socket, 9, 6000),
  2647. {ok, _} = gen_tcp:recv(Socket, Len2, 6000),
  2648. %% No errors follow due to our sending of a 25000 bytes frame.
  2649. {error, timeout} = gen_tcp:recv(Socket, 0, 1000),
  2650. ok.
  2651. settings_max_frame_size_reject_too_small(Config) ->
  2652. doc("A SETTINGS_MAX_FRAME_SIZE smaller than 16384 must be rejected "
  2653. "with a PROTOCOL_ERROR connection error. (RFC7540 6.5.2)"),
  2654. {ok, Socket} = do_handshake(Config),
  2655. %% Send a SETTINGS frame with a SETTINGS_MAX_FRAME_SIZE lower than 16384.
  2656. ok = gen_tcp:send(Socket, << 6:24, 4:8, 0:40, 5:16, 16383:32 >>),
  2657. %% Receive a PROTOCOL_ERROR connection error.
  2658. {ok, << _:24, 7:8, _:72, 1:32 >>} = gen_tcp:recv(Socket, 17, 6000),
  2659. ok.
  2660. settings_max_frame_size_reject_too_large(Config) ->
  2661. doc("A SETTINGS_MAX_FRAME_SIZE larger than 16777215 must be rejected "
  2662. "with a PROTOCOL_ERROR connection error. (RFC7540 6.5.2)"),
  2663. {ok, Socket} = do_handshake(Config),
  2664. %% Send a SETTINGS frame with a SETTINGS_MAX_FRAME_SIZE larger than 16777215.
  2665. ok = gen_tcp:send(Socket, << 6:24, 4:8, 0:40, 5:16, 16777216:32 >>),
  2666. %% Receive a PROTOCOL_ERROR connection error.
  2667. {ok, << _:24, 7:8, _:72, 1:32 >>} = gen_tcp:recv(Socket, 17, 6000),
  2668. ok.
  2669. % SETTINGS_MAX_HEADER_LIST_SIZE (0x6): This advisory setting informs a
  2670. % peer of the maximum size of header list that the sender is
  2671. % prepared to accept, in octets. The value is based on the
  2672. % uncompressed size of header fields, including the length of the
  2673. % name and value in octets plus an overhead of 32 octets for each
  2674. % header field.
  2675. %
  2676. % For any given request, a lower limit than what is advertised MAY
  2677. % be enforced. The initial value of this setting is unlimited.
  2678. %
  2679. % An endpoint that receives a SETTINGS frame with any unknown or
  2680. % unsupported identifier MUST ignore that setting. (6.5.2 and 6.5.3)
  2681. %% (RFC7540 6.5.3)
  2682. % Upon receiving a SETTINGS frame with the ACK flag set, the
  2683. % sender of the altered parameters can rely on the setting having been
  2684. % applied.
  2685. %
  2686. % If the sender of a SETTINGS frame does not receive an acknowledgement
  2687. % within a reasonable amount of time, it MAY issue a connection error
  2688. % (Section 5.4.1) of type SETTINGS_TIMEOUT.
  2689. %% (RFC7540 6.6) PUSH_PROMISE
  2690. % @todo PUSH_PROMISE frames have a reserved bit in the payload that must be ignored.
  2691. %
  2692. % Padding: Padding octets that contain no application semantic value.
  2693. % Padding octets MUST be set to zero when sending. A receiver is
  2694. % not obligated to verify padding but MAY treat non-zero padding as
  2695. % a connection error (Section 5.4.1) of type PROTOCOL_ERROR.
  2696. %
  2697. % PUSH_PROMISE frames MUST only be sent on a peer-initiated stream that
  2698. % is in either the "open" or "half-closed (remote)" state. The stream
  2699. % identifier of a PUSH_PROMISE frame indicates the stream it is
  2700. % associated with. If the stream identifier field specifies the value
  2701. % 0x0, a recipient MUST respond with a connection error (Section 5.4.1)
  2702. % of type PROTOCOL_ERROR.
  2703. %
  2704. % PUSH_PROMISE MUST NOT be sent if the SETTINGS_ENABLE_PUSH setting of
  2705. % the peer endpoint is set to 0. An endpoint that has set this setting
  2706. % and has received acknowledgement MUST treat the receipt of a
  2707. % PUSH_PROMISE frame as a connection error (Section 5.4.1) of type
  2708. % PROTOCOL_ERROR.
  2709. %
  2710. % Since PUSH_PROMISE reserves a stream, ignoring a PUSH_PROMISE frame
  2711. % causes the stream state to become indeterminate. A receiver MUST
  2712. % treat the receipt of a PUSH_PROMISE on a stream that is neither
  2713. % "open" nor "half-closed (local)" as a connection error
  2714. % (Section 5.4.1) of type PROTOCOL_ERROR.
  2715. %
  2716. % A receiver MUST treat the receipt of a PUSH_PROMISE that promises an
  2717. % illegal stream identifier (Section 5.1.1) as a connection error
  2718. % (Section 5.4.1) of type PROTOCOL_ERROR. Note that an illegal stream
  2719. % identifier is an identifier for a stream that is not currently in the
  2720. % "idle" state.
  2721. %% (RFC7540 6.7) PING
  2722. % PING frames are not associated with any individual stream. If a PING
  2723. % frame is received with a stream identifier field value other than
  2724. % 0x0, the recipient MUST respond with a connection error
  2725. % (Section 5.4.1) of type PROTOCOL_ERROR.
  2726. %% (RFC7540 6.8) GOAWAY
  2727. % @todo GOAWAY frames have a reserved bit in the payload that must be ignored.
  2728. %
  2729. %% @todo We should eventually implement the mechanism for gracefully
  2730. %% shutting down of the connection. (Send the GOAWAY, finish processing
  2731. %% the current set of streams, give up after a certain timeout.)
  2732. %
  2733. %% @todo If we graceful shutdown and receive a GOAWAY, we give up too.
  2734. % A GOAWAY frame might not immediately precede closing of the
  2735. % connection; a receiver of a GOAWAY that has no more use for the
  2736. % connection SHOULD still send a GOAWAY frame before terminating the
  2737. % connection.
  2738. %
  2739. %% @todo And it gets more complex when you think about h1 to h2 proxies.
  2740. % A server that is attempting to gracefully shut down a
  2741. % connection SHOULD send an initial GOAWAY frame with the last stream
  2742. % identifier set to 2^31-1 and a NO_ERROR code. This signals to the
  2743. % client that a shutdown is imminent and that initiating further
  2744. % requests is prohibited. After allowing time for any in-flight stream
  2745. % creation (at least one round-trip time), the server can send another
  2746. % GOAWAY frame with an updated last stream identifier. This ensures
  2747. % that a connection can be cleanly shut down without losing requests.
  2748. %
  2749. %% @todo And of course even if we shutdown we need to be careful about
  2750. %% the connection state.
  2751. % After sending a GOAWAY frame, the sender can discard frames for
  2752. % streams initiated by the receiver with identifiers higher than the
  2753. % identified last stream. However, any frames that alter connection
  2754. % state cannot be completely ignored. For instance, HEADERS,
  2755. % PUSH_PROMISE, and CONTINUATION frames MUST be minimally processed to
  2756. % ensure the state maintained for header compression is consistent (see
  2757. % Section 4.3); similarly, DATA frames MUST be counted toward the
  2758. % connection flow-control window. Failure to process these frames can
  2759. % cause flow control or header compression state to become
  2760. % unsynchronized.
  2761. %
  2762. % The GOAWAY frame applies to the connection, not a specific stream.
  2763. % An endpoint MUST treat a GOAWAY frame with a stream identifier other
  2764. % than 0x0 as a connection error (Section 5.4.1) of type
  2765. % PROTOCOL_ERROR.
  2766. %% (RFC7540 6.9) WINDOW_UPDATE
  2767. % @todo WINDOW_UPDATE frames have a reserved bit in the payload that must be ignored.
  2768. window_update_reject_0(Config) ->
  2769. doc("WINDOW_UPDATE frames with an increment of 0 for the connection "
  2770. "flow control window must be rejected with a "
  2771. "PROTOCOL_ERROR connection error. (RFC7540 6.9.1)"),
  2772. {ok, Socket} = do_handshake(Config),
  2773. %% Send connection-wide WINDOW_UPDATE frame with a value of 0.
  2774. ok = gen_tcp:send(Socket, [
  2775. cow_http2:window_update(0)
  2776. ]),
  2777. %% Receive a PROTOCOL_ERROR connection error.
  2778. {ok, << _:24, 7:8, _:72, 1:32 >>} = gen_tcp:recv(Socket, 17, 6000),
  2779. ok.
  2780. window_update_reject_0_stream(Config) ->
  2781. doc("WINDOW_UPDATE frames with an increment of 0 for a stream "
  2782. "flow control window must be rejected with a "
  2783. "PROTOCOL_ERROR stream error. (RFC7540 6.9.1)"),
  2784. {ok, Socket} = do_handshake(Config),
  2785. %% Send a HEADERS frame immediately followed by
  2786. %% a WINDOW_UPDATE frame with a value of 0.
  2787. {HeadersBlock, _} = cow_hpack:encode([
  2788. {<<":method">>, <<"GET">>},
  2789. {<<":scheme">>, <<"http">>},
  2790. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  2791. {<<":path">>, <<"/">>}
  2792. ]),
  2793. ok = gen_tcp:send(Socket, [
  2794. cow_http2:headers(1, fin, HeadersBlock),
  2795. cow_http2:window_update(1, 0)
  2796. ]),
  2797. %% Receive a PROTOCOL_ERROR stream error.
  2798. {ok, << _:24, 3:8, _:8, 1:32, 1:32 >>} = gen_tcp:recv(Socket, 13, 6000),
  2799. ok.
  2800. % A receiver that receives a flow-controlled frame MUST always account
  2801. % for its contribution against the connection flow-control window,
  2802. % unless the receiver treats this as a connection error
  2803. % (Section 5.4.1). This is necessary even if the frame is in error.
  2804. % The sender counts the frame toward the flow-control window, but if
  2805. % the receiver does not, the flow-control window at the sender and
  2806. % receiver can become different.
  2807. data_reject_overflow(Config0) ->
  2808. doc("DATA frames that cause the connection flow control window "
  2809. "to overflow must be rejected with a FLOW_CONTROL_ERROR "
  2810. "connection error. (RFC7540 6.9.1)"),
  2811. %% Create a new listener that allows only a single concurrent stream.
  2812. Config = cowboy_test:init_http(name(), #{
  2813. env => #{dispatch => cowboy_router:compile(init_routes(Config0))},
  2814. initial_stream_window_size => 100000
  2815. }, Config0),
  2816. {ok, Socket} = do_handshake(Config),
  2817. %% Send a HEADERS frame initiating a stream followed by
  2818. %% DATA frames totaling 90000 bytes of body.
  2819. Headers = [
  2820. {<<":method">>, <<"POST">>},
  2821. {<<":scheme">>, <<"http">>},
  2822. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  2823. {<<":path">>, <<"/long_polling">>}
  2824. ],
  2825. {HeadersBlock, _} = cow_hpack:encode(Headers),
  2826. ok = gen_tcp:send(Socket, [
  2827. cow_http2:headers(1, nofin, HeadersBlock),
  2828. cow_http2:data(1, nofin, <<0:15000/unit:8>>),
  2829. cow_http2:data(1, nofin, <<0:15000/unit:8>>),
  2830. cow_http2:data(1, nofin, <<0:15000/unit:8>>),
  2831. cow_http2:data(1, nofin, <<0:15000/unit:8>>),
  2832. cow_http2:data(1, nofin, <<0:15000/unit:8>>),
  2833. cow_http2:data(1, fin, <<0:15000/unit:8>>)
  2834. ]),
  2835. %% Receive a FLOW_CONTROL_ERROR connection error.
  2836. {ok, << _:24, 7:8, _:72, 3:32 >>} = gen_tcp:recv(Socket, 17, 6000),
  2837. ok.
  2838. data_reject_overflow_stream(Config0) ->
  2839. doc("DATA frames that cause the stream flow control window "
  2840. "to overflow must be rejected with a FLOW_CONTROL_ERROR "
  2841. "stream error. (RFC7540 6.9.1)"),
  2842. %% Create a new listener that allows only a single concurrent stream.
  2843. Config = cowboy_test:init_http(name(), #{
  2844. env => #{dispatch => cowboy_router:compile(init_routes(Config0))},
  2845. initial_connection_window_size => 100000
  2846. }, Config0),
  2847. %% We need to do the handshake manually because a WINDOW_UPDATE
  2848. %% frame will be sent to update the connection window.
  2849. {ok, Socket} = gen_tcp:connect("localhost", config(port, Config), [binary, {active, false}]),
  2850. %% Send a valid preface.
  2851. ok = gen_tcp:send(Socket, ["PRI * HTTP/2.0\r\n\r\nSM\r\n\r\n", cow_http2:settings(#{})]),
  2852. %% Receive the server preface.
  2853. {ok, << Len1:24 >>} = gen_tcp:recv(Socket, 3, 1000),
  2854. {ok, << 4:8, 0:40, _:Len1/binary >>} = gen_tcp:recv(Socket, 6 + Len1, 1000),
  2855. %% Send the SETTINGS ack.
  2856. ok = gen_tcp:send(Socket, cow_http2:settings_ack()),
  2857. %% Receive the WINDOW_UPDATE for the connection.
  2858. {ok, << 4:24, 8:8, 0:40, _:32 >>} = gen_tcp:recv(Socket, 13, 1000),
  2859. %% Receive the SETTINGS ack.
  2860. {ok, << 0:24, 4:8, 1:8, 0:32 >>} = gen_tcp:recv(Socket, 9, 1000),
  2861. %% Send a HEADERS frame initiating a stream followed by
  2862. %% DATA frames totaling 90000 bytes of body.
  2863. Headers = [
  2864. {<<":method">>, <<"POST">>},
  2865. {<<":scheme">>, <<"http">>},
  2866. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  2867. {<<":path">>, <<"/long_polling">>}
  2868. ],
  2869. {HeadersBlock, _} = cow_hpack:encode(Headers),
  2870. ok = gen_tcp:send(Socket, [
  2871. cow_http2:headers(1, nofin, HeadersBlock),
  2872. cow_http2:data(1, nofin, <<0:15000/unit:8>>),
  2873. cow_http2:data(1, nofin, <<0:15000/unit:8>>),
  2874. cow_http2:data(1, nofin, <<0:15000/unit:8>>),
  2875. cow_http2:data(1, nofin, <<0:15000/unit:8>>),
  2876. cow_http2:data(1, nofin, <<0:15000/unit:8>>),
  2877. cow_http2:data(1, fin, <<0:15000/unit:8>>)
  2878. ]),
  2879. %% Receive a FLOW_CONTROL_ERROR stream error.
  2880. {ok, << _:24, 3:8, _:8, 1:32, 3:32 >>} = gen_tcp:recv(Socket, 13, 6000),
  2881. ok.
  2882. %% (RFC7540 6.9.1)
  2883. % Frames with zero length with the END_STREAM flag set (that
  2884. % is, an empty DATA frame) MAY be sent if there is no available space
  2885. % in either flow-control window.
  2886. window_update_reject_overflow(Config) ->
  2887. doc("WINDOW_UPDATE frames that cause the connection flow control "
  2888. "window to exceed 2^31-1 must be rejected with a "
  2889. "FLOW_CONTROL_ERROR connection error. (RFC7540 6.9.1)"),
  2890. {ok, Socket} = do_handshake(Config),
  2891. %% Send a connection-wide WINDOW_UPDATE frame that causes the window to overflow.
  2892. ok = gen_tcp:send(Socket, [
  2893. cow_http2:window_update(16#7fffffff)
  2894. ]),
  2895. %% Receive a FLOW_CONTROL_ERROR connection error.
  2896. {ok, << _:24, 7:8, _:72, 3:32 >>} = gen_tcp:recv(Socket, 17, 6000),
  2897. ok.
  2898. window_update_reject_overflow_stream(Config) ->
  2899. doc("WINDOW_UPDATE frames that cause a stream flow control "
  2900. "window to exceed 2^31-1 must be rejected with a "
  2901. "FLOW_CONTROL_ERROR stream error. (RFC7540 6.9.1)"),
  2902. {ok, Socket} = do_handshake(Config),
  2903. %% Send a HEADERS frame immediately followed by a WINDOW_UPDATE
  2904. %% frame that causes the stream window to overflow.
  2905. {HeadersBlock, _} = cow_hpack:encode([
  2906. {<<":method">>, <<"GET">>},
  2907. {<<":scheme">>, <<"http">>},
  2908. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  2909. {<<":path">>, <<"/">>}
  2910. ]),
  2911. ok = gen_tcp:send(Socket, [
  2912. cow_http2:headers(1, fin, HeadersBlock),
  2913. cow_http2:window_update(1, 16#7fffffff)
  2914. ]),
  2915. %% Receive a FLOW_CONTROL_ERROR stream error.
  2916. {ok, << _:24, 3:8, _:8, 1:32, 3:32 >>} = gen_tcp:recv(Socket, 13, 6000),
  2917. ok.
  2918. settings_initial_window_size_changes(Config) ->
  2919. doc("When the value of SETTINGS_INITIAL_WINDOW_SIZE changes, the server "
  2920. "must adjust the size of the flow control windows of the active "
  2921. "streams. (RFC7540 6.9.2)"),
  2922. {ok, Socket} = do_handshake(Config),
  2923. %% Set SETTINGS_INITIAL_WINDOW_SIZE to 0 to prevent sending of DATA.
  2924. ok = gen_tcp:send(Socket, cow_http2:settings(#{initial_window_size => 0})),
  2925. %% Receive the SETTINGS ack.
  2926. {ok, << 0:24, 4:8, 1:8, 0:32 >>} = gen_tcp:recv(Socket, 9, 1000),
  2927. %% Send a HEADERS frame.
  2928. {HeadersBlock, _} = cow_hpack:encode([
  2929. {<<":method">>, <<"GET">>},
  2930. {<<":scheme">>, <<"http">>},
  2931. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  2932. {<<":path">>, <<"/">>}
  2933. ]),
  2934. ok = gen_tcp:send(Socket, cow_http2:headers(1, fin, HeadersBlock)),
  2935. %% Receive a response but no DATA frames are coming.
  2936. {ok, << SkipLen:24, 1:8, _:8, 1:32 >>} = gen_tcp:recv(Socket, 9, 1000),
  2937. {ok, _} = gen_tcp:recv(Socket, SkipLen, 1000),
  2938. {error, timeout} = gen_tcp:recv(Socket, 9, 1000),
  2939. %% Set SETTINGS_INITIAL_WINDOW_SIZE to a larger value.
  2940. ok = gen_tcp:send(Socket, cow_http2:settings(#{initial_window_size => 5})),
  2941. %% Receive the SETTINGS ack.
  2942. {ok, << 0:24, 4:8, 1:8, 0:32 >>} = gen_tcp:recv(Socket, 9, 1000),
  2943. %% Receive a DATA frame of that size and no other.
  2944. {ok, << 5:24, 0:8, 0:8, 1:32, "Hello" >>} = gen_tcp:recv(Socket, 14, 1000),
  2945. {error, timeout} = gen_tcp:recv(Socket, 9, 1000),
  2946. %% Set SETTINGS_INITIAL_WINDOW_SIZE to exactly the size in the body.
  2947. ok = gen_tcp:send(Socket, cow_http2:settings(#{initial_window_size => 12})),
  2948. %% Receive the SETTINGS ack.
  2949. {ok, << 0:24, 4:8, 1:8, 0:32 >>} = gen_tcp:recv(Socket, 9, 1000),
  2950. %% Receive the rest of the response.
  2951. {ok, << 7:24, 0:8, 1:8, 1:32, " world!" >>} = gen_tcp:recv(Socket, 16, 1000),
  2952. ok.
  2953. settings_initial_window_size_changes_negative(Config) ->
  2954. doc("When the value of SETTINGS_INITIAL_WINDOW_SIZE changes, the server "
  2955. "must adjust the size of the flow control windows of the active "
  2956. "streams even if their window end up negative. (RFC7540 6.9.2)"),
  2957. {ok, Socket} = do_handshake(Config),
  2958. %% Set SETTINGS_INITIAL_WINDOW_SIZE to 5.
  2959. ok = gen_tcp:send(Socket, cow_http2:settings(#{initial_window_size => 5})),
  2960. %% Receive the SETTINGS ack.
  2961. {ok, << 0:24, 4:8, 1:8, 0:32 >>} = gen_tcp:recv(Socket, 9, 1000),
  2962. %% Send a HEADERS frame.
  2963. {HeadersBlock, _} = cow_hpack:encode([
  2964. {<<":method">>, <<"GET">>},
  2965. {<<":scheme">>, <<"http">>},
  2966. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  2967. {<<":path">>, <<"/">>}
  2968. ]),
  2969. ok = gen_tcp:send(Socket, cow_http2:headers(1, fin, HeadersBlock)),
  2970. %% Receive a response with a single DATA frame of the initial size we set.
  2971. {ok, << SkipLen:24, 1:8, _:8, 1:32 >>} = gen_tcp:recv(Socket, 9, 1000),
  2972. {ok, _} = gen_tcp:recv(Socket, SkipLen, 1000),
  2973. {ok, << 5:24, 0:8, 0:8, 1:32, "Hello" >>} = gen_tcp:recv(Socket, 14, 1000),
  2974. {error, timeout} = gen_tcp:recv(Socket, 9, 1000),
  2975. %% Set SETTINGS_INITIAL_WINDOW_SIZE to 0 to make the stream's window negative.
  2976. ok = gen_tcp:send(Socket, cow_http2:settings(#{initial_window_size => 0})),
  2977. %% Receive the SETTINGS ack.
  2978. {ok, << 0:24, 4:8, 1:8, 0:32 >>} = gen_tcp:recv(Socket, 9, 1000),
  2979. %% Set SETTINGS_INITIAL_WINDOW_SIZE to exactly the size in the body.
  2980. ok = gen_tcp:send(Socket, cow_http2:settings(#{initial_window_size => 12})),
  2981. %% Receive the SETTINGS ack.
  2982. {ok, << 0:24, 4:8, 1:8, 0:32 >>} = gen_tcp:recv(Socket, 9, 1000),
  2983. %% Receive the rest of the response.
  2984. {ok, << 7:24, 0:8, 1:8, 1:32, " world!" >>} = gen_tcp:recv(Socket, 16, 1000),
  2985. ok.
  2986. settings_initial_window_size_reject_overflow(Config) ->
  2987. doc("A SETTINGS_INITIAL_WINDOW_SIZE that causes a flow control window "
  2988. "to exceed 2^31-1 must be rejected with a FLOW_CONTROL_ERROR "
  2989. "connection error. (RFC7540 6.5.2, RFC7540 6.9.2)"),
  2990. {ok, Socket} = do_handshake(Config),
  2991. %% Set SETTINGS_INITIAL_WINDOW_SIZE to 2^31.
  2992. ok = gen_tcp:send(Socket, cow_http2:settings(#{initial_window_size => 16#80000000})),
  2993. %% Receive a FLOW_CONTROL_ERROR connection error.
  2994. {ok, << _:24, 7:8, _:72, 3:32 >>} = gen_tcp:recv(Socket, 17, 6000),
  2995. ok.
  2996. %% (RFC7540 6.9.3)
  2997. %% @todo The right way to do this seems to be to wait for the SETTINGS ack
  2998. %% before we KNOW the flow control window was updated on the other side.
  2999. % A receiver that wishes to use a smaller flow-control window than the
  3000. % current size can send a new SETTINGS frame. However, the receiver
  3001. % MUST be prepared to receive data that exceeds this window size, since
  3002. % the sender might send data that exceeds the lower limit prior to
  3003. % processing the SETTINGS frame.
  3004. %% (RFC7540 6.10) CONTINUATION
  3005. % CONTINUATION frames MUST be associated with a stream. If a
  3006. % CONTINUATION frame is received whose stream identifier field is 0x0,
  3007. % the recipient MUST respond with a connection error (Section 5.4.1) of
  3008. % type PROTOCOL_ERROR.
  3009. %
  3010. % A CONTINUATION frame MUST be preceded by a HEADERS, PUSH_PROMISE or
  3011. % CONTINUATION frame without the END_HEADERS flag set. A recipient
  3012. % that observes violation of this rule MUST respond with a connection
  3013. % error (Section 5.4.1) of type PROTOCOL_ERROR.
  3014. %% (RFC7540 7) Error Codes
  3015. % Unknown or unsupported error codes MUST NOT trigger any special
  3016. % behavior. These MAY be treated by an implementation as being
  3017. % equivalent to INTERNAL_ERROR.
  3018. accept_trailers(Config) ->
  3019. doc("Trailing HEADERS frames must be accepted. (RFC7540 8.1)"),
  3020. {ok, Socket} = do_handshake(Config),
  3021. %% Send a request containing DATA and trailing HEADERS frames.
  3022. {HeadersBlock, EncodeState} = cow_hpack:encode([
  3023. {<<":method">>, <<"POST">>},
  3024. {<<":scheme">>, <<"http">>},
  3025. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  3026. {<<":path">>, <<"/long_polling">>},
  3027. {<<"trailer">>, <<"x-checksum">>}
  3028. ]),
  3029. {TrailersBlock, _} = cow_hpack:encode([
  3030. {<<"x-checksum">>, <<"md5:4cc909a007407f3706399b6496babec3">>}
  3031. ], EncodeState),
  3032. ok = gen_tcp:send(Socket, [
  3033. cow_http2:headers(1, nofin, HeadersBlock),
  3034. cow_http2:data(1, nofin, <<0:10000/unit:8>>),
  3035. cow_http2:headers(1, fin, TrailersBlock)
  3036. ]),
  3037. %% Receive a HEADERS frame as a response.
  3038. {ok, << _:24, 1:8, _:40 >>} = gen_tcp:recv(Socket, 9, 6000),
  3039. ok.
  3040. accept_trailers_continuation(Config) ->
  3041. doc("Trailing HEADERS and CONTINUATION frames must be accepted. (RFC7540 8.1)"),
  3042. {ok, Socket} = do_handshake(Config),
  3043. %% Send a request containing DATA and trailing HEADERS and CONTINUATION frames.
  3044. {HeadersBlock, EncodeState} = cow_hpack:encode([
  3045. {<<":method">>, <<"POST">>},
  3046. {<<":scheme">>, <<"http">>},
  3047. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  3048. {<<":path">>, <<"/long_polling">>},
  3049. {<<"trailer">>, <<"x-checksum">>}
  3050. ]),
  3051. {TrailersBlock, _} = cow_hpack:encode([
  3052. {<<"x-checksum">>, <<"md5:4cc909a007407f3706399b6496babec3">>}
  3053. ], EncodeState),
  3054. Len = iolist_size(TrailersBlock),
  3055. ok = gen_tcp:send(Socket, [
  3056. cow_http2:headers(1, nofin, HeadersBlock),
  3057. cow_http2:data(1, nofin, <<0:10000/unit:8>>),
  3058. <<0:24, 1:8, 0:7, 1:1, 0:1, 1:31>>,
  3059. <<Len:24, 9:8, 0:5, 1:1, 0:3, 1:31>>,
  3060. TrailersBlock
  3061. ]),
  3062. %% Receive a HEADERS frame as a response.
  3063. {ok, << _:24, 1:8, _:40 >>} = gen_tcp:recv(Socket, 9, 6000),
  3064. ok.
  3065. %% We reject all invalid HEADERS with a connection error because
  3066. %% we do not want to waste resources decoding them.
  3067. reject_trailers_nofin(Config) ->
  3068. doc("Trailing HEADERS frames received without the END_STREAM flag "
  3069. "set must be rejected with a PROTOCOL_ERROR connection error. "
  3070. "(RFC7540 8.1, RFC7540 8.1.2.6)"),
  3071. {ok, Socket} = do_handshake(Config),
  3072. %% Send a request containing DATA and trailing HEADERS frames.
  3073. %% The trailing HEADERS does not have the END_STREAM flag set.
  3074. {HeadersBlock, EncodeState} = cow_hpack:encode([
  3075. {<<":method">>, <<"POST">>},
  3076. {<<":scheme">>, <<"http">>},
  3077. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  3078. {<<":path">>, <<"/long_polling">>},
  3079. {<<"trailer">>, <<"x-checksum">>}
  3080. ]),
  3081. {TrailersBlock, _} = cow_hpack:encode([
  3082. {<<"x-checksum">>, <<"md5:4cc909a007407f3706399b6496babec3">>}
  3083. ], EncodeState),
  3084. ok = gen_tcp:send(Socket, [
  3085. cow_http2:headers(1, nofin, HeadersBlock),
  3086. cow_http2:data(1, nofin, <<0:10000/unit:8>>),
  3087. cow_http2:headers(1, nofin, TrailersBlock)
  3088. ]),
  3089. %% Receive a PROTOCOL_ERROR connection error.
  3090. {ok, << _:24, 7:8, _:72, 1:32 >>} = gen_tcp:recv(Socket, 17, 6000),
  3091. ok.
  3092. %% We reject all invalid HEADERS with a connection error because
  3093. %% we do not want to waste resources decoding them.
  3094. reject_trailers_nofin_continuation(Config) ->
  3095. doc("Trailing HEADERS frames received without the END_STREAM flag "
  3096. "set must be rejected with a PROTOCOL_ERROR connection error. "
  3097. "(RFC7540 8.1, RFC7540 8.1.2.6)"),
  3098. {ok, Socket} = do_handshake(Config),
  3099. %% Send a request containing DATA and trailing HEADERS and CONTINUATION frames.
  3100. %% The trailing HEADERS does not have the END_STREAM flag set.
  3101. {HeadersBlock, EncodeState} = cow_hpack:encode([
  3102. {<<":method">>, <<"POST">>},
  3103. {<<":scheme">>, <<"http">>},
  3104. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  3105. {<<":path">>, <<"/long_polling">>},
  3106. {<<"trailer">>, <<"x-checksum">>}
  3107. ]),
  3108. {TrailersBlock, _} = cow_hpack:encode([
  3109. {<<"x-checksum">>, <<"md5:4cc909a007407f3706399b6496babec3">>}
  3110. ], EncodeState),
  3111. Len = iolist_size(TrailersBlock),
  3112. ok = gen_tcp:send(Socket, [
  3113. cow_http2:headers(1, nofin, HeadersBlock),
  3114. cow_http2:data(1, nofin, <<0:10000/unit:8>>),
  3115. <<0:24, 1:8, 0:9, 1:31>>,
  3116. <<Len:24, 9:8, 0:5, 1:1, 0:3, 1:31>>,
  3117. TrailersBlock
  3118. ]),
  3119. %% Receive a PROTOCOL_ERROR connection error.
  3120. {ok, << _:24, 7:8, _:72, 1:32 >>} = gen_tcp:recv(Socket, 17, 6000),
  3121. ok.
  3122. headers_informational_nofin(Config) ->
  3123. doc("Informational HEADERS frames must not have the END_STREAM flag set. (RFC7540 8.1)"),
  3124. {ok, Socket} = do_handshake(Config),
  3125. %% Send a HEADERS frame on an idle stream.
  3126. {HeadersBlock, _} = cow_hpack:encode([
  3127. {<<":method">>, <<"POST">>},
  3128. {<<":scheme">>, <<"http">>},
  3129. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  3130. {<<":path">>, <<"/echo/read_body">>},
  3131. {<<"expect">>, <<"100-continue">>},
  3132. {<<"content-length">>, <<"1000000">>}
  3133. ]),
  3134. ok = gen_tcp:send(Socket, cow_http2:headers(1, nofin, HeadersBlock)),
  3135. %% Receive an informational HEADERS frame without the END_STREAM flag.
  3136. {ok, << Len:24, 1:8, 0:5, 1:1, 0:2, _:32 >>} = gen_tcp:recv(Socket, 9, 6000),
  3137. {ok, RespHeadersBlock} = gen_tcp:recv(Socket, Len, 6000),
  3138. %% Confirm it has a 100 status code.
  3139. {RespHeaders, _} = cow_hpack:decode(RespHeadersBlock),
  3140. {_, <<"100">>} = lists:keyfind(<<":status">>, 1, RespHeaders),
  3141. ok.
  3142. %% @todo This one is interesting to implement because Cowboy DOES this.
  3143. % A server can
  3144. % send a complete response prior to the client sending an entire
  3145. % request if the response does not depend on any portion of the request
  3146. % that has not been sent and received. When this is true, a server MAY
  3147. % request that the client abort transmission of a request without error
  3148. % by sending a RST_STREAM with an error code of NO_ERROR after sending
  3149. % a complete response (i.e., a frame with the END_STREAM flag).
  3150. headers_reject_uppercase_header_name(Config) ->
  3151. doc("Requests containing uppercase header names must be rejected "
  3152. "with a PROTOCOL_ERROR stream error. (RFC7540 8.1.2, RFC7540 8.1.2.6)"),
  3153. {ok, Socket} = do_handshake(Config),
  3154. %% Send a HEADERS frame with a uppercase header name.
  3155. {HeadersBlock, _} = cow_hpack:encode([
  3156. {<<":method">>, <<"GET">>},
  3157. {<<":scheme">>, <<"http">>},
  3158. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  3159. {<<":path">>, <<"/">>},
  3160. {<<"HELLO">>, <<"world">>}
  3161. ]),
  3162. ok = gen_tcp:send(Socket, cow_http2:headers(1, fin, HeadersBlock)),
  3163. %% Receive a PROTOCOL_ERROR stream error.
  3164. {ok, << _:24, 3:8, _:8, 1:32, 1:32 >>} = gen_tcp:recv(Socket, 13, 6000),
  3165. ok.
  3166. reject_response_pseudo_headers(Config) ->
  3167. doc("Requests containing response pseudo-headers must be rejected "
  3168. "with a PROTOCOL_ERROR stream error. (RFC7540 8.1.2.1, RFC7540 8.1.2.6)"),
  3169. {ok, Socket} = do_handshake(Config),
  3170. %% Send a HEADERS frame with a response pseudo-header.
  3171. {HeadersBlock, _} = cow_hpack:encode([
  3172. {<<":method">>, <<"GET">>},
  3173. {<<":scheme">>, <<"http">>},
  3174. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  3175. {<<":path">>, <<"/">>},
  3176. {<<":status">>, <<"200">>}
  3177. ]),
  3178. ok = gen_tcp:send(Socket, cow_http2:headers(1, fin, HeadersBlock)),
  3179. %% Receive a PROTOCOL_ERROR stream error.
  3180. {ok, << _:24, 3:8, _:8, 1:32, 1:32 >>} = gen_tcp:recv(Socket, 13, 6000),
  3181. ok.
  3182. reject_unknown_pseudo_headers(Config) ->
  3183. doc("Requests containing unknown pseudo-headers must be rejected "
  3184. "with a PROTOCOL_ERROR stream error. (RFC7540 8.1.2.1, RFC7540 8.1.2.6)"),
  3185. {ok, Socket} = do_handshake(Config),
  3186. %% Send a HEADERS frame with an unknown pseudo-header.
  3187. {HeadersBlock, _} = cow_hpack:encode([
  3188. {<<":method">>, <<"GET">>},
  3189. {<<":scheme">>, <<"http">>},
  3190. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  3191. {<<":path">>, <<"/">>},
  3192. {<<":upgrade">>, <<"websocket">>}
  3193. ]),
  3194. ok = gen_tcp:send(Socket, cow_http2:headers(1, fin, HeadersBlock)),
  3195. %% Receive a PROTOCOL_ERROR stream error.
  3196. {ok, << _:24, 3:8, _:8, 1:32, 1:32 >>} = gen_tcp:recv(Socket, 13, 6000),
  3197. ok.
  3198. reject_pseudo_headers_in_trailers(Config) ->
  3199. doc("Requests containing pseudo-headers in trailers must be rejected "
  3200. "with a PROTOCOL_ERROR stream error. (RFC7540 8.1.2.1, RFC7540 8.1.2.6)"),
  3201. {ok, Socket} = do_handshake(Config),
  3202. %% Send a request containing DATA and trailing HEADERS frames.
  3203. %% The trailing HEADERS contains pseudo-headers.
  3204. {HeadersBlock, EncodeState} = cow_hpack:encode([
  3205. {<<":method">>, <<"POST">>},
  3206. {<<":scheme">>, <<"http">>},
  3207. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  3208. {<<":path">>, <<"/long_polling">>},
  3209. {<<"trailer">>, <<"x-checksum">>}
  3210. ]),
  3211. {TrailersBlock, _} = cow_hpack:encode([
  3212. {<<"x-checksum">>, <<"md5:4cc909a007407f3706399b6496babec3">>},
  3213. {<<":path">>, <<"/">>}
  3214. ], EncodeState),
  3215. ok = gen_tcp:send(Socket, [
  3216. cow_http2:headers(1, nofin, HeadersBlock),
  3217. cow_http2:data(1, nofin, <<0:10000/unit:8>>),
  3218. cow_http2:headers(1, fin, TrailersBlock)
  3219. ]),
  3220. %% Receive a PROTOCOL_ERROR stream error.
  3221. {ok, << _:24, 3:8, _:8, 1:32, 1:32 >>} = gen_tcp:recv(Socket, 13, 6000),
  3222. ok.
  3223. reject_pseudo_headers_after_regular_headers(Config) ->
  3224. doc("Requests containing pseudo-headers after regular headers must be rejected "
  3225. "with a PROTOCOL_ERROR stream error. (RFC7540 8.1.2.1, RFC7540 8.1.2.6)"),
  3226. {ok, Socket} = do_handshake(Config),
  3227. %% Send a HEADERS frame with a pseudo-header after regular headers.
  3228. {HeadersBlock, _} = cow_hpack:encode([
  3229. {<<":method">>, <<"GET">>},
  3230. {<<":scheme">>, <<"http">>},
  3231. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  3232. {<<"content-length">>, <<"0">>},
  3233. {<<":path">>, <<"/">>}
  3234. ]),
  3235. ok = gen_tcp:send(Socket, cow_http2:headers(1, fin, HeadersBlock)),
  3236. %% Receive a PROTOCOL_ERROR stream error.
  3237. {ok, << _:24, 3:8, _:8, 1:32, 1:32 >>} = gen_tcp:recv(Socket, 13, 6000),
  3238. ok.
  3239. reject_connection_header(Config) ->
  3240. doc("Requests containing a connection header must be rejected "
  3241. "with a PROTOCOL_ERROR stream error. (RFC7540 8.1.2.2, RFC7540 8.1.2.6)"),
  3242. {ok, Socket} = do_handshake(Config),
  3243. %% Send a HEADERS frame with a connection header.
  3244. {HeadersBlock, _} = cow_hpack:encode([
  3245. {<<":method">>, <<"GET">>},
  3246. {<<":scheme">>, <<"http">>},
  3247. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  3248. {<<":path">>, <<"/">>},
  3249. {<<"connection">>, <<"close">>}
  3250. ]),
  3251. ok = gen_tcp:send(Socket, cow_http2:headers(1, fin, HeadersBlock)),
  3252. %% Receive a PROTOCOL_ERROR stream error.
  3253. {ok, << _:24, 3:8, _:8, 1:32, 1:32 >>} = gen_tcp:recv(Socket, 13, 6000),
  3254. ok.
  3255. reject_keep_alive_header(Config) ->
  3256. doc("Requests containing a keep-alive header must be rejected "
  3257. "with a PROTOCOL_ERROR stream error. (RFC7540 8.1.2.2, RFC7540 8.1.2.6)"),
  3258. {ok, Socket} = do_handshake(Config),
  3259. %% Send a HEADERS frame with a keep-alive header.
  3260. {HeadersBlock, _} = cow_hpack:encode([
  3261. {<<":method">>, <<"GET">>},
  3262. {<<":scheme">>, <<"http">>},
  3263. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  3264. {<<":path">>, <<"/">>},
  3265. {<<"keep-alive">>, <<"timeout=5, max=1000">>}
  3266. ]),
  3267. ok = gen_tcp:send(Socket, cow_http2:headers(1, fin, HeadersBlock)),
  3268. %% Receive a PROTOCOL_ERROR stream error.
  3269. {ok, << _:24, 3:8, _:8, 1:32, 1:32 >>} = gen_tcp:recv(Socket, 13, 6000),
  3270. ok.
  3271. reject_proxy_authenticate_header(Config) ->
  3272. doc("Requests containing a connection header must be rejected "
  3273. "with a PROTOCOL_ERROR stream error. (RFC7540 8.1.2.2, RFC7540 8.1.2.6)"),
  3274. {ok, Socket} = do_handshake(Config),
  3275. %% Send a HEADERS frame with a proxy-authenticate header.
  3276. {HeadersBlock, _} = cow_hpack:encode([
  3277. {<<":method">>, <<"GET">>},
  3278. {<<":scheme">>, <<"http">>},
  3279. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  3280. {<<":path">>, <<"/">>},
  3281. {<<"proxy-authenticate">>, <<"Basic">>}
  3282. ]),
  3283. ok = gen_tcp:send(Socket, cow_http2:headers(1, fin, HeadersBlock)),
  3284. %% Receive a PROTOCOL_ERROR stream error.
  3285. {ok, << _:24, 3:8, _:8, 1:32, 1:32 >>} = gen_tcp:recv(Socket, 13, 6000),
  3286. ok.
  3287. reject_proxy_authorization_header(Config) ->
  3288. doc("Requests containing a connection header must be rejected "
  3289. "with a PROTOCOL_ERROR stream error. (RFC7540 8.1.2.2, RFC7540 8.1.2.6)"),
  3290. {ok, Socket} = do_handshake(Config),
  3291. %% Send a HEADERS frame with a proxy-authorization header.
  3292. {HeadersBlock, _} = cow_hpack:encode([
  3293. {<<":method">>, <<"GET">>},
  3294. {<<":scheme">>, <<"http">>},
  3295. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  3296. {<<":path">>, <<"/">>},
  3297. {<<"proxy-authorization">>, <<"Basic YWxhZGRpbjpvcGVuc2VzYW1l">>}
  3298. ]),
  3299. ok = gen_tcp:send(Socket, cow_http2:headers(1, fin, HeadersBlock)),
  3300. %% Receive a PROTOCOL_ERROR stream error.
  3301. {ok, << _:24, 3:8, _:8, 1:32, 1:32 >>} = gen_tcp:recv(Socket, 13, 6000),
  3302. ok.
  3303. reject_transfer_encoding_header(Config) ->
  3304. doc("Requests containing a connection header must be rejected "
  3305. "with a PROTOCOL_ERROR stream error. (RFC7540 8.1.2.2, RFC7540 8.1.2.6)"),
  3306. {ok, Socket} = do_handshake(Config),
  3307. %% Send a HEADERS frame with a transfer-encoding header.
  3308. {HeadersBlock, _} = cow_hpack:encode([
  3309. {<<":method">>, <<"GET">>},
  3310. {<<":scheme">>, <<"http">>},
  3311. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  3312. {<<":path">>, <<"/">>},
  3313. {<<"transfer-encoding">>, <<"chunked">>}
  3314. ]),
  3315. ok = gen_tcp:send(Socket, cow_http2:headers(1, fin, HeadersBlock)),
  3316. %% Receive a PROTOCOL_ERROR stream error.
  3317. {ok, << _:24, 3:8, _:8, 1:32, 1:32 >>} = gen_tcp:recv(Socket, 13, 6000),
  3318. ok.
  3319. reject_upgrade_header(Config) ->
  3320. doc("Requests containing a connection header must be rejected "
  3321. "with a PROTOCOL_ERROR stream error. (RFC7540 8.1.2.2, RFC7540 8.1.2.6)"),
  3322. {ok, Socket} = do_handshake(Config),
  3323. %% Send a HEADERS frame with a upgrade header.
  3324. {HeadersBlock, _} = cow_hpack:encode([
  3325. {<<":method">>, <<"GET">>},
  3326. {<<":scheme">>, <<"http">>},
  3327. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  3328. {<<":path">>, <<"/">>},
  3329. {<<"upgrade">>, <<"websocket">>}
  3330. ]),
  3331. ok = gen_tcp:send(Socket, cow_http2:headers(1, fin, HeadersBlock)),
  3332. %% Receive a PROTOCOL_ERROR stream error.
  3333. {ok, << _:24, 3:8, _:8, 1:32, 1:32 >>} = gen_tcp:recv(Socket, 13, 6000),
  3334. ok.
  3335. accept_te_header_value_trailers(Config) ->
  3336. doc("Requests containing a TE header with a value of \"trailers\" "
  3337. "must be accepted. (RFC7540 8.1.2.2)"),
  3338. {ok, Socket} = do_handshake(Config),
  3339. %% Send a HEADERS frame with a TE header with value "trailers".
  3340. {HeadersBlock, _} = cow_hpack:encode([
  3341. {<<":method">>, <<"GET">>},
  3342. {<<":scheme">>, <<"http">>},
  3343. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  3344. {<<":path">>, <<"/">>},
  3345. {<<"te">>, <<"trailers">>}
  3346. ]),
  3347. ok = gen_tcp:send(Socket, cow_http2:headers(1, fin, HeadersBlock)),
  3348. %% Receive a response.
  3349. {ok, << _:24, 1:8, _:8, 1:32 >>} = gen_tcp:recv(Socket, 9, 1000),
  3350. ok.
  3351. reject_te_header_other_values(Config) ->
  3352. doc("Requests containing a TE header with a value other than \"trailers\" must be rejected "
  3353. "with a PROTOCOL_ERROR stream error. (RFC7540 8.1.2.2, RFC7540 8.1.2.6)"),
  3354. {ok, Socket} = do_handshake(Config),
  3355. %% Send a HEADERS frame with a TE header with a different value.
  3356. {HeadersBlock, _} = cow_hpack:encode([
  3357. {<<":method">>, <<"GET">>},
  3358. {<<":scheme">>, <<"http">>},
  3359. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  3360. {<<":path">>, <<"/">>},
  3361. {<<"te">>, <<"trailers, deflate;q=0.5">>}
  3362. ]),
  3363. ok = gen_tcp:send(Socket, cow_http2:headers(1, fin, HeadersBlock)),
  3364. %% Receive a PROTOCOL_ERROR stream error.
  3365. {ok, << _:24, 3:8, _:8, 1:32, 1:32 >>} = gen_tcp:recv(Socket, 13, 6000),
  3366. ok.
  3367. %% (RFC7540 8.1.2.2)
  3368. % This means that an intermediary transforming an HTTP/1.x message to
  3369. % HTTP/2 will need to remove any header fields nominated by the
  3370. % Connection header field, along with the Connection header field
  3371. % itself. Such intermediaries SHOULD also remove other connection-
  3372. % specific header fields, such as Keep-Alive, Proxy-Connection,
  3373. % Transfer-Encoding, and Upgrade, even if they are not nominated by the
  3374. % Connection header field.
  3375. reject_userinfo(Config) ->
  3376. doc("An authority containing a userinfo component must be rejected "
  3377. "with a PROTOCOL_ERROR stream error. (RFC7540 8.1.2.3, RFC7540 8.1.2.6)"),
  3378. {ok, Socket} = do_handshake(Config),
  3379. %% Send a HEADERS frame with a userinfo authority component.
  3380. {HeadersBlock, _} = cow_hpack:encode([
  3381. {<<":method">>, <<"GET">>},
  3382. {<<":scheme">>, <<"http">>},
  3383. {<<":authority">>, <<"user@localhost">>}, %% @todo Correct port number.
  3384. {<<":path">>, <<"/">>}
  3385. ]),
  3386. ok = gen_tcp:send(Socket, cow_http2:headers(1, fin, HeadersBlock)),
  3387. %% Receive a PROTOCOL_ERROR stream error.
  3388. {ok, << _:24, 3:8, _:8, 1:32, 1:32 >>} = gen_tcp:recv(Socket, 13, 6000),
  3389. ok.
  3390. %% (RFC7540 8.1.2.3)
  3391. % To ensure that the HTTP/1.1 request line can be reproduced
  3392. % accurately, this pseudo-header field MUST be omitted when
  3393. % translating from an HTTP/1.1 request that has a request target in
  3394. % origin or asterisk form (see [RFC7230], Section 5.3). Clients
  3395. % that generate HTTP/2 requests directly SHOULD use the ":authority"
  3396. % pseudo-header field instead of the Host header field. An
  3397. % intermediary that converts an HTTP/2 request to HTTP/1.1 MUST
  3398. % create a Host header field if one is not present in a request by
  3399. % copying the value of the ":authority" pseudo-header field.
  3400. reject_empty_path(Config) ->
  3401. doc("A request containing an empty path component must be rejected "
  3402. "with a PROTOCOL_ERROR stream error. (RFC7540 8.1.2.3, RFC7540 8.1.2.6)"),
  3403. {ok, Socket} = do_handshake(Config),
  3404. %% Send a HEADERS frame with an empty path component.
  3405. {HeadersBlock, _} = cow_hpack:encode([
  3406. {<<":method">>, <<"GET">>},
  3407. {<<":scheme">>, <<"http">>},
  3408. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  3409. {<<":path">>, <<>>}
  3410. ]),
  3411. ok = gen_tcp:send(Socket, cow_http2:headers(1, fin, HeadersBlock)),
  3412. %% Receive a PROTOCOL_ERROR stream error.
  3413. {ok, << _:24, 3:8, _:8, 1:32, 1:32 >>} = gen_tcp:recv(Socket, 13, 6000),
  3414. ok.
  3415. reject_missing_pseudo_header_method(Config) ->
  3416. doc("A request without a method component must be rejected "
  3417. "with a PROTOCOL_ERROR stream error. (RFC7540 8.1.2.3, RFC7540 8.1.2.6)"),
  3418. {ok, Socket} = do_handshake(Config),
  3419. %% Send a HEADERS frame without a :method pseudo-header.
  3420. {HeadersBlock, _} = cow_hpack:encode([
  3421. {<<":scheme">>, <<"http">>},
  3422. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  3423. {<<":path">>, <<>>}
  3424. ]),
  3425. ok = gen_tcp:send(Socket, cow_http2:headers(1, fin, HeadersBlock)),
  3426. %% Receive a PROTOCOL_ERROR stream error.
  3427. {ok, << _:24, 3:8, _:8, 1:32, 1:32 >>} = gen_tcp:recv(Socket, 13, 6000),
  3428. ok.
  3429. reject_many_pseudo_header_method(Config) ->
  3430. doc("A request containing more than one method component must be rejected "
  3431. "with a PROTOCOL_ERROR stream error. (RFC7540 8.1.2.3, RFC7540 8.1.2.6)"),
  3432. {ok, Socket} = do_handshake(Config),
  3433. %% Send a HEADERS frame with more than one :method pseudo-header.
  3434. {HeadersBlock, _} = cow_hpack:encode([
  3435. {<<":method">>, <<"GET">>},
  3436. {<<":method">>, <<"GET">>},
  3437. {<<":scheme">>, <<"http">>},
  3438. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  3439. {<<":path">>, <<>>}
  3440. ]),
  3441. ok = gen_tcp:send(Socket, cow_http2:headers(1, fin, HeadersBlock)),
  3442. %% Receive a PROTOCOL_ERROR stream error.
  3443. {ok, << _:24, 3:8, _:8, 1:32, 1:32 >>} = gen_tcp:recv(Socket, 13, 6000),
  3444. ok.
  3445. reject_missing_pseudo_header_scheme(Config) ->
  3446. doc("A request without a scheme component must be rejected "
  3447. "with a PROTOCOL_ERROR stream error. (RFC7540 8.1.2.3, RFC7540 8.1.2.6)"),
  3448. {ok, Socket} = do_handshake(Config),
  3449. %% Send a HEADERS frame without a :scheme pseudo-header.
  3450. {HeadersBlock, _} = cow_hpack:encode([
  3451. {<<":method">>, <<"GET">>},
  3452. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  3453. {<<":path">>, <<>>}
  3454. ]),
  3455. ok = gen_tcp:send(Socket, cow_http2:headers(1, fin, HeadersBlock)),
  3456. %% Receive a PROTOCOL_ERROR stream error.
  3457. {ok, << _:24, 3:8, _:8, 1:32, 1:32 >>} = gen_tcp:recv(Socket, 13, 6000),
  3458. ok.
  3459. reject_many_pseudo_header_scheme(Config) ->
  3460. doc("A request containing more than one scheme component must be rejected "
  3461. "with a PROTOCOL_ERROR stream error. (RFC7540 8.1.2.3, RFC7540 8.1.2.6)"),
  3462. {ok, Socket} = do_handshake(Config),
  3463. %% Send a HEADERS frame with more than one :scheme pseudo-header.
  3464. {HeadersBlock, _} = cow_hpack:encode([
  3465. {<<":method">>, <<"GET">>},
  3466. {<<":scheme">>, <<"http">>},
  3467. {<<":scheme">>, <<"http">>},
  3468. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  3469. {<<":path">>, <<>>}
  3470. ]),
  3471. ok = gen_tcp:send(Socket, cow_http2:headers(1, fin, HeadersBlock)),
  3472. %% Receive a PROTOCOL_ERROR stream error.
  3473. {ok, << _:24, 3:8, _:8, 1:32, 1:32 >>} = gen_tcp:recv(Socket, 13, 6000),
  3474. ok.
  3475. reject_missing_pseudo_header_authority(Config) ->
  3476. doc("A request without an authority component must be rejected "
  3477. "with a PROTOCOL_ERROR stream error. (RFC7540 8.1.2.3, RFC7540 8.1.2.6)"),
  3478. {ok, Socket} = do_handshake(Config),
  3479. %% Send a HEADERS frame without an :authority pseudo-header.
  3480. {HeadersBlock, _} = cow_hpack:encode([
  3481. {<<":method">>, <<"GET">>},
  3482. {<<":scheme">>, <<"http">>},
  3483. {<<":path">>, <<>>}
  3484. ]),
  3485. ok = gen_tcp:send(Socket, cow_http2:headers(1, fin, HeadersBlock)),
  3486. %% Receive a PROTOCOL_ERROR stream error.
  3487. {ok, << _:24, 3:8, _:8, 1:32, 1:32 >>} = gen_tcp:recv(Socket, 13, 6000),
  3488. ok.
  3489. reject_many_pseudo_header_authority(Config) ->
  3490. doc("A request containing more than one authority component must be rejected "
  3491. "with a PROTOCOL_ERROR stream error. (RFC7540 8.1.2.3, RFC7540 8.1.2.6)"),
  3492. {ok, Socket} = do_handshake(Config),
  3493. %% Send a HEADERS frame with more than one :authority pseudo-header.
  3494. {HeadersBlock, _} = cow_hpack:encode([
  3495. {<<":method">>, <<"GET">>},
  3496. {<<":scheme">>, <<"http">>},
  3497. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  3498. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  3499. {<<":path">>, <<>>}
  3500. ]),
  3501. ok = gen_tcp:send(Socket, cow_http2:headers(1, fin, HeadersBlock)),
  3502. %% Receive a PROTOCOL_ERROR stream error.
  3503. {ok, << _:24, 3:8, _:8, 1:32, 1:32 >>} = gen_tcp:recv(Socket, 13, 6000),
  3504. ok.
  3505. reject_missing_pseudo_header_path(Config) ->
  3506. doc("A request without a path component must be rejected "
  3507. "with a PROTOCOL_ERROR stream error. (RFC7540 8.1.2.3, RFC7540 8.1.2.6)"),
  3508. {ok, Socket} = do_handshake(Config),
  3509. %% Send a HEADERS frame without a :path pseudo-header.
  3510. {HeadersBlock, _} = cow_hpack:encode([
  3511. {<<":method">>, <<"GET">>},
  3512. {<<":scheme">>, <<"http">>},
  3513. {<<":authority">>, <<"localhost">>} %% @todo Correct port number.
  3514. ]),
  3515. ok = gen_tcp:send(Socket, cow_http2:headers(1, fin, HeadersBlock)),
  3516. %% Receive a PROTOCOL_ERROR stream error.
  3517. {ok, << _:24, 3:8, _:8, 1:32, 1:32 >>} = gen_tcp:recv(Socket, 13, 6000),
  3518. ok.
  3519. reject_many_pseudo_header_path(Config) ->
  3520. doc("A request containing more than one path component must be rejected "
  3521. "with a PROTOCOL_ERROR stream error. (RFC7540 8.1.2.3, RFC7540 8.1.2.6)"),
  3522. {ok, Socket} = do_handshake(Config),
  3523. %% Send a HEADERS frame with more than one :path pseudo-header.
  3524. {HeadersBlock, _} = cow_hpack:encode([
  3525. {<<":method">>, <<"GET">>},
  3526. {<<":scheme">>, <<"http">>},
  3527. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  3528. {<<":path">>, <<>>},
  3529. {<<":path">>, <<>>}
  3530. ]),
  3531. ok = gen_tcp:send(Socket, cow_http2:headers(1, fin, HeadersBlock)),
  3532. %% Receive a PROTOCOL_ERROR stream error.
  3533. {ok, << _:24, 3:8, _:8, 1:32, 1:32 >>} = gen_tcp:recv(Socket, 13, 6000),
  3534. ok.
  3535. %% (RFC7540 8.1.2.4)
  3536. % For HTTP/2 responses, a single ":status" pseudo-header field is
  3537. % defined that carries the HTTP status code field (see [RFC7231],
  3538. % Section 6). This pseudo-header field MUST be included in all
  3539. % responses; otherwise, the response is malformed (Section 8.1.2.6).
  3540. %% (RFC7540 8.1.2.5)
  3541. % To allow for better compression efficiency, the Cookie header field
  3542. % MAY be split into separate header fields, each with one or more
  3543. % cookie-pairs. If there are multiple Cookie header fields after
  3544. % decompression, these MUST be concatenated into a single octet string
  3545. % using the two-octet delimiter of 0x3B, 0x20 (the ASCII string "; ")
  3546. % before being passed into a non-HTTP/2 context, such as an HTTP/1.1
  3547. % connection, or a generic HTTP server application.
  3548. reject_data_size_smaller_than_content_length(Config) ->
  3549. doc("Requests that have a content-length header whose value does not "
  3550. "match the total length of the DATA frames must be rejected with "
  3551. "a PROTOCOL_ERROR stream error. (RFC7540 8.1.2.6)"),
  3552. {ok, Socket} = do_handshake(Config),
  3553. %% Send a HEADERS frame with a content-length header different
  3554. %% than the sum of the DATA frame sizes.
  3555. {HeadersBlock, _} = cow_hpack:encode([
  3556. {<<":method">>, <<"POST">>},
  3557. {<<":scheme">>, <<"http">>},
  3558. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  3559. {<<":path">>, <<"/long_polling">>},
  3560. {<<"content-length">>, <<"12">>}
  3561. ]),
  3562. ok = gen_tcp:send(Socket, [
  3563. cow_http2:headers(1, nofin, HeadersBlock),
  3564. cow_http2:data(1, fin, <<"Hello!">>)
  3565. ]),
  3566. %% Receive a PROTOCOL_ERROR stream error.
  3567. {ok, << _:24, 3:8, _:8, 1:32, 1:32 >>} = gen_tcp:recv(Socket, 13, 6000),
  3568. ok.
  3569. reject_data_size_larger_than_content_length(Config) ->
  3570. doc("Requests that have a content-length header whose value does not "
  3571. "match the total length of the DATA frames must be rejected with "
  3572. "a PROTOCOL_ERROR stream error. (RFC7540 8.1.2.6)"),
  3573. {ok, Socket} = do_handshake(Config),
  3574. %% Send a HEADERS frame with a content-length header different
  3575. %% than the sum of the DATA frame sizes.
  3576. {HeadersBlock, _} = cow_hpack:encode([
  3577. {<<":method">>, <<"POST">>},
  3578. {<<":scheme">>, <<"http">>},
  3579. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  3580. {<<":path">>, <<"/long_polling">>},
  3581. {<<"content-length">>, <<"12">>}
  3582. ]),
  3583. ok = gen_tcp:send(Socket, [
  3584. cow_http2:headers(1, nofin, HeadersBlock),
  3585. cow_http2:data(1, nofin, <<"Hello! World! Universe!">>),
  3586. cow_http2:data(1, fin, <<"Multiverse!">>)
  3587. ]),
  3588. %% Receive a PROTOCOL_ERROR stream error.
  3589. {ok, << _:24, 3:8, _:8, 1:32, 1:32 >>} = gen_tcp:recv(Socket, 13, 6000),
  3590. ok.
  3591. reject_content_length_without_data(Config) ->
  3592. doc("Requests that have a content-length header whose value does not "
  3593. "match the total length of the DATA frames must be rejected with "
  3594. "a PROTOCOL_ERROR stream error. (RFC7540 8.1.2.6)"),
  3595. {ok, Socket} = do_handshake(Config),
  3596. %% Send a HEADERS frame with a content-length header different
  3597. %% than the sum of the DATA frame sizes.
  3598. {HeadersBlock, _} = cow_hpack:encode([
  3599. {<<":method">>, <<"POST">>},
  3600. {<<":scheme">>, <<"http">>},
  3601. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  3602. {<<":path">>, <<"/long_polling">>},
  3603. {<<"content-length">>, <<"12">>}
  3604. ]),
  3605. ok = gen_tcp:send(Socket, cow_http2:headers(1, fin, HeadersBlock)),
  3606. %% Receive a PROTOCOL_ERROR stream error.
  3607. {ok, << _:24, 3:8, _:8, 1:32, 1:32 >>} = gen_tcp:recv(Socket, 13, 6000),
  3608. ok.
  3609. reject_data_size_different_than_content_length_with_trailers(Config) ->
  3610. doc("Requests that have a content-length header whose value does not "
  3611. "match the total length of the DATA frames must be rejected with "
  3612. "a PROTOCOL_ERROR stream error. (RFC7540 8.1.2.6)"),
  3613. {ok, Socket} = do_handshake(Config),
  3614. %% Send a HEADERS frame with a content-length header different
  3615. %% than the sum of the DATA frame sizes.
  3616. {HeadersBlock, EncodeState} = cow_hpack:encode([
  3617. {<<":method">>, <<"POST">>},
  3618. {<<":scheme">>, <<"http">>},
  3619. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  3620. {<<":path">>, <<"/long_polling">>},
  3621. {<<"content-length">>, <<"12">>},
  3622. {<<"trailer">>, <<"x-checksum">>}
  3623. ]),
  3624. {TrailersBlock, _} = cow_hpack:encode([
  3625. {<<"x-checksum">>, <<"md5:4cc909a007407f3706399b6496babec3">>}
  3626. ], EncodeState),
  3627. ok = gen_tcp:send(Socket, [
  3628. cow_http2:headers(1, nofin, HeadersBlock),
  3629. cow_http2:data(1, nofin, <<"Hello!">>),
  3630. cow_http2:headers(1, fin, TrailersBlock)
  3631. ]),
  3632. %% Receive a PROTOCOL_ERROR stream error.
  3633. {ok, << _:24, 3:8, _:8, 1:32, 1:32 >>} = gen_tcp:recv(Socket, 13, 6000),
  3634. ok.
  3635. reject_duplicate_content_length_header(Config) ->
  3636. doc("A request with duplicate content-length headers must be rejected "
  3637. "with a PROTOCOL_ERROR stream error. (RFC7230 3.3.2, RFC7540 8.1.2.6)"),
  3638. {ok, Socket} = do_handshake(Config),
  3639. %% Send a HEADERS frame with more than one content-length header.
  3640. {HeadersBlock, _} = cow_hpack:encode([
  3641. {<<":method">>, <<"GET">>},
  3642. {<<":scheme">>, <<"http">>},
  3643. {<<":authority">>, <<"localhost">>}, %% @todo Correct port number.
  3644. {<<":path">>, <<>>},
  3645. {<<"content-length">>, <<"12">>},
  3646. {<<"content-length">>, <<"12">>}
  3647. ]),
  3648. ok = gen_tcp:send(Socket, cow_http2:headers(1, nofin, HeadersBlock)),
  3649. %% Receive a PROTOCOL_ERROR stream error.
  3650. {ok, << _:24, 3:8, _:8, 1:32, 1:32 >>} = gen_tcp:recv(Socket, 13, 6000),
  3651. ok.
  3652. % Intermediaries that process HTTP requests or responses (i.e., any
  3653. % intermediary not acting as a tunnel) MUST NOT forward a malformed
  3654. % request or response. Malformed requests or responses that are
  3655. % detected MUST be treated as a stream error (Section 5.4.2) of type
  3656. % PROTOCOL_ERROR.
  3657. %
  3658. % For malformed requests, a server MAY send an HTTP response prior to
  3659. % closing or resetting the stream. Clients MUST NOT accept a malformed
  3660. % response. Note that these requirements are intended to protect
  3661. % against several types of common attacks against HTTP; they are
  3662. % deliberately strict because being permissive can expose
  3663. % implementations to these vulnerabilities.
  3664. %% @todo It migh be worth reproducing the good examples. (RFC7540 8.1.3)
  3665. %% (RFC7540 8.1.4)
  3666. % A server MUST NOT indicate that a stream has not been processed
  3667. % unless it can guarantee that fact. If frames that are on a stream
  3668. % are passed to the application layer for any stream, then
  3669. % REFUSED_STREAM MUST NOT be used for that stream, and a GOAWAY frame
  3670. % MUST include a stream identifier that is greater than or equal to the
  3671. % given stream identifier.
  3672. %% (RFC7540 8.2)
  3673. % Promised requests MUST be cacheable (see [RFC7231], Section 4.2.3),
  3674. % MUST be safe (see [RFC7231], Section 4.2.1), and MUST NOT include a
  3675. % request body.
  3676. %
  3677. % The server MUST include a value in the ":authority" pseudo-header
  3678. % field for which the server is authoritative (see Section 10.1).
  3679. %
  3680. % A client cannot push. Thus, servers MUST treat the receipt of a
  3681. % PUSH_PROMISE frame as a connection error (Section 5.4.1) of type
  3682. % PROTOCOL_ERROR.
  3683. %% (RFC7540 8.2.1)
  3684. % The header fields in PUSH_PROMISE and any subsequent CONTINUATION
  3685. % frames MUST be a valid and complete set of request header fields
  3686. % (Section 8.1.2.3). The server MUST include a method in the ":method"
  3687. % pseudo-header field that is safe and cacheable. If a client receives
  3688. % a PUSH_PROMISE that does not include a complete and valid set of
  3689. % header fields or the ":method" pseudo-header field identifies a
  3690. % method that is not safe, it MUST respond with a stream error
  3691. % (Section 5.4.2) of type PROTOCOL_ERROR.
  3692. %
  3693. %% @todo This probably should be documented.
  3694. % The server SHOULD send PUSH_PROMISE (Section 6.6) frames prior to
  3695. % sending any frames that reference the promised responses. This
  3696. % avoids a race where clients issue requests prior to receiving any
  3697. % PUSH_PROMISE frames.
  3698. %
  3699. % PUSH_PROMISE frames MUST NOT be sent by the client.
  3700. %
  3701. % PUSH_PROMISE frames can be sent by the server in response to any
  3702. % client-initiated stream, but the stream MUST be in either the "open"
  3703. % or "half-closed (remote)" state with respect to the server.
  3704. % PUSH_PROMISE frames are interspersed with the frames that comprise a
  3705. % response, though they cannot be interspersed with HEADERS and
  3706. % CONTINUATION frames that comprise a single header block.
  3707. %% (RFC7540 8.2.2)
  3708. % If the client determines, for any reason, that it does not wish to
  3709. % receive the pushed response from the server or if the server takes
  3710. % too long to begin sending the promised response, the client can send
  3711. % a RST_STREAM frame, using either the CANCEL or REFUSED_STREAM code
  3712. % and referencing the pushed stream's identifier.
  3713. %
  3714. % A client can use the SETTINGS_MAX_CONCURRENT_STREAMS setting to limit
  3715. % the number of responses that can be concurrently pushed by a server.
  3716. % Advertising a SETTINGS_MAX_CONCURRENT_STREAMS value of zero disables
  3717. % server push by preventing the server from creating the necessary
  3718. % streams. This does not prohibit a server from sending PUSH_PROMISE
  3719. % frames; clients need to reset any promised streams that are not
  3720. % wanted.
  3721. %% @todo Implement CONNECT. (RFC7540 8.3)
  3722. status_code_421(Config) ->
  3723. doc("The 421 Misdirected Request status code can be sent. (RFC7540 9.1.2)"),
  3724. ConnPid = gun_open(Config),
  3725. Ref = gun:get(ConnPid, "/resp/reply2/421"),
  3726. {response, fin, 421, _} = gun:await(ConnPid, Ref),
  3727. ok.
  3728. %% @todo Review (RFC7540 9.2, 9.2.1, 9.2.2) TLS 1.2 usage.
  3729. %% We probably want different ways to enforce these to simplify the life
  3730. %% of users. A function cowboy:start_h2_tls could do the same as start_tls
  3731. %% but with the security requirements of HTTP/2 enforced. Another way is to
  3732. %% have an option at the establishment of the connection that checks that
  3733. %% the security of the connection is adequate.
  3734. %% (RFC7540 10.3)
  3735. % The HTTP/2 header field encoding allows the expression of names that
  3736. % are not valid field names in the Internet Message Syntax used by
  3737. % HTTP/1.1. Requests or responses containing invalid header field
  3738. % names MUST be treated as malformed (Section 8.1.2.6).
  3739. %
  3740. % Similarly, HTTP/2 allows header field values that are not valid.
  3741. % While most of the values that can be encoded will not alter header
  3742. % field parsing, carriage return (CR, ASCII 0xd), line feed (LF, ASCII
  3743. % 0xa), and the zero character (NUL, ASCII 0x0) might be exploited by
  3744. % an attacker if they are translated verbatim. Any request or response
  3745. % that contains a character not permitted in a header field value MUST
  3746. % be treated as malformed (Section 8.1.2.6). Valid characters are
  3747. % defined by the "field-content" ABNF rule in Section 3.2 of [RFC7230].
  3748. %% (RFC7540 10.5) Denial-of-Service Considerations
  3749. % An endpoint that doesn't monitor this behavior exposes itself to a
  3750. % risk of denial-of-service attack. Implementations SHOULD track the
  3751. % use of these features and set limits on their use. An endpoint MAY
  3752. % treat activity that is suspicious as a connection error
  3753. % (Section 5.4.1) of type ENHANCE_YOUR_CALM.
  3754. %% (RFC7540 10.5.1)
  3755. % A server that receives a larger header block than it is willing to
  3756. % handle can send an HTTP 431 (Request Header Fields Too Large) status
  3757. % code [RFC6585]. A client can discard responses that it cannot
  3758. % process. The header block MUST be processed to ensure a consistent
  3759. % connection state, unless the connection is closed.
  3760. %% @todo Implement CONNECT and limit the number of CONNECT streams (RFC7540 10.5.2).
  3761. %% @todo This probably should be documented. (RFC7540 10.6)
  3762. % Implementations communicating on a secure channel MUST NOT compress
  3763. % content that includes both confidential and attacker-controlled data
  3764. % unless separate compression dictionaries are used for each source of
  3765. % data. Compression MUST NOT be used if the source of data cannot be
  3766. % reliably determined. Generic stream compression, such as that
  3767. % provided by TLS, MUST NOT be used with HTTP/2 (see Section 9.2).
  3768. %% (RFC7540 A)
  3769. % An HTTP/2 implementation MAY treat the negotiation of any of the
  3770. % following cipher suites with TLS 1.2 as a connection error
  3771. % (Section 5.4.1) of type INADEQUATE_SECURITY.