tcp.rs 180 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007
  1. // Heads up! Before working on this file you should read, at least, RFC 793 and
  2. // the parts of RFC 1122 that discuss TCP. Consult RFC 7414 when implementing
  3. // a new feature.
  4. use core::{cmp, fmt, mem};
  5. #[cfg(feature = "async")]
  6. use core::task::Waker;
  7. use crate::{Error, Result};
  8. use crate::phy::DeviceCapabilities;
  9. use crate::time::{Duration, Instant};
  10. use crate::socket::{Socket, SocketMeta, SocketHandle, PollAt};
  11. use crate::storage::{Assembler, RingBuffer};
  12. #[cfg(feature = "async")]
  13. use crate::socket::WakerRegistration;
  14. use crate::wire::{IpProtocol, IpRepr, IpAddress, IpEndpoint, TcpSeqNumber, TcpRepr, TcpControl};
  15. /// A TCP socket ring buffer.
  16. pub type SocketBuffer<'a> = RingBuffer<'a, u8>;
  17. /// The state of a TCP socket, according to [RFC 793].
  18. ///
  19. /// [RFC 793]: https://tools.ietf.org/html/rfc793
  20. #[derive(Debug, PartialEq, Eq, Clone, Copy)]
  21. pub enum State {
  22. Closed,
  23. Listen,
  24. SynSent,
  25. SynReceived,
  26. Established,
  27. FinWait1,
  28. FinWait2,
  29. CloseWait,
  30. Closing,
  31. LastAck,
  32. TimeWait
  33. }
  34. impl fmt::Display for State {
  35. fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
  36. match *self {
  37. State::Closed => write!(f, "CLOSED"),
  38. State::Listen => write!(f, "LISTEN"),
  39. State::SynSent => write!(f, "SYN-SENT"),
  40. State::SynReceived => write!(f, "SYN-RECEIVED"),
  41. State::Established => write!(f, "ESTABLISHED"),
  42. State::FinWait1 => write!(f, "FIN-WAIT-1"),
  43. State::FinWait2 => write!(f, "FIN-WAIT-2"),
  44. State::CloseWait => write!(f, "CLOSE-WAIT"),
  45. State::Closing => write!(f, "CLOSING"),
  46. State::LastAck => write!(f, "LAST-ACK"),
  47. State::TimeWait => write!(f, "TIME-WAIT")
  48. }
  49. }
  50. }
  51. #[derive(Debug, Clone, Copy, PartialEq)]
  52. enum Timer {
  53. Idle {
  54. keep_alive_at: Option<Instant>,
  55. },
  56. Retransmit {
  57. expires_at: Instant,
  58. delay: Duration
  59. },
  60. FastRetransmit,
  61. Close {
  62. expires_at: Instant
  63. }
  64. }
  65. const RETRANSMIT_DELAY: Duration = Duration { millis: 100 };
  66. const CLOSE_DELAY: Duration = Duration { millis: 10_000 };
  67. impl Default for Timer {
  68. fn default() -> Timer {
  69. Timer::Idle { keep_alive_at: None }
  70. }
  71. }
  72. impl Timer {
  73. fn should_keep_alive(&self, timestamp: Instant) -> bool {
  74. match *self {
  75. Timer::Idle { keep_alive_at: Some(keep_alive_at) }
  76. if timestamp >= keep_alive_at => {
  77. true
  78. }
  79. _ => false
  80. }
  81. }
  82. fn should_retransmit(&self, timestamp: Instant) -> Option<Duration> {
  83. match *self {
  84. Timer::Retransmit { expires_at, delay }
  85. if timestamp >= expires_at => {
  86. Some(timestamp - expires_at + delay)
  87. },
  88. Timer::FastRetransmit => Some(Duration::from_millis(0)),
  89. _ => None
  90. }
  91. }
  92. fn should_close(&self, timestamp: Instant) -> bool {
  93. match *self {
  94. Timer::Close { expires_at }
  95. if timestamp >= expires_at => {
  96. true
  97. }
  98. _ => false
  99. }
  100. }
  101. fn poll_at(&self) -> PollAt {
  102. match *self {
  103. Timer::Idle { keep_alive_at: Some(keep_alive_at) } => PollAt::Time(keep_alive_at),
  104. Timer::Idle { keep_alive_at: None } => PollAt::Ingress,
  105. Timer::Retransmit { expires_at, .. } => PollAt::Time(expires_at),
  106. Timer::FastRetransmit => PollAt::Now,
  107. Timer::Close { expires_at } => PollAt::Time(expires_at),
  108. }
  109. }
  110. fn set_for_idle(&mut self, timestamp: Instant, interval: Option<Duration>) {
  111. *self = Timer::Idle {
  112. keep_alive_at: interval.map(|interval| timestamp + interval)
  113. }
  114. }
  115. fn set_keep_alive(&mut self) {
  116. if let Timer::Idle { ref mut keep_alive_at } = *self {
  117. if keep_alive_at.is_none() {
  118. *keep_alive_at = Some(Instant::from_millis(0))
  119. }
  120. }
  121. }
  122. fn rewind_keep_alive(&mut self, timestamp: Instant, interval: Option<Duration>) {
  123. if let Timer::Idle { ref mut keep_alive_at } = *self {
  124. *keep_alive_at = interval.map(|interval| timestamp + interval)
  125. }
  126. }
  127. fn set_for_retransmit(&mut self, timestamp: Instant) {
  128. match *self {
  129. Timer::Idle { .. } | Timer::FastRetransmit { .. } => {
  130. *self = Timer::Retransmit {
  131. expires_at: timestamp + RETRANSMIT_DELAY,
  132. delay: RETRANSMIT_DELAY,
  133. }
  134. }
  135. Timer::Retransmit { expires_at, delay }
  136. if timestamp >= expires_at => {
  137. *self = Timer::Retransmit {
  138. expires_at: timestamp + delay,
  139. delay: delay * 2
  140. }
  141. }
  142. Timer::Retransmit { .. } => (),
  143. Timer::Close { .. } => ()
  144. }
  145. }
  146. fn set_for_fast_retransmit(&mut self) {
  147. *self = Timer::FastRetransmit
  148. }
  149. fn set_for_close(&mut self, timestamp: Instant) {
  150. *self = Timer::Close {
  151. expires_at: timestamp + CLOSE_DELAY
  152. }
  153. }
  154. fn is_retransmit(&self) -> bool {
  155. match *self {
  156. Timer::Retransmit {..} | Timer::FastRetransmit => true,
  157. _ => false,
  158. }
  159. }
  160. }
  161. /// A Transmission Control Protocol socket.
  162. ///
  163. /// A TCP socket may passively listen for connections or actively connect to another endpoint.
  164. /// Note that, for listening sockets, there is no "backlog"; to be able to simultaneously
  165. /// accept several connections, as many sockets must be allocated, or any new connection
  166. /// attempts will be reset.
  167. #[derive(Debug)]
  168. pub struct TcpSocket<'a> {
  169. pub(crate) meta: SocketMeta,
  170. state: State,
  171. timer: Timer,
  172. assembler: Assembler,
  173. rx_buffer: SocketBuffer<'a>,
  174. rx_fin_received: bool,
  175. tx_buffer: SocketBuffer<'a>,
  176. /// Interval after which, if no inbound packets are received, the connection is aborted.
  177. timeout: Option<Duration>,
  178. /// Interval at which keep-alive packets will be sent.
  179. keep_alive: Option<Duration>,
  180. /// The time-to-live (IPv4) or hop limit (IPv6) value used in outgoing packets.
  181. hop_limit: Option<u8>,
  182. /// Address passed to listen(). Listen address is set when listen() is called and
  183. /// used every time the socket is reset back to the LISTEN state.
  184. listen_address: IpAddress,
  185. /// Current local endpoint. This is used for both filtering the incoming packets and
  186. /// setting the source address. When listening or initiating connection on/from
  187. /// an unspecified address, this field is updated with the chosen source address before
  188. /// any packets are sent.
  189. local_endpoint: IpEndpoint,
  190. /// Current remote endpoint. This is used for both filtering the incoming packets and
  191. /// setting the destination address. If the remote endpoint is unspecified, it means that
  192. /// aborting the connection will not send an RST, and, in TIME-WAIT state, will not
  193. /// send an ACK.
  194. remote_endpoint: IpEndpoint,
  195. /// The sequence number corresponding to the beginning of the transmit buffer.
  196. /// I.e. an ACK(local_seq_no+n) packet removes n bytes from the transmit buffer.
  197. local_seq_no: TcpSeqNumber,
  198. /// The sequence number corresponding to the beginning of the receive buffer.
  199. /// I.e. userspace reading n bytes adds n to remote_seq_no.
  200. remote_seq_no: TcpSeqNumber,
  201. /// The last sequence number sent.
  202. /// I.e. in an idle socket, local_seq_no+tx_buffer.len().
  203. remote_last_seq: TcpSeqNumber,
  204. /// The last acknowledgement number sent.
  205. /// I.e. in an idle socket, remote_seq_no+rx_buffer.len().
  206. remote_last_ack: Option<TcpSeqNumber>,
  207. /// The last window length sent.
  208. remote_last_win: u16,
  209. /// The sending window scaling factor advertised to remotes which support RFC 1323.
  210. /// It is zero if the window <= 64KiB and/or the remote does not support it.
  211. remote_win_shift: u8,
  212. /// The remote window size, relative to local_seq_no
  213. /// I.e. we're allowed to send octets until local_seq_no+remote_win_len
  214. remote_win_len: usize,
  215. /// The receive window scaling factor for remotes which support RFC 1323, None if unsupported.
  216. remote_win_scale: Option<u8>,
  217. /// Whether or not the remote supports selective ACK as described in RFC 2018.
  218. remote_has_sack: bool,
  219. /// The maximum number of data octets that the remote side may receive.
  220. remote_mss: usize,
  221. /// The timestamp of the last packet received.
  222. remote_last_ts: Option<Instant>,
  223. /// The sequence number of the last packet recived, used for sACK
  224. local_rx_last_seq: Option<TcpSeqNumber>,
  225. /// The ACK number of the last packet recived.
  226. local_rx_last_ack: Option<TcpSeqNumber>,
  227. /// The number of packets recived directly after
  228. /// each other which have the same ACK number.
  229. local_rx_dup_acks: u8,
  230. #[cfg(feature = "async")]
  231. rx_waker: WakerRegistration,
  232. #[cfg(feature = "async")]
  233. tx_waker: WakerRegistration,
  234. }
  235. const DEFAULT_MSS: usize = 536;
  236. impl<'a> TcpSocket<'a> {
  237. #[allow(unused_comparisons)] // small usize platforms always pass rx_capacity check
  238. /// Create a socket using the given buffers.
  239. pub fn new<T>(rx_buffer: T, tx_buffer: T) -> TcpSocket<'a>
  240. where T: Into<SocketBuffer<'a>> {
  241. let (rx_buffer, tx_buffer) = (rx_buffer.into(), tx_buffer.into());
  242. let rx_capacity = rx_buffer.capacity();
  243. // From RFC 1323:
  244. // [...] the above constraints imply that 2 * the max window size must be less
  245. // than 2**31 [...] Thus, the shift count must be limited to 14 (which allows
  246. // windows of 2**30 = 1 Gbyte).
  247. if rx_capacity > (1 << 30) {
  248. panic!("receiving buffer too large, cannot exceed 1 GiB")
  249. }
  250. let rx_cap_log2 = mem::size_of::<usize>() * 8 -
  251. rx_capacity.leading_zeros() as usize;
  252. TcpSocket {
  253. meta: SocketMeta::default(),
  254. state: State::Closed,
  255. timer: Timer::default(),
  256. assembler: Assembler::new(rx_buffer.capacity()),
  257. tx_buffer: tx_buffer,
  258. rx_buffer: rx_buffer,
  259. rx_fin_received: false,
  260. timeout: None,
  261. keep_alive: None,
  262. hop_limit: None,
  263. listen_address: IpAddress::default(),
  264. local_endpoint: IpEndpoint::default(),
  265. remote_endpoint: IpEndpoint::default(),
  266. local_seq_no: TcpSeqNumber::default(),
  267. remote_seq_no: TcpSeqNumber::default(),
  268. remote_last_seq: TcpSeqNumber::default(),
  269. remote_last_ack: None,
  270. remote_last_win: 0,
  271. remote_win_len: 0,
  272. remote_win_shift: rx_cap_log2.saturating_sub(16) as u8,
  273. remote_win_scale: None,
  274. remote_has_sack: false,
  275. remote_mss: DEFAULT_MSS,
  276. remote_last_ts: None,
  277. local_rx_last_ack: None,
  278. local_rx_last_seq: None,
  279. local_rx_dup_acks: 0,
  280. #[cfg(feature = "async")]
  281. rx_waker: WakerRegistration::new(),
  282. #[cfg(feature = "async")]
  283. tx_waker: WakerRegistration::new(),
  284. }
  285. }
  286. /// Register a waker for receive operations.
  287. ///
  288. /// The waker is woken on state changes that might affect the return value
  289. /// of `recv` method calls, such as receiving data, or the socket closing.
  290. ///
  291. /// Notes:
  292. ///
  293. /// - Only one waker can be registered at a time. If another waker was previously registered,
  294. /// it is overwritten and will no longer be woken.
  295. /// - The Waker is woken only once. Once woken, you must register it again to receive more wakes.
  296. /// - "Spurious wakes" are allowed: a wake doesn't guarantee the result of `recv` has
  297. /// necessarily changed.
  298. #[cfg(feature = "async")]
  299. pub fn register_recv_waker(&mut self, waker: &Waker) {
  300. self.rx_waker.register(waker)
  301. }
  302. /// Register a waker for send operations.
  303. ///
  304. /// The waker is woken on state changes that might affect the return value
  305. /// of `send` method calls, such as space becoming available in the transmit
  306. /// buffer, or the socket closing.
  307. ///
  308. /// Notes:
  309. ///
  310. /// - Only one waker can be registered at a time. If another waker was previously registered,
  311. /// it is overwritten and will no longer be woken.
  312. /// - The Waker is woken only once. Once woken, you must register it again to receive more wakes.
  313. /// - "Spurious wakes" are allowed: a wake doesn't guarantee the result of `send` has
  314. /// necessarily changed.
  315. #[cfg(feature = "async")]
  316. pub fn register_send_waker(&mut self, waker: &Waker) {
  317. self.tx_waker.register(waker)
  318. }
  319. /// Return the socket handle.
  320. #[inline]
  321. pub fn handle(&self) -> SocketHandle {
  322. self.meta.handle
  323. }
  324. /// Return the timeout duration.
  325. ///
  326. /// See also the [set_timeout](#method.set_timeout) method.
  327. pub fn timeout(&self) -> Option<Duration> {
  328. self.timeout
  329. }
  330. /// Return the current window field value, including scaling according to RFC 1323.
  331. ///
  332. /// Used in internal calculations as well as packet generation.
  333. ///
  334. #[inline]
  335. fn scaled_window(&self) -> u16 {
  336. cmp::min(self.rx_buffer.window() >> self.remote_win_shift as usize,
  337. (1 << 16) - 1) as u16
  338. }
  339. /// Set the timeout duration.
  340. ///
  341. /// A socket with a timeout duration set will abort the connection if either of the following
  342. /// occurs:
  343. ///
  344. /// * After a [connect](#method.connect) call, the remote endpoint does not respond within
  345. /// the specified duration;
  346. /// * After establishing a connection, there is data in the transmit buffer and the remote
  347. /// endpoint exceeds the specified duration between any two packets it sends;
  348. /// * After enabling [keep-alive](#method.set_keep_alive), the remote endpoint exceeds
  349. /// the specified duration between any two packets it sends.
  350. pub fn set_timeout(&mut self, duration: Option<Duration>) {
  351. self.timeout = duration
  352. }
  353. /// Return the keep-alive interval.
  354. ///
  355. /// See also the [set_keep_alive](#method.set_keep_alive) method.
  356. pub fn keep_alive(&self) -> Option<Duration> {
  357. self.keep_alive
  358. }
  359. /// Set the keep-alive interval.
  360. ///
  361. /// An idle socket with a keep-alive interval set will transmit a "challenge ACK" packet
  362. /// every time it receives no communication during that interval. As a result, three things
  363. /// may happen:
  364. ///
  365. /// * The remote endpoint is fine and answers with an ACK packet.
  366. /// * The remote endpoint has rebooted and answers with an RST packet.
  367. /// * The remote endpoint has crashed and does not answer.
  368. ///
  369. /// The keep-alive functionality together with the timeout functionality allows to react
  370. /// to these error conditions.
  371. pub fn set_keep_alive(&mut self, interval: Option<Duration>) {
  372. self.keep_alive = interval;
  373. if self.keep_alive.is_some() {
  374. // If the connection is idle and we've just set the option, it would not take effect
  375. // until the next packet, unless we wind up the timer explicitly.
  376. self.timer.set_keep_alive();
  377. }
  378. }
  379. /// Return the time-to-live (IPv4) or hop limit (IPv6) value used in outgoing packets.
  380. ///
  381. /// See also the [set_hop_limit](#method.set_hop_limit) method
  382. pub fn hop_limit(&self) -> Option<u8> {
  383. self.hop_limit
  384. }
  385. /// Set the time-to-live (IPv4) or hop limit (IPv6) value used in outgoing packets.
  386. ///
  387. /// A socket without an explicitly set hop limit value uses the default [IANA recommended]
  388. /// value (64).
  389. ///
  390. /// # Panics
  391. ///
  392. /// This function panics if a hop limit value of 0 is given. See [RFC 1122 § 3.2.1.7].
  393. ///
  394. /// [IANA recommended]: https://www.iana.org/assignments/ip-parameters/ip-parameters.xhtml
  395. /// [RFC 1122 § 3.2.1.7]: https://tools.ietf.org/html/rfc1122#section-3.2.1.7
  396. pub fn set_hop_limit(&mut self, hop_limit: Option<u8>) {
  397. // A host MUST NOT send a datagram with a hop limit value of 0
  398. if let Some(0) = hop_limit {
  399. panic!("the time-to-live value of a packet must not be zero")
  400. }
  401. self.hop_limit = hop_limit
  402. }
  403. /// Return the local endpoint.
  404. #[inline]
  405. pub fn local_endpoint(&self) -> IpEndpoint {
  406. self.local_endpoint
  407. }
  408. /// Return the remote endpoint.
  409. #[inline]
  410. pub fn remote_endpoint(&self) -> IpEndpoint {
  411. self.remote_endpoint
  412. }
  413. /// Return the connection state, in terms of the TCP state machine.
  414. #[inline]
  415. pub fn state(&self) -> State {
  416. self.state
  417. }
  418. fn reset(&mut self) {
  419. let rx_cap_log2 = mem::size_of::<usize>() * 8 -
  420. self.rx_buffer.capacity().leading_zeros() as usize;
  421. self.state = State::Closed;
  422. self.timer = Timer::default();
  423. self.assembler = Assembler::new(self.rx_buffer.capacity());
  424. self.tx_buffer.clear();
  425. self.rx_buffer.clear();
  426. self.rx_fin_received = false;
  427. self.keep_alive = None;
  428. self.timeout = None;
  429. self.hop_limit = None;
  430. self.listen_address = IpAddress::default();
  431. self.local_endpoint = IpEndpoint::default();
  432. self.remote_endpoint = IpEndpoint::default();
  433. self.local_seq_no = TcpSeqNumber::default();
  434. self.remote_seq_no = TcpSeqNumber::default();
  435. self.remote_last_seq = TcpSeqNumber::default();
  436. self.remote_last_ack = None;
  437. self.remote_last_win = 0;
  438. self.remote_win_len = 0;
  439. self.remote_win_scale = None;
  440. self.remote_win_shift = rx_cap_log2.saturating_sub(16) as u8;
  441. self.remote_mss = DEFAULT_MSS;
  442. self.remote_last_ts = None;
  443. #[cfg(feature = "async")]
  444. {
  445. self.rx_waker.wake();
  446. self.tx_waker.wake();
  447. }
  448. }
  449. /// Start listening on the given endpoint.
  450. ///
  451. /// This function returns `Err(Error::Illegal)` if the socket was already open
  452. /// (see [is_open](#method.is_open)), and `Err(Error::Unaddressable)`
  453. /// if the port in the given endpoint is zero.
  454. pub fn listen<T>(&mut self, local_endpoint: T) -> Result<()>
  455. where T: Into<IpEndpoint> {
  456. let local_endpoint = local_endpoint.into();
  457. if local_endpoint.port == 0 { return Err(Error::Unaddressable) }
  458. if self.is_open() { return Err(Error::Illegal) }
  459. self.reset();
  460. self.listen_address = local_endpoint.addr;
  461. self.local_endpoint = local_endpoint;
  462. self.remote_endpoint = IpEndpoint::default();
  463. self.set_state(State::Listen);
  464. Ok(())
  465. }
  466. /// Connect to a given endpoint.
  467. ///
  468. /// The local port must be provided explicitly. Assuming `fn get_ephemeral_port() -> u16`
  469. /// allocates a port between 49152 and 65535, a connection may be established as follows:
  470. ///
  471. /// ```rust,ignore
  472. /// socket.connect((IpAddress::v4(10, 0, 0, 1), 80), get_ephemeral_port())
  473. /// ```
  474. ///
  475. /// The local address may optionally be provided.
  476. ///
  477. /// This function returns an error if the socket was open; see [is_open](#method.is_open).
  478. /// It also returns an error if the local or remote port is zero, or if the remote address
  479. /// is unspecified.
  480. pub fn connect<T, U>(&mut self, remote_endpoint: T, local_endpoint: U) -> Result<()>
  481. where T: Into<IpEndpoint>, U: Into<IpEndpoint> {
  482. let remote_endpoint = remote_endpoint.into();
  483. let local_endpoint = local_endpoint.into();
  484. if self.is_open() { return Err(Error::Illegal) }
  485. if !remote_endpoint.is_specified() { return Err(Error::Unaddressable) }
  486. if local_endpoint.port == 0 { return Err(Error::Unaddressable) }
  487. // If local address is not provided, use an unspecified address but a specified protocol.
  488. // This lets us lower IpRepr later to determine IP header size and calculate MSS,
  489. // but without committing to a specific address right away.
  490. let local_addr = match local_endpoint.addr {
  491. IpAddress::Unspecified => remote_endpoint.addr.to_unspecified(),
  492. ip => ip,
  493. };
  494. let local_endpoint = IpEndpoint { addr: local_addr, ..local_endpoint };
  495. // Carry over the local sequence number.
  496. let local_seq_no = self.local_seq_no;
  497. self.reset();
  498. self.local_endpoint = local_endpoint;
  499. self.remote_endpoint = remote_endpoint;
  500. self.local_seq_no = local_seq_no;
  501. self.remote_last_seq = local_seq_no;
  502. self.set_state(State::SynSent);
  503. Ok(())
  504. }
  505. /// Close the transmit half of the full-duplex connection.
  506. ///
  507. /// Note that there is no corresponding function for the receive half of the full-duplex
  508. /// connection; only the remote end can close it. If you no longer wish to receive any
  509. /// data and would like to reuse the socket right away, use [abort](#method.abort).
  510. pub fn close(&mut self) {
  511. match self.state {
  512. // In the LISTEN state there is no established connection.
  513. State::Listen =>
  514. self.set_state(State::Closed),
  515. // In the SYN-SENT state the remote endpoint is not yet synchronized and, upon
  516. // receiving an RST, will abort the connection.
  517. State::SynSent =>
  518. self.set_state(State::Closed),
  519. // In the SYN-RECEIVED, ESTABLISHED and CLOSE-WAIT states the transmit half
  520. // of the connection is open, and needs to be explicitly closed with a FIN.
  521. State::SynReceived | State::Established =>
  522. self.set_state(State::FinWait1),
  523. State::CloseWait =>
  524. self.set_state(State::LastAck),
  525. // In the FIN-WAIT-1, FIN-WAIT-2, CLOSING, LAST-ACK, TIME-WAIT and CLOSED states,
  526. // the transmit half of the connection is already closed, and no further
  527. // action is needed.
  528. State::FinWait1 | State::FinWait2 | State::Closing |
  529. State::TimeWait | State::LastAck | State::Closed => ()
  530. }
  531. }
  532. /// Aborts the connection, if any.
  533. ///
  534. /// This function instantly closes the socket. One reset packet will be sent to the remote
  535. /// endpoint.
  536. ///
  537. /// In terms of the TCP state machine, the socket may be in any state and is moved to
  538. /// the `CLOSED` state.
  539. pub fn abort(&mut self) {
  540. self.set_state(State::Closed);
  541. }
  542. /// Return whether the socket is passively listening for incoming connections.
  543. ///
  544. /// In terms of the TCP state machine, the socket must be in the `LISTEN` state.
  545. #[inline]
  546. pub fn is_listening(&self) -> bool {
  547. match self.state {
  548. State::Listen => true,
  549. _ => false
  550. }
  551. }
  552. /// Return whether the socket is open.
  553. ///
  554. /// This function returns true if the socket will process incoming or dispatch outgoing
  555. /// packets. Note that this does not mean that it is possible to send or receive data through
  556. /// the socket; for that, use [can_send](#method.can_send) or [can_recv](#method.can_recv).
  557. ///
  558. /// In terms of the TCP state machine, the socket must not be in the `CLOSED`
  559. /// or `TIME-WAIT` states.
  560. #[inline]
  561. pub fn is_open(&self) -> bool {
  562. match self.state {
  563. State::Closed => false,
  564. State::TimeWait => false,
  565. _ => true
  566. }
  567. }
  568. /// Return whether a connection is active.
  569. ///
  570. /// This function returns true if the socket is actively exchanging packets with
  571. /// a remote endpoint. Note that this does not mean that it is possible to send or receive
  572. /// data through the socket; for that, use [can_send](#method.can_send) or
  573. /// [can_recv](#method.can_recv).
  574. ///
  575. /// If a connection is established, [abort](#method.close) will send a reset to
  576. /// the remote endpoint.
  577. ///
  578. /// In terms of the TCP state machine, the socket must be in the `CLOSED`, `TIME-WAIT`,
  579. /// or `LISTEN` state.
  580. #[inline]
  581. pub fn is_active(&self) -> bool {
  582. match self.state {
  583. State::Closed => false,
  584. State::TimeWait => false,
  585. State::Listen => false,
  586. _ => true
  587. }
  588. }
  589. /// Return whether the transmit half of the full-duplex connection is open.
  590. ///
  591. /// This function returns true if it's possible to send data and have it arrive
  592. /// to the remote endpoint. However, it does not make any guarantees about the state
  593. /// of the transmit buffer, and even if it returns true, [send](#method.send) may
  594. /// not be able to enqueue any octets.
  595. ///
  596. /// In terms of the TCP state machine, the socket must be in the `ESTABLISHED` or
  597. /// `CLOSE-WAIT` state.
  598. #[inline]
  599. pub fn may_send(&self) -> bool {
  600. match self.state {
  601. State::Established => true,
  602. // In CLOSE-WAIT, the remote endpoint has closed our receive half of the connection
  603. // but we still can transmit indefinitely.
  604. State::CloseWait => true,
  605. _ => false
  606. }
  607. }
  608. /// Return whether the receive half of the full-duplex connection is open.
  609. ///
  610. /// This function returns true if it's possible to receive data from the remote endpoint.
  611. /// It will return true while there is data in the receive buffer, and if there isn't,
  612. /// as long as the remote endpoint has not closed the connection.
  613. ///
  614. /// In terms of the TCP state machine, the socket must be in the `ESTABLISHED`,
  615. /// `FIN-WAIT-1`, or `FIN-WAIT-2` state, or have data in the receive buffer instead.
  616. #[inline]
  617. pub fn may_recv(&self) -> bool {
  618. match self.state {
  619. State::Established => true,
  620. // In FIN-WAIT-1/2, we have closed our transmit half of the connection but
  621. // we still can receive indefinitely.
  622. State::FinWait1 | State::FinWait2 => true,
  623. // If we have something in the receive buffer, we can receive that.
  624. _ if !self.rx_buffer.is_empty() => true,
  625. _ => false
  626. }
  627. }
  628. /// Check whether the transmit half of the full-duplex connection is open
  629. /// (see [may_send](#method.may_send), and the transmit buffer is not full.
  630. #[inline]
  631. pub fn can_send(&self) -> bool {
  632. if !self.may_send() { return false }
  633. !self.tx_buffer.is_full()
  634. }
  635. /// Return the maximum number of bytes inside the recv buffer.
  636. #[inline]
  637. pub fn recv_capacity(&self) -> usize {
  638. self.rx_buffer.capacity()
  639. }
  640. /// Return the maximum number of bytes inside the transmit buffer.
  641. #[inline]
  642. pub fn send_capacity(&self) -> usize {
  643. self.tx_buffer.capacity()
  644. }
  645. /// Check whether the receive half of the full-duplex connection buffer is open
  646. /// (see [may_recv](#method.may_recv), and the receive buffer is not empty.
  647. #[inline]
  648. pub fn can_recv(&self) -> bool {
  649. if !self.may_recv() { return false }
  650. !self.rx_buffer.is_empty()
  651. }
  652. fn send_impl<'b, F, R>(&'b mut self, f: F) -> Result<R>
  653. where F: FnOnce(&'b mut SocketBuffer<'a>) -> (usize, R) {
  654. if !self.may_send() { return Err(Error::Illegal) }
  655. // The connection might have been idle for a long time, and so remote_last_ts
  656. // would be far in the past. Unless we clear it here, we'll abort the connection
  657. // down over in dispatch() by erroneously detecting it as timed out.
  658. if self.tx_buffer.is_empty() { self.remote_last_ts = None }
  659. let _old_length = self.tx_buffer.len();
  660. let (size, result) = f(&mut self.tx_buffer);
  661. if size > 0 {
  662. #[cfg(any(test, feature = "verbose"))]
  663. net_trace!("{}:{}:{}: tx buffer: enqueueing {} octets (now {})",
  664. self.meta.handle, self.local_endpoint, self.remote_endpoint,
  665. size, _old_length + size);
  666. }
  667. Ok(result)
  668. }
  669. /// Call `f` with the largest contiguous slice of octets in the transmit buffer,
  670. /// and enqueue the amount of elements returned by `f`.
  671. ///
  672. /// This function returns `Err(Error::Illegal) if the transmit half of
  673. /// the connection is not open; see [may_send](#method.may_send).
  674. pub fn send<'b, F, R>(&'b mut self, f: F) -> Result<R>
  675. where F: FnOnce(&'b mut [u8]) -> (usize, R) {
  676. self.send_impl(|tx_buffer| {
  677. tx_buffer.enqueue_many_with(f)
  678. })
  679. }
  680. /// Enqueue a sequence of octets to be sent, and fill it from a slice.
  681. ///
  682. /// This function returns the amount of octets actually enqueued, which is limited
  683. /// by the amount of free space in the transmit buffer; down to zero.
  684. ///
  685. /// See also [send](#method.send).
  686. pub fn send_slice(&mut self, data: &[u8]) -> Result<usize> {
  687. self.send_impl(|tx_buffer| {
  688. let size = tx_buffer.enqueue_slice(data);
  689. (size, size)
  690. })
  691. }
  692. fn recv_error_check(&mut self) -> Result<()> {
  693. // We may have received some data inside the initial SYN, but until the connection
  694. // is fully open we must not dequeue any data, as it may be overwritten by e.g.
  695. // another (stale) SYN. (We do not support TCP Fast Open.)
  696. if !self.may_recv() {
  697. if self.rx_fin_received {
  698. return Err(Error::Finished)
  699. }
  700. return Err(Error::Illegal)
  701. }
  702. Ok(())
  703. }
  704. fn recv_impl<'b, F, R>(&'b mut self, f: F) -> Result<R>
  705. where F: FnOnce(&'b mut SocketBuffer<'a>) -> (usize, R) {
  706. self.recv_error_check()?;
  707. let _old_length = self.rx_buffer.len();
  708. let (size, result) = f(&mut self.rx_buffer);
  709. self.remote_seq_no += size;
  710. if size > 0 {
  711. #[cfg(any(test, feature = "verbose"))]
  712. net_trace!("{}:{}:{}: rx buffer: dequeueing {} octets (now {})",
  713. self.meta.handle, self.local_endpoint, self.remote_endpoint,
  714. size, _old_length - size);
  715. }
  716. Ok(result)
  717. }
  718. /// Call `f` with the largest contiguous slice of octets in the receive buffer,
  719. /// and dequeue the amount of elements returned by `f`.
  720. ///
  721. /// This function errors if the receive half of the connection is not open.
  722. ///
  723. /// If the receive half has been gracefully closed (with a FIN packet), `Err(Error::Finished)`
  724. /// is returned. In this case, the previously received data is guaranteed to be complete.
  725. ///
  726. /// In all other cases, `Err(Error::Illegal)` is returned and previously received data (if any)
  727. /// may be incomplete (truncated).
  728. pub fn recv<'b, F, R>(&'b mut self, f: F) -> Result<R>
  729. where F: FnOnce(&'b mut [u8]) -> (usize, R) {
  730. self.recv_impl(|rx_buffer| {
  731. rx_buffer.dequeue_many_with(f)
  732. })
  733. }
  734. /// Dequeue a sequence of received octets, and fill a slice from it.
  735. ///
  736. /// This function returns the amount of octets actually dequeued, which is limited
  737. /// by the amount of occupied space in the receive buffer; down to zero.
  738. ///
  739. /// See also [recv](#method.recv).
  740. pub fn recv_slice(&mut self, data: &mut [u8]) -> Result<usize> {
  741. self.recv_impl(|rx_buffer| {
  742. let size = rx_buffer.dequeue_slice(data);
  743. (size, size)
  744. })
  745. }
  746. /// Peek at a sequence of received octets without removing them from
  747. /// the receive buffer, and return a pointer to it.
  748. ///
  749. /// This function otherwise behaves identically to [recv](#method.recv).
  750. pub fn peek(&mut self, size: usize) -> Result<&[u8]> {
  751. self.recv_error_check()?;
  752. let buffer = self.rx_buffer.get_allocated(0, size);
  753. if !buffer.is_empty() {
  754. #[cfg(any(test, feature = "verbose"))]
  755. net_trace!("{}:{}:{}: rx buffer: peeking at {} octets",
  756. self.meta.handle, self.local_endpoint, self.remote_endpoint,
  757. buffer.len());
  758. }
  759. Ok(buffer)
  760. }
  761. /// Peek at a sequence of received octets without removing them from
  762. /// the receive buffer, and fill a slice from it.
  763. ///
  764. /// This function otherwise behaves identically to [recv_slice](#method.recv_slice).
  765. pub fn peek_slice(&mut self, data: &mut [u8]) -> Result<usize> {
  766. let buffer = self.peek(data.len())?;
  767. let data = &mut data[..buffer.len()];
  768. data.copy_from_slice(buffer);
  769. Ok(buffer.len())
  770. }
  771. /// Return the amount of octets queued in the transmit buffer.
  772. ///
  773. /// Note that the Berkeley sockets interface does not have an equivalent of this API.
  774. pub fn send_queue(&self) -> usize {
  775. self.tx_buffer.len()
  776. }
  777. /// Return the amount of octets queued in the receive buffer. This value can be larger than
  778. /// the slice read by the next `recv` or `peek` call because it includes all queued octets,
  779. /// and not only the octets that may be returned as a contiguous slice.
  780. ///
  781. /// Note that the Berkeley sockets interface does not have an equivalent of this API.
  782. pub fn recv_queue(&self) -> usize {
  783. self.rx_buffer.len()
  784. }
  785. fn set_state(&mut self, state: State) {
  786. if self.state != state {
  787. if self.remote_endpoint.addr.is_unspecified() {
  788. net_trace!("{}:{}: state={}=>{}",
  789. self.meta.handle, self.local_endpoint,
  790. self.state, state);
  791. } else {
  792. net_trace!("{}:{}:{}: state={}=>{}",
  793. self.meta.handle, self.local_endpoint, self.remote_endpoint,
  794. self.state, state);
  795. }
  796. }
  797. self.state = state;
  798. #[cfg(feature = "async")]
  799. {
  800. // Wake all tasks waiting. Even if we haven't received/sent data, this
  801. // is needed because return values of functions may change depending on the state.
  802. // For example, a pending read has to fail with an error if the socket is closed.
  803. self.rx_waker.wake();
  804. self.tx_waker.wake();
  805. }
  806. }
  807. pub(crate) fn reply(ip_repr: &IpRepr, repr: &TcpRepr) -> (IpRepr, TcpRepr<'static>) {
  808. let reply_repr = TcpRepr {
  809. src_port: repr.dst_port,
  810. dst_port: repr.src_port,
  811. control: TcpControl::None,
  812. seq_number: TcpSeqNumber(0),
  813. ack_number: None,
  814. window_len: 0,
  815. window_scale: None,
  816. max_seg_size: None,
  817. sack_permitted: false,
  818. sack_ranges: [None, None, None],
  819. payload: &[]
  820. };
  821. let ip_reply_repr = IpRepr::Unspecified {
  822. src_addr: ip_repr.dst_addr(),
  823. dst_addr: ip_repr.src_addr(),
  824. protocol: IpProtocol::Tcp,
  825. payload_len: reply_repr.buffer_len(),
  826. hop_limit: 64
  827. };
  828. (ip_reply_repr, reply_repr)
  829. }
  830. pub(crate) fn rst_reply(ip_repr: &IpRepr, repr: &TcpRepr) -> (IpRepr, TcpRepr<'static>) {
  831. debug_assert!(repr.control != TcpControl::Rst);
  832. let (ip_reply_repr, mut reply_repr) = Self::reply(ip_repr, repr);
  833. // See https://www.snellman.net/blog/archive/2016-02-01-tcp-rst/ for explanation
  834. // of why we sometimes send an RST and sometimes an RST|ACK
  835. reply_repr.control = TcpControl::Rst;
  836. reply_repr.seq_number = repr.ack_number.unwrap_or_default();
  837. if repr.control == TcpControl::Syn {
  838. reply_repr.ack_number = Some(repr.seq_number + repr.segment_len());
  839. }
  840. (ip_reply_repr, reply_repr)
  841. }
  842. fn ack_reply(&mut self, ip_repr: &IpRepr, repr: &TcpRepr) -> (IpRepr, TcpRepr<'static>) {
  843. let (mut ip_reply_repr, mut reply_repr) = Self::reply(ip_repr, repr);
  844. // From RFC 793:
  845. // [...] an empty acknowledgment segment containing the current send-sequence number
  846. // and an acknowledgment indicating the next sequence number expected
  847. // to be received.
  848. reply_repr.seq_number = self.remote_last_seq;
  849. reply_repr.ack_number = Some(self.remote_seq_no + self.rx_buffer.len());
  850. self.remote_last_ack = reply_repr.ack_number;
  851. // From RFC 1323:
  852. // The window field [...] of every outgoing segment, with the exception of SYN
  853. // segments, is right-shifted by [advertised scale value] bits[...]
  854. reply_repr.window_len = self.scaled_window();
  855. self.remote_last_win = reply_repr.window_len;
  856. // If the remote supports selective acknowledgement, add the option to the outgoing
  857. // segment.
  858. if self.remote_has_sack {
  859. net_debug!("sending sACK option with current assembler ranges");
  860. // RFC 2018: The first SACK block (i.e., the one immediately following the kind and
  861. // length fields in the option) MUST specify the contiguous block of data containing
  862. // the segment which triggered this ACK, unless that segment advanced the
  863. // Acknowledgment Number field in the header.
  864. reply_repr.sack_ranges[0] = None;
  865. if let Some(last_seg_seq) = self.local_rx_last_seq.map(|s| s.0 as u32) {
  866. reply_repr.sack_ranges[0] = self.assembler.iter_data(
  867. reply_repr.ack_number.map(|s| s.0 as usize).unwrap_or(0))
  868. .map(|(left, right)| (left as u32, right as u32))
  869. .find(|(left, right)| *left <= last_seg_seq && *right >= last_seg_seq);
  870. }
  871. if reply_repr.sack_ranges[0].is_none() {
  872. // The matching segment was removed from the assembler, meaning the acknowledgement
  873. // number has advanced, or there was no previous sACK.
  874. //
  875. // While the RFC says we SHOULD keep a list of reported sACK ranges, and iterate
  876. // through those, that is currently infeasable. Instead, we offer the range with
  877. // the lowest sequence number (if one exists) to hint at what segments would
  878. // most quickly advance the acknowledgement number.
  879. reply_repr.sack_ranges[0] = self.assembler.iter_data(
  880. reply_repr.ack_number.map(|s| s.0 as usize).unwrap_or(0))
  881. .map(|(left, right)| (left as u32, right as u32))
  882. .next();
  883. }
  884. }
  885. // Since the sACK option may have changed the length of the payload, update that.
  886. ip_reply_repr.set_payload_len(reply_repr.buffer_len());
  887. (ip_reply_repr, reply_repr)
  888. }
  889. pub(crate) fn accepts(&self, ip_repr: &IpRepr, repr: &TcpRepr) -> bool {
  890. if self.state == State::Closed { return false }
  891. // If we're still listening for SYNs and the packet has an ACK, it cannot
  892. // be destined to this socket, but another one may well listen on the same
  893. // local endpoint.
  894. if self.state == State::Listen && repr.ack_number.is_some() { return false }
  895. // Reject packets with a wrong destination.
  896. if self.local_endpoint.port != repr.dst_port { return false }
  897. if !self.local_endpoint.addr.is_unspecified() &&
  898. self.local_endpoint.addr != ip_repr.dst_addr() { return false }
  899. // Reject packets from a source to which we aren't connected.
  900. if self.remote_endpoint.port != 0 &&
  901. self.remote_endpoint.port != repr.src_port { return false }
  902. if !self.remote_endpoint.addr.is_unspecified() &&
  903. self.remote_endpoint.addr != ip_repr.src_addr() { return false }
  904. true
  905. }
  906. pub(crate) fn process(&mut self, timestamp: Instant, ip_repr: &IpRepr, repr: &TcpRepr) ->
  907. Result<Option<(IpRepr, TcpRepr<'static>)>> {
  908. debug_assert!(self.accepts(ip_repr, repr));
  909. // Consider how much the sequence number space differs from the transmit buffer space.
  910. let (sent_syn, sent_fin) = match self.state {
  911. // In SYN-SENT or SYN-RECEIVED, we've just sent a SYN.
  912. State::SynSent | State::SynReceived => (true, false),
  913. // In FIN-WAIT-1, LAST-ACK, or CLOSING, we've just sent a FIN.
  914. State::FinWait1 | State::LastAck | State::Closing => (false, true),
  915. // In all other states we've already got acknowledgemetns for
  916. // all of the control flags we sent.
  917. _ => (false, false)
  918. };
  919. let control_len = (sent_syn as usize) + (sent_fin as usize);
  920. // Reject unacceptable acknowledgements.
  921. match (self.state, repr) {
  922. // An RST received in response to initial SYN is acceptable if it acknowledges
  923. // the initial SYN.
  924. (State::SynSent, &TcpRepr {
  925. control: TcpControl::Rst, ack_number: None, ..
  926. }) => {
  927. net_debug!("{}:{}:{}: unacceptable RST (expecting RST|ACK) \
  928. in response to initial SYN",
  929. self.meta.handle, self.local_endpoint, self.remote_endpoint);
  930. return Err(Error::Dropped)
  931. }
  932. (State::SynSent, &TcpRepr {
  933. control: TcpControl::Rst, ack_number: Some(ack_number), ..
  934. }) => {
  935. if ack_number != self.local_seq_no + 1 {
  936. net_debug!("{}:{}:{}: unacceptable RST|ACK in response to initial SYN",
  937. self.meta.handle, self.local_endpoint, self.remote_endpoint);
  938. return Err(Error::Dropped)
  939. }
  940. }
  941. // Any other RST need only have a valid sequence number.
  942. (_, &TcpRepr { control: TcpControl::Rst, .. }) => (),
  943. // The initial SYN cannot contain an acknowledgement.
  944. (State::Listen, &TcpRepr { ack_number: None, .. }) => (),
  945. // This case is handled above.
  946. (State::Listen, &TcpRepr { ack_number: Some(_), .. }) => unreachable!(),
  947. // Every packet after the initial SYN must be an acknowledgement.
  948. (_, &TcpRepr { ack_number: None, .. }) => {
  949. net_debug!("{}:{}:{}: expecting an ACK",
  950. self.meta.handle, self.local_endpoint, self.remote_endpoint);
  951. return Err(Error::Dropped)
  952. }
  953. // Any ACK in the SYN-SENT state must have the SYN flag set.
  954. (State::SynSent, &TcpRepr {
  955. control: TcpControl::None, ack_number: Some(_), ..
  956. }) => {
  957. net_debug!("{}:{}:{}: expecting a SYN|ACK",
  958. self.meta.handle, self.local_endpoint, self.remote_endpoint);
  959. self.abort();
  960. return Err(Error::Dropped)
  961. }
  962. // Every acknowledgement must be for transmitted but unacknowledged data.
  963. (_, &TcpRepr { ack_number: Some(ack_number), .. }) => {
  964. let unacknowledged = self.tx_buffer.len() + control_len;
  965. if ack_number < self.local_seq_no {
  966. net_debug!("{}:{}:{}: duplicate ACK ({} not in {}...{})",
  967. self.meta.handle, self.local_endpoint, self.remote_endpoint,
  968. ack_number, self.local_seq_no, self.local_seq_no + unacknowledged);
  969. return Err(Error::Dropped)
  970. }
  971. if ack_number > self.local_seq_no + unacknowledged {
  972. net_debug!("{}:{}:{}: unacceptable ACK ({} not in {}...{})",
  973. self.meta.handle, self.local_endpoint, self.remote_endpoint,
  974. ack_number, self.local_seq_no, self.local_seq_no + unacknowledged);
  975. return Ok(Some(self.ack_reply(ip_repr, &repr)))
  976. }
  977. }
  978. }
  979. let window_start = self.remote_seq_no + self.rx_buffer.len();
  980. let window_end = self.remote_seq_no + self.rx_buffer.capacity();
  981. let segment_start = repr.seq_number;
  982. let segment_end = repr.seq_number + repr.segment_len();
  983. let payload_offset;
  984. match self.state {
  985. // In LISTEN and SYN-SENT states, we have not yet synchronized with the remote end.
  986. State::Listen | State::SynSent =>
  987. payload_offset = 0,
  988. // In all other states, segments must occupy a valid portion of the receive window.
  989. _ => {
  990. let mut segment_in_window = true;
  991. if window_start == window_end && segment_start != segment_end {
  992. net_debug!("{}:{}:{}: non-zero-length segment with zero receive window, \
  993. will only send an ACK",
  994. self.meta.handle, self.local_endpoint, self.remote_endpoint);
  995. segment_in_window = false;
  996. }
  997. if segment_start == segment_end && segment_end == window_start - 1 {
  998. net_debug!("{}:{}:{}: received a keep-alive or window probe packet, \
  999. will send an ACK",
  1000. self.meta.handle, self.local_endpoint, self.remote_endpoint);
  1001. segment_in_window = false;
  1002. } else if !((window_start <= segment_start && segment_start <= window_end) &&
  1003. (window_start <= segment_end && segment_end <= window_end)) {
  1004. net_debug!("{}:{}:{}: segment not in receive window \
  1005. ({}..{} not intersecting {}..{}), will send challenge ACK",
  1006. self.meta.handle, self.local_endpoint, self.remote_endpoint,
  1007. segment_start, segment_end, window_start, window_end);
  1008. segment_in_window = false;
  1009. }
  1010. if segment_in_window {
  1011. // We've checked that segment_start >= window_start above.
  1012. payload_offset = (segment_start - window_start) as usize;
  1013. self.local_rx_last_seq = Some(repr.seq_number);
  1014. } else {
  1015. // If we're in the TIME-WAIT state, restart the TIME-WAIT timeout, since
  1016. // the remote end may not have realized we've closed the connection.
  1017. if self.state == State::TimeWait {
  1018. self.timer.set_for_close(timestamp);
  1019. }
  1020. return Ok(Some(self.ack_reply(ip_repr, &repr)))
  1021. }
  1022. }
  1023. }
  1024. // Compute the amount of acknowledged octets, removing the SYN and FIN bits
  1025. // from the sequence space.
  1026. let mut ack_len = 0;
  1027. let mut ack_of_fin = false;
  1028. if repr.control != TcpControl::Rst {
  1029. if let Some(ack_number) = repr.ack_number {
  1030. ack_len = ack_number - self.local_seq_no;
  1031. // There could have been no data sent before the SYN, so we always remove it
  1032. // from the sequence space.
  1033. if sent_syn {
  1034. ack_len -= 1
  1035. }
  1036. // We could've sent data before the FIN, so only remove FIN from the sequence
  1037. // space if all of that data is acknowledged.
  1038. if sent_fin && self.tx_buffer.len() + 1 == ack_len {
  1039. ack_len -= 1;
  1040. net_trace!("{}:{}:{}: received ACK of FIN",
  1041. self.meta.handle, self.local_endpoint, self.remote_endpoint);
  1042. ack_of_fin = true;
  1043. }
  1044. }
  1045. }
  1046. // Disregard control flags we don't care about or shouldn't act on yet.
  1047. let mut control = repr.control;
  1048. control = control.quash_psh();
  1049. // If a FIN is received at the end of the current segment but the start of the segment
  1050. // is not at the start of the receive window, disregard this FIN.
  1051. if control == TcpControl::Fin && window_start != segment_start {
  1052. control = TcpControl::None;
  1053. }
  1054. // Validate and update the state.
  1055. match (self.state, control) {
  1056. // RSTs are not accepted in the LISTEN state.
  1057. (State::Listen, TcpControl::Rst) =>
  1058. return Err(Error::Dropped),
  1059. // RSTs in SYN-RECEIVED flip the socket back to the LISTEN state.
  1060. (State::SynReceived, TcpControl::Rst) => {
  1061. net_trace!("{}:{}:{}: received RST",
  1062. self.meta.handle, self.local_endpoint, self.remote_endpoint);
  1063. self.local_endpoint.addr = self.listen_address;
  1064. self.remote_endpoint = IpEndpoint::default();
  1065. self.set_state(State::Listen);
  1066. return Ok(None)
  1067. }
  1068. // RSTs in any other state close the socket.
  1069. (_, TcpControl::Rst) => {
  1070. net_trace!("{}:{}:{}: received RST",
  1071. self.meta.handle, self.local_endpoint, self.remote_endpoint);
  1072. self.set_state(State::Closed);
  1073. self.local_endpoint = IpEndpoint::default();
  1074. self.remote_endpoint = IpEndpoint::default();
  1075. return Ok(None)
  1076. }
  1077. // SYN packets in the LISTEN state change it to SYN-RECEIVED.
  1078. (State::Listen, TcpControl::Syn) => {
  1079. net_trace!("{}:{}: received SYN",
  1080. self.meta.handle, self.local_endpoint);
  1081. self.local_endpoint = IpEndpoint::new(ip_repr.dst_addr(), repr.dst_port);
  1082. self.remote_endpoint = IpEndpoint::new(ip_repr.src_addr(), repr.src_port);
  1083. // FIXME: use something more secure here
  1084. self.local_seq_no = TcpSeqNumber(-repr.seq_number.0);
  1085. self.remote_seq_no = repr.seq_number + 1;
  1086. self.remote_last_seq = self.local_seq_no;
  1087. self.remote_has_sack = repr.sack_permitted;
  1088. if let Some(max_seg_size) = repr.max_seg_size {
  1089. self.remote_mss = max_seg_size as usize
  1090. }
  1091. self.remote_win_scale = repr.window_scale;
  1092. // No window scaling means don't do any window shifting
  1093. if self.remote_win_scale.is_none() {
  1094. self.remote_win_shift = 0;
  1095. }
  1096. self.set_state(State::SynReceived);
  1097. self.timer.set_for_idle(timestamp, self.keep_alive);
  1098. }
  1099. // ACK packets in the SYN-RECEIVED state change it to ESTABLISHED.
  1100. (State::SynReceived, TcpControl::None) => {
  1101. self.set_state(State::Established);
  1102. self.timer.set_for_idle(timestamp, self.keep_alive);
  1103. }
  1104. // FIN packets in the SYN-RECEIVED state change it to CLOSE-WAIT.
  1105. // It's not obvious from RFC 793 that this is permitted, but
  1106. // 7th and 8th steps in the "SEGMENT ARRIVES" event describe this behavior.
  1107. (State::SynReceived, TcpControl::Fin) => {
  1108. self.remote_seq_no += 1;
  1109. self.rx_fin_received = true;
  1110. self.set_state(State::CloseWait);
  1111. self.timer.set_for_idle(timestamp, self.keep_alive);
  1112. }
  1113. // SYN|ACK packets in the SYN-SENT state change it to ESTABLISHED.
  1114. (State::SynSent, TcpControl::Syn) => {
  1115. net_trace!("{}:{}:{}: received SYN|ACK",
  1116. self.meta.handle, self.local_endpoint, self.remote_endpoint);
  1117. self.local_endpoint = IpEndpoint::new(ip_repr.dst_addr(), repr.dst_port);
  1118. self.remote_seq_no = repr.seq_number + 1;
  1119. self.remote_last_seq = self.local_seq_no + 1;
  1120. self.remote_last_ack = Some(repr.seq_number);
  1121. if let Some(max_seg_size) = repr.max_seg_size {
  1122. self.remote_mss = max_seg_size as usize;
  1123. }
  1124. self.set_state(State::Established);
  1125. self.timer.set_for_idle(timestamp, self.keep_alive);
  1126. }
  1127. // ACK packets in ESTABLISHED state reset the retransmit timer,
  1128. // except for duplicate ACK packets which preserve it.
  1129. (State::Established, TcpControl::None) => {
  1130. if !self.timer.is_retransmit() || ack_len != 0 {
  1131. self.timer.set_for_idle(timestamp, self.keep_alive);
  1132. }
  1133. },
  1134. // FIN packets in ESTABLISHED state indicate the remote side has closed.
  1135. (State::Established, TcpControl::Fin) => {
  1136. self.remote_seq_no += 1;
  1137. self.rx_fin_received = true;
  1138. self.set_state(State::CloseWait);
  1139. self.timer.set_for_idle(timestamp, self.keep_alive);
  1140. }
  1141. // ACK packets in FIN-WAIT-1 state change it to FIN-WAIT-2, if we've already
  1142. // sent everything in the transmit buffer. If not, they reset the retransmit timer.
  1143. (State::FinWait1, TcpControl::None) => {
  1144. if ack_of_fin {
  1145. self.set_state(State::FinWait2);
  1146. }
  1147. self.timer.set_for_idle(timestamp, self.keep_alive);
  1148. }
  1149. // FIN packets in FIN-WAIT-1 state change it to CLOSING, or to TIME-WAIT
  1150. // if they also acknowledge our FIN.
  1151. (State::FinWait1, TcpControl::Fin) => {
  1152. self.remote_seq_no += 1;
  1153. self.rx_fin_received = true;
  1154. if ack_of_fin {
  1155. self.set_state(State::TimeWait);
  1156. self.timer.set_for_close(timestamp);
  1157. } else {
  1158. self.set_state(State::Closing);
  1159. self.timer.set_for_idle(timestamp, self.keep_alive);
  1160. }
  1161. }
  1162. // Data packets in FIN-WAIT-2 reset the idle timer.
  1163. (State::FinWait2, TcpControl::None) => {
  1164. self.timer.set_for_idle(timestamp, self.keep_alive);
  1165. }
  1166. // FIN packets in FIN-WAIT-2 state change it to TIME-WAIT.
  1167. (State::FinWait2, TcpControl::Fin) => {
  1168. self.remote_seq_no += 1;
  1169. self.rx_fin_received = true;
  1170. self.set_state(State::TimeWait);
  1171. self.timer.set_for_close(timestamp);
  1172. }
  1173. // ACK packets in CLOSING state change it to TIME-WAIT.
  1174. (State::Closing, TcpControl::None) => {
  1175. if ack_of_fin {
  1176. self.set_state(State::TimeWait);
  1177. self.timer.set_for_close(timestamp);
  1178. } else {
  1179. self.timer.set_for_idle(timestamp, self.keep_alive);
  1180. }
  1181. }
  1182. // ACK packets in CLOSE-WAIT state reset the retransmit timer.
  1183. (State::CloseWait, TcpControl::None) => {
  1184. self.timer.set_for_idle(timestamp, self.keep_alive);
  1185. }
  1186. // ACK packets in LAST-ACK state change it to CLOSED.
  1187. (State::LastAck, TcpControl::None) => {
  1188. // Clear the remote endpoint, or we'll send an RST there.
  1189. self.set_state(State::Closed);
  1190. self.local_endpoint = IpEndpoint::default();
  1191. self.remote_endpoint = IpEndpoint::default();
  1192. }
  1193. _ => {
  1194. net_debug!("{}:{}:{}: unexpected packet {}",
  1195. self.meta.handle, self.local_endpoint, self.remote_endpoint, repr);
  1196. return Err(Error::Dropped)
  1197. }
  1198. }
  1199. // Update remote state.
  1200. self.remote_last_ts = Some(timestamp);
  1201. // RFC 1323: The window field (SEG.WND) in the header of every incoming segment, with the
  1202. // exception of SYN segments, is left-shifted by Snd.Wind.Scale bits before updating SND.WND.
  1203. self.remote_win_len = (repr.window_len as usize) << (self.remote_win_scale.unwrap_or(0) as usize);
  1204. if ack_len > 0 {
  1205. // Dequeue acknowledged octets.
  1206. debug_assert!(self.tx_buffer.len() >= ack_len);
  1207. net_trace!("{}:{}:{}: tx buffer: dequeueing {} octets (now {})",
  1208. self.meta.handle, self.local_endpoint, self.remote_endpoint,
  1209. ack_len, self.tx_buffer.len() - ack_len);
  1210. self.tx_buffer.dequeue_allocated(ack_len);
  1211. // There's new room available in tx_buffer, wake the waiting task if any.
  1212. #[cfg(feature = "async")]
  1213. self.tx_waker.wake();
  1214. }
  1215. if let Some(ack_number) = repr.ack_number {
  1216. // TODO: When flow control is implemented,
  1217. // refractor the following block within that implementation
  1218. // Detect and react to duplicate ACKs by:
  1219. // 1. Check if duplicate ACK and change self.local_rx_dup_acks accordingly
  1220. // 2. If exactly 3 duplicate ACKs recived, set for fast retransmit
  1221. // 3. Update the last received ACK (self.local_rx_last_ack)
  1222. match self.local_rx_last_ack {
  1223. // Duplicate ACK if payload empty and ACK doesn't move send window ->
  1224. // Increment duplicate ACK count and set for retransmit if we just recived
  1225. // the third duplicate ACK
  1226. Some(ref last_rx_ack) if
  1227. repr.payload.is_empty() &&
  1228. *last_rx_ack == ack_number &&
  1229. ack_number < self.remote_last_seq => {
  1230. // Increment duplicate ACK count
  1231. self.local_rx_dup_acks = self.local_rx_dup_acks.saturating_add(1);
  1232. net_debug!("{}:{}:{}: received duplicate ACK for seq {} (duplicate nr {}{})",
  1233. self.meta.handle, self.local_endpoint, self.remote_endpoint, ack_number,
  1234. self.local_rx_dup_acks, if self.local_rx_dup_acks == u8::max_value() { "+" } else { "" });
  1235. if self.local_rx_dup_acks == 3 {
  1236. self.timer.set_for_fast_retransmit();
  1237. net_debug!("{}:{}:{}: started fast retransmit",
  1238. self.meta.handle, self.local_endpoint, self.remote_endpoint);
  1239. }
  1240. },
  1241. // No duplicate ACK -> Reset state and update last recived ACK
  1242. _ => {
  1243. if self.local_rx_dup_acks > 0 {
  1244. self.local_rx_dup_acks = 0;
  1245. net_debug!("{}:{}:{}: reset duplicate ACK count",
  1246. self.meta.handle, self.local_endpoint, self.remote_endpoint);
  1247. }
  1248. self.local_rx_last_ack = Some(ack_number);
  1249. }
  1250. };
  1251. // We've processed everything in the incoming segment, so advance the local
  1252. // sequence number past it.
  1253. self.local_seq_no = ack_number;
  1254. // During retransmission, if an earlier segment got lost but later was
  1255. // successfully received, self.local_seq_no can move past self.remote_last_seq.
  1256. // Do not attempt to retransmit the latter segments; not only this is pointless
  1257. // in theory but also impossible in practice, since they have been already
  1258. // deallocated from the buffer.
  1259. if self.remote_last_seq < self.local_seq_no {
  1260. self.remote_last_seq = self.local_seq_no
  1261. }
  1262. }
  1263. let payload_len = repr.payload.len();
  1264. if payload_len == 0 { return Ok(None) }
  1265. let assembler_was_empty = self.assembler.is_empty();
  1266. // Try adding payload octets to the assembler.
  1267. match self.assembler.add(payload_offset, payload_len) {
  1268. Ok(()) => {
  1269. debug_assert!(self.assembler.total_size() == self.rx_buffer.capacity());
  1270. // Place payload octets into the buffer.
  1271. net_trace!("{}:{}:{}: rx buffer: receiving {} octets at offset {}",
  1272. self.meta.handle, self.local_endpoint, self.remote_endpoint,
  1273. payload_len, payload_offset);
  1274. self.rx_buffer.write_unallocated(payload_offset, repr.payload);
  1275. }
  1276. Err(()) => {
  1277. net_debug!("{}:{}:{}: assembler: too many holes to add {} octets at offset {}",
  1278. self.meta.handle, self.local_endpoint, self.remote_endpoint,
  1279. payload_len, payload_offset);
  1280. return Err(Error::Dropped)
  1281. }
  1282. }
  1283. if let Some(contig_len) = self.assembler.remove_front() {
  1284. debug_assert!(self.assembler.total_size() == self.rx_buffer.capacity());
  1285. // Enqueue the contiguous data octets in front of the buffer.
  1286. net_trace!("{}:{}:{}: rx buffer: enqueueing {} octets (now {})",
  1287. self.meta.handle, self.local_endpoint, self.remote_endpoint,
  1288. contig_len, self.rx_buffer.len() + contig_len);
  1289. self.rx_buffer.enqueue_unallocated(contig_len);
  1290. // There's new data in rx_buffer, notify waiting task if any.
  1291. #[cfg(feature = "async")]
  1292. self.rx_waker.wake();
  1293. }
  1294. if !self.assembler.is_empty() {
  1295. // Print the ranges recorded in the assembler.
  1296. net_trace!("{}:{}:{}: assembler: {}",
  1297. self.meta.handle, self.local_endpoint, self.remote_endpoint,
  1298. self.assembler);
  1299. }
  1300. // Per RFC 5681, we should send an immediate ACK when either:
  1301. // 1) an out-of-order segment is received, or
  1302. // 2) a segment arrives that fills in all or part of a gap in sequence space.
  1303. if !self.assembler.is_empty() || !assembler_was_empty {
  1304. // Note that we change the transmitter state here.
  1305. // This is fine because smoltcp assumes that it can always transmit zero or one
  1306. // packets for every packet it receives.
  1307. net_trace!("{}:{}:{}: ACKing incoming segment",
  1308. self.meta.handle, self.local_endpoint, self.remote_endpoint);
  1309. Ok(Some(self.ack_reply(ip_repr, &repr)))
  1310. } else {
  1311. Ok(None)
  1312. }
  1313. }
  1314. fn timed_out(&self, timestamp: Instant) -> bool {
  1315. match (self.remote_last_ts, self.timeout) {
  1316. (Some(remote_last_ts), Some(timeout)) =>
  1317. timestamp >= remote_last_ts + timeout,
  1318. (_, _) =>
  1319. false
  1320. }
  1321. }
  1322. fn seq_to_transmit(&self) -> bool {
  1323. // We can send data if we have data that:
  1324. // - hasn't been sent before
  1325. // - fits in the remote window
  1326. let can_data = self.remote_last_seq
  1327. < self.local_seq_no + core::cmp::min(self.remote_win_len, self.tx_buffer.len());
  1328. // Do we have to send a FIN?
  1329. let want_fin = match self.state {
  1330. State::FinWait1 => true,
  1331. State::LastAck => true,
  1332. _ => false,
  1333. };
  1334. // Can we actually send the FIN? We can send it if:
  1335. // 1. We have unsent data that fits in the remote window.
  1336. // 2. We have no unsent data.
  1337. // This condition matches only if #2, because #1 is already covered by can_data and we're ORing them.
  1338. let can_fin =
  1339. want_fin && self.remote_last_seq == self.local_seq_no + self.tx_buffer.len();
  1340. can_data || can_fin
  1341. }
  1342. fn ack_to_transmit(&self) -> bool {
  1343. if let Some(remote_last_ack) = self.remote_last_ack {
  1344. remote_last_ack < self.remote_seq_no + self.rx_buffer.len()
  1345. } else {
  1346. false
  1347. }
  1348. }
  1349. fn window_to_update(&self) -> bool {
  1350. match self.state {
  1351. State::SynSent | State::SynReceived | State::Established | State::FinWait1 | State::FinWait2 =>
  1352. (self.rx_buffer.window() >> self.remote_win_shift) as u16 > self.remote_last_win,
  1353. _ => false,
  1354. }
  1355. }
  1356. pub(crate) fn dispatch<F>(&mut self, timestamp: Instant, caps: &DeviceCapabilities,
  1357. emit: F) -> Result<()>
  1358. where F: FnOnce((IpRepr, TcpRepr)) -> Result<()> {
  1359. if !self.remote_endpoint.is_specified() { return Err(Error::Exhausted) }
  1360. if self.remote_last_ts.is_none() {
  1361. // We get here in exactly two cases:
  1362. // 1) This socket just transitioned into SYN-SENT.
  1363. // 2) This socket had an empty transmit buffer and some data was added there.
  1364. // Both are similar in that the socket has been quiet for an indefinite
  1365. // period of time, it isn't anymore, and the local endpoint is talking.
  1366. // So, we start counting the timeout not from the last received packet
  1367. // but from the first transmitted one.
  1368. self.remote_last_ts = Some(timestamp);
  1369. }
  1370. // Check if any state needs to be changed because of a timer.
  1371. if self.timed_out(timestamp) {
  1372. // If a timeout expires, we should abort the connection.
  1373. net_debug!("{}:{}:{}: timeout exceeded",
  1374. self.meta.handle, self.local_endpoint, self.remote_endpoint);
  1375. self.set_state(State::Closed);
  1376. } else if !self.seq_to_transmit() {
  1377. if let Some(retransmit_delta) = self.timer.should_retransmit(timestamp) {
  1378. // If a retransmit timer expired, we should resend data starting at the last ACK.
  1379. net_debug!("{}:{}:{}: retransmitting at t+{}",
  1380. self.meta.handle, self.local_endpoint, self.remote_endpoint,
  1381. retransmit_delta);
  1382. self.remote_last_seq = self.local_seq_no;
  1383. }
  1384. }
  1385. // Decide whether we're sending a packet.
  1386. if self.seq_to_transmit() {
  1387. // If we have data to transmit and it fits into partner's window, do it.
  1388. net_trace!("{}:{}:{}: outgoing segment will send data or flags",
  1389. self.meta.handle, self.local_endpoint, self.remote_endpoint);
  1390. } else if self.ack_to_transmit() {
  1391. // If we have data to acknowledge, do it.
  1392. net_trace!("{}:{}:{}: outgoing segment will acknowledge",
  1393. self.meta.handle, self.local_endpoint, self.remote_endpoint);
  1394. } else if self.window_to_update() {
  1395. // If we have window length increase to advertise, do it.
  1396. net_trace!("{}:{}:{}: outgoing segment will update window",
  1397. self.meta.handle, self.local_endpoint, self.remote_endpoint);
  1398. } else if self.state == State::Closed {
  1399. // If we need to abort the connection, do it.
  1400. net_trace!("{}:{}:{}: outgoing segment will abort connection",
  1401. self.meta.handle, self.local_endpoint, self.remote_endpoint);
  1402. } else if self.timer.should_retransmit(timestamp).is_some() {
  1403. // If we have packets to retransmit, do it.
  1404. net_trace!("{}:{}:{}: retransmit timer expired",
  1405. self.meta.handle, self.local_endpoint, self.remote_endpoint);
  1406. } else if self.timer.should_keep_alive(timestamp) {
  1407. // If we need to transmit a keep-alive packet, do it.
  1408. net_trace!("{}:{}:{}: keep-alive timer expired",
  1409. self.meta.handle, self.local_endpoint, self.remote_endpoint);
  1410. } else if self.timer.should_close(timestamp) {
  1411. // If we have spent enough time in the TIME-WAIT state, close the socket.
  1412. net_trace!("{}:{}:{}: TIME-WAIT timer expired",
  1413. self.meta.handle, self.local_endpoint, self.remote_endpoint);
  1414. self.reset();
  1415. return Err(Error::Exhausted)
  1416. } else {
  1417. return Err(Error::Exhausted)
  1418. }
  1419. // Construct the lowered IP representation.
  1420. // We might need this to calculate the MSS, so do it early.
  1421. let mut ip_repr = IpRepr::Unspecified {
  1422. src_addr: self.local_endpoint.addr,
  1423. dst_addr: self.remote_endpoint.addr,
  1424. protocol: IpProtocol::Tcp,
  1425. hop_limit: self.hop_limit.unwrap_or(64),
  1426. payload_len: 0
  1427. }.lower(&[])?;
  1428. // Construct the basic TCP representation, an empty ACK packet.
  1429. // We'll adjust this to be more specific as needed.
  1430. let mut repr = TcpRepr {
  1431. src_port: self.local_endpoint.port,
  1432. dst_port: self.remote_endpoint.port,
  1433. control: TcpControl::None,
  1434. seq_number: self.remote_last_seq,
  1435. ack_number: Some(self.remote_seq_no + self.rx_buffer.len()),
  1436. window_len: self.scaled_window(),
  1437. window_scale: None,
  1438. max_seg_size: None,
  1439. sack_permitted: false,
  1440. sack_ranges: [None, None, None],
  1441. payload: &[]
  1442. };
  1443. match self.state {
  1444. // We transmit an RST in the CLOSED state. If we ended up in the CLOSED state
  1445. // with a specified endpoint, it means that the socket was aborted.
  1446. State::Closed => {
  1447. repr.control = TcpControl::Rst;
  1448. }
  1449. // We never transmit anything in the LISTEN state.
  1450. State::Listen => return Err(Error::Exhausted),
  1451. // We transmit a SYN in the SYN-SENT state.
  1452. // We transmit a SYN|ACK in the SYN-RECEIVED state.
  1453. State::SynSent | State::SynReceived => {
  1454. repr.control = TcpControl::Syn;
  1455. if self.state == State::SynSent {
  1456. repr.ack_number = None;
  1457. repr.window_scale = Some(self.remote_win_shift);
  1458. repr.sack_permitted = true;
  1459. } else {
  1460. repr.sack_permitted = self.remote_has_sack;
  1461. repr.window_scale = self.remote_win_scale.map(
  1462. |_| self.remote_win_shift);
  1463. }
  1464. }
  1465. // We transmit data in all states where we may have data in the buffer,
  1466. // or the transmit half of the connection is still open:
  1467. // the ESTABLISHED, FIN-WAIT-1, CLOSE-WAIT and LAST-ACK states.
  1468. State::Established | State::FinWait1 | State::CloseWait | State::LastAck => {
  1469. // Extract as much data as the remote side can receive in this packet
  1470. // from the transmit buffer.
  1471. let offset = self.remote_last_seq - self.local_seq_no;
  1472. let win_limit = self.local_seq_no + self.remote_win_len - self.remote_last_seq;
  1473. let size = cmp::min(cmp::min(win_limit, self.remote_mss),
  1474. caps.max_transmission_unit - ip_repr.buffer_len() - repr.mss_header_len());
  1475. repr.payload = self.tx_buffer.get_allocated(offset, size);
  1476. // If we've sent everything we had in the buffer, follow it with the PSH or FIN
  1477. // flags, depending on whether the transmit half of the connection is open.
  1478. if offset + repr.payload.len() == self.tx_buffer.len() {
  1479. match self.state {
  1480. State::FinWait1 | State::LastAck =>
  1481. repr.control = TcpControl::Fin,
  1482. State::Established | State::CloseWait if !repr.payload.is_empty() =>
  1483. repr.control = TcpControl::Psh,
  1484. _ => ()
  1485. }
  1486. }
  1487. }
  1488. // We do not transmit data in the FIN-WAIT-2 state, but we may transmit
  1489. // ACKs for incoming data.
  1490. State::FinWait2 => {}
  1491. // We do not transmit data or control flags in the CLOSING or TIME-WAIT states,
  1492. // but we may retransmit an ACK.
  1493. State::Closing | State::TimeWait => ()
  1494. }
  1495. // There might be more than one reason to send a packet. E.g. the keep-alive timer
  1496. // has expired, and we also have data in transmit buffer. Since any packet that occupies
  1497. // sequence space will elicit an ACK, we only need to send an explicit packet if we
  1498. // couldn't fill the sequence space with anything.
  1499. let is_keep_alive;
  1500. if self.timer.should_keep_alive(timestamp) && repr.is_empty() {
  1501. repr.seq_number = repr.seq_number - 1;
  1502. repr.payload = b"\x00"; // RFC 1122 says we should do this
  1503. is_keep_alive = true;
  1504. } else {
  1505. is_keep_alive = false;
  1506. }
  1507. // Trace a summary of what will be sent.
  1508. if is_keep_alive {
  1509. net_trace!("{}:{}:{}: sending a keep-alive",
  1510. self.meta.handle, self.local_endpoint, self.remote_endpoint);
  1511. } else if !repr.payload.is_empty() {
  1512. net_trace!("{}:{}:{}: tx buffer: sending {} octets at offset {}",
  1513. self.meta.handle, self.local_endpoint, self.remote_endpoint,
  1514. repr.payload.len(), self.remote_last_seq - self.local_seq_no);
  1515. }
  1516. if repr.control != TcpControl::None || repr.payload.is_empty() {
  1517. let flags =
  1518. match (repr.control, repr.ack_number) {
  1519. (TcpControl::Syn, None) => "SYN",
  1520. (TcpControl::Syn, Some(_)) => "SYN|ACK",
  1521. (TcpControl::Fin, Some(_)) => "FIN|ACK",
  1522. (TcpControl::Rst, Some(_)) => "RST|ACK",
  1523. (TcpControl::Psh, Some(_)) => "PSH|ACK",
  1524. (TcpControl::None, Some(_)) => "ACK",
  1525. _ => "<unreachable>"
  1526. };
  1527. net_trace!("{}:{}:{}: sending {}",
  1528. self.meta.handle, self.local_endpoint, self.remote_endpoint,
  1529. flags);
  1530. }
  1531. if repr.control == TcpControl::Syn {
  1532. // Fill the MSS option. See RFC 6691 for an explanation of this calculation.
  1533. let mut max_segment_size = caps.max_transmission_unit;
  1534. max_segment_size -= ip_repr.buffer_len();
  1535. max_segment_size -= repr.mss_header_len();
  1536. repr.max_seg_size = Some(max_segment_size as u16);
  1537. }
  1538. // Actually send the packet. If this succeeds, it means the packet is in
  1539. // the device buffer, and its transmission is imminent. If not, we might have
  1540. // a number of problems, e.g. we need neighbor discovery.
  1541. //
  1542. // Bailing out if the packet isn't placed in the device buffer allows us
  1543. // to not waste time waiting for the retransmit timer on packets that we know
  1544. // for sure will not be successfully transmitted.
  1545. ip_repr.set_payload_len(repr.buffer_len());
  1546. emit((ip_repr, repr))?;
  1547. // We've sent something, whether useful data or a keep-alive packet, so rewind
  1548. // the keep-alive timer.
  1549. self.timer.rewind_keep_alive(timestamp, self.keep_alive);
  1550. // Leave the rest of the state intact if sending a keep-alive packet, since those
  1551. // carry a fake segment.
  1552. if is_keep_alive { return Ok(()) }
  1553. // We've sent a packet successfully, so we can update the internal state now.
  1554. self.remote_last_seq = repr.seq_number + repr.segment_len();
  1555. self.remote_last_ack = repr.ack_number;
  1556. self.remote_last_win = repr.window_len;
  1557. if !self.seq_to_transmit() && repr.segment_len() > 0 {
  1558. // If we've transmitted all data we could (and there was something at all,
  1559. // data or flag, to transmit, not just an ACK), wind up the retransmit timer.
  1560. self.timer.set_for_retransmit(timestamp);
  1561. }
  1562. if self.state == State::Closed {
  1563. // When aborting a connection, forget about it after sending a single RST packet.
  1564. self.local_endpoint = IpEndpoint::default();
  1565. self.remote_endpoint = IpEndpoint::default();
  1566. }
  1567. Ok(())
  1568. }
  1569. pub(crate) fn poll_at(&self) -> PollAt {
  1570. // The logic here mirrors the beginning of dispatch() closely.
  1571. if !self.remote_endpoint.is_specified() {
  1572. // No one to talk to, nothing to transmit.
  1573. PollAt::Ingress
  1574. } else if self.remote_last_ts.is_none() {
  1575. // Socket stopped being quiet recently, we need to acquire a timestamp.
  1576. PollAt::Now
  1577. } else if self.state == State::Closed {
  1578. // Socket was aborted, we have an RST packet to transmit.
  1579. PollAt::Now
  1580. } else if self.seq_to_transmit() || self.ack_to_transmit() || self.window_to_update() {
  1581. // We have a data or flag packet to transmit.
  1582. PollAt::Now
  1583. } else {
  1584. let timeout_poll_at = match (self.remote_last_ts, self.timeout) {
  1585. // If we're transmitting or retransmitting data, we need to poll at the moment
  1586. // when the timeout would expire.
  1587. (Some(remote_last_ts), Some(timeout)) => PollAt::Time(remote_last_ts + timeout),
  1588. // Otherwise we have no timeout.
  1589. (_, _) => PollAt::Ingress,
  1590. };
  1591. // We wait for the earliest of our timers to fire.
  1592. *[self.timer.poll_at(), timeout_poll_at]
  1593. .iter()
  1594. .filter(|x| !x.is_ingress())
  1595. .min().unwrap_or(&PollAt::Ingress)
  1596. }
  1597. }
  1598. }
  1599. impl<'a, 'b> Into<Socket<'a, 'b>> for TcpSocket<'a> {
  1600. fn into(self) -> Socket<'a, 'b> {
  1601. Socket::Tcp(self)
  1602. }
  1603. }
  1604. impl<'a> fmt::Write for TcpSocket<'a> {
  1605. fn write_str(&mut self, slice: &str) -> fmt::Result {
  1606. let slice = slice.as_bytes();
  1607. if self.send_slice(slice) == Ok(slice.len()) {
  1608. Ok(())
  1609. } else {
  1610. Err(fmt::Error)
  1611. }
  1612. }
  1613. }
  1614. #[cfg(test)]
  1615. mod test {
  1616. use core::i32;
  1617. use std::vec::Vec;
  1618. use crate::wire::{IpAddress, IpRepr, IpCidr};
  1619. use crate::wire::ip::test::{MOCK_IP_ADDR_1, MOCK_IP_ADDR_2, MOCK_IP_ADDR_3, MOCK_UNSPECIFIED};
  1620. use super::*;
  1621. // =========================================================================================//
  1622. // Constants
  1623. // =========================================================================================//
  1624. const LOCAL_PORT: u16 = 80;
  1625. const REMOTE_PORT: u16 = 49500;
  1626. const LOCAL_END: IpEndpoint = IpEndpoint { addr: MOCK_IP_ADDR_1, port: LOCAL_PORT };
  1627. const REMOTE_END: IpEndpoint = IpEndpoint { addr: MOCK_IP_ADDR_2, port: REMOTE_PORT };
  1628. const LOCAL_SEQ: TcpSeqNumber = TcpSeqNumber(10000);
  1629. const REMOTE_SEQ: TcpSeqNumber = TcpSeqNumber(-10000);
  1630. const SEND_IP_TEMPL: IpRepr = IpRepr::Unspecified {
  1631. src_addr: MOCK_IP_ADDR_1, dst_addr: MOCK_IP_ADDR_2,
  1632. protocol: IpProtocol::Tcp, payload_len: 20,
  1633. hop_limit: 64
  1634. };
  1635. const SEND_TEMPL: TcpRepr<'static> = TcpRepr {
  1636. src_port: REMOTE_PORT, dst_port: LOCAL_PORT,
  1637. control: TcpControl::None,
  1638. seq_number: TcpSeqNumber(0), ack_number: Some(TcpSeqNumber(0)),
  1639. window_len: 256, window_scale: None,
  1640. max_seg_size: None,
  1641. sack_permitted: false,
  1642. sack_ranges: [None, None, None],
  1643. payload: &[]
  1644. };
  1645. const _RECV_IP_TEMPL: IpRepr = IpRepr::Unspecified {
  1646. src_addr: MOCK_IP_ADDR_1, dst_addr: MOCK_IP_ADDR_2,
  1647. protocol: IpProtocol::Tcp, payload_len: 20,
  1648. hop_limit: 64
  1649. };
  1650. const RECV_TEMPL: TcpRepr<'static> = TcpRepr {
  1651. src_port: LOCAL_PORT, dst_port: REMOTE_PORT,
  1652. control: TcpControl::None,
  1653. seq_number: TcpSeqNumber(0), ack_number: Some(TcpSeqNumber(0)),
  1654. window_len: 64, window_scale: None,
  1655. max_seg_size: None,
  1656. sack_permitted: false,
  1657. sack_ranges: [None, None, None],
  1658. payload: &[]
  1659. };
  1660. #[cfg(feature = "proto-ipv6")]
  1661. const BASE_MSS: u16 = 1460;
  1662. #[cfg(all(feature = "proto-ipv4", not(feature = "proto-ipv6")))]
  1663. const BASE_MSS: u16 = 1480;
  1664. // =========================================================================================//
  1665. // Helper functions
  1666. // =========================================================================================//
  1667. fn send(socket: &mut TcpSocket, timestamp: Instant, repr: &TcpRepr) ->
  1668. Result<Option<TcpRepr<'static>>> {
  1669. let ip_repr = IpRepr::Unspecified {
  1670. src_addr: MOCK_IP_ADDR_2,
  1671. dst_addr: MOCK_IP_ADDR_1,
  1672. protocol: IpProtocol::Tcp,
  1673. payload_len: repr.buffer_len(),
  1674. hop_limit: 64
  1675. };
  1676. net_trace!("send: {}", repr);
  1677. assert!(socket.accepts(&ip_repr, repr));
  1678. match socket.process(timestamp, &ip_repr, repr) {
  1679. Ok(Some((_ip_repr, repr))) => {
  1680. net_trace!("recv: {}", repr);
  1681. Ok(Some(repr))
  1682. }
  1683. Ok(None) => Ok(None),
  1684. Err(err) => Err(err)
  1685. }
  1686. }
  1687. fn recv<F>(socket: &mut TcpSocket, timestamp: Instant, mut f: F)
  1688. where F: FnMut(Result<TcpRepr>) {
  1689. let mut caps = DeviceCapabilities::default();
  1690. caps.max_transmission_unit = 1520;
  1691. let result = socket.dispatch(timestamp, &caps, |(ip_repr, tcp_repr)| {
  1692. let ip_repr = ip_repr.lower(&[IpCidr::new(LOCAL_END.addr, 24)]).unwrap();
  1693. assert_eq!(ip_repr.protocol(), IpProtocol::Tcp);
  1694. assert_eq!(ip_repr.src_addr(), MOCK_IP_ADDR_1);
  1695. assert_eq!(ip_repr.dst_addr(), MOCK_IP_ADDR_2);
  1696. assert_eq!(ip_repr.payload_len(), tcp_repr.buffer_len());
  1697. net_trace!("recv: {}", tcp_repr);
  1698. Ok(f(Ok(tcp_repr)))
  1699. });
  1700. match result {
  1701. Ok(()) => (),
  1702. Err(e) => f(Err(e))
  1703. }
  1704. }
  1705. macro_rules! send {
  1706. ($socket:ident, $repr:expr) =>
  1707. (send!($socket, time 0, $repr));
  1708. ($socket:ident, $repr:expr, $result:expr) =>
  1709. (send!($socket, time 0, $repr, $result));
  1710. ($socket:ident, time $time:expr, $repr:expr) =>
  1711. (send!($socket, time $time, $repr, Ok(None)));
  1712. ($socket:ident, time $time:expr, $repr:expr, $result:expr) =>
  1713. (assert_eq!(send(&mut $socket, Instant::from_millis($time), &$repr), $result));
  1714. }
  1715. macro_rules! recv {
  1716. ($socket:ident, [$( $repr:expr ),*]) => ({
  1717. $( recv!($socket, Ok($repr)); )*
  1718. recv!($socket, Err(Error::Exhausted))
  1719. });
  1720. ($socket:ident, $result:expr) =>
  1721. (recv!($socket, time 0, $result));
  1722. ($socket:ident, time $time:expr, $result:expr) =>
  1723. (recv(&mut $socket, Instant::from_millis($time), |result| {
  1724. // Most of the time we don't care about the PSH flag.
  1725. let result = result.map(|mut repr| {
  1726. repr.control = repr.control.quash_psh();
  1727. repr
  1728. });
  1729. assert_eq!(result, $result)
  1730. }));
  1731. ($socket:ident, time $time:expr, $result:expr, exact) =>
  1732. (recv(&mut $socket, Instant::from_millis($time), |repr| assert_eq!(repr, $result)));
  1733. }
  1734. macro_rules! sanity {
  1735. ($socket1:expr, $socket2:expr) => ({
  1736. let (s1, s2) = ($socket1, $socket2);
  1737. assert_eq!(s1.state, s2.state, "state");
  1738. assert_eq!(s1.listen_address, s2.listen_address, "listen_address");
  1739. assert_eq!(s1.local_endpoint, s2.local_endpoint, "local_endpoint");
  1740. assert_eq!(s1.remote_endpoint, s2.remote_endpoint, "remote_endpoint");
  1741. assert_eq!(s1.local_seq_no, s2.local_seq_no, "local_seq_no");
  1742. assert_eq!(s1.remote_seq_no, s2.remote_seq_no, "remote_seq_no");
  1743. assert_eq!(s1.remote_last_seq, s2.remote_last_seq, "remote_last_seq");
  1744. assert_eq!(s1.remote_last_ack, s2.remote_last_ack, "remote_last_ack");
  1745. assert_eq!(s1.remote_last_win, s2.remote_last_win, "remote_last_win");
  1746. assert_eq!(s1.remote_win_len, s2.remote_win_len, "remote_win_len");
  1747. assert_eq!(s1.timer, s2.timer, "timer");
  1748. })
  1749. }
  1750. #[cfg(feature = "log")]
  1751. fn init_logger() {
  1752. struct Logger;
  1753. static LOGGER: Logger = Logger;
  1754. impl log::Log for Logger {
  1755. fn enabled(&self, _metadata: &log::Metadata) -> bool {
  1756. true
  1757. }
  1758. fn log(&self, record: &log::Record) {
  1759. println!("{}", record.args());
  1760. }
  1761. fn flush(&self) {
  1762. }
  1763. }
  1764. // If it fails, that just means we've already set it to the same value.
  1765. let _ = log::set_logger(&LOGGER);
  1766. log::set_max_level(log::LevelFilter::Trace);
  1767. println!();
  1768. }
  1769. fn socket() -> TcpSocket<'static> {
  1770. socket_with_buffer_sizes(64, 64)
  1771. }
  1772. fn socket_with_buffer_sizes(tx_len: usize, rx_len: usize) -> TcpSocket<'static> {
  1773. #[cfg(feature = "log")]
  1774. init_logger();
  1775. let rx_buffer = SocketBuffer::new(vec![0; rx_len]);
  1776. let tx_buffer = SocketBuffer::new(vec![0; tx_len]);
  1777. TcpSocket::new(rx_buffer, tx_buffer)
  1778. }
  1779. fn socket_syn_received_with_buffer_sizes(
  1780. tx_len: usize,
  1781. rx_len: usize
  1782. ) -> TcpSocket<'static> {
  1783. let mut s = socket_with_buffer_sizes(tx_len, rx_len);
  1784. s.state = State::SynReceived;
  1785. s.local_endpoint = LOCAL_END;
  1786. s.remote_endpoint = REMOTE_END;
  1787. s.local_seq_no = LOCAL_SEQ;
  1788. s.remote_seq_no = REMOTE_SEQ + 1;
  1789. s.remote_last_seq = LOCAL_SEQ;
  1790. s.remote_win_len = 256;
  1791. s
  1792. }
  1793. fn socket_syn_received() -> TcpSocket<'static> {
  1794. socket_syn_received_with_buffer_sizes(64, 64)
  1795. }
  1796. fn socket_syn_sent() -> TcpSocket<'static> {
  1797. let mut s = socket();
  1798. s.state = State::SynSent;
  1799. s.local_endpoint = IpEndpoint::new(MOCK_UNSPECIFIED, LOCAL_PORT);
  1800. s.remote_endpoint = REMOTE_END;
  1801. s.local_seq_no = LOCAL_SEQ;
  1802. s.remote_last_seq = LOCAL_SEQ;
  1803. s
  1804. }
  1805. fn socket_syn_sent_with_local_ipendpoint(local: IpEndpoint) -> TcpSocket<'static> {
  1806. let mut s = socket();
  1807. s.state = State::SynSent;
  1808. s.local_endpoint = local;
  1809. s.remote_endpoint = REMOTE_END;
  1810. s.local_seq_no = LOCAL_SEQ;
  1811. s.remote_last_seq = LOCAL_SEQ;
  1812. s
  1813. }
  1814. fn socket_established_with_buffer_sizes(tx_len: usize, rx_len: usize) -> TcpSocket<'static> {
  1815. let mut s = socket_syn_received_with_buffer_sizes(tx_len, rx_len);
  1816. s.state = State::Established;
  1817. s.local_seq_no = LOCAL_SEQ + 1;
  1818. s.remote_last_seq = LOCAL_SEQ + 1;
  1819. s.remote_last_ack = Some(REMOTE_SEQ + 1);
  1820. s.remote_last_win = 64;
  1821. s
  1822. }
  1823. fn socket_established() -> TcpSocket<'static> {
  1824. socket_established_with_buffer_sizes(64, 64)
  1825. }
  1826. fn socket_fin_wait_1() -> TcpSocket<'static> {
  1827. let mut s = socket_established();
  1828. s.state = State::FinWait1;
  1829. s
  1830. }
  1831. fn socket_fin_wait_2() -> TcpSocket<'static> {
  1832. let mut s = socket_fin_wait_1();
  1833. s.state = State::FinWait2;
  1834. s.local_seq_no = LOCAL_SEQ + 1 + 1;
  1835. s.remote_last_seq = LOCAL_SEQ + 1 + 1;
  1836. s
  1837. }
  1838. fn socket_closing() -> TcpSocket<'static> {
  1839. let mut s = socket_fin_wait_1();
  1840. s.state = State::Closing;
  1841. s.remote_last_seq = LOCAL_SEQ + 1 + 1;
  1842. s.remote_seq_no = REMOTE_SEQ + 1 + 1;
  1843. s
  1844. }
  1845. fn socket_time_wait(from_closing: bool) -> TcpSocket<'static> {
  1846. let mut s = socket_fin_wait_2();
  1847. s.state = State::TimeWait;
  1848. s.remote_seq_no = REMOTE_SEQ + 1 + 1;
  1849. if from_closing {
  1850. s.remote_last_ack = Some(REMOTE_SEQ + 1 + 1);
  1851. }
  1852. s.timer = Timer::Close { expires_at: Instant::from_secs(1) + CLOSE_DELAY };
  1853. s
  1854. }
  1855. fn socket_close_wait() -> TcpSocket<'static> {
  1856. let mut s = socket_established();
  1857. s.state = State::CloseWait;
  1858. s.remote_seq_no = REMOTE_SEQ + 1 + 1;
  1859. s.remote_last_ack = Some(REMOTE_SEQ + 1 + 1);
  1860. s
  1861. }
  1862. fn socket_last_ack() -> TcpSocket<'static> {
  1863. let mut s = socket_close_wait();
  1864. s.state = State::LastAck;
  1865. s
  1866. }
  1867. fn socket_recved() -> TcpSocket<'static> {
  1868. let mut s = socket_established();
  1869. send!(s, TcpRepr {
  1870. seq_number: REMOTE_SEQ + 1,
  1871. ack_number: Some(LOCAL_SEQ + 1),
  1872. payload: &b"abcdef"[..],
  1873. ..SEND_TEMPL
  1874. });
  1875. recv!(s, [TcpRepr {
  1876. seq_number: LOCAL_SEQ + 1,
  1877. ack_number: Some(REMOTE_SEQ + 1 + 6),
  1878. window_len: 58,
  1879. ..RECV_TEMPL
  1880. }]);
  1881. s
  1882. }
  1883. // =========================================================================================//
  1884. // Tests for the CLOSED state.
  1885. // =========================================================================================//
  1886. #[test]
  1887. fn test_closed_reject() {
  1888. let s = socket();
  1889. assert_eq!(s.state, State::Closed);
  1890. let tcp_repr = TcpRepr {
  1891. control: TcpControl::Syn,
  1892. ..SEND_TEMPL
  1893. };
  1894. assert!(!s.accepts(&SEND_IP_TEMPL, &tcp_repr));
  1895. }
  1896. #[test]
  1897. fn test_closed_reject_after_listen() {
  1898. let mut s = socket();
  1899. s.listen(LOCAL_END).unwrap();
  1900. s.close();
  1901. let tcp_repr = TcpRepr {
  1902. control: TcpControl::Syn,
  1903. ..SEND_TEMPL
  1904. };
  1905. assert!(!s.accepts(&SEND_IP_TEMPL, &tcp_repr));
  1906. }
  1907. #[test]
  1908. fn test_closed_close() {
  1909. let mut s = socket();
  1910. s.close();
  1911. assert_eq!(s.state, State::Closed);
  1912. }
  1913. // =========================================================================================//
  1914. // Tests for the LISTEN state.
  1915. // =========================================================================================//
  1916. fn socket_listen() -> TcpSocket<'static> {
  1917. let mut s = socket();
  1918. s.state = State::Listen;
  1919. s.local_endpoint = IpEndpoint::new(IpAddress::default(), LOCAL_PORT);
  1920. s
  1921. }
  1922. #[test]
  1923. fn test_listen_sack_option() {
  1924. let mut s = socket_listen();
  1925. send!(s, TcpRepr {
  1926. control: TcpControl::Syn,
  1927. seq_number: REMOTE_SEQ,
  1928. ack_number: None,
  1929. sack_permitted: false,
  1930. ..SEND_TEMPL
  1931. });
  1932. assert!(!s.remote_has_sack);
  1933. recv!(s, [TcpRepr {
  1934. control: TcpControl::Syn,
  1935. seq_number: LOCAL_SEQ,
  1936. ack_number: Some(REMOTE_SEQ + 1),
  1937. max_seg_size: Some(BASE_MSS),
  1938. ..RECV_TEMPL
  1939. }]);
  1940. let mut s = socket_listen();
  1941. send!(s, TcpRepr {
  1942. control: TcpControl::Syn,
  1943. seq_number: REMOTE_SEQ,
  1944. ack_number: None,
  1945. sack_permitted: true,
  1946. ..SEND_TEMPL
  1947. });
  1948. assert!(s.remote_has_sack);
  1949. recv!(s, [TcpRepr {
  1950. control: TcpControl::Syn,
  1951. seq_number: LOCAL_SEQ,
  1952. ack_number: Some(REMOTE_SEQ + 1),
  1953. max_seg_size: Some(BASE_MSS),
  1954. sack_permitted: true,
  1955. ..RECV_TEMPL
  1956. }]);
  1957. }
  1958. #[test]
  1959. fn test_listen_syn_win_scale_buffers() {
  1960. for (buffer_size, shift_amt) in &[
  1961. (64, 0),
  1962. (128, 0),
  1963. (1024, 0),
  1964. (65535, 0),
  1965. (65536, 1),
  1966. (65537, 1),
  1967. (131071, 1),
  1968. (131072, 2),
  1969. (524287, 3),
  1970. (524288, 4),
  1971. (655350, 4),
  1972. (1048576, 5),
  1973. ] {
  1974. let mut s = socket_with_buffer_sizes(64, *buffer_size);
  1975. s.state = State::Listen;
  1976. s.local_endpoint = IpEndpoint::new(IpAddress::default(), LOCAL_PORT);
  1977. assert_eq!(s.remote_win_shift, *shift_amt);
  1978. send!(s, TcpRepr {
  1979. control: TcpControl::Syn,
  1980. seq_number: REMOTE_SEQ,
  1981. ack_number: None,
  1982. window_scale: Some(0),
  1983. ..SEND_TEMPL
  1984. });
  1985. assert_eq!(s.remote_win_shift, *shift_amt);
  1986. recv!(s, [TcpRepr {
  1987. control: TcpControl::Syn,
  1988. seq_number: LOCAL_SEQ,
  1989. ack_number: Some(REMOTE_SEQ + 1),
  1990. max_seg_size: Some(BASE_MSS),
  1991. window_scale: Some(*shift_amt),
  1992. window_len: cmp::min(*buffer_size >> *shift_amt, 65535) as u16,
  1993. ..RECV_TEMPL
  1994. }]);
  1995. }
  1996. }
  1997. #[test]
  1998. fn test_listen_sanity() {
  1999. let mut s = socket();
  2000. s.listen(LOCAL_PORT).unwrap();
  2001. sanity!(s, socket_listen());
  2002. }
  2003. #[test]
  2004. fn test_listen_validation() {
  2005. let mut s = socket();
  2006. assert_eq!(s.listen(0), Err(Error::Unaddressable));
  2007. }
  2008. #[test]
  2009. fn test_listen_twice() {
  2010. let mut s = socket();
  2011. assert_eq!(s.listen(80), Ok(()));
  2012. assert_eq!(s.listen(80), Err(Error::Illegal));
  2013. }
  2014. #[test]
  2015. fn test_listen_syn() {
  2016. let mut s = socket_listen();
  2017. send!(s, TcpRepr {
  2018. control: TcpControl::Syn,
  2019. seq_number: REMOTE_SEQ,
  2020. ack_number: None,
  2021. ..SEND_TEMPL
  2022. });
  2023. sanity!(s, socket_syn_received());
  2024. }
  2025. #[test]
  2026. fn test_listen_syn_reject_ack() {
  2027. let s = socket_listen();
  2028. let tcp_repr = TcpRepr {
  2029. control: TcpControl::Syn,
  2030. seq_number: REMOTE_SEQ,
  2031. ack_number: Some(LOCAL_SEQ),
  2032. ..SEND_TEMPL
  2033. };
  2034. assert!(!s.accepts(&SEND_IP_TEMPL, &tcp_repr));
  2035. assert_eq!(s.state, State::Listen);
  2036. }
  2037. #[test]
  2038. fn test_listen_rst() {
  2039. let mut s = socket_listen();
  2040. send!(s, TcpRepr {
  2041. control: TcpControl::Rst,
  2042. seq_number: REMOTE_SEQ,
  2043. ack_number: None,
  2044. ..SEND_TEMPL
  2045. }, Err(Error::Dropped));
  2046. }
  2047. #[test]
  2048. fn test_listen_close() {
  2049. let mut s = socket_listen();
  2050. s.close();
  2051. assert_eq!(s.state, State::Closed);
  2052. }
  2053. // =========================================================================================//
  2054. // Tests for the SYN-RECEIVED state.
  2055. // =========================================================================================//
  2056. #[test]
  2057. fn test_syn_received_ack() {
  2058. let mut s = socket_syn_received();
  2059. recv!(s, [TcpRepr {
  2060. control: TcpControl::Syn,
  2061. seq_number: LOCAL_SEQ,
  2062. ack_number: Some(REMOTE_SEQ + 1),
  2063. max_seg_size: Some(BASE_MSS),
  2064. ..RECV_TEMPL
  2065. }]);
  2066. send!(s, TcpRepr {
  2067. seq_number: REMOTE_SEQ + 1,
  2068. ack_number: Some(LOCAL_SEQ + 1),
  2069. ..SEND_TEMPL
  2070. });
  2071. assert_eq!(s.state, State::Established);
  2072. sanity!(s, socket_established());
  2073. }
  2074. #[test]
  2075. fn test_syn_received_fin() {
  2076. let mut s = socket_syn_received();
  2077. recv!(s, [TcpRepr {
  2078. control: TcpControl::Syn,
  2079. seq_number: LOCAL_SEQ,
  2080. ack_number: Some(REMOTE_SEQ + 1),
  2081. max_seg_size: Some(BASE_MSS),
  2082. ..RECV_TEMPL
  2083. }]);
  2084. send!(s, TcpRepr {
  2085. control: TcpControl::Fin,
  2086. seq_number: REMOTE_SEQ + 1,
  2087. ack_number: Some(LOCAL_SEQ + 1),
  2088. payload: &b"abcdef"[..],
  2089. ..SEND_TEMPL
  2090. });
  2091. recv!(s, [TcpRepr {
  2092. seq_number: LOCAL_SEQ + 1,
  2093. ack_number: Some(REMOTE_SEQ + 1 + 6 + 1),
  2094. window_len: 58,
  2095. ..RECV_TEMPL
  2096. }]);
  2097. assert_eq!(s.state, State::CloseWait);
  2098. sanity!(s, TcpSocket {
  2099. remote_last_ack: Some(REMOTE_SEQ + 1 + 6 + 1),
  2100. remote_last_win: 58,
  2101. ..socket_close_wait()
  2102. });
  2103. }
  2104. #[test]
  2105. fn test_syn_received_rst() {
  2106. let mut s = socket_syn_received();
  2107. recv!(s, [TcpRepr {
  2108. control: TcpControl::Syn,
  2109. seq_number: LOCAL_SEQ,
  2110. ack_number: Some(REMOTE_SEQ + 1),
  2111. max_seg_size: Some(BASE_MSS),
  2112. ..RECV_TEMPL
  2113. }]);
  2114. send!(s, TcpRepr {
  2115. control: TcpControl::Rst,
  2116. seq_number: REMOTE_SEQ + 1,
  2117. ack_number: Some(LOCAL_SEQ),
  2118. ..SEND_TEMPL
  2119. });
  2120. assert_eq!(s.state, State::Listen);
  2121. assert_eq!(s.local_endpoint, IpEndpoint::new(IpAddress::Unspecified, LOCAL_END.port));
  2122. assert_eq!(s.remote_endpoint, IpEndpoint::default());
  2123. }
  2124. #[test]
  2125. fn test_syn_received_no_window_scaling() {
  2126. let mut s = socket_listen();
  2127. send!(s, TcpRepr {
  2128. control: TcpControl::Syn,
  2129. seq_number: REMOTE_SEQ,
  2130. ack_number: None,
  2131. ..SEND_TEMPL
  2132. });
  2133. assert_eq!(s.state(), State::SynReceived);
  2134. assert_eq!(s.local_endpoint(), LOCAL_END);
  2135. assert_eq!(s.remote_endpoint(), REMOTE_END);
  2136. recv!(s, [TcpRepr {
  2137. control: TcpControl::Syn,
  2138. seq_number: LOCAL_SEQ,
  2139. ack_number: Some(REMOTE_SEQ + 1),
  2140. max_seg_size: Some(BASE_MSS),
  2141. window_scale: None,
  2142. ..RECV_TEMPL
  2143. }]);
  2144. send!(s, TcpRepr {
  2145. seq_number: REMOTE_SEQ + 1,
  2146. ack_number: Some(LOCAL_SEQ + 1),
  2147. window_scale: None,
  2148. ..SEND_TEMPL
  2149. });
  2150. assert_eq!(s.remote_win_scale, None);
  2151. }
  2152. #[test]
  2153. fn test_syn_received_window_scaling() {
  2154. for scale in 0..14 {
  2155. let mut s = socket_listen();
  2156. send!(s, TcpRepr {
  2157. control: TcpControl::Syn,
  2158. seq_number: REMOTE_SEQ,
  2159. ack_number: None,
  2160. window_scale: Some(scale),
  2161. ..SEND_TEMPL
  2162. });
  2163. assert_eq!(s.state(), State::SynReceived);
  2164. assert_eq!(s.local_endpoint(), LOCAL_END);
  2165. assert_eq!(s.remote_endpoint(), REMOTE_END);
  2166. recv!(s, [TcpRepr {
  2167. control: TcpControl::Syn,
  2168. seq_number: LOCAL_SEQ,
  2169. ack_number: Some(REMOTE_SEQ + 1),
  2170. max_seg_size: Some(BASE_MSS),
  2171. window_scale: Some(0),
  2172. ..RECV_TEMPL
  2173. }]);
  2174. send!(s, TcpRepr {
  2175. seq_number: REMOTE_SEQ + 1,
  2176. ack_number: Some(LOCAL_SEQ + 1),
  2177. window_scale: None,
  2178. ..SEND_TEMPL
  2179. });
  2180. assert_eq!(s.remote_win_scale, Some(scale));
  2181. }
  2182. }
  2183. #[test]
  2184. fn test_syn_received_close() {
  2185. let mut s = socket_syn_received();
  2186. s.close();
  2187. assert_eq!(s.state, State::FinWait1);
  2188. }
  2189. // =========================================================================================//
  2190. // Tests for the SYN-SENT state.
  2191. // =========================================================================================//
  2192. #[test]
  2193. fn test_connect_validation() {
  2194. let mut s = socket();
  2195. assert_eq!(s.connect((IpAddress::Unspecified, 80), LOCAL_END),
  2196. Err(Error::Unaddressable));
  2197. assert_eq!(s.connect(REMOTE_END, (MOCK_UNSPECIFIED, 0)),
  2198. Err(Error::Unaddressable));
  2199. assert_eq!(s.connect((MOCK_UNSPECIFIED, 0), LOCAL_END),
  2200. Err(Error::Unaddressable));
  2201. assert_eq!(s.connect((IpAddress::Unspecified, 80), LOCAL_END),
  2202. Err(Error::Unaddressable));
  2203. s.connect(REMOTE_END, LOCAL_END).expect("Connect failed with valid parameters");
  2204. assert_eq!(s.local_endpoint(), LOCAL_END);
  2205. assert_eq!(s.remote_endpoint(), REMOTE_END);
  2206. }
  2207. #[test]
  2208. fn test_connect() {
  2209. let mut s = socket();
  2210. s.local_seq_no = LOCAL_SEQ;
  2211. s.connect(REMOTE_END, LOCAL_END.port).unwrap();
  2212. assert_eq!(s.local_endpoint, IpEndpoint::new(MOCK_UNSPECIFIED, LOCAL_END.port));
  2213. recv!(s, [TcpRepr {
  2214. control: TcpControl::Syn,
  2215. seq_number: LOCAL_SEQ,
  2216. ack_number: None,
  2217. max_seg_size: Some(BASE_MSS),
  2218. window_scale: Some(0),
  2219. sack_permitted: true,
  2220. ..RECV_TEMPL
  2221. }]);
  2222. send!(s, TcpRepr {
  2223. control: TcpControl::Syn,
  2224. seq_number: REMOTE_SEQ,
  2225. ack_number: Some(LOCAL_SEQ + 1),
  2226. max_seg_size: Some(BASE_MSS - 80),
  2227. window_scale: Some(0),
  2228. ..SEND_TEMPL
  2229. });
  2230. assert_eq!(s.local_endpoint, LOCAL_END);
  2231. }
  2232. #[test]
  2233. fn test_connect_unspecified_local() {
  2234. let mut s = socket();
  2235. assert_eq!(s.connect(REMOTE_END, (MOCK_UNSPECIFIED, 80)),
  2236. Ok(()));
  2237. s.abort();
  2238. assert_eq!(s.connect(REMOTE_END, (IpAddress::Unspecified, 80)),
  2239. Ok(()));
  2240. s.abort();
  2241. }
  2242. #[test]
  2243. fn test_connect_specified_local() {
  2244. let mut s = socket();
  2245. assert_eq!(s.connect(REMOTE_END, (MOCK_IP_ADDR_2, 80)),
  2246. Ok(()));
  2247. }
  2248. #[test]
  2249. fn test_connect_twice() {
  2250. let mut s = socket();
  2251. assert_eq!(s.connect(REMOTE_END, (IpAddress::Unspecified, 80)),
  2252. Ok(()));
  2253. assert_eq!(s.connect(REMOTE_END, (IpAddress::Unspecified, 80)),
  2254. Err(Error::Illegal));
  2255. }
  2256. #[test]
  2257. fn test_syn_sent_sanity() {
  2258. let mut s = socket();
  2259. s.local_seq_no = LOCAL_SEQ;
  2260. s.connect(REMOTE_END, LOCAL_END).unwrap();
  2261. sanity!(s, socket_syn_sent_with_local_ipendpoint(LOCAL_END));
  2262. }
  2263. #[test]
  2264. fn test_syn_sent_syn_ack() {
  2265. let mut s = socket_syn_sent();
  2266. recv!(s, [TcpRepr {
  2267. control: TcpControl::Syn,
  2268. seq_number: LOCAL_SEQ,
  2269. ack_number: None,
  2270. max_seg_size: Some(BASE_MSS),
  2271. window_scale: Some(0),
  2272. sack_permitted: true,
  2273. ..RECV_TEMPL
  2274. }]);
  2275. send!(s, TcpRepr {
  2276. control: TcpControl::Syn,
  2277. seq_number: REMOTE_SEQ,
  2278. ack_number: Some(LOCAL_SEQ + 1),
  2279. max_seg_size: Some(BASE_MSS - 80),
  2280. window_scale: Some(0),
  2281. ..SEND_TEMPL
  2282. });
  2283. recv!(s, [TcpRepr {
  2284. seq_number: LOCAL_SEQ + 1,
  2285. ack_number: Some(REMOTE_SEQ + 1),
  2286. ..RECV_TEMPL
  2287. }]);
  2288. recv!(s, time 1000, Err(Error::Exhausted));
  2289. assert_eq!(s.state, State::Established);
  2290. sanity!(s, socket_established());
  2291. }
  2292. #[test]
  2293. fn test_syn_sent_rst() {
  2294. let mut s = socket_syn_sent();
  2295. send!(s, TcpRepr {
  2296. control: TcpControl::Rst,
  2297. seq_number: REMOTE_SEQ,
  2298. ack_number: Some(LOCAL_SEQ + 1),
  2299. ..SEND_TEMPL
  2300. });
  2301. assert_eq!(s.state, State::Closed);
  2302. }
  2303. #[test]
  2304. fn test_syn_sent_rst_no_ack() {
  2305. let mut s = socket_syn_sent();
  2306. send!(s, TcpRepr {
  2307. control: TcpControl::Rst,
  2308. seq_number: REMOTE_SEQ,
  2309. ack_number: None,
  2310. ..SEND_TEMPL
  2311. }, Err(Error::Dropped));
  2312. assert_eq!(s.state, State::SynSent);
  2313. }
  2314. #[test]
  2315. fn test_syn_sent_rst_bad_ack() {
  2316. let mut s = socket_syn_sent();
  2317. send!(s, TcpRepr {
  2318. control: TcpControl::Rst,
  2319. seq_number: REMOTE_SEQ,
  2320. ack_number: Some(TcpSeqNumber(1234)),
  2321. ..SEND_TEMPL
  2322. }, Err(Error::Dropped));
  2323. assert_eq!(s.state, State::SynSent);
  2324. }
  2325. #[test]
  2326. fn test_syn_sent_bad_ack() {
  2327. let mut s = socket_syn_sent();
  2328. send!(s, TcpRepr {
  2329. control: TcpControl::None,
  2330. ack_number: Some(TcpSeqNumber(1)),
  2331. ..SEND_TEMPL
  2332. }, Err(Error::Dropped));
  2333. assert_eq!(s.state, State::Closed);
  2334. }
  2335. #[test]
  2336. fn test_syn_sent_close() {
  2337. let mut s = socket();
  2338. s.close();
  2339. assert_eq!(s.state, State::Closed);
  2340. }
  2341. #[test]
  2342. fn test_syn_sent_win_scale_buffers() {
  2343. for (buffer_size, shift_amt) in &[
  2344. (64, 0),
  2345. (128, 0),
  2346. (1024, 0),
  2347. (65535, 0),
  2348. (65536, 1),
  2349. (65537, 1),
  2350. (131071, 1),
  2351. (131072, 2),
  2352. (524287, 3),
  2353. (524288, 4),
  2354. (655350, 4),
  2355. (1048576, 5),
  2356. ] {
  2357. let mut s = socket_with_buffer_sizes(64, *buffer_size);
  2358. assert_eq!(s.remote_win_shift, *shift_amt);
  2359. s.connect(REMOTE_END, LOCAL_END).unwrap();
  2360. recv!(s, [TcpRepr {
  2361. control: TcpControl::Syn,
  2362. ack_number: None,
  2363. max_seg_size: Some(BASE_MSS),
  2364. window_scale: Some(*shift_amt),
  2365. window_len: cmp::min(*buffer_size >> *shift_amt, 65535) as u16,
  2366. sack_permitted: true,
  2367. ..RECV_TEMPL
  2368. }]);
  2369. }
  2370. }
  2371. // =========================================================================================//
  2372. // Tests for the ESTABLISHED state.
  2373. // =========================================================================================//
  2374. #[test]
  2375. fn test_established_recv() {
  2376. let mut s = socket_established();
  2377. send!(s, TcpRepr {
  2378. seq_number: REMOTE_SEQ + 1,
  2379. ack_number: Some(LOCAL_SEQ + 1),
  2380. payload: &b"abcdef"[..],
  2381. ..SEND_TEMPL
  2382. });
  2383. recv!(s, [TcpRepr {
  2384. seq_number: LOCAL_SEQ + 1,
  2385. ack_number: Some(REMOTE_SEQ + 1 + 6),
  2386. window_len: 58,
  2387. ..RECV_TEMPL
  2388. }]);
  2389. assert_eq!(s.rx_buffer.dequeue_many(6), &b"abcdef"[..]);
  2390. }
  2391. fn setup_rfc2018_cases() -> (TcpSocket<'static>, Vec<u8>) {
  2392. // This is a utility function used by the tests for RFC 2018 cases. It configures a socket
  2393. // in a particular way suitable for those cases.
  2394. //
  2395. // RFC 2018: Assume the left window edge is 5000 and that the data transmitter sends [...]
  2396. // segments, each containing 500 data bytes.
  2397. let mut s = socket_established_with_buffer_sizes(4000, 4000);
  2398. s.remote_has_sack = true;
  2399. // create a segment that is 500 bytes long
  2400. let mut segment: Vec<u8> = Vec::with_capacity(500);
  2401. // move the last ack to 5000 by sending ten of them
  2402. for _ in 0..50 { segment.extend_from_slice(b"abcdefghij") }
  2403. for offset in (0..5000).step_by(500) {
  2404. send!(s, TcpRepr {
  2405. seq_number: REMOTE_SEQ + 1 + offset,
  2406. ack_number: Some(LOCAL_SEQ + 1),
  2407. payload: &segment,
  2408. ..SEND_TEMPL
  2409. });
  2410. recv!(s, [TcpRepr {
  2411. seq_number: LOCAL_SEQ + 1,
  2412. ack_number: Some(REMOTE_SEQ + 1 + offset + 500),
  2413. window_len: 3500,
  2414. ..RECV_TEMPL
  2415. }]);
  2416. s.recv(|data| {
  2417. assert_eq!(data.len(), 500);
  2418. assert_eq!(data, segment.as_slice());
  2419. (500, ())
  2420. }).unwrap();
  2421. }
  2422. assert_eq!(s.remote_last_win, 3500);
  2423. (s, segment)
  2424. }
  2425. #[test]
  2426. fn test_established_rfc2018_cases() {
  2427. // This test case verifies the exact scenarios described on pages 8-9 of RFC 2018. Please
  2428. // ensure its behavior does not deviate from those scenarios.
  2429. let (mut s, segment) = setup_rfc2018_cases();
  2430. // RFC 2018:
  2431. //
  2432. // Case 2: The first segment is dropped but the remaining 7 are received.
  2433. //
  2434. // Upon receiving each of the last seven packets, the data receiver will return a TCP ACK
  2435. // segment that acknowledges sequence number 5000 and contains a SACK option specifying one
  2436. // block of queued data:
  2437. //
  2438. // Triggering ACK Left Edge Right Edge
  2439. // Segment
  2440. //
  2441. // 5000 (lost)
  2442. // 5500 5000 5500 6000
  2443. // 6000 5000 5500 6500
  2444. // 6500 5000 5500 7000
  2445. // 7000 5000 5500 7500
  2446. // 7500 5000 5500 8000
  2447. // 8000 5000 5500 8500
  2448. // 8500 5000 5500 9000
  2449. //
  2450. for offset in (500..3500).step_by(500) {
  2451. send!(s, TcpRepr {
  2452. seq_number: REMOTE_SEQ + 1 + offset + 5000,
  2453. ack_number: Some(LOCAL_SEQ + 1),
  2454. payload: &segment,
  2455. ..SEND_TEMPL
  2456. }, Ok(Some(TcpRepr {
  2457. seq_number: LOCAL_SEQ + 1,
  2458. ack_number: Some(REMOTE_SEQ + 1 + 5000),
  2459. window_len: 4000,
  2460. sack_ranges: [
  2461. Some((REMOTE_SEQ.0 as u32 + 1 + 5500,
  2462. REMOTE_SEQ.0 as u32 + 1 + 5500 + offset as u32)),
  2463. None, None],
  2464. ..RECV_TEMPL
  2465. })));
  2466. }
  2467. }
  2468. #[test]
  2469. fn test_established_sliding_window_recv() {
  2470. let mut s = socket_established();
  2471. // Update our scaling parameters for a TCP with a scaled buffer.
  2472. assert_eq!(s.rx_buffer.len(), 0);
  2473. s.rx_buffer = SocketBuffer::new(vec![0; 262143]);
  2474. s.assembler = Assembler::new(s.rx_buffer.capacity());
  2475. s.remote_win_scale = Some(0);
  2476. s.remote_last_win = 65535;
  2477. s.remote_win_shift = 2;
  2478. // Create a TCP segment that will mostly fill an IP frame.
  2479. let mut segment: Vec<u8> = Vec::with_capacity(1400);
  2480. for _ in 0..100 { segment.extend_from_slice(b"abcdefghijklmn") }
  2481. assert_eq!(segment.len(), 1400);
  2482. // Send the frame
  2483. send!(s, TcpRepr {
  2484. seq_number: REMOTE_SEQ + 1,
  2485. ack_number: Some(LOCAL_SEQ + 1),
  2486. payload: &segment,
  2487. ..SEND_TEMPL
  2488. });
  2489. // Ensure that the received window size is shifted right by 2.
  2490. recv!(s, [TcpRepr {
  2491. seq_number: LOCAL_SEQ + 1,
  2492. ack_number: Some(REMOTE_SEQ + 1 + 1400),
  2493. window_len: 65185,
  2494. ..RECV_TEMPL
  2495. }]);
  2496. }
  2497. #[test]
  2498. fn test_established_send() {
  2499. let mut s = socket_established();
  2500. // First roundtrip after establishing.
  2501. s.send_slice(b"abcdef").unwrap();
  2502. recv!(s, [TcpRepr {
  2503. seq_number: LOCAL_SEQ + 1,
  2504. ack_number: Some(REMOTE_SEQ + 1),
  2505. payload: &b"abcdef"[..],
  2506. ..RECV_TEMPL
  2507. }]);
  2508. assert_eq!(s.tx_buffer.len(), 6);
  2509. send!(s, TcpRepr {
  2510. seq_number: REMOTE_SEQ + 1,
  2511. ack_number: Some(LOCAL_SEQ + 1 + 6),
  2512. ..SEND_TEMPL
  2513. });
  2514. assert_eq!(s.tx_buffer.len(), 0);
  2515. // Second roundtrip.
  2516. s.send_slice(b"foobar").unwrap();
  2517. recv!(s, [TcpRepr {
  2518. seq_number: LOCAL_SEQ + 1 + 6,
  2519. ack_number: Some(REMOTE_SEQ + 1),
  2520. payload: &b"foobar"[..],
  2521. ..RECV_TEMPL
  2522. }]);
  2523. send!(s, TcpRepr {
  2524. seq_number: REMOTE_SEQ + 1,
  2525. ack_number: Some(LOCAL_SEQ + 1 + 6 + 6),
  2526. ..SEND_TEMPL
  2527. });
  2528. assert_eq!(s.tx_buffer.len(), 0);
  2529. }
  2530. #[test]
  2531. fn test_established_send_no_ack_send() {
  2532. let mut s = socket_established();
  2533. s.send_slice(b"abcdef").unwrap();
  2534. recv!(s, [TcpRepr {
  2535. seq_number: LOCAL_SEQ + 1,
  2536. ack_number: Some(REMOTE_SEQ + 1),
  2537. payload: &b"abcdef"[..],
  2538. ..RECV_TEMPL
  2539. }]);
  2540. s.send_slice(b"foobar").unwrap();
  2541. recv!(s, [TcpRepr {
  2542. seq_number: LOCAL_SEQ + 1 + 6,
  2543. ack_number: Some(REMOTE_SEQ + 1),
  2544. payload: &b"foobar"[..],
  2545. ..RECV_TEMPL
  2546. }]);
  2547. }
  2548. #[test]
  2549. fn test_established_send_buf_gt_win() {
  2550. let mut data = [0; 32];
  2551. for (i, elem) in data.iter_mut().enumerate() {
  2552. *elem = i as u8
  2553. }
  2554. let mut s = socket_established();
  2555. s.remote_win_len = 16;
  2556. s.send_slice(&data[..]).unwrap();
  2557. recv!(s, [TcpRepr {
  2558. seq_number: LOCAL_SEQ + 1,
  2559. ack_number: Some(REMOTE_SEQ + 1),
  2560. payload: &data[0..16],
  2561. ..RECV_TEMPL
  2562. }]);
  2563. }
  2564. #[test]
  2565. fn test_established_send_wrap() {
  2566. let mut s = socket_established();
  2567. let local_seq_start = TcpSeqNumber(i32::MAX - 1);
  2568. s.local_seq_no = local_seq_start + 1;
  2569. s.remote_last_seq = local_seq_start + 1;
  2570. s.send_slice(b"abc").unwrap();
  2571. recv!(s, time 1000, Ok(TcpRepr {
  2572. seq_number: local_seq_start + 1,
  2573. ack_number: Some(REMOTE_SEQ + 1),
  2574. payload: &b"abc"[..],
  2575. ..RECV_TEMPL
  2576. }));
  2577. }
  2578. #[test]
  2579. fn test_established_no_ack() {
  2580. let mut s = socket_established();
  2581. send!(s, TcpRepr {
  2582. seq_number: REMOTE_SEQ + 1,
  2583. ack_number: None,
  2584. ..SEND_TEMPL
  2585. }, Err(Error::Dropped));
  2586. }
  2587. #[test]
  2588. fn test_established_bad_ack() {
  2589. let mut s = socket_established();
  2590. // Already acknowledged data.
  2591. send!(s, TcpRepr {
  2592. seq_number: REMOTE_SEQ + 1,
  2593. ack_number: Some(TcpSeqNumber(LOCAL_SEQ.0 - 1)),
  2594. ..SEND_TEMPL
  2595. }, Err(Error::Dropped));
  2596. assert_eq!(s.local_seq_no, LOCAL_SEQ + 1);
  2597. // Data not yet transmitted.
  2598. send!(s, TcpRepr {
  2599. seq_number: REMOTE_SEQ + 1,
  2600. ack_number: Some(LOCAL_SEQ + 10),
  2601. ..SEND_TEMPL
  2602. }, Ok(Some(TcpRepr {
  2603. seq_number: LOCAL_SEQ + 1,
  2604. ack_number: Some(REMOTE_SEQ + 1),
  2605. ..RECV_TEMPL
  2606. })));
  2607. assert_eq!(s.local_seq_no, LOCAL_SEQ + 1);
  2608. }
  2609. #[test]
  2610. fn test_established_bad_seq() {
  2611. let mut s = socket_established();
  2612. // Data outside of receive window.
  2613. send!(s, TcpRepr {
  2614. seq_number: REMOTE_SEQ + 1 + 256,
  2615. ack_number: Some(LOCAL_SEQ + 1),
  2616. ..SEND_TEMPL
  2617. }, Ok(Some(TcpRepr {
  2618. seq_number: LOCAL_SEQ + 1,
  2619. ack_number: Some(REMOTE_SEQ + 1),
  2620. ..RECV_TEMPL
  2621. })));
  2622. assert_eq!(s.remote_seq_no, REMOTE_SEQ + 1);
  2623. }
  2624. #[test]
  2625. fn test_established_fin() {
  2626. let mut s = socket_established();
  2627. send!(s, TcpRepr {
  2628. control: TcpControl::Fin,
  2629. seq_number: REMOTE_SEQ + 1,
  2630. ack_number: Some(LOCAL_SEQ + 1),
  2631. ..SEND_TEMPL
  2632. });
  2633. recv!(s, [TcpRepr {
  2634. seq_number: LOCAL_SEQ + 1,
  2635. ack_number: Some(REMOTE_SEQ + 1 + 1),
  2636. ..RECV_TEMPL
  2637. }]);
  2638. assert_eq!(s.state, State::CloseWait);
  2639. sanity!(s, socket_close_wait());
  2640. }
  2641. #[test]
  2642. fn test_established_fin_after_missing() {
  2643. let mut s = socket_established();
  2644. send!(s, TcpRepr {
  2645. control: TcpControl::Fin,
  2646. seq_number: REMOTE_SEQ + 1 + 6,
  2647. ack_number: Some(LOCAL_SEQ + 1),
  2648. payload: &b"123456"[..],
  2649. ..SEND_TEMPL
  2650. }, Ok(Some(TcpRepr {
  2651. seq_number: LOCAL_SEQ + 1,
  2652. ack_number: Some(REMOTE_SEQ + 1),
  2653. ..RECV_TEMPL
  2654. })));
  2655. assert_eq!(s.state, State::Established);
  2656. send!(s, TcpRepr {
  2657. seq_number: REMOTE_SEQ + 1,
  2658. ack_number: Some(LOCAL_SEQ + 1),
  2659. payload: &b"abcdef"[..],
  2660. ..SEND_TEMPL
  2661. }, Ok(Some(TcpRepr {
  2662. seq_number: LOCAL_SEQ + 1,
  2663. ack_number: Some(REMOTE_SEQ + 1 + 6 + 6),
  2664. window_len: 52,
  2665. ..RECV_TEMPL
  2666. })));
  2667. assert_eq!(s.state, State::Established);
  2668. }
  2669. #[test]
  2670. fn test_established_send_fin() {
  2671. let mut s = socket_established();
  2672. s.send_slice(b"abcdef").unwrap();
  2673. send!(s, TcpRepr {
  2674. control: TcpControl::Fin,
  2675. seq_number: REMOTE_SEQ + 1,
  2676. ack_number: Some(LOCAL_SEQ + 1),
  2677. ..SEND_TEMPL
  2678. });
  2679. assert_eq!(s.state, State::CloseWait);
  2680. recv!(s, [TcpRepr {
  2681. seq_number: LOCAL_SEQ + 1,
  2682. ack_number: Some(REMOTE_SEQ + 1 + 1),
  2683. payload: &b"abcdef"[..],
  2684. ..RECV_TEMPL
  2685. }]);
  2686. }
  2687. #[test]
  2688. fn test_established_rst() {
  2689. let mut s = socket_established();
  2690. send!(s, TcpRepr {
  2691. control: TcpControl::Rst,
  2692. seq_number: REMOTE_SEQ + 1,
  2693. ack_number: Some(LOCAL_SEQ + 1),
  2694. ..SEND_TEMPL
  2695. });
  2696. assert_eq!(s.state, State::Closed);
  2697. }
  2698. #[test]
  2699. fn test_established_rst_no_ack() {
  2700. let mut s = socket_established();
  2701. send!(s, TcpRepr {
  2702. control: TcpControl::Rst,
  2703. seq_number: REMOTE_SEQ + 1,
  2704. ack_number: None,
  2705. ..SEND_TEMPL
  2706. });
  2707. assert_eq!(s.state, State::Closed);
  2708. }
  2709. #[test]
  2710. fn test_established_close() {
  2711. let mut s = socket_established();
  2712. s.close();
  2713. assert_eq!(s.state, State::FinWait1);
  2714. sanity!(s, socket_fin_wait_1());
  2715. }
  2716. #[test]
  2717. fn test_established_abort() {
  2718. let mut s = socket_established();
  2719. s.abort();
  2720. assert_eq!(s.state, State::Closed);
  2721. recv!(s, [TcpRepr {
  2722. control: TcpControl::Rst,
  2723. seq_number: LOCAL_SEQ + 1,
  2724. ack_number: Some(REMOTE_SEQ + 1),
  2725. ..RECV_TEMPL
  2726. }]);
  2727. }
  2728. #[test]
  2729. fn test_established_rst_bad_seq() {
  2730. let mut s = socket_established();
  2731. send!(s, TcpRepr {
  2732. control: TcpControl::Rst,
  2733. seq_number: REMOTE_SEQ, // Wrong seq
  2734. ack_number: None,
  2735. ..SEND_TEMPL
  2736. }, Ok(Some(TcpRepr {
  2737. seq_number: LOCAL_SEQ + 1,
  2738. ack_number: Some(REMOTE_SEQ + 1),
  2739. ..RECV_TEMPL
  2740. })));
  2741. assert_eq!(s.state, State::Established);
  2742. // Send something to advance seq by 1
  2743. send!(s, TcpRepr {
  2744. seq_number: REMOTE_SEQ + 1, // correct seq
  2745. ack_number: Some(LOCAL_SEQ + 1),
  2746. payload: &b"a"[..],
  2747. ..SEND_TEMPL
  2748. });
  2749. // Send wrong rst again, check that the challenge ack is correctly updated
  2750. // The ack number must be updated even if we don't call dispatch on the socket
  2751. // See https://github.com/smoltcp-rs/smoltcp/issues/338
  2752. send!(s, TcpRepr {
  2753. control: TcpControl::Rst,
  2754. seq_number: REMOTE_SEQ, // Wrong seq
  2755. ack_number: None,
  2756. ..SEND_TEMPL
  2757. }, Ok(Some(TcpRepr {
  2758. seq_number: LOCAL_SEQ + 1,
  2759. ack_number: Some(REMOTE_SEQ + 2), // this has changed
  2760. window_len: 63,
  2761. ..RECV_TEMPL
  2762. })));
  2763. }
  2764. // =========================================================================================//
  2765. // Tests for the FIN-WAIT-1 state.
  2766. // =========================================================================================//
  2767. #[test]
  2768. fn test_fin_wait_1_fin_ack() {
  2769. let mut s = socket_fin_wait_1();
  2770. recv!(s, [TcpRepr {
  2771. control: TcpControl::Fin,
  2772. seq_number: LOCAL_SEQ + 1,
  2773. ack_number: Some(REMOTE_SEQ + 1),
  2774. ..RECV_TEMPL
  2775. }]);
  2776. send!(s, TcpRepr {
  2777. seq_number: REMOTE_SEQ + 1,
  2778. ack_number: Some(LOCAL_SEQ + 1 + 1),
  2779. ..SEND_TEMPL
  2780. });
  2781. assert_eq!(s.state, State::FinWait2);
  2782. sanity!(s, socket_fin_wait_2());
  2783. }
  2784. #[test]
  2785. fn test_fin_wait_1_fin_fin() {
  2786. let mut s = socket_fin_wait_1();
  2787. recv!(s, [TcpRepr {
  2788. control: TcpControl::Fin,
  2789. seq_number: LOCAL_SEQ + 1,
  2790. ack_number: Some(REMOTE_SEQ + 1),
  2791. ..RECV_TEMPL
  2792. }]);
  2793. send!(s, TcpRepr {
  2794. control: TcpControl::Fin,
  2795. seq_number: REMOTE_SEQ + 1,
  2796. ack_number: Some(LOCAL_SEQ + 1),
  2797. ..SEND_TEMPL
  2798. });
  2799. assert_eq!(s.state, State::Closing);
  2800. sanity!(s, socket_closing());
  2801. }
  2802. #[test]
  2803. fn test_fin_wait_1_fin_with_data_queued() {
  2804. let mut s = socket_established();
  2805. s.remote_win_len = 6;
  2806. s.send_slice(b"abcdef123456").unwrap();
  2807. s.close();
  2808. recv!(s, Ok(TcpRepr {
  2809. seq_number: LOCAL_SEQ + 1,
  2810. ack_number: Some(REMOTE_SEQ + 1),
  2811. payload: &b"abcdef"[..],
  2812. ..RECV_TEMPL
  2813. }));
  2814. send!(s, TcpRepr {
  2815. seq_number: REMOTE_SEQ + 1,
  2816. ack_number: Some(LOCAL_SEQ + 1 + 6),
  2817. ..SEND_TEMPL
  2818. });
  2819. assert_eq!(s.state, State::FinWait1);
  2820. }
  2821. #[test]
  2822. fn test_fin_wait_1_recv() {
  2823. let mut s = socket_fin_wait_1();
  2824. send!(s, TcpRepr {
  2825. seq_number: REMOTE_SEQ + 1,
  2826. ack_number: Some(LOCAL_SEQ + 1),
  2827. payload: &b"abc"[..],
  2828. ..SEND_TEMPL
  2829. });
  2830. assert_eq!(s.state, State::FinWait1);
  2831. s.recv(|data| {
  2832. assert_eq!(data, b"abc");
  2833. (3, ())
  2834. }).unwrap();
  2835. }
  2836. #[test]
  2837. fn test_fin_wait_1_close() {
  2838. let mut s = socket_fin_wait_1();
  2839. s.close();
  2840. assert_eq!(s.state, State::FinWait1);
  2841. }
  2842. // =========================================================================================//
  2843. // Tests for the FIN-WAIT-2 state.
  2844. // =========================================================================================//
  2845. #[test]
  2846. fn test_fin_wait_2_fin() {
  2847. let mut s = socket_fin_wait_2();
  2848. send!(s, time 1_000, TcpRepr {
  2849. control: TcpControl::Fin,
  2850. seq_number: REMOTE_SEQ + 1,
  2851. ack_number: Some(LOCAL_SEQ + 1 + 1),
  2852. ..SEND_TEMPL
  2853. });
  2854. assert_eq!(s.state, State::TimeWait);
  2855. sanity!(s, socket_time_wait(false));
  2856. }
  2857. #[test]
  2858. fn test_fin_wait_2_recv() {
  2859. let mut s = socket_fin_wait_2();
  2860. send!(s, TcpRepr {
  2861. seq_number: REMOTE_SEQ + 1,
  2862. ack_number: Some(LOCAL_SEQ + 1 + 1),
  2863. payload: &b"abc"[..],
  2864. ..SEND_TEMPL
  2865. });
  2866. assert_eq!(s.state, State::FinWait2);
  2867. s.recv(|data| {
  2868. assert_eq!(data, b"abc");
  2869. (3, ())
  2870. }).unwrap();
  2871. recv!(s, [TcpRepr {
  2872. seq_number: LOCAL_SEQ + 1 + 1,
  2873. ack_number: Some(REMOTE_SEQ + 1 + 3),
  2874. ..RECV_TEMPL
  2875. }]);
  2876. }
  2877. #[test]
  2878. fn test_fin_wait_2_close() {
  2879. let mut s = socket_fin_wait_2();
  2880. s.close();
  2881. assert_eq!(s.state, State::FinWait2);
  2882. }
  2883. // =========================================================================================//
  2884. // Tests for the CLOSING state.
  2885. // =========================================================================================//
  2886. #[test]
  2887. fn test_closing_ack_fin() {
  2888. let mut s = socket_closing();
  2889. recv!(s, [TcpRepr {
  2890. seq_number: LOCAL_SEQ + 1 + 1,
  2891. ack_number: Some(REMOTE_SEQ + 1 + 1),
  2892. ..RECV_TEMPL
  2893. }]);
  2894. send!(s, time 1_000, TcpRepr {
  2895. seq_number: REMOTE_SEQ + 1 + 1,
  2896. ack_number: Some(LOCAL_SEQ + 1 + 1),
  2897. ..SEND_TEMPL
  2898. });
  2899. assert_eq!(s.state, State::TimeWait);
  2900. sanity!(s, socket_time_wait(true));
  2901. }
  2902. #[test]
  2903. fn test_closing_close() {
  2904. let mut s = socket_closing();
  2905. s.close();
  2906. assert_eq!(s.state, State::Closing);
  2907. }
  2908. // =========================================================================================//
  2909. // Tests for the TIME-WAIT state.
  2910. // =========================================================================================//
  2911. #[test]
  2912. fn test_time_wait_from_fin_wait_2_ack() {
  2913. let mut s = socket_time_wait(false);
  2914. recv!(s, [TcpRepr {
  2915. seq_number: LOCAL_SEQ + 1 + 1,
  2916. ack_number: Some(REMOTE_SEQ + 1 + 1),
  2917. ..RECV_TEMPL
  2918. }]);
  2919. }
  2920. #[test]
  2921. fn test_time_wait_from_closing_no_ack() {
  2922. let mut s = socket_time_wait(true);
  2923. recv!(s, []);
  2924. }
  2925. #[test]
  2926. fn test_time_wait_close() {
  2927. let mut s = socket_time_wait(false);
  2928. s.close();
  2929. assert_eq!(s.state, State::TimeWait);
  2930. }
  2931. #[test]
  2932. fn test_time_wait_retransmit() {
  2933. let mut s = socket_time_wait(false);
  2934. recv!(s, [TcpRepr {
  2935. seq_number: LOCAL_SEQ + 1 + 1,
  2936. ack_number: Some(REMOTE_SEQ + 1 + 1),
  2937. ..RECV_TEMPL
  2938. }]);
  2939. send!(s, time 5_000, TcpRepr {
  2940. control: TcpControl::Fin,
  2941. seq_number: REMOTE_SEQ + 1,
  2942. ack_number: Some(LOCAL_SEQ + 1 + 1),
  2943. ..SEND_TEMPL
  2944. }, Ok(Some(TcpRepr {
  2945. seq_number: LOCAL_SEQ + 1 + 1,
  2946. ack_number: Some(REMOTE_SEQ + 1 + 1),
  2947. ..RECV_TEMPL
  2948. })));
  2949. assert_eq!(s.timer, Timer::Close { expires_at: Instant::from_secs(5) + CLOSE_DELAY });
  2950. }
  2951. #[test]
  2952. fn test_time_wait_timeout() {
  2953. let mut s = socket_time_wait(false);
  2954. recv!(s, [TcpRepr {
  2955. seq_number: LOCAL_SEQ + 1 + 1,
  2956. ack_number: Some(REMOTE_SEQ + 1 + 1),
  2957. ..RECV_TEMPL
  2958. }]);
  2959. assert_eq!(s.state, State::TimeWait);
  2960. recv!(s, time 60_000, Err(Error::Exhausted));
  2961. assert_eq!(s.state, State::Closed);
  2962. }
  2963. // =========================================================================================//
  2964. // Tests for the CLOSE-WAIT state.
  2965. // =========================================================================================//
  2966. #[test]
  2967. fn test_close_wait_ack() {
  2968. let mut s = socket_close_wait();
  2969. s.send_slice(b"abcdef").unwrap();
  2970. recv!(s, [TcpRepr {
  2971. seq_number: LOCAL_SEQ + 1,
  2972. ack_number: Some(REMOTE_SEQ + 1 + 1),
  2973. payload: &b"abcdef"[..],
  2974. ..RECV_TEMPL
  2975. }]);
  2976. send!(s, TcpRepr {
  2977. seq_number: REMOTE_SEQ + 1 + 1,
  2978. ack_number: Some(LOCAL_SEQ + 1 + 6),
  2979. ..SEND_TEMPL
  2980. });
  2981. }
  2982. #[test]
  2983. fn test_close_wait_close() {
  2984. let mut s = socket_close_wait();
  2985. s.close();
  2986. assert_eq!(s.state, State::LastAck);
  2987. sanity!(s, socket_last_ack());
  2988. }
  2989. // =========================================================================================//
  2990. // Tests for the LAST-ACK state.
  2991. // =========================================================================================//
  2992. #[test]
  2993. fn test_last_ack_fin_ack() {
  2994. let mut s = socket_last_ack();
  2995. recv!(s, [TcpRepr {
  2996. control: TcpControl::Fin,
  2997. seq_number: LOCAL_SEQ + 1,
  2998. ack_number: Some(REMOTE_SEQ + 1 + 1),
  2999. ..RECV_TEMPL
  3000. }]);
  3001. assert_eq!(s.state, State::LastAck);
  3002. send!(s, TcpRepr {
  3003. seq_number: REMOTE_SEQ + 1 + 1,
  3004. ack_number: Some(LOCAL_SEQ + 1 + 1),
  3005. ..SEND_TEMPL
  3006. });
  3007. assert_eq!(s.state, State::Closed);
  3008. }
  3009. #[test]
  3010. fn test_last_ack_close() {
  3011. let mut s = socket_last_ack();
  3012. s.close();
  3013. assert_eq!(s.state, State::LastAck);
  3014. }
  3015. // =========================================================================================//
  3016. // Tests for transitioning through multiple states.
  3017. // =========================================================================================//
  3018. #[test]
  3019. fn test_listen() {
  3020. let mut s = socket();
  3021. s.listen(IpEndpoint::new(IpAddress::default(), LOCAL_PORT)).unwrap();
  3022. assert_eq!(s.state, State::Listen);
  3023. }
  3024. #[test]
  3025. fn test_three_way_handshake() {
  3026. let mut s = socket_listen();
  3027. send!(s, TcpRepr {
  3028. control: TcpControl::Syn,
  3029. seq_number: REMOTE_SEQ,
  3030. ack_number: None,
  3031. ..SEND_TEMPL
  3032. });
  3033. assert_eq!(s.state(), State::SynReceived);
  3034. assert_eq!(s.local_endpoint(), LOCAL_END);
  3035. assert_eq!(s.remote_endpoint(), REMOTE_END);
  3036. recv!(s, [TcpRepr {
  3037. control: TcpControl::Syn,
  3038. seq_number: LOCAL_SEQ,
  3039. ack_number: Some(REMOTE_SEQ + 1),
  3040. max_seg_size: Some(BASE_MSS),
  3041. ..RECV_TEMPL
  3042. }]);
  3043. send!(s, TcpRepr {
  3044. seq_number: REMOTE_SEQ + 1,
  3045. ack_number: Some(LOCAL_SEQ + 1),
  3046. ..SEND_TEMPL
  3047. });
  3048. assert_eq!(s.state(), State::Established);
  3049. assert_eq!(s.local_seq_no, LOCAL_SEQ + 1);
  3050. assert_eq!(s.remote_seq_no, REMOTE_SEQ + 1);
  3051. }
  3052. #[test]
  3053. fn test_remote_close() {
  3054. let mut s = socket_established();
  3055. send!(s, TcpRepr {
  3056. control: TcpControl::Fin,
  3057. seq_number: REMOTE_SEQ + 1,
  3058. ack_number: Some(LOCAL_SEQ + 1),
  3059. ..SEND_TEMPL
  3060. });
  3061. assert_eq!(s.state, State::CloseWait);
  3062. recv!(s, [TcpRepr {
  3063. seq_number: LOCAL_SEQ + 1,
  3064. ack_number: Some(REMOTE_SEQ + 1 + 1),
  3065. ..RECV_TEMPL
  3066. }]);
  3067. s.close();
  3068. assert_eq!(s.state, State::LastAck);
  3069. recv!(s, [TcpRepr {
  3070. control: TcpControl::Fin,
  3071. seq_number: LOCAL_SEQ + 1,
  3072. ack_number: Some(REMOTE_SEQ + 1 + 1),
  3073. ..RECV_TEMPL
  3074. }]);
  3075. send!(s, TcpRepr {
  3076. seq_number: REMOTE_SEQ + 1 + 1,
  3077. ack_number: Some(LOCAL_SEQ + 1 + 1),
  3078. ..SEND_TEMPL
  3079. });
  3080. assert_eq!(s.state, State::Closed);
  3081. }
  3082. #[test]
  3083. fn test_local_close() {
  3084. let mut s = socket_established();
  3085. s.close();
  3086. assert_eq!(s.state, State::FinWait1);
  3087. recv!(s, [TcpRepr {
  3088. control: TcpControl::Fin,
  3089. seq_number: LOCAL_SEQ + 1,
  3090. ack_number: Some(REMOTE_SEQ + 1),
  3091. ..RECV_TEMPL
  3092. }]);
  3093. send!(s, TcpRepr {
  3094. seq_number: REMOTE_SEQ + 1,
  3095. ack_number: Some(LOCAL_SEQ + 1 + 1),
  3096. ..SEND_TEMPL
  3097. });
  3098. assert_eq!(s.state, State::FinWait2);
  3099. send!(s, TcpRepr {
  3100. control: TcpControl::Fin,
  3101. seq_number: REMOTE_SEQ + 1,
  3102. ack_number: Some(LOCAL_SEQ + 1 + 1),
  3103. ..SEND_TEMPL
  3104. });
  3105. assert_eq!(s.state, State::TimeWait);
  3106. recv!(s, [TcpRepr {
  3107. seq_number: LOCAL_SEQ + 1 + 1,
  3108. ack_number: Some(REMOTE_SEQ + 1 + 1),
  3109. ..RECV_TEMPL
  3110. }]);
  3111. }
  3112. #[test]
  3113. fn test_simultaneous_close() {
  3114. let mut s = socket_established();
  3115. s.close();
  3116. assert_eq!(s.state, State::FinWait1);
  3117. recv!(s, [TcpRepr { // due to reordering, this is logically located...
  3118. control: TcpControl::Fin,
  3119. seq_number: LOCAL_SEQ + 1,
  3120. ack_number: Some(REMOTE_SEQ + 1),
  3121. ..RECV_TEMPL
  3122. }]);
  3123. send!(s, TcpRepr {
  3124. control: TcpControl::Fin,
  3125. seq_number: REMOTE_SEQ + 1,
  3126. ack_number: Some(LOCAL_SEQ + 1),
  3127. ..SEND_TEMPL
  3128. });
  3129. assert_eq!(s.state, State::Closing);
  3130. recv!(s, [TcpRepr {
  3131. seq_number: LOCAL_SEQ + 1 + 1,
  3132. ack_number: Some(REMOTE_SEQ + 1 + 1),
  3133. ..RECV_TEMPL
  3134. }]);
  3135. // ... at this point
  3136. send!(s, TcpRepr {
  3137. seq_number: REMOTE_SEQ + 1 + 1,
  3138. ack_number: Some(LOCAL_SEQ + 1 + 1),
  3139. ..SEND_TEMPL
  3140. });
  3141. assert_eq!(s.state, State::TimeWait);
  3142. recv!(s, []);
  3143. }
  3144. #[test]
  3145. fn test_simultaneous_close_combined_fin_ack() {
  3146. let mut s = socket_established();
  3147. s.close();
  3148. assert_eq!(s.state, State::FinWait1);
  3149. recv!(s, [TcpRepr {
  3150. control: TcpControl::Fin,
  3151. seq_number: LOCAL_SEQ + 1,
  3152. ack_number: Some(REMOTE_SEQ + 1),
  3153. ..RECV_TEMPL
  3154. }]);
  3155. send!(s, TcpRepr {
  3156. control: TcpControl::Fin,
  3157. seq_number: REMOTE_SEQ + 1,
  3158. ack_number: Some(LOCAL_SEQ + 1 + 1),
  3159. ..SEND_TEMPL
  3160. });
  3161. assert_eq!(s.state, State::TimeWait);
  3162. recv!(s, [TcpRepr {
  3163. seq_number: LOCAL_SEQ + 1 + 1,
  3164. ack_number: Some(REMOTE_SEQ + 1 + 1),
  3165. ..RECV_TEMPL
  3166. }]);
  3167. }
  3168. #[test]
  3169. fn test_fin_with_data() {
  3170. let mut s = socket_established();
  3171. s.send_slice(b"abcdef").unwrap();
  3172. s.close();
  3173. recv!(s, [TcpRepr {
  3174. control: TcpControl::Fin,
  3175. seq_number: LOCAL_SEQ + 1,
  3176. ack_number: Some(REMOTE_SEQ + 1),
  3177. payload: &b"abcdef"[..],
  3178. ..RECV_TEMPL
  3179. }])
  3180. }
  3181. #[test]
  3182. fn test_mutual_close_with_data_1() {
  3183. let mut s = socket_established();
  3184. s.send_slice(b"abcdef").unwrap();
  3185. s.close();
  3186. assert_eq!(s.state, State::FinWait1);
  3187. recv!(s, [TcpRepr {
  3188. control: TcpControl::Fin,
  3189. seq_number: LOCAL_SEQ + 1,
  3190. ack_number: Some(REMOTE_SEQ + 1),
  3191. payload: &b"abcdef"[..],
  3192. ..RECV_TEMPL
  3193. }]);
  3194. send!(s, TcpRepr {
  3195. control: TcpControl::Fin,
  3196. seq_number: REMOTE_SEQ + 1,
  3197. ack_number: Some(LOCAL_SEQ + 1 + 6 + 1),
  3198. ..SEND_TEMPL
  3199. });
  3200. }
  3201. #[test]
  3202. fn test_mutual_close_with_data_2() {
  3203. let mut s = socket_established();
  3204. s.send_slice(b"abcdef").unwrap();
  3205. s.close();
  3206. assert_eq!(s.state, State::FinWait1);
  3207. recv!(s, [TcpRepr {
  3208. control: TcpControl::Fin,
  3209. seq_number: LOCAL_SEQ + 1,
  3210. ack_number: Some(REMOTE_SEQ + 1),
  3211. payload: &b"abcdef"[..],
  3212. ..RECV_TEMPL
  3213. }]);
  3214. send!(s, TcpRepr {
  3215. seq_number: REMOTE_SEQ + 1,
  3216. ack_number: Some(LOCAL_SEQ + 1 + 6 + 1),
  3217. ..SEND_TEMPL
  3218. });
  3219. assert_eq!(s.state, State::FinWait2);
  3220. send!(s, TcpRepr {
  3221. control: TcpControl::Fin,
  3222. seq_number: REMOTE_SEQ + 1,
  3223. ack_number: Some(LOCAL_SEQ + 1 + 6 + 1),
  3224. ..SEND_TEMPL
  3225. });
  3226. recv!(s, [TcpRepr {
  3227. seq_number: LOCAL_SEQ + 1 + 6 + 1,
  3228. ack_number: Some(REMOTE_SEQ + 1 + 1),
  3229. ..RECV_TEMPL
  3230. }]);
  3231. assert_eq!(s.state, State::TimeWait);
  3232. }
  3233. // =========================================================================================//
  3234. // Tests for retransmission on packet loss.
  3235. // =========================================================================================//
  3236. #[test]
  3237. fn test_duplicate_seq_ack() {
  3238. let mut s = socket_recved();
  3239. // remote retransmission
  3240. send!(s, TcpRepr {
  3241. seq_number: REMOTE_SEQ + 1,
  3242. ack_number: Some(LOCAL_SEQ + 1),
  3243. payload: &b"abcdef"[..],
  3244. ..SEND_TEMPL
  3245. }, Ok(Some(TcpRepr {
  3246. seq_number: LOCAL_SEQ + 1,
  3247. ack_number: Some(REMOTE_SEQ + 1 + 6),
  3248. window_len: 58,
  3249. ..RECV_TEMPL
  3250. })));
  3251. }
  3252. #[test]
  3253. fn test_data_retransmit() {
  3254. let mut s = socket_established();
  3255. s.send_slice(b"abcdef").unwrap();
  3256. recv!(s, time 1000, Ok(TcpRepr {
  3257. seq_number: LOCAL_SEQ + 1,
  3258. ack_number: Some(REMOTE_SEQ + 1),
  3259. payload: &b"abcdef"[..],
  3260. ..RECV_TEMPL
  3261. }));
  3262. recv!(s, time 1050, Err(Error::Exhausted));
  3263. recv!(s, time 1100, Ok(TcpRepr {
  3264. seq_number: LOCAL_SEQ + 1,
  3265. ack_number: Some(REMOTE_SEQ + 1),
  3266. payload: &b"abcdef"[..],
  3267. ..RECV_TEMPL
  3268. }));
  3269. }
  3270. #[test]
  3271. fn test_data_retransmit_bursts() {
  3272. let mut s = socket_established();
  3273. s.remote_mss = 6;
  3274. s.send_slice(b"abcdef012345").unwrap();
  3275. recv!(s, time 0, Ok(TcpRepr {
  3276. control: TcpControl::None,
  3277. seq_number: LOCAL_SEQ + 1,
  3278. ack_number: Some(REMOTE_SEQ + 1),
  3279. payload: &b"abcdef"[..],
  3280. ..RECV_TEMPL
  3281. }), exact);
  3282. recv!(s, time 0, Ok(TcpRepr {
  3283. control: TcpControl::Psh,
  3284. seq_number: LOCAL_SEQ + 1 + 6,
  3285. ack_number: Some(REMOTE_SEQ + 1),
  3286. payload: &b"012345"[..],
  3287. ..RECV_TEMPL
  3288. }), exact);
  3289. recv!(s, time 0, Err(Error::Exhausted));
  3290. recv!(s, time 50, Err(Error::Exhausted));
  3291. recv!(s, time 100, Ok(TcpRepr {
  3292. control: TcpControl::None,
  3293. seq_number: LOCAL_SEQ + 1,
  3294. ack_number: Some(REMOTE_SEQ + 1),
  3295. payload: &b"abcdef"[..],
  3296. ..RECV_TEMPL
  3297. }), exact);
  3298. recv!(s, time 150, Ok(TcpRepr {
  3299. control: TcpControl::Psh,
  3300. seq_number: LOCAL_SEQ + 1 + 6,
  3301. ack_number: Some(REMOTE_SEQ + 1),
  3302. payload: &b"012345"[..],
  3303. ..RECV_TEMPL
  3304. }), exact);
  3305. recv!(s, time 200, Err(Error::Exhausted));
  3306. }
  3307. #[test]
  3308. fn test_send_data_after_syn_ack_retransmit() {
  3309. let mut s = socket_syn_received();
  3310. recv!(s, time 50, Ok(TcpRepr {
  3311. control: TcpControl::Syn,
  3312. seq_number: LOCAL_SEQ,
  3313. ack_number: Some(REMOTE_SEQ + 1),
  3314. max_seg_size: Some(BASE_MSS),
  3315. ..RECV_TEMPL
  3316. }));
  3317. recv!(s, time 150, Ok(TcpRepr { // retransmit
  3318. control: TcpControl::Syn,
  3319. seq_number: LOCAL_SEQ,
  3320. ack_number: Some(REMOTE_SEQ + 1),
  3321. max_seg_size: Some(BASE_MSS),
  3322. ..RECV_TEMPL
  3323. }));
  3324. send!(s, TcpRepr {
  3325. seq_number: REMOTE_SEQ + 1,
  3326. ack_number: Some(LOCAL_SEQ + 1),
  3327. ..SEND_TEMPL
  3328. });
  3329. assert_eq!(s.state(), State::Established);
  3330. s.send_slice(b"abcdef").unwrap();
  3331. recv!(s, [TcpRepr {
  3332. seq_number: LOCAL_SEQ + 1,
  3333. ack_number: Some(REMOTE_SEQ + 1),
  3334. payload: &b"abcdef"[..],
  3335. ..RECV_TEMPL
  3336. }])
  3337. }
  3338. #[test]
  3339. fn test_established_retransmit_for_dup_ack() {
  3340. let mut s = socket_established();
  3341. // Duplicate ACKs do not replace the retransmission timer
  3342. s.send_slice(b"abc").unwrap();
  3343. recv!(s, time 1000, Ok(TcpRepr {
  3344. seq_number: LOCAL_SEQ + 1,
  3345. ack_number: Some(REMOTE_SEQ + 1),
  3346. payload: &b"abc"[..],
  3347. ..RECV_TEMPL
  3348. }));
  3349. // Retransmit timer is on because all data was sent
  3350. assert_eq!(s.tx_buffer.len(), 3);
  3351. // ACK nothing new
  3352. send!(s, TcpRepr {
  3353. seq_number: REMOTE_SEQ + 1,
  3354. ack_number: Some(LOCAL_SEQ + 1),
  3355. ..SEND_TEMPL
  3356. });
  3357. // Retransmit
  3358. recv!(s, time 4000, Ok(TcpRepr {
  3359. seq_number: LOCAL_SEQ + 1,
  3360. ack_number: Some(REMOTE_SEQ + 1),
  3361. payload: &b"abc"[..],
  3362. ..RECV_TEMPL
  3363. }));
  3364. }
  3365. #[test]
  3366. fn test_established_retransmit_reset_after_ack() {
  3367. let mut s = socket_established();
  3368. s.remote_win_len = 6;
  3369. s.send_slice(b"abcdef").unwrap();
  3370. s.send_slice(b"123456").unwrap();
  3371. s.send_slice(b"ABCDEF").unwrap();
  3372. recv!(s, time 1000, Ok(TcpRepr {
  3373. seq_number: LOCAL_SEQ + 1,
  3374. ack_number: Some(REMOTE_SEQ + 1),
  3375. payload: &b"abcdef"[..],
  3376. ..RECV_TEMPL
  3377. }));
  3378. send!(s, time 1005, TcpRepr {
  3379. seq_number: REMOTE_SEQ + 1,
  3380. ack_number: Some(LOCAL_SEQ + 1 + 6),
  3381. window_len: 6,
  3382. ..SEND_TEMPL
  3383. });
  3384. recv!(s, time 1010, Ok(TcpRepr {
  3385. seq_number: LOCAL_SEQ + 1 + 6,
  3386. ack_number: Some(REMOTE_SEQ + 1),
  3387. payload: &b"123456"[..],
  3388. ..RECV_TEMPL
  3389. }));
  3390. send!(s, time 1015, TcpRepr {
  3391. seq_number: REMOTE_SEQ + 1,
  3392. ack_number: Some(LOCAL_SEQ + 1 + 6 + 6),
  3393. window_len: 6,
  3394. ..SEND_TEMPL
  3395. });
  3396. recv!(s, time 1020, Ok(TcpRepr {
  3397. seq_number: LOCAL_SEQ + 1 + 6 + 6,
  3398. ack_number: Some(REMOTE_SEQ + 1),
  3399. payload: &b"ABCDEF"[..],
  3400. ..RECV_TEMPL
  3401. }));
  3402. }
  3403. #[test]
  3404. fn test_established_queue_during_retransmission() {
  3405. let mut s = socket_established();
  3406. s.remote_mss = 6;
  3407. s.send_slice(b"abcdef123456ABCDEF").unwrap();
  3408. recv!(s, time 1000, Ok(TcpRepr {
  3409. seq_number: LOCAL_SEQ + 1,
  3410. ack_number: Some(REMOTE_SEQ + 1),
  3411. payload: &b"abcdef"[..],
  3412. ..RECV_TEMPL
  3413. })); // this one is dropped
  3414. recv!(s, time 1005, Ok(TcpRepr {
  3415. seq_number: LOCAL_SEQ + 1 + 6,
  3416. ack_number: Some(REMOTE_SEQ + 1),
  3417. payload: &b"123456"[..],
  3418. ..RECV_TEMPL
  3419. })); // this one is received
  3420. recv!(s, time 1010, Ok(TcpRepr {
  3421. seq_number: LOCAL_SEQ + 1 + 6 + 6,
  3422. ack_number: Some(REMOTE_SEQ + 1),
  3423. payload: &b"ABCDEF"[..],
  3424. ..RECV_TEMPL
  3425. })); // also dropped
  3426. recv!(s, time 2000, Ok(TcpRepr {
  3427. seq_number: LOCAL_SEQ + 1,
  3428. ack_number: Some(REMOTE_SEQ + 1),
  3429. payload: &b"abcdef"[..],
  3430. ..RECV_TEMPL
  3431. })); // retransmission
  3432. send!(s, time 2005, TcpRepr {
  3433. seq_number: REMOTE_SEQ + 1,
  3434. ack_number: Some(LOCAL_SEQ + 1 + 6 + 6),
  3435. ..SEND_TEMPL
  3436. }); // acknowledgement of both segments
  3437. recv!(s, time 2010, Ok(TcpRepr {
  3438. seq_number: LOCAL_SEQ + 1 + 6 + 6,
  3439. ack_number: Some(REMOTE_SEQ + 1),
  3440. payload: &b"ABCDEF"[..],
  3441. ..RECV_TEMPL
  3442. })); // retransmission of only unacknowledged data
  3443. }
  3444. #[test]
  3445. fn test_close_wait_retransmit_reset_after_ack() {
  3446. let mut s = socket_close_wait();
  3447. s.remote_win_len = 6;
  3448. s.send_slice(b"abcdef").unwrap();
  3449. s.send_slice(b"123456").unwrap();
  3450. s.send_slice(b"ABCDEF").unwrap();
  3451. recv!(s, time 1000, Ok(TcpRepr {
  3452. seq_number: LOCAL_SEQ + 1,
  3453. ack_number: Some(REMOTE_SEQ + 1 + 1),
  3454. payload: &b"abcdef"[..],
  3455. ..RECV_TEMPL
  3456. }));
  3457. send!(s, time 1005, TcpRepr {
  3458. seq_number: REMOTE_SEQ + 1 + 1,
  3459. ack_number: Some(LOCAL_SEQ + 1 + 6),
  3460. window_len: 6,
  3461. ..SEND_TEMPL
  3462. });
  3463. recv!(s, time 1010, Ok(TcpRepr {
  3464. seq_number: LOCAL_SEQ + 1 + 6,
  3465. ack_number: Some(REMOTE_SEQ + 1 + 1),
  3466. payload: &b"123456"[..],
  3467. ..RECV_TEMPL
  3468. }));
  3469. send!(s, time 1015, TcpRepr {
  3470. seq_number: REMOTE_SEQ + 1 + 1,
  3471. ack_number: Some(LOCAL_SEQ + 1 + 6 + 6),
  3472. window_len: 6,
  3473. ..SEND_TEMPL
  3474. });
  3475. recv!(s, time 1020, Ok(TcpRepr {
  3476. seq_number: LOCAL_SEQ + 1 + 6 + 6,
  3477. ack_number: Some(REMOTE_SEQ + 1 + 1),
  3478. payload: &b"ABCDEF"[..],
  3479. ..RECV_TEMPL
  3480. }));
  3481. }
  3482. #[test]
  3483. fn test_fin_wait_1_retransmit_reset_after_ack() {
  3484. let mut s = socket_established();
  3485. s.remote_win_len = 6;
  3486. s.send_slice(b"abcdef").unwrap();
  3487. s.send_slice(b"123456").unwrap();
  3488. s.send_slice(b"ABCDEF").unwrap();
  3489. s.close();
  3490. recv!(s, time 1000, Ok(TcpRepr {
  3491. seq_number: LOCAL_SEQ + 1,
  3492. ack_number: Some(REMOTE_SEQ + 1),
  3493. payload: &b"abcdef"[..],
  3494. ..RECV_TEMPL
  3495. }));
  3496. send!(s, time 1005, TcpRepr {
  3497. seq_number: REMOTE_SEQ + 1,
  3498. ack_number: Some(LOCAL_SEQ + 1 + 6),
  3499. window_len: 6,
  3500. ..SEND_TEMPL
  3501. });
  3502. recv!(s, time 1010, Ok(TcpRepr {
  3503. seq_number: LOCAL_SEQ + 1 + 6,
  3504. ack_number: Some(REMOTE_SEQ + 1),
  3505. payload: &b"123456"[..],
  3506. ..RECV_TEMPL
  3507. }));
  3508. send!(s, time 1015, TcpRepr {
  3509. seq_number: REMOTE_SEQ + 1,
  3510. ack_number: Some(LOCAL_SEQ + 1 + 6 + 6),
  3511. window_len: 6,
  3512. ..SEND_TEMPL
  3513. });
  3514. recv!(s, time 1020, Ok(TcpRepr {
  3515. control: TcpControl::Fin,
  3516. seq_number: LOCAL_SEQ + 1 + 6 + 6,
  3517. ack_number: Some(REMOTE_SEQ + 1),
  3518. payload: &b"ABCDEF"[..],
  3519. ..RECV_TEMPL
  3520. }));
  3521. }
  3522. #[test]
  3523. fn test_fast_retransmit_after_triple_duplicate_ack() {
  3524. let mut s = socket_established();
  3525. s.remote_mss = 6;
  3526. // Normal ACK of previously recived segment
  3527. send!(s, time 0, TcpRepr {
  3528. seq_number: REMOTE_SEQ + 1,
  3529. ack_number: Some(LOCAL_SEQ + 1),
  3530. ..SEND_TEMPL
  3531. });
  3532. // Send a long string of text divided into several packets
  3533. // because of previously recieved "window_len"
  3534. s.send_slice(b"xxxxxxyyyyyywwwwwwzzzzzz").unwrap();
  3535. // This packet is lost
  3536. recv!(s, time 1000, Ok(TcpRepr {
  3537. seq_number: LOCAL_SEQ + 1,
  3538. ack_number: Some(REMOTE_SEQ + 1),
  3539. payload: &b"xxxxxx"[..],
  3540. ..RECV_TEMPL
  3541. }));
  3542. recv!(s, time 1005, Ok(TcpRepr {
  3543. seq_number: LOCAL_SEQ + 1 + 6,
  3544. ack_number: Some(REMOTE_SEQ + 1),
  3545. payload: &b"yyyyyy"[..],
  3546. ..RECV_TEMPL
  3547. }));
  3548. recv!(s, time 1010, Ok(TcpRepr {
  3549. seq_number: LOCAL_SEQ + 1 + (6 * 2),
  3550. ack_number: Some(REMOTE_SEQ + 1),
  3551. payload: &b"wwwwww"[..],
  3552. ..RECV_TEMPL
  3553. }));
  3554. recv!(s, time 1015, Ok(TcpRepr {
  3555. seq_number: LOCAL_SEQ + 1 + (6 * 3),
  3556. ack_number: Some(REMOTE_SEQ + 1),
  3557. payload: &b"zzzzzz"[..],
  3558. ..RECV_TEMPL
  3559. }));
  3560. // First duplicate ACK
  3561. send!(s, time 1050, TcpRepr {
  3562. seq_number: REMOTE_SEQ + 1,
  3563. ack_number: Some(LOCAL_SEQ + 1),
  3564. ..SEND_TEMPL
  3565. });
  3566. // Second duplicate ACK
  3567. send!(s, time 1055, TcpRepr {
  3568. seq_number: REMOTE_SEQ + 1,
  3569. ack_number: Some(LOCAL_SEQ + 1),
  3570. ..SEND_TEMPL
  3571. });
  3572. // Third duplicate ACK
  3573. // Should trigger a fast retransmit of dropped packet
  3574. send!(s, time 1060, TcpRepr {
  3575. seq_number: REMOTE_SEQ + 1,
  3576. ack_number: Some(LOCAL_SEQ + 1),
  3577. ..SEND_TEMPL
  3578. });
  3579. // Fast retransmit packet
  3580. recv!(s, time 1100, Ok(TcpRepr {
  3581. seq_number: LOCAL_SEQ + 1,
  3582. ack_number: Some(REMOTE_SEQ + 1),
  3583. payload: &b"xxxxxx"[..],
  3584. ..RECV_TEMPL
  3585. }));
  3586. recv!(s, time 1105, Ok(TcpRepr {
  3587. seq_number: LOCAL_SEQ + 1 + 6,
  3588. ack_number: Some(REMOTE_SEQ + 1),
  3589. payload: &b"yyyyyy"[..],
  3590. ..RECV_TEMPL
  3591. }));
  3592. recv!(s, time 1110, Ok(TcpRepr {
  3593. seq_number: LOCAL_SEQ + 1 + (6 * 2),
  3594. ack_number: Some(REMOTE_SEQ + 1),
  3595. payload: &b"wwwwww"[..],
  3596. ..RECV_TEMPL
  3597. }));
  3598. recv!(s, time 1115, Ok(TcpRepr {
  3599. seq_number: LOCAL_SEQ + 1 + (6 * 3),
  3600. ack_number: Some(REMOTE_SEQ + 1),
  3601. payload: &b"zzzzzz"[..],
  3602. ..RECV_TEMPL
  3603. }));
  3604. // After all was send out, enter *normal* retransmission,
  3605. // don't stay in fast retransmission.
  3606. assert!(match s.timer {
  3607. Timer::Retransmit { expires_at, .. } => expires_at > Instant::from_millis(1115),
  3608. _ => false,
  3609. });
  3610. // ACK all recived segments
  3611. send!(s, time 1120, TcpRepr {
  3612. seq_number: REMOTE_SEQ + 1,
  3613. ack_number: Some(LOCAL_SEQ + 1 + (6 * 4)),
  3614. ..SEND_TEMPL
  3615. });
  3616. }
  3617. #[test]
  3618. fn test_fast_retransmit_duplicate_detection_with_data() {
  3619. let mut s = socket_established();
  3620. s.send_slice(b"abc").unwrap(); // This is lost
  3621. recv!(s, time 1000, Ok(TcpRepr {
  3622. seq_number: LOCAL_SEQ + 1,
  3623. ack_number: Some(REMOTE_SEQ + 1),
  3624. payload: &b"abc"[..],
  3625. ..RECV_TEMPL
  3626. }));
  3627. // Normal ACK of previously recieved segment
  3628. send!(s, TcpRepr {
  3629. seq_number: REMOTE_SEQ + 1,
  3630. ack_number: Some(LOCAL_SEQ + 1),
  3631. ..SEND_TEMPL
  3632. });
  3633. // First duplicate
  3634. send!(s, TcpRepr {
  3635. seq_number: REMOTE_SEQ + 1,
  3636. ack_number: Some(LOCAL_SEQ + 1),
  3637. ..SEND_TEMPL
  3638. });
  3639. // Second duplicate
  3640. send!(s, TcpRepr {
  3641. seq_number: REMOTE_SEQ + 1,
  3642. ack_number: Some(LOCAL_SEQ + 1),
  3643. ..SEND_TEMPL
  3644. });
  3645. assert_eq!(s.local_rx_dup_acks, 2,
  3646. "duplicate ACK counter is not set");
  3647. // This packet has content, hence should not be detected
  3648. // as a duplicate ACK and should reset the duplicate ACK count
  3649. send!(s, TcpRepr {
  3650. seq_number: REMOTE_SEQ + 1,
  3651. ack_number: Some(LOCAL_SEQ + 1),
  3652. payload: &b"xxxxxx"[..],
  3653. ..SEND_TEMPL
  3654. });
  3655. recv!(s, [TcpRepr {
  3656. seq_number: LOCAL_SEQ + 1 + 3,
  3657. ack_number: Some(REMOTE_SEQ + 1 + 6),
  3658. window_len: 58,
  3659. ..RECV_TEMPL
  3660. }]);
  3661. assert_eq!(s.local_rx_dup_acks, 0,
  3662. "duplicate ACK counter is not reset when reciving data");
  3663. }
  3664. #[test]
  3665. fn test_fast_retransmit_duplicate_detection() {
  3666. let mut s = socket_established();
  3667. s.remote_mss = 6;
  3668. // Normal ACK of previously recived segment
  3669. send!(s, time 0, TcpRepr {
  3670. seq_number: REMOTE_SEQ + 1,
  3671. ack_number: Some(LOCAL_SEQ + 1),
  3672. ..SEND_TEMPL
  3673. });
  3674. // First duplicate, should not be counted as there is nothing to resend
  3675. send!(s, time 0, TcpRepr {
  3676. seq_number: REMOTE_SEQ + 1,
  3677. ack_number: Some(LOCAL_SEQ + 1),
  3678. ..SEND_TEMPL
  3679. });
  3680. assert_eq!(s.local_rx_dup_acks, 0,
  3681. "duplicate ACK counter is set but wound not transmit data");
  3682. // Send a long string of text divided into several packets
  3683. // because of small remote_mss
  3684. s.send_slice(b"xxxxxxyyyyyywwwwwwzzzzzz").unwrap();
  3685. // This packet is reordered in network
  3686. recv!(s, time 1000, Ok(TcpRepr {
  3687. seq_number: LOCAL_SEQ + 1,
  3688. ack_number: Some(REMOTE_SEQ + 1),
  3689. payload: &b"xxxxxx"[..],
  3690. ..RECV_TEMPL
  3691. }));
  3692. recv!(s, time 1005, Ok(TcpRepr {
  3693. seq_number: LOCAL_SEQ + 1 + 6,
  3694. ack_number: Some(REMOTE_SEQ + 1),
  3695. payload: &b"yyyyyy"[..],
  3696. ..RECV_TEMPL
  3697. }));
  3698. recv!(s, time 1010, Ok(TcpRepr {
  3699. seq_number: LOCAL_SEQ + 1 + (6 * 2),
  3700. ack_number: Some(REMOTE_SEQ + 1),
  3701. payload: &b"wwwwww"[..],
  3702. ..RECV_TEMPL
  3703. }));
  3704. recv!(s, time 1015, Ok(TcpRepr {
  3705. seq_number: LOCAL_SEQ + 1 + (6 * 3),
  3706. ack_number: Some(REMOTE_SEQ + 1),
  3707. payload: &b"zzzzzz"[..],
  3708. ..RECV_TEMPL
  3709. }));
  3710. // First duplicate ACK
  3711. send!(s, time 1050, TcpRepr {
  3712. seq_number: REMOTE_SEQ + 1,
  3713. ack_number: Some(LOCAL_SEQ + 1),
  3714. ..SEND_TEMPL
  3715. });
  3716. // Second duplicate ACK
  3717. send!(s, time 1055, TcpRepr {
  3718. seq_number: REMOTE_SEQ + 1,
  3719. ack_number: Some(LOCAL_SEQ + 1),
  3720. ..SEND_TEMPL
  3721. });
  3722. // Reordered packet arrives which should reset duplicate ACK count
  3723. send!(s, time 1060, TcpRepr {
  3724. seq_number: REMOTE_SEQ + 1,
  3725. ack_number: Some(LOCAL_SEQ + 1 + (6 * 3)),
  3726. ..SEND_TEMPL
  3727. });
  3728. assert_eq!(s.local_rx_dup_acks, 0,
  3729. "duplicate ACK counter is not reset when reciving ACK which updates send window");
  3730. // ACK all recived segments
  3731. send!(s, time 1120, TcpRepr {
  3732. seq_number: REMOTE_SEQ + 1,
  3733. ack_number: Some(LOCAL_SEQ + 1 + (6 * 4)),
  3734. ..SEND_TEMPL
  3735. });
  3736. }
  3737. #[test]
  3738. fn test_fast_retransmit_dup_acks_counter() {
  3739. let mut s = socket_established();
  3740. s.send_slice(b"abc").unwrap(); // This is lost
  3741. recv!(s, time 0, Ok(TcpRepr {
  3742. seq_number: LOCAL_SEQ + 1,
  3743. ack_number: Some(REMOTE_SEQ + 1),
  3744. payload: &b"abc"[..],
  3745. ..RECV_TEMPL
  3746. }));
  3747. send!(s, time 0, TcpRepr {
  3748. seq_number: REMOTE_SEQ + 1,
  3749. ack_number: Some(LOCAL_SEQ + 1),
  3750. ..SEND_TEMPL
  3751. });
  3752. // A lot of retransmits happen here
  3753. s.local_rx_dup_acks = u8::max_value() - 1;
  3754. // Send 3 more ACKs, which could overflow local_rx_dup_acks,
  3755. // but intended behaviour is that we saturate the bounds
  3756. // of local_rx_dup_acks
  3757. send!(s, time 0, TcpRepr {
  3758. seq_number: REMOTE_SEQ + 1,
  3759. ack_number: Some(LOCAL_SEQ + 1),
  3760. ..SEND_TEMPL
  3761. });
  3762. send!(s, time 0, TcpRepr {
  3763. seq_number: REMOTE_SEQ + 1,
  3764. ack_number: Some(LOCAL_SEQ + 1),
  3765. ..SEND_TEMPL
  3766. });
  3767. send!(s, time 0, TcpRepr {
  3768. seq_number: REMOTE_SEQ + 1,
  3769. ack_number: Some(LOCAL_SEQ + 1),
  3770. ..SEND_TEMPL
  3771. });
  3772. assert_eq!(s.local_rx_dup_acks, u8::max_value(), "duplicate ACK count should not overflow but saturate");
  3773. }
  3774. // =========================================================================================//
  3775. // Tests for window management.
  3776. // =========================================================================================//
  3777. #[test]
  3778. fn test_maximum_segment_size() {
  3779. let mut s = socket_listen();
  3780. s.tx_buffer = SocketBuffer::new(vec![0; 32767]);
  3781. send!(s, TcpRepr {
  3782. control: TcpControl::Syn,
  3783. seq_number: REMOTE_SEQ,
  3784. ack_number: None,
  3785. max_seg_size: Some(1000),
  3786. ..SEND_TEMPL
  3787. });
  3788. recv!(s, [TcpRepr {
  3789. control: TcpControl::Syn,
  3790. seq_number: LOCAL_SEQ,
  3791. ack_number: Some(REMOTE_SEQ + 1),
  3792. max_seg_size: Some(BASE_MSS),
  3793. ..RECV_TEMPL
  3794. }]);
  3795. send!(s, TcpRepr {
  3796. seq_number: REMOTE_SEQ + 1,
  3797. ack_number: Some(LOCAL_SEQ + 1),
  3798. window_len: 32767,
  3799. ..SEND_TEMPL
  3800. });
  3801. s.send_slice(&[0; 1200][..]).unwrap();
  3802. recv!(s, Ok(TcpRepr {
  3803. seq_number: LOCAL_SEQ + 1,
  3804. ack_number: Some(REMOTE_SEQ + 1),
  3805. payload: &[0; 1000][..],
  3806. ..RECV_TEMPL
  3807. }));
  3808. }
  3809. #[test]
  3810. fn test_close_wait_no_window_update() {
  3811. let mut s = socket_established();
  3812. send!(s, TcpRepr {
  3813. control: TcpControl::Fin,
  3814. seq_number: REMOTE_SEQ + 1,
  3815. ack_number: Some(LOCAL_SEQ + 1),
  3816. payload: &[1,2,3,4],
  3817. ..SEND_TEMPL
  3818. });
  3819. assert_eq!(s.state, State::CloseWait);
  3820. // we ack the FIN, with the reduced window size.
  3821. recv!(s, Ok(TcpRepr {
  3822. seq_number: LOCAL_SEQ + 1,
  3823. ack_number: Some(REMOTE_SEQ + 6),
  3824. window_len: 60,
  3825. ..RECV_TEMPL
  3826. }));
  3827. let rx_buf = &mut [0; 32];
  3828. assert_eq!(s.recv_slice(rx_buf), Ok(4));
  3829. // check that we do NOT send a window update even if it has changed.
  3830. recv!(s, Err(Error::Exhausted));
  3831. }
  3832. #[test]
  3833. fn test_time_wait_no_window_update() {
  3834. let mut s = socket_fin_wait_2();
  3835. send!(s, TcpRepr {
  3836. control: TcpControl::Fin,
  3837. seq_number: REMOTE_SEQ + 1,
  3838. ack_number: Some(LOCAL_SEQ + 2),
  3839. payload: &[1,2,3,4],
  3840. ..SEND_TEMPL
  3841. });
  3842. assert_eq!(s.state, State::TimeWait);
  3843. // we ack the FIN, with the reduced window size.
  3844. recv!(s, Ok(TcpRepr {
  3845. seq_number: LOCAL_SEQ + 2,
  3846. ack_number: Some(REMOTE_SEQ + 6),
  3847. window_len: 60,
  3848. ..RECV_TEMPL
  3849. }));
  3850. let rx_buf = &mut [0; 32];
  3851. assert_eq!(s.recv_slice(rx_buf), Ok(4));
  3852. // check that we do NOT send a window update even if it has changed.
  3853. recv!(s, Err(Error::Exhausted));
  3854. }
  3855. // =========================================================================================//
  3856. // Tests for flow control.
  3857. // =========================================================================================//
  3858. #[test]
  3859. fn test_psh_transmit() {
  3860. let mut s = socket_established();
  3861. s.remote_mss = 6;
  3862. s.send_slice(b"abcdef").unwrap();
  3863. s.send_slice(b"123456").unwrap();
  3864. recv!(s, time 0, Ok(TcpRepr {
  3865. control: TcpControl::None,
  3866. seq_number: LOCAL_SEQ + 1,
  3867. ack_number: Some(REMOTE_SEQ + 1),
  3868. payload: &b"abcdef"[..],
  3869. ..RECV_TEMPL
  3870. }), exact);
  3871. recv!(s, time 0, Ok(TcpRepr {
  3872. control: TcpControl::Psh,
  3873. seq_number: LOCAL_SEQ + 1 + 6,
  3874. ack_number: Some(REMOTE_SEQ + 1),
  3875. payload: &b"123456"[..],
  3876. ..RECV_TEMPL
  3877. }), exact);
  3878. }
  3879. #[test]
  3880. fn test_psh_receive() {
  3881. let mut s = socket_established();
  3882. send!(s, TcpRepr {
  3883. control: TcpControl::Psh,
  3884. seq_number: REMOTE_SEQ + 1,
  3885. ack_number: Some(LOCAL_SEQ + 1),
  3886. payload: &b"abcdef"[..],
  3887. ..SEND_TEMPL
  3888. });
  3889. recv!(s, [TcpRepr {
  3890. seq_number: LOCAL_SEQ + 1,
  3891. ack_number: Some(REMOTE_SEQ + 1 + 6),
  3892. window_len: 58,
  3893. ..RECV_TEMPL
  3894. }]);
  3895. }
  3896. #[test]
  3897. fn test_zero_window_ack() {
  3898. let mut s = socket_established();
  3899. s.rx_buffer = SocketBuffer::new(vec![0; 6]);
  3900. s.assembler = Assembler::new(s.rx_buffer.capacity());
  3901. send!(s, TcpRepr {
  3902. seq_number: REMOTE_SEQ + 1,
  3903. ack_number: Some(LOCAL_SEQ + 1),
  3904. payload: &b"abcdef"[..],
  3905. ..SEND_TEMPL
  3906. });
  3907. recv!(s, [TcpRepr {
  3908. seq_number: LOCAL_SEQ + 1,
  3909. ack_number: Some(REMOTE_SEQ + 1 + 6),
  3910. window_len: 0,
  3911. ..RECV_TEMPL
  3912. }]);
  3913. send!(s, TcpRepr {
  3914. seq_number: REMOTE_SEQ + 1 + 6,
  3915. ack_number: Some(LOCAL_SEQ + 1),
  3916. payload: &b"123456"[..],
  3917. ..SEND_TEMPL
  3918. }, Ok(Some(TcpRepr {
  3919. seq_number: LOCAL_SEQ + 1,
  3920. ack_number: Some(REMOTE_SEQ + 1 + 6),
  3921. window_len: 0,
  3922. ..RECV_TEMPL
  3923. })));
  3924. }
  3925. #[test]
  3926. fn test_zero_window_ack_on_window_growth() {
  3927. let mut s = socket_established();
  3928. s.rx_buffer = SocketBuffer::new(vec![0; 6]);
  3929. s.assembler = Assembler::new(s.rx_buffer.capacity());
  3930. send!(s, TcpRepr {
  3931. seq_number: REMOTE_SEQ + 1,
  3932. ack_number: Some(LOCAL_SEQ + 1),
  3933. payload: &b"abcdef"[..],
  3934. ..SEND_TEMPL
  3935. });
  3936. recv!(s, [TcpRepr {
  3937. seq_number: LOCAL_SEQ + 1,
  3938. ack_number: Some(REMOTE_SEQ + 1 + 6),
  3939. window_len: 0,
  3940. ..RECV_TEMPL
  3941. }]);
  3942. recv!(s, time 0, Err(Error::Exhausted));
  3943. s.recv(|buffer| {
  3944. assert_eq!(&buffer[..3], b"abc");
  3945. (3, ())
  3946. }).unwrap();
  3947. recv!(s, time 0, Ok(TcpRepr {
  3948. seq_number: LOCAL_SEQ + 1,
  3949. ack_number: Some(REMOTE_SEQ + 1 + 6),
  3950. window_len: 3,
  3951. ..RECV_TEMPL
  3952. }));
  3953. recv!(s, time 0, Err(Error::Exhausted));
  3954. s.recv(|buffer| {
  3955. assert_eq!(buffer, b"def");
  3956. (buffer.len(), ())
  3957. }).unwrap();
  3958. recv!(s, time 0, Ok(TcpRepr {
  3959. seq_number: LOCAL_SEQ + 1,
  3960. ack_number: Some(REMOTE_SEQ + 1 + 6),
  3961. window_len: 6,
  3962. ..RECV_TEMPL
  3963. }));
  3964. }
  3965. #[test]
  3966. fn test_fill_peer_window() {
  3967. let mut s = socket_established();
  3968. s.remote_mss = 6;
  3969. s.send_slice(b"abcdef123456!@#$%^").unwrap();
  3970. recv!(s, [TcpRepr {
  3971. seq_number: LOCAL_SEQ + 1,
  3972. ack_number: Some(REMOTE_SEQ + 1),
  3973. payload: &b"abcdef"[..],
  3974. ..RECV_TEMPL
  3975. }, TcpRepr {
  3976. seq_number: LOCAL_SEQ + 1 + 6,
  3977. ack_number: Some(REMOTE_SEQ + 1),
  3978. payload: &b"123456"[..],
  3979. ..RECV_TEMPL
  3980. }, TcpRepr {
  3981. seq_number: LOCAL_SEQ + 1 + 6 + 6,
  3982. ack_number: Some(REMOTE_SEQ + 1),
  3983. payload: &b"!@#$%^"[..],
  3984. ..RECV_TEMPL
  3985. }]);
  3986. }
  3987. #[test]
  3988. fn test_announce_window_after_read() {
  3989. let mut s = socket_established();
  3990. s.rx_buffer = SocketBuffer::new(vec![0; 6]);
  3991. s.assembler = Assembler::new(s.rx_buffer.capacity());
  3992. send!(s, TcpRepr {
  3993. seq_number: REMOTE_SEQ + 1,
  3994. ack_number: Some(LOCAL_SEQ + 1),
  3995. payload: &b"abc"[..],
  3996. ..SEND_TEMPL
  3997. });
  3998. recv!(s, [TcpRepr {
  3999. seq_number: LOCAL_SEQ + 1,
  4000. ack_number: Some(REMOTE_SEQ + 1 + 3),
  4001. window_len: 3,
  4002. ..RECV_TEMPL
  4003. }]);
  4004. // Test that `dispatch` updates `remote_last_win`
  4005. assert_eq!(s.remote_last_win, s.rx_buffer.window() as u16);
  4006. s.recv(|buffer| {
  4007. (buffer.len(), ())
  4008. }).unwrap();
  4009. assert!(s.window_to_update());
  4010. recv!(s, [TcpRepr {
  4011. seq_number: LOCAL_SEQ + 1,
  4012. ack_number: Some(REMOTE_SEQ + 1 + 3),
  4013. window_len: 6,
  4014. ..RECV_TEMPL
  4015. }]);
  4016. assert_eq!(s.remote_last_win, s.rx_buffer.window() as u16);
  4017. // Provoke immediate ACK to test that `process` updates `remote_last_win`
  4018. send!(s, TcpRepr {
  4019. seq_number: REMOTE_SEQ + 1 + 6,
  4020. ack_number: Some(LOCAL_SEQ + 1),
  4021. payload: &b"def"[..],
  4022. ..SEND_TEMPL
  4023. }, Ok(Some(TcpRepr {
  4024. seq_number: LOCAL_SEQ + 1,
  4025. ack_number: Some(REMOTE_SEQ + 1 + 3),
  4026. window_len: 6,
  4027. ..RECV_TEMPL
  4028. })));
  4029. send!(s, TcpRepr {
  4030. seq_number: REMOTE_SEQ + 1 + 3,
  4031. ack_number: Some(LOCAL_SEQ + 1),
  4032. payload: &b"abc"[..],
  4033. ..SEND_TEMPL
  4034. }, Ok(Some(TcpRepr {
  4035. seq_number: LOCAL_SEQ + 1,
  4036. ack_number: Some(REMOTE_SEQ + 1 + 9),
  4037. window_len: 0,
  4038. ..RECV_TEMPL
  4039. })));
  4040. assert_eq!(s.remote_last_win, s.rx_buffer.window() as u16);
  4041. s.recv(|buffer| {
  4042. (buffer.len(), ())
  4043. }).unwrap();
  4044. assert!(s.window_to_update());
  4045. }
  4046. // =========================================================================================//
  4047. // Tests for timeouts.
  4048. // =========================================================================================//
  4049. #[test]
  4050. fn test_listen_timeout() {
  4051. let mut s = socket_listen();
  4052. s.set_timeout(Some(Duration::from_millis(100)));
  4053. assert_eq!(s.poll_at(), PollAt::Ingress);
  4054. }
  4055. #[test]
  4056. fn test_connect_timeout() {
  4057. let mut s = socket();
  4058. s.local_seq_no = LOCAL_SEQ;
  4059. s.connect(REMOTE_END, LOCAL_END.port).unwrap();
  4060. s.set_timeout(Some(Duration::from_millis(100)));
  4061. recv!(s, time 150, Ok(TcpRepr {
  4062. control: TcpControl::Syn,
  4063. seq_number: LOCAL_SEQ,
  4064. ack_number: None,
  4065. max_seg_size: Some(BASE_MSS),
  4066. window_scale: Some(0),
  4067. sack_permitted: true,
  4068. ..RECV_TEMPL
  4069. }));
  4070. assert_eq!(s.state, State::SynSent);
  4071. assert_eq!(s.poll_at(), PollAt::Time(Instant::from_millis(250)));
  4072. recv!(s, time 250, Ok(TcpRepr {
  4073. control: TcpControl::Rst,
  4074. seq_number: LOCAL_SEQ + 1,
  4075. ack_number: Some(TcpSeqNumber(0)),
  4076. window_scale: None,
  4077. ..RECV_TEMPL
  4078. }));
  4079. assert_eq!(s.state, State::Closed);
  4080. }
  4081. #[test]
  4082. fn test_established_timeout() {
  4083. let mut s = socket_established();
  4084. s.set_timeout(Some(Duration::from_millis(200)));
  4085. recv!(s, time 250, Err(Error::Exhausted));
  4086. assert_eq!(s.poll_at(), PollAt::Time(Instant::from_millis(450)));
  4087. s.send_slice(b"abcdef").unwrap();
  4088. assert_eq!(s.poll_at(), PollAt::Now);
  4089. recv!(s, time 255, Ok(TcpRepr {
  4090. seq_number: LOCAL_SEQ + 1,
  4091. ack_number: Some(REMOTE_SEQ + 1),
  4092. payload: &b"abcdef"[..],
  4093. ..RECV_TEMPL
  4094. }));
  4095. assert_eq!(s.poll_at(), PollAt::Time(Instant::from_millis(355)));
  4096. recv!(s, time 355, Ok(TcpRepr {
  4097. seq_number: LOCAL_SEQ + 1,
  4098. ack_number: Some(REMOTE_SEQ + 1),
  4099. payload: &b"abcdef"[..],
  4100. ..RECV_TEMPL
  4101. }));
  4102. assert_eq!(s.poll_at(), PollAt::Time(Instant::from_millis(455)));
  4103. recv!(s, time 500, Ok(TcpRepr {
  4104. control: TcpControl::Rst,
  4105. seq_number: LOCAL_SEQ + 1 + 6,
  4106. ack_number: Some(REMOTE_SEQ + 1),
  4107. ..RECV_TEMPL
  4108. }));
  4109. assert_eq!(s.state, State::Closed);
  4110. }
  4111. #[test]
  4112. fn test_established_keep_alive_timeout() {
  4113. let mut s = socket_established();
  4114. s.set_keep_alive(Some(Duration::from_millis(50)));
  4115. s.set_timeout(Some(Duration::from_millis(100)));
  4116. recv!(s, time 100, Ok(TcpRepr {
  4117. seq_number: LOCAL_SEQ,
  4118. ack_number: Some(REMOTE_SEQ + 1),
  4119. payload: &[0],
  4120. ..RECV_TEMPL
  4121. }));
  4122. recv!(s, time 100, Err(Error::Exhausted));
  4123. assert_eq!(s.poll_at(), PollAt::Time(Instant::from_millis(150)));
  4124. send!(s, time 105, TcpRepr {
  4125. seq_number: REMOTE_SEQ + 1,
  4126. ack_number: Some(LOCAL_SEQ + 1),
  4127. ..SEND_TEMPL
  4128. });
  4129. assert_eq!(s.poll_at(), PollAt::Time(Instant::from_millis(155)));
  4130. recv!(s, time 155, Ok(TcpRepr {
  4131. seq_number: LOCAL_SEQ,
  4132. ack_number: Some(REMOTE_SEQ + 1),
  4133. payload: &[0],
  4134. ..RECV_TEMPL
  4135. }));
  4136. recv!(s, time 155, Err(Error::Exhausted));
  4137. assert_eq!(s.poll_at(), PollAt::Time(Instant::from_millis(205)));
  4138. recv!(s, time 200, Err(Error::Exhausted));
  4139. recv!(s, time 205, Ok(TcpRepr {
  4140. control: TcpControl::Rst,
  4141. seq_number: LOCAL_SEQ + 1,
  4142. ack_number: Some(REMOTE_SEQ + 1),
  4143. ..RECV_TEMPL
  4144. }));
  4145. recv!(s, time 205, Err(Error::Exhausted));
  4146. assert_eq!(s.state, State::Closed);
  4147. }
  4148. #[test]
  4149. fn test_fin_wait_1_timeout() {
  4150. let mut s = socket_fin_wait_1();
  4151. s.set_timeout(Some(Duration::from_millis(200)));
  4152. recv!(s, time 100, Ok(TcpRepr {
  4153. control: TcpControl::Fin,
  4154. seq_number: LOCAL_SEQ + 1,
  4155. ack_number: Some(REMOTE_SEQ + 1),
  4156. ..RECV_TEMPL
  4157. }));
  4158. assert_eq!(s.poll_at(), PollAt::Time(Instant::from_millis(200)));
  4159. recv!(s, time 400, Ok(TcpRepr {
  4160. control: TcpControl::Rst,
  4161. seq_number: LOCAL_SEQ + 1 + 1,
  4162. ack_number: Some(REMOTE_SEQ + 1),
  4163. ..RECV_TEMPL
  4164. }));
  4165. assert_eq!(s.state, State::Closed);
  4166. }
  4167. #[test]
  4168. fn test_last_ack_timeout() {
  4169. let mut s = socket_last_ack();
  4170. s.set_timeout(Some(Duration::from_millis(200)));
  4171. recv!(s, time 100, Ok(TcpRepr {
  4172. control: TcpControl::Fin,
  4173. seq_number: LOCAL_SEQ + 1,
  4174. ack_number: Some(REMOTE_SEQ + 1 + 1),
  4175. ..RECV_TEMPL
  4176. }));
  4177. assert_eq!(s.poll_at(), PollAt::Time(Instant::from_millis(200)));
  4178. recv!(s, time 400, Ok(TcpRepr {
  4179. control: TcpControl::Rst,
  4180. seq_number: LOCAL_SEQ + 1 + 1,
  4181. ack_number: Some(REMOTE_SEQ + 1 + 1),
  4182. ..RECV_TEMPL
  4183. }));
  4184. assert_eq!(s.state, State::Closed);
  4185. }
  4186. #[test]
  4187. fn test_closed_timeout() {
  4188. let mut s = socket_established();
  4189. s.set_timeout(Some(Duration::from_millis(200)));
  4190. s.remote_last_ts = Some(Instant::from_millis(100));
  4191. s.abort();
  4192. assert_eq!(s.poll_at(), PollAt::Now);
  4193. recv!(s, time 100, Ok(TcpRepr {
  4194. control: TcpControl::Rst,
  4195. seq_number: LOCAL_SEQ + 1,
  4196. ack_number: Some(REMOTE_SEQ + 1),
  4197. ..RECV_TEMPL
  4198. }));
  4199. assert_eq!(s.poll_at(), PollAt::Ingress);
  4200. }
  4201. // =========================================================================================//
  4202. // Tests for keep-alive.
  4203. // =========================================================================================//
  4204. #[test]
  4205. fn test_responds_to_keep_alive() {
  4206. let mut s = socket_established();
  4207. send!(s, TcpRepr {
  4208. seq_number: REMOTE_SEQ,
  4209. ack_number: Some(LOCAL_SEQ + 1),
  4210. ..SEND_TEMPL
  4211. }, Ok(Some(TcpRepr {
  4212. seq_number: LOCAL_SEQ + 1,
  4213. ack_number: Some(REMOTE_SEQ + 1),
  4214. ..RECV_TEMPL
  4215. })));
  4216. }
  4217. #[test]
  4218. fn test_sends_keep_alive() {
  4219. let mut s = socket_established();
  4220. s.set_keep_alive(Some(Duration::from_millis(100)));
  4221. // drain the forced keep-alive packet
  4222. assert_eq!(s.poll_at(), PollAt::Now);
  4223. recv!(s, time 0, Ok(TcpRepr {
  4224. seq_number: LOCAL_SEQ,
  4225. ack_number: Some(REMOTE_SEQ + 1),
  4226. payload: &[0],
  4227. ..RECV_TEMPL
  4228. }));
  4229. assert_eq!(s.poll_at(), PollAt::Time(Instant::from_millis(100)));
  4230. recv!(s, time 95, Err(Error::Exhausted));
  4231. recv!(s, time 100, Ok(TcpRepr {
  4232. seq_number: LOCAL_SEQ,
  4233. ack_number: Some(REMOTE_SEQ + 1),
  4234. payload: &[0],
  4235. ..RECV_TEMPL
  4236. }));
  4237. assert_eq!(s.poll_at(), PollAt::Time(Instant::from_millis(200)));
  4238. recv!(s, time 195, Err(Error::Exhausted));
  4239. recv!(s, time 200, Ok(TcpRepr {
  4240. seq_number: LOCAL_SEQ,
  4241. ack_number: Some(REMOTE_SEQ + 1),
  4242. payload: &[0],
  4243. ..RECV_TEMPL
  4244. }));
  4245. send!(s, time 250, TcpRepr {
  4246. seq_number: REMOTE_SEQ + 1,
  4247. ack_number: Some(LOCAL_SEQ + 1),
  4248. ..SEND_TEMPL
  4249. });
  4250. assert_eq!(s.poll_at(), PollAt::Time(Instant::from_millis(350)));
  4251. recv!(s, time 345, Err(Error::Exhausted));
  4252. recv!(s, time 350, Ok(TcpRepr {
  4253. seq_number: LOCAL_SEQ,
  4254. ack_number: Some(REMOTE_SEQ + 1),
  4255. payload: &b"\x00"[..],
  4256. ..RECV_TEMPL
  4257. }));
  4258. }
  4259. // =========================================================================================//
  4260. // Tests for time-to-live configuration.
  4261. // =========================================================================================//
  4262. #[test]
  4263. fn test_set_hop_limit() {
  4264. let mut s = socket_syn_received();
  4265. let mut caps = DeviceCapabilities::default();
  4266. caps.max_transmission_unit = 1520;
  4267. s.set_hop_limit(Some(0x2a));
  4268. assert_eq!(s.dispatch(Instant::from_millis(0), &caps, |(ip_repr, _)| {
  4269. assert_eq!(ip_repr.hop_limit(), 0x2a);
  4270. Ok(())
  4271. }), Ok(()));
  4272. }
  4273. #[test]
  4274. #[should_panic(expected = "the time-to-live value of a packet must not be zero")]
  4275. fn test_set_hop_limit_zero() {
  4276. let mut s = socket_syn_received();
  4277. s.set_hop_limit(Some(0));
  4278. }
  4279. // =========================================================================================//
  4280. // Tests for reassembly.
  4281. // =========================================================================================//
  4282. #[test]
  4283. fn test_out_of_order() {
  4284. let mut s = socket_established();
  4285. send!(s, TcpRepr {
  4286. seq_number: REMOTE_SEQ + 1 + 3,
  4287. ack_number: Some(LOCAL_SEQ + 1),
  4288. payload: &b"def"[..],
  4289. ..SEND_TEMPL
  4290. }, Ok(Some(TcpRepr {
  4291. seq_number: LOCAL_SEQ + 1,
  4292. ack_number: Some(REMOTE_SEQ + 1),
  4293. ..RECV_TEMPL
  4294. })));
  4295. s.recv(|buffer| {
  4296. assert_eq!(buffer, b"");
  4297. (buffer.len(), ())
  4298. }).unwrap();
  4299. send!(s, TcpRepr {
  4300. seq_number: REMOTE_SEQ + 1,
  4301. ack_number: Some(LOCAL_SEQ + 1),
  4302. payload: &b"abcdef"[..],
  4303. ..SEND_TEMPL
  4304. }, Ok(Some(TcpRepr {
  4305. seq_number: LOCAL_SEQ + 1,
  4306. ack_number: Some(REMOTE_SEQ + 1 + 6),
  4307. window_len: 58,
  4308. ..RECV_TEMPL
  4309. })));
  4310. s.recv(|buffer| {
  4311. assert_eq!(buffer, b"abcdef");
  4312. (buffer.len(), ())
  4313. }).unwrap();
  4314. }
  4315. #[test]
  4316. fn test_buffer_wraparound_rx() {
  4317. let mut s = socket_established();
  4318. s.rx_buffer = SocketBuffer::new(vec![0; 6]);
  4319. s.assembler = Assembler::new(s.rx_buffer.capacity());
  4320. send!(s, TcpRepr {
  4321. seq_number: REMOTE_SEQ + 1,
  4322. ack_number: Some(LOCAL_SEQ + 1),
  4323. payload: &b"abc"[..],
  4324. ..SEND_TEMPL
  4325. });
  4326. s.recv(|buffer| {
  4327. assert_eq!(buffer, b"abc");
  4328. (buffer.len(), ())
  4329. }).unwrap();
  4330. send!(s, TcpRepr {
  4331. seq_number: REMOTE_SEQ + 1 + 3,
  4332. ack_number: Some(LOCAL_SEQ + 1),
  4333. payload: &b"defghi"[..],
  4334. ..SEND_TEMPL
  4335. });
  4336. let mut data = [0; 6];
  4337. assert_eq!(s.recv_slice(&mut data[..]), Ok(6));
  4338. assert_eq!(data, &b"defghi"[..]);
  4339. }
  4340. #[test]
  4341. fn test_buffer_wraparound_tx() {
  4342. let mut s = socket_established();
  4343. s.tx_buffer = SocketBuffer::new(vec![b'.'; 9]);
  4344. assert_eq!(s.send_slice(b"xxxyyy"), Ok(6));
  4345. assert_eq!(s.tx_buffer.dequeue_many(3), &b"xxx"[..]);
  4346. assert_eq!(s.tx_buffer.len(), 3);
  4347. // "abcdef" not contiguous in tx buffer
  4348. assert_eq!(s.send_slice(b"abcdef"), Ok(6));
  4349. recv!(s, Ok(TcpRepr {
  4350. seq_number: LOCAL_SEQ + 1,
  4351. ack_number: Some(REMOTE_SEQ + 1),
  4352. payload: &b"yyyabc"[..],
  4353. ..RECV_TEMPL
  4354. }));
  4355. recv!(s, Ok(TcpRepr {
  4356. seq_number: LOCAL_SEQ + 1 + 6,
  4357. ack_number: Some(REMOTE_SEQ + 1),
  4358. payload: &b"def"[..],
  4359. ..RECV_TEMPL
  4360. }));
  4361. }
  4362. // =========================================================================================//
  4363. // Tests for graceful vs ungraceful rx close
  4364. // =========================================================================================//
  4365. #[test]
  4366. fn test_rx_close_fin() {
  4367. let mut s = socket_established();
  4368. send!(s, TcpRepr {
  4369. control: TcpControl::Fin,
  4370. seq_number: REMOTE_SEQ + 1,
  4371. ack_number: Some(LOCAL_SEQ + 1),
  4372. payload: &b"abc"[..],
  4373. ..SEND_TEMPL
  4374. });
  4375. s.recv(|data| {
  4376. assert_eq!(data, b"abc");
  4377. (3, ())
  4378. }).unwrap();
  4379. assert_eq!(s.recv(|_| (0, ())), Err(Error::Finished));
  4380. }
  4381. #[test]
  4382. fn test_rx_close_fin_in_fin_wait_1() {
  4383. let mut s = socket_fin_wait_1();
  4384. send!(s, TcpRepr {
  4385. control: TcpControl::Fin,
  4386. seq_number: REMOTE_SEQ + 1,
  4387. ack_number: Some(LOCAL_SEQ + 1),
  4388. payload: &b"abc"[..],
  4389. ..SEND_TEMPL
  4390. });
  4391. assert_eq!(s.state, State::Closing);
  4392. s.recv(|data| {
  4393. assert_eq!(data, b"abc");
  4394. (3, ())
  4395. }).unwrap();
  4396. assert_eq!(s.recv(|_| (0, ())), Err(Error::Finished));
  4397. }
  4398. #[test]
  4399. fn test_rx_close_fin_in_fin_wait_2() {
  4400. let mut s = socket_fin_wait_2();
  4401. send!(s, TcpRepr {
  4402. control: TcpControl::Fin,
  4403. seq_number: REMOTE_SEQ + 1,
  4404. ack_number: Some(LOCAL_SEQ + 1 + 1),
  4405. payload: &b"abc"[..],
  4406. ..SEND_TEMPL
  4407. });
  4408. assert_eq!(s.state, State::TimeWait);
  4409. s.recv(|data| {
  4410. assert_eq!(data, b"abc");
  4411. (3, ())
  4412. }).unwrap();
  4413. assert_eq!(s.recv(|_| (0, ())), Err(Error::Finished));
  4414. }
  4415. #[test]
  4416. fn test_rx_close_fin_with_hole() {
  4417. let mut s = socket_established();
  4418. send!(s, TcpRepr {
  4419. seq_number: REMOTE_SEQ + 1,
  4420. ack_number: Some(LOCAL_SEQ + 1),
  4421. payload: &b"abc"[..],
  4422. ..SEND_TEMPL
  4423. });
  4424. send!(s, TcpRepr {
  4425. control: TcpControl::Fin,
  4426. seq_number: REMOTE_SEQ + 1 + 6,
  4427. ack_number: Some(LOCAL_SEQ + 1),
  4428. payload: &b"ghi"[..],
  4429. ..SEND_TEMPL
  4430. }, Ok(Some(TcpRepr {
  4431. seq_number: LOCAL_SEQ + 1,
  4432. ack_number: Some(REMOTE_SEQ + 1 + 3),
  4433. window_len: 61,
  4434. ..RECV_TEMPL
  4435. })));
  4436. s.recv(|data| {
  4437. assert_eq!(data, b"abc");
  4438. (3, ())
  4439. }).unwrap();
  4440. s.recv(|data| {
  4441. assert_eq!(data, b"");
  4442. (0, ())
  4443. }).unwrap();
  4444. send!(s, TcpRepr {
  4445. control: TcpControl::Rst,
  4446. seq_number: REMOTE_SEQ + 1 + 9,
  4447. ack_number: Some(LOCAL_SEQ + 1),
  4448. ..SEND_TEMPL
  4449. });
  4450. // Error must be `Illegal` even if we've received a FIN,
  4451. // because we are missing data.
  4452. assert_eq!(s.recv(|_| (0, ())), Err(Error::Illegal));
  4453. }
  4454. #[test]
  4455. fn test_rx_close_rst() {
  4456. let mut s = socket_established();
  4457. send!(s, TcpRepr {
  4458. seq_number: REMOTE_SEQ + 1,
  4459. ack_number: Some(LOCAL_SEQ + 1),
  4460. payload: &b"abc"[..],
  4461. ..SEND_TEMPL
  4462. });
  4463. send!(s, TcpRepr {
  4464. control: TcpControl::Rst,
  4465. seq_number: REMOTE_SEQ + 1 + 3,
  4466. ack_number: Some(LOCAL_SEQ + 1),
  4467. ..SEND_TEMPL
  4468. });
  4469. s.recv(|data| {
  4470. assert_eq!(data, b"abc");
  4471. (3, ())
  4472. }).unwrap();
  4473. assert_eq!(s.recv(|_| (0, ())), Err(Error::Illegal));
  4474. }
  4475. #[test]
  4476. fn test_rx_close_rst_with_hole() {
  4477. let mut s = socket_established();
  4478. send!(s, TcpRepr {
  4479. seq_number: REMOTE_SEQ + 1,
  4480. ack_number: Some(LOCAL_SEQ + 1),
  4481. payload: &b"abc"[..],
  4482. ..SEND_TEMPL
  4483. });
  4484. send!(s, TcpRepr {
  4485. seq_number: REMOTE_SEQ + 1 + 6,
  4486. ack_number: Some(LOCAL_SEQ + 1),
  4487. payload: &b"ghi"[..],
  4488. ..SEND_TEMPL
  4489. }, Ok(Some(TcpRepr {
  4490. seq_number: LOCAL_SEQ + 1,
  4491. ack_number: Some(REMOTE_SEQ + 1 + 3),
  4492. window_len: 61,
  4493. ..RECV_TEMPL
  4494. })));
  4495. send!(s, TcpRepr {
  4496. control: TcpControl::Rst,
  4497. seq_number: REMOTE_SEQ + 1 + 9,
  4498. ack_number: Some(LOCAL_SEQ + 1),
  4499. ..SEND_TEMPL
  4500. });
  4501. s.recv(|data| {
  4502. assert_eq!(data, b"abc");
  4503. (3, ())
  4504. }).unwrap();
  4505. assert_eq!(s.recv(|_| (0, ())), Err(Error::Illegal));
  4506. }
  4507. // =========================================================================================//
  4508. // Tests for packet filtering.
  4509. // =========================================================================================//
  4510. #[test]
  4511. fn test_doesnt_accept_wrong_port() {
  4512. let mut s = socket_established();
  4513. s.rx_buffer = SocketBuffer::new(vec![0; 6]);
  4514. s.assembler = Assembler::new(s.rx_buffer.capacity());
  4515. let tcp_repr = TcpRepr {
  4516. seq_number: REMOTE_SEQ + 1,
  4517. ack_number: Some(LOCAL_SEQ + 1),
  4518. dst_port: LOCAL_PORT + 1,
  4519. ..SEND_TEMPL
  4520. };
  4521. assert!(!s.accepts(&SEND_IP_TEMPL, &tcp_repr));
  4522. let tcp_repr = TcpRepr {
  4523. seq_number: REMOTE_SEQ + 1,
  4524. ack_number: Some(LOCAL_SEQ + 1),
  4525. src_port: REMOTE_PORT + 1,
  4526. ..SEND_TEMPL
  4527. };
  4528. assert!(!s.accepts(&SEND_IP_TEMPL, &tcp_repr));
  4529. }
  4530. #[test]
  4531. fn test_doesnt_accept_wrong_ip() {
  4532. let s = socket_established();
  4533. let tcp_repr = TcpRepr {
  4534. seq_number: REMOTE_SEQ + 1,
  4535. ack_number: Some(LOCAL_SEQ + 1),
  4536. payload: &b"abcdef"[..],
  4537. ..SEND_TEMPL
  4538. };
  4539. let ip_repr = IpRepr::Unspecified {
  4540. src_addr: MOCK_IP_ADDR_2,
  4541. dst_addr: MOCK_IP_ADDR_1,
  4542. protocol: IpProtocol::Tcp,
  4543. payload_len: tcp_repr.buffer_len(),
  4544. hop_limit: 64
  4545. };
  4546. assert!(s.accepts(&ip_repr, &tcp_repr));
  4547. let ip_repr_wrong_src = IpRepr::Unspecified {
  4548. src_addr: MOCK_IP_ADDR_3,
  4549. dst_addr: MOCK_IP_ADDR_1,
  4550. protocol: IpProtocol::Tcp,
  4551. payload_len: tcp_repr.buffer_len(),
  4552. hop_limit: 64
  4553. };
  4554. assert!(!s.accepts(&ip_repr_wrong_src, &tcp_repr));
  4555. let ip_repr_wrong_dst = IpRepr::Unspecified {
  4556. src_addr: MOCK_IP_ADDR_2,
  4557. dst_addr: MOCK_IP_ADDR_3,
  4558. protocol: IpProtocol::Tcp,
  4559. payload_len: tcp_repr.buffer_len(),
  4560. hop_limit: 64
  4561. };
  4562. assert!(!s.accepts(&ip_repr_wrong_dst, &tcp_repr));
  4563. }
  4564. // =========================================================================================//
  4565. // Timer tests
  4566. // =========================================================================================//
  4567. #[test]
  4568. fn test_timer_retransmit() {
  4569. let mut r = Timer::default();
  4570. assert_eq!(r.should_retransmit(Instant::from_secs(1)), None);
  4571. r.set_for_retransmit(Instant::from_millis(1000));
  4572. assert_eq!(r.should_retransmit(Instant::from_millis(1000)), None);
  4573. assert_eq!(r.should_retransmit(Instant::from_millis(1050)), None);
  4574. assert_eq!(r.should_retransmit(Instant::from_millis(1101)), Some(Duration::from_millis(101)));
  4575. r.set_for_retransmit(Instant::from_millis(1101));
  4576. assert_eq!(r.should_retransmit(Instant::from_millis(1101)), None);
  4577. assert_eq!(r.should_retransmit(Instant::from_millis(1150)), None);
  4578. assert_eq!(r.should_retransmit(Instant::from_millis(1200)), None);
  4579. assert_eq!(r.should_retransmit(Instant::from_millis(1301)), Some(Duration::from_millis(300)));
  4580. r.set_for_idle(Instant::from_millis(1301), None);
  4581. assert_eq!(r.should_retransmit(Instant::from_millis(1350)), None);
  4582. }
  4583. }